Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for incremental_build (0.36 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/CommonPluginValidationTrait.groovy

            new AbstractPluginValidationIntegrationSpec.DocumentedProblem(message, ERROR, id, section)
        }
    
        static <T extends ValidationMessageDisplayConfiguration> AbstractPluginValidationIntegrationSpec.DocumentedProblem warning(T message, String id = "incremental_build", String section = "") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/writing-tasks/tasks-with-dependency-resolution-result-inputs/README.adoc

    ----
    =====
    ====
    
    For more information, see link:{userManualPath}/more_about_tasks.html[Authoring Tasks reference chapter].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/UnreadableCopyDestinationFixture.groovy

            "Declare the task as untracked by using Task.doNotTrackState(). " +
            new DocumentationRegistry().getDocumentationRecommendationFor("information", "incremental_build", "sec:disable-state-tracking")
    
        void expectUnreadableCopyDestinationFailure() {
            failure.assertHasDocumentedCause(COPY_UNREADABLE_DESTINATION_FAILURE)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    CI already built this commit -- why should you re-do that work?
    
    === Switching branches
    
    During local development, it is not uncommon to switch branches several times per day.
    This defeats <<incremental_build.adoc#incremental_build,incremental build>> (i.e., `UP-TO-DATE` checks), but this issue is mitigated via use of the local build cache.
    You might run a build on Branch A, which will populate the local cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/CachingDisabledReasonCategory.java

         *     <li>a Java lambda was used as an input,</li>
         *     <li>an input is not tracked.</li>
         * </ul>
         *
         * @see <a href="https://docs.gradle.org/current/userguide/incremental_build.html#sec:how_does_it_work">How fingerprinting works</a>
         */
        NON_CACHEABLE_INPUTS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/ValidatePlugins.java

     * a {@code validatePlugins} task, though if you cannot use this plugin then you need to register the task yourself.
     *
     * See the user guide for more information on
     * <a href="https://docs.gradle.org/current/userguide/incremental_build.html" target="_top">incremental build</a> and
     * <a href="https://docs.gradle.org/current/userguide/build_cache.html#sec:task_output_caching" target="_top">caching task outputs</a>.
     *
     * @since 6.0
     */
    @CacheableTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/transform/TransformParameters.java

     *     Normalization annotations such as {@link org.gradle.api.tasks.PathSensitive} or {@link org.gradle.api.tasks.Classpath} can be used as well.
     *     See the <a href="https://docs.gradle.org/current/userguide/incremental_build.html#table:incremental_build_annotations">table of incremental build property type annotations</a> for all annotations which can be used.
     *     Example:
     * </p>
     * <pre class='autoTested'>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 19 15:28:07 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/build_lifecycle.adoc

    image::task-dag-examples.png[]
    
    [[build_lifecycle_events]]
    Both plugins and build scripts contribute to the task graph via the <<tutorial_using_tasks.adoc#sec:task_dependencies,task dependency mechanism>> and <<incremental_build.adoc#sec:task_inputs_outputs,annotated inputs/outputs>>.
    
    [[sec:build_phases]]
    == Build Phases
    
    A Gradle build has three distinct phases.
    
    image::author-gradle-1.png[]
    
    Gradle runs these phases in order:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 11:17:49 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyErrorIntegrationTest.groovy

                    "Declare the task as untracked by using Task.doNotTrackState(). " +
                    new DocumentationRegistry().getDocumentationRecommendationFor("information", "incremental_build", "sec:disable-state-tracking")
                )
                failure.assertHasCause("java.nio.file.AccessDeniedException: ${dir}")
            } finally {
                dir.permissions = oldPermissions
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:48:19 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/additional/continuous_builds.adoc

    [[sec:continuous_build_untracked]]
    === Inputs of untracked tasks
    Changes to the inputs of <<incremental_build.adoc#sec:disable-state-tracking,untracked tasks>> or tasks that have no outputs may not trigger a build.
    
    [[sec:continuous_build_project_dir]]
    === Changes to files outside of project directories
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top