Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 538 for isIncremental (0.44 sec)

  1. 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)
  2. 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)
  3. 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)
  4. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultTaskSkippedResult.java

        private final String skipMessage;
    
        public DefaultTaskSkippedResult(long startTime, long endTime, String skipMessage, boolean incremental) {
            super(startTime, endTime, "skipped", incremental, null);
            this.skipMessage = skipMessage;
        }
    
        @Override
        public String getSkipMessage() {
            return skipMessage;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 29 00:04:07 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftDepsHandler.java

    import java.util.Map;
    
    
    /**
     * The peculiars of the swiftc incremental compiler can be extracted from the Driver's source code:
     * https://github.com/apple/swift/tree/d139ab29681d679337245f399dd8c76d620aa1aa/lib/Driver
     * And docs:
     * https://github.com/apple/swift/blob/d139ab29681d679337245f399dd8c76d620aa1aa/docs/Driver.md
     *
     * The incremental compiler uses the timestamp of source files and the timestamp in module.swiftdeps to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/InputFileChanges.java

                return true;
            }
    
            @Override
            public boolean accept(String propertyName, ChangeVisitor visitor) {
                throw new InvalidUserDataException("Cannot query incremental changes for property " + propertyName + ": No incremental properties declared.");
            }
        };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top