Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 141 for jre (0.78 sec)

  1. README.md

    Guava's Maven group ID is `com.google.guava`, and its artifact ID is `guava`.
    Guava provides two different "flavors": one for use on a (Java 8+) JRE and one
    for use on Android or by any library that wants to be compatible with Android.
    These flavors are specified in the Maven version field as either `33.2.1-jre` or
    `33.2.1-android`. For more about depending on Guava, see
    [using Guava in your build].
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

            'openJdk9'       | openJdkJvm('9')          | JavaVersion.VERSION_1_9 | 'OpenJDK JRE 9'              | true
            'AdoptOpenJDK11' | adoptOpenJDK('11.0.3')   | JavaVersion.VERSION_11  | 'AdoptOpenJDK 11'            | false
            'AdoptOpenJDK11' | adoptOpenJDK('11.0.3')   | JavaVersion.VERSION_11  | 'AdoptOpenJDK JRE 11'        | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AvailableJavaHomes.java

        }
    
        /**
         * Locates a JRE installation for the current JVM. Prefers a stand-alone JRE installation over one that is part of a JDK install.
         *
         * @return The JRE home directory, or null if not found
         */
        public static File getBestJre() {
            Jvm jvm = Jvm.current();
            File jre = jvm.getStandaloneJre();
            if (jre != null) {
                return jre;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. integration-tests/gradle/build.gradle.kts

        ?: error("version not found in pom")
    
    val expectedReducedRuntimeClasspathAndroidVersion =
      setOf(
        "guava-${guavaVersionJre.replace("jre", "android")}.jar",
        "failureaccess-1.0.2.jar",
        "jsr305-3.0.2.jar",
        "checker-qual-3.43.0.jar",
        "error_prone_annotations-2.28.0.jar",
        "listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar"
      )
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

         | Location:           {description}path{normal}
         | Language Version:   {description}14{normal}
         | Vendor:             {description}AdoptOpenJDK{normal}
         | Architecture:       {description}archName{normal}
         | Is JDK:             {description}false{normal}
         | Detected by:        {description}TestSource{normal}
    
    {identifier} + AdoptOpenJDK JRE 15-ea+2{normal}
         | Location:           {description}path{normal}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ToolchainReportRendererTest.groovy

    import spock.lang.TempDir
    
    class ToolchainReportRendererTest extends Specification {
    
        @TempDir
        File temporaryFolder
    
        InstallationLocation installation = Mock(InstallationLocation)
    
        def "jre is rendered properly"() {
            given:
            def metadata = JvmInstallationMetadata.from(
                new File("path"),
                "1.8.0", "vendorName",
                "runtimeName", "1.8.0-b01",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonIntegrationTest.groovy

    @IntegrationTestTimeout(180)
    class WorkerDaemonIntegrationTest extends AbstractWorkerExecutorIntegrationTest implements JavaToolchainFixture {
        boolean isOracleJDK = TestPrecondition.satisfied(UnitTestPreconditions.JdkOracle) && (Jvm.current().jre != null)
    
        WorkerExecutorFixture.WorkActionClass workActionThatPrintsWorkingDirectory
    
        def setup() {
            workActionThatPrintsWorkingDirectory = fixture.getWorkActionThatCreatesFiles("WorkingDirAction")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  8. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/api/plugins/catalog/internal/wrong.toml

    groovy "2.5.6"
    
    [libraries]
    groovy = { module = "org.codehaus.groovy:groovy", version.ref = "groovy" }
    groovy-json = { module = "org.codehaus.groovy:groovy-json", version.ref = "groovy" }
    
    guava = "com.google.guava:guava:17.0-jre"
    
    [bundles]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 323 bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/environment/JreJavaHomeJavaIntegrationTest.groovy

        @Requires(IntegTestPreconditions.BestJreAvailable)
        def "java compilation works in forking mode = #forkMode when JAVA_HOME is set to JRE"() {
            given:
            def jreJavaHome = AvailableJavaHomes.bestJre
            writeJavaTestSource("src/main/java");
            file('build.gradle') << """
            println "Used JRE: ${jreJavaHome.absolutePath.replace(File.separator, '/')}"
            apply plugin:'java'
            compileJava {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/introductionCoreDependencies/kotlin/build.gradle.kts

    plugins {
        `java-library`
    }
    
    repositories { // <1>
        google() // <2>
        mavenCentral()
    }
    
    dependencies { // <3>
        implementation("com.google.guava:guava:32.1.2-jre") // <4>
        testImplementation("junit:junit:4.13.2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 228 bytes
    - Viewed (0)
Back to top