Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 291 - 300 of 349 for lett (0.03 seconds)

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

                  || cut.compareTo(restriction.upperBound) >= 0) {
                return null;
              } else if (cut.equals(restriction.lowerBound)) {
                // it might be present, truncated on the left
                Range<C> candidate = Maps.valueOrNull(rangesByLowerBound.floorEntry(cut));
                if (candidate != null && candidate.upperBound.compareTo(restriction.lowerBound) > 0) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Sep 23 17:50:58 GMT 2025
    - 32.3K bytes
    - Click Count (0)
  2. guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

      <T extends @Nullable Object> Ordering<T> generateOrdering() {
        return new Ordering<T>() {
          @Override
          @SuppressWarnings("UnusedVariable") // intentionally weird Comparator
          public int compare(T left, T right) {
            return 0;
          }
    
          final String string = paramString(Ordering.class, generateInt());
    
          @Override
          public String toString() {
            return string;
          }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:45:58 GMT 2026
    - 28.7K bytes
    - Click Count (0)
  3. docs/changelogs/changelog_3x.md

        forbidden by `URI`.
     *  Fix: When a connect times out, attempt an alternate route. Previously route
        selection was less efficient when differentiating failures.
     *  New: `Response.peekBody()` lets you access the response body without
        consuming it. This may be handy for interceptors!
     *  New: `HttpUrl.newBuilder()` resolves a link to a builder.
     *  New: Add the TLS version to the `Handshake`.
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Click Count (0)
  4. android/guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

      <T extends @Nullable Object> Ordering<T> generateOrdering() {
        return new Ordering<T>() {
          @Override
          @SuppressWarnings("UnusedVariable") // intentionally weird Comparator
          public int compare(T left, T right) {
            return 0;
          }
    
          final String string = paramString(Ordering.class, generateInt());
    
          @Override
          public String toString() {
            return string;
          }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:45:58 GMT 2026
    - 28.1K bytes
    - Click Count (0)
  5. guava-tests/test/com/google/common/collect/FluentIterableTest.java

          String expected = (howManyChecked % 2 == 0) ? "a" : "b";
          assertThat(string).isEqualTo(expected);
          if (howManyChecked++ == 5) {
            break;
          }
        }
    
        // We left the last iterator pointing to "b". But a new iterator should
        // always point to "a".
        assertThat(cycle.iterator().next()).isEqualTo("a");
      }
    
      public void testCycle_emptyIterable() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 31.2K bytes
    - Click Count (0)
  6. guava/src/com/google/common/collect/Tables.java

        return new StandardTable<>(backingMap, factory);
      }
    
      /**
       * Returns a view of a table where each value is transformed by a function. All other properties
       * of the table, such as iteration order, are left intact.
       *
       * <p>Changes in the underlying table are reflected in this view. Conversely, this view supports
       * removal operations, and these are reflected in the underlying table.
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 25.3K bytes
    - Click Count (0)
  7. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

      /*
       * Requiring desugaring for guava-*testlib* is likely safe, at least for the reflection-based
       * NullPointerTester. But if you are a user who is reading this because this change caused you
       * trouble, please let us know: https://github.com/google/guava/issues/new
       */
      @IgnoreJRERequirement
      public NullPointerTester() {
        try {
          /*
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Jul 14 14:44:08 GMT 2025
    - 24.9K bytes
    - Click Count (0)
  8. guava-tests/test/com/google/common/collect/IterablesTest.java

          String expected = (howManyChecked % 2 == 0) ? "a" : "b";
          assertThat(string).isEqualTo(expected);
          if (howManyChecked++ == 5) {
            break;
          }
        }
    
        // We left the last iterator pointing to "b". But a new iterator should
        // always point to "a".
        for (String string : cycle) {
          assertThat(string).isEqualTo("a");
          break;
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 47.5K bytes
    - Click Count (0)
  9. guava/src/com/google/common/collect/Lists.java

      public static <E extends @Nullable Object> ArrayList<E> newArrayList(
          Iterable<? extends E> elements) {
        checkNotNull(elements); // for GWT
        // Let ArrayList's sizing logic work, if possible
        return (elements instanceof Collection)
            ? new ArrayList<>((Collection<? extends E>) elements)
            : newArrayList(elements.iterator());
      }
    
      /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 16:38:09 GMT 2026
    - 42.5K bytes
    - Click Count (0)
  10. guava-testlib/src/com/google/common/testing/NullPointerTester.java

      /*
       * Requiring desugaring for guava-*testlib* is likely safe, at least for the reflection-based
       * NullPointerTester. But if you are a user who is reading this because this change caused you
       * trouble, please let us know: https://github.com/google/guava/issues/new
       */
      @IgnoreJRERequirement
      public NullPointerTester() {
        try {
          /*
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Jul 14 14:44:08 GMT 2025
    - 25.4K bytes
    - Click Count (0)
Back to Top