Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SmbTransportPoolImpl (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/main/java/jcifs/context/BaseContext.java

    import jcifs.smb.DfsImpl;
    import jcifs.smb.Handler;
    import jcifs.smb.NtlmPasswordAuthenticator;
    import jcifs.smb.SIDCacheImpl;
    import jcifs.smb.SmbFile;
    import jcifs.smb.SmbNamedPipe;
    import jcifs.smb.SmbTransportPoolImpl;
    
    /**
     * Base implementation of CIFS context providing core functionality for SMB operations.
     * This class serves as the foundation for context implementations in the jCIFS library.
     *
     * @author mbechler
     */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.5K bytes
    - Viewed (0)
Back to top