="menu">
08
09
10
11
12 |
13
14
15
18%
04.11.2011
.
Listing 1: Running Many Commands at Once
01 $ cat commands
02 date
03 hostname
04 echo foo | md5sum
05
06 $ cat commands | parallel
07 Thu Jul 8 10:37:20 EST 2010
08 desktop‑machine
09 d3b07384d113edec49
18%
28.11.2021
in to the database server and create a user with the necessary permissions. The SQL queries are:
CREATE USER 'exporter'@'%' IDENTIFIED BY 'mysecurepassword' WITH MAX_USER_CONNECTIONS 3;
GRANT SLAVE MONITOR, PROCESS
18%
03.12.2015
site.
A new candidate called Vernemq [2] was written in Erlang and supports clustering. Hivemq [3], written in Java, has proved its worth in the commercial environment: Hivemq also comes with clustering
18%
07.10.2014
in the form of a master boot record (MBR) or a GUID partition table (GPT) [3]. The tricks the expert used to revive RAID systems (Figure 1) did not help: Neither fdisk nor mmls – the forensic counterpart from
18%
06.10.2019
Availability
01 Use IO::Select
02
03 $select = IO::Select->new();
04
05 $select->add($socket1);
06 $select->add($socket2);
07 $select->add($socket3);
08 $select->add($socket4);
09
10 @ok_to_read = $select
18%
05.03.2013
constructor: (a, b, @width) ->
09 super a,b
10
11 draw: ->
12 alert "Width:" " + @width
13 super
14
15 shape = new rectangle 1,2,3
16 shape.draw()
The @
in the constructor ensures that Coffee
18%
04.12.2024
_result = client.search(collection_name="test_collection", query_vector=[0.2, 0.1, 0.9, 0.7], limit=3)
print(search_result)
### Output:
ScoredPoint(id=4, version=0, score=1.362, payload={"city": "New York"}, vector
18%
17.02.2015
. Here are the steps involved in installing CentOS 7:
1. Download the ISO [2].
2. Burn the ISO to DVD.
3. Configure the server to boot from DVD.
4. Start the install. Once the server boots, you'll see
|