Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 471 for verb (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    		return
    	}
    	user, ok := apirequest.UserFrom(ctx)
    	if !ok {
    		handleError(w, r, fmt.Errorf("no User found in context"))
    		return
    	}
    
    	isWatchRequest := watchVerbs.Has(requestInfo.Verb)
    
    	// Skip tracking long running non-watch requests.
    	if h.longRunningRequestCheck != nil && h.longRunningRequestCheck(r, requestInfo) && !isWatchRequest {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta1/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: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/api/flowcontrol/v1beta2/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: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope.go

    			"group", requestInfo.APIGroup, "version", requestInfo.APIVersion, "resource", requestInfo.Resource, "subresource", requestInfo.Subresource,
    			"verb", requestInfo.Verb, "namespace", requestInfo.Namespace, "name", requestInfo.Name)
    
    		key, err := t.envelopeService.Decrypt(ctx, uid, &kmsservice.DecryptRequest{
    			Ciphertext:  encryptedObject.EncryptedDEKSource,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 00:23:50 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1beta3/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: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler_test.go

    						}
    					default:
    						t.Fatalf("unknown content type %v", contentType)
    					}
    
    					req = req.WithContext(apirequest.WithRequestInfo(req.Context(), &apirequest.RequestInfo{
    						Verb:              tc.Verb,
    						Resource:          tc.Resource,
    						APIGroup:          tc.APIGroup,
    						APIVersion:        tc.APIVersion,
    						IsResourceRequest: tc.IsResourceRequest,
    						Path:              tc.Path,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 34.6K 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. cmd/signature-v2.go

    }
    
    // Authorization = "AWS" + " " + AWSAccessKeyId + ":" + Signature;
    // Signature = Base64( HMAC-SHA1( YourSecretKey, UTF-8-Encoding-Of( StringToSign ) ) );
    //
    // StringToSign = HTTP-Verb + "\n" +
    //  	Content-Md5 + "\n" +
    //  	Content-Type + "\n" +
    //  	Date + "\n" +
    //  	CanonicalizedProtocolHeaders +
    //  	CanonicalizedResource;
    //
    // CanonicalizedResource = [ SlashSeparator + Bucket ] +
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. security/pkg/k8s/configutil_test.go

    	}
    
    	for i, action := range actual {
    		expectedAction := expected[i]
    		verb := expectedAction.GetVerb()
    		resource := expectedAction.GetResource().Resource
    		if !action.Matches(verb, resource) {
    			return fmt.Errorf("unexpected %dth action, want \n%+v but got \n%+v\n%v", i, expectedAction, action, cmp.Diff(expectedAction, action))
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 21:58:25 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top