Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,138 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/sync/map.go

    // Store sets the value for a key.
    func (m *Map) Store(key, value any) {
    	_, _ = m.Swap(key, value)
    }
    
    // Clear deletes all the entries, resulting in an empty Map.
    func (m *Map) Clear() {
    	read := m.loadReadOnly()
    	if len(read.m) == 0 && !read.amended {
    		// Avoid allocating a new readOnly when the map is already clear.
    		return
    	}
    
    	m.mu.Lock()
    	defer m.mu.Unlock()
    
    	read = m.loadReadOnly()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. src/cmd/internal/objfile/disasm.go

    	if filepath.Ext(filename) != ".go" {
    		return nil, nil
    	}
    
    	// Clean filenames returned by src.Pos.SymFilename()
    	// or src.PosBase.SymFilename() removing
    	// the leading src.FileSymPrefix.
    	filename = strings.TrimPrefix(filename, src.FileSymPrefix)
    
    	// Expand literal "$GOROOT" rewritten by obj.AbsFile()
    	filename = filepath.Clean(os.ExpandEnv(filename))
    
    	var cf *CachedFile
    	var e *list.Element
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 10.5K bytes
    - Viewed (0)
Back to top