- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for recordError (0.1 seconds)
-
src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java
bytesTransferred.addAndGet(bytes); totalReceiveTime.addAndGet(durationNanos); } /** * Record an RDMA operation error */ public void recordError() { operationErrors.incrementAndGet(); } /** * Record a new RDMA connection creation */ public void recordConnectionCreated() {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:12:28 GMT 2025 - 10.7K bytes - Click Count (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
} public void recordRdmaWrite(int bytes) { rdmaWrites.incrementAndGet(); bytesTransferred.addAndGet(bytes); } public void recordError() { operationErrors.incrementAndGet(); } public double getErrorRate() { long total = rdmaReads.get() + rdmaWrites.get() + rdmaSends.get() + rdmaReceives.get();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 35.9K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java
*/ public boolean handleRdmaError(RdmaConnection connection, Exception error) { log.warn("RDMA error occurred: {}", error.getMessage()); statistics.recordError(); if (isRecoverableError(error)) { return attemptRecovery(connection, error); } else { log.error("Non-recoverable RDMA error, fallback required", error);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 10.5K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/rdma/RdmaIntegrationTest.java
stats.recordRdmaWrite(2048, 2000000); // 2KB in 2ms 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");
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 13.8K bytes - Click Count (0)