Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getListSize (0.12 sec)

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

            return this.bufferCacheSize;
        }
    
    
        @Override
        public int getListCount () {
            return this.smbListCount;
        }
    
    
        @Override
        public int getListSize () {
            return this.smbListSize;
        }
    
    
        @Override
        public long getAttributeCacheTimeout () {
            return this.smbAttributeExpiration;
        }
    
    
        @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)
  2. src/main/java/jcifs/Configuration.java

    
        /**
         * 
         * Property <tt>jcifs.smb.client.listSize</tt> (int, default 65435)
         * 
         * @return maximum data size for list/info requests (known overhead is subtracted)
         */
        int getListSize ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.smb.client.attrExpirationPeriod</tt> (int, 5000)
         * 
         * @return timeout of file attribute cache
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeImpl.java

                    tf.getConfig(),
                    "\\",
                    "*",
                    SmbConstants.ATTR_DIRECTORY,
                    tf.getConfig().getListCount(),
                    tf.getConfig().getListSize());
                Trans2FindFirst2Response resp = new Trans2FindFirst2Response(tf.getConfig());
                try {
                    send(req, resp);
                }
                catch ( SmbException e ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/EnumTest.java

            int numFiles = 100;
            CIFSContext ctx = getContext();
            ctx = withConfig(ctx, new DelegatingConfiguration(ctx.getConfig()) {
    
                @Override
                public int getListSize () {
                    return 1024;
                }
            });
            ctx = withTestNTLMCredentials(ctx);
            try ( SmbResource root = ctx.get(getTestShareURL());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 25.5K bytes
    - Viewed (0)
Back to top