Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 820 for homes (0.14 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonInitScriptHandlingIntegrationTest.groovy

            def distro2 = createDistribution(2)
    
            and:
            file("buildSrc/build.gradle") << """
                println "buildSrc: runtime gradle home: \${gradle.gradleHomeDir}"
            """
            buildFile << """
                println "main build: runtime gradle home: \${gradle.gradleHomeDir}"
            """
    
            and:
            executer.withTasks("help")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/DefaultToolchainConfigurationTest.groovy

            configuration.javaInstallationsFromEnvironment.isEmpty()
    
            configuration.asdfDataDirectory == new File("/home/user/.asdf")
            configuration.intelliJdkDirectory == new File("/home/user/.jdks")
            configuration.sdkmanCandidatesDirectory == new File("/home/user/.sdkman/candidates")
            configuration.jabbaHomeDirectory == null
        }
    
        def "configuration has reasonable defaults on macOS"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/execution/commandline/CommandLineIntegrationTest.groovy

        def "check default gradle user home"() {
            given:
            buildFile """
                task checkDefaultGradleUserHome {
                    def gradleUserHomeDir = gradle.gradleUserHomeDir
                    doLast {
                        assert gradleUserHomeDir == new File(System.properties['user.home'], ".gradle")
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/signing/gnupg-signatory/kotlin/gradle.properties

    // tag::user-properties[]
    signing.gnupg.executable=gpg
    signing.gnupg.useLegacyGpg=true
    signing.gnupg.homeDir=gnupg-home
    signing.gnupg.optionsFile=gnupg-home/gpg.conf
    signing.gnupg.keyName=24875D73
    signing.gnupg.passphrase=gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 255 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_download_private_vcs.txt

    [!net:github.com] skip
    [!git] skip
    env GOPROXY=direct
    
    # Redirect git to a test-specific .gitconfig.
    # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
    # For older git versions we also set $HOME.
    env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
    env HOME=$WORK${/}home${/}gopher
    exec git config --global --show-origin user.name
    stdout 'Go Gopher'
    
    ! go mod download github.com/golang/nonexist@latest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java/toolchain-config-task/groovy/build.gradle

    
    // tag::java-executable[]
    // tag::java-home[]
    def launcher = javaToolchains.launcherFor {
        languageVersion = JavaLanguageVersion.of(11)
    }
    // end::java-executable[]
    // end::java-home[]
    
    
    // tag::java-executable[]
    
    tasks.named('sampleTask') {
        javaExecutable = launcher.map { it.executablePath }
    }
    // end::java-executable[]
    
    
    // tag::java-home[]
    
    tasks.named('anotherSampleTask') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/get_issue53955.txt

    # Redirect git to a test-specific .gitconfig.
    # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
    # For older git versions we also set $HOME.
    env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
    env HOME=$WORK${/}home${/}gopher
    exec git config --global --show-origin user.name
    stdout 'Go Gopher'
    
    # Inject a local repo in place of a remote one, so that we can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/bugsFromRealComposeApps/constExprLateInitializer.ir.txt

            VAR name:podcast type:kotlin.String [val]
              CALL 'public final fun component1 (): kotlin.String [operator] declared in data.PodcastWithExtraInfo' type=kotlin.String origin=COMPONENT_N(index=1)
                $this: GET_VAR 'val tmp_0: data.PodcastWithExtraInfo [val] declared in home.preview' type=data.PodcastWithExtraInfo origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 18 11:28:11 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/OsXInstallationSupplierTest.groovy

            def jdk7 = new File("/Library/Java/JavaVirtualMachines/jdk1.7.0_17.jdk/Contents/Home")
            def jdk8 = new File("/Library/Java/JavaVirtualMachines/jdk1.8.0.jdk/Contents/Home")
            def jdk9 = new File("/Library/Java/JavaVirtualMachines/jdk-9.jdk/Contents/Home")
            osxJavaHomeCommand.findJavaHomes() >> [jdk7, jdk8, jdk9]
    
            when:
            def directories = supplier.get()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/toolchain-config-task/kotlin/build.gradle.kts

    
    // tag::java-executable[]
    // tag::java-home[]
    val launcher = javaToolchains.launcherFor {
        languageVersion = JavaLanguageVersion.of(11)
    }
    // end::java-executable[]
    // end::java-home[]
    
    // tag::java-executable[]
    
    tasks.sampleTask {
        javaExecutable = launcher.map { it.executablePath }
    }
    // end::java-executable[]
    
    
    // tag::java-home[]
    
    tasks.anotherSampleTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top