Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getTotalAllocated (0.07 sec)

  1. src/test/java/jcifs/internal/smb2/rdma/RdmaIntegrationTest.java

                assertNotNull(recvRegion.getBuffer(), "Receive region buffer should not be null");
    
                // Test buffer pooling statistics
                long initialAllocated = bufferManager.getTotalAllocated();
                long initialActive = bufferManager.getActiveRegions();
    
                assertTrue(initialAllocated >= 2, "Should have allocated at least 2 regions");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  2. docs/smb3-features/05-rdma-smb-direct-design.md

            }
            
            while ((region = availableReceiveRegions.poll()) != null) {
                region.close();
                totalReleased.incrementAndGet();
            }
        }
        
        public long getTotalAllocated() { return totalAllocated.get(); }
        public long getTotalReleased() { return totalReleased.get(); }
        public long getActiveRegions() { return totalAllocated.get() - totalReleased.get(); }
    }
    ```
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
Back to top