Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 365 for DELETING (0.32 sec)

  1. 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)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/DeleteSpec.java

     * limitations under the License.
     */
    
    package org.gradle.api.file;
    
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * A specification for deleting files from the filesystem.
     */
    @HasInternalProtocol
    public interface DeleteSpec {
        /**
         * Specifies the files to delete.
         *
         * @param files the list of files which should be deleted. Any type of object
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 01 02:14:13 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  3. cluster/gce/gci/shutdown.sh

    if [ "${preemptible}" == "TRUE" ]; then
        echo "Shutting down! Sleeping for a minute to let the node gracefully terminate"
        # https://cloud.google.com/compute/docs/instances/stopping-or-deleting-an-instance#delete_timeout
        sleep 30
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 03:46:45 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  4. pkg/util/iptables/testing/fake_test.go

    	if err == nil {
    		t.Errorf("did not get expected error deleting rule in non-existent table")
    	}
    	err = fake.DeleteRule(iptables.TableNAT, iptables.Chain("KUBE-TEST-NOT"), "-j", "DROP")
    	if err == nil {
    		t.Errorf("did not get expected error deleting rule in non-existent chain")
    	}
    	err = fake.DeleteRule(iptables.TableNAT, iptables.Chain("KUBE-TEST"), "-j", "DROPLET")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    		{Group: "apiregistration.k8s.io", Resource: "apiservices"}:             true,
    		{Group: "apiextensions.k8s.io", Resource: "customresourcedefinitions"}: true,
    	}
    }
    
    // CRDFinalizer is a controller that finalizes the CRD by deleting all the CRs associated with it.
    type CRDFinalizer struct {
    	crdClient      client.CustomResourceDefinitionsGetter
    	crClientGetter CRClientGetter
    
    	crdLister listers.CustomResourceDefinitionLister
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. pkg/controller/podgc/doc.go

    // configurable threshold, the controller will delete pods in terminated state
    // until the system reaches the allowed threshold again. The PodGCController
    // prioritizes pods to delete by sorting by creation timestamp and deleting the
    // oldest objects first. The PodGCController will not delete non-terminated
    // pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top