Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for verb (0.14 sec)

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

    			})
    			route.Metadata(RouteMetaAction, strings.ToLower(action.Verb))
    			ws.Route(route)
    		}
    		// Note: update GetAuthorizerAttributes() when adding a custom handler.
    	}
    
    	apiResource.Verbs = make([]string, 0, len(kubeVerbs))
    	for kubeVerb := range kubeVerbs {
    		apiResource.Verbs = append(apiResource.Verbs, kubeVerb)
    	}
    	sort.Strings(apiResource.Verbs)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		return
    	}
    
    	deprecated := crdInfo.deprecated[requestInfo.APIVersion]
    	for _, w := range crdInfo.warnings[requestInfo.APIVersion] {
    		warning.AddWarning(req.Context(), "", w)
    	}
    
    	verb := strings.ToUpper(requestInfo.Verb)
    	resource := requestInfo.Resource
    	subresource := requestInfo.Subresource
    	scope := metrics.CleanScope(requestInfo)
    	supportedTypes := []string{
    		string(types.JSONPatchType),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types.go

    )
    
    // +genclient
    // +genclient:method=GetScale,verb=get,subresource=scale,result=k8s.io/api/autoscaling/v1.Scale
    // +genclient:method=UpdateScale,verb=update,subresource=scale,input=k8s.io/api/autoscaling/v1.Scale,result=k8s.io/api/autoscaling/v1.Scale
    // +genclient:method=ApplyScale,verb=apply,subresource=scale,input=k8s.io/api/autoscaling/v1.Scale,result=k8s.io/api/autoscaling/v1.Scale
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

            "properties": {
              "path": {
                "description": "Path is the URL path of the request",
                "type": "string"
              },
              "verb": {
                "description": "Verb is the standard HTTP verb",
                "type": "string"
              }
            },
            "type": "object"
          },
          "io.k8s.api.authorization.v1.NonResourceRule": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  5. pkg/controller/endpointslice/endpointslice_controller_test.go

    }
    
    func expectAction(t *testing.T, actions []k8stesting.Action, index int, verb, resource string) {
    	t.Helper()
    	if len(actions) <= index {
    		t.Fatalf("Expected at least %d actions, got %d", index+1, len(actions))
    	}
    
    	action := actions[index]
    	if action.GetVerb() != verb {
    		t.Errorf("Expected action %d verb to be %s, got %s", index, verb, action.GetVerb())
    	}
    
    	if action.GetResource().Resource != resource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.pb.go

    				i = encodeVarintGenerated(dAtA, i, uint64(size))
    			}
    			i--
    			dAtA[i] = 0x2a
    		}
    	}
    	if len(m.Verbs) > 0 {
    		for iNdEx := len(m.Verbs) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Verbs[iNdEx])
    			copy(dAtA[i:], m.Verbs[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Verbs[iNdEx])))
    			i--
    			dAtA[i] = 0x22
    		}
    	}
    	if len(m.UserGroups) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 81.4K bytes
    - Viewed (0)
  7. pkg/kubelet/server/server_test.go

    			}
    
    			var url string
    			if test.uid {
    				url = fw.testHTTPServer.URL + "/" + verb + "/" + podNamespace + "/" + podName + "/" + testUID + "/" + expectedContainerName + "?ignore=1"
    			} else {
    				url = fw.testHTTPServer.URL + "/" + verb + "/" + podNamespace + "/" + podName + "/" + expectedContainerName + "?ignore=1"
    			}
    			if verb == "exec" {
    				url += "&command=ls&command=-a"
    			}
    			if test.stdin {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// +optional
    	Status ScaleStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    // +genclient
    // +genclient:method=GetScale,verb=get,subresource=scale,result=Scale
    // +genclient:method=UpdateScale,verb=update,subresource=scale,input=Scale,result=Scale
    // +genclient:method=ApplyScale,verb=apply,subresource=scale,input=Scale,result=Scale
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    				Err: &module.InvalidVersionError{
    					Version: vers,
    					Err:     fmt.Errorf("malformed module path %q", path),
    				},
    			}
    		}
    		if vers != "" && module.CanonicalVersion(vers) == vers {
    			if err := module.CheckPathMajor(vers, pathMajor); err != nil {
    				return "", module.VersionError(module.Version{Path: path, Version: vers}, err)
    			}
    			return vers, nil
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. src/fmt/fmt_test.go

    		t.Errorf("expected:\n\t%q\ngot:\n\t%q", expect, got)
    	}
    }
    
    var formatterFlagTests = []struct {
    	in  string
    	val any
    	out string
    }{
    	// scalar values with the (unused by fmt) 'a' verb.
    	{"%a", flagPrinter{}, "[%a]"},
    	{"%-a", flagPrinter{}, "[%-a]"},
    	{"%+a", flagPrinter{}, "[%+a]"},
    	{"%#a", flagPrinter{}, "[%#a]"},
    	{"% a", flagPrinter{}, "[% a]"},
    	{"%0a", flagPrinter{}, "[%0a]"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
Back to top