- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for remainingBytes (0.12 sec)
-
src/main/java/jcifs/internal/smb2/io/Smb2ReadRequest.java
this.minimumCount = minimumCount; } /** * @param remainingBytes * the remainingBytes to set */ public void setRemainingBytes ( int remainingBytes ) { this.remainingBytes = remainingBytes; } /** * {@inheritDoc} * * @see jcifs.internal.CommonServerMessageBlockRequest#size()
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2WriteRequest.java
this.data = data; this.dataOffset = offset; this.dataLength = length; } /** * @param remainingBytes * the remainingBytes to set */ public void setRemainingBytes ( int remainingBytes ) { this.remainingBytes = remainingBytes; } /** * @param writeFlags * the writeFlags to set */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.8K 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 Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 01 22:13:18 UTC 2024 - 77K bytes - Viewed (0)