Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for 3s (0.01 seconds)

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

  1. internal/logger/config.go

    			Value: "100000",
    		},
    		config.KV{
    			Key:   QueueDir,
    			Value: "",
    		},
    		config.KV{
    			Key:   MaxRetry,
    			Value: "0",
    		},
    		config.KV{
    			Key:   RetryInterval,
    			Value: "3s",
    		},
    		config.KV{
    			Key:   httpTimeout,
    			Value: "5s",
    		},
    	}
    
    	DefaultAuditWebhookKVS = config.KVS{
    		config.KV{
    			Key:   config.Enable,
    			Value: config.EnableOff,
    		},
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 18.7K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/collect/IteratorsTest.java

          @Override
          protected Iterator<Integer> newTargetIterator() {
            return Iterators.concat(iterateOver(), iterateOver());
          }
        }.test();
      }
    
      @GwtIncompatible // slow (~3s)
      public void testConcatSingletonYieldsSingleton() {
        new SingletonIteratorTester() {
          @Override
          protected Iterator<Integer> newTargetIterator() {
            return Iterators.concat(iterateOver(1));
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Oct 28 18:44:53 GMT 2025
    - 56.7K bytes
    - Click Count (0)
Back to Top