Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for JDK17 (0.02 sec)

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

                .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();
                } catch (Exception e) {
    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. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/ProblemProgressEventCrossVersionTest.groovy

            """
    
            given:
            def listener = new ProblemProgressListener()
    
            when:
            withConnection {
                it.model(CustomModel)
                    .setJavaHome(jdk17.javaHome)
                    .addProgressListener(listener)
                    .get()
            }
    
            then:
            thrown(BuildException)
            listener.problems.size() == 0
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 07:55:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. testing/public-api-tests/src/integTest/groovy/org/gradle/api/PublicApiIntegrationTest.groovy

        // Need to pin this to a specific JVM version to avoid Kotlin complaining about using a different version to Java
        def jvm = AvailableJavaHomes.jdk17
    
        def apiJarRepoLocation = new File(System.getProperty('integTest.apiJarRepoLocation'))
        def apiJarVersion = System.getProperty("integTest.distZipVersion")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 08:43:08 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    Java HotSpot(TM) 64-Bit Server VM (build 25.151-b12, mixed mode)
    ----
    
    Gradle uses the JDK it finds in your path, the JDK used by your IDE, or the JDK specified by your project.
    In this example, the $PATH points to JDK17:
    
    ----
    ❯ echo $PATH
    /opt/homebrew/opt/openjdk@17/bin
    ----
    
    You can also set the `JAVA_HOME` environment variable to point to a specific JDK installation directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_4x.md

        This applies to `Authorization`, `Cookie`, `Proxy-Authorization`, and `Set-Cookie` headers.
     *  Fix: Don't crash with an `InaccessibleObjectException` when running on JDK17+ with strong
        encapsulation enabled.
     *  Fix: Strictly verify hostnames used with OkHttp's `HostnameVerifier`. Programs that make direct
        manual calls to `HostnameVerifier` could be defeated if the hostnames they pass in are not
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top