18%
11.06.2014
# replace: olcRootDN
07 dn: olcDatabase={2}bdb,cn=config
08 changetype: modify
09 replace: olcRootPW
10 olcRootPW: {SSHA}f0pv70XFFox5UqKc6A4Uy39NcxkqcJbc
11 -
12 replace: olcAccess
13 olcAccess: {0}to attrs
18%
10.04.2015
-WMIObject Win32_OperatingSystem | fl Name, BuildNumber, Version
Name: Microsoft Windows 8.1 Enterprise|C:\Windows|\Device\Harddisk0\Partition4
BuildNumber: 9600
Version: 6.3.9600
The command
18%
10.07.2012
library, including the matching developer files. On Ubuntu, the packages go by the names of lua5.1
and liblua5.1.0-dev
; openSUSE users will need lua-devel
and liblua5
18%
12.09.2013
$ sudo apt-key list
12 /etc/apt/trusted.gpg
13 --------------------
14 [...]
15 pub 4096R/0B8738CA 2013-04-17
16 uid Thomas-Krenn.AG Ubuntu Archive
17
18%
01.08.2019
away from Python 2 and on to Python 3 pretty quickly, because, as the Python wiki [12] says, "Python 2.x is legacy, Python 3.x is the present and future of the language.") The Pyrex language is used
18%
07.10.2014
_string;
08
09 static int prochello_show( struct seq_file *m, void *v )
10 {
11 int error = 0;
12
13 error = seq_printf( m, "%s\n", output_string);
14 return error;
15 }
16
17 static int prochello
18%
05.12.2019
-created
09 - event: comment-added
10 comment: (?i)^(Patch Set [0-9]+:)?( [\w\\+-]*)*(\n\n)?\s*RECHECK
11 success:
12 gerrit:
13 # return to Gerrit Verified+1
14 Verified: 1
15 ... The Zuul 3 gating system is a free and flexible solution for continuous integration, delivery, and deployment. ... Zuul 3 ... Zuul 3, a modern solution for CI/CD
18%
16.05.2013
,1000);
06
07 // Set host data on the Device (GPU)
08 dA = gpuSetData(A);
09 dC = gpuSetData(C);
10
11 d1 = gpuMult(A,B);
12 d2 = gpuMult(dA,dC);
13 d3 = gpuMult(d1,d2);
14 result = gpuGetData(d3); // Get
18%
13.12.2018
], and MongoDB 3.6 [3]. If not already present, installing Java (as root or using sudo) before Elasticsearch and MongoDB is recommended:
yum install java-1.8.0-openjdk-headless.x86_64
You should remain root
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