- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for SmbTransportPoolImpl (0.07 sec)
-
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
* * @author mbechler * * <p>This class is intended for internal use.</p> */ public class SmbTransportPoolImpl implements SmbTransportPool { /** * Constructs a new SmbTransportPoolImpl instance. * This transport pool manages SMB connections for the client. */ public SmbTransportPoolImpl() { // Start proactive health checking startProactiveHealthChecking(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 33.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportPoolImplTest.java
import jcifs.NameServiceClient; import jcifs.internal.SmbNegotiationResponse; /** * Unit tests for SmbTransportPoolImpl using JUnit 5 and Mockito */ @ExtendWith(MockitoExtension.class) @MockitoSettings(strictness = Strictness.LENIENT) @DisplayName("SmbTransportPoolImpl Tests") class SmbTransportPoolImplTest { private SmbTransportPoolImpl pool; @Mock private CIFSContext ctx; @Mock private Configuration config;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 19.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/CriticalPerformanceTest.java
} /** * Test connection pool scalability with concurrent access */ @Test public void testConnectionPoolConcurrentPerformance() throws Exception { SmbTransportPoolImpl pool = new SmbTransportPoolImpl(); pool.setMaxPoolSize(100); int threadCount = 20; int operationsPerThread = 100; ExecutorService executor = Executors.newFixedThreadPool(threadCount);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.3K bytes - Viewed (0)