27%
14.03.2013
will be using the Mongo shell to create a document (Listing 1).
Listing 1
Test
01 # mongo
02 MongoDB shell version: 2.2.0
03 connecting to: test
04 > use football
05 switched to db football
06 > db
27%
14.03.2013
, NCLOB), because you do not want to convert binary data, of course.
Conversion takes place automatically in transit (via Oracle Net); for example, a Euro sign typed on a Windows machine (0x80 in WIN-1252
27%
16.05.2013
in Listing 2, in which two modules are loaded (fftw and mpich2) before logging in to another node (n0 in this case). On the first login, the modules are loaded on the remote node. On the second login
27%
02.10.2012
of many automated attack methods.
As well as being able to take individual IP addresses, hosts.allow
can happily handle the CIDR notation of classless IP address ranges, such as:
sshd: 10.10.10.0/24, 1
27%
06.11.2012
using the avail
option:
$ module avail
-------------------------- /opt/Modules/modulefiles -----------------------------
atlas/3.10.0/gnu4/i5-2400S modules
blacs/1.1/gnu4/mpich2
27%
17.07.2013
other parallel filesystems).
Hadoop 101
Although Apache Hadoop versioning can be a bit confusing, the most recent version (as of June 6, 2013) of Hadoop YARN is 2.0.5-alpha (Note: The software is more
27%
29.08.2011
, have a privilege level of 0. A virtual system running on top of the host can't access the 0 privilege level directly and therefore instructions passed down to the host much undergo a time
27%
01.08.2012
mpi/openmpi/1.6 modulefile
#%Module1.0#####################################################################
##
## modules mpi/openmpi/1.6
##
## modulefiles/mpi/openmpi/1.6 Written by Jeff Layton
27%
19.07.2017
a network between a client application and an instance of SQL Server. SQL Server on Linux supports the following TLS protocols: TLS 1.2, 1.1, and 1.0.
Machine Learning Services enhancements – In RC1, we
27%
13.06.2019
(i,j) = B(i,j) + C(i,j)
enddo
enddo
#pragma omp for collapse(2)
for ( i = 0; i < N; i++ ) {
for ( j = 0; j < N; j++ ) {
A[i][j] = B[i][j] + C[i][j]
}
}
The collapse
clause has some restrictions. One