Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for adoptOpenJDK (0.37 sec)

  1. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/WindowsInstallationSupplier.java

        }
    
        private Stream<String> findOpenJDKs() {
            return Stream.of(
                "SOFTWARE\\AdoptOpenJDK\\JDK",
                "SOFTWARE\\Eclipse Adoptium\\JDK",
                "SOFTWARE\\Eclipse Foundation\\JDK"
            ).flatMap(key -> find(key, "\\hotspot\\MSI", "Path").stream());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 22:14:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    `J9`::
    Matches only virtual machine implementations using the OpenJ9/IBM J9 runtime engine.
    
    For example, to use an https://www.eclipse.org/openj9/[IBM] JVM, distributed via https://adoptopenjdk.net/[AdoptOpenJDK],
    you can specify the filter as shown in the example below.
    
    ====
    include::sample[dir="snippets/java/toolchain-filters/kotlin/",files="build.gradle.kts[tags=toolchain-matching-implementation]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonToolchainInvalidCriteriaIntegrationTest.groovy

            when:
            fails 'help'
    
            then:
            failureDescriptionContains("Option toolchainVendor doesn't accept value 'unexpectedVendor'. Possible values are " +
                "[ADOPTIUM, ADOPTOPENJDK, AMAZON, APPLE, AZUL, BELLSOFT, GRAAL_VM, HEWLETT_PACKARD, IBM, JETBRAINS, MICROSOFT, ORACLE, SAP, TENCENT, UNKNOWN]")
        }
    
        @NotYetImplemented
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. ReadMe.md

    ## Build environment requirements
    
    This repository is using [Gradle toolchains](https://docs.gradle.org/current/userguide/toolchains.html) feature
    to select and auto-provision required JDKs from [AdoptOpenJdk](https://adoptopenjdk.net) project.
    
    Alternatively, it is still possible to only provide required JDKs via environment variables 
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/scaladoc/ScalaDocIntegrationTest.groovy

            when:
            succeeds scaladoc, "-i"
    
            then:
            // Looks like
            // Started Gradle worker daemon (0.399 secs) with fork options DaemonForkOptions{executable=/Library/Java/JavaVirtualMachines/adoptopenjdk-11.jdk/Contents/Home/bin/java, minHeapSize=null, maxHeapSize=234M, jvmArgs=[], keepAliveMode=DAEMON}.
            outputContains("maxHeapSize=234M")
        }
    
        def "scaladoc multi project"() {
            classes.baseline()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/server_test.go

    		})
    	}
    }
    
    func TestStatsContentType(t *testing.T) {
    	appOpenMetrics := `# TYPE jvm info
    # HELP jvm VM version info
    jvm_info{runtime="OpenJDK Runtime Environment",vendor="AdoptOpenJDK",version="16.0.1+9"} 1.0
    # TYPE jmx_config_reload_success counter
    # HELP jmx_config_reload_success Number of times configuration have successfully been reloaded.
    jmx_config_reload_success_total 0.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    Revision:     a27f41e4ae5e8a41ab9b19f8dd6d86d7b384dad4
    
    Kotlin:       1.3.72
    Groovy:       2.5.11
    Ant:          Apache Ant(TM) version 1.10.7 compiled on September 1 2019
    JVM:          14 (AdoptOpenJDK 14+36)
    OS:           Mac OS X 10.15.2 x86_64
    ----
    
    If not, here are some things you might see instead.
    
    === Command not found: gradle
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    === Deprecations
    
    [[adoptopenjdk_download]]
    ==== AdoptOpenJDK toolchain download
    
    Following the move from AdoptOpenJDK to Adoptium, under the Eclipse foundation, it is no longer possible to download an AdoptOpenJDK build from their end point.
    Instead, an Eclipse Temurin or IBM Semeru build is returned.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top