Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cachedBuild (0.13 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaIncrementalCompilationWithCachingIntegrationTest.groovy

            source("class A {}", "class B {}")
            withBuildCache().run language.compileTaskName
            def cachedBuild = outputs.snapshot {
                withBuildCache().run "clean", language.compileTaskName
            }
            cachedBuild.groupedOutput.task(":compileJava").outcome == "FROM_CACHE"
    
            when:
            source("class A { /* ${UUID.randomUUID()} */ }")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	// Load cached cgo header, but only if we're skipping the main build (cachedBuild==true).
    	if cachedBuild && need&needCgoHdr != 0 {
    		if err := b.loadCachedCgoHdr(a); err == nil {
    			need &^= needCgoHdr
    		}
    	}
    
    	// Load cached coverage meta-data file fragment, but only if we're
    	// skipping the main build (cachedBuild==true).
    	if cachedBuild && need&needCovMetaFile != 0 {
    		bact := a.Actor.(*buildActor)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top