- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 1,397 for System (2.5 sec)
-
src/main/java/jcifs/netbios/NameServiceClientImpl.java
return; } long expiration = -1; if (this.transportContext.getConfig().getNetbiosCachePolicy() != SmbConstants.FOREVER) { expiration = System.currentTimeMillis() + this.transportContext.getConfig().getNetbiosCachePolicy() * 1000; } cacheAddress(hostName, addr, expiration); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 38.5K bytes - Viewed (0) -
src/packaging/deb/scripts/conffiles
${packaging.env.file} /etc/init.d/fess
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 10 01:24:02 UTC 2015 - 76 bytes - Viewed (0) -
src/test/java/jcifs/SmbFileHandleTest.java
} /** * Test close(long) successfully. * * @throws CIFSException */ @Test void testCloseWithLastWriteTime_success() throws CIFSException { long lastWriteTime = System.currentTimeMillis(); smbFileHandle.close(lastWriteTime); verify(smbFileHandle, times(1)).close(lastWriteTime); } /** * Test close(long) when a CIFSException is thrown. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrConnect2Test.java
assertTrue(msg instanceof DcerpcMessage); } } @Nested @DisplayName("Edge case handling") class EdgeCases { @Test @DisplayName("should handle null system name") void testNullSystemNameDoesNotThrow() { // Arrange SamrPolicyHandle ph = createMockPolicyHandle(); // Act & Assert
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.6K bytes - Viewed (0) -
apache-maven/src/assembly/maven/conf/logging/maven.logger.properties
# under the License. maven.logger.defaultLogLevel=info maven.logger.showDateTime=false maven.logger.showThreadName=false maven.logger.showLogName=false maven.logger.logFile=System.out maven.logger.cacheOutputStream=true maven.logger.levelInBrackets=true maven.logger.log.Sisu=info maven.logger.warnLevelString=WARNING # MNG-6181: mvn -X also prints all debug logging from HttpClient
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Jan 27 14:09:46 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.3K bytes - Viewed (0) -
container-tests/src/test/java/okhttp3/containers/BasicLoomTest.kt
val capturedOut = ByteArrayOutputStream() private lateinit var executor: ExecutorService private lateinit var client: OkHttpClient @BeforeEach fun setUp() { platform.assumeLoom() assertThat(System.getProperty("jdk.tracePinnedThreads")).isNotEmpty() client = OkHttpClient .Builder() .trustMockServer() .dispatcher(Dispatcher(newVirtualThreadPerTaskExecutor())) .build()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 3.7K bytes - Viewed (1) -
okhttp/src/jvmTest/kotlin/okhttp3/RequestBodyTest.kt
closedRequestBody.writeTo(Buffer()) } } @Test fun testPathRead() { assertOnPath(content = "Hello") { path -> val requestBody = path.asRequestBody(FileSystem.SYSTEM) val buffer = Buffer() requestBody.writeTo(buffer) assertThat(buffer.readUtf8()).isEqualTo("Hello") } } private inline fun <T> assertOnFileDescriptor(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 3.6K bytes - Viewed (1) -
guava/src/com/google/common/util/concurrent/DirectExecutorService.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Apr 12 15:07:59 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
/** Time-to-live for cached authentication in milliseconds */ private long authenticationTTL = 3600000L; // 1 hour default /** Timestamp when the authentication was created */ private long authenticationTimestamp = System.currentTimeMillis(); /** Flag to track if this authenticator has been closed */ private volatile boolean closed = false; /** * Construct anonymous credentials */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K bytes - Viewed (0)