Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 174 for java_home (0.29 sec)

  1. testing/smoke-ide-test/src/smokeIdeTest/groovy/org/gradle/ide/sync/AbstractIdeaSyncTest.groovy

                .directory(testDirectory)
                .redirectError(ProcessBuilder.Redirect.INHERIT)
                .redirectOutput(ProcessBuilder.Redirect.INHERIT)
    
            syncProcessBuilder.environment().put("JAVA_HOME", AvailableJavaHomes.jdk17.javaHome.absolutePath)
    
            def syncProcess = syncProcessBuilder.start()
            Runtime.getRuntime().addShutdownHook {
                try {
                    syncProcess.destroy();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:28:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. apache-maven/src/assembly/maven/bin/mvnDebug.cmd

    @REM under the License.
    
    @REM -----------------------------------------------------------------------------
    @REM Apache Maven Debug Script
    @REM
    @REM Environment Variable Prerequisites
    @REM
    @REM   JAVA_HOME           (Optional) Points to a Java installation.
    @REM   MAVEN_BATCH_ECHO    (Optional) Set to 'on' to enable the echoing of the batch commands.
    @REM   MAVEN_BATCH_PAUSE   (Optional) set to 'on' to wait for a key stroke before ending.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Jul 25 20:33:33 UTC 2021
    - 2K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/ResolverEnvironment.kt

    
    /**
     * Path of the Gradle user home as configured in IntelliJ.
     */
    internal
    val Environment.gradleUserHome: File?
        get() = path("gradleUserHome")
    
    
    /**
     * JAVA_HOME to use for Gradle as configured in IntelliJ.
     */
    internal
    val Environment.gradleJavaHome: File?
        get() = path("gradleJavaHome")
    
    
    /**
     * Gradle options as configured in IntelliJ.
     */
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/StandardSystemProperty.java

      /** Java Runtime Environment vendor. */
      JAVA_VENDOR("java.vendor"),
    
      /** Java vendor URL. */
      JAVA_VENDOR_URL("java.vendor.url"),
    
      /** Java installation directory. */
      JAVA_HOME("java.home"),
    
      /** Java Virtual Machine specification version. */
      JAVA_VM_SPECIFICATION_VERSION("java.vm.specification.version"),
    
      /** Java Virtual Machine specification vendor. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/StandardSystemProperty.java

      /** Java Runtime Environment vendor. */
      JAVA_VENDOR("java.vendor"),
    
      /** Java vendor URL. */
      JAVA_VENDOR_URL("java.vendor.url"),
    
      /** Java installation directory. */
      JAVA_HOME("java.home"),
    
      /** Java Virtual Machine specification version. */
      JAVA_VM_SPECIFICATION_VERSION("java.vm.specification.version"),
    
      /** Java Virtual Machine specification vendor. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. docs/sts/wso2.md

    ## Get started
    
    ### 1. Prerequisites
    
    - JAVA 1.8 and above installed already and JAVA_HOME points to JAVA 1.8 installation.
    - Download WSO2 follow their [installation guide](https://docs.wso2.com/display/IS540/Installation+Guide).
    
    ### 2. Configure WSO2
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/teamcity.adoc

    This post uses TeamCity bundled with Tomcat servlet container and covers the evaluation setup of a TeamCity server and a default build agent running on the same machine.
    
    [start=1]
    . Make sure you have JRE or JDK installed and the JAVA_HOME environment variable is pointing to the Java installation directory. Oracle Java 1.8 JDK is required.
    . Download TeamCity .tar.gz distribution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/CachingJvmMetadataDetectorTest.groovy

            )
            def detector = new CachingJvmMetadataDetector(metaDataDetector)
            File javaHome1 = Jvm.current().javaHome
            def link = new TestFile(Files.createTempDirectory(temporaryFolder.toPath(), null).toFile(), "jdklink")
            link.createLink(javaHome1)
    
            when:
            def metadata1 = detector.getMetadata(testLocation(link.absolutePath))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m9/M9JavaConfigurabilityCrossVersionSpec.groovy

            when:
            def env = withConnection {
                it.newBuild().setJavaHome(javaHome).run() //the assert
                it.model(BuildEnvironment.class)
                        .setJavaHome(javaHome)
                        .get()
            }
    
            then:
            env != null
            env.java.javaHome == javaHome
            env.java.javaHome != currentJavaHome
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/SpecificInstallationToolchainSpec.java

                Key key = (Key) o;
                return Objects.equals(javaHome, key.javaHome);
            }
    
            @Override
            public int hashCode() {
                return Objects.hash(javaHome);
            }
        }
    
        private final File javaHome;
    
        @Inject
        public SpecificInstallationToolchainSpec(File javaHome) {
            super();
            this.javaHome = javaHome;
    
            // disallow changing property values
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top