- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getConnectTimeout (0.12 sec)
-
src/main/java/jcifs/http/NtlmHttpURLConnection.java
public void setDefaultUseCaches(final boolean defaultUseCaches) { this.connection.setDefaultUseCaches(defaultUseCaches); } @Override public int getConnectTimeout() { return this.connection.getConnectTimeout(); } @Override public void setConnectTimeout(final int timeout) { this.connection.setConnectTimeout(timeout); } @Override
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 25.6K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java
when(mockConnection.getIfModifiedSince()).thenReturn(12345L); when(mockConnection.getUseCaches()).thenReturn(false); when(mockConnection.getReadTimeout()).thenReturn(1000); when(mockConnection.getConnectTimeout()).thenReturn(2000); when(mockConnection.getInstanceFollowRedirects()).thenReturn(true); Map<String, List<String>> properties = new HashMap<>();
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
this.autodetectEncoding = autodetectEncoding; } /** * Gets the connection timeout in milliseconds. * * @return The connection timeout */ public int getConnectTimeout() { return connectTimeout; } /** * Sets the connection timeout in milliseconds. * * @param connectTimeout The connection timeout */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 40K bytes - Viewed (0)