Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,084 for clean (1.31 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java

        }
    
        // <lifecycle>
        //   <id>clean</id>
        //   <phases>
        //     <phase>pre-clean</phase>
        //     <phase>clean</phase>
        //     <phase>post-clean</phase>
        //   </phases>
        //   <default-phases>
        //     <clean>org.apache.maven.plugins:maven-clean-plugin:clean</clean>
        //   </default-phases>
        // </lifecycle>
    
        private String id;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/path/example_test.go

    		"/../a/b/../././/c",
    		"",
    	}
    
    	for _, p := range paths {
    		fmt.Printf("Clean(%q) = %q\n", p, path.Clean(p))
    	}
    
    	// Output:
    	// Clean("a/c") = "a/c"
    	// Clean("a//c") = "a/c"
    	// Clean("a/c/.") = "a/c"
    	// Clean("a/c/b/..") = "a/c"
    	// Clean("/../a/c") = "/a/c"
    	// Clean("/../a/b/../././/c") = "/a/c"
    	// Clean("") = "."
    }
    
    func ExampleDir() {
    	fmt.Println(path.Dir("/a/b/c"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 19 00:10:22 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  3. src/os/path_test.go

    	}
    	perr, ok := err.(*PathError)
    	if !ok {
    		t.Fatalf("MkdirAll %q returned %T, not *PathError", fpath, err)
    	}
    	if filepath.Clean(perr.Path) != filepath.Clean(fpath) {
    		t.Fatalf("MkdirAll %q returned wrong error path: %q not %q", fpath, filepath.Clean(perr.Path), filepath.Clean(fpath))
    	}
    
    	// Can't make subdirectory of file.
    	ffpath := fpath + "/subdir"
    	err = MkdirAll(ffpath, 0777)
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:37 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/TaskOutputCachingJavaPerformanceTest.groovy

         * cache. This scenario measures how much overhead Gradle's startup and input fingerprinting add on top of the cache hits.
         */
        def "clean check on ephemeral ci with remote http cache"() {
            runner.cleanTasks = ["clean"]
            runner.tasksToRun = ["check"]
            protocol = "http"
            pushToRemote = true
            runner.useDaemon = false
            runner.warmUpRuns = 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensionsTest.kt

        fun `can create and configure tasks`() {
    
            val clean = mock<Delete>()
            val cleanProvider = mockTaskProviderFor(clean)
    
            val tasks = mock<TaskContainer> {
                on { create(eq("clean"), eq(Delete::class.java), any<Action<Delete>>()) } doReturn clean
                on { getByName("clean") } doReturn clean
                onNamedWithAction("clean", Delete::class, cleanProvider)
            }
    
            tasks {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 22:58:28 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

            result.assertTaskSkipped ":compileJava"
        }
    
        def "clean doesn't get cached"() {
            withBuildCache().run "assemble"
            withBuildCache().run "clean"
            withBuildCache().run "assemble"
            when:
            withBuildCache().run "clean"
            then:
            executedAndNotSkipped ":clean"
        }
    
        def "cacheable task with cache disabled doesn't get cached"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/clean_testcache.txt

    env GO111MODULE=off
    [short] skip
    
    # go clean -testcache
    # should work (see golang.org/issue/29757).
    cd x
    go test x_test.go
    go clean -testcache
    go test x_test.go
    ! stdout 'cached'
    ! go clean -testcache ../x
    stderr 'go: clean -testcache cannot be used with package arguments'
    
    # golang.org/issue/29100: 'go clean -testcache' should succeed
    # if the cache directory doesn't exist at all.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 680 bytes
    - Viewed (0)
  8. src/path/path_test.go

    	{"abc/../../././../def", "../../def"},
    }
    
    func TestClean(t *testing.T) {
    	for _, test := range cleantests {
    		if s := Clean(test.path); s != test.result {
    			t.Errorf("Clean(%q) = %q, want %q", test.path, s, test.result)
    		}
    		if s := Clean(test.result); s != test.result {
    			t.Errorf("Clean(%q) = %q, want %q", test.result, s, test.result)
    		}
    	}
    }
    
    func TestCleanMallocs(t *testing.T) {
    	if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 13 01:12:09 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  9. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "largeAndroidBuild",
        "linux" : 492
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.android.RealLifeAndroidBuildPerformanceTest.clean assembleDebug with clean transforms cache",
      "durations" : [ {
        "testProject" : "largeAndroidBuild",
        "linux" : 1620
      }, {
        "testProject" : "nowInAndroidBuild",
        "linux" : 3580
      }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  10. src/Make.dist

    # The -vv causes dist to print each build command as it runs.
    # go tool dist clean cleans all directories, not just this one,
    # but it's as close as we can get.
    
    # Default target (first).
    install:
    	go tool dist install -v
    
    verbose:
    	go tool dist install -vv
    
    clean:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:26:47 UTC 2012
    - 553 bytes
    - Viewed (0)
Back to top