Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,352 for Retries (0.1 sec)

  1. cluster/addons/fluentd-gcp/fluentd-gcp-configmap-old.yaml

        <match kubernetes.**>
          @type google_cloud
    
          # Try to detect JSON formatted log entries.
          detect_json true
          # Collect metrics in Prometheus registry about plugin activity.
          enable_monitoring true
          monitoring_type prometheus
          # Allow log entries from multiple containers to be sent in the same request.
          split_logs_by_tag false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 16.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/Striped64.java

       * resizing the table, as well as populating slots with new Cells.
       * There is no need for a blocking lock; when the lock is not
       * available, threads try other slots (or the base).  During these
       * retries, there is increased contention and reduced locality,
       * which is still better than alternatives.
       *
       * Per-thread hash codes are initialized to random values.
       * Contention and/or table collisions are indicated by failed
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. platforms/software/security/src/main/java/org/gradle/security/internal/PublicKeyDownloadService.java

                backoff.retryUntil(() -> {
                    URI baseUri = serversLeft.poll();
                    if (baseUri == null) {
                        // no more servers left despite retries
                        return ExponentialBackoff.Result.successful(false);
                    }
                    try {
                        ExternalResourceName query = toQuery(baseUri, fingerprint);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:49:35 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/authenticatorfactory/delegating.go

    	TokenAccessReviewTimeout time.Duration
    
    	// WebhookRetryBackoff specifies the backoff parameters for the authentication webhook retry logic.
    	// This allows us to configure the sleep time at each iteration and the maximum number of retries allowed
    	// before we fail the webhook call in order to limit the fan out that ensues when the system is degraded.
    	WebhookRetryBackoff *wait.Backoff
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 29 07:49:14 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  5. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

        <match {stderr,stdout}>
          @type google_cloud
    
          # Try to detect JSON formatted log entries.
          detect_json true
          # Collect metrics in Prometheus registry about plugin activity.
          enable_monitoring true
          monitoring_type prometheus
          # Allow log entries from multiple containers to be sent in the same request.
          split_logs_by_tag false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  6. pkg/controller/volume/pvcprotection/pvc_protection_controller_test.go

    			name:            "PVC with finalizer -> no action",
    			updatedPVC:      withProtectionFinalizer(pvc()),
    			expectedActions: []clienttesting.Action{},
    		},
    		{
    			name:       "saving PVC finalizer fails -> controller retries",
    			updatedPVC: pvc(),
    			reactors: []reaction{
    				{
    					verb:      "update",
    					resource:  "persistentvolumeclaims",
    					reactorfn: generateUpdateErrorFunc(t, 2 /* update fails twice*/),
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  7. pkg/util/filesystem/util_windows.go

    	// the first attempt will most likely fail, hence the need to retry
    	socketDialRetryPeriod = 1 * time.Second
    	// Overall timeout value to dial a Unix domain socket, including retries
    	socketDialTimeout = 4 * time.Second
    )
    
    // IsUnixDomainSocket returns whether a given file is a AF_UNIX socket file
    // Note that due to the retry logic inside, it could take up to 4 seconds
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/EventListener.kt

     * for a call. In future releases of OkHttp these events may also occur concurrently to permit
     * multiple routes to be attempted simultaneously.
     *
     * Events and sequences of events may be repeated for retries and follow-ups.
     *
     * All event methods must execute fast, without external locking, cannot throw exceptions, attempt
     * to mutate the event parameters, or be re-entrant back into the client. Any IO - writing to files
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    	return
    }
    
    func validateHTTPRetry(retries *networking.HTTPRetry) (errs error) {
    	if retries == nil {
    		return
    	}
    
    	if retries.Attempts < 0 {
    		errs = multierror.Append(errs, errors.New("attempts cannot be negative"))
    	}
    
    	if retries.Attempts == 0 && (retries.PerTryTimeout != nil || retries.RetryOn != "" || retries.RetryRemoteLocalities != nil) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. docs/batch-jobs/README.md

    	notify:
    	  endpoint: "https://notify.endpoint" # notification endpoint to receive job status events
    	  token: "Bearer xxxxx" # optional authentication token for the notification endpoint
    
    	retry:
    	  attempts: 10 # number of retries for the job before giving up
    	  delay: "500ms" # least amount of delay between each retry
    ```
    
    You can create and run multiple 'replication' jobs at a time there are no predefined limits set.
    
    ## Batch Jobs Terminology
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 06 06:00:43 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top