Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for 2h0m0s (0.14 sec)

  1. pkg/kubelet/apis/config/validation/validation_test.go

    			conf.CPUCFSQuotaPeriod = metav1.Duration{Duration: 200 * time.Millisecond}
    			return conf
    		},
    		errMsg: "invalid configuration: cpuCFSQuotaPeriod (--cpu-cfs-quota-period) {200ms} requires feature gate CustomCPUCFSQuotaPeriod",
    	}, {
    		name: "invalid CPUCFSQuotaPeriod",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. pkg/controller/deployment/deployment_controller.go

    	// With the current rate-limiter in use (5ms*2^(maxRetries-1)) the following numbers represent the times
    	// a deployment is going to be requeued:
    	//
    	// 5ms, 10ms, 20ms, 40ms, 80ms, 160ms, 320ms, 640ms, 1.3s, 2.6s, 5.1s, 10.2s, 20.4s, 41s, 82s
    	maxRetries = 15
    )
    
    // controllerKind contains the schema.GroupVersionKind for this controller type.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. pkg/controller/resourcequota/resource_quota_controller_test.go

    	//       resyncMonitors()
    	//       cache.WaitForNamedCacheSync() loops with `syncedPollPeriod` (hardcoded to 100ms), until either its stop channel is closed after `period`, or all caches synced.
    	//
    	// Setting the period to 200ms allows the WaitForCacheSync() to check
    	// for cache sync ~2 times in every wait.Until() loop.
    	//
    	// The 1s sleep in the test allows GetQuotableResources and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  4. pilot/pkg/autoregistration/controller.go

    	// With the current rate-limiter in use (5ms*2^(maxRetries-1)) the following numbers represent the
    	// sequence of delays between successive queuings of a service.
    	//
    	// 5ms, 10ms, 20ms, 40ms, 80ms
    	maxRetries = 5
    )
    
    var log = istiolog.RegisterScope("wle", "wle controller debugging")
    
    type Controller struct {
    	instanceID string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  5. src/os/signal/signal_test.go

    var fatalWaitingTime = 30 * time.Second
    
    func init() {
    	if testenv.Builder() == "solaris-amd64-oraclerel" {
    		// The solaris-amd64-oraclerel builder has been observed to time out in
    		// TestNohup even with a 250ms settle time.
    		//
    		// Use a much longer settle time on that builder to try to suss out whether
    		// the test is flaky due to builder slowness (which may mean we need a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  6. src/net/dial_test.go

    		dualstack     bool
    		delay         time.Duration
    		expectElapsed time.Duration
    	}{
    		// Use a very brief delay, which should fallback immediately.
    		{true, 1 * time.Nanosecond, 0},
    		// Use a 200ms explicit timeout.
    		{true, 200 * time.Millisecond, 200 * time.Millisecond},
    		// The default is 300ms.
    		{true, 0, 300 * time.Millisecond},
    	}
    
    	handler := func(dss *dualStackServer, ln Listener) {
    		for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    				})
    			})
    		}
    
    		atomic.StoreInt32(&shouldWrite, 0)
    		if testWriteContention {
    			b.Logf("graph modifications during contention test: %d", writes)
    			b.Logf("<1ms=%d, <10ms=%d, <25ms=%d, <50ms=%d, <100ms=%d, <250ms=%d, <500ms=%d, <1000ms=%d, >1000ms=%d", _1ms, _10ms, _25ms, _50ms, _100ms, _250ms, _500ms, _1000ms, _1s)
    		} else {
    			b.Logf("graph modifications during non-contention test: %d", writes)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
Back to top