27%
17.06.2017
03 REAL, ALLOCATABLE :: a(:,:)
04 INTEGER :: n
05 INTEGER :: allocate_status
06 n=1000
07 ALLOCATE( a(n,n), STAT = allocate_status)
08 IF (allocate_status /= 0) STOP "Could not allocate
27%
07.11.2011
A\n");
05 #pragma omp barrier
06 Calculationfunction(B,C);
07 printf("C was calculated from B\n");
08 }
The Calculationfunction()
line in this listing calculates the second argument
27%
10.06.2015
to the first sed I know that here is only a SINGLE space
45 display_list="$(sed ':a;N;$!ba;s/\n / /g'<<<"$xrandr_current" | sed \
-n -e 's/^\([a-zA-Z0-9_-]\+\) connected.* \([0-9]\+\)mm.* \([0-9]\+\)mm
27%
25.03.2020
"TracingConfig": {
17 "Mode": "PassThrough"
18 },
19 "CodeSha256": "37n/rzJz4o2lyvh4s2aet2aBlY=adc",
20 "Description": "",
21 "CodeSize": 432,
22 "FunctionArn": "arn
27%
20.11.2013
advantages: S3QL.
... . Therefore, if I’m going to back up my data to cloud storage, I want to make sure the data is encrypted. S3QL encrypts all data using a 256-bit AES key. An additional SHA-256 HMAC checksum protects the data ... advantages: S3QL.
... S3QL Filesystem for HPC Storage
27%
12.05.2021
30.85 72.31 13.16 20.40 0.26 70.44 83.89 1.97 3.52
nvme0n1 58.80 12.22 17720.47 48.71 230.91 0.01 79.70 0.08 0.42 0.03 0.00 301.34 3
27%
17.02.2015
/www/html directory with:
[root@kickstart ~]# cd /var/www/html/
[root@kickstart base]# reposync -r base -a x86_64 -n
Reposync will look for the base repo in /etc/yum.repos.d/ and then sync from the particular web
27%
06.10.2019
.e., output all warnings) shows in Listing 4.
Listing 3
Splint Warnings
splint -strict example1.c
Splint 3.1.2 --- 11 May 2019
example1.c: (in function main)
example1.c:9:5: Format string
27%
02.08.2021
(Listing 3). (Warning: You will get a lot of information.)
Listing 3
List All Log Pages
$ sudo sg_logs -a /dev/sdc
SEAGATE ST14000NM0001 K001
Supported log pages [0x0]:
0x00
27%
26.02.2014
def
#
# Routine to add commas to a float string
#
def commify3(amount):
amount = str(amount)
amount = amount[::-1]
amount = re.sub(r"(\d\d\d)(?=\d)(?!\d*\.)", r"\1,", amount)
return amount[::-1