Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for given (0.25 sec)

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

        /**
         * Returns a freshly created entry, typed at the {@code E} type, for the given {@code segment}.
         */
        E newEntry(S segment, K key, int hash, @CheckForNull E next);
    
        /**
         * Returns a freshly created entry, typed at the {@code E} type, for the given {@code segment},
         * that is a copy of the given {@code entry}.
         */
        E copy(S segment, E entry, @CheckForNull E newNext);
    
        /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 91.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

            new RegularImmutableSortedSet<K>(ImmutableList.of(k1), checkNotNull(comparator)),
            ImmutableList.of(v1));
      }
    
      /**
       * Returns an immutable sorted map containing the given entries, sorted by the natural ordering of
       * their keys.
       *
       * @throws IllegalArgumentException if the two keys are equal according to their natural ordering
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 52.7K bytes
    - Viewed (0)
  3. cmd/object-api-multipart_test.go

    		},
    		// listMultipartResults - 23.
    		// Testing for listing of 3 uploadID's for a given object
    		// setting `prefix` to be "orange".
    		// Will be used to list on bucketNames[1].
    		{
    			MaxUploads:  10,
    			IsTruncated: false,
    			Prefix:      "orange",
    		},
    		// listMultipartResults - 24.
    		// Testing for listing of 3 uploadID's for a given object.
    		// setting `prefix` to be "Asia".
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 77.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableSortedMap.java

            new RegularImmutableSortedSet<K>(ImmutableList.of(k1), checkNotNull(comparator)),
            ImmutableList.of(v1));
      }
    
      /**
       * Returns an immutable sorted map containing the given entries, sorted by the natural ordering of
       * their keys.
       *
       * @throws IllegalArgumentException if the two keys are equal according to their natural ordering
       */
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 50.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/Futures.java

       * given {@code Future}. If the given {@code Future} fails, the returned {@code Future} fails with
       * the same exception (and the function is not invoked).
       *
       * <p>More precisely, the returned {@code Future} takes its result from a {@code Future} produced
       * by applying the given {@code AsyncFunction} to the result of the original {@code Future}.
       * Example usage:
    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)
  6. android/guava/src/com/google/common/collect/Iterators.java

       * predicate.
       */
      public static <T extends @Nullable Object> boolean any(
          Iterator<T> iterator, Predicate<? super T> predicate) {
        return indexOf(iterator, predicate) != -1;
      }
    
      /**
       * Returns {@code true} if every element returned by {@code iterator} satisfies the given
       * predicate. If {@code iterator} is empty, {@code true} is returned.
    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)
  7. android/guava/src/com/google/common/collect/Sets.java

      }
    
      /**
       * Returns an immutable set instance containing the given enum elements. Internally, the returned
       * set will be backed by an {@link EnumSet}.
       *
       * <p>The iteration order of the returned set follows the enum's iteration order, not the order in
       * which the elements appear in the given collection.
       *
    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)
  8. guava/src/com/google/common/collect/Iterators.java

       * predicate.
       */
      public static <T extends @Nullable Object> boolean any(
          Iterator<T> iterator, Predicate<? super T> predicate) {
        return indexOf(iterator, predicate) != -1;
      }
    
      /**
       * Returns {@code true} if every element returned by {@code iterator} satisfies the given
       * predicate. If {@code iterator} is empty, {@code true} is returned.
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Jan 30 00:14:39 GMT 2024
    - 50.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/SetsTest.java

        return ImmutableList.copyOf(elements);
      }
    
      /**
       * Utility method to verify that the given LinkedHashSet is equal to and hashes identically to a
       * set constructed with the elements in the given collection. Also verifies that the ordering in
       * the set is the same as the ordering of the given contents.
       */
      private static <E> void verifyLinkedHashSetContents(
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 49.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/CharMatcher.java

       * character sequence. Returns a bogus matcher if the sequence contains supplementary characters.
       */
      public static CharMatcher noneOf(CharSequence sequence) {
        return anyOf(sequence).negate();
      }
    
      /**
       * Returns a {@code char} matcher that matches any character in a given BMP range (both endpoints
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.8K bytes
    - Viewed (0)
Back to top