Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getConfigurationCache (0.15 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/configuration/BuildFeatures.java

        /**
         * State of the <a href="https://docs.gradle.org/current/userguide/configuration_cache.html">Configuration Cache</a> feature in the build.
         *
         * @since 8.5
         */
        BuildFeature getConfigurationCache();
    
        /**
         * State of the <a href="https://docs.gradle.org/current/userguide/isolated_projects.html">Isolated Projects</a> feature in the build.
         *
         * @since 8.5
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/invocation/GradleLifecycle.java

    import org.gradle.api.IsolatedAction;
    import org.gradle.api.Project;
    import org.gradle.api.configuration.BuildFeatures;
    
    /**
     * Gradle lifecycle callbacks compatible with {@link BuildFeatures#getConfigurationCache() Configuration Cache}
     * and {@link BuildFeatures#getIsolatedProjects() Isolated Projects}.
     *
     * @since 8.8
     */
    @Incubating
    public interface GradleLifecycle {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 21:28:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top