Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for doCleanIncrementalCompile (0.56 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalNativeCompiler.java

            WorkResult workResult;
            if (spec.isIncrementalCompile()) {
                workResult = doIncrementalCompile(incrementalCompilation, spec);
            } else {
                workResult = doCleanIncrementalCompile(spec);
            }
    
            compileStateCache.set(incrementalCompilation.getFinalState());
    
            return workResult;
        }
    
        private List<File> getSourceFilesForPch(T spec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/IncrementalNativeCompilerTest.groovy

            and:
            spec.incrementalCompile >> false
            spec.getSourceFiles() >> sources
            spec.getPreCompiledHeader() >> null
    
            and:
            def result = compiler.doCleanIncrementalCompile(spec)
    
            then:
            1 * spec.getObjectFileDir() >> outputFile.parentFile
            1 * outputs.previousOutputFiles >> Sets.newHashSet(outputFile)
            1 * spec.setSourceFilesForPch(_)
            0 * spec._
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top