Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 253 for verb (0.04 sec)

  1. pkg/kubelet/server/server.go

    		if err != nil {
    			klog.ErrorS(err, "Authorization error", "user", attrs.GetUser().GetName(), "verb", attrs.GetVerb(), "resource", attrs.GetResource(), "subresource", attrs.GetSubresource())
    			msg := fmt.Sprintf("Authorization error (user=%s, verb=%s, resource=%s, subresource=%s)", attrs.GetUser().GetName(), attrs.GetVerb(), attrs.GetResource(), attrs.GetSubresource())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  2. cluster/gce/windows/smoke-test.sh

    #     services that don't serve http requests).
    #   - Add test retries for transient errors, such as:
    #     "error: unable to upgrade connection: Authorization error
    #     (user=kube-apiserver, verb=create, resource=nodes, subresource=proxy)"
    
    # Override this to use a different kubectl binary.
    kubectl=kubectl
    linux_deployment_timeout=60
    windows_deployment_timeout=600
    output_file=/tmp/k8s-smoke-test.out
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. pilot/pkg/credentials/kube/secrets.go

    			ObjectMeta: metav1.ObjectMeta{},
    			Spec: authorizationv1.SubjectAccessReviewSpec{
    				ResourceAttributes: &authorizationv1.ResourceAttributes{
    					Namespace: namespace,
    					Verb:      "list",
    					Resource:  "secrets",
    				},
    				User: user,
    			},
    		}, metav1.CreateOptions{})
    		if err != nil {
    			return err
    		}
    		if !resp.Status.Allowed {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. pkg/controller/tainteviction/taint_eviction_test.go

    					deleted := false
    					for _, action := range fakeClientset.Actions() {
    						deleteAction, ok := action.(clienttesting.DeleteActionImpl)
    						if !ok {
    							t.Logf("Found not-delete action with verb %v. Ignoring.", action.GetVerb())
    							continue
    						}
    						if deleteAction.GetResource().Resource != "pods" {
    							continue
    						}
    						if podName == deleteAction.GetName() {
    							deleted = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  5. pkg/scheduler/testing/framework/fake_extender.go

    func (f *FakeExtender) IsIgnorable() bool {
    	return f.Ignorable
    }
    
    // SupportsPreemption returns true indicating the extender supports preemption.
    func (f *FakeExtender) SupportsPreemption() bool {
    	// Assume preempt verb is always defined.
    	return true
    }
    
    // ProcessPreemption implements the extender preempt function.
    func (f *FakeExtender) ProcessPreemption(
    	pod *v1.Pod,
    	nodeNameToVictims map[string]*extenderv1.Victims,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/abi.go

    // references of text symbols by ABI.
    //
    // The symabis format is a set of lines, where each line is a sequence
    // of whitespace-separated fields. The first field is a verb and is
    // either "def" for defining a symbol ABI or "ref" for referencing a
    // symbol using an ABI. For both "def" and "ref", the second field is
    // the symbol name and the third field is the ABI name, as one of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/certificates/v1/types.go

    */
    
    package v1
    
    import (
    	"fmt"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // +genclient
    // +genclient:nonNamespaced
    // +genclient:method=UpdateApproval,verb=update,subresource=approval,input=k8s.io/api/certificates/v1.CertificateSigningRequest,result=k8s.io/api/certificates/v1.CertificateSigningRequest
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. istioctl/pkg/precheck/precheck.go

    	s := &authorizationapi.SelfSubjectAccessReview{
    		Spec: authorizationapi.SelfSubjectAccessReviewSpec{
    			ResourceAttributes: &authorizationapi.ResourceAttributes{
    				Namespace: namespace,
    				Verb:      "create",
    				Group:     group,
    				Version:   version,
    				Resource:  resource,
    			},
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/typecheck.go

    func nonexported(sym *types.Sym) bool {
    	return sym != nil && !types.IsExported(sym.Name)
    }
    
    func checklvalue(n ir.Node, verb string) {
    	if !ir.IsAddressable(n) {
    		base.Errorf("cannot %s %v", verb, n)
    	}
    }
    
    func checkassign(n ir.Node) {
    	// have already complained about n being invalid
    	if n.Type() == nil {
    		if base.Errors() == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go

    	}
    
    	return description
    }
    
    // buildRoute returns a RouteBuilder for WebService to consume and builds path in swagger
    //
    //	action can be one of: GET, PUT, PATCH, POST, DELETE;
    //	verb can be one of: list, read, replace, patch, create, delete, deletecollection;
    //	sample is the sample Go type for response type.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top