Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 171 for verb2 (0.22 sec)

  1. staging/src/k8s.io/api/rbac/v1beta1/types.go

    // about who the rule applies to or which namespace the rule applies to.
    type PolicyRule struct {
    	// Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
    	// +listType=atomic
    	Verbs []string `json:"verbs" protobuf:"bytes,1,rep,name=verbs"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/fmt/format.go

    	} else {
    		f.pad(strconv.AppendQuoteRune(buf, r))
    	}
    }
    
    // fmtFloat formats a float64. It assumes that verb is a valid format specifier
    // for strconv.AppendFloat and therefore fits into a byte.
    func (f *fmt) fmtFloat(v float64, size int, verb rune, prec int) {
    	// Explicit precision in format specifier overrules default precision.
    	if f.precPresent {
    		prec = f.prec
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/types.go

    // it is assumed that the extender chose not to provide that extension.
    type Extender struct {
    	// URLPrefix at which the extender is available
    	URLPrefix string
    	// Verb for the filter call, empty if not supported. This verb is appended to the URLPrefix when issuing the filter call to extender.
    	FilterVerb string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ir/fmt.go

    //	%+v	Debug syntax, as in Dump.
    func fmtNode(n Node, s fmt.State, verb rune) {
    	// %+v prints Dump.
    	// Otherwise we print Go syntax.
    	if s.Flag('+') && verb == 'v' {
    		dumpNode(s, n, 1)
    		return
    	}
    
    	if verb != 'v' && verb != 'S' && verb != 'L' {
    		fmt.Fprintf(s, "%%!%c(*Node=%p)", verb, n)
    		return
    	}
    
    	if n == nil {
    		fmt.Fprint(s, "<nil>")
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    		},
    		ResourceRequest: true,
    		Namespace:       "kittensandponies",
    		Verb:            "get",
    	}
    	bobAttr := authorizer.AttributesRecord{
    		User: &user.DefaultInfo{
    			Name: "bob",
    		},
    		ResourceRequest: false,
    		Namespace:       "kittensandponies",
    		Verb:            "get",
    	}
    	alice2Attr := authorizer.AttributesRecord{
    		User: &user.DefaultInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    			Namespace:   attr.GetNamespace(),
    			Verb:        attr.GetVerb(),
    			Group:       attr.GetAPIGroup(),
    			Version:     attr.GetAPIVersion(),
    			Resource:    attr.GetResource(),
    			Subresource: attr.GetSubresource(),
    			Name:        attr.GetName(),
    		}
    	} else {
    		r.Spec.NonResourceAttributes = &authorizationv1.NonResourceAttributes{
    			Path: attr.GetPath(),
    			Verb: attr.GetVerb(),
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/zz_generated.deepcopy.go

    func (in Verbs) DeepCopyInto(out *Verbs) {
    	{
    		in := &in
    		*out = make(Verbs, len(*in))
    		copy(*out, *in)
    		return
    	}
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Verbs.
    func (in Verbs) DeepCopy() Verbs {
    	if in == nil {
    		return nil
    	}
    	out := new(Verbs)
    	in.DeepCopyInto(out)
    	return *out
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:25 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  8. samples/addons/prometheus.yaml

          - ingresses
          - configmaps
        verbs:
          - get
          - list
          - watch
      - apiGroups:
          - "extensions"
          - "networking.k8s.io"
        resources:
          - ingresses/status
          - ingresses
        verbs:
          - get
          - list
          - watch
      - apiGroups:
          - "discovery.k8s.io"
        resources:
          - endpointslices
        verbs:
          - get
          - list
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/library/authz.go

    }
    
    type pathCheckVal struct {
    	receiverOnlyObjectVal
    	authorizer authorizerVal
    	path       string
    }
    
    func (a pathCheckVal) Authorize(ctx context.Context, verb string) ref.Val {
    	attr := &authorizer.AttributesRecord{
    		Path: a.path,
    		Verb: verb,
    		User: a.authorizer.userInfo,
    	}
    
    	decision, reason, err := a.authorizer.authAuthorizer.Authorize(ctx, attr)
    	return newDecision(decision, err, reason)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  10. src/debug/gosym/pclntab.go

    	leMagic := binary.LittleEndian.Uint32(t.Data)
    	beMagic := binary.BigEndian.Uint32(t.Data)
    	switch {
    	case leMagic == go12magic:
    		t.binary, possibleVersion = binary.LittleEndian, ver12
    	case beMagic == go12magic:
    		t.binary, possibleVersion = binary.BigEndian, ver12
    	case leMagic == go116magic:
    		t.binary, possibleVersion = binary.LittleEndian, ver116
    	case beMagic == go116magic:
    		t.binary, possibleVersion = binary.BigEndian, ver116
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top