Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 600 for itemout (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    	timeout := storagebackend.DefaultHealthcheckTimeout
    	if c.HealthcheckTimeout != time.Duration(0) {
    		timeout = c.HealthcheckTimeout
    	}
    	return newETCD3Check(c, timeout, stopCh)
    }
    
    func newETCD3ReadyCheck(c storagebackend.Config, stopCh <-chan struct{}) (func() error, error) {
    	timeout := storagebackend.DefaultReadinessTimeout
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags.go

    	}
    	if f.Timeout != nil {
    		flags.StringVar(f.Timeout, flagTimeout, *f.Timeout, "The length of time to wait before giving up on a single server request. Non-zero values should contain a corresponding time unit (e.g. 1s, 2m, 3h). A value of zero means don't timeout requests.")
    	}
    	if f.DisableCompression != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_attacher.go

    	return c.waitForVolumeAttachment(source.VolumeHandle, attachID, timeout)
    }
    
    func (c *csiAttacher) waitForVolumeAttachment(volumeHandle, attachID string, timeout time.Duration) (string, error) {
    	klog.V(4).Info(log("probing for updates from CSI driver for [attachment.ID=%v]", attachID))
    
    	timer := time.NewTimer(timeout) // TODO (vladimirvivien) investigate making this configurable
    	defer timer.Stop()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *   <li>awaits executor service termination for half of the specified timeout.
       *   <li>if the timeout expires, it calls {@link ExecutorService#shutdownNow()}, cancelling
       *       pending tasks and interrupting running tasks.
       *   <li>awaits executor service termination for the other half of the specified timeout.
       * </ol>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/extauthz.go

    ) *builtExtAuthz {
    	service := &extauthzhttp.HttpService{
    		PathPrefix: config.PathPrefix,
    		ServerUri: &core.HttpUri{
    			// Timeout is required.
    			Timeout: timeoutOrDefault(config.Timeout),
    			// Uri is required but actually not used in the ext_authz filter.
    			Uri: fmt.Sprintf("http://%s", hostname),
    			HttpUpstreamType: &core.HttpUri_Cluster{
    				Cluster: cluster,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

       *
       * @param timeout the maximum time to wait
       * @param unit the time unit of the timeout argument
       * @throws TimeoutException if not all of the services have stopped within the deadline
       */
      @SuppressWarnings("GoodTime") // should accept a java.time.Duration
      public void awaitStopped(long timeout, TimeUnit unit) throws TimeoutException {
        state.awaitStopped(timeout, unit);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/status/server.go

    		if err != nil {
    			log.Warnf("Failed to parse timeout header %v: %v", timeoutString, err)
    		} else {
    			ctx, cancel = context.WithTimeout(ctx, timeout)
    		}
    	}
    	req, err := http.NewRequestWithContext(ctx, http.MethodGet, url, nil)
    	if err != nil {
    		return nil, cancel, "", err
    	}
    	applyHeaders(req.Header, header, "Accept",
    		"User-Agent",
    		"X-Prometheus-Scrape-Timeout-Seconds",
    	)
    
    	resp, err := s.http.Do(req)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  8. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        val displayName: String,
        val timeout: Int,
        val defaultBaselines: String = "",
        val channel: String,
        val extraParameters: String = ""
    ) {
        per_commit(
            displayName = "Performance Regression Test",
            timeout = 420,
            channel = "commits"
        ),
        per_day(
            displayName = "Slow Performance Regression Test",
            timeout = 420,
            channel = "commits"
        ),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. pkg/wasm/convert.go

    	if remote.Sha256 == "nil" {
    		remote.Sha256 = ""
    	}
    
    	// Default timeout, without this, if a user does not specify a timeout in the config, it fails with deadline exceeded
    	// while building transport in go container.
    	timeout := time.Second * 5
    	if remote.GetHttpUri().Timeout != nil {
    		// This is always 30s, because the timeout is set by the control plane when converted to WasmPluginWrapper.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. pilot/pkg/security/authn/policy_applier.go

    		provider.FromParams = jwtRule.FromParams
    		provider.FromCookies = jwtRule.FromCookies
    
    		authnLog.Debugf("JwksFetchMode is set to: %v", features.JwksFetchMode)
    
    		timeout := &durationpb.Duration{Seconds: 5}
    		if jwtRule.Timeout != nil {
    			timeout = jwtRule.Timeout
    		}
    
    		// Use Envoy remote jwks if jwksUri is not empty and JwksFetchMode not Istiod. Parse the jwksUri to get the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top