Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for AtomicLong (0.05 sec)

  1. src/main/java/jcifs/util/SmbCircuitBreaker.java

        private final AtomicLong lastFailureTime = new AtomicLong(0);
        private final AtomicLong lastStateChangeTime = new AtomicLong(System.currentTimeMillis());
    
        // Metrics tracking
        private final AtomicLong totalRequests = new AtomicLong(0);
        private final AtomicLong totalFailures = new AtomicLong(0);
        private final AtomicLong totalSuccesses = new AtomicLong(0);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 33.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java

        }
    
        private final AtomicLong rdmaReads = new AtomicLong();
        private final AtomicLong rdmaWrites = new AtomicLong();
        private final AtomicLong rdmaSends = new AtomicLong();
        private final AtomicLong rdmaReceives = new AtomicLong();
        private final AtomicLong bytesTransferred = new AtomicLong();
        private final AtomicLong operationErrors = new AtomicLong();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/CriticalPerformanceTest.java

            CountDownLatch startLatch = new CountDownLatch(1);
            CountDownLatch endLatch = new CountDownLatch(threadCount);
    
            // Use AtomicLong to simulate the fixed bytesEncrypted field
            AtomicLong mockBytesEncrypted = new AtomicLong(0);
            AtomicLong totalTime = new AtomicLong(0);
            AtomicInteger operations = new AtomicInteger(0);
    
            long overallStart = System.nanoTime();
    
    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/util/SimpleCircuitBreaker.java

        private final AtomicLong lastFailureTime = new AtomicLong(0);
        private final AtomicLong stateChangeTime = new AtomicLong(System.currentTimeMillis());
    
        // Statistics
        private final AtomicLong totalCalls = new AtomicLong(0);
        private final AtomicLong totalFailures = new AtomicLong(0);
        private final AtomicLong totalSuccesses = new AtomicLong(0);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java

            IndexUpdateCallback callback = new IndexUpdateCallback() {
                private final AtomicLong docSize = new AtomicLong(0);
                private final AtomicLong execTime = new AtomicLong(0);
    
                @Override
                public void store(DataStoreParams paramMap, Map<String, Object> dataMap) {
                    assertNotNull(paramMap);
                    assertNotNull(dataMap);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/rdma/RdmaBufferManager.java

        private final ConcurrentLinkedQueue<RdmaMemoryRegion> availableSendRegions;
        private final ConcurrentLinkedQueue<RdmaMemoryRegion> availableReceiveRegions;
        private final AtomicLong totalAllocated;
        private final AtomicLong totalReleased;
    
        // Buffer pool configuration
        private final int initialSendBuffers = 32;
        private final int initialReceiveBuffers = 64;
        private final int sendBufferSize = 65536; // 64KB
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/util/ServerResponseValidator.java

        private static final int MAX_PATH_SIZE = 32767;
    
        // Statistics
        private final AtomicLong totalValidations = new AtomicLong(0);
        private final AtomicLong failedValidations = new AtomicLong(0);
        private final AtomicLong bufferOverflowsPrevented = new AtomicLong(0);
        private final AtomicLong integerOverflowsPrevented = new AtomicLong(0);
    
        /**
         * Validate SMB response buffer bounds
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  8. docs/smb3-features/03-multi-channel-design.md

        
        public class ChannelStatistics {
            private final AtomicLong bytesSent = new AtomicLong();
            private final AtomicLong bytesReceived = new AtomicLong();
            private final AtomicLong operations = new AtomicLong();
            private final AtomicLong errors = new AtomicLong();
            private final AtomicLong latencyTotal = new AtomicLong();
            
            public double getAverageLatency() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  9. docs/smb3-features/06-witness-protocol-design.md

    ```java
    public class WitnessStatistics {
        private final AtomicLong registrationsActive = new AtomicLong();
        private final AtomicLong notificationsReceived = new AtomicLong();
        private final AtomicLong failoverEvents = new AtomicLong();
        private final AtomicLong heartbeatsSent = new AtomicLong();
        private final AtomicLong registrationFailures = new AtomicLong();
        
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/rdma/disni/DisniMemoryRegion.java

        private static final Logger log = LoggerFactory.getLogger(DisniMemoryRegion.class);
        private static final AtomicInteger keyGenerator = new AtomicInteger(2000);
        private static final AtomicLong addressCounter = new AtomicLong(0x10000000L);
        private static final Map<ByteBuffer, Long> bufferAddresses = new ConcurrentHashMap<>();
    
        // DiSNI objects - would be actual DiSNI types in real implementation
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 5.3K bytes
    - Viewed (0)
Back to top