- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for getNetbiosSoTimeout (0.18 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.getNetbiosScope(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getNetbiosSoTimeout() */ @Override public int getNetbiosSoTimeout() { return this.delegate.getNetbiosSoTimeout(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getNetbiosSndBufSize() */ @Override
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 24.1K bytes - Click Count (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
} void ensureOpen(final int timeout) throws IOException { this.closeTimeout = 0; if (this.transportContext.getConfig().getNetbiosSoTimeout() != 0) { this.closeTimeout = Math.max(this.transportContext.getConfig().getNetbiosSoTimeout(), timeout); } // If socket is still good, the new closeTimeout will // be ignored; see tryClose comment. if (this.socket == null) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 38.5K bytes - Click Count (0) -
src/main/java/jcifs/Configuration.java
/** * * * Property {@code jcifs.netbios.soTimeout} (int, default 5000) * * @return socket timeout for netbios connections, in milliseconds */ int getNetbiosSoTimeout(); /** * Gets the virtual circuit number for SMB connections * * @return virtual circuit number to use */ int getVcNumber(); /** *Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 25.4K bytes - Click Count (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.netbiosLocalPort; } @Override public InetAddress getNetbiosLocalAddress() { return this.netbiosLocalAddress; } @Override public int getNetbiosSoTimeout() { return this.netbiosSocketTimeout; } @Override public String getNetbiosScope() { return this.netbiosScope; } @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 36.5K bytes - Click Count (0) -
src/test/java/jcifs/ConfigurationTest.java
mockConfig.getBroadcastAddress(); mockConfig.getWinsServers(); mockConfig.getNetbiosLocalPort(); mockConfig.getNetbiosLocalAddress(); mockConfig.getNetbiosSoTimeout(); mockConfig.getVcNumber(); mockConfig.getCapabilities(); mockConfig.getFlags2(); mockConfig.getSessionLimit(); mockConfig.getOemEncoding();
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 3.9K bytes - Click Count (0) -
src/test/java/jcifs/netbios/NameServiceClientImplTest.java
// Configure mock context with fast timeouts when(mockContext.getConfig()).thenReturn(mockConfig); // Setup configuration with minimal timeouts for fast testing when(mockConfig.getNetbiosSoTimeout()).thenReturn(100); // Very short timeout when(mockConfig.getNetbiosRetryTimeout()).thenReturn(50); // Very short retry when(mockConfig.getNetbiosRetryCount()).thenReturn(1); // Single retry onlyCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 11K bytes - Click Count (0) -
src/test/java/jcifs/config/PropertyConfigurationTest.java
// Note: getNativeCharset() is not available in the Configuration interface // Test a different configuration property instead assertTrue(testConfig.getNetbiosSoTimeout() > 0); } @Test @DisplayName("Should handle network properties") void testNetworkProperties() throws CIFSException { // Given Properties props = new Properties();
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.3K bytes - Click Count (0)