Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,250 for clean (0.24 sec)

  1. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVcsIntegrationTest.groovy

            gitCheckout.file('.git').assertExists()
        }
    
        @Issue('gradle/gradle-native#207')
        @ToBeFixedForConfigurationCache
        def 'can use repositories even when clean is run'() {
            given:
            def commit = repo.commit('initial commit')
    
            settingsFile << """
                sourceControl {
                    vcsMappings {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  2. Makefile.core.mk

    report-benchtest:
    	prow/benchtest.sh report
    
    #-----------------------------------------------------------------------------
    # Target: clean
    #-----------------------------------------------------------------------------
    .PHONY: clean
    
    clean: ## Cleans all the intermediate files and folders previously generated.
    	rm -rf $(DIRS_TO_CLEAN)
    
    #-----------------------------------------------------------------------------
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/ReactorReader.java

        private boolean hasBeenPackagedDuringThisSession(MavenProject project) {
            boolean packaged = false;
            for (String phase : getLifecycles(project)) {
                switch (phase) {
                    case "clean":
                        packaged = false;
                        break;
                    case "package":
                    case "install":
                    case "deploy":
                        packaged = true;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. pkg/util/async/bounded_frequency_runner_test.go

    	waitForDefer("too soon after maxInterval run", t, timer, obj, 999*time.Millisecond)
    
    	// Let minInterval pass
    	timer.advance(999 * time.Millisecond) // rel=1000ms
    	waitForRun("fifth run", t, timer, obj)
    
    	// Clean up.
    	stop <- struct{}{}
    	// a message is sent to time.updated in func Stop() at the end of the child goroutine
    	// to terminate the child, a receive on time.updated is needed here
    	<-timer.updated
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  5. pkg/volume/util/subpath/subpath_linux.go

    // Symlinks are disallowed (pathname must already resolve symlinks),
    // and the path must be within the base directory.
    func doSafeOpen(pathname string, base string) (int, error) {
    	pathname = filepath.Clean(pathname)
    	base = filepath.Clean(base)
    
    	// Calculate segments to follow
    	subpath, err := filepath.Rel(base, pathname)
    	if err != nil {
    		return -1, err
    	}
    	segments := strings.Split(subpath, string(filepath.Separator))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    ==== Disabling merging with a complete rewrite
    
    To completely rewrite existing Eclipse files, execute a clean task together with its corresponding generation task, like “`gradle cleanEclipse eclipse`” (in that order). If you want to make this the default behavior, add “`tasks.eclipse.dependsOn(cleanEclipse)`” to your build script. This makes it unnecessary to execute the clean task explicitly.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

                                break;
                            case Stopped:
                                LOGGER.debug("daemon has stopped.");
                                return DaemonStopState.Clean;
                            case ForceStopped:
                                LOGGER.debug("daemon has been force stopped.");
                                return DaemonStopState.Forced;
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGIntegrationTest.groovy

                assertTestFailed("normalFailingTest", containsString("AssertionError"))
            }
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-2313")
        def "can clean test after extracting class file"() {
            when:
            buildFile << """
                apply plugin: "java"
                ${mavenCentralRepository()}
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. src/path/filepath/path_windows_test.go

    	const (
    		cmdfile             = `printdir.cmd`
    		perm    fs.FileMode = 0700
    	)
    
    	tmp := t.TempDir()
    	for i, d := range tt.result {
    		if d == "" {
    			continue
    		}
    		if cd := filepath.Clean(d); filepath.VolumeName(cd) != "" ||
    			cd[0] == '\\' || cd == ".." || (len(cd) >= 3 && cd[0:3] == `..\`) {
    			t.Errorf("%d,%d: %#q refers outside working directory", ti, i, d)
    			return
    		}
    		dd := filepath.Join(tmp, d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/grpc_service_unix_test.go

    type testSocket struct {
    	path     string
    	endpoint string
    }
    
    // newEndpoint constructs a unique name for a Linux Abstract Socket to be used in a test.
    // This package uses Linux Domain Sockets to remove the need for clean-up of socket files.
    func newEndpoint() *testSocket {
    	p := fmt.Sprintf("@%s.sock", uuid.NewUUID())
    
    	return &testSocket{
    		path:     p,
    		endpoint: fmt.Sprintf("unix:///%s", p),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 29 05:36:41 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top