Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for uninstall (0.8 sec)

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

    
    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>
        get() = gradleProperty(RERUN_ALL_TESTS).map { true }.orElse(false)
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. gradle/wrapper/gradle-wrapper.jar

    GradleWrapperMain { public static void main(String[]); } org/gradle/wrapper/Install$1.class package org.gradle.wrapper; public final synchronized class Install$1 implements java.util.concurrent.Callable { public void Install$1(java.io.File, java.io.File, java.net.URI, Install, WrapperConfiguration); public final Object call(); } org/gradle/wrapper/Install$InstallCheck.class package org.gradle.wrapper; public final synchronized class Install$InstallCheck { public final java.io.File gradleHome; public final...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 08:44:14 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

    1. Run tests.
    - Run `./gradlew :<subproject>:quickTest` where `<subproject>` is the name of the subproject you've changed. 
    - 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`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

    }
    
    tasks.register("installBuildBuilder", GradleBuild) {
        dir = buildBuilder.outputDirectory
        tasks = ['install']
        dependsOn buildBuilder
    }
    
    tasks.withType(BuildBuilderGenerator).configureEach {
        buildBuilderInstall = new File(tasks.buildBuilder.outputDirectory, "build/install/build-builder")
        dependsOn installBuildBuilder
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top