Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 402 for verb2 (0.05 sec)

  1. src/fmt/doc.go

    string finds no spaces to consume in the input.
    
    The verbs behave analogously to those of [Printf].
    For example, %x will scan an integer as a hexadecimal number,
    and %v will scan the default representation format for the value.
    The [Printf] verbs %p and %T and the flags # and + are not implemented.
    For floating-point and complex values, all valid formatting verbs
    (%b %e %E %f %F %g %G %x %X and %v) are equivalent and accept
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authorization/v1beta1/types.go

    // may contain duplicates, and possibly be incomplete.
    type ResourceRule struct {
    	// Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy.  "*" means all.
    	// +listType=atomic
    	Verbs []string `json:"verbs" protobuf:"bytes,1,rep,name=verbs"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/match_test.go

    		ResourceRules: []flowcontrol.ResourcePolicyRule{{
    			Verbs:      []string{"goodverb"},
    			APIGroups:  []string{"goodapig"},
    			Resources:  []string{"goodrscs"},
    			Namespaces: []string{"goodns"}}}}, {
    		Subjects: []flowcontrol.Subject{{Kind: flowcontrol.SubjectKindUser,
    			User: &flowcontrol.UserSubject{Name: "*"}}},
    		ResourceRules: []flowcontrol.ResourcePolicyRule{{
    			Verbs:      []string{"goodverb"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authorization/v1/types.go

    // may contain duplicates, and possibly be incomplete.
    type ResourceRule struct {
    	// Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy.  "*" means all.
    	// +listType=atomic
    	Verbs []string `json:"verbs" protobuf:"bytes,1,rep,name=verbs"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    			IsResourceRequest: true,
    			Verb:              verbs[coord%nv],
    			APIGroup:          apiGroups[coord/nv%ng],
    			Resource:          resources[coord/nv/ng%nr],
    			Namespace:         namespaces[coord/nv/ng/nr]})
    	}
    	return ans
    }
    
    func genNRRIs(rng *rand.Rand, m int, verbs, urls []string) []*request.RequestInfo {
    	nv := len(verbs)
    	nu := len(urls)
    	coords := chooseInts(rng, nv*nu, m)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  6. 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)
  7. common-protos/k8s.io/api/authorization/v1/generated.proto

      // +optional
      optional string path = 1;
    
      // Verb is the standard HTTP verb
      // +optional
      optional string verb = 2;
    }
    
    // NonResourceRule holds information that describes a rule for the non-resource
    message NonResourceRule {
      // Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options.  "*" means all.
      repeated string verbs = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authorization/v1beta1/generated.proto

      optional string path = 1;
    
      // Verb is the standard HTTP verb
      // +optional
      optional string verb = 2;
    }
    
    // NonResourceRule holds information that describes a rule for the non-resource
    message NonResourceRule {
      // Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options.  "*" means all.
      // +listType=atomic
      repeated string verbs = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    }
    
    // CanonicalVerb distinguishes LISTs from GETs (and HEADs). It assumes verb is
    // UPPERCASE.
    func CanonicalVerb(verb string, scope string) string {
    	switch verb {
    	case "GET", "HEAD":
    		if scope != "resource" && scope != "" {
    			return "LIST"
    		}
    		return "GET"
    	default:
    		return verb
    	}
    }
    
    // CleanVerb returns a normalized verb, so that it is easy to tell WATCH from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/authorization/v1beta1/generated.proto

      // +optional
      optional string path = 1;
    
      // Verb is the standard HTTP verb
      // +optional
      optional string verb = 2;
    }
    
    // NonResourceRule holds information that describes a rule for the non-resource
    message NonResourceRule {
      // Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options.  "*" means all.
      repeated string verbs = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top