Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 215 for Jdk (0.07 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    Java HotSpot(TM) 64-Bit Server VM (build 25.151-b12, mixed mode)
    ----
    
    Gradle uses the JDK it finds in your path, the JDK used by your IDE, or the JDK specified by your project.
    In this example, the $PATH points to JDK17:
    
    ----
    ❯ echo $PATH
    /opt/homebrew/opt/openjdk@17/bin
    ----
    
    You can also set the `JAVA_HOME` environment variable to point to a specific JDK installation directory.
    This is especially useful when multiple JDKs are installed:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/pom/junit-4.12.pom

                    </plugins>
                </build>
            </profile>
            <profile>
                <id>restrict-doclint</id>
                <!-- doclint is only supported by JDK 8 -->
                <activation>
                    <jdk>[1.8,)</jdk>
                </activation>
                <build>
                    <plugins>
                        <plugin>
                            <artifactId>maven-compiler-plugin</artifactId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/Kerb5Context.java

            }
        }
    
        /*
         * Prepare reflective access to ExtendedGSSContext. The reflective access
         * abstracts the access so far, that Oracle JDK, Open JDK and IBM JDK are
         * supported.
         * 
         * At the time of the first implementation only a test on Oracle JDK was
         * done.
         */
    
        private static final String OPENJDK_JGSS_INQUIRE_TYPE_CLASS = "com.sun.security.jgss.InquireType";
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Aug 02 08:22:42 UTC 2018
    - 13.9K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Module.java

            removeDependenciesFromXml();
            addDependenciesToXml();
        }
    
        private void readJdkFromXml() {
            Node jdk = findFirstWithAttributeValue(findOrderEntries(), "type", "jdk");
            jdkName = jdk != null ? (String) jdk.attribute("jdkName") : INHERITED;
        }
    
        private void readSourceAndExcludeFolderFromXml() {
            for (Node sourceFolder : findSourceFolder()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/SettingsUtilsV4.java

                activation.location("activeByDefault", toLocation(settingsActivation.getLocation("activeByDefault")));
    
                activation.jdk(settingsActivation.getJdk());
                activation.location("jdk", toLocation(settingsActivation.getLocation("jdk")));
    
                ActivationProperty settingsProp = settingsActivation.getProperty();
                if (settingsProp != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/daemon/DaemonGroovyCompiler.java

                    throw problemReporter.throwing(problemSpec -> problemSpec
                        .id("groovy-daemon-compiler", "Missing tools.jar", GradleCoreProblemGroup.compilation().groovy())
                        .contextualLabel(contextualMessage)
                        .solution("Check if the installation is not a JRE but a JDK.")
                        .severity(Severity.ERROR)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

        @Requires(IntegTestPreconditions.Java11HomeAvailable)
        def "compiler warnings does not cause failure in problem mapping under JDK#jdk.javaVersionMajor"(Jvm jdk) {
            given:
            setupAnnotationProcessors(jdk.javaVersion)
    
            def generator = new ProblematicClassGenerator("Foo")
            generator.addWarning()
            generator.save()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    @GwtCompatible(emulated = true)
    @ReflectionSupport(value = ReflectionSupport.Level.FULL)
    @ElementTypesAreNonnullByDefault
    // Some Android 5.0.x Samsung devices have bugs in JDK reflection APIs that cause
    // getDeclaredField to throw a NoSuchFieldException when the field is definitely there.
    // Since this class only needs CAS on one field, we can avoid this bug by extending AtomicReference
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Throwables.java

       *
       * @since 19.0
       * @deprecated This method is equivalent to {@link Throwable#getStackTrace()} on JDK versions past
       *     JDK 8 and on all Android versions. Use {@link Throwable#getStackTrace()} directly, or where
       *     possible use the {@code java.lang.StackWalker.walk} method introduced in JDK 9.
       */
      @Deprecated
      @J2ktIncompatible
      @GwtIncompatible // lazyStackTraceIsLazy, jlaStackTrace
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/InterruptibleTask.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    @GwtCompatible(emulated = true)
    @ReflectionSupport(value = ReflectionSupport.Level.FULL)
    @ElementTypesAreNonnullByDefault
    // Some Android 5.0.x Samsung devices have bugs in JDK reflection APIs that cause
    // getDeclaredField to throw a NoSuchFieldException when the field is definitely there.
    // Since this class only needs CAS on one field, we can avoid this bug by extending AtomicReference
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top