Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 318 for DELETING (0.28 sec)

  1. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/impl/DefaultDeleter.java

            }
            tryHardToDeleteOrThrow(target);
            return true;
        }
    
        private boolean deleteRecursively(File root, Handling handling) throws IOException {
            LOGGER.debug("Deleting {}", root);
            long startTime = timeProvider.getAsLong();
            Map<String, FileDeletionResult> failedPaths = new LinkedHashMap<String, FileDeletionResult>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:10:06 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. pkg/proxy/servicechangetracker.go

    		}
    		result.UpdatedServices.Insert(nn)
    
    		sm.merge(change.current)
    		// filter out the Update event of current changes from previous changes
    		// before calling unmerge() so that can skip deleting the Update events.
    		change.previous.filter(change.current)
    		sm.unmerge(change.previous, result.DeletedUDPClusterIPs)
    	}
    	// clear changes after applying them to ServicePortMap.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. pkg/util/sets/set.go

    	s, f := m[k]
    	if !f {
    		m[k] = New(v)
    	} else {
    		s.Insert(v)
    	}
    }
    
    // DeleteCleanupLast removes an element from a set in a map of sets, deleting the key from the map if there are no keys left.
    // Works well with InsertOrNew.
    // Example:
    //
    //	sets.DeleteCleanupLast(m, key, value)
    func DeleteCleanupLast[K comparable, T comparable](m map[K]Set[T], k K, v T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. pkg/apis/core/annotation_key_constants.go

    	// CSI Backend for a volume plugin on a specific node.
    	MigratedPluginsAnnotationKey = "storage.alpha.kubernetes.io/migrated-plugins"
    
    	// PodDeletionCost can be used to set to an int32 that represent the cost of deleting
    	// a pod compared to other pods belonging to the same ReplicaSet. Pods with lower
    	// deletion cost are preferred to be deleted before pods with higher deletion cost.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/annotation_key_constants.go

    	// CSI Backend for a volume plugin on a specific node.
    	MigratedPluginsAnnotationKey = "storage.alpha.kubernetes.io/migrated-plugins"
    
    	// PodDeletionCost can be used to set to an int32 that represent the cost of deleting
    	// a pod compared to other pods belonging to the same ReplicaSet. Pods with lower
    	// deletion cost are preferred to be deleted before pods with higher deletion cost.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_device_context.cc

            done(done_status);
            ref.Unref();
            // If a stream is in a bad state, it gets deleted when it's returned to
            // the stream pool, i.e. when it leaves this scope. However, a stream
            // deleting itself in a host callback on itself can cause bad behaviors
            // on some platforms. Releasing it in another stream to avoid that.
            if (!device_allows_sync_on_completion &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. build/lib/release.sh

      conformance_tag="${registry}/conformance-${arch}:${version}"
      if [[ -n "${save_dir}" ]]; then
        "${DOCKER[@]}" save "${conformance_tag}" > "${save_dir}/conformance-${arch}.tar"
      fi
      kube::log::status "Deleting conformance image ${conformance_tag}"
      "${DOCKER[@]}" rmi "${conformance_tag}" &>/dev/null || true
    }
    
    # This builds all the release docker images (One docker image per binary)
    # Args:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransaction.java

            StaleOutputCleaner.cleanOutputs(deleter, filesToDelete, getOutputDirectories());
            if (LOG.isDebugEnabled()) {
                LOG.debug("Deleting generated files: {}", filesToDelete.stream().sorted().collect(Collectors.toList()));
            }
        }
    
        private PatternSet getNewGeneratedClasses(ApiCompilerResult result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. cmd/data-scanner.go

    			if i.debug {
    				if obj.VersionID != "" {
    					console.Debugf(applyVersionActionsLogPrefix+" lifecycle: %s v(%s) is locked, not deleting\n", obj.Name, obj.VersionID)
    				} else {
    					console.Debugf(applyVersionActionsLogPrefix+" lifecycle: %s is locked, not deleting\n", obj.Name)
    				}
    			}
    			// add this version back to remaining versions for
    			// subsequent lifecycle policy applications
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  10. pkg/volume/util/recyclerclient/recycler_client.go

    		}
    		return fmt.Errorf("unexpected error creating recycler pod:  %+v", err)
    	}
    	err = waitForPod(pod, recyclerClient, podCh)
    
    	// In all cases delete the recycler pod and log its result.
    	klog.V(2).Infof("deleting recycler pod %s/%s", pod.Namespace, pod.Name)
    	deleteErr := recyclerClient.DeletePod(pod.Name, pod.Namespace)
    	if deleteErr != nil {
    		klog.Errorf("failed to delete recycler pod %s/%s: %v", pod.Namespace, pod.Name, err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 8.5K bytes
    - Viewed (1)
Back to top