Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getMaxCount (0.05 sec)

  1. src/test/java/jcifs/smb/SmbFileInputStreamTest.java

                jcifs.internal.smb1.com.SmbComReadAndX req = cap.getValue();
                assertEquals(0x12345 & 0xFFFF, req.getMaxCount(), "maxCount should contain lower 16 bits");
                assertEquals(0x12345, req.getMinCount(), "minCount should remain original full value");
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComReadAndX.java

            this.openTimeout = 0xFFFFFFFF;
        }
    
        /**
         * Gets the maximum count of bytes to read.
         *
         * @return the maxCount
         */
        public final int getMaxCount() {
            return this.maxCount;
        }
    
        /**
         * Sets the maximum count of bytes to read.
         *
         * @param maxCount
         *            the maxCount to set
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.4K bytes
    - Viewed (0)
Back to top