Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,428 for Cleaning (0.14 sec)

  1. pkg/test/framework/scope.go

    			}
    		}
    
    		name := "lambda"
    		if r, ok := c.(resource.Resource); ok {
    			name = fmt.Sprintf("resource %v", r.ID())
    		}
    
    		scopes.Framework.Debugf("Begin cleaning up %s", name)
    		if e := c.Close(); e != nil {
    			scopes.Framework.Debugf("Error cleaning up %s: %v", name, e)
    			err = multierror.Append(err, e).ErrorOrNil()
    		}
    		scopes.Framework.Debugf("Cleanup complete for %s", name)
    	}
    
    	s.mu.Lock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 21:55:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. pkg/controller/certificates/cleaner/cleaner.go

    func isIssuedExpired(logger klog.Logger, csr *capi.CertificateSigningRequest) bool {
    	for _, c := range csr.Status.Conditions {
    		if c.Type == capi.CertificateApproved && isIssued(csr) && isExpired(csr) {
    			logger.Info("Cleaning CSR as the associated certificate is expired.", "csr", csr.Name)
    			return true
    		}
    	}
    	return false
    }
    
    // isPendingPastDeadline checks if the certificate has a Pending status and the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/OutputsCleaner.java

    import java.util.PriorityQueue;
    import java.util.function.Predicate;
    
    /**
     * Cleans outputs, removing empty directories.
     *
     * This class should be used when cleaning output directories when only a subset of the files can be deleted.
     * After cleaning up a few output directories, the method {@link #cleanupDirectories()} cleans the directories which became empty.
     *
     * IMPORTANT: This class is stateful, so it can't be used as a service.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tutorial/defaultTasks/tests/defaultTasks.out

    Default Cleaning!
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 35 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tutorial/defaultTasks/groovy/build.gradle

    defaultTasks 'clean', 'run'
    
    tasks.register('clean') {
        doLast {
            println 'Default Cleaning!'
        }
    }
    
    tasks.register('run') {
        doLast {
            println 'Default Running!'
        }
    }
    
    tasks.register('other') {
        doLast {
            println "I'm not a default task!"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 283 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tutorial/defaultTasks/kotlin/build.gradle.kts

    defaultTasks("clean", "run")
    
    tasks.register("clean") {
        doLast {
            println("Default Cleaning!")
        }
    }
    
    tasks.register("run") {
        doLast {
            println("Default Running!")
        }
    }
    
    tasks.register("other") {
        doLast {
            println("I'm not a default task!")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 287 bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/CleanUpVirtualFileSystemAfterBuild.java

            return userHomeServiceRegistry.getCurrentServices()
                .map(serviceRegistry ->
                    CompletableFuture.runAsync(() -> {
                        LOGGER.debug("Cleaning virtual file system after build finished");
                        BuildLifecycleAwareVirtualFileSystem virtualFileSystem = serviceRegistry.get(BuildLifecycleAwareVirtualFileSystem.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. cmd/benchmark-utils_test.go

    	defer cancel()
    	objLayer, disks, err := prepareTestBackend(ctx, instanceType)
    	if err != nil {
    		b.Fatalf("Failed obtaining Temp Backend: <ERROR> %s", err)
    	}
    	// cleaning up the backend by removing all the directories and files created on function return.
    	defer removeRoots(disks)
    
    	// uses *testing.B and the object Layer to run the benchmark.
    	runPutObjectPartBenchmark(b, objLayer, objSize)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 23 15:46:00 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  9. .gitignore

    # HPROF
    # -----
    *.hprof
    
    # Work dirs
    # ---------
    /incoming-distributions
    /intTestHomeDir
    
    # Logs
    # ----
    /*.log
    
    # Thread dumps for troubleshooting
    *.threaddump
    # ps output for cleaning up leaking Java processes
    *.psoutput
    
    # oh-my-zsh gradle plugin
    .gradletasknamecache
    
    # Added GE support maven support to the maven build in .teamcity, per the GE docs, this dir is NOT to be committed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCache.java

    import org.gradle.cache.Cache;
    
    import javax.annotation.concurrent.ThreadSafe;
    import java.util.function.Function;
    
    /**
     * An in-memory cache of calculated values that are used across builds. The implementation takes care of cleaning up state that is no longer required.
     */
    @ThreadSafe
    public interface CrossBuildInMemoryCache<K, V> extends Cache<K, V> {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top