14%
30.11.2025
+++++++++++++++++++++++--------
05 src/notification_proxy.c | 4 +++-
06 tools/idevicebackup2.c | 18 +++++++++++++-----
07 tools/ideviceimagemounter.c | 1 -
08 tools/ideviceinfo.c | 12 ++++++++----
09 7
14%
18.02.2018
variable "site_author" {
07 type = "string"
08 default = "Jon Doe"
09 }
10 variable "site_container" {}
11 variable "do_token" {
12 type = "string"
13 }
14 variable "key_path" {}
15 variable "ssh
14%
30.11.2025
("------------------------------------------- ----------------------\n")
09 }
10
11 probe tcp.receive {
12 printf(" %15s %15s %5d %5d %d %d %d %d %d
13 %d\n", saddr, daddr, sport, dport, urg,
14 ack, psh, rst, syn, fin)
15
14%
14.11.2013
RHNSession;
06
07 my ($client, $session) = RHNSession::Session;
08
09 my $channels = $client->call('channel.listSoftwareChannels', $session);
10
11 foreach my $channel (@$channels) {
12 print $channel
14%
30.11.2020
== 0:
08 data = { 'key1' : [10,10.1,10+11j],
09 'key2' : ('mpi4py' , 'python'),
10 'key3' : array([1, 2, 3]) }
11 else:
12 data = None
13 # end if
14
15 data = comm
14%
07.06.2019
install plugins.
Listing 3
Setting Up Plugins
01 ### 05_proxy.yml ###
02 plugins:
03 proxy:
04 name: "14.3.19.91"
05 port: 8080
06
07 ### 10_plugins.yml ###
08 plugins:
09 required
14%
10.04.2015
the patch for kernel versions 3.18 and 3.19.x [17]. If you are uncertain as to how to proceed, you can either look for help on the Internet or check out Julian Kirsch's [12] master's thesis. You will find
14%
30.11.2025
stream: ext://sys.stdout
08 loggers:
09 myLogger:
10 handlers: [myHandler]
11 root:
12 handlers: [rootHandler]
Conclusions
The logging module in Python is easy to use and sufficiently
14%
30.11.2025
$spin
08 @$molecule.xyz
09
10 END
11
12 done
13 done
The Gaussian 09 (g09) computational chemistry simulation package uses a small input that tells it what type of predictions are desired and which
14%
07.11.2011
if '__main__' == __name__:
09
10 p1 = Process(target = test, args = ('Rich',))
11 p2 = Process(target = test, args = ('Nus',))
12 p3 = Process(target = test, args = ('Geeks',))
13
14 p2