- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 58 for setTimeout (0.33 sec)
-
src/main/java/jcifs/smb1/http/NtlmHttpFilter.java
public void init(final FilterConfig filterConfig) throws ServletException { String name; int level; /* Set jcifs.smb1 properties we know we want; soTimeout and cachePolicy to 30min. */ Config.setProperty("jcifs.smb1.smb.client.soTimeout", "1800000"); Config.setProperty("jcifs.smb1.netbios.cachePolicy", "1200"); /* The Filter can only work with NTLMv1 as it uses a man-in-the-middle
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmServlet.java
final Properties p = new Properties(); p.putAll(System.getProperties()); /* * Set jcifs properties we know we want; soTimeout and cachePolicy to 10min. */ p.setProperty("jcifs.smb.client.soTimeout", "300000"); p.setProperty("jcifs.netbios.cachePolicy", "600"); final Enumeration<String> e = config.getInitParameterNames(); String name;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.1K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
} /** * Sets the socket timeout in milliseconds. * * @param soTimeout The socket timeout */ public void setSoTimeout(final Integer soTimeout) { this.soTimeout = soTimeout; } /** * Sets the cookie specification to use. * * @param cookieSpec The cookie specification */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 52.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/HandleInfo.java
*/ public HandleType getType() { return type; } /** * Get the timeout * @return the timeout in milliseconds */ public long getTimeout() { return timeout; } /** * Get the create time * @return the create time */ public long getCreateTime() { return createTime; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 5.9K bytes - Viewed (0) -
fess-crawler-lasta/src/main/resources/crawler/client.xml
<component name="internalHttpClient" class="org.codelibs.fess.crawler.client.http.HcHttpClient" instance="prototype"> <property name="connectionTimeout">15000</property> <property name="soTimeout">30000</property> </component> <component name="httpClient" class="org.codelibs.fess.crawler.client.FaultTolerantClient" instance="prototype"> <property name="crawlerClient">internalHttpClient</property>
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Tue Aug 08 12:54:47 UTC 2023 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpFilter.java
String name; final Properties p = new Properties(); /* * Set jcifs properties we know we want; soTimeout and cachePolicy to 30min. */ p.setProperty("jcifs.smb.client.soTimeout", "1800000"); p.setProperty("jcifs.netbios.cachePolicy", "1200"); /* * The Filter can only work with NTLMv1 as it uses a man-in-the-middle
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbConstants.java
/** Session limit */ int SSN_LIMIT = Config.getInt("jcifs.smb1.smb.client.ssnLimit", DEFAULT_SSN_LIMIT); /** Socket timeout in milliseconds */ int SO_TIMEOUT = Config.getInt("jcifs.smb1.smb.client.soTimeout", DEFAULT_SO_TIMEOUT); /** Connection timeout in milliseconds */ int CONN_TIMEOUT = Config.getInt("jcifs.smb1.smb.client.connTimeout", DEFAULT_CONN_TIMEOUT); /** Native operating system name */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/jcifs/config/PropertyConfiguration.java
} catch (NumberFormatException e) { // Invalid value ignored } } value = props.getProperty("jcifs.smb.client.soTimeout"); if (value != null) { try { this.smbSocketTimeout = Integer.parseInt(value); } catch (NumberFormatException e) { // Invalid value ignored }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13.3K bytes - Viewed (0) -
README.md
} } ``` ## Configuration ### Basic Configuration Properties ```properties # Connection settings jcifs.smb.client.connTimeout=35000 jcifs.smb.client.soTimeout=180000 jcifs.smb.client.responseTimeout=30000 # Authentication jcifs.smb.client.domain=WORKGROUP jcifs.smb.client.username=guest jcifs.smb.client.password= # Protocol versions (SMB1 to SMB 3.1.1)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 09:24:52 UTC 2025 - 6.2K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmServletTest.java
Map<String, String> validParams = new HashMap<>(); validParams.put("jcifs.smb.client.domain", "TEST_DOMAIN"); validParams.put("jcifs.smb.client.soTimeout", "300000"); when(servletConfig.getInitParameterNames()).thenReturn(Collections.enumeration(validParams.keySet()));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.5K bytes - Viewed (0)