14%
03.02.2022
,32
1,33
2,34
3,35
4,36
5,37
6,38
7,39
8,40
9,41
10,42
11,43
12,44
13,45
14,46
15,47
16,48
17,49
18,50
19,51
20,52
21,53
22,54
23,55
24,56
25,57
26,58
27,59
28,60
29,61
30,62
31,63
The lstopo tool
14%
09.10.2017
_with_max_id(collection=[], max_id=nil, &block)
14 response = yield(max_id)
15 collection += response
16 response.empty? ? collection.flatten : collect_with_max_id(collection, response.last.id - 1, &block)
17 end
18
19 def
14%
15.12.2016
are over i
= 2,n
− 1 and j
= 2,n
−1. Here is how you can write the iteration over the domain using array notation:
a(2:n-1,2:n-1) = 0.25 * &
(a(1:n-2,2:n) + a(3:n,2:n) + a(2:n,1:n-2) + a(2:n,3:n
14%
30.11.2020
):
11
12 s = 0.0
13 s += h * f(a)
14 for i in range(1, n):
15 s += 2.0 * h * f(a + i*h)
16 # end for
17 s += h * f(b)
18 return (s/2.)
19 # end def
20
21
22 # Main section
23 comm = MPI
14%
25.03.2021
(Listing 1), which indicates a push.
Listing 1
Server Push in Log
2020-11-22T12:01:10+01:00 1606042870.567 200 605 h2 "GET /index.html HTTP/2.0"
2020-11-22T12:01:10+01:00 1606042870.567 200
14%
10.04.2015
.loadLibrary(lib.getName()); // might throw UnsatisfiedLinkError
13 }
14
15 [...]
16
17 public static String readline(String prompt, boolean addToHist)
18 throws EOFException, IOException, UnsupportedEncodingException {
19
14%
10.04.2015
/local/sbin/sync.sh"
11 ],
12 "append_files": true,
13 "stdin": [
14 "name",
15 "exists",
16 "new",
17 "size",
18 "mode"
19
14%
22.12.2017
~ /.well-known {
13 allow all;
14 }
15
16 location / {
17 rewrite ^/(.*)$ https://www.linux-magazin.de/$1 permanent;
18 rewrite ^/$ https://www.linux-magazin.de/ permanent;
19 }
20 }
21
22
14%
09.08.2015
. The "Vivid Vervet" box describes how to compile the software for Ubuntu 15.04.
Vivid Vervet
You first need to install all required packages [5] to install Cockpit in Ubuntu 4.15:
sudo apt-get install
14%
20.03.2014
13 respawn
14 respawn limit 10 5
15
16 pre-start script
17 $DAEMON -t
18 if [ $? -ne 0 ]
19 then exit $?
20 fi
21 end script
22
23 exec $DAEMON
Listing