- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for rdmaWrite (0.08 sec)
-
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 {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.9K bytes - Viewed (0) -
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
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaConnection.java
* @param remoteAddress remote memory address * @param remoteKey remote memory key * @param length number of bytes to write * @throws IOException if write fails */ public abstract void rdmaWrite(RdmaMemoryRegion localRegion, long remoteAddress, int remoteKey, int length) throws IOException; /** * Negotiate RDMA parameters * * @param request negotiation request parameters
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaCapability.java
* by an RDMA provider implementation. */ public enum RdmaCapability { /** * Remote direct read operations */ RDMA_READ, /** * Remote direct write operations */ RDMA_WRITE, /** * Traditional send/receive with RDMA */ RDMA_SEND_RECEIVE, /** * Dynamic memory registration */ MEMORY_REGISTRATION, /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 1.3K bytes - Viewed (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);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4.2K bytes - Viewed (0)