Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setBuildCacheEnabled (0.17 sec)

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

         */
        public boolean isBuildCacheEnabled() {
            return buildCacheEnabled;
        }
    
        /**
         * Enables/disables the build cache.
         *
         * @since 3.5
         */
        public void setBuildCacheEnabled(boolean buildCacheEnabled) {
            this.buildCacheEnabled = buildCacheEnabled;
        }
    
        /**
         * Whether build cache debug logging is enabled.
         *
         * @since 4.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The `StartParameter.taskOutputCacheEnabled` property has been replaced by link:{javadocPath}/org/gradle/StartParameter.html#setBuildCacheEnabled-boolean-[StartParameter.setBuildCacheEnabled(boolean)].
     * The Visual Studio integration now only <<#rel4.6:visual_studio_single_solution,configures a single solution for all components in a build>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top