Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for 2s (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/fmt/scan_test.go

    	{"%d%%", "42%", &intVal, 42}, // %% at end of string.
    
    	// Corner cases
    	{"%x", "FFFFFFFF\n", &uint32Val, uint32(0xFFFFFFFF)},
    
    	// Custom scanner.
    	{"%s", "  sss ", &xVal, Xs("sss")},
    	{"%2s", "sssss", &xVal, Xs("ss")},
    
    	// Fixed bugs
    	{"%d\n", "27\n", &intVal, 27},         // ok
    	{"%d\n", "28 \n", &intVal, 28},        // was: "unexpected newline"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	case ArrangementH:
    		result = ".H"
    	case Arrangement4H:
    		result = ".4H"
    	case Arrangement8H:
    		result = ".8H"
    	case ArrangementS:
    		result = ".S"
    	case Arrangement2S:
    		result = ".2S"
    	case Arrangement4S:
    		result = ".4S"
    	case ArrangementD:
    		result = ".D"
    	case Arrangement1D:
    		result = ".1D"
    	case Arrangement2D:
    		result = ".2D"
    	case Arrangement1Q:
    		result = ".1Q"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. 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)
  9. 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.
    var controllerKind = apps.SchemeGroupVersion.WithKind("Deployment")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/controller/repairip.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
    	workers    = 5
    )
    
    // Repair is a controller loop that examines all service ClusterIP allocations and logs any errors,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top