Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 957 for homes (0.1 sec)

  1. src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java

            exp = "example.com/index.html";
            assertEquals(exp, transformer.getSiteOnFile(url, "UTF-8"));
    
            url = "file:/home/user";
            exp = "/home/user";
            assertEquals(exp, transformer.getSiteOnFile(url, "UTF-8"));
    
            url = "file:/c:/home/user";
            exp = "c:\\home\\user";
            assertEquals(exp, transformer.getSiteOnFile(url, "UTF-8"));
    
            url = "file:/c:/";
            exp = "c:\\";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    This effectively couples the configuration of cache cleanup to the Gradle User Home those settings apply to and limits the possibility of different conflicting settings from different projects being applied to the same directory.
    
    [[dir:gradle_user_home:multi_version_cache_cleanup]]
    ==== Multiple versions of Gradle sharing a Gradle User Home
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenInstallationDownloader.groovy

            try {
                def home = mavenInstallDirectory(installsRoot, mavenVersion)
                if (MavenInstallation.valid(home)) {
                    return new MavenInstallation(mavenVersion, home)
                }
                def tempHome = downloadAndExtractMavenBinArchiveWithRetry(mavenVersion)
                home = moveToInstallsRoot(tempHome)
                new MavenInstallation(mavenVersion, home)
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top