Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for enableConfigurationCacheForDocsTests (0.14 sec)

  1. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/provider/BuildTimestampValueSource.kt

            @get:Optional
            val enableConfigurationCacheForDocsTests: Property<Boolean>
    
            val runningOnCi: Property<Boolean>
    
            val runningInstallTask: Property<Boolean>
            val runningDocsTestTask: Property<Boolean>
        }
    
        override fun obtain(): String? = parameters.run {
            if (enableConfigurationCacheForDocsTests.getOrElse(false)) {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Jun 05 17:24:26 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  2. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts

                runningInstallTask = provider { isRunningInstallTask() }
                runningDocsTestTask = provider { isRunningDocsTestTask() }
                enableConfigurationCacheForDocsTests = providers.gradleProperty("enableConfigurationCacheForDocsTests").map { it.toBoolean() }
            }
        }
    
    
    fun Project.buildTimestampFromBuildReceipt(): Provider<String> =
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 30 16:56:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  3. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

        const val DEBUG_LAUNCHER = "debugLauncher"
    
        /**
         * Run docs tests with the configuration cache enabled.
         */
        const val ENABLE_CONFIGURATION_CACHE_FOR_DOCS_TESTS = "enableConfigurationCacheForDocsTests"
    
        /**
         * Run docs tests that are knowingly broken when running with the configuration cache enabled. Only applied when #ENABLE_CONFIGURATION_CACHE_FOR_DOCS_TESTS is also set.
         */
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 18 22:01:30 UTC 2025
    - 17.7K bytes
    - Viewed (0)
Back to top