85%
31.07.2013
The language you choose to use affects I/O patterns and performance. We track a simple write I/O pattern with C and look at how to improve performance.
... _record;
14 int counter_limit;
15
16 counter_limit = 100;
17
18 for ( counter=1; counter <= counter_limit; counter++)
19 {
20 my_record.x = counter;
21 my_record.y = counter + 1 ...
The language you choose to use affects I/O patterns and performance. We track a simple write I/O pattern with C and look at how to improve performance.
84%
21.08.2014
04 address 192.168.0.100
05 check_command check-host-alive
06 contact_groups contacts
07 use check_5min_24x7
84%
21.11.2012
! solution array
011 REAL(real8) :: tol=1.d-4, diff=1.0d0
012 REAL(real8) :: delta
013 REAL(real8) :: x
014 REAL(real8) :: pi
015 REAL(real8) :: exact
016 REAL(real8) :: pdiff
017 REAL(real4
84%
18.12.2013
In the third article of this three-part series, we look at simple write examples in Python and track the output with strace to see how it affects I/O patterns and performance.
... _limit; counter++)
26 {
27 my_record.x = counter;
28 my_record.y = counter + 1;
29 my_record.z = counter + 2;
30 my_record.value = (float) counter * 10.0;
31 fwrite(&my_record, sizeof(struct rec), 1, ptr ...
In the third article of this three-part series, we look at simple write examples in Python and track the output with strace to see how it affects I/O patterns and performance.
84%
20.06.2012
:uucp
man:x:15:
games:x:20:
gopher:x:30:
video:x:39:
dip:x:40:
ftp:x:50:
lock:x:54:
audio:x:63:
nobody:x:99:
users:x:100:
utmp:x:22:
utempter:x:35:
floppy:x:19:
vcsa:x:69:
rpc:x:32:
cdrom:x:11:
tape:x:33
83%
11.02.2016
.40 <- < 71% idle >
0 1.00 0.00 0.37 0.00 0.00 0.06 0.00 0.00 0.00 98.57
1 100.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
2 3.77 0 ... Sometimes, the throughput or response time of your MySQL database does not meet expectations. In this article, we show how you can handle some MySQL performance problems.
83%
06.05.2024
.6x1.5 inches), which is smaller than a credit card.
In essence, the CM4 had become the ultimate compute blade, with all the chips that would be needed to create a full system on a very small board
82%
25.02.2013
on the options you chose, but some sample output is shown in Listing 1.
Listing 1: Sample iostat Output
[laytonj@home8 IOSTAT]$ iostat -c -d -x -t -m /dev/md1 2 100
Linux 2.6.18-308.16.1.el5.centos.plus (home8
82%
02.07.2014
WCOLL points:
[laytonjb@home4 ~]$ pdsh -w ^/tmp/hosts uptime
192.168.1.4: 15:51:39 up 8:35, 12 users, load average: 0.64, 0.38, 0.20
192.168.1.250: 15:47:53 up 2 min, 0 users, load average: 0.10, 0.10, 0
82%
19.06.2023
:: n, i, j, ierr
!------------------------------------------------------------------
n = 100
allocate(a(n,n), stat=ierr)
allocate(b(n,n), stat=ierr)
call random_seed()
do j =1,n
do i=1,n
call random_number(x)
a(i,j) = 10.0d0*x