Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 471 for verb (0.05 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    			IsResourceRequest: true,
    			Verb:              verbs[coord%nv],
    			APIGroup:          apiGroups[coord/nv%ng],
    			Resource:          resources[coord/nv/ng%nr],
    			Namespace:         namespaces[coord/nv/ng/nr]})
    	}
    	return ans
    }
    
    func genNRRIs(rng *rand.Rand, m int, verbs, urls []string) []*request.RequestInfo {
    	nv := len(verbs)
    	nu := len(urls)
    	coords := chooseInts(rng, nv*nu, m)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    		},
    		ResourceRequest: true,
    		Namespace:       "kittensandponies",
    		Verb:            "get",
    	}
    	bobAttr := authorizer.AttributesRecord{
    		User: &user.DefaultInfo{
    			Name: "bob",
    		},
    		ResourceRequest: false,
    		Namespace:       "kittensandponies",
    		Verb:            "get",
    	}
    	alice2Attr := authorizer.AttributesRecord{
    		User: &user.DefaultInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  3. pkg/apis/authorization/v1beta1/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta1_NonResourceAttributes_To_authorization_NonResourceAttributes(in *v1beta1.NonResourceAttributes, out *authorization.NonResourceAttributes, s conversion.Scope) error {
    	out.Path = in.Path
    	out.Verb = in.Verb
    	return nil
    }
    
    // Convert_v1beta1_NonResourceAttributes_To_authorization_NonResourceAttributes is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 32.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    			Namespace:   attr.GetNamespace(),
    			Verb:        attr.GetVerb(),
    			Group:       attr.GetAPIGroup(),
    			Version:     attr.GetAPIVersion(),
    			Resource:    attr.GetResource(),
    			Subresource: attr.GetSubresource(),
    			Name:        attr.GetName(),
    		}
    	} else {
    		r.Spec.NonResourceAttributes = &authorizationv1.NonResourceAttributes{
    			Path: attr.GetPath(),
    			Verb: attr.GetVerb(),
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top