Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,096 for clen (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/swift-application-task-graph.dot

      linkDebug -> assembleDebug [dir=back]
      check -> build [dir=back]
      compileReleaseSwift -> linkRelease -> assembleRelease [dir=back]
      clean
    
      // Ensure ordering
      compileDebugSwift -> compileReleaseSwift -> clean [style=invis]
      {rank=same compileDebugSwift compileReleaseSwift clean}
    
      check -> assemble -> assembleDebug -> assembleRelease [style=invis]
      {rank=same check assemble assembleDebug assembleRelease}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. pkg/test/fakes/gce_metadata_server/Makefile

    # limitations under the License.
    
    .PHONY: build_and_push clean all
    
    MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
    MD_PATH := $(dir $(MKFILE_PATH))
    IMG ?= gcr.io/istio-testing/fake-gce-metadata
    
    # NOTE: TAG should be updated whenever changes are made in this directory
    # This should also be updated in dependent components
    TAG := 1.2
    
    all: build_and_push clean
    
    build_and_push:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/cpp-unit-test-task-graph.dot

      assemble -> build [dir=back]
      tripleDots -> assemble [dir=back]
      clean
    
      compileDebugCpp [style="dashed,filled", fillcolor=grey]
      tripleDots [style="dashed,filled", fillcolor=grey, label="..."]
    
      // Ensure ordering
      compileTestCpp -> compileDebugCpp -> clean [style=invis]
      {rank=same compileDebugCpp compileTestCpp clean}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tutorial/mkdirTrap/kotlin/build.gradle.kts

    val classesDir = file("build/classes")
    classesDir.mkdirs()
    tasks.register<Delete>("clean") {
        delete("build")
    }
    tasks.register("compile") {
        dependsOn("clean")
        val classesDir = classesDir
        doLast {
            if (!classesDir.isDirectory) {
                println("The class directory does not exist. I can not operate")
                // do something
            }
            // do something
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 397 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidBuildPerformanceTest.groovy

        ])
        def "clean #tasks with clean transforms cache"() {
            given:
            def testProject = androidTestProject
            boolean isLargeProject = androidTestProject == LARGE_ANDROID_BUILD
            if (isLargeProject) {
                runner.warmUpRuns = 2
                runner.runs = 8
            }
    
            testProject.configure(runner)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top