Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StatusNotAcceptable (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    			statusCode: http.StatusNotAcceptable,
    		},
    		{
    			accept:     runtime.ContentTypeProtobuf + ";as=Table;v=v1beta1;g=meta.k8s.io",
    			statusCode: http.StatusNotAcceptable,
    		},
    		{
    			accept:     runtime.ContentTypeProtobuf + ";as=Table;v=v1;g=meta.k8s.io",
    			statusCode: http.StatusNotAcceptable,
    		},
    
    		{
    			item:   true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    				} else if nlq != nil {
    					if req.URL.Path != "/" && req.URL.Path != "" {
    						http.Error(w, "path not allowed in query mode", http.StatusNotAcceptable)
    						return
    					}
    					if errs := nlq.validate(); len(errs) > 0 {
    						http.Error(w, errs.ToAggregate().Error(), http.StatusNotAcceptable)
    						return
    					}
    					// Validation ensures that the request does not query services and files at the same time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top