Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getBufferCacheSize (0.27 sec)

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

            return this.delegate.getTransactionBufferSize();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getBufferCacheSize()
         */
        @Override
        public int getBufferCacheSize () {
            return this.delegate.getBufferCacheSize();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getListCount()
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 17.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/BufferCacheImpl.java

        private final int bufferSize;
        private int freeBuffers = 0;
    
    
        /**
         * 
         * @param cfg
         */
        public BufferCacheImpl ( Configuration cfg ) {
            this(cfg.getBufferCacheSize(), cfg.getMaximumBufferSize());
        }
    
    
        /**
         * @param maxBuffers
         * @param maxSize
         * 
         */
        public BufferCacheImpl ( int maxBuffers, int maxSize ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jan 24 11:40:34 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

            return this.transactionBufferSize;
        }
    
    
        @Override
        public int getMaximumBufferSize () {
            return this.maximumBufferSize;
        }
    
    
        @Override
        public int getBufferCacheSize () {
            return this.bufferCacheSize;
        }
    
    
        @Override
        public int getListCount () {
            return this.smbListCount;
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

        int getTransactionBufferSize ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.maxBuffers</tt> (int, default 16)
         * 
         * @return number of buffers to keep in cache
         */
        int getBufferCacheSize ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.listCount</tt> (int, default 200)
         * 
         * @return maxmimum number of elements to request in a list request
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top