Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,313 for clen (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/daemon/ScalaCompilerDaemonReuseIntegrationTest.groovy

            and:
            assertOneCompilerDaemonIsRunning()
    
            when:
            executer.withWorkerDaemonsExpirationDisabled()
            succeeds("clean", "compileAll")
    
            then:
            executedAndNotSkipped "${compileTaskPath('main')}", "${compileTaskPath('main2')}"
    
            and:
            def firstDaemonId = old(runningCompilerDaemons[0])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. releasenotes/notes/47957.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue: 
      - 47957
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 22 02:23:51 UTC 2023
    - 248 bytes
    - Viewed (0)
  7. src/path/filepath/path.go

    // Rel calls [Clean] on the result.
    func Rel(basepath, targpath string) (string, error) {
    	baseVol := VolumeName(basepath)
    	targVol := VolumeName(targpath)
    	base := Clean(basepath)
    	targ := Clean(targpath)
    	if sameWord(targ, base) {
    		return ".", nil
    	}
    	base = base[len(baseVol):]
    	targ = targ[len(targVol):]
    	if base == "." {
    		base = ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/cpp-application-task-graph.dot

      linkDebug -> assembleDebug [dir=back]
      check -> build [dir=back]
      compileReleaseCpp -> linkRelease -> assembleRelease [dir=back]
      clean
    
      // Ensure ordering
      compileDebugCpp -> compileReleaseCpp -> clean [style=invis]
      {rank=same compileDebugCpp compileReleaseCpp 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)
  9. platforms/documentation/docs/src/docs/userguide/img/cpp-static-library-task-graph.dot

      check -> build [dir=back]
      compileReleaseCpp -> createRelease -> assembleRelease [dir=back]
      clean
    
      // Ensure ordering
      compileDebugCpp -> compileReleaseCpp -> clean [style=invis]
      {rank=same compileDebugCpp compileReleaseCpp clean}
    
      assemble -> empty1 -> empty2 -> check [style=invis]
      {rank=same assemble check empty1 empty2}
      empty1[shape=plain, label=""]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/nativeplatform/NativePreCompiledHeaderPerformanceTest.groovy

        def "clean assemble with precompiled headers" () {
            given:
            runner.testGroup = 'pre-compiled header builds'
            runner.buildSpec {
                displayName("Using PCH")
                invocation {
                    args("-PusePCH")
                    tasksToRun("clean", "assemble")
                }
            }
            runner.baseline {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top