Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,198 for verb (0.06 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/types.go

    	"golang.org/x/tools/internal/typeparams"
    )
    
    var errorType = types.Universe.Lookup("error").Type().Underlying().(*types.Interface)
    
    // matchArgType reports an error if printf verb t is not appropriate for
    // operand arg.
    //
    // If arg is a type parameter, the verb t must be appropriate for every type in
    // the type parameter type set.
    func matchArgType(pass *analysis.Pass, t printfArgType, arg ast.Expr) (reason string, ok bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. plugin/pkg/admission/gc/gc_admission.go

    	// imply the power to prevent deletion on other resources.
    	if attributes.GetOperation() != admission.Create {
    		deleteAttributes := authorizer.AttributesRecord{
    			User:            attributes.GetUserInfo(),
    			Verb:            "delete",
    			Namespace:       attributes.GetNamespace(),
    			APIGroup:        attributes.GetResource().Group,
    			APIVersion:      attributes.GetResource().Version,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/httplog/httplog.go

    func (rl *respLogger) Log() {
    	latency := time.Since(rl.startTime)
    	auditID := audit.GetAuditIDTruncated(rl.req.Context())
    	verb := metrics.NormalizedVerb(rl.req)
    
    	keysAndValues := []interface{}{
    		"verb", verb,
    		"URI", rl.req.RequestURI,
    		"latency", latency,
    		// We can't get UserAgent from rl.req.UserAgent() here as it accesses headers map,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 10:10:35 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1/types_swagger_doc_generated.go

    	"verbs":           "`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. Required.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta3/types_swagger_doc_generated.go

    	"verbs":           "`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. Required.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  6. pkg/controller/volume/pvcprotection/pvc_protection_controller_test.go

    	"k8s.io/client-go/kubernetes/fake"
    	clienttesting "k8s.io/client-go/testing"
    	"k8s.io/klog/v2/ktesting"
    	"k8s.io/kubernetes/pkg/controller"
    	volumeutil "k8s.io/kubernetes/pkg/volume/util"
    )
    
    type reaction struct {
    	verb      string
    	resource  string
    	reactorfn clienttesting.ReactionFunc
    }
    
    const (
    	defaultNS       = "default"
    	defaultPVCName  = "pvc1"
    	defaultPodName  = "pod1"
    	defaultNodeName = "node1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/transformer_test.go

    				Namespace:   "kube-system",
    				Name:        "panda",
    				Verb:        "update",
    			}),
    			err:         errors.New("encryption failed"),
    			message:     "failed to encrypt data",
    			expectedLog: "\"failed to encrypt data\" err=\"encryption failed\" group=\"awesome.bears.com\" version=\"v1\" resource=\"pandas\" subresource=\"status\" verb=\"update\" namespace=\"kube-system\" name=\"panda\"\n",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/filters/webhook_duration.go

    		if !ok {
    			handleError(w, req, http.StatusInternalServerError, nil, "no RequestInfo found in context, handler chain must be wrong")
    			return
    		}
    
    		if watchVerbs.Has(requestInfo.Verb) {
    			handler.ServeHTTP(w, req)
    			return
    		}
    
    		req = req.WithContext(request.WithLatencyTrackers(ctx))
    		w = responsewriter.WrapForHTTP1Or2(&writeLatencyTracker{
    			ResponseWriter: w,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 21:12:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/flowcontrol/v1beta1/types_swagger_doc_generated.go

    	"verbs":           "`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. Required.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
Back to top