Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for jre (0.03 sec)

  1. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

       *
       * <p>If the elements contain duplicates (according to the comparator), only the first duplicate
       * in encounter order will appear in the result.
       *
       * @since 33.2.0 (available since 21.0 in guava-jre)
       */
      @SuppressWarnings({"AndroidJdkLibsChecker", "Java7ApiChecker"})
      @IgnoreJRERequirement // Users will use this only if they're already using streams.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

            buildFile << """
                import ${type.name}
    
                buildscript {
                    ${mavenCentralRepository()}
                    dependencies {
                        classpath 'com.google.guava:guava:28.0-jre'
                    }
                }
    
                class SomeBean {
                    ${type.simpleName} value
                }
    
                class SomeTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

        }
    
        def configureBoostrapClasspath(Jvm jvm) {
            if (jvm.javaVersion.majorVersionNumber < 9) {
                def rtJar = new File(jvm.javaHome, "jre/lib/rt.jar")
                def rtJarPath = TextUtil.escapeString(rtJar.absolutePath)
                return """
                    options.bootstrapClasspath = files('${rtJarPath}')
                """
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    [source,kotlin]
    ----
    dependencies {
        implementation 'com.google.guava:guava:30.1-jre'        // Regular dependency
        featureVariant 'com.google.guava:guava-gwt:30.1-jre'    // Feature variant dependency
    }
    ----
    
    In the following example, each plugin variant is developed in isolation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableSet.java

       * the stream contains duplicates (according to {@link Object#equals(Object)}), only the first
       * duplicate in encounter order will appear in the result.
       *
       * @since 33.2.0 (available since 21.0 in guava-jre)
       */
      @SuppressWarnings({"AndroidJdkLibsChecker", "Java7ApiChecker"})
      @IgnoreJRERequirement // Users will use this only if they're already using streams.
      public static <E> Collector<E, ?, ImmutableSet<E>> toImmutableSet() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

       * ImmutableRangeSet}. As in {@link Builder}, overlapping ranges are not permitted and adjacent
       * ranges will be merged.
       *
       * @since 33.2.0 (available since 23.1 in guava-jre)
       */
      @SuppressWarnings({"AndroidJdkLibsChecker", "Java7ApiChecker"})
      @IgnoreJRERequirement // Users will use this only if they're already using streams.
      public static <E extends Comparable<? super E>>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    Each test suite has some configuration that is common across for all tests contained in the suite:
    
    * Testing framework
    * Sources
    * Dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    +
    _Default is `false`._
    
    `org.gradle.java.home=(path to JDK home)`::
    Specifies the Java home for the Gradle build process.
    The value can be set to either a `jdk` or `jre` location; however, using a JDK is safer depending on what your build does.
    This does not affect the version of Java used to launch the <<#sec:gradle_environment_variables,Gradle client VM>>.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. pom.xml

        <cipherVersion>2.0</cipherVersion>
        <classWorldsVersion>2.8.0</classWorldsVersion>
        <commonsCliVersion>1.8.0</commonsCliVersion>
        <guiceVersion>6.0.0</guiceVersion>
        <guavaVersion>33.2.0-jre</guavaVersion>
        <guavafailureaccessVersion>1.0.1</guavafailureaccessVersion>
        <hamcrestVersion>2.2</hamcrestVersion>
        <jakartaInjectApiVersion>2.0.1</jakartaInjectApiVersion>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableList.java

      /**
       * Returns a {@code Collector} that accumulates the input elements into a new {@code
       * ImmutableList}, in encounter order.
       *
       * @since 33.2.0 (available since 21.0 in guava-jre)
       */
      @SuppressWarnings({"AndroidJdkLibsChecker", "Java7ApiChecker"})
      @IgnoreJRERequirement // Users will use this only if they're already using streams.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top