Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for 2s (0.02 sec)

  1. 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)
  2. pkg/ctrlz/assets/static/css/fontawesome-all-5.0.6.css

    ft,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:a 2s infinite linear;animation:a 2s infinite linear}.fa-pulse{-webkit-animation:a 1s infinite steps(8);animation:a 1s infinite steps(8)}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 33.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/ctrlz/assets/static/css/all.css

        top: 3px;
        right: 1.3em;
        z-index: 5
    }
    
    button.copy-hide {
        transition: opacity .4s ease-in-out;
        opacity: 0
    }
    
    button.copy-show {
        transition: opacity 1.2s ease-in-out;
        opacity: 1
    }
    
    p {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.5;
        margin: .25em 0
    }
    
    @media (min-width: 768px) {
        p {
            margin: 1.5em 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K 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