Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 141 for jre (0.03 sec)

  1. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/daemon/DaemonGroovyCompiler.java

                        .contextualLabel(contextualMessage)
                        .solution("Check if the installation is not a JRE but a JDK.")
                        .severity(Severity.ERROR)
                        .withException(new IllegalStateException(contextualMessage))
                    );
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. guava/pom.xml

      <!-- do_not_remove: published-with-gradle-metadata -->
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>com.google.guava</groupId>
        <artifactId>guava-parent</artifactId>
        <version>HEAD-jre-SNAPSHOT</version>
      </parent>
      <artifactId>guava</artifactId>
      <packaging>bundle</packaging>
      <name>Guava: Google Core Libraries for Java</name>
      <url>https://github.com/google/guava</url>
      <description>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableMultiset.java

       * ImmutableMultiset}. Elements iterate in order by the <i>first</i> appearance of that element 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
    - 22.5K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

                    mavenCentral()
                }
    
                configurations {
                    customGuava
                }
    
                dependencies {
                    customGuava "com.google.guava:guava:23.1-jre"
                }
    
                abstract class GuavaVersionWorkAction extends TestWorkAction {
                    @Inject
                    public GuavaVersionWorkAction() { }
    
                    public void execute() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitor.java

                Path javaPath = Paths.get(javaCommand);
                if (javaPath.getParent().getFileName().toString().equals("bin") && javaPath.getParent().getParent().getFileName().toString().equals("jre")) {
                    return javaPath.resolve("../../../bin/jstack").normalize().toString();
                } else {
                    return javaPath.resolve("../../bin/jstack").normalize().toString();
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

                plugins {
                    id 'java-library'
                }
    
                ${mavenCentralRepository()}
    
                dependencies {
                    implementation 'com.google.guava:guava:30.1.1-jre'
                }
    
                tasks.withType(Test).configureEach {
                    throw new RuntimeException('Configuring tests failed')
                }
            """
    
            and: "containing a class to compile"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    In the Java ecosystem, we often see different artifacts for the same library, distinguished by a different _classifier_.
    A typical example is Guava, which is published as this:
    
    - `guava-jre` for JDK 8 and above
    - `guava-android` for JDK 7
    
    The problem with this approach is that there's no semantics associated with the classifier.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/teamcity.adoc

    This post uses TeamCity bundled with Tomcat servlet container and covers the evaluation setup of a TeamCity server and a default build agent running on the same machine.
    
    [start=1]
    . Make sure you have JRE or JDK installed and the JAVA_HOME environment variable is pointing to the Java installation directory. Oracle Java 1.8 JDK is required.
    . Download TeamCity .tar.gz distribution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableSetMultimap.java

       *         .put('b', "anana")
       *         .putAll('a', "pple", "sparagus")
       *         .putAll('c', "arrot", "herry")
       *         .build();
       * }</pre>
       *
       * @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 <T extends @Nullable Object, K, V>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/base/JoinerTest.java

          return iterator.next();
        }
    
        @Override
        public void remove() {
          iterator.remove();
        }
      }
    
      @GwtIncompatible // StringBuilder.append in GWT invokes Object.toString(), unlike the JRE version.
      public void testDontConvertCharSequenceToString() {
        assertEquals("foo,foo", Joiner.on(",").join(new DontStringMeBro(), new DontStringMeBro()));
        assertEquals(
            "foo,bar,foo",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top