Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for isCompatibleWith (0.46 sec)

  1. platforms/documentation/docs/build.gradle

            }
    
            if (javaVersion.isCompatibleWith(JavaVersion.VERSION_12)) {
                excludeTestsMatching "org.gradle.docs.samples.*.snippet-test-kit-gradle-version_*_testKitFunctionalTestSpockGradleDistribution.sample"
            }
    
            if (javaVersion.isCompatibleWith(JavaVersion.VERSION_22)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiClientJdkCompatibilityTest.groovy

                        languageVersion = JavaLanguageVersion.of(Integer.parseInt(project.findProperty("clientJdk")))
                    }
                    enableAssertions = true
    
                    if (${clientJdkVersion.isCompatibleWith(JavaVersion.VERSION_16)} && ['2.14.1'].contains(project.findProperty("gradleVersion"))) {
                        jvmArgs = ["--add-opens", "java.base/java.lang=ALL-UNNAMED"]
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ExceptionPlaceholder.java

            }
        }
    
        private static boolean isJava7() {
            return JavaVersion.current().isJava7Compatible();
        }
    
        private static boolean isJava14() {
            return JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_14);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                properties.put("sun.stdout.encoding", getDefaultCharacterEncoding());
                properties.put("sun.stderr.encoding", getDefaultCharacterEncoding());
            } else if (getJavaVersionFromJavaHome().isCompatibleWith(JavaVersion.VERSION_19)) {
                properties.put("stdout.encoding", getDefaultCharacterEncoding());
                properties.put("stderr.encoding", getDefaultCharacterEncoding());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

                this.test = test;
            }
    
            @Override
            public Iterable<String> asArguments() {
                return test.getJavaVersion().isCompatibleWith(JavaVersion.VERSION_1_9)
                    ? Collections.singletonList("--add-opens=java.base/java.lang=ALL-UNNAMED")
                    : Collections.emptyList();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheUnsupportedTypesIntegrationTest.groovy

            concreteTypeName = concreteType instanceof Class ? concreteType.name : concreteType
        }
    
        private static executorServiceTypeOnCurrentJvm() {
            def shortName = Jvm.current().javaVersion.isCompatibleWith(JavaVersion.VERSION_21) ? 'AutoShutdownDelegatedExecutorService' : 'FinalizableDelegatedExecutorService'
            return 'java.util.concurrent.Executors$' + shortName
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28.3K bytes
    - Viewed (0)
Back to top