Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 145 for deleteOption (0.31 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.DeleteOptions.yaml

    apiVersion: v1
    dryRun:
    - dryRunValue
    gracePeriodSeconds: 1
    kind: DeleteOptions
    orphanDependents: true
    preconditions:
      resourceVersion: resourceVersionValue
      uid: uidValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 215 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.DeleteOptions.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 287 bytes
    - Viewed (0)
  3. pkg/controller/podgc/gc_controller_test.go

    			var patchAction clienttesting.PatchAction
    			var deleteAction clienttesting.DeleteAction
    
    			for _, action := range actions {
    				if action.GetVerb() == "patch" {
    					patchAction = action.(clienttesting.PatchAction)
    				}
    
    				if action.GetVerb() == "delete" {
    					deleteAction = action.(clienttesting.DeleteAction)
    				}
    			}
    
    			if patchAction != nil && test.expectedPatchedPod == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.DeleteOptions.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 106 bytes
    - Viewed (0)
  5. pkg/registry/batch/job/storage/storage_test.go

    	tests := []struct {
    		description   string
    		expectWarning bool
    		deleteOptions *metav1.DeleteOptions
    		listOptions   *internalversion.ListOptions
    		requestInfo   *genericapirequest.RequestInfo
    	}{
    		{
    			description:   "deletion: no policy, v1, warning",
    			expectWarning: true,
    			deleteOptions: &metav1.DeleteOptions{},
    			requestInfo:   &genericapirequest.RequestInfo{APIGroup: "batch", APIVersion: "v1"},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. pkg/registry/core/pod/storage/eviction_test.go

    							t.Fatal(err)
    						}
    					})
    					deleteOptions = tc.makeDeleteOptions(createdObj.(*api.Pod))
    				} else {
    					deleteOptions = tc.makeDeleteOptions(nil)
    				}
    				if deleteOptions == nil {
    					deleteOptions = &metav1.DeleteOptions{}
    				}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (1)
  7. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

                "version": "v1beta1"
              },
              {
                "group": "authorization.k8s.io",
                "kind": "DeleteOptions",
                "version": "v1"
              },
              {
                "group": "authorization.k8s.io",
                "kind": "DeleteOptions",
                "version": "v1beta1"
              },
              {
                "group": "autoscaling",
                "kind": "DeleteOptions",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

                "version": "v1beta1"
              },
              {
                "group": "authorization.k8s.io",
                "kind": "DeleteOptions",
                "version": "v1"
              },
              {
                "group": "authorization.k8s.io",
                "kind": "DeleteOptions",
                "version": "v1beta1"
              },
              {
                "group": "autoscaling",
                "kind": "DeleteOptions",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  9. pkg/config/schema/codegen/templates/crdclient.go.tmpl

    	}
    }
    
    
    func delete(c kube.Client, typ config.GroupVersionKind, name, namespace string, resourceVersion *string) error {
    	var deleteOptions metav1.DeleteOptions
    	if resourceVersion != nil {
    		deleteOptions.Preconditions = &metav1.Preconditions{ResourceVersion: resourceVersion}
    	}
    	switch typ {
    {{- range .Entries }}
    	{{- if and (not .Resource.Synthetic) (not .Resource.Builtin) }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/cleanup.go

    		if e := c.Kube().CoreV1().Secrets(i.cfg.SystemNamespace).DeleteCollection(
    			context.Background(), metav1.DeleteOptions{}, metav1.ListOptions{}); e != nil {
    			err = multierror.Append(err, e)
    		}
    		if e := c.Kube().CoreV1().ConfigMaps(i.cfg.SystemNamespace).DeleteCollection(
    			context.Background(), metav1.DeleteOptions{}, metav1.ListOptions{}); e != nil {
    			err = multierror.Append(err, e)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top