Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,128 for homes (0.06 sec)

  1. platforms/documentation/docs/src/snippets/providers/services/tests/services.out

    Root Directory: /home/user/gradle/samples
    Settings Directory: /home/user/gradle/samples
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 114 bytes
    - Viewed (0)
  2. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/scopes/GradleModuleServices.java

        /**
         * Called to register any services scoped to the Gradle user home directory. These services are reused across builds in the same process while the Gradle user home directory remains unchanged. The services are closed when the Gradle user home directory changes.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/credentials-handling/publishing-credentials/kotlin/build.gradle.kts

    plugins {
        `java-library`
        `maven-publish`
    
        // this plugin comes from an included build - it fakes a maven repository to allow executing the authentication flow
        id("maven-repository-stub")
    }
    
    version = "1.0.2"
    group = "com.example"
    
    // tag::publication[]
    publishing {
        publications {
            create<MavenPublication>("library") {
                from(components.getByName("java"))
            }
        }
    // tag::repositories[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 673 bytes
    - Viewed (0)
  4. tests/test_tutorial/test_path_params/test_tutorial004.py

    client = TestClient(app)
    
    
    def test_file_path():
        response = client.get("/files/home/johndoe/myfile.txt")
        print(response.content)
        assert response.status_code == 200, response.text
        assert response.json() == {"file_path": "home/johndoe/myfile.txt"}
    
    
    def test_root_file_path():
        response = client.get("/files//home/johndoe/myfile.txt")
        print(response.content)
        assert response.status_code == 200, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top