Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,012 for deleteSV (0.19 sec)

  1. src/internal/concurrent/hashtriemap.go

    				i.mu.Unlock()
    				return
    			}
    			if n.isEntry {
    				// What we saw is still true, so we can continue with the delete.
    				break
    			}
    		}
    		// We have to start over.
    		i.mu.Unlock()
    	}
    	// Try to delete the entry.
    	e, deleted := n.entry().compareAndDelete(key, old, ht.keyEqual, ht.valEqual)
    	if !deleted {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/MoreFiles.java

        }
      }
    
      /**
       * Deletes all files within the directory at the given {@code path} {@linkplain #deleteRecursively
       * recursively}. Does not delete the directory itself. Deletes symbolic links, not their targets
       * (subject to the caveat below). If {@code path} itself is a symbolic link to a directory, that
       * link is followed and the contents of the directory it targets are deleted.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    	// returned error value err when the specified resource is not found.
    	// Delete *may* return the object that was deleted, or a status object indicating additional
    	// information about deletion.
    	// It also returns a boolean which is set to true if the resource was instantly
    	// deleted or false if it will be deleted asynchronously.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/sync/map.go

    		if !ok && read.amended {
    			e, ok = m.dirty[key]
    			delete(m.dirty, key)
    			// Regardless of whether the entry was present, record a miss: this key
    			// will take the slow path until the dirty map is promoted to the read
    			// map.
    			m.missLocked()
    		}
    		m.mu.Unlock()
    	}
    	if ok {
    		return e.delete()
    	}
    	return nil, false
    }
    
    // Delete deletes the value for a key.
    func (m *Map) Delete(key any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.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/controller/endpointslicemirroring/reconciler.go

    	}
    
    	return slices, totals
    }
    
    // finalize creates, updates, and deletes slices as specified
    func (r *reconciler) finalize(endpoints *corev1.Endpoints, slices slicesByAction) error {
    	// If there are slices to create and delete, recycle the slices marked for
    	// deletion by replacing creates with updates of slices that would otherwise
    	// be deleted.
    	recycleSlices(&slices)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top