- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for recordWriteError (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java
*/ public void recordWriteSuccess(int bytes, long durationNanos) { recordRdmaWrite(bytes, durationNanos); } /** * Record a write operation error */ public void recordWriteError() { recordError(); } @Override public String toString() { return String.format( "RdmaStatistics[reads=%d, writes=%d, sends=%d, receives=%d, "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) -
src/main/java/jcifs/internal/smb2/rdma/RdmaTransport.java
long duration = System.nanoTime() - startTime; statistics.recordWriteSuccess(bytesWritten, duration); return bytesWritten; } catch (IOException e) { statistics.recordWriteError(); throw e; } } /** * Gets the RDMA buffer manager for memory operations. * * @return buffer manager instance */
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 8.9K bytes - Click Count (0)