46%
25.03.2021
identified the following physical drives that I will be using in my examples:
$ cat /proc/partitions |grep -e sd[c,d] -e nvm
259 0 244198584 nvme0n1
259 2 244197543 nvme0n1p1
8 32
46%
12.08.2015
.0
b(i) = 1.0
c(i) = 2.0
end do
do i=1,n
a(i) = b(i) + c(i)
end do
!$acc end kernels
With the simple kernels
directive, the compiler creates a kernel from the first loop
46%
25.11.2012
to experiment can simply copy the tool to a computer of their choice and convert the image there. The
vmss2core -N6 .vmss
command generates the kernel dump (Listing 3). During testing, this conversion
46%
09.08.2015
release to the encryption toolkit to address a "certificate forgery" issue. The problem affects OpenSSL versions 1.0.2c, 1.0.2b, 1.0.1n, and 1.0.1o. According to the security advisory (CVE-2015
46%
03.02.2022
command, except it lists all of the cores at once.
Listing 4
Real or SMT? Method 2
$ cat $(find /sys/devices/system/cpu -regex ".*cpu[0-9]+/topology/thread_siblings_list") | sort -n | uniq
0
46%
30.05.2021
command:
$ cat /var/lib/mysql/testDB/testTB.ibd | head -n 20
The command output will generate plaintext information containing raw data stored in the corresponding database table.
Key Management
46%
30.01.2020
is that the default time command is actually one of the bash-builtins [1]:
$ type time
time is a shell keyword
$ which time
/usr/bin/time
There is time, and then there is GNU time [2]. The standalone binary version
46%
13.04.2023
/apps/apps/conda/$USER/envs
total 8
4 drwxrwxr-x 3 laytonjb laytonjb 4096 Mar 12 11:28 ..
4 drwxrwxr-x 2 laytonjb laytonjb 4096 Mar 12 11:28 .
I did this for my user account, and if you are adding a new user, you will have
46%
06.10.2022
to the caller in rax
.
For instance, the open syscall (Table 1), is numbered 2, which goes in rax
, and its arguments filename, flags, and mode are passed in rdi
, rsi
, and rdx
.
Table 1
x86
46%
22.08.2011
.keys.sort.each do |s|
14 printf "%20s %d\n", s, summary[s]
15 end
16 puts "Polling for changes (Ctrl-C to end)"
17 loop do
18 sleep 2
19 client.instances.each do |inst|
20 if state[inst.id] != inst.state
21