Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 139 for DeleteCollection (0.74 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    		"Supported media types: [application/json, application/yaml, application/vnd.kubernetes.protobuf]")
    	fs.IntVar(&s.DeleteCollectionWorkers, "delete-collection-workers", s.DeleteCollectionWorkers,
    		"Number of workers spawned for DeleteCollection call. These are used to speed up namespace cleanup.")
    
    	fs.BoolVar(&s.EnableGarbageCollection, "enable-garbage-collector", s.EnableGarbageCollection, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy.go

    			rbacv1helpers.NewRule("update").Groups(legacyGroup).Resources("namespaces/finalize", "namespaces/status").RuleOrDie(),
    			rbacv1helpers.NewRule("get", "list", "delete", "deletecollection").Groups("*").Resources("*").RuleOrDie(),
    		},
    	})
    	addControllerRole(&controllerRoles, &controllerRoleBindings, func() rbacv1.ClusterRole {
    		role := rbacv1.ClusterRole{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/validation/validation.go

    )
    
    var priorityLevelConfigurationQueuingMaxQueues int32 = 10 * 1000 * 1000 // 10^7
    
    var supportedVerbs = sets.NewString(
    	"get",
    	"list",
    	"create",
    	"update",
    	"delete",
    	"deletecollection",
    	"patch",
    	"watch",
    	"proxy",
    )
    
    var supportedSubjectKinds = sets.NewString(
    	string(flowcontrol.SubjectKindServiceAccount),
    	string(flowcontrol.SubjectKindGroup),
    	string(flowcontrol.SubjectKindUser),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              "type": "string"
            },
            "verbs": {
              "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "version": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "verbs": {
                "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array"
              },
              "version": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

                "type": "string"
              },
              "verbs": {
                "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array"
              },
              "version": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  7. api/openapi-spec/swagger.json

              "type": "string"
            },
            "verbs": {
              "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "version": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	// will be aggregated under 'unknown'
    	validRequestMethods = utilsets.NewString(
    		"APPLY",
    		"CONNECT",
    		"CREATE",
    		"DELETE",
    		"DELETECOLLECTION",
    		"GET",
    		"LIST",
    		"PATCH",
    		"POST",
    		"PROXY",
    		"PUT",
    		"UPDATE",
    		"WATCH",
    		"WATCHLIST")
    
    	// These are the valid connect requests which we report in our metrics.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

                "type": "string"
              },
              "verbs": {
                "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array"
              },
              "version": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/storage/eviction_test.go

    }
    
    func (ms *mockStore) Create(ctx context.Context, obj runtime.Object, createValidation rest.ValidateObjectFunc, options *metav1.CreateOptions) (runtime.Object, error) {
    	return nil, nil
    }
    
    func (ms *mockStore) DeleteCollection(ctx context.Context, deleteValidation rest.ValidateObjectFunc, options *metav1.DeleteOptions, listOptions *metainternalversion.ListOptions) (runtime.Object, error) {
    	return nil, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top