Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getRdmaReads (0.29 sec)

  1. src/test/java/jcifs/internal/smb2/rdma/RdmaIntegrationTest.java

            stats.recordRdmaSend(512, 500000); // 512B in 0.5ms
            stats.recordRdmaReceive(1536, 1500000); // 1.5KB in 1.5ms
            stats.recordError();
    
            // Verify counters
            assertEquals(1, stats.getRdmaReads(), "Should have 1 read operation");
            assertEquals(1, stats.getRdmaWrites(), "Should have 1 write operation");
            assertEquals(1, stats.getRdmaSends(), "Should have 1 send operation");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java

            memoryRegionsActive.decrementAndGet();
        }
    
        /**
         * Get total number of RDMA read operations
         *
         * @return read operation count
         */
        public long getRdmaReads() {
            return rdmaReads.get();
        }
    
        /**
         * Get total number of RDMA write operations
         *
         * @return write operation count
         */
        public long getRdmaWrites() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 10.7K bytes
    - Viewed (0)
Back to top