Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for CurrentCompilation (0.28 sec)

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

    import java.io.File;
    import java.util.Collection;
    
    public class CurrentCompilation {
        private final JavaCompileSpec spec;
        private final CurrentCompilationAccess classpathSnapshotter;
    
        public CurrentCompilation(JavaCompileSpec spec, CurrentCompilationAccess classpathSnapshotter) {
            this.spec = spec;
            this.classpathSnapshotter = classpathSnapshotter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/JavaRecompilationSpecProvider.java

            // Nothing to do for Java compiler here
        }
    
        @Override
        protected boolean isIncrementalOnResourceChanges(CurrentCompilation currentCompilation) {
            return currentCompilation.getAnnotationProcessorPath().isEmpty();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/SelectiveCompiler.java

                return rebuildAllCompiler.execute(spec);
            }
    
            Timer clock = Time.startTimer();
            CurrentCompilation currentCompilation = new CurrentCompilation(spec, classpathSnapshotter);
    
            PreviousCompilationData previousCompilationData = previousCompilationAccess.readPreviousCompilationData(previousCompilationDataFile);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/RecompilationSpecProvider.java

    /**
     * In a typical incremental recompilation, there're three steps:
     * First, examine the incremental change files to get the classes to be recompiled: {@link #provideRecompilationSpec(JavaCompileSpec, CurrentCompilation, PreviousCompilation)}
     * Second, initialize the recompilation (e.g. delete stale class files and narrow down the source files to be recompiled): {@link #initCompilationSpecAndTransaction(JavaCompileSpec, RecompilationSpec)}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

            SourceFileChangeProcessor sourceFileChangeProcessor,
            SourceFileClassNameConverter sourceFileClassNameConverter
        );
    
        protected abstract boolean isIncrementalOnResourceChanges(CurrentCompilation currentCompilation);
    
        /**
         * This method collects all source paths that will be passed to a compiler. While collecting paths it additionally also
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/GroovyRecompilationSpecProvider.java

        }
    
        @Override
        protected Set<String> getFileExtensions() {
            return SUPPORTED_FILE_EXTENSIONS;
        }
    
        @Override
        protected boolean isIncrementalOnResourceChanges(CurrentCompilation currentCompilation) {
            return false;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.internal.tasks.compile.incremental.recomp.CurrentCompilation> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (CurrentCompilation.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top