- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for remainingBytes (0.07 sec)
-
src/main/java/jcifs/internal/smb2/io/Smb2ReadRequest.java
} /** * Sets the number of bytes remaining to be read after this request * * @param remainingBytes * the remainingBytes to set */ public void setRemainingBytes(final int remainingBytes) { this.remainingBytes = remainingBytes; } /** * Add RDMA channel information for direct memory access *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2WriteRequest.java
} /** * Sets the number of bytes remaining to be written in a sequence of write operations. * * @param remainingBytes the remainingBytes to set */ public void setRemainingBytes(final int remainingBytes) { this.remainingBytes = remainingBytes; } /** * Sets the write operation flags. * * @param writeFlags the writeFlags to set */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 7.1K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/io/ContentCacheTest.java
// Read remaining bytes byte[] remaining = new byte[20]; int remainingBytes = stream.read(remaining); assertEquals(8, remainingBytes); // ", World!" assertEquals(", World!", new String(remaining, 0, remainingBytes, "UTF-8")); } }
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 10.3K bytes - Viewed (0) -
cmd/test-utils_test.go
if dataLen <= 0 { return 0 } chunksCount := dataLen / chunkSize remainingBytes := dataLen % chunkSize var streamLen int64 streamLen += chunksCount * calculateSignedChunkLength(chunkSize) if remainingBytes > 0 { streamLen += calculateSignedChunkLength(remainingBytes) } streamLen += calculateSignedChunkLength(0) return streamLen }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 77K bytes - Viewed (0)