Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for JDK17 (0.04 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonJvmSettingsIntegrationTest.groovy

            where:
            javaToolOptions << ["-Xms513m", "-Xmx255m", "-Xms128m -Xmx256m"]
        }
    
        @Requires(UnitTestPreconditions.Jdk16OrEarlier) // TraceClassLoading option has been deprecated and is removed in JDK17
        def 'can start the daemon with ClassLoading tracing enabled'() {
            given:
            file('build.gradle') << """
    println 'Started'
    """
            executer.useOnlyRequestedJvmOpts()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. ci/devinfra/docker_windows/Dockerfile

        Remove-Item C:/TEMP/python_install_log.txt
    
    # Install JDK 17
    RUN Add-Type -AssemblyName "System.IO.Compression.FileSystem"; \
        $zulu_url = \"https://cdn.azul.com/zulu/bin/zulu17.32.13-ca-jdk17.0.2-win_x64.zip\"; \
        $zulu_zip = \"c:/temp/jdk_install.zip\"; \
        $zulu_extracted_path = \"c:/temp/\" + [IO.Path]::GetFileNameWithoutExtension($zulu_url); \
        $zulu_root = \"c:/openjdk\"; \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. 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