Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 852 for home_1 (0.08 sec)

  1. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

            }
    
            if (gradleUserHomeDir != context.gradleUserHomeDir) {
                // When using an isolated user home, first initialise the Gradle instance using the default user home dir
                // This sets some static state that uses files from the user home dir, such as DLLs
                connector.useGradleUserHomeDir(new File(context.gradleUserHomeDir.path))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. src/go/doc/comment/testdata/link3.txt

    -- input --
    Doc text.
    
    [Go home page]: https://go.dev
    -- gofmt --
    Doc text.
    
    [Go home page]: https://go.dev
    -- text --
    Doc text.
    -- markdown --
    Doc text.
    -- html --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:43 UTC 2022
    - 178 bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

        /**
         * Sets the java home dir. Setting to null requests that the executer use the real default java home dir rather than the default used for testing.
         */
        GradleExecuter withJavaHome(String userHomeDir);
    
        /**
         * Sets the java home dir. Setting to null requests that the executer use the real default java home dir rather than the default used for testing.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/PropertiesToDaemonParametersConverterTest.groovy

        def "shows nice message for dummy java home"() {
            when:
            converter.convert([(DaemonBuildOptions.JavaHomeOption.GRADLE_PROPERTY): "/invalid/path"], params)
    
            then:
            def ex = thrown(IllegalArgumentException)
            ex.message.contains 'org.gradle.java.home'
            ex.message.contains '/invalid/path'
        }
    
        def "shows nice message for invalid java home"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/java/InstalledJdk.java

         * The version of the Java installation.
         *
         * @return The Java version. Never returns {@code null}.
         */
        JavaVersion getJavaVersion();
    
        /**
         * The home directory of the Java installation.
         *
         * @return The home directory. Never returns {@code null}.
         * */
        File getJavaHome();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java-library/module-disabled/tests/buildJavaModule.out

    > Task :compileJava FAILED
    1 actionable task: 1 executed
    /home/user/gradle/samples/src/main/java/module-info.java:2: error: module not found: com.google.gson
        requires com.google.gson;          // real module
                           ^
    /home/user/gradle/samples/src/main/java/module-info.java:3: error: module not found: org.apache.commons.lang3
        requires org.apache.commons.lang3; // automatic module
                                   ^
    2 errors
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 09:29:37 UTC 2024
    - 735 bytes
    - Viewed (0)
  7. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioSystemProperties.kt

                val androidStudioPath = studioInstallation.studioInstallLocation.asFile.get().absolutePath
                return "-Dstudio.home=$androidStudioPath"
            } else if (androidStudioHome.isPresent) {
                return "-Dstudio.home=${androidStudioHome.get()}"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 09:51:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m9/GradlePropertiesToolingApiCrossVersionSpec.groovy

        }
    
        def "tooling api honours java home specified in gradle.properties"() {
            def jdk = AvailableJavaHomes.getAvailableJdk { targetDist.isToolingApiTargetJvmSupported(it.languageVersion) }
            Assume.assumeNotNull(jdk)
            String javaHomePath = TextUtil.escapeString(jdk.javaHome.canonicalPath)
    
            file('build.gradle') << "assert new File(System.getProperty('java.home')).canonicalPath.startsWith('$javaHomePath')"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/ClasspathUtilTest.groovy

        private static final URL JAR_URL = new URL('jar:file:home/duke/duke.jar!/')
        private static final URL HTTP_URL = new URL('http://www.foo.com/bar/')
        private static final File FILE = new File('/home/duke/duke.jar')
        private static final URL FILE_URL = FILE.toURI().toURL()
        def factory = new DefaultClassLoaderFactory()
    
        def "filters non-file URLs from classpath"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/providers/implicitTaskInputFileDependency/tests/implicitTaskInputFileDependencyKotlin.out

    > Task :producer
    Wrote 'Hello, World!' to /home/user/gradle/samples/kotlin/output/file.txt
    
    > Task :consumer
    Read 'Hello, World!' from /home/user/gradle/samples/kotlin/output/file.txt
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 240 bytes
    - Viewed (0)
Back to top