Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getMaximumBufferSize (0.3 sec)

  1. src/main/java/jcifs/config/DelegatingConfiguration.java

            return this.delegate.getNativeLanman();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getMaximumBufferSize()
         */
        @Override
        public int getMaximumBufferSize () {
            return this.delegate.getMaximumBufferSize();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @deprecated use getReceiveBufferSize instead
         */
        @Deprecated
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 17.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/EnumTest.java

            int origBufferSize = ctx.getConfig().getMaximumBufferSize();
            // odd buffer size that does match the alignment
            int tryBufferSize = 1023;
            final int bufSize[] = new int[] {
                origBufferSize
            };
            ctx = withConfig(ctx, new DelegatingConfiguration(ctx.getConfig()) {
    
                @Override
                public int getMaximumBufferSize () {
                    return bufSize[ 0 ];
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFileInputStream.java

                this.readSize = th.getReceiveBufferSize();
                this.readSizeFile = th.getReceiveBufferSize();
                return;
            }
    
            this.readSize = Math.min(th.getReceiveBufferSize() - 70, th.getMaximumBufferSize() - 70);
    
            if ( th.hasCapability(SmbConstants.CAP_LARGE_READX) ) {
                this.largeReadX = true;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun May 17 08:55:14 UTC 2020
    - 13.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/BaseConfiguration.java

        }
    
    
        @Override
        public int getTransactionBufferSize () {
            return this.transactionBufferSize;
        }
    
    
        @Override
        public int getMaximumBufferSize () {
            return this.maximumBufferSize;
        }
    
    
        @Override
        public int getBufferCacheSize () {
            return this.bufferCacheSize;
        }
    
    
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Configuration.java

         */
        int getNetbiosCachePolicy ();
    
    
        /**
         * 
         * @return the maximum size of IO buffers, limits the maximum message size
         */
        int getMaximumBufferSize ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.transaction_buf_size</tt> (int, default 65535)
         * 
         * @return maximum data size for SMB transactions
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top