- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for getNetbiosRetryCount (0.16 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/netbios/NameServiceClientImpl.java
if (request.isBroadcast) { if (request.addr == null) { request.addr = this.baddr; } n = config.getNetbiosRetryCount(); } else { n = 1; } do { try { send(request, response, config.getNetbiosRetryTimeout());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/config/DelegatingConfiguration.java
return this.delegate.getNetbiosRetryTimeout(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getNetbiosRetryCount() */ @Override public int getNetbiosRetryCount() { return this.delegate.getNetbiosRetryCount(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getNetbiosRcvBufSize() */ @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/Configuration.java
/** * * Property {@code jcifs.netbios.retryCount} (int, default 2) * * @return maximum number of retries for netbios requests */ int getNetbiosRetryCount(); /** * * * Property {@code jcifs.netbios.cachePolicy} in minutes (int, default 600) * * @return netbios cache timeout, in seconds, 0 - disable caching, -1 - cache foreverCreated: 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/test/java/jcifs/netbios/NameServiceClientImplTest.java
when(mockConfig.getNetbiosSoTimeout()).thenReturn(100); // Very short timeout when(mockConfig.getNetbiosRetryTimeout()).thenReturn(50); // Very short retry when(mockConfig.getNetbiosRetryCount()).thenReturn(1); // Single retry only when(mockConfig.getNetbiosLocalPort()).thenReturn(0); when(mockConfig.getNetbiosLocalAddress()).thenReturn(InetAddress.getByName("127.0.0.1"));
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 11K bytes - Click Count (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.netbiosCachePolicy; } @Override public int getNetbiosRcvBufSize() { return this.netbiosRevcBufferSize; } @Override public int getNetbiosRetryCount() { return this.netbiosRetryCount; } @Override public int getNetbiosRetryTimeout() { return this.netbiosRetryTimeout; } @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.getNetbiosScope(); mockConfig.getNetbiosSndBufSize(); mockConfig.getNetbiosRcvBufSize(); mockConfig.getNetbiosRetryTimeout(); mockConfig.getNetbiosRetryCount(); mockConfig.getNetbiosCachePolicy(); mockConfig.getMaximumBufferSize(); mockConfig.getTransactionBufferSize(); mockConfig.getBufferCacheSize();
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)