Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 195 for rejections (0.26 sec)

  1. guava/src/com/google/common/math/Quantiles.java

        int required = allRequired[requiredChosen];
    
        // ...do the first selection...
        selectInPlace(required, array, from, to);
    
        // ...then recursively perform the selections in the range below...
        int requiredBelow = requiredChosen - 1;
        while (requiredBelow >= requiredFrom && allRequired[requiredBelow] == required) {
          requiredBelow--; // skip duplicates of required in the range below
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/dropped_requests_tracker.go

    //     retryAfter
    //   - if there were at least 3*`retryAfter` dropped requests, it increases
    //     retryAfter
    //
    // The rationale behind these numbers being fairly low is that APF is queuing
    // requests and rejecting (dropping) them is a last resort, which is not expected
    // unless a given priority level is actually overloaded.
    //
    // Additionally, we rate-limit the increases of retryAfter to wait at least
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 13:50:25 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. plugin/pkg/admission/serviceaccount/admission_test.go

    	if err := admissiontesting.WithReinvocationTesting(t, admit).Admit(context.TODO(), attrs, nil); err == nil {
    		t.Errorf("Expected rejection for using a secret the service account does not reference")
    	}
    
    	pod2 := &api.Pod{
    		Spec: api.PodSpec{
    			Containers: []api.Container{
    				{
    					Name: "container-1",
    					Env: []api.EnvVar{
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/typeparams/normalize.go

    // expands to ~string|~[]byte|int|string, which reduces to ~string|~[]byte|int,
    // which when intersected with C (~string|~int) yields ~string|int.
    //
    // StructuralTerms computes these expansions and reductions, producing a
    // "normalized" form of the embeddings. A structural restriction is normalized
    // if it is a single union containing no interface terms, and is minimal in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    // (Section 8.1.2.6). Valid characters are defined by the
    // field-content ABNF rule in Section 3.2 of [RFC7230]."
    //
    // This function does not (yet?) properly handle the rejection of
    // strings that begin or end with SP or HTAB.
    func ValidHeaderFieldValue(v string) bool {
    	for i := 0; i < len(v); i++ {
    		b := v[i]
    		if isCTL(b) && !isLWS(b) {
    			return false
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. plugin/pkg/admission/gc/gc_admission.go

    	// This can prevent creating the pod to run the network to be able to do discovery and it appears as a timeout, not a rejection.
    	// Because the timeout is wrapper on admission/request, we can run a single check to see if the user can finalize any
    	// possible resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. src/cmd/internal/buildid/buildid_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	tmp := f.Name()
    	defer os.Remove(tmp)
    	f.Close()
    
    	// Use obscured files to prevent Appleā€™s notarization service from
    	// mistaking them as candidates for notarization and rejecting the entire
    	// toolchain.
    	// See golang.org/issue/34986
    	var files = []string{
    		"p.a.base64",
    		"a.elf.base64",
    		"a.macho.base64",
    		"a.pe.base64",
    	}
    
    	for _, name := range files {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                    failures before ejection occurs.
                                  maximum: 4294967295
                                  minimum: 0
                                  nullable: true
                                  type: integer
                                interval:
                                  description: Time interval between ejection sweep analysis.
                                  type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  9. src/crypto/ecdsa/ecdsa.go

    	if err != nil {
    		return nil, err
    	}
    	return priv, nil
    }
    
    // randomPoint returns a random scalar and the corresponding point using the
    // procedure given in FIPS 186-4, Appendix B.5.2 (rejection sampling).
    func randomPoint[Point nistPoint[Point]](c *nistCurve[Point], rand io.Reader) (k *bigmod.Nat, p Point, err error) {
    	k = bigmod.NewNat()
    	for {
    		b := make([]byte, c.N.Size())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. manifests/charts/base/crds/crd-all.gen.yaml

                                    failures before ejection occurs.
                                  maximum: 4294967295
                                  minimum: 0
                                  nullable: true
                                  type: integer
                                interval:
                                  description: Time interval between ejection sweep analysis.
                                  type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
Back to top