Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for jdk14 (0.08 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

            boolean jdk15 = Boolean.parseBoolean((String) projectRoot.attribute("jdk-15"));
            String languageLevel = (String) projectRoot.attribute("languageLevel");
            String jdkName = (String) projectRoot.attribute("project-jdk-name");
            jdk = new Jdk(assertKeyword, jdk15, languageLevel, jdkName);
        }
    
        private void loadProjectLibraries() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/base/EquivalenceTest.java

      }
    
      @J2ktIncompatible
      @GwtIncompatible // NullPointerTester
      public void testNulls() throws NoSuchMethodException {
        NullPointerTester tester = new NullPointerTester();
        // Necessary until JDK15:
        // https://bugs.openjdk.org/browse/JDK-8202469
        tester.ignore(Equivalence.class.getMethod("wrap", Object.class));
    
        tester.testAllPublicStaticMethods(Equivalence.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. 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)
  4. build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy

    import spock.lang.Specification
    
    class LeakingProcessKillPatternTest extends Specification {
    
        def "matches worker process started in test on Windows"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:00:39 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/AntWorkerMemoryLeakIntegrationTest.groovy

            VersionNumber lowerBound = VersionNumber.parse('1.8.8')
    
            if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_11)) {
                // Codenarc is not compatible with earlier Groovy versions on JDK11+
                lowerBound = VersionNumber.parse('2.1.9')
            }
    
            return [ LOCAL_GROOVY ] +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

         | Vendor:             AdoptOpenJDK
         | Architecture:       x86_64
         | Is JDK:             true
         | Detected by:        environment variable 'JDK16'
    
     + Oracle JDK 1.7.0_80
         | Location:           /Library/Java/JavaVirtualMachines/jdk1.7.0_80.jdk/Contents/Home/jre
         | Language Version:   7
         | Vendor:             Oracle
         | Architecture:       x86_64
         | Is JDK:             false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/jvm/toolchain/InvalidJvmInstallationReportingIntegrationTest.groovy

            // Use two invalid installation paths to verify that the implementation reports a warning on each of them
            // (as opposed to e.g. reporting only the first one)
            def invalidJdkHome1 = createInvalidJdkHome("jdk1")
            def invalidJdkHome2 = createInvalidJdkHome("jdk2")
    
            // The builds should trigger toolchains discovery; here it's done from different subprojects in order to test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonIntegrationTest.groovy

                        options.executable = new File('${differentJavacExecutablePath}')
                    }
                }
            """
    
            when:
            withInstallations(AvailableJavaHomes.jdk11).succeeds("runInDaemon")
    
            then:
            assertWorkerExecuted("runInDaemon")
        }
    
        def "worker application classpath is isolated from the worker process classloader"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  10. 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)
Back to top