Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setMinCount (0.87 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComReadAndX.java

            return this.minCount;
        }
    
        /**
         * Sets the minimum count of bytes to read.
         *
         * @param minCount
         *            the minCount to set
         */
        public final void setMinCount(final int minCount) {
            this.minCount = minCount;
        }
    
        /**
         * Gets the remaining bytes count.
         *
         * @return the remaining
         */
        public final int getRemaining() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFileInputStream.java

                        if (type == SmbConstants.TYPE_NAMED_PIPE) {
                            // Use fixed 1024 values for named pipes
                            request.setMinCount(1024);
                            request.setMaxCount(1024);
                            request.setRemaining(1024);
                        } else if (this.largeReadX) {
                            // Optimize large read requests
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.6K bytes
    - Viewed (0)
Back to top