Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getIncrementalCompilerFactory (0.42 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/compile/JavaCompile.java

            FileTree sources = stableSources.getAsFileTree();
            return getIncrementalCompilerFactory().makeIncremental(
                compiler,
                sources,
                createRecompilationSpec(inputs, sources)
            );
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

            if (spec.incrementalCompilationEnabled()) {
                IncrementalCompilerFactory factory = getIncrementalCompilerFactory();
                return factory.makeIncremental(
                    cleaningGroovyCompiler,
                    getStableSources().getAsFileTree(),
                    createRecompilationSpecProvider(inputChanges)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top