Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,198 for verb (0.13 sec)

  1. common-protos/k8s.io/api/flowcontrol/v1alpha1/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)
  2. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. src/cmd/internal/cov/readcovdata.go

    	}
    	for _, p := range podlist {
    		if err := r.visitPod(p); err != nil {
    			return err
    		}
    	}
    	r.vis.Finish()
    	return nil
    }
    
    func (r *CovDataReader) verb(vlevel int, s string, a ...interface{}) {
    	if r.verbosityLevel >= vlevel {
    		fmt.Fprintf(os.Stderr, s, a...)
    		fmt.Fprintf(os.Stderr, "\n")
    	}
    }
    
    func (r *CovDataReader) warn(s string, a ...interface{}) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/list_work_estimator.go

    	// For watch requests, we want to adjust the cost only if they explicitly request
    	// sending initial events.
    	if requestInfo.Verb == "watch" {
    		if listOptions.SendInitialEvents == nil || !*listOptions.SendInitialEvents {
    			return WorkEstimate{InitialSeats: e.config.MinimumSeats}
    		}
    	}
    
    	isListFromCache := requestInfo.Verb == "watch" || !shouldListFromStorage(query, &listOptions)
    
    	numStored, err := e.countGetterFn(key(requestInfo))
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/filters/watch_termination.go

    			responsewriters.InternalError(w, req, errors.New("no RequestInfo found in the context"))
    			return
    		}
    		if !watchVerbs.Has(requestInfo.Verb) {
    			handler.ServeHTTP(w, req)
    			return
    		}
    
    		if err := wg.Add(1); err != nil {
    			// When apiserver is shutting down, signal clients to retry
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:49 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/DefaultSourceSet.java

        @Override
        public String getSourcesJarTaskName() {
            return getTaskName(null, "sourcesJar");
        }
    
        @Override
        public String getTaskName(@Nullable String verb, @Nullable String target) {
            return namingScheme.getTaskName(verb, target);
        }
    
        private String getTaskBaseName() {
            return baseName;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/gccgo.go

    			continue
    		}
    		var verb, args string
    		if i := strings.Index(line, " "); i < 0 {
    			verb = line
    		} else {
    			verb, args = line[:i], strings.TrimSpace(line[i+1:])
    		}
    		before, after, _ := strings.Cut(args, "=")
    		switch verb {
    		default:
    			base.Fatalf("importcfg:%d: unknown directive %q", lineNum, verb)
    		case "packagefile":
    			if before == "" || after == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker.go

    // RegisterWatch implements WatchTracker interface.
    func (w *watchTracker) RegisterWatch(r *http.Request) ForgetWatchFunc {
    	requestInfo, ok := request.RequestInfoFrom(r.Context())
    	if !ok || requestInfo == nil || requestInfo.Verb != "watch" {
    		return nil
    	}
    
    	var index *indexValue
    	if indexField, ok := w.indexes[requestInfo.Resource]; ok {
    		index = &indexValue{
    			resource: requestInfo.Resource,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/conversion/conversion_test.go

    		meta, _, _ := unstructured.NestedFieldCopy(obj.Object, "metadata")
    		unstructured.SetNestedField(objv1beta2.Object, meta, "metadata")
    
    		for _, verb := range []string{"get", "list", "create", "update", "patch", "delete", "deletecollection"} {
    			t.Run(verb, func(t *testing.T) {
    				switch verb {
    				case "get":
    					_, err = clients["v1beta2"].Get(context.TODO(), obj.GetName(), metav1.GetOptions{})
    				case "list":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 47.1K bytes
    - Viewed (0)
  10. 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)
Back to top