This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.ComponentModel; | |
| using System.ComponentModel.DataAnnotations; | |
| using System.Linq; | |
| using System.Runtime.CompilerServices; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using System.Windows; | |
| using System.Windows.Controls; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Window x:Class="WpfApplication1.MainWindow" | |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
| xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
| xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
| xmlns:local="clr-namespace:WpfApplication1" | |
| mc:Ignorable="d" | |
| Title="MainWindow" Height="350" Width="525"> | |
| <Window.Resources> | |
| <Style TargetType="{x:Type ListViewItem}"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fio: set debug option io | |
| io 16610 load ioengine libaio | |
| write-job: (g=0): rw=randwrite, bs=(R) 128KiB-128KiB, (W) 128KiB-128KiB, (T) 128KiB-128KiB, ioengine=libaio, iodepth=256 | |
| fio-2.21-4-gb2fc-dirty | |
| Starting 1 process | |
| io 16620 drop page cache /dev/nvme0n1 | |
| FIO_OFF b: 5 | |
| io 16620 fill_io_u: io_u 0x1799c00: off=655360/len=131072/ddir=1io 16620 //dev/nvme0n1io 16620 | |
| io 16620 prep: io_u 0x1799c00: off=655360/len=131072/ddir=1io 16620 //dev/nvme0n1io 16620 | |
| io 16620 ->prep(0x1799c00)=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class DataBaseSettings:INotifyPropertyChanged | |
| { | |
| #region Fields | |
| private string _serverName; | |
| private string _instanceName; | |
| private string _portNumber; | |
| private string _userName; | |
| #endregion |