Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,620 for delete1 (0.19 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.Delete.xml

    <section>
        <section>
            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr><td>delete</td></tr>
                <tr><td>targetFiles</td></tr>
                <tr><td>followSymlinks</td></tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 637 bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/OutputsCleaner.java

        private final Predicate<File> fileSafeToDelete;
        private final Predicate<File> dirSafeToDelete;
    
        private boolean didWork;
    
        public OutputsCleaner(Deleter deleter, Predicate<File> fileSafeToDelete, Predicate<File> dirSafeToDelete) {
            this.deleter = deleter;
            this.fileSafeToDelete = fileSafeToDelete;
            this.dirSafeToDelete = dirSafeToDelete;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. pilot/pkg/xds/deltatest.go

    	sotwRes model.Resources,
    	deltaRes model.Resources,
    	deleted model.DeletedResources,
    	usedDelta bool,
    	delta model.ResourceDelta,
    	incremental bool,
    ) {
    	current := con.proxy.GetWatchedResource(w.TypeUrl).LastResources
    	if current == nil {
    		log.Debugf("ADS:%s: resources initialized", v3.GetShortType(w.TypeUrl))
    		return
    	}
    	if deltaRes == nil && deleted == nil && len(sotwRes) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/cache/internal/VersionSpecificCacheCleanupActionTest.groovy

        def currentCacheDir = createVersionSpecificCacheDir(currentVersion, NOT_USED_WITHIN_30_DAYS)
        def progressMonitor = Mock(CleanupProgressMonitor)
        def deleter = TestFiles.deleter()
    
        @Subject def cleanupAction = new VersionSpecificCacheCleanupAction(cachesDir, daysAgo(30), daysAgo(7), deleter, CleanupFrequency.DAILY)
    
        def "cleans up unused version-specific cache directories"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 08 17:27:30 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/cache/expiring.go

    		expiry:     expiry,
    		generation: c.generation,
    	})
    }
    
    // Delete deletes an entry in the map.
    func (c *Expiring) Delete(key interface{}) {
    	c.mu.Lock()
    	defer c.mu.Unlock()
    	c.del(key, 0)
    }
    
    // del deletes the entry for the given key. The generation argument is the
    // generation of the entry that should be deleted. If the generation has been
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 22 15:51:23 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. tensorflow/c/env.h

    TF_CAPI_EXPORT extern void TF_CreateDir(const char* dirname, TF_Status* status);
    
    // Deletes the specified directory. Typical status codes are:
    //  * TF_OK - successfully deleted the directory
    //  * TF_FAILED_PRECONDITION - the directory is not empty
    TF_CAPI_EXPORT extern void TF_DeleteDir(const char* dirname, TF_Status* status);
    
    // Deletes the specified directory and all subdirectories and files underneath
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 09 02:53:27 UTC 2021
    - 9.6K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/LifecycleBasePlugin.java

            final BuildOutputCleanupRegistry buildOutputCleanupRegistry = project.getServices().get(BuildOutputCleanupRegistry.class);
            buildOutputCleanupRegistry.registerOutputs(buildDir);
    
            final Provider<Delete> clean = project.getTasks().register(CLEAN_TASK_NAME, Delete.class, cleanTask -> {
                cleanTask.setDescription("Deletes the build directory.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. pkg/controlplane/controller/apiserverleasegc/gc_controller.go

    		}
    		if err := c.kubeclientset.CoordinationV1().Leases(c.leaseNamespace).Delete(
    			context.TODO(), lease.Name, metav1.DeleteOptions{}); err != nil {
    			if errors.IsNotFound(err) {
    				// In an HA cluster, this can happen if the lease was deleted
    				// by the same GC controller in another apiserver, which is legit.
    				// We don't expect other components to delete the lease.
    				klog.V(4).InfoS("Apiserver lease is gone already", "err", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 25 03:27:44 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  9. pkg/kube/namespace/filter.go

    		DeleteFunc: func(ns *corev1.Namespace) {
    			f.lock.Lock()
    			defer f.lock.Unlock()
    			// No need to notify handlers for deletes. The namespace was deleted, so the object will be as well (and a delete could not de-select).
    			// Note that specifically for the edge case of a Namespace watcher that is filtering, this will ignore deletes we should
    			// otherwise send.
    			// See kclient.applyDynamicFilter for rationale.
    			f.namespaceDeletedLocked(ns.ObjectMeta)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/memorymanager/state/state_mem.go

    	s.assignments = assignments.Clone()
    }
    
    // Delete deletes corresponding Blocks from ContainerMemoryAssignments
    func (s *stateMemory) Delete(podUID string, containerName string) {
    	s.Lock()
    	defer s.Unlock()
    
    	if _, ok := s.assignments[podUID]; !ok {
    		return
    	}
    
    	delete(s.assignments[podUID], containerName)
    	if len(s.assignments[podUID]) == 0 {
    		delete(s.assignments, podUID)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 15 19:51:19 UTC 2021
    - 3.2K bytes
    - Viewed (0)
Back to top