Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 92 for That (0.17 sec)

  1. android/guava/src/com/google/common/util/concurrent/Futures.java

      /**
       * Returns a list of delegate futures that correspond to the futures received in the order that
       * they complete. Delegate futures return the same value or throw the same exception as the
       * corresponding input future returns/throws.
       *
       * <p>"In the order that they complete" means, for practical purposes, about what you would
       * expect, but there are some subtleties. First, we do guarantee that, if the output future at
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 59.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Preconditions.java

       * nullness checker can already "prove" are non-null. That means that the first parameter to
       * checkNotNull *should* be annotated to require it to be non-null.
       *
       * However, for a variety of reasons, Google developers have written a ton of code over the past
       * decade that assumes that they can use checkNotNull for non-precondition checks. I had hoped to
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Wed Feb 14 15:46:55 GMT 2024
    - 52.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/TypeToken.java

      /**
       * Returns the generic interfaces that this type directly {@code implements}. This method is
       * similar but different from {@link Class#getGenericInterfaces()}. For example, {@code new
       * TypeToken<List<String>>() {}.getGenericInterfaces()} will return a list that contains {@code
       * new TypeToken<Iterable<String>>() {}}; while {@code List.class.getGenericInterfaces()} will
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 53.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Sets.java

          // substitute an empty ImmutableSet to the user in place of this
          if (object instanceof CartesianSet) {
            CartesianSet<?> that = (CartesianSet<?>) object;
            return this.axes.equals(that.axes);
          }
          if (object instanceof Set) {
            Set<?> that = (Set<?>) object;
            return this.size() == that.size() && this.containsAll(that);
          }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 77.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                return false;
            }
    
            MavenProject that = (MavenProject) other;
    
            return Objects.equals(getArtifactId(), that.getArtifactId())
                    && Objects.equals(getGroupId(), that.getGroupId())
                    && Objects.equals(getVersion(), that.getVersion());
        }
    
        @Override
        public int hashCode() {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/CacheBuilder.java

     * Cache} interfaces. The {@code asMap} view (and its collection views) have <i>weakly consistent
     * iterators</i>. This means that they are safe for concurrent use, but if other threads modify the
     * cache after the iterator is created, it is undefined which of these changes, if any, are
     * reflected in that iterator. These iterators never throw {@link ConcurrentModificationException}.
     *
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 51.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Multimaps.java

       * Creates an index {@code ImmutableListMultimap} that contains the results of applying a
       * specified function to each item in an {@code Iterable} of values. Each value will be stored as
       * a value in the resulting multimap, yielding a multimap with the same size as the input
       * iterable. The key used to store that value in the multimap will be the result of calling the
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 86.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Iterators.java

    /**
     * This class contains static utility methods that operate on or return objects of type {@link
     * Iterator}. Except as noted, each method has a corresponding {@link Iterable}-based method in the
     * {@link Iterables} class.
     *
     * <p><i>Performance notes:</i> Unless otherwise noted, all of the iterators produced in this class
     * are <i>lazy</i>, which means that they only advance the backing iteration when absolutely
     * necessary.
     *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Sat Apr 20 03:33:06 GMT 2024
    - 50.6K bytes
    - Viewed (0)
  9. common/scripts/metallb-native.yaml

                            description: A label selector requirement is a selector that
                              contains values, a key, and an operator that relates the
                              key and values.
                            properties:
                              key:
                                description: key is the label key that the selector applies
                                  to.
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Preconditions.java

       * nullness checker can already "prove" are non-null. That means that the first parameter to
       * checkNotNull *should* be annotated to require it to be non-null.
       *
       * However, for a variety of reasons, Google developers have written a ton of code over the past
       * decade that assumes that they can use checkNotNull for non-precondition checks. I had hoped to
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Apr 11 11:52:14 GMT 2024
    - 52.9K bytes
    - Viewed (0)
Back to top