Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 526 for REJECT (0.1 sec)

  1. src/crypto/ecdh/nist.go

    		// instantiated types is not supported.
    		if &c.scalarOrder[0] == &p521Order[0] {
    			key[0] &= 0b0000_0001
    		}
    
    		// In tests, rand will return all zeros and NewPrivateKey will reject
    		// the zero key as it generates the identity as a public key. This also
    		// makes this function consistent with crypto/elliptic.GenerateKey.
    		key[1] ^= 0x42
    
    		k, err := c.NewPrivateKey(key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/validate.go

    				}
    			}
    			return &CycleInRequiresGraphError{AnalyzerNames: inCycle}
    		}
    
    		return nil
    	}
    	for _, a := range analyzers {
    		if err := visit(a); err != nil {
    			return err
    		}
    	}
    
    	// Reject duplicates among analyzers.
    	// Precondition:  color[a] == black.
    	// Postcondition: color[a] == finished.
    	for _, a := range analyzers {
    		if color[a] == finished {
    			return fmt.Errorf("duplicate analyzer: %s", a.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/concurrent/Deferred.java

                try {
                    executeCallbacks.stream().forEach(callback -> callback.accept(response));
                } catch (final Exception ignore) {}
            }
            latch.countDown();
        }
    
        public void reject(final Throwable t) {
            final ArrayList<Consumer<Throwable>> executeCallbacks;
            synchronized (Deferred.this) {
                if (response != null || error != null) {
                    return;
                }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware_test.go

    		expectBody                []byte
    	}{
    		{
    			name:                      "reject redirection enabled in proxy, backend server sending 200 response",
    			rejectForwardingRedirects: true,
    			serverStatusCode:          200,
    			expectStatusCode:          200,
    			expectBody:                originalBody,
    		},
    		{
    			name:                      "reject redirection enabled in proxy, backend server sending 301 response",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  5. architecture/ambient/peer-authentication.md

          - presence: {}
    - rules:
      - matches:
        - notDestinationPorts:
          - 9090
    name: converted_peer_authentication_strict-and-permissive-mtls
    scope: WORKLOAD_SELECTOR
    ```
    
    The above policies reject unauthenticated traffic at the ztunnel unless its destination is port 9090. For more complete examples, read through the [test cases](../../pilot/pkg/serviceregistry/kube/controller/ambientindex_test.go) in the `TestRBACConvert` function.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/encode.go

    		// The CBOR types text string and byte string are structurally equivalent, with the
    		// semantic difference that a text string whose content is an invalid UTF-8 sequence
    		// is itself invalid. We reject all invalid text strings at decode time and do not
    		// validate or sanitize all Go strings at encode time. Encoding Go strings to the
    		// byte string type is comparable to the existing Protobuf behavior and cheaply
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 15:31:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      //   2. If ALL matchConditions evaluate to TRUE, the webhook is called.
      //   3. If any matchCondition evaluates to an error (but none are FALSE):
      //      - If failurePolicy=Fail, reject the request
      //      - If failurePolicy=Ignore, the error is ignored and the webhook is skipped
      //
      // This is an alpha feature and managed by the AdmissionWebhookMatchConditions feature gate.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    	// duplicate owner reference entries.
    	DuplicateOwnerReferencesWarningFormat = ".metadata.ownerReferences contains duplicate entries; API server dedups owner references in 1.20+, and may reject such requests as early as 1.24; please fix your requests; duplicate UID(s) observed: %v"
    	// DuplicateOwnerReferencesAfterMutatingAdmissionWarningFormat indicates the duplication was observed
    	// after mutating admission.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/reflect/TypeVisitor.java

     * default, no recursion is done for type arguments or type bounds. But subclasses can opt to do
     * recursion by calling {@link #visit} for any {@code Type} while visitation is in progress. For
     * example, this can be used to reject wildcards or type variables contained in a type as in:
     *
     * <pre>{@code
     * new TypeVisitor() {
     *   protected void visitParameterizedType(ParameterizedType t) {
     *     visit(t.getOwnerType());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 16 21:10:04 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  10. pkg/probe/http/request.go

    }
    
    // formatURL formats a URL from args.  For testability.
    func formatURL(scheme string, host string, port int, path string) *url.URL {
    	u, err := url.Parse(path)
    	// Something is busted with the path, but it's too late to reject it. Pass it along as is.
    	//
    	// This construction of a URL may be wrong in some cases, but it preserves
    	// legacy prober behavior.
    	if err != nil {
    		u = &url.URL{
    			Path: path,
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 07:39:55 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top