Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,198 for verb (0.09 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/errors/errors.go

    func NewClientErrorReporter(code int, verb string, reason string) *ErrorReporter {
    	return &ErrorReporter{
    		code:   code,
    		verb:   verb,
    		reason: reason,
    	}
    }
    
    // AsObject returns a valid error runtime.Object (a v1.Status) for the given
    // error, using the code and verb of the reporter type. The error is set to
    // indicate that this was an unexpected server response.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 21 03:41:32 UTC 2022
    - 30.5K bytes
    - Viewed (0)
  2. pkg/controller/servicecidrs/servicecidrs_controller_test.go

    		t.Fatalf("Expected at least %d actions, got %d \ndiff: %v", len(expected), len(actions), cmp.Diff(expected, actions))
    	}
    
    	for i, action := range actions {
    		verb := expected[i][0]
    		if action.GetVerb() != verb {
    			t.Errorf("Expected action %d verb to be %s, got %s", i, verb, action.GetVerb())
    		}
    		resource := expected[i][1]
    		if action.GetResource().Resource != resource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. pkg/controller/certificates/approver/sarapprove.go

    			successMessage: "Auto approving self kubelet client certificate after SubjectAccessReview.",
    		},
    		{
    			recognize:      isNodeClientCert,
    			permission:     authorization.ResourceAttributes{Group: "certificates.k8s.io", Resource: "certificatesigningrequests", Verb: "create", Subresource: "nodeclient", Version: "*"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 16:03:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/audit/log/backend_test.go

    					"127.0.0.1",
    				},
    				RequestReceivedTimestamp: metav1.NewMicroTime(time.Now()),
    				AuditID:                  types.UID(uuid.New().String()),
    				Stage:                    auditinternal.StageRequestReceived,
    				Verb:                     "get",
    				User: authnv1.UserInfo{
    					Username: "admin",
    					Groups: []string{
    						"system:masters",
    						"system:authenticated",
    					},
    				},
    				UserAgent: "kube-admin",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 08 06:37:26 UTC 2022
    - 5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	Stage Stage
    
    	// RequestURI is the request URI as sent by the client to a server.
    	RequestURI string
    	// Verb is the kubernetes verb associated with the request.
    	// For non-resource requests, this is the lower-cased HTTP method.
    	Verb string
    	// Authenticated user information.
    	User authnv1.UserInfo
    	// Impersonated user information.
    	// +optional
    	ImpersonatedUser *authnv1.UserInfo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/openapi/openapi.go

    func GetOperationIDAndTags(r *restful.Route) (string, []string, error) {
    	op := r.Operation
    	path := r.Path
    	var tags []string
    	prefix, exists := verbs.GetPrefix(op)
    	if !exists {
    		return op, tags, fmt.Errorf("operation names should start with a verb. Cannot determine operation verb from %v", op)
    	}
    	op = op[len(prefix):]
    	parts := strings.Split(strings.Trim(path, "/"), "/")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 09 18:11:41 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

    // target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member
    // of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.
    message NonResourcePolicyRule {
      // `verbs` is a list of matching verbs and may not be empty.
      // "*" matches all verbs. If it is present, it must be the only entry.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. 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)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/DefaultNativeToolChainRegistry.java

            }
    
            @Override
            public void explain(DiagnosticsVisitor visitor) {
                String verb = sourceLanguage == NativeLanguage.ANY ? "build" : "build " + sourceLanguage;
                visitor.node(String.format("No tool chain %s to %s for %s", getUnavailabilityReason(), verb, targetPlatform.getDisplayName()));
                visitor.startChildren();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/trace_util.go

    		attribute.Stringer("scope", &lazyScope{req: req}),
    		attribute.String("url", req.URL.Path),
    		attribute.Stringer("user-agent", &lazyTruncatedUserAgent{req: req}),
    		attribute.Stringer("verb", &lazyVerb{req: req}),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 03 15:25:35 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top