Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 78 for DELETING (0.23 sec)

  1. pkg/proxy/conntrack/cleanup.go

    			}
    		}
    	}
    
    	klog.V(4).InfoS("Deleting conntrack stale entries for services", "IPs", conntrackCleanupServiceIPs.UnsortedList())
    	for _, svcIP := range conntrackCleanupServiceIPs.UnsortedList() {
    		if err := ct.ClearEntriesForIP(svcIP, v1.ProtocolUDP); err != nil {
    			klog.ErrorS(err, "Failed to delete stale service connections", "IP", svcIP)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/OutputsCleaner.java

                    markDirForDeletion(file);
                    break;
                case RegularFile:
                    if (fileSafeToDelete.test(file)) {
                        if (file.exists()) {
                            LOGGER.debug("Deleting stale output file '{}'.", file);
                            deleter.delete(file);
                            didWork = true;
                        }
                        markParentDirForDeletion(file);
                    }
    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. pkg/scheduler/framework/plugins/nodeports/node_ports.go

    	// So, deleting that pod couldn't make `pod` schedulable.
    	nodeInfo := framework.NodeInfo{UsedPorts: usedPorts}
    	if Fits(pod, &nodeInfo) {
    		logger.V(4).Info("the deleted pod and the target pod don't have any common port(s), returning QueueSkip as deleting this Pod won't make the Pod schedulable", "pod", klog.KObj(pod), "deletedPod", klog.KObj(deletedPod))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 10:53:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. src/cmd/fix/buildtag.go

    	// they are in a comment group that starts with a //go:build line followed
    	// by a blank line. While we cannot delete comments from an AST and
    	// expect consistent output in general, this specific case - deleting only
    	// some lines from a comment block - does format correctly.
    	fixed := false
    	for _, g := range f.Comments {
    		sawGoBuild := false
    		for i, c := range g.List {
    			if strings.HasPrefix(c.Text, "//go:build ") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. pkg/test/framework/config.go

    			}
    			c.ctx.CleanupStrategy(cleanupStrategy, func() {
    				scopes.Framework.Debugf("Deleting from %s: %s", cl.StableName(), strings.Join(yamlFiles, ", "))
    				if err := cl.DeleteYAMLFiles(ns, yamlFiles...); err != nil {
    					scopes.Framework.Errorf("failed deleting YAML files %v from ns %s in cluster %s: %v", yamlFiles, ns, cl.Name(), err)
    				}
    			})
    			return nil
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/cache/internal/VersionSpecificCacheCleanupAction.java

            this.snapshotTimestampSupplier = snapshotTimestampSupplier;
            this.cleanupFrequency = cleanupFrequency;
        }
    
        @Override
        @Nonnull
        public String getDisplayName() {
            return "Deleting unused version-specific caches in " + versionSpecificCacheDirectoryScanner.getBaseDir();
        }
    
        @Override
        public boolean execute(@Nonnull CleanupProgressMonitor progressMonitor) {
            if (requiresCleanup()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/ResponseDataUtil.java

                fos = new FileOutputStream(tempFile);
                CopyUtil.copy(is, fos);
            } catch (final Exception e) {
                CloseableUtil.closeQuietly(fos); // for deleting file
                FileUtil.deleteInBackground(tempFile); // clean up
                throw new CrawlingAccessException("Could not read a response body: " + responseData.getUrl(), e);
            } finally {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperIntegrationTest.groovy

            gradleUserHome.eachFileRecurse(FileType.FILES) { file ->
                if (file.name.startsWith("gradle-launcher")) {
                    Files.delete(file.toPath())
                    println("Deleting " + file)
                    deletedSomething = true
                }
            }
            and:
            result = executer.withTasks("hello").run()
            then:
            deletedSomething
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. istioctl/pkg/tag/util.go

    		return false
    	}
    	return len(mwhs.Items) > 0
    }
    
    // DeactivateIstioInjectionWebhook deactivates the istio-injection webhook from the given MutatingWebhookConfiguration if exists.
    // used rather than just deleting the webhook since we want to keep it around after changing the default so user can later
    // switch back to it. This is a hack but it is meant to cover a corner case where a user wants to migrate from a non-revisioned
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/os/removeall_at.go

    	}
    
    	// Simple case: if Remove works, we're done.
    	err := Remove(path)
    	if err == nil || IsNotExist(err) {
    		return nil
    	}
    
    	// RemoveAll recurses by deleting the path base from
    	// its parent directory
    	parentDir, base := splitPath(path)
    
    	parent, err := Open(parentDir)
    	if IsNotExist(err) {
    		// If parent does not exist, base cannot exist. Fail silently
    		return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top