Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for stableSources (0.18 sec)

  1. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrTask.java

        public void execute(InputChanges inputChanges) {
            Set<File> grammarFiles = new HashSet<>();
            FileCollection stableSources = getStableSources();
            if (inputChanges.isIncremental()) {
                boolean rebuildRequired = false;
                for (FileChange fileChange : inputChanges.getFileChanges(stableSources)) {
                    if (fileChange.getFileType() == FileType.FILE) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

            FileCollection stableSources = getStableSources();
            return new GroovyRecompilationSpecProvider(
                getDeleter(),
                getServices().get(FileOperations.class),
                stableSources.getAsFileTree(),
                inputChanges.isIncremental(),
                () -> inputChanges.getFileChanges(stableSources).iterator()
            );
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/compile/JavaCompile.java

            performCompilation(spec, compiler);
        }
    
        private Compiler<JavaCompileSpec> makeIncremental(InputChanges inputs, CleaningJavaCompiler<JavaCompileSpec> compiler, FileCollection stableSources) {
            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)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

                normalization == "CLASSPATH"
                attributes == ['DIRECTORY_SENSITIVITY_DEFAULT', 'FINGERPRINTING_STRATEGY_CLASSPATH', 'LINE_ENDING_SENSITIVITY_DEFAULT']
            }
    
            with(aCompileJava.stableSources) {
                hash != null
                normalization == "RELATIVE_PATH"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    .
    .
    .
    Appending input file fingerprints for 'options.sourcepath' to build cache key: 5fd1e7396e8de4cb5c23dc6aadd7787a - RELATIVE_PATH{EMPTY}
    Appending input file fingerprints for 'stableSources' to build cache key: f305ada95aeae858c233f46fc1ec4d01 - RELATIVE_PATH{.../src/main/java=IGNORED / DIR, .../src/main/java/Hello.java='Hello.java' / 9c306ba203d618dfbe1be83354ec211d}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

            outputContains("Appending input value fingerprint for 'options.fork'")
            outputContains("Appending input file fingerprints for 'classpath'")
            def sourcesDebugLogging = "Appending input file fingerprints for 'stableSources' to build cache key: "
            outputContains(sourcesDebugLogging)
            outputContains("Build cache key for task ':compileJava' is ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
Back to top