Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Unauthorized (0.21 sec)

  1. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                    }
                  }
                },
                "description": "OK"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "authorization_v1"
            ]
          }
        },
        "/apis/authorization.k8s.io/v1/namespaces/{namespace}/localsubjectaccessreviews": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    final RestStatus status = ((OpenSearchStatusException) cause).status();
                    switch (status) {
                    case UNAUTHORIZED:
                        logger.warn("[{}] Unauthorized access: {}", i, SystemUtil.getSearchEngineHttpAddress(), cause);
                        break;
                    default:
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // If this is the first validation in the list to fail, this reason, as well as the
      // corresponding HTTP response code, are used in the
      // HTTP response to the client.
      // The currently supported reasons are: "Unauthorized", "Forbidden", "Invalid", "RequestEntityTooLarge".
      // If not set, StatusReasonInvalid is used in the response to the client.
      // +optional
      optional string reason = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/types.go

    	// If this is the first validation in the list to fail, this reason, as well as the
    	// corresponding HTTP response code, are used in the
    	// HTTP response to the client.
    	// The currently supported reasons are: "Unauthorized", "Forbidden", "Invalid", "RequestEntityTooLarge".
    	// If not set, StatusReasonInvalid is used in the response to the client.
    	// +optional
    	Reason *metav1.StatusReason
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // If this is the first validation in the list to fail, this reason, as well as the
      // corresponding HTTP response code, are used in the
      // HTTP response to the client.
      // The currently supported reasons are: "Unauthorized", "Forbidden", "Invalid", "RequestEntityTooLarge".
      // If not set, StatusReasonInvalid is used in the response to the client.
      // +optional
      optional string reason = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// If this is the first validation in the list to fail, this reason, as well as the
    	// corresponding HTTP response code, are used in the
    	// HTTP response to the client.
    	// The currently supported reasons are: "Unauthorized", "Forbidden", "Invalid", "RequestEntityTooLarge".
    	// If not set, StatusReasonInvalid is used in the response to the client.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// If this is the first validation in the list to fail, this reason, as well as the
    	// corresponding HTTP response code, are used in the
    	// HTTP response to the client.
    	// The currently supported reasons are: "Unauthorized", "Forbidden", "Invalid", "RequestEntityTooLarge".
    	// If not set, StatusReasonInvalid is used in the response to the client.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// in order for the action to be completed. If the user has specified credentials on the request, the
    	// server considers them insufficient.
    	// Status code 401
    	StatusReasonUnauthorized StatusReason = "Unauthorized"
    
    	// StatusReasonForbidden means the server can be reached and understood the request, but refuses
    	// to take any further action.  It is the result of the server being configured to deny access for some reason
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  9. pkg/kubelet/server/server_test.go

    }
    
    type fakeAuth struct {
    	authenticateFunc func(*http.Request) (*authenticator.Response, bool, error)
    	attributesFunc   func(user.Info, *http.Request) authorizer.Attributes
    	authorizeFunc    func(authorizer.Attributes) (authorized authorizer.Decision, reason string, err error)
    }
    
    func (f *fakeAuth) AuthenticateRequest(req *http.Request) (*authenticator.Response, bool, error) {
    	return f.authenticateFunc(req)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. cmd/api-errors.go

    		Description:    "The service is unavailable. Please retry.",
    		HTTPStatusCode: http.StatusServiceUnavailable,
    	},
    	ErrUnauthorizedAccess: {
    		Code:           "UnauthorizedAccess",
    		Description:    "You are not authorized to perform this operation",
    		HTTPStatusCode: http.StatusUnauthorized,
    	},
    	ErrExpressionTooLong: {
    		Code:           "ExpressionTooLong",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
Back to top