Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,150 for clean (0.06 sec)

  1. apache-maven/pom.xml

            <plugins>
              <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-clean-plugin</artifactId>
                <executions>
                  <execution>
                    <id>clean-target-dir</id>
                    <goals>
                      <goal>clean</goal>
                    </goals>
                    <phase>prepare-package</phase>
                    <configuration>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

            assertEquals(1, executionPlan.size());
            MojoExecution mojoExecution = executionPlan.get(0);
            assertNotNull(mojoExecution);
            assertEquals(
                    "org.apache.maven.plugins",
                    mojoExecution.getMojoDescriptor().getPluginDescriptor().getGroupId());
            assertEquals(
                    "maven-clean-plugin",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 20:57:17 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. src/cmd/go/main.go

    	// Diagnose common mistake: GOPATH==GOROOT.
    	// This setting is equivalent to not setting GOPATH at all,
    	// which is not what most people want when they do it.
    	if gopath := cfg.BuildContext.GOPATH; filepath.Clean(gopath) == filepath.Clean(cfg.GOROOT) {
    		fmt.Fprintf(os.Stderr, "warning: GOPATH set to GOROOT (%s) has no effect\n", gopath)
    	} else {
    		for _, p := range filepath.SplitList(gopath) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/reuse_git.txt

    cp stdout all.json
    
    # clean the module cache, make sure that makes go mod download re-run git fetch, clean again
    go clean -modcache
    go mod download -x -json vcs-test.golang.org/git/hello.git@latest
    stderr 'git( .*)* fetch'
    go clean -modcache
    
    # reuse go mod download vcstest/hello result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

            packOp.result.archiveEntryCount == 5
    
            storeOp.details.cacheKey == cacheKey
            storeOp.details.archiveSize == archiveSize
            storeOp.result.stored
    
            when:
            succeeds("clean", "t")
    
            then:
            operations.none(BuildCacheRemoteStoreBuildOperationType)
            operations.none(BuildCacheRemoteLoadBuildOperationType)
            operations.none(BuildCacheLocalStoreBuildOperationType)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestWorker.java

                // In the event that the main thread exits with an uncaught exception, stop processing
                // and clear out the run queue to unblock any running communication threads
                synchronized(this) {
                    state = State.STOPPED;
                    runQueue.clear();
                }
    
                if (System.getSecurityManager() != securityManager) {
                    try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ArtifactCacheUnusedEntryCleanupIntegrationTest.groovy

        def snapshotModule = mavenHttpRepo.module('org.example', 'example', '1.0-SNAPSHOT').publish().allowAll()
    
        def setup() {
            requireOwnGradleUserHomeDir("test requires its own journal")
        }
    
        def "does not clean up resources and files that were recently used from caches"() {
            given:
            buildscriptWithDependency(snapshotModule)
    
            when:
            succeeds 'resolve'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:06:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

                h2().text(String.format("Test: %s", testHistory.getDisplayName())).end();
                text(getReproductionInstructions(testHistory));
                p().text("Tasks: " + getTasks(testHistory)).end();
                p().text("Clean tasks: " + getCleanTasks(testHistory)).end();
    
                div().id("tooltip").end();
    
                addPerformanceGraphs();
    
                h3().text("Test details").end();
                table().classAttr("test-details");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

        }
    
        def "custom clean targets are removed"() {
            given:
            buildFile << """
                apply plugin: 'base'
    
                task myTask {
                    outputs.dir "external/output"
                    outputs.file "customFile"
                    outputs.dir "build/dir"
                    doLast {}
                }
    
                clean {
                    delete "customFile"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultExclusiveCacheAccessCoordinatorTest.groovy

        }
    
        def "cleans up on close when clean up has not already occurred"() {
            def access = newAccess(OnDemand)
    
            when:
            access.open()
            access.close()
    
            then:
            1 * cleanupExecutor.cleanup()
            0 * _
        }
    
        def "does not clean up on close when clean up has already occurred"() {
            def access = newAccess(OnDemand)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top