Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 286 for forbidden (0.21 sec)

  1. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // +optional
      repeated string allowedUnsafeSysctls = 19;
    
      // forbiddenSysctls is a list of explicitly forbidden sysctls, defaults to none.
      // Each entry is either a plain sysctl name or ends in "*" in which case it is considered
      // as a prefix of forbidden sysctls. Single * means all sysctls are forbidden.
      //
      // Examples:
      // e.g. "foo/*" forbids "foo/bar", "foo/baz", etc.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/httpstream/httpstream.go

    // subprotocol, Handshake will select the first common value found in
    // serverProtocols. If a match is found, Handshake adds a response header
    // indicating the chosen subprotocol. If no match is found, HTTP forbidden is
    // returned, along with a response header containing the list of protocols the
    // server can accept.
    func Handshake(req *http.Request, w http.ResponseWriter, serverProtocols []string) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/certificates/v1/generated.proto

      //  2. Permitted subjects: and behavior when a disallowed subject is requested.
      //  3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested.
      //  4. Required, permitted, or forbidden key usages / extended key usages.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/catalog/problems/VersionCatalogErrorMessages.groovy

                this
            }
    
            ReservedAlias shouldNotBeEqualTo(String forbidden) {
                this.message = "Prefix for dependency shouldn't be equal to '${forbidden}'"
                this
            }
    
            ReservedAlias shouldNotContain(String name) {
                this.alias(name)
                this
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/certificates/v1/types.go

    	//  2. Permitted subjects: and behavior when a disallowed subject is requested.
    	//  3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested.
    	//  4. Required, permitted, or forbidden key usages / extended key usages.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(field.NewPath("limitBytes"), *opts.LimitBytes, "must be greater than 0"))
    	}
    	switch {
    	case opts.SinceSeconds != nil && opts.SinceTime != nil:
    		allErrs = append(allErrs, field.Forbidden(field.NewPath(""), "at most one of `sinceTime` or `sinceSeconds` may be specified"))
    	case opts.SinceSeconds != nil:
    		if *opts.SinceSeconds < 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtAnalysisSession.kt

     * entities retrieved from it will become invalid. An analysis session also shouldn't be leaked from the [analyze] call it was created in.
     *
     * It is forbidden to store an analysis session in a variable, parameter, or property. From the [analyze] block which provides the analysis
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 18:45:26 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. plugin/pkg/admission/security/podsecurity/admission.go

    			annotations[i], annotations[i+1] = podsecurityadmissionapi.AuditAnnotationPrefix+k, v
    			i += 2
    		}
    		audit.AddAuditAnnotations(ctx, annotations...)
    	}
    	if !result.Allowed {
    		// start with a generic forbidden error
    		retval := admission.NewForbidden(a, errors.New("Not allowed by PodSecurity")).(*apierrors.StatusError)
    		// use message/reason/details/code from admission library if populated
    		if result.Result != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 08:49:11 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/check/checkers.go

    		if !strings.Contains(r.RawContent, expected) {
    			return fmt.Errorf("want %q in body but not found: %s", expected, r.RawContent)
    		}
    		return nil
    	})
    }
    
    // Forbidden checks that the response indicates that the request was rejected by RBAC.
    func Forbidden(p protocol.Instance) echo.Checker {
    	switch {
    	case p.IsGRPC():
    		return ErrorContains("rpc error: code = PermissionDenied")
    	case p.IsTCP():
    		return ErrorContains("EOF")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:07 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  10. src/net/http/httptest/recorder.go

    		for _, k := range trailers {
    			for _, k := range strings.Split(k, ",") {
    				k = http.CanonicalHeaderKey(textproto.TrimString(k))
    				if !httpguts.ValidTrailerHeader(k) {
    					// Ignore since forbidden by RFC 7230, section 4.1.2.
    					continue
    				}
    				vv, ok := rw.HeaderMap[k]
    				if !ok {
    					continue
    				}
    				vv2 := make([]string, len(vv))
    				copy(vv2, vv)
    				res.Trailer[k] = vv2
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top