Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for authorizer (0.46 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			valid: []string{
    				"oldSelf == self",
    			},
    		},
    		{name: "authorizer is not supported for CRD Validation Rules",
    			obj:    []interface{}{},
    			oldObj: []interface{}{},
    			schema: objectTypePtr(map[string]schema.Structural{}),
    			errors: map[string]string{
    				"authorizer.path('/healthz').check('get').allowed()": "undeclared reference to 'authorizer'",
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. src/crypto/x509/verify_test.go

    						MutateTemplate: func(t *Certificate) {
    							t.DNSNames = []string{"www.example.com"}
    						},
    					},
    				},
    			},
    			expectedErr: "x509: a root or intermediate certificate is not authorized to sign for this name: DNS name \"beep.com\" is not permitted by any constraint",
    		},
    		{
    			// A name constraint on the intermediate does not apply to the intermediate
    			// itself, so this is a valid chain.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    					}
    				}
    				if reader != nil && proxy.Proxy && perr == nil {
    					gr = reader
    				}
    			}
    		}
    		if reader == nil || !proxy.Proxy {
    			// validate if the request indeed was authorized, if it wasn't we need to return "ErrAccessDenied"
    			// instead of any namespace related error.
    			if s3Error := authorizeRequest(ctx, r, policy.GetObjectAction); s3Error != ErrNone {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. fastapi/applications.py

                    """
                    The OAuth2 redirect endpoint for the Swagger UI.
    
                    By default it is `/docs/oauth2-redirect`.
    
                    This is only used if you use OAuth2 (with the "Authorize" button)
                    with Swagger UI.
                    """
                ),
            ] = "/docs/oauth2-redirect",
            swagger_ui_init_oauth: Annotated[
                Optional[Dict[str, Any]],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
Back to top