Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setReadFlags (0.07 sec)

  1. 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")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  2. 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
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 7.8K bytes
    - Viewed (0)
Back to top