Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for 2s (0.06 sec)

  1. guava/src/com/google/common/math/LongMath.java

         * >60% faster than the Euclidean algorithm in benchmarks.
         */
        int aTwos = Long.numberOfTrailingZeros(a);
        a >>= aTwos; // divide out all 2s
        int bTwos = Long.numberOfTrailingZeros(b);
        b >>= bTwos; // divide out all 2s
        while (a != b) { // both a, b are odd
          // The key to the binary GCD algorithm is as follows:
          // Both a and b are odd. Assume a > b; then gcd(a - b, b) = gcd(a, b).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/LongMath.java

         * >60% faster than the Euclidean algorithm in benchmarks.
         */
        int aTwos = Long.numberOfTrailingZeros(a);
        a >>= aTwos; // divide out all 2s
        int bTwos = Long.numberOfTrailingZeros(b);
        b >>= bTwos; // divide out all 2s
        while (a != b) { // both a, b are odd
          // The key to the binary GCD algorithm is as follows:
          // Both a and b are odd. Assume a > b; then gcd(a - b, b) = gcd(a, b).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  3. samples/bookinfo/README.md

     => importing to docker                                                                                                                                                                               0.2s
     => importing to docker                                                                                                                                                                               0.1s
    + [[ true == \t\r\u\e ]]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  4. pkg/proxy/apis/config/types.go

    	// regardless of maxPerCore (set maxPerCore=0 to leave the limit as-is).
    	Min *int32
    	// tcpEstablishedTimeout is how long an idle TCP connection will be kept open
    	// (e.g. '2s').  Must be greater than 0 to set.
    	TCPEstablishedTimeout *metav1.Duration
    	// tcpCloseWaitTimeout is how long an idle conntrack entry
    	// in CLOSE_WAIT state will remain in the conntrack
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_graceful_termination_test.go

    //     |                                                            |
    //     s.AuditBackend.Shutdown()                                 server.Shutdown(timeout=2s)
    //     |                                                            |
    //     |                                                   stop listener (net/http)
    //     |                                                            |
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  6. pkg/controller/servicecidrs/servicecidrs_controller.go

    	// sequence of delays between successive queuings of a service.
    	//
    	// 5ms, 10ms, 20ms, 40ms, 80ms, 160ms, 320ms, 640ms, 1.3s, 2.6s, 5.1s, 10.2s, 20.4s, 41s, 82s
    	maxRetries     = 15
    	controllerName = "service-cidr-controller"
    
    	ServiceCIDRProtectionFinalizer = "networking.k8s.io/service-cidr-finalizer"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    		//   (not including active long running requests) have been drained.
    		// - once drained, http Server Shutdown is invoked with a timeout of 2s,
    		//   net/http waits for 1s for the peer to respond to a GO_AWAY frame, so
    		//   we should wait for a minimum of 2s
    		shutdownTimeout = 2 * time.Second
    		klog.V(1).InfoS("[graceful-termination] using HTTP Server shutdown timeout", "shutdownTimeout", shutdownTimeout)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  8. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller.go

    	// current rate-limiter in use (1s*2^(numRetries-1)) up to a max of 100s.
    	// The following numbers represent the sequence of delays between successive
    	// queuings of an Endpoints resource.
    	//
    	// 1s, 2s, 4s, 8s, 16s, 32s, 64s, 100s (max)
    	maxRetries = 15
    
    	// defaultSyncBackOff is the default backoff period for syncEndpoints calls.
    	defaultSyncBackOff = 1 * time.Second
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 23:18:31 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. pkg/controller/endpointslice/endpointslice_controller.go

    	// update an EndpointSlice could trigger a retry. With the current
    	// rate-limiter in use (1s*2^(numRetries-1)) the following numbers represent
    	// the sequence of delays between successive queuings of a service.
    	//
    	// 1s, 2s, 4s, 8s, 16s, 32s, 64s, 128s, 256s, 512s, 1000s (max)
    	maxRetries = 15
    
    	// endpointSliceChangeMinSyncDelay indicates the minimum delay before
    	// queuing a syncService call after an EndpointSlice changes. If
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. pkg/test/kube/dump.go

    				// already failed.
    				// We add backoff because we may see transient warming errors during cleanup of resources.
    				attempts := 0
    				backoff := time.Second * 1 // Try after 0s, 1s, 2s, 4s, 8s, or 7s total
    				for {
    					attempts++
    					warming := isWarming(cfgDump)
    					if warming == "" {
    						// Not warming
    						break
    					}
    					if attempts > 3 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top