- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for MinSize (0.86 sec)
-
src/main/java/jcifs/internal/smb2/rdma/RdmaBufferManager.java
} /** * Get a send region from the pool or allocate a new one * * @param minSize minimum required size * @return memory region for sending * @throws IOException if allocation fails */ public RdmaMemoryRegion getSendRegion(int minSize) throws IOException { if (minSize <= sendBufferSize) { RdmaMemoryRegion region = availableSendRegions.poll();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.7K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
} catch (IOException e) { log.warn("Failed to pre-allocate receive buffer", e); } } } public RdmaMemoryRegion getSendRegion(int minSize) throws IOException { if (minSize <= sendBufferSize) { RdmaMemoryRegion region = availableSendRegions.poll(); if (region != null) { region.getBuffer().clear(); return region;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0)