Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CompileTransaction (0.14 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

            }
        }
    
        @Override
        public CompileTransaction initCompilationSpecAndTransaction(JavaCompileSpec spec, RecompilationSpec recompilationSpec) {
            if (!recompilationSpec.isBuildNeeded()) {
                spec.setSourceFiles(ImmutableSet.of());
                spec.setClassesToProcess(Collections.emptySet());
                return new CompileTransaction(spec, fileOperations.patternSet(), ImmutableMap.of(), fileOperations, deleter);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

            given:
            source("class A {}", "class B {}")
            def compileTransactionDir = file("build/tmp/${language.compileTaskName}/compileTransaction")
    
            when: "First compilation is always full compilation"
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses("A", "B")
            !compileTransactionDir.exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top