Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nonPooledConnections (0.05 sec)

  1. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

                    long totalHealthChecks, long failedHealthChecks, long connectionsRemoved, int uniqueEndpoints,
                    boolean healthCheckingEnabled, boolean proactiveHealthCheckEnabled) {
                this.activeConnections = activeConnections;
                this.nonPooledConnections = nonPooledConnections;
    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

            Field nonPooledField = SmbTransportPoolImpl.class.getDeclaredField("nonPooledConnections");
            nonPooledField.setAccessible(true);
            @SuppressWarnings("unchecked")
            java.util.concurrent.ConcurrentLinkedQueue<SmbTransportImpl> nonPooledConnections =
                    (java.util.concurrent.ConcurrentLinkedQueue<SmbTransportImpl>) nonPooledField.get(pool);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 19.2K bytes
    - Viewed (0)
Back to top