Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 17 of 17 for maxEntries (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/smb3-features/02-persistent-handles-design.md

    public class HandleReconnector {
        private final PersistentHandleManager handleManager;
        private final int maxRetries;
        private final long retryDelay;
        
        public HandleReconnector(PersistentHandleManager manager) {
            this.handleManager = manager;
            this.maxRetries = 3;
            this.retryDelay = 1000;  // 1 second
        }
        
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 02:53:50 GMT 2025
    - 31.6K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/ImmutableMultimap.java

          }
          Collection<Map.Entry<K, ImmutableCollection.Builder<V>>> mapEntries = builderMap.entrySet();
          if (keyComparator != null) {
            mapEntries = Ordering.from(keyComparator).<K>onKeys().immutableSortedCopy(mapEntries);
          }
          return ImmutableListMultimap.fromMapBuilderEntries(mapEntries, valueComparator);
        }
      }
    
      /**
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Dec 09 15:58:48 GMT 2025
    - 28.1K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java

              private final Iterator<Map.Entry<E, AtomicInteger>> mapEntries =
                  countMap.entrySet().iterator();
    
              @Override
              protected @Nullable Entry<E> computeNext() {
                while (true) {
                  if (!mapEntries.hasNext()) {
                    return endOfData();
                  }
                  Map.Entry<E, AtomicInteger> mapEntry = mapEntries.next();
                  int count = mapEntry.getValue().get();
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Dec 08 22:42:14 GMT 2025
    - 22.3K bytes
    - Click Count (0)
  4. cmd/metacache-set.go

    				*mc.meta = meta
    				if meta.status == scanStateError {
    					cancel()
    					exit = true
    				}
    			}
    			metaMu.Unlock()
    		}
    	}()
    
    	const retryDelay = 200 * time.Millisecond
    	const maxTries = 5
    
    	// Keep destination...
    	// Write results to disk.
    	bw := newMetacacheBlockWriter(entries, func(b *metacacheBlock) error {
    		// if the block is 0 bytes and its a first block skip it.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 30.7K bytes
    - Click Count (0)
  5. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

            CIFSContext listContext = createFreshContext();
    
            // Retry connection attempts for flaky CI environments
            int maxRetries = 3;
            Exception lastException = null;
    
            for (int attempt = 1; attempt <= maxRetries; attempt++) {
                try {
                    SmbFile server = new SmbFile(baseUrl, listContext);
    
                    // List shares
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 56K bytes
    - Click Count (0)
  6. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

                addOsAsInputs()
            }
            configureRerun()
    
            if (BuildEnvironment.isCiServer) {
                develocity.testRetry {
                    maxRetries.convention(determineMaxRetries())
                    maxFailures = determineMaxFailures()
                }
            }
    
            useJUnitPlatform()
            configureSpock()
            configureFlakyTest()
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri Dec 19 06:44:41 GMT 2025
    - 18.9K bytes
    - Click Count (0)
  7. internal/event/target/elasticsearch.go

    }
    
    func newClientV7(args ElasticsearchArgs) (*esClientV7, error) {
    	// Client options
    	elasticConfig := elasticsearch7.Config{
    		Addresses:  []string{args.URL.String()},
    		Transport:  args.Transport,
    		MaxRetries: 10,
    	}
    	// Set basic auth
    	if args.Username != "" && args.Password != "" {
    		elasticConfig.Username = args.Username
    		elasticConfig.Password = args.Password
    	}
    	// Create a client
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 15K bytes
    - Click Count (0)
Back to Top