81%
21.08.2014
: At the command line, the Vagrant user can combine a running virtual machine with a new subdomain on Vagrantshare.com. Its development environment is subsequently accessible on the Internet (e.g., on http
81%
14.03.2013
something called Linux-perfctr [16] or Linux "performance counters," which all kernels after about 2.6.32 should have [17]; however, if your kernel is older, you can always download PAPI and add it to your
81%
03.12.2015
also need to learn the Murano programming language (MuranoPL) [16], which comprises the markup languages YAML [17] and YAQL [18].
There are two approaches to building packages. The variant
81%
05.02.2019
SuiteCRM application:
sudo cd /etc/apache2/sites-available
sudo touch suitecrm.conf
sudo nano -w suitecrm.com
Now copy the code shown in Listing 1 [4] into the nano text editor window to populate
81%
01.08.2019
if line:
13 if "UDP" in line or "TCP" in line:
14 for words in line.split():
15 if "SRC" in words:
16 srcIP=words.split('=')[1]
17 if "DPT" in words:
18 d
81%
02.08.2021
is actually fairly large. In fact, it's one of the bigger 5.x releases, with over 16k commits (over 17k if you count merges), from over 2k developers."
What can you expect in the 5.13 kernel? Some
81%
09.10.2017
client = boto3.client('s3')
14 bucket = boto3.resource('s3').Bucket(bname)
15
16 pgnr = client.get_paginator('list_objects')
17 page_it = pgnr.paginate(Bucket=bname)
18
19 for page in page_it:
20
81%
05.08.2024
http://archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages [16.9 kB]
Get:16 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages [256 kB]
Get:17 http://archive.ubuntu.com
81%
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
81%
05.08.2024
.Exit(1)
15 }
16
17 run(os.Args[1])
18 }
19
20 func row() {
21 for i := 0; i < size; i++ {
22 for j := 0; j < size; j++ {
23 array[i][j]++
24 }
25 }
26 }
27
28