Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 484 for light (0.01 sec)

  1. android/guava/src/com/google/common/graph/ParametricNullness.java

     *       href="https://github.com/google/guava/issues/6126#issuecomment-1204399671">treats it
     *       identically to {@code Nullable}</a> as of version 0.9.9.
     *   <li><a href="https://developers.google.com/j2objc">J2ObjC</a>, maybe: It might no longer be
     *       necessary there, since we have stopped using the {@code @ParametersAreNonnullByDefault}
     *       annotations that {@code ParametricNullness} was counteracting.
     * </ul>
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 16:20:21 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/ParametricNullness.java

     *       href="https://github.com/google/guava/issues/6126#issuecomment-1204399671">treats it
     *       identically to {@code Nullable}</a> as of version 0.9.9.
     *   <li><a href="https://developers.google.com/j2objc">J2ObjC</a>, maybe: It might no longer be
     *       necessary there, since we have stopped using the {@code @ParametersAreNonnullByDefault}
     *       annotations that {@code ParametricNullness} was counteracting.
     * </ul>
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 16:20:21 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/ParametricNullness.java

     *       href="https://github.com/google/guava/issues/6126#issuecomment-1204399671">treats it
     *       identically to {@code Nullable}</a> as of version 0.9.9.
     *   <li><a href="https://developers.google.com/j2objc">J2ObjC</a>, maybe: It might no longer be
     *       necessary there, since we have stopped using the {@code @ParametersAreNonnullByDefault}
     *       annotations that {@code ParametricNullness} was counteracting.
     * </ul>
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 16:20:21 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ForwardingObject.java

     * such custom interfaces directly; they are implemented only in subclasses. Therefore, forwarding
     * {@code equals} would break symmetry, as the forwarding object might consider itself equal to the
     * object being tested, but the reverse could not be true. This behavior is consistent with the
     * JDK's collection wrappers, such as {@link java.util.Collections#unmodifiableCollection}. Use an
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/ParametricNullness.java

     *       href="https://github.com/google/guava/issues/6126#issuecomment-1204399671">treats it
     *       identically to {@code Nullable}</a> as of version 0.9.9.
     *   <li><a href="https://developers.google.com/j2objc">J2ObjC</a>, maybe: It might no longer be
     *       necessary there, since we have stopped using the {@code @ParametersAreNonnullByDefault}
     *       annotations that {@code ParametricNullness} was counteracting.
     * </ul>
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 16:20:21 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/MinimalIterable.java

        this.iterator = iterator;
      }
    
      @Override
      public Iterator<E> iterator() {
        if (iterator == null) {
          // TODO: throw something else? Do we worry that people's code and tests
          // might be relying on this particular type of exception?
          throw new IllegalStateException();
        }
        try {
          return iterator;
        } finally {
          iterator = null;
        }
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/Floats.java

        INSTANCE;
    
        @Override
        public int compare(float[] left, float[] right) {
          int minLength = Math.min(left.length, right.length);
          for (int i = 0; i < minLength; i++) {
            int result = Float.compare(left[i], right[i]);
            if (result != 0) {
              return result;
            }
          }
          return left.length - right.length;
        }
    
        @Override
        public String toString() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.7K bytes
    - Viewed (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealConnection.kt

          allocationLimit = settings.getMaxConcurrentStreams()
    
          if (allocationLimit < oldLimit) {
            // We might need new connections to keep policies satisfied
            connectionPool.scheduleOpener(route.address)
          } else if (allocationLimit > oldLimit) {
            // We might no longer need some connections
            connectionPool.scheduleCloser()
          }
        }
      }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/dict/protwords/admin_dict_protwords.jsp

                                <la:message key="labels.dict_protwords_title"/>
                            </h1>
                        </div>
                        <div class="col-sm-6">
                            <ol class="breadcrumb float-sm-right">
                                <li class="breadcrumb-item"><la:link href="/admin/dict">
                                    <la:message key="labels.dict_list_link"/>
                                </la:link></li>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.9K bytes
    - Viewed (0)
  10. docs/features/r8_proguard.md

    don't have to do anything. The specific rules are [already bundled][okhttp3_pro] into the JAR which can be
    interpreted by R8 automatically.
    
    If you, however, don't use R8 you have to apply the rules from [this file][okhttp3_pro]. You might
    also need rules from [Okio][okio] which is a dependency of this library.
    
     [okhttp3_pro]: https://raw.githubusercontent.com/square/okhttp/master/okhttp/okhttp3.pro
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 19 07:07:23 UTC 2025
    - 570 bytes
    - Viewed (0)
Back to top