- Sort Score
- Result 10 results
- Languages All
Results 541 - 550 of 1,451 for system (0.08 sec)
-
migrator/column_type.go
func (ct ColumnType) Name() string { if ct.NameValue.Valid { return ct.NameValue.String } return ct.SQLColumnType.Name() } // DatabaseTypeName returns the database system name of the column type. If an empty // string is returned, then the driver type name is not supported. // Consult your driver documentation for a list of driver data types. Length specifiers // are not included.
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Thu Mar 24 01:31:58 UTC 2022 - 3.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndX.java
else { System.arraycopy(this.password, 0, dst, dstIndex, this.passwordLength); dstIndex += this.passwordLength; } } else { // no password in tree connect dst[ dstIndex++ ] = (byte) 0x00; } dstIndex += writeString(this.path, dst, dstIndex); try {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTreeConnectAndX.java
System.arraycopy( password, 0, dst, dstIndex, passwordLength ); dstIndex += passwordLength; } else { // no password in tree connect dst[dstIndex++] = (byte)0x00; } dstIndex += writeString( path, dst, dstIndex ); try {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 6.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponse.java
int start = bufferIndex; this.capabilities = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; System.arraycopy(buffer, bufferIndex, this.serverGuid, 0, 16); bufferIndex += 16; this.securityMode = SMBUtil.readInt2(buffer, bufferIndex); this.dialect = SMBUtil.readInt2(buffer, bufferIndex + 2);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/JavaToolchain.java
* under the License. */ package org.apache.maven.api; import org.apache.maven.api.annotations.Experimental; /** * Represents a Java toolchain in the Maven build system. * * <p>A Java toolchain is a specific type of toolchain that provides access * to Java development tools, such as the Java compiler and Java runtime * environment. This interface allows users to define and configure
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 1.7K bytes - Viewed (0) -
dbflute_fess/dfprop/lastafluteMap.dfprop
; domainPackage = org.codelibs.fess # keywords for environment properties, same as directory name ; environmentList = list:{} # environment dispatch by lasta.env of system property? ; isUseLastaEnv = false # settings for web applications ; appMap = map:{ ; fess = map:{ ; path = ..
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun May 20 08:20:11 UTC 2018 - 2.2K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/collect/SetCreationBenchmark.java
void setUp() { sampleData = new CollectionBenchmarkSampleData(true, random, 0.8, size); } @Benchmark int creation(int reps) { int x = 0; for (int i = 0; i < reps; i++) { x ^= System.identityHashCode(impl.create(sampleData.getValuesInSet())); } return x; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 1.8K bytes - Viewed (0) -
src/test/java/org/codelibs/core/timer/TimeoutManagerTest.java
*/ public void testExpired() throws Exception { TimeoutTask task = TimeoutManager.getInstance().addTimeoutTarget(new TimeoutTarget() { public void expired() { System.out.println("expired"); expiredCount++; } }, 1, true); assertNotNull(TimeoutManager.getInstance().thread); Thread.sleep(2000); assertTrue(expiredCount > 0);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.1K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/logging/impl/MavenSimpleConfiguration.java
break; case INFO: value = "info"; break; default: value = "error"; break; } System.setProperty("org.slf4j.simpleLogger.defaultLogLevel", value); } @Override public void activate() { ILoggerFactory lf = LoggerFactory.getILoggerFactory();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
android/pom.xml
<otherVariant.jvmEnvironment>standard-jvm</otherVariant.jvmEnvironment> <otherVariant.jvmEnvironmentVariantName>jre</otherVariant.jvmEnvironmentVariantName> </properties> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/google/guava/issues</url> </issueManagement> <inceptionYear>2010</inceptionYear> <licenses> <license> <name>Apache License, Version 2.0</name>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 14:51:04 UTC 2024 - 21K bytes - Viewed (0)