Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 532 for vers (0.11 sec)

  1. pkg/registry/authorization/util/helpers_test.go

    	knownResourceAttributesNames := sets.NewString(
    		// Fields we copy in ResourceAttributesFrom
    		"Verb",
    		"Namespace",
    		"Group",
    		"Version",
    		"Resource",
    		"Subresource",
    		"Name",
    
    		// Fields we copy in NonResourceAttributesFrom
    		"Path",
    		"Verb",
    	)
    	reflect.TypeOf(authorizationapi.ResourceAttributes{}).FieldByNameFunc(func(name string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 16:06:18 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/role.yaml

    # invalid config. We use --server-dry-run so no config is persisted.
    - apiGroups: ["networking.istio.io"]
      verbs: ["create"]
      resources: ["gateways"]
    
    # For storing CA secret
    - apiGroups: [""]
      resources: ["secrets"]
      # TODO lock this down to istio-ca-cert if not using the DNS cert mesh config
      verbs: ["create", "get", "watch", "list", "update", "delete"]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 16:21:31 UTC 2023
    - 971 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/mergelocals_test.go

    	v3 := mkiv("v3")
    
    	testcases := []struct {
    		vars      []*ir.Name
    		partition map[*ir.Name][]int
    		experr    bool
    	}{
    		{
    			vars: []*ir.Name{v1, v2, v3},
    			partition: map[*ir.Name][]int{
    				v1: []int{0, 1, 2},
    				v2: []int{0, 1, 2},
    				v3: []int{0, 1, 2},
    			},
    			experr: false,
    		},
    		{
    			// invalid mls.v slot -1
    			vars: []*ir.Name{v1, v2, v3},
    			partition: map[*ir.Name][]int{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:43:53 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/lower_variable_ops_to_ml_program.mlir

    // CHECK-LABEL: module
    module attributes {tf_saved_model.semantics} {
      // CHECK: ml_program.global {{.*}} @vars.v
      // CHECK: ml_program.global {{.*}} @vars.bar
      "tf_saved_model.global_tensor"() { is_mutable, sym_name = "v", type = tensor<10xf32>, value = dense<[0.,1.,2.,3.,4.,5.,6.,7.,8.,9.]> : tensor<10xf32> } : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 19 19:00:41 UTC 2022
    - 6K bytes
    - Viewed (0)
  5. cmd/dummy-handlers.go

    func (api objectAPIHandlers) GetBucketWebsiteHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "GetBucketWebsite")
    
    	defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r))
    
    	vars := mux.Vars(r)
    	bucket := vars["bucket"]
    
    	objAPI := api.ObjectAPI()
    	if objAPI == nil {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrServerNotInitialized), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. api/discovery/apis__flowcontrol.apiserver.k8s.io__v1.json

          "storageVersionHash": "GJVAJZSZBIw=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "FlowSchema",
          "name": "flowschemas/status",
          "namespaced": false,
          "singularName": "",
          "verbs": [
            "get",
            "patch",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 06:24:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. api/discovery/apis__networking.k8s.io__v1.json

          "storageVersionHash": "39NQlfNR+bo=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "Ingress",
          "name": "ingresses/status",
          "namespaced": true,
          "singularName": "",
          "verbs": [
            "get",
            "patch",
            "update"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. src/go/types/tuple.go

    // assignments; they are not first class types of Go.
    type Tuple struct {
    	vars []*Var
    }
    
    // NewTuple returns a new tuple for the given variables.
    func NewTuple(x ...*Var) *Tuple {
    	if len(x) > 0 {
    		return &Tuple{vars: x}
    	}
    	return nil
    }
    
    // Len returns the number variables of tuple t.
    func (t *Tuple) Len() int {
    	if t != nil {
    		return len(t.vars)
    	}
    	return 0
    }
    
    // At returns the i'th variable of tuple t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. cluster/addons/metrics-server/resource-reader.yaml

    rules:
      - apiGroups: [""]
        resources:
          - nodes/metrics
        verbs:
          - get
      - apiGroups: [""]
        resources:
          - pods
          - nodes
        verbs:
          - get
          - list
          - watch
      - apiGroups: ["apps"]
        resources:
          - deployments
        resourceNames:
          - metrics-server-v0.7.1
        verbs:
          - get
          - patch
      - nonResourceURLs:
        - /metrics
        verbs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 26 01:57:01 UTC 2024
    - 988 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authorization/authorizer/rule.go

    }
    
    // DefaultResourceRuleInfo holds information that describes a rule for the resource
    type DefaultResourceRuleInfo struct {
    	Verbs         []string
    	APIGroups     []string
    	Resources     []string
    	ResourceNames []string
    }
    
    func (i *DefaultResourceRuleInfo) GetVerbs() []string {
    	return i.Verbs
    }
    
    func (i *DefaultResourceRuleInfo) GetAPIGroups() []string {
    	return i.APIGroups
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 11:09:43 UTC 2017
    - 2.1K bytes
    - Viewed (0)
Back to top