Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for 2s (0.06 sec)

  1. operator/pkg/helmreconciler/wait.go

    		return nil
    	}
    
    	if err := waitForCRDs(objects, client); err != nil {
    		return err
    	}
    
    	var notReady []string
    	var debugInfo map[string]string
    
    	// Check if we are ready immediately, to avoid the 2s delay below when we are already ready
    	if ready, _, _, err := waitForResources(objects, client.Kube(), l); err == nil && ready {
    		return nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. docs/config/README.md

    ARGS:
    bitrotscan     (on|off)    perform bitrot scan on drives when checking objects during scanner
    max_sleep      (duration)  maximum sleep duration between objects to slow down heal operation. eg. 2s
    max_io         (int)       maximum IO requests allowed between objects to slow down heal operation. eg. 3
    drive_workers  (int)       the number of workers per drive to heal a new disk replacement.
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K 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. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher.go

    	}
    }
    
    func (c *cacheWatcher) nextBookmarkTime(now time.Time, bookmarkFrequency time.Duration) (time.Time, bool) {
    	// We try to send bookmarks:
    	//
    	// (a) right before the watcher timeout - for now we simply set it 2s before
    	//     the deadline
    	//
    	// (b) roughly every minute
    	//
    	// (c) immediately when the bookmarkAfterResourceVersion wasn't confirmed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 12:22:41 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  10. 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)
Back to top