13%
01.06.2024
Laboratory hosts a number of excellent parallel programming tutorials at its Leadership Computing Facility, including one demonstrating the Monte Carlo method in both serial and parallel implementations [6]. I
13%
22.08.2011
machines with a fixed 1GB of RAM, whereas another could allow the user to set up memory of between 1 and 8GB in increments of 512MB.
The Deltacloud API bundles all these different possibilities
13%
28.11.2022
sensors available on an older MacBook Pro. Not all values discovered are temperatures.
On Linux, my default choice for in-terminal monitoring TUI is glances [6], which I have examined previously
13%
25.09.2023
-op 2 -p 80,443 nist.gov
ZING: 129.6.13.49 / nist.gov / disasterhub.nist.gov on 80 is: Active. Continue.
Port: 80: op 1.1. nist.gov [129.6.13.49] Time: 103 ms.
Port: 80: op 1.2. nist.gov [129.6
13%
21.04.2015
-r--r-- 2 root root 6 3. Feb 18:36 .glusterfs/0d/19/0d19fa3e-5413-4f6e-abfa-1f344b687ba7
#
# ls -alid dir1 .glusterfs/fe/9d/fe9d750b-c0e3-42ba-b2cb-22ff8de3edf0 .glusterfs
/00
13%
26.01.2025
: CUDA Forward Compatibility mode ENABLED.
Using CUDA 12.6 driver version 560.35.03 with kernel driver version 535.161.08.
See https://docs.nvidia.com/deploy/cuda-compatibility/ for details.
Epoch 1
13%
02.06.2020
= sol.copy()
10
11 for j in range(0,ny-1):
12 sol[0,j] = 10.0
13 sol[nx-1,j] = 1.0
14 # end for
15
16 for i in range(0,nx-1):
17 sol[i,0] = 0.0
18 sol[i,ny-1] = 0.0
19 # end for
20
21 # Iterate
22
13%
30.05.2021
Linux will be a community-based 1:1 binary replacement for Red Hat Enterprise Linux and currently ships with Gnome 3.32, Linux kernel 4.18.0-240.22.1.el8, SQLite 3.26, virt-what 1.18, Samba 4.12.3, DNF 4
13%
14.03.2013
/sbin/named ...
774 ?? SsJ 0:00,12 /usr/sbin/sshd ...
781 ?? IsJ 0:00,87 /usr/sbin/cron -s
...
The jls command lets you view all the currently active jails, as shown in Listing 6.
Listing 6
Active Jails
13%
18.12.2013
(One-by-One)
1 #include
2
3 /* Our structure */
4 struct rec
5 {
6 int x,y,z;
7 float value;
8 };
9
10 int main()
11 {
12 int counter;
13 struct rec my_record;
14 int counter_limit;
15