- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 220 for millisecond (0.04 sec)
-
samples/guide/src/main/java/okhttp3/recipes/WebSocketEcho.java
import okio.ByteString; public final class WebSocketEcho extends WebSocketListener { private void run() { OkHttpClient client = new OkHttpClient.Builder() .readTimeout(0, TimeUnit.MILLISECONDS) .build(); Request request = new Request.Builder() .url("ws://echo.websocket.org") .build(); client.newWebSocket(request, this);
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Apr 04 11:40:21 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/resources/fess_env_crawler.properties
framework.debug = false # one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000 # special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4) # The milliseconds for (relative or absolute) adjust time (set only when test) @LongType *dynamic in development time.adjust.time.millis = 0 # ----------------------------------------------------------
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jan 29 07:34:32 UTC 2018 - 2.2K bytes - Viewed (0) -
src/main/resources/fess_env_thumbnail.properties
framework.debug = false # one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000 # special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4) # The milliseconds for (relative or absolute) adjust time (set only when test) @LongType *dynamic in development time.adjust.time.millis = 0 # ----------------------------------------------------------
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 12 13:38:57 UTC 2018 - 2.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2ResponseTest.java
}); waiter.start(); Thread.sleep(50); // Give waiter time to start response.received(); assertTrue(latch.await(500, TimeUnit.MILLISECONDS)); assertTrue(response.isReceived()); } @Test @DisplayName("Should handle async pending status") void testReceivedAsyncPending() throws InterruptedException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/HandleReconnector.java
/** * Create a new handle reconnector with custom settings * @param manager the persistent handle manager * @param maxRetries maximum number of retry attempts * @param retryDelay base retry delay in milliseconds */ public HandleReconnector(PersistentHandleManager manager, int maxRetries, long retryDelay) { this.handleManager = manager; this.maxRetries = maxRetries; this.retryDelay = retryDelay;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/SmbConstants.java
/** * Default maximum number of outstanding SMB requests. */ int DEFAULT_MAX_MPX_COUNT = 10; /** * Default timeout in milliseconds for SMB responses. */ int DEFAULT_RESPONSE_TIMEOUT = 30000; /** * Default socket timeout in milliseconds. */ int DEFAULT_SO_TIMEOUT = 35000; /** * Default receive buffer size for SMB transport. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
/** * Set the authentication time-to-live in milliseconds * * @param ttl time-to-live in milliseconds (0 or negative for no expiration) */ public void setAuthenticationTTL(long ttl) { this.authenticationTTL = ttl; } /** * Get the authentication time-to-live in milliseconds * * @return time-to-live in milliseconds */ public long getAuthenticationTTL() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K bytes - Viewed (0) -
src/main/resources/fess_env_web.properties
framework.debug = false # one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000 # special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4) # The milliseconds for (relative or absolute) adjust time (set only when test) @LongType *dynamic in development time.adjust.time.millis = 0 # ----------------------------------------------------------
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jan 29 07:34:32 UTC 2018 - 2.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http/CancelTest.kt
import assertk.assertions.startsWith import assertk.fail import java.io.IOException import java.net.ServerSocket import java.net.Socket import java.util.concurrent.CountDownLatch import java.util.concurrent.TimeUnit.MILLISECONDS import javax.net.ServerSocketFactory import javax.net.SocketFactory import kotlin.test.assertFailsWith import mockwebserver3.MockResponse import mockwebserver3.MockWebServer import okhttp3.Call
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 9.8K bytes - Viewed (0) -
okhttp-dnsoverhttps/src/test/java/okhttp3/dnsoverhttps/DnsOverHttpsTest.kt
assertThat(server.takeRequest(0, TimeUnit.MILLISECONDS)).isNull() assertThat(result).isEqualTo(listOf(address("157.240.1.18"))) assertThat(cacheEvents()).containsExactly("CacheHit") result = cachedDns.lookup("www.google.com") assertThat(result).containsExactly(address("157.240.1.18")) recordedRequest = server.takeRequest(0, TimeUnit.MILLISECONDS)!! assertThat(recordedRequest.method).isEqualTo("POST")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 11.7K bytes - Viewed (0)