Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 481 for Unauthorized (2.63 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authentication_test.go

    				return nil, false, nil
    			}
    		}),
    		http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    			r = r.WithContext(genericapirequest.WithRequestInfo(r.Context(), &genericapirequest.RequestInfo{}))
    			Unauthorized(scheme.Codecs).ServeHTTP(w, r)
    		}),
    		nil,
    		nil,
    	))
    
    	http2Options := &http2.Server{}
    
    	if err := http2.ConfigureServer(s.Config, http2Options); err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  2. docs/LICENSE

    use of the trademark "Creative Commons" or any other trademark or logo
    of Creative Commons without its prior written consent including,
    without limitation, in connection with any unauthorized modifications
    to any of its public licenses or any other arrangements,
    understandings, or agreements concerning use of licensed material. For
    the avoidance of doubt, this paragraph does not form part of the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 10 16:50:06 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  3. docs/ja/docs/tutorial/security/first-steps.md

    ## どのように動作するか
    
    リクエストの中に`Authorization`ヘッダーを探しに行き、その値が`Bearer`と何らかのトークンを含んでいるかどうかをチェックし、そのトークンを`str`として返します。
    
    もし`Authorization`ヘッダーが見つからなかったり、値が`Bearer`トークンを持っていなかったりすると、401 ステータスコードエラー (`UNAUTHORIZED`) で直接応答します。
    
    トークンが存在するかどうかをチェックしてエラーを返す必要はありません。関数が実行された場合、そのトークンに`str`が含まれているか確認できます。
    
    インタラクティブなドキュメントですでに試すことができます:
    
    <img src="/img/tutorial/security/image03.png">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. cmd/kubelet/app/options/options.go

    		"The duration to cache 'authorized' responses from the webhook authorizer.")
    	fs.DurationVar(&c.Authorization.Webhook.CacheUnauthorizedTTL.Duration, "authorization-webhook-cache-unauthorized-ttl", c.Authorization.Webhook.CacheUnauthorizedTTL.Duration, ""+
    		"The duration to cache 'unauthorized' responses from the webhook authorizer.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/errors/errors.go

    			qualifiedResource.String(), name),
    	}}
    }
    
    // NewUnauthorized returns an error indicating the client is not authorized to perform the requested
    // action.
    func NewUnauthorized(reason string) *StatusError {
    	message := reason
    	if len(message) == 0 {
    		message = "not authorized"
    	}
    	return &StatusError{metav1.Status{
    		Status:  metav1.StatusFailure,
    		Code:    http.StatusUnauthorized,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 21 03:41:32 UTC 2022
    - 30.5K bytes
    - Viewed (0)
  6. 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)
  7. common-protos/k8s.io/api/admissionregistration/v1alpha1/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1alpha1/types_swagger_doc_generated.go

    	"messageExpression": "messageExpression declares a CEL expression that evaluates to the validation failure...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 27K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1alpha1/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 Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1alpha1/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
    - 29.9K bytes
    - Viewed (0)
Back to top