32%
30.11.2020
):
11
12 s = 0.0
13 s += h * f(a)
14 for i in range(1, n):
15 s += 2.0 * h * f(a + i*h)
16 # end for
17 s += h * f(b)
18 return (s/2.)
19 # end def
20
21
22 # Main section
23 comm = MPI
32%
21.08.2012
needed modules here
22 . /etc/profile.d/modules.sh
23 module load compilers/open64/5.0
24 module load mpi/mpich2/1.5b1-open64-5.0
25
26 ### Switch to the working directory; by default TORQUE launches
32%
09.10.2023
be attached to an NVMe controller. The number of the device is added to the NVMe controller beginning with an n
. The first device connected to a controller starts with 0
, the second device is 1
, and so on
32%
02.06.2020
about the -i and -n switches you can use with bandwhich. If you want to monitor the eth0 network interface instead of a WiFi interface, then use the -i switch. If you want to turn off DNS resolution
32%
12.05.2020
):
root@c31656cbd380:/# apt-get update
Get:1 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB]
...
Fetched 18.0 MB in 9s (1960 kB/s)
After the package repositories are synced, I can
32%
05.09.2011
can see how the arp cache poisoning works:
$ sudo nemesis arp -v -r -d eth0 -S 192.168.1.2 \
-D 192.168.1.133 -h 00:22:6E:71:04:BB -m 00:0C:29:B2:78:9E \
-H 00:22:6E:71:04:BB -M 00:0C:29:B2:78:9E
32%
28.11.2021
Compiler: Apple LLVM 12.0.5 (clang-1205.0.22.9) GCC 4.2.1 CLANG 12.0
Darwin : 20.4.0 : Darwin Kernel Version 20.4.0:
PageSize:16KB
Apple M1 8C8T
RAM size: 16384 MB, # CPU hardware threads: 8
RAM usage
32%
09.08.2015
this line
*
0 or any number of times
+
Pattern present at least once
=
Output line number
\n
Newline, line feed
\t
Tab character
32%
12.09.2013
$st2->execute($dbh->{pg_pid});
16 if( !$st2->fetchrow_arrayref->[0] ) {
17 warn "couldn't stop backend PID=$dbh->{pg_pid}\n";
18 }
19 exit 1;
20 }
21
22 POSIX::sigaction(SIGTERM, POSIX
32%
05.12.2014
. For example, to run a report every three seconds for five iterations on eth0, you would use the command in Listing 4.
Listing 4
capstats
/opt/bro/bin/capstats -I 3 -n 5 -i eth0
1415510235