Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 530 for clen (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoCachingIntegrationTest.groovy

            def snapshot = reportFile.snapshot()
            then:
            executedAndNotSkipped ":test", ":jacocoTestReport", ":jacocoTestCoverageVerification"
            reportFile.assertIsFile()
    
            when:
            succeeds "clean"
            then:
            reportFile.assertDoesNotExist()
    
            when:
            withBuildCache().run "jacocoTestReport", "jacocoTestCoverageVerification"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. 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)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DispatchingBuildCacheIntegrationTest.groovy

            withBuildCache().run 'clean', cacheableTask
    
            then:
            executedAndNotSkipped(cacheableTask)
            cacheOperations.assertStoredToLocalCacheForTask(cacheableTask)
            cacheOperations.assertNotStoredToRemoteCacheForTask(cacheableTask)
    
            when:
            pullOnly()
            cacheOriginInputFile.text = 'remote'
            withBuildCache().run 'clean', cacheableTask
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 15:17:04 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/outputorigin/BuildCacheOutputOriginIntegrationTest.groovy

            def firstBuildId = buildInvocationId
            def firstBuildCacheKey = buildCacheKey(":write")
            originBuildInvocationId(":write") == null
    
            when:
            succeeds "clean", "write"
    
            then:
            skipped ":write"
            def secondBuildId = buildInvocationId
            firstBuildId != secondBuildId
            with(origin(":write")) {
                buildInvocationId == firstBuildId
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 14:10:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top