Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for gradle_installPath (0.27 sec)

  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>
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Oct 09 08:19:42 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/Gradleception.kt

            model,
            this,
            ":distributions-full:install",
            extraParameters =
            (
                listOf(
                    stage.getBuildScanCustomValueParam(),
                    "-Pgradle_installPath=dogfood-first-for-hash",
                    "-PignoreIncomingBuildReceipt=true",
                    "-PbuildTimestamp=$dogfoodTimestamp1",
                    buildScanTagForType,
                ) + extraSysProp
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Oct 08 12:58:46 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

    - For example: `./gradlew :launcher:quickTest`.
    2. Install Gradle locally and try out a change in behavior manually. 
    - Install: `./gradlew install -Pgradle_installPath=/any/path`
    - Use: `/any/path/bin/gradle taskName`.
    
    It's also a good idea to run `./gradlew sanityCheck` before submitting your change because this will help catch code style issues.
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Nov 05 15:15:33 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top