Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for gradle_installPath (0.28 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

        get() = gradleProperty(INCLUDE_PERFORMANCE_TEST_SCENARIOS).getOrElse("false") == "true"
    
    
    val Project.gradleInstallPath: Provider<String>
        get() = gradleProperty(GRADLE_INSTALL_PATH).orElse(
            provider<String> {
                throw RuntimeException("You can't install without setting the $GRADLE_INSTALL_PATH property.")
            }
        )
    
    
    val Project.rerunAllTests: Provider<Boolean>
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Dec 18 22:01:30 GMT 2025
    - 17.7K bytes
    - Click Count (0)
  2. .teamcity/src/main/kotlin/configurations/Gradleception.kt

                ":distributions-full:install",
                extraParameters =
                    (
                        listOf(
                            stage.getBuildScanCustomValueParam(),
                            "-Pgradle_installPath=dogfood-first-for-hash",
                            "-PignoreIncomingBuildReceipt=true",
                            "-PbuildTimestamp=$dogfoodTimestamp1",
                            buildScanTagForType,
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Oct 09 05:26:45 GMT 2025
    - 7.3K bytes
    - Click Count (0)
Back to Top