Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,012 for deleteSV (0.13 sec)

  1. tensorflow/cc/experimental/base/public/tensor.h

        DeleterStruct* deleter = reinterpret_cast<DeleterStruct*>(deleter_struct);
        deleter->deleter(memory, len);
        delete deleter;
      }
    
      struct TFTensorDeleter {
        void operator()(TF_Tensor* p) const { TF_DeleteTensor(p); }
      };
      std::unique_ptr<TF_Tensor, TFTensorDeleter> tensor_;
    };
    
    inline void* Tensor::data() const { return TF_TensorData(tensor_.get()); }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 28 20:10:33 UTC 2020
    - 6.3K 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. subprojects/core/src/main/java/org/gradle/caching/internal/packaging/impl/DefaultTarPackerFileSystemSupport.java

    import org.apache.commons.io.FileUtils;
    import org.gradle.internal.file.Deleter;
    import org.gradle.internal.file.TreeType;
    
    import java.io.File;
    import java.io.IOException;
    
    public class DefaultTarPackerFileSystemSupport implements TarPackerFileSystemSupport {
        private final Deleter deleter;
    
        public DefaultTarPackerFileSystemSupport(Deleter deleter) {
            this.deleter = deleter;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 24 14:54:23 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/controller/namespace/deletion/status_condition_utils.go

    import (
    	"fmt"
    	"sort"
    	"strings"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/client-go/discovery"
    )
    
    // NamespaceConditionUpdater interface that translates namespace deleter errors
    // into namespace status conditions.
    type NamespaceConditionUpdater interface {
    	ProcessDiscoverResourcesErr(e error)
    	ProcessGroupVersionErr(e error)
    	ProcessDeleteContentErr(e error)
    	Update(*v1.Namespace) bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 06 13:58:41 UTC 2019
    - 8.1K bytes
    - Viewed (0)
  10. 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)
Back to top