- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for setReadFlags (0.05 seconds)
-
src/main/java/jcifs/internal/smb2/io/Smb2ReadRequest.java
this.padding = padding; } /** * Sets the read flags for the read operation * * @param readFlags * the readFlags to set */ public void setReadFlags(final byte readFlags) { this.readFlags = readFlags; } /** * Sets the number of bytes to read * * @param readLength * the readLength to set */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 7.8K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java
@DisplayName("Should set read flags correctly") void testSetReadFlags() { assertDoesNotThrow(() -> request.setReadFlags((byte) 0)); assertDoesNotThrow(() -> request.setReadFlags(Smb2ReadRequest.SMB2_READFLAG_READ_UNBUFFERED)); assertDoesNotThrow(() -> request.setReadFlags((byte) 0xFF)); } @Test @DisplayName("Should set read length correctly")Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 24.8K bytes - Click Count (0)