Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RecompilationNotNecessary (0.39 sec)

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

    import org.gradle.api.tasks.WorkResult;
    
    public class RecompilationNotNecessary implements WorkResult, IncrementalCompilationResult {
    
        private final PreviousCompilationData previousCompilationData;
        private final RecompilationSpec recompilationSpec;
    
        public RecompilationNotNecessary(PreviousCompilationData previousCompilationData, RecompilationSpec recompilationSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/SelectiveCompiler.java

                    LOG.info("None of the classes needs to be compiled! Analysis took {}. ", clock.getElapsed());
                    return new RecompilationNotNecessary(previousCompilationData, recompilationSpec);
                }
                try {
                    WorkResult result = cleaningCompiler.getCompiler().execute(spec);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top