79%
17.04.2017
with Python
01 import requests
02 import json
03 system = requests.get("http://172.17.0.2/redfish/v1/Systems/1").json()
04 print( system['SerialNumber'] )
05 serial = requests.get("http://172.17.0.2/redfish ... Redfish has been slated to replace the Intelligent Platform Management Interface (IPMI) for hardware management over the network. We explain how the Redfish standard works and how it is used
79%
08.10.2015
:/etc/smtpd_remote.db
04 listen on 192.0.2.15 inet4 port 25 hostname post.example.org tls pki post
05 listen on 192.0.2.15 inet4 port 587 hostname mail.example.org tls-require pki mail auth tag remote
06 listen
79%
07.11.2011
04 from multiprocessing import Process
05
06 def count(number, label):
07 for i in xrange(number):
08 print ' ' + str(i) + ' ' + label
09 sleep((number ‑ 15)/10.0)
10
11
79%
17.02.2015
on the basis of a preinstalled Windows 8.1 computer.
In this article, I will describe how to perform the necessary preparations for using WIMBoot on a Windows 8.1 system, how to install the technology, and your
79%
19.06.2023
a = 100.0*np.random.random((N,N))
a.astype(np.float64)
print("a[5,5] = ",a[5,5]," type = ",a[5,5].dtype)
np.save('double', a)
b = np.copy(a)
b = b.astype(np.float32)
print("b[5,5] = ",b[5,5]," type = ",b[5
79%
07.03.2019
OpenACC directives can improve performance if you know how to find where parallel code will make the greatest difference.
... relative to the data values. For example, if the difference between two numbers is 100.0, but you are working with values of 10^8, then the difference (0.001%) might not be important. It’s really up ...
OpenACC directives can improve performance if you know how to find where parallel code will make the greatest difference.
79%
30.11.2020
Listing 8
config.json File Content
01 {
02 "ociVersion": "1.0.0",
03 "process": {
04 "user": {
05 "uid": 0,
06 "gid": 0
07 },
08 "args": [
09 "/usr
79%
07.06.2019
to see which arguments belong to which function.
Listing 5
Pipe Operator
> x <- c(TRUE, FALSE, TRUE, TRUE, FALSE, FALSE, TRUE, NA)
>
> # base
> paste0(round(mean(x, na.rm = TRUE), 2
79%
16.06.2015
the traffic is pretty easy by giving each network interface (NIC) in the node an IP address with a different address range. For example, eth0 might be on a 10.0.1.x network, and eth1 on 10.0.2.x network
79%
06.10.2019
illustrates the differences.
Listing 1
Two Ways to Indent Code
01 if (x == y) then
02 {
03 do something;
04 }
05
06 while ( x < y) {
07 x = x+1;
08 }
The indentation depth