Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 110 for clen (0.04 sec)

  1. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-clean-plugin/0.1/maven-clean-plugin-0.1.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/plugin.xml A test plugin to assist testing of Maven core. org.apache.maven.plugins maven-clean-plugin 0.1 clean false true clean Does nothing. false true false false false true org.apache.maven.plugin.coreit.ItMojo java per-lookup once-per-session org.apache.maven maven-plugin-api jar 2.0 org/apache/maven/plugin/coreit/ItMojo.class package org.apache.maven.plugin.coreit;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-clean-plugin/0.1/maven-clean-plugin-0.1.pom

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-clean-plugin</artifactId>
      <version>0.1</version>
      <packaging>maven-plugin</packaging>
    
      <name>Maven Integration Test Plugin</name>
      <description>
        A test plugin to assist testing of Maven core.
      </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeleteTaskIntegrationTest.groovy

            then: "clean is still marked UP-TO-DATE"
            result.groupedOutput.task(":clean").outcome == "UP-TO-DATE"
    
            when: "the kotlin script compiler is invoked due to a script change"
            buildKotlinFile << "\n"
            succeeds "clean"
            then: "clean is still marked as UP-TO-DATE"
            result.groupedOutput.task(":clean").outcome == "UP-TO-DATE"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/runtime/covermeta.go

    	"unsafe"
    )
    
    // The compiler emits calls to runtime.addCovMeta
    // but this code has moved to rtcov.AddMeta.
    func addCovMeta(p unsafe.Pointer, dlen uint32, hash [16]byte, pkgpath string, pkgid int, cmode uint8, cgran uint8) uint32 {
    	id := rtcov.AddMeta(p, dlen, hash, pkgpath, pkgid, cmode, cgran)
    	if id == 0 {
    		throw("runtime.addCovMeta: coverage package map collision")
    	}
    	return id
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 603 bytes
    - Viewed (0)
  7. src/internal/filepathlite/path.go

    		return string(Separator)
    	}
    	return path
    }
    
    // Dir is filepath.Dir.
    func Dir(path string) string {
    	vol := VolumeName(path)
    	i := len(path) - 1
    	for i >= len(vol) && !IsPathSeparator(path[i]) {
    		i--
    	}
    	dir := Clean(path[len(vol) : i+1])
    	if dir == "." && len(vol) > 2 {
    		// must be UNC
    		return vol
    	}
    	return vol + dir
    }
    
    // VolumeName is filepath.VolumeName.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheCleanupExecutor.java

            if (!dir.exists()) {
                // Directory does not exist, nothing to clean up
                return Optional.empty();
            }
    
            if (!gcFile.exists()) {
                // If GC file hasn't been created, then this cache hasn't been used before.
                // We create the GC file, but there's nothing to clean up
                try {
                    FileUtils.touch(gcFile);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. samples/bookinfo/platform/kube/cleanup.sh

    fi
    
    echo "using NAMESPACE=${NAMESPACE}"
    
    # clean up Istio traffic management resources that may have been used
    protos=( destinationrules virtualservices gateways authorizationpolicies )
    for proto in "${protos[@]}"; do
      for resource in $(kubectl get -n "${NAMESPACE}" "$proto" -o name); do
        kubectl delete -n "${NAMESPACE}" "$resource";
      done
    done
    
    # clean up Gateway API resources that may have been used
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CleanupAction.java

     * @see CacheBuilder#withCleanupStrategy(CacheCleanupStrategy)
     */
    public interface CleanupAction {
    
        void clean(CleanableStore cleanableStore, CleanupProgressMonitor progressMonitor);
    
        CleanupAction NO_OP = new CleanupAction() {
            @Override
            public void clean(CleanableStore cleanableStore, CleanupProgressMonitor progressMonitor) {
                // no-op
            }
        };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:59:23 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top