- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for totalAllocated (0.05 sec)
-
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;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.7K bytes - Viewed (0) -
src/main/java/jcifs/util/ResourceManager.java
if (holder.closed) { closed++; } else { active++; } } return Map.of("totalAllocated", totalAllocated.get(), "totalReleased", totalReleased.get(), "totalLeaks", totalLeaks.get(), "activeResources", active, "closedResources", closed, "trackedResources", activeResources.size()); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.2K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
region.close(); totalReleased.incrementAndGet(); } } public long getTotalAllocated() { return totalAllocated.get(); } public long getTotalReleased() { return totalReleased.get(); } public long getActiveRegions() { return totalAllocated.get() - totalReleased.get(); } } ``` ### 4.5 RDMA Provider Implementations #### 4.5.1 DiSNI Provider (InfiniBand/RoCE) ```java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
src/test/java/jcifs/util/ResourceManagerTest.java
assertNotNull(resourceId); assertTrue(resourceId.contains("TestResource")); Map<String, Object> stats = resourceManager.getStatistics(); assertTrue((long) stats.get("totalAllocated") > 0); } @Test @DisplayName("Test resource close tracking") void testResourceCloseTracking() throws Exception { TestResource resource = new TestResource("test2");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.9K bytes - Viewed (0)