- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for rdmaWrite (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaConnection.java
// TCP fallback doesn't support real RDMA read throw new UnsupportedOperationException("RDMA read not supported by TCP fallback"); } @Override public void rdmaWrite(RdmaMemoryRegion localRegion, long remoteAddress, int remoteKey, int length) throws IOException { // TCP fallback doesn't support real RDMA write
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 8.8K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaTransport.java
* @param remoteKey remote access key * @param length number of bytes to write * @return number of bytes written * @throws IOException if operation fails */ public int rdmaWrite(ByteBuffer buffer, long remoteAddress, int remoteKey, int length) throws IOException { if (!isRdmaConnected()) { throw new IOException("RDMA connection not available"); } try {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 8.9K bytes - Click Count (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
} public void recordRdmaWrite(int bytes) { rdmaWrites.incrementAndGet(); bytesTransferred.addAndGet(bytes); } public void recordError() { operationErrors.incrementAndGet(); } public double getErrorRate() { long total = rdmaReads.get() + rdmaWrites.get() + rdmaSends.get() + rdmaReceives.get(); if (total == 0) return 0.0;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 35.9K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java
* Creates a new RDMA statistics tracker */ public RdmaStatistics() { // Default constructor } 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();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:12:28 GMT 2025 - 10.7K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaProviderTest.java
assertFalse(capabilities.contains(RdmaCapability.RDMA_READ), "Should not support RDMA read"); assertFalse(capabilities.contains(RdmaCapability.RDMA_WRITE), "Should not support RDMA write"); } @Test public void testCreateConnection() throws Exception { InetSocketAddress remote = new InetSocketAddress("localhost", 445);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 4.2K bytes - Click Count (0)