Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 471 for verb (0.05 sec)

  1. 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)
  2. 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)
  3. src/fmt/scan_test.go

    	renamedComplex128Val renamedComplex128
    )
    
    // Xs accepts any non-empty run of the verb character
    type Xs string
    
    func (x *Xs) Scan(state ScanState, verb rune) error {
    	tok, err := state.Token(true, func(r rune) bool { return r == verb })
    	if err != nil {
    		return err
    	}
    	s := string(tok)
    	if !regexp.MustCompile("^" + string(verb) + "+$").MatchString(s) {
    		return errors.New("syntax error for xs")
    	}
    	*x = Xs(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    	defer func() {
    		if err != nil {
    			err = &zipError{verb: "create zip", err: err}
    		}
    	}()
    
    	// Check that the version is canonical, the module path is well-formed, and
    	// the major version suffix matches the major version.
    	if vers := module.CanonicalVersion(m.Version); vers != m.Version {
    		return fmt.Errorf("version %q is not canonical (should be %q)", m.Version, vers)
    	}
    	if err := module.Check(m.Path, m.Version); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  5. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

        /**
         * Returns the name of a task for this source set.
         *
         * @param verb The action, may be null.
         * @param target The target, may be null
         * @return The task name, generally of the form ${verb}${name}${noun}
         */
        String getTaskName(@Nullable String verb, @Nullable String target);
    
        /**
         * Returns the name of the compile only configuration for this source set.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/types.go

    // 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.
    type NonResourcePolicyRule struct {
    	// `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: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/vet/testdata/print/print.go

    	f.Warnf(0, "%#s", "hello")            // ERROR "Warnf format %#s has unrecognized flag #"
    	f.Warn2(0, "%s", "hello", 3)          // ERROR "Warn2 call has possible Printf formatting directive %s"
    	f.Warnf2(0, "%s", "hello", 3)         // ERROR "Warnf2 call needs 1 arg but has 2 args"
    	f.Warnf2(0, "%r", "hello")            // ERROR "Warnf2 format %r has unknown verb r"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    	// ProducesMIMETypes returns a list of the MIME types the specified HTTP verb (GET, POST, DELETE,
    	// PATCH) can respond with.
    	ProducesMIMETypes(verb string) []string
    
    	// ProducesObject returns an object the specified HTTP verb respond with. It will overwrite storage object if
    	// it is not nil. Only the type of the return object matters, the value will be ignored.
    	ProducesObject(verb string) interface{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
Back to top