Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,201 for verb (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    				Namespace:       "default",
    				Name:            "endpoints1",
    				Verb:            "custom-verb",
    				APIVersion:      "*",
    			}),
    		},
    		{
    			name: "test subresource request resource authorizer allow check",
    			validations: []ExpressionAccessor{
    				&condition{
    					Expression: "authorizer.requestResource.check('custom-verb').allowed()",
    				},
    			},
    			attributes: endpointStatusUpdateAttributes(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/instantiate.go

    		return true // avoid follow-on errors
    	}
    	if p, _ := Vu.(*Pointer); p != nil && !isValid(under(p.base)) {
    		return true // avoid follow-on errors (see go.dev/issue/49541 for an example)
    	}
    
    	verb := "implement"
    	if constraint {
    		verb = "satisfy"
    	}
    
    	Ti, _ := Tu.(*Interface)
    	if Ti == nil {
    		if cause != nil {
    			var detail string
    			if isInterfacePtr(Tu) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/fmt/format.go

    	} else {
    		f.pad(strconv.AppendQuoteRune(buf, r))
    	}
    }
    
    // fmtFloat formats a float64. It assumes that verb is a valid format specifier
    // for strconv.AppendFloat and therefore fits into a byte.
    func (f *fmt) fmtFloat(v float64, size int, verb rune, prec int) {
    	// Explicit precision in format specifier overrules default precision.
    	if f.precPresent {
    		prec = f.prec
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/audit/policy/checker_test.go

    			Level:     audit.LevelRequestResponse,
    			Verbs:     []string{"get"},
    			Resources: []audit.GroupResources{{Resources: []string{"pods"}}},
    		},
    		"getPodLogs": {
    			Level:     audit.LevelRequest,
    			Verbs:     []string{"get"},
    			Resources: []audit.GroupResources{{Resources: []string{"pods/log"}}},
    		},
    		"getPodWildcardMatching": {
    			Level:     audit.LevelRequest,
    			Verbs:     []string{"get"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 12 15:06:14 UTC 2021
    - 15.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/noder/noder.go

    	default:
    		verb := text
    		if i := strings.Index(text, " "); i >= 0 {
    			verb = verb[:i]
    		}
    		flag := pragmaFlag(verb)
    		const runtimePragmas = ir.Systemstack | ir.Nowritebarrier | ir.Nowritebarrierrec | ir.Yeswritebarrierrec
    		if !base.Flag.CompilingRuntime && flag&runtimePragmas != 0 {
    			p.error(syntax.Error{Pos: pos, Msg: fmt.Sprintf("//%s only allowed in runtime", verb)})
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. pkg/registry/admissionregistration/validatingadmissionpolicy/authz.go

    			// we only need to authorize the resolved resource
    			resource = gvr.Resource
    		}
    	}
    
    	// require that the user can read (verb "get") the referred kind.
    	attrs := authorizer.AttributesRecord{
    		User:            user,
    		Verb:            "get",
    		ResourceRequest: true,
    		Name:            "*",
    		Namespace:       "*",
    		APIGroup:        apiGroup,
    		APIVersion:      apiVersion,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:29:56 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/selection_predicate_test.go

    			indexFields:   []string{"metadata.namespace"},
    			ctx: request.WithRequestInfo(context.Background(), &request.RequestInfo{
    				IsResourceRequest: true,
    				Path:              "/api/v1/namespaces/default/pods",
    				Verb:              "list",
    				APIPrefix:         "api",
    				APIGroup:          "",
    				APIVersion:        "v1",
    				Namespace:         "default",
    				Resource:          "pods",
    			}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 30 10:39:09 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/types.go

    // it is assumed that the extender chose not to provide that extension.
    type Extender struct {
    	// URLPrefix at which the extender is available
    	URLPrefix string
    	// Verb for the filter call, empty if not supported. This verb is appended to the URLPrefix when issuing the filter call to extender.
    	FilterVerb string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. pkg/controller/volume/pvprotection/pv_protection_controller_test.go

    	"k8s.io/klog/v2/ktesting"
    	"k8s.io/kubernetes/pkg/controller"
    	volumeutil "k8s.io/kubernetes/pkg/volume/util"
    )
    
    const defaultPVName = "default-pv"
    
    type reaction struct {
    	verb      string
    	resource  string
    	reactorfn clienttesting.ReactionFunc
    }
    
    func pv() *v1.PersistentVolume {
    	return &v1.PersistentVolume{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: defaultPVName,
    		},
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller_debug.go

    		strconv.Itoa(rejectedRequests),
    		strconv.Itoa(timedoutRequests),
    		strconv.Itoa(cancelledRequests),
    	)
    }
    
    func rowForRequestDetails(username, verb, path, namespace, name, apiVersion, resource, subResource string) string {
    	return row(
    		username,
    		verb,
    		path,
    		namespace,
    		name,
    		apiVersion,
    		resource,
    		subResource,
    	)
    }
    
    func row(columns ...string) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top