Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getRdmaWrites (0.04 sec)

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

            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");
            assertEquals(1, stats.getRdmaReceives(), "Should have 1 receive 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

        public long getRdmaReads() {
            return rdmaReads.get();
        }
    
        /**
         * Get total number of RDMA write operations
         *
         * @return write operation count
         */
        public long getRdmaWrites() {
            return rdmaWrites.get();
        }
    
        /**
         * Get total number of RDMA send operations
         *
         * @return send operation count
         */
        public long getRdmaSends() {
    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