Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for recordRdmaRead (0.05 sec)

  1. src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java

        /**
         * Record an RDMA read operation
         *
         * @param bytes number of bytes read
         * @param durationNanos operation duration in nanoseconds
         */
        public void recordRdmaRead(int bytes, long durationNanos) {
            rdmaReads.incrementAndGet();
            bytesTransferred.addAndGet(bytes);
            totalReadTime.addAndGet(durationNanos);
        }
    
        /**
         * Record an RDMA write operation
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/rdma/RdmaIntegrationTest.java

            }
        }
    
        @Test
        public void testRdmaStatisticsTracking() throws Exception {
            RdmaStatistics stats = new RdmaStatistics();
    
            // Simulate various RDMA operations
            stats.recordRdmaRead(1024, 1000000); // 1KB in 1ms
            stats.recordRdmaWrite(2048, 2000000); // 2KB in 2ms
            stats.recordRdmaSend(512, 500000); // 512B in 0.5ms
            stats.recordRdmaReceive(1536, 1500000); // 1.5KB in 1.5ms
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  3. docs/smb3-features/05-rdma-smb-direct-design.md

        private final AtomicLong rdmaReceives = new AtomicLong();
        private final AtomicLong bytesTransferred = new AtomicLong();
        private final AtomicLong operationErrors = new AtomicLong();
        
        public void recordRdmaRead(int bytes) {
            rdmaReads.incrementAndGet();
            bytesTransferred.addAndGet(bytes);
        }
        
        public void recordRdmaWrite(int bytes) {
            rdmaWrites.incrementAndGet();
    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