Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 258 for 20000 (0.07 sec)

  1. tools/packaging/common/gcp_envoy_bootstrap.json

                      "int_value": 0
                    },
                    "grpc.keepalive_time_ms": {
                      "int_value": 10000
                    },
                    "grpc.keepalive_timeout_ms": {
                      "int_value": 20000
                    }
                  }
                }
              },
              "initial_metadata": [
              {{ if .sts }}
              {{ if .gcp_project_id }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. cmd/data-usage_test.go

    	base := t.TempDir()
    	const bucket = "bucket"
    	files := []usageTestFile{
    		{name: "rootfile", size: 10000},
    		{name: "rootfile2", size: 10000},
    		{name: "dir1/d1file", size: 2000},
    		{name: "dir2/d2file", size: 300},
    		{name: "dir1/dira/dafile", size: 100000},
    		{name: "dir1/dira/dbfile", size: 200000},
    		{name: "dir1/dira/dirasub/dcfile", size: 1000000},
    		{name: "dir1/dira/dirasub/sublevel3/dccccfile", size: 10},
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/helpers_linux_test.go

    			input:    int64(10),
    			period:   uint64(200000),
    			expected: int64(2000),
    		},
    		{
    			msg:      "200 input 200k period and 40k quota",
    			input:    int64(200),
    			period:   uint64(200000),
    			expected: int64(40000),
    		},
    		{
    			msg:      "500 input 20k period and 20k expected quota",
    			input:    int64(500),
    			period:   uint64(20000),
    			expected: int64(10000),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/AbstractDaemonFixture.groovy

    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Stopped
    
    abstract class AbstractDaemonFixture implements DaemonFixture {
        public static final int STATE_CHANGE_TIMEOUT = 20000
        protected final DaemonLogFile daemonLog
        final DaemonContext context
    
        AbstractDaemonFixture(DaemonLogFile daemonLog, GradleVersion version) {
            this.daemonLog = daemonLog
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/jvm/JavaModuleDetector.java

        public JavaModuleDetector(FileContentCacheFactory cacheFactory, FileCollectionFactory fileCollectionFactory) {
            this.cache = cacheFactory.newCache("java-modules", 20000, new ModuleInfoLocator(), new BaseSerializerFactory().getSerializerFor(Boolean.class));
            this.fileCollectionFactory = fileCollectionFactory;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. src/os/fifo_test.go

    	}
    	f.Close()
    
    	// On a Linux laptop, before the problem was fixed,
    	// this test failed about 50% of the time with this
    	// number of iterations.
    	// It takes about 1/2 second when it passes.
    	const attempts = 20000
    
    	start := make(chan bool)
    	var wg sync.WaitGroup
    	wg.Add(1)
    	defer wg.Wait()
    	go func() {
    		defer wg.Done()
    		close(start)
    		for i := 0; i < attempts; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:47:23 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    		seedPod0Infra         = 1000
    		seedPod0Container0    = 2000
    		seedPod0Container1    = 2001
    		seedPod1Infra         = 3000
    		seedPod1Container     = 4000
    		seedPod2Infra         = 5000
    		seedPod2Container     = 6000
    		seedEphemeralVolume1  = 10000
    		seedEphemeralVolume2  = 10001
    		seedPersistentVolume1 = 20000
    		seedPersistentVolume2 = 20001
    	)
    	const (
    		pName0 = "pod0"
    		pName1 = "pod1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. internal/http/listener_test.go

    		{[]string{"127.0.0.1:" + casePorts[2], nonLoopBackIP + ":" + casePorts[2]}, "0.0.0.0:" + casePorts[2]},
    		{[]string{"localhost:" + casePorts[3]}, "127.0.0.1:" + casePorts[3]},
    		{[]string{nonLoopBackIP + ":" + casePorts[4]}, nonLoopBackIP + ":" + casePorts[4]},
    		{[]string{"127.0.0.1:" + casePorts[5], nonLoopBackIP + ":" + casePorts[5]}, "0.0.0.0:" + casePorts[5]},
    	}
    
    nextTest:
    	for i, testCase := range testCases {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. pilot/pkg/model/typed_xds_cache.go

    var _ typedXdsCache[uint64] = &lruCache[uint64]{}
    
    func newLru[K comparable](evictCallback simplelru.EvictCallback[K, cacheValue]) simplelru.LRUCache[K, cacheValue] {
    	sz := features.XDSCacheMaxSize
    	if sz <= 0 {
    		sz = 20000
    	}
    	l, err := simplelru.NewLRU(sz, evictCallback)
    	if err != nil {
    		panic(fmt.Errorf("invalid lru configuration: %v", err))
    	}
    	return l
    }
    
    func (l *lruCache[K]) Flush() {
    	l.mu.Lock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. src/time/tick_test.go

    	tim.Reset(10000 * Second)
    	drainAsync()
    
    	// Test stop while timer in heap (because goroutine is blocked on <-C).
    	done := make(chan bool)
    	notDone(done)
    	go func() {
    		<-C
    		close(done)
    	}()
    	Sleep(sched)
    	notDone(done)
    
    	// Test reset far away while timer in heap.
    	tim.Reset(20000 * Second)
    	Sleep(sched)
    	notDone(done)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top