Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 945 for homes (0.04 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/DaemonJvmCompatibilityCrossVersionSpec.groovy

            def jdk17 = AvailableJavaHomes.getJdk17()
    
            file("gradle.properties").writeProperties("org.gradle.java.home": jdk21.javaHome.absolutePath)
            withConnection { connection ->
                connection.newBuild().forTasks('help').run()
            }
    
            file("gradle.properties").writeProperties("org.gradle.java.home": jdk17.javaHome.absolutePath)
            withConnection { connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            where:
            when                                  | tool    | javaHome  | executable | errorFor
            "java home disagrees with executable" | null    | "other"   | "current"  | "executable"
            "tool disagrees with executable"      | "other" | null      | "current"  | "executable"
            "tool disagrees with java home"       | "other" | "current" | null       | "javaHome"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java

                    .append(ls);
            version.append(reduce(properties.getProperty("distributionShortName") + " home: "
                            + System.getProperty("maven.home", "<unknown Maven " + "home>")))
                    .append(ls);
            version.append("Java version: ")
                    .append(System.getProperty("java.version", "<unknown Java version>"))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/composite-builds/plugin-dev/README.adoc

    [listing.terminal]
    ----
    > gradle --include-build ../greeting-plugin greeting
    [composite-build] Configuring build: /home/user/gradle/sample/compositeBuilds/plugin-dev/greeting-plugin
    :greeting-plugin:compileJava
    :greeting-plugin:pluginDescriptors
    :greeting-plugin:processResources
    :greeting-plugin:classes
    :greeting-plugin:jar
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistry.java

            }
        }
    
        private InstallationLocation maybeGetEnclosedInstallation(InstallationLocation location) {
            final File home = location.getLocation();
            final File parentPath = home.getParentFile();
            final boolean isEmbeddedJre = home.getName().equalsIgnoreCase("jre");
            if (isEmbeddedJre && hasJavaExecutable(parentPath)) {
                return location.withLocation(parentPath);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/compile/JavaCompileTest.groovy

            def cause = TestUtil.getRootCause(e) as InvalidUserDataException
            cause.message.contains("The configured Java home does not exist")
            cause.message.contains(invalidJavaHome)
        }
    
        def "fails if custom Java home is not a directory"() {
            def javaCompile = project.tasks.create("compileJava", JavaCompile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/build/JavaEnvironment.java

    import java.io.File;
    import java.util.List;
    
    /**
     * Informs about the Java environment, for example the Java home or the JVM args used. See example in {@link BuildEnvironment}.
     *
     * @since 1.0-milestone-8
     */
    public interface JavaEnvironment {
    
        /**
         * The Java home used for Gradle operations (for example running tasks or acquiring model information).
         *
         * @since 1.0-milestone-8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/security_test.go

    	{"-D", "-foo"},
    	{"-I", "@foo"},
    	{"-I", "-foo"},
    	{"-l", "@foo"},
    	{"-l", "-foo"},
    	{"-framework", "-Caffeine"},
    	{"-framework", "@Home"},
    	{"-Wl,-framework,-Caffeine"},
    	{"-Wl,-framework", "-Wl,@Home"},
    	{"-Wl,-framework", "@Home"},
    	{"-Wl,-framework,Chocolate,@Home"},
    	{"-Wl,--hash-style=foo"},
    	{"-x", "--c"},
    	{"-x", "@obj"},
    	{"-Wl,-rpath,@foo"},
    	{"-Wl,-R,foo,bar"},
    	{"-Wl,-R,@foo"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom.sha1

    b7de43bb310eb1dbfd00a34cec30500fa13cb577  /home/projects/maven/repository-staging/to-ibiblio/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 164 bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginUnixShellsIntegrationTest.groovy

            given:
            extendBuildFileWithAppHomeProperty()
            succeeds('installDist')
    
            when:
            runViaUnixStartScript("bash")
    
            then:
            outputContains("App Home: ${file('build/install/sample').absolutePath}")
        }
    
        @Requires([UnitTestPreconditions.UnixDerivative, PluginTestPreconditions.DashAvailable])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top