Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 644 for clen (0.04 sec)

  1. 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)
  2. maven-core/src/site/apt/lifecycles.apt.vm

    %{snippet|id=default|file=${project.basedir}/src/main/java/org/apache/maven/lifecycle/providers/DefaultLifecycleProvider.java}
    
    * <<<clean>>> Lifecycle
    
      <<<clean>>> lifecycle phases are defined with their plugins bindings:
    
    %{snippet|id=clean|file=${project.basedir}/src/main/java/org/apache/maven/lifecycle/providers/CleanLifecycleProvider.java}
    
    * <<<site>>> Lifecycle
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Jan 08 14:57:39 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/AbstractIdeLifecycleIntegrationTest.groovy

            and:
            projectName(".") == "root"
            projectName("foo") == "foo"
            projectName("foo/bar") == "bar"
        }
    
        @ToBeFixedForConfigurationCache
        def "clean tasks always run before generation tasks when specified on the command line"() {
            when:
            run cleanTaskName, lifeCycleTaskName
    
            then:
            assertCleanTasksRunBeforeGenerationTasks()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. testing/integ-test/src/integTest/groovy/org/gradle/integtests/AntProjectIntegrationTest.groovy

        void canApplyJavaPluginWithAntBuild() {
            testFile('build.xml') << """
    <project>
        <target name='clean'>
            <echo message='Executing Ant clean'/>
        </target>
        <target name='target2' depends='clean'/>
        <target name='target1' depends='target2'/>
    </project>
    """
            testFile('build.gradle') << """
    apply plugin:'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/lif/address.go

    	return as, nil
    }
    
    func parseLinkAddr(b []byte) ([]byte, error) {
    	nlen, alen, slen := int(b[1]), int(b[2]), int(b[3])
    	l := 4 + nlen + alen + slen
    	if len(b) < l {
    		return nil, errors.New("invalid address")
    	}
    	b = b[4:]
    	var addr []byte
    	if nlen > 0 {
    		b = b[nlen:]
    	}
    	if alen > 0 {
    		addr = make([]byte, alen)
    		copy(addr, b[:alen])
    	}
    	return addr, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CompositeCleanupAction.java

        private CompositeCleanupAction(List<CleanupAction> cleanups) {
            this.cleanups = cleanups;
        }
    
        @Override
        public void clean(CleanableStore cleanableStore, CleanupProgressMonitor progressMonitor) {
            for (CleanupAction action : cleanups) {
                action.clean(cleanableStore, progressMonitor);
            }
        }
    
        public static class Builder {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. tools/certs/common.mk

    #------------------------------------------------------------------------
    # variables: files to clean
    FILES_TO_CLEAN+=k8s-root-cert.pem \
                     k8s-root-cert.srl  \
                     k8s-root-key.pem root-ca.conf root-cert.csr root-cert.pem root-cert.srl root-key.pem
    #------------------------------------------------------------------------
    # clean
    .PHONY: clean
    
    clean: ## Cleans all the intermediate files and folders previously generated.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 20 08:51:56 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/plugins/LifecycleBasePluginIntegrationTest.groovy

            taskName << ["check", "build"]
        }
    
        def "clean task honors changes to build dir location"() {
            buildFile << """
                buildDir = 'target'
            """
            def buildDir = file("build")
            buildDir.mkdirs()
            def targetDir = file("target")
            targetDir.mkdirs()
    
            when:
            succeeds("clean")
    
            then:
            buildDir.directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tutorial/defaultTasks/kotlin/build.gradle.kts

    defaultTasks("clean", "run")
    
    tasks.register("clean") {
        doLast {
            println("Default Cleaning!")
        }
    }
    
    tasks.register("run") {
        doLast {
            println("Default Running!")
        }
    }
    
    tasks.register("other") {
        doLast {
            println("I'm not a default task!")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 287 bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/main/java/org/gradle/language/base/internal/tasks/StaleOutputCleaner.java

    import java.io.File;
    import java.io.IOException;
    import java.util.Collection;
    import java.util.Set;
    import java.util.stream.Collectors;
    
    public abstract class StaleOutputCleaner {
    
        /**
         * Clean up the given stale output files under the given directory.
         *
         * Any files and directories are removed that are descendants of {@code directoryToClean}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top