Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for stableSources (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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