Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 136 for retriable (0.17 sec)

  1. src/runtime/sys_linux_arm.s

    	MOVW	$1003, R1
    	MOVW	R0, (R1)	// fail hard
    
    // func exitThread(wait *atomic.Uint32)
    TEXT runtime·exitThread(SB),NOSPLIT|NOFRAME,$0-4
    	MOVW	wait+0(FP), R0
    	// We're done using the stack.
    	// Alas, there's no reliable way to make this write atomic
    	// without potentially using the stack. So it goes.
    	MOVW	$0, R1
    	MOVW	R1, (R0)
    	MOVW	$0, R0	// exit code
    	MOVW	$SYS_exit, R7
    	SWI	$0
    	MOVW	$1234, R0
    	MOVW	$1004, R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/errors/errors.go

    // by the client.
    // It supports wrapped errors and returns false when the error is nil.
    func IsServerTimeout(err error) bool {
    	// do not check the status code, because no https status code exists that can
    	// be scoped to retryable timeouts.
    	return ReasonForError(err) == metav1.StatusReasonServerTimeout
    }
    
    // IsInternalError determines if err is an error which indicates an internal server error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 21 03:41:32 UTC 2022
    - 30.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/CompactHashSet.java

       *       simply switch over to use the JDK implementation wholesale if probable hash flooding is
       *       detected, sacrificing the compactness guarantee in very rare cases in exchange for much
       *       more reliable worst-case behavior.
       *   <li>null, if no entries have yet been added to the map
       * </ul>
       */
      @CheckForNull private transient Object table;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  4. security/pkg/nodeagent/cache/secretcache.go

    	totalTimeout = time.Second * 10
    )
    
    const (
    	// firstRetryBackOffDuration is the initial backoff time interval when hitting
    	// non-retryable error in CSR request or while there is an error in reading file mounts.
    	firstRetryBackOffDuration = 50 * time.Millisecond
    )
    
    // SecretManagerClient a SecretManager that signs CSRs using a provided security.Client. The primary
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    For example, there are no lock strategies because Gradle guarantees that its dependency cache is concurrency safe.
    There are no "latest strategies" methodology because it's simpler to have a reliable, single strategy for conflict resolution.
    If the "wrong" version is picked, you can override it using forced versions or other resolution options.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. cluster/gce/upgrade.sh

      tars_from_version
    }
    
    # Reads kube-env metadata from first node in NODE_NAMES.
    #
    # Assumed vars:
    #   NODE_NAMES
    #   PROJECT
    #   ZONE
    function get-node-env() {
      # TODO(zmerlynn): Make this more reliable with retries.
      gcloud compute --project "${PROJECT}" ssh --zone "${ZONE}" "${NODE_NAMES[0]}" --command \
        "curl --fail --silent -H 'Metadata-Flavor: Google' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. README.md

    <a href="https://platform.sh/try-it-now/?utm_source=fastapi-signup&utm_medium=banner&utm_campaign=FastAPI-signup-June-2023" target="_blank" title="Build, run and scale your apps on a modern, reliable, and secure PaaS."><img src="https://fastapi.tiangolo.com/img/sponsors/platform-sh.png"></a>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. src/runtime/traceback_test.go

    	return ttiExcluded2()
    }
    
    // ttiExcluded2 should be excluded from tracebacks. There are
    // various ways this could come up. Linking it to a "runtime." name is
    // rather synthetic, but it's easy and reliable. See issue #42754 for
    // one way this happened in real code.
    //
    //go:linkname ttiExcluded2 runtime.ttiExcluded2
    //go:noinline
    func ttiExcluded2() *ttiResult {
    	return ttiExcluded3()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_2x.md

        includes potential security problems (newline characters) as well as simple
        non-ASCII characters (including international characters and emoji).
    
     *  **Call canceling is more reliable.**  We had a bug where a socket being
         connected wasn't being closed when the application used `Call.cancel()`.
    
     *  **Changing a HttpUrl’s scheme now tracks the default port.** We had a bug
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/kube.go

    	}
    	return args
    }
    
    func waitForIstioReady(ctx resource.Context, c cluster.Cluster, cfg Config) error {
    	if !cfg.SkipWaitForValidationWebhook {
    		// Wait for webhook to come online. The only reliable way to do that is to see if we can submit invalid config.
    		if err := waitForValidationWebhook(ctx, c, cfg); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top