Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 172 for verb2 (0.04 sec)

  1. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    			},
    		},
    		&core.SimpleReactor{
    			Verb:     "update",
    			Resource: "*",
    			Reaction: successfulModificationReactorFunc,
    		},
    		&core.SimpleReactor{
    			Verb:     "delete",
    			Resource: "*",
    			Reaction: successfulModificationReactorFunc,
    		},
    		&core.SimpleReactor{
    			Verb:     "delete-collection",
    			Resource: "*",
    			Reaction: successfulModificationReactorFunc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// if it is a member of any of the UserGroups.
    	// An empty list implies every user group.
    	// +optional
    	UserGroups []string
    
    	// The verbs that match this rule.
    	// An empty list implies every verb.
    	// +optional
    	Verbs []string
    
    	// Rules can apply to API resources (such as "pods" or "secrets"),
    	// non-resource URL paths (such as "/api"), or neither, but not both.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    type printVerb struct {
    	verb  rune   // User may provide verb through Formatter; could be a rune.
    	flags string // known flags are all ASCII
    	typ   printfArgType
    }
    
    // Common flag sets for printf verbs.
    const (
    	noFlag       = ""
    	numFlag      = " -+.0"
    	sharpNumFlag = " -+.0#"
    	allFlags     = " -+.0#"
    )
    
    // printVerbs identifies which flags are known to printf for each verb.
    var printVerbs = []printVerb{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        - serviceaccounts
        verbs:
        - create
      - apiGroups:
        - ""
        resources:
        - secrets
        verbs:
        - delete
      - apiGroups:
        - ""
        resources:
        - configmaps
        - namespaces
        - secrets
        - serviceaccounts
        verbs:
        - get
      - apiGroups:
        - ""
        resources:
        - secrets
        - serviceaccounts
        verbs:
        - update
      - apiGroups:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  5. src/fmt/scan.go

    	case *bool:
    		*v = s.scanBool(verb)
    	case *complex64:
    		*v = complex64(s.scanComplex(verb, 64))
    	case *complex128:
    		*v = s.scanComplex(verb, 128)
    	case *int:
    		*v = int(s.scanInt(verb, intBits))
    	case *int8:
    		*v = int8(s.scanInt(verb, 8))
    	case *int16:
    		*v = int16(s.scanInt(verb, 16))
    	case *int32:
    		*v = int32(s.scanInt(verb, 32))
    	case *int64:
    		*v = s.scanInt(verb, 64)
    	case *uint:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  6. api/discovery/api__v1.json

          "name": "bindings",
          "namespaced": true,
          "singularName": "binding",
          "verbs": [
            "create"
          ]
        },
        {
          "kind": "ComponentStatus",
          "name": "componentstatuses",
          "namespaced": false,
          "shortNames": [
            "cs"
          ],
          "singularName": "componentstatus",
          "verbs": [
            "get",
            "list"
          ]
        },
        {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-roles.yaml

        - persistentvolumeclaims
        - persistentvolumes
        verbs:
        - list
        - watch
      - apiGroups:
        - ""
        resources:
        - nodes
        verbs:
        - get
        - list
        - watch
      - apiGroups:
        - ""
        resources:
        - nodes/status
        verbs:
        - patch
        - update
      - apiGroups:
        - ""
        resources:
        - pods
        verbs:
        - list
        - watch
      - apiGroups:
        - ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/installer_test.go

    					ShortNames: []string{"cj"},
    					Verbs:      []string{"create", "delete", "deletecollection", "get", "list", "patch", "update", "watch"},
    				},
    				{
    					Name:       "cronjobs/status",
    					Namespaced: true,
    					Kind:       "CronJob",
    					Group:      "batch",
    					Version:    "v1",
    					ShortNames: []string{"cj"},
    					Verbs:      []string{"create", "delete", "deletecollection", "get", "list", "patch", "update", "watch"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width_test.go

    			maxSeats:             10,
    			initialSeatsExpected: 10,
    		},
    		{
    			name:       "request verb is not list",
    			requestURI: "http://server/apis/",
    			requestInfo: &apirequest.RequestInfo{
    				Verb: "get",
    			},
    			maxSeats:             10,
    			initialSeatsExpected: 1,
    		},
    		{
    			name:       "request verb is list, conversion to ListOptions returns error",
    			requestURI: "http://server/apis/foo.bar/v1/events?limit=invalid",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller.go

    		}
    
    		if !foundThisVersion {
    			continue
    		}
    		foundVersion = true
    
    		verbs := metav1.Verbs([]string{"delete", "deletecollection", "get", "list", "patch", "create", "update", "watch"})
    		// if we're terminating we don't allow some verbs
    		if apiextensionshelpers.IsCRDConditionTrue(crd, apiextensionsv1.Terminating) {
    			verbs = metav1.Verbs([]string{"delete", "deletecollection", "get", "list", "watch"})
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 11:40:03 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top