Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 253 for verb (0.41 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1beta3/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta2/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    				},
    			},
    		},
    		{
    			attr: authorizer.AttributesRecord{
    				User: &user.DefaultInfo{
    					Name:   "jane",
    					UID:    "1",
    					Groups: []string{"group1", "group2"},
    				},
    				Verb:            "GET",
    				Namespace:       "kittensandponies",
    				APIGroup:        "group3",
    				APIVersion:      "v7beta3",
    				Resource:        "pods",
    				Subresource:     "proxy",
    				Name:            "my-pod",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    }
    
    // RecordEtcdRequest updates and sets the etcd_request_duration_seconds,
    // etcd_request_total, etcd_request_errors_total metrics.
    func RecordEtcdRequest(verb, resource string, err error, startTime time.Time) {
    	v := []string{verb, resource}
    	etcdRequestLatency.WithLabelValues(v...).Observe(sinceInSeconds(startTime))
    	etcdRequestCounts.WithLabelValues(v...).Inc()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/cmd/covdata/metamerge.go

    			}
    		}
    		fnIdx = gfidx
    	}
    	if !haveCounters {
    		return
    	}
    
    	// Install counters in package ctab.
    	gfp, ok := mm.p.ctab[fnIdx]
    	if ok {
    		if verb == "subtract" || verb == "intersect" {
    			panic("should never see this for intersect/subtract")
    		}
    		if *verbflag >= 3 {
    			fmt.Printf("counter merge for %s fidx=%d\n", fd.Funcname, fnIdx)
    		}
    		// Merge.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/flowcontrol/v1/types.go

    // of namespaces matches the request's namespace.
    type ResourcePolicyRule struct {
    	// `verbs` is a list of matching verbs and may not be empty.
    	// "*" matches all verbs and, if present, must be the only entry.
    	// +listType=set
    	// Required.
    	Verbs []string `json:"verbs" protobuf:"bytes,1,rep,name=verbs"`
    
    	// `apiGroups` is a list of matching API groups and may not be empty.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. pkg/scheduler/extender.go

    // is unavailable
    func (h *HTTPExtender) IsIgnorable() bool {
    	return h.ignorable
    }
    
    // SupportsPreemption returns true if an extender supports preemption.
    // An extender should have preempt verb defined and enabled its own node cache.
    func (h *HTTPExtender) SupportsPreemption() bool {
    	return len(h.preemptVerb) > 0
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

                String verb = implementedClasses.size() == 1 ? "is" : "are";
                String classesDescription = fulfilled ? String.join(", ", implementedClasses) : "no classes";
                String message = String.format("%s extends/implements %s that %s %s in %s",
                    item.getDescription(),
                    classesDescription,
                    verb,
                    types.getDescription(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top