- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getOperationErrors (0.23 sec)
-
src/test/java/jcifs/internal/smb2/rdma/RdmaIntegrationTest.java
assertEquals(1, stats.getRdmaReceives(), "Should have 1 receive operation"); assertEquals(5120, stats.getBytesTransferred(), "Should have transferred 5KB total"); assertEquals(1, stats.getOperationErrors(), "Should have 1 error"); assertEquals(0.25, stats.getErrorRate(), 0.001, "Error rate should be 25% (1 error out of 4 successful operations)"); // Verify latency calculations
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java
public long getBytesTransferred() { return bytesTransferred.get(); } /** * Get total number of operation errors * * @return error count */ public long getOperationErrors() { return operationErrors.get(); } /** * Get total number of connections created * * @return connection count */ public long getConnectionsCreated() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 10.7K bytes - Viewed (0)