Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 605 for jdk8 (0.04 sec)

  1. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/EnvironmentVariableListInstallationSupplierTest.groovy

        final buildOptions = Mock(ToolchainConfiguration)
        final jdk8 = tmpDir.createDir("jdk8")
        final jdk9 = tmpDir.createDir("jdk9")
        final Map<String, String> environment = [JDK8: jdk8.absolutePath, JDK9: jdk9.absolutePath]
    
        @Subject
        def supplier =  new EnvironmentVariableListInstallationSupplier(buildOptions, new IdentityFileResolver(), environment)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:33:15 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/OsXInstallationSupplierTest.groovy

            def jdk7 = new File("/Library/Java/JavaVirtualMachines/jdk1.7.0_17.jdk/Contents/Home")
            def jdk8 = new File("/Library/Java/JavaVirtualMachines/jdk1.8.0.jdk/Contents/Home")
            def jdk9 = new File("/Library/Java/JavaVirtualMachines/jdk-9.jdk/Contents/Home")
            osxJavaHomeCommand.findJavaHomes() >> [jdk7, jdk8, jdk9]
    
            when:
            def directories = supplier.get()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistryTest.groovy

            def jdk8 = createJdkInstallation("8")
            when:
            def registry = createRegistry([jdk8, jdk8])
            def installations = registry.listInstallations()
    
            then:
            installations.size() == 1
            installations[0].location == jdk8
            installations[0].source == "testSource"
        }
    
        def "duplicates are detected using canonical form"() {
            given:
            def jdk8 = createJdkInstallation("8")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/UpToDateScalaCompileIntegrationTest.groovy

                }
            """
    
            when:
            withInstallations(jdk8, jdk11).run 'compileScala'
    
            then:
            executedAndNotSkipped ':compileScala'
    
            when:
            withInstallations(jdk8, jdk11).run 'compileScala'
            then:
            skipped ':compileScala'
    
            when:
            withInstallations(jdk8, jdk11).run 'compileScala', '-Pchanged', '--info'
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. android/pom.xml

          </properties>
        </profile>
        <profile>
          <id>javac9-for-jdk8</id>
          <activation>
            <jdk>1.8</jdk>
          </activation>
          <build>
            <plugins>
              <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                  <!-- Under JDK8, we continue to use errorprone's javac9 (even
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. pom.xml

          </properties>
        </profile>
        <profile>
          <id>javac9-for-jdk8</id>
          <activation>
            <jdk>1.8</jdk>
          </activation>
          <build>
            <plugins>
              <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                  <!-- Under JDK8, we continue to use errorprone's javac9 (even
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/scaladoc/ScalaDocIntegrationTest.groovy

            then:
            skipped scaladoc
    
            when:
            withInstallations(jdk8, jdk11).run scaladoc, '-Pchanged', '--info'
            then:
            executedAndNotSkipped scaladoc
            outputContains("Value of input property 'javaLauncher.metadata.taskInputs.languageVersion' has changed for task '${scaladoc}'")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantFilesMetadataRulesIntegrationTest.groovy

                        artifact(classifier: 'jdk8')
                        module('org.test:moduleB:1.0')
                    }
                }
            }
        }
    
        def "missing variant can be added without base"() {
            given:
            repository {
                'org.test:moduleA:1.0' {
                    withModule { undeclaredArtifact(classifier: 'jdk8') }
                    dependsOn 'org.test:moduleB:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.1K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/reflect/TypeTokenSubtypeTest.java

      public static void testSubtypeOfStaticAnonymousClass() {
        Class<?> superclass = new Mall<Outdoor>().new Shop<Electronics>() {}.getClass();
        assertTrue(TypeToken.of(superclass).isSubtypeOf(superclass));
        assertFalse(
            TypeToken.of(new Mall<Outdoor>().new Shop<Electronics>() {}.getClass())
                .isSubtypeOf(superclass));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/WindowsInstallationSupplierTest.groovy

                "8.0",
                "9.0-abc"
            ]
            registry.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, "SOFTWARE\\AdoptOpenJDK\\JDK\\8.0\\hotspot\\MSI", "Path") >> "c:\\jdk8"
            registry.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, "SOFTWARE\\AdoptOpenJDK\\JDK\\9.0-abc\\hotspot\\MSI", "Path") >> "d:\\jdk9"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 22:14:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top