Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,785 for deleteSV (0.17 sec)

  1. pkg/kube/controllers/common.go

    	EventUpdate
    
    	// EventDelete is sent when an object is deleted
    	// Captures the object at the last known state
    	EventDelete
    )
    
    func (event EventType) String() string {
    	out := "unknown"
    	switch event {
    	case EventAdd:
    		out = "add"
    	case EventUpdate:
    		out = "update"
    	case EventDelete:
    		out = "delete"
    	}
    	return out
    }
    
    type Event struct {
    	Old   Object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 08:27:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. pkg/kubelet/container/container_gc.go

    //
    // Implementation is thread-compatible.
    type GC interface {
    	// Garbage collect containers.
    	GarbageCollect(ctx context.Context) error
    	// Deletes all unused containers, including containers belonging to pods that are terminated but not deleted
    	DeleteAllUnusedContainers(ctx context.Context) error
    	// IsContainerFsSeparateFromImageFs tells if writeable layer and read-only layer are separate.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/RecursiveDeleteOption.java

       *
       * <p><b>Warning:</b> On a file system that supports symbolic links, it is possible for an
       * insecure recursive delete to delete files and directories that are <i>outside</i> the directory
       * being deleted. This can happen if, after checking that a file is a directory (and not a
       * symbolic link), that directory is deleted and replaced by a symbolic link to an outside
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. tests/integration/helm/upgrade/util.go

    	if err := h.DeleteChart(helmtest.BaseReleaseName, helmtest.IstioNamespace); err != nil {
    		return fmt.Errorf("failed to delete %s release", helmtest.BaseReleaseName)
    	}
    	if err := cs.Kube().CoreV1().Namespaces().Delete(context.TODO(), helmtest.IstioNamespace, metav1.DeleteOptions{}); err != nil {
    		return fmt.Errorf("failed to delete istio namespace: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransactionTest.groovy

        }
    
        CompileTransaction newCompileTransaction(PatternSet classesToDelete) {
            return new CompileTransaction(spec, classesToDelete, Collections.emptyMap(), TestFiles.fileOperations(temporaryFolder), TestFiles.deleter())
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. releasenotes/notes/delete-archs-helm-templates.yaml

    Zhengzhe Yang <******@****.***> 1658791667 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 23:27:47 UTC 2022
    - 189 bytes
    - Viewed (0)
  7. cmd/api-datatypes.go

    	Location string   `xml:"LocationConstraint"`
    }
    
    // DeleteObjectsRequest - xml carrying the object key names which needs to be deleted.
    type DeleteObjectsRequest struct {
    	// Element to enable quiet mode for the request
    	Quiet bool
    	// List of objects to be deleted
    	Objects []ObjectToDelete `xml:"Object"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 07:26:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. cmd/iam-store.go

    					delete(cache.iamUsersMap, k)
    				}
    			}
    			for k, u := range cache.iamSTSAccountsMap {
    				if u.Credentials.ParentUser == accessKey {
    					delete(cache.iamSTSAccountsMap, k)
    				}
    			}
    		}
    
    		// 3. Delete any mapped policy
    		cache.iamUserPolicyMap.Delete(accessKey)
    
    		return nil
    	}
    
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  9. plugin/pkg/admission/gc/gc_admission_test.go

    			checkError: expectNoError,
    		},
    		{
    			name:       "non-deleter, create, no objectref change",
    			username:   "non-deleter",
    			resource:   api.SchemeGroupVersion.WithResource("pods"),
    			newObj:     &api.Pod{},
    			checkError: expectNoError,
    		},
    		{
    			name:       "non-deleter, create, objectref change",
    			username:   "non-deleter",
    			resource:   api.SchemeGroupVersion.WithResource("pods"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  10. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    func (tc *Controller) processJob(ctx context.Context, key string) error {
    	namespace, name, err := cache.SplitMetaNamespaceKey(key)
    	if err != nil {
    		return err
    	}
    
    	// Ignore the Jobs that are already deleted or being deleted, or the ones that don't need clean up.
    	job, err := tc.jLister.Jobs(namespace).Get(name)
    
    	logger := klog.FromContext(ctx)
    	logger.V(4).Info("Checking if Job is ready for cleanup", "job", klog.KRef(namespace, name))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top