14%
30.11.2025
141.20.108.124
07 active_checks_enabled 1
08 passive_checks_enabled 0
09 max_check_attempts 3
10 check_command check-host-alive
11
14%
30.11.2025
|
14 | .. . o . |
15 | . . . . |
16 | . o o . |
17 | S + o o |
18 | o. E o .|
19 | o.o o|
20 | .+.....|
21 | .. +o..o|
22
14%
30.11.2025
and arrival rate
19 $pdq::streams = pdq::CreateOpen($Workload, $ArrivalRate);
20 # Define the service rate for customers at the cash desk
21 pdq::SetDemand($ServerName, $Workload, $SeviceTime);
22
14%
07.11.2011
print str(id) + ' Total waste of CPU cycles!'
08
09 if '__main__' == __name__:
10
11 for i in xrange(20):
12 Process(target = waste, args = (i,)).start()
The counting.py
program delays
14%
30.11.2025
(number, label):
07 for i in xrange(number):
08 print ' ' + str(i) + ' ' + label
09 sleep((number - 15)/10.0)
10
11 if '__main__' == __name__:
12
13 p1 = Process(target = count, args = (20
14%
01.06.2024
is 20x because only 95 percent of the algorithm can execute in parallel (compute the fraction 1/20 from that 5% number). That limitation led to a search for embarrassingly parallel
algorithms
14%
10.04.2015
]
20 }
21 ]
22 }
23 ]
24 }
The script that performs the rsync operation, sync.sh, will look like Listing 3. Your script might be more complex (e.g., by adding some sort
14%
30.11.2025
) }' -c '/bin/ls -l'
total 20
-rw-rw-r--. 1 tscherf tscherf 18216 2010-04-12 09:02 systemtap.txt
clone_quoting_options o=0x0
clone_quoting_options o=0x0
Cross-Compiling
If you want to run a System
14%
30.01.2020
VPCFrontNet:
14 Type: AWS::EC2::Subnet
15 Properties:
16 CidrBlock:
17 Ref: VPCSubnetFront
18 MapPublicIpOnLaunch: true
19 VpcId:
20 Ref: FortiVPC
21
22 Forti
14%
17.06.2017
type for variable "a"
18 type(my_struct) :: a
19 ! ...
20 write(*,*) "i is ",a%i
21
22 ! Structures (variables) of the the derived type my_struct
23 type(my_struct) :: data
24 type