Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 520 for isIncremental (0.19 sec)

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

        public GroovyRecompilationSpecProvider(
            Deleter deleter,
            FileOperations fileOperations,
            FileTree sources,
            boolean incremental,
            Iterable<FileChange> sourceChanges
        ) {
            super(deleter, fileOperations, sources, sourceChanges, incremental);
        }
    
        /**
         * For all classes with Java source that we will be recompiled due to some change, we need to recompile all subclasses.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/changedetection/changes/DefaultTaskExecutionModeResolverTest.groovy

            0 * _
        }
    
        def "fails when no outputs with incremental task action"() {
            when:
            repository.getExecutionMode(task, taskProperties)
    
            then:
            def ex = thrown InvalidUserCodeException
            ex.message == "You must declare outputs or use `TaskOutputs.upToDateWhen()` when using the incremental task API"
    
            1 * taskProperties.hasDeclaredOutputs() >> false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-incremental/groovy/build.gradle

        @Override
        void transform(TransformOutputs outputs) {
            def outputDir = outputs.dir("${input.get().asFile.name}.loc")
            println("Running transform on ${input.get().asFile.name}, incremental: ${inputChanges.incremental}")
            inputChanges.getFileChanges(input).forEach { change ->          // <2>
                def changedFile = change.file
                if (change.fileType != FileType.FILE) {
                    return
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/classpath/ClassSetAnalyzer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.compile.incremental.classpath;
    
    import org.gradle.api.internal.tasks.compile.incremental.deps.ClassSetAnalysisData;
    
    import java.io.File;
    
    public interface ClassSetAnalyzer {
        ClassSetAnalysisData analyzeClasspathEntry(File classpathEntry);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 966 bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/AnnotationProcessorDeclaration.java

    import org.gradle.api.internal.tasks.compile.incremental.processing.IncrementalAnnotationProcessorType;
    
    import java.io.Serializable;
    
    /**
     * Information about an annotation processor, based on its static metadata
     * in <code>META-INF/services/javax.annotation.processing.Processor</code> and
     * <code>META-INF/gradle/incremental.annotation.processors</code>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    4. You applied a plugin to your app in <<part4_gradle_plugins#part4_begin,part 4>>.
    5. You learned about incremental builds in <<part5_gradle_inc_builds#part5_begin,part 5>>.
    
    == Step 1. Understanding Caching
    Incremental Builds are a great optimization that helps avoid work that is already done.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalTaskWithNormalizedInputsIntegrationTest.groovy

        private static final String INCREMENTAL_TASK_NAME = "incrementalTask"
    
        @Issue("https://github.com/gradle/gradle/issues/9320")
        def "incremental task with NAME_ONLY input (matching file names and content) detects changed input"() {
            def inputs = folderNames().collect { file("${it}/input.txt").createFile() }
            def modifiedInput = inputs[1]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 30 07:31:26 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tasks/incrementalTask/kotlin/settings.gradle.kts

    rootProject.name = "incremental-task"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/kotlin/settings.gradle.kts

    rootProject.name = "incremental-build-advanced"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 48 bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/compilerapi/constants/ConstantToDependentsMapping.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.compile.incremental.compilerapi.constants;
    
    import org.gradle.api.internal.tasks.compile.incremental.compilerapi.deps.DependentsSet;
    
    import java.util.Collections;
    import java.util.Map;
    
    public class ConstantToDependentsMapping {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top