Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isRequiresBuildModel (0.27 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildModelParameters.java

         *
         * <p>When the build model is not required, certain state can be discarded or not created.
         */
        public boolean isRequiresBuildModel() {
            return requiresBuildModel;
        }
    
        public boolean isConfigureOnDemand() {
            return configureOnDemand;
        }
    
        public boolean isConfigurationCache() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheStartParameter.kt

         * Doing load-after-store would have discarded the project state and isolated the task state,
         * providing the builders with an incomplete view of the build.
         */
        val loadAfterStore: Boolean = !modelParameters.isRequiresBuildModel && options.getInternalFlag("org.gradle.configuration-cache.internal.load-after-store", true)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top