Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for listCount (0.21 sec)

  1. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2.java

        static final int LIST_SIZE = Config.getInt( "jcifs.smb1.smb.client.listSize", DEFAULT_LIST_SIZE );
        static final int LIST_COUNT = Config.getInt( "jcifs.smb1.smb.client.listCount", DEFAULT_LIST_COUNT );
    
        Trans2FindFirst2( String filename, String wildcard, int searchAttributes ) {
            if( filename.equals( "\\" )) {
                this.path = filename;
            } else {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/PropertyConfiguration.java

            this.bufferCacheSize = Config.getInt(p, "jcifs.smb.maxBuffers", 16);
    
            this.smbListSize = Config.getInt(p, "jcifs.smb.client.listSize", 65435);
            this.smbListCount = Config.getInt(p, "jcifs.smb.client.listCount", 200);
    
            this.smbAttributeExpiration = Config.getLong(p, "jcifs.smb.client.attrExpirationPeriod", 5000L);
            this.ignoreCopyToException = Config.getBoolean(p, "jcifs.smb.client.ignoreCopyToException", false);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

         * 
         * @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
         */
        int getListCount ();
    
    
        /**
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool.go

    	var entries []chan metaCacheEntry
    
    	for poolIdx, erasureSet := range z.serverPools {
    		for setIdx, set := range erasureSet.sets {
    			set := set
    			listOut := make(chan metaCacheEntry, 1)
    			entries = append(entries, listOut)
    			disks, infos, _ := set.getOnlineDisksWithHealingAndInfo(true)
    			if len(disks) == 0 {
    				xioutil.SafeClose(results)
    				cancel()
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 80.5K bytes
    - Viewed (0)
Back to top