- Sort Score
- Num 10 results
- Language All
Results 181 - 190 of 205 for DISTINCT (0.06 seconds)
-
guava-tests/test/com/google/common/collect/ImmutableEnumMapTest.java
mapEntry(AnEnum.B, 2)); } @GwtIncompatible @J2ktIncompatible public void testEntrySetSpliteratorCharacteristics() { int expectedCharacteristics = Spliterator.DISTINCT | Spliterator.ORDERED | Spliterator.NONNULL | Spliterator.IMMUTABLE; Spliterator<Entry<AnEnum, String>> spliterator = immutableEnumMap(ImmutableMap.of(AnEnum.A, "a", AnEnum.B, "b")).entrySet().spliterator();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 26 20:08:09 GMT 2025 - 6.7K bytes - Click Count (0) -
android/guava/src/com/google/common/cache/CacheBuilder.java
* loading the value for this key, simply waits for that thread to finish and returns its loaded * value. Note that multiple threads can concurrently load values for distinct keys. * * <p>This method does not alter the state of this {@code CacheBuilder} instance, so it can be * invoked again to create multiple independent caches. *Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 13:13:59 GMT 2026 - 52K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
* <p>To implement a multimap, a subclass must define the method {@link #createCollection()}, which * creates an empty collection of values for a key. * * <p>The multimap constructor takes a map that has a single entry for each distinct key. When you * insert a key-value pair with a key that isn't already in the multimap, {@code * AbstractMapBasedMultimap} calls {@link #createCollection()} to create the collection of valuesCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Aug 12 15:51:57 GMT 2025 - 46.9K bytes - Click Count (0) -
guava/src/com/google/common/collect/AbstractTable.java
} abstract Iterator<Table.Cell<R, C, V>> cellIterator(); Spliterator<Table.Cell<R, C, V>> cellSpliterator() { return Spliterators.spliterator(cellSet(), Spliterator.NONNULL | Spliterator.DISTINCT); } @WeakOuter private final class CellSet extends AbstractSet<Cell<R, C, V>> { @Override public boolean contains(@Nullable Object o) { if (o instanceof Cell) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 6.7K bytes - Click Count (0) -
docs/fr/docs/tutorial/security/index.md
Il y avait aussi une spécification « OpenID ». Elle essayait de résoudre la même chose qu'**OpenID Connect**, mais n'était pas basée sur OAuth2. C'était donc un système totalement distinct. Il n'est plus très populaire ni utilisé de nos jours. ## OpenAPI { #openapi }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:12:41 GMT 2026 - 5.2K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/CollectSpliterators.java
return fromSpliterator.estimateSize(); } @Override public int characteristics() { return fromSpliterator.characteristics() & ~(Spliterator.DISTINCT | Spliterator.NONNULL | Spliterator.SORTED); } }; } /** Returns a {@code Spliterator} filtered by the specified predicate. */ static <T extends @Nullable Object> Spliterator<T> filter(
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 20.5K bytes - Click Count (0) -
.teamcity/src/test/kotlin/CIConfigIntegrationTests.kt
) } } @Test fun uuidsAreUnique() { val uuidList = model.stages.flatMap { it.functionalTests.map { ft -> ft.uuid } } assertEquals(uuidList.distinct(), uuidList) } @Test fun testsAreCorrectlyConfiguredForAllSubProjects() { model.subprojects.subprojects .filter { !ignoredSubprojects.contains(it.name)Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Oct 16 01:27:05 GMT 2025 - 14.6K bytes - Click Count (0) -
guava/src/com/google/common/collect/CompactHashMap.java
if (needsAllocArrays()) { return Spliterators.spliterator(new Object[0], Spliterator.DISTINCT | Spliterator.ORDERED); } Map<K, V> delegate = delegateOrNull(); return (delegate != null) ? delegate.keySet().spliterator() : Spliterators.spliterator( requireKeys(), 0, size, Spliterator.DISTINCT | Spliterator.ORDERED); } @Override
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 39.6K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ImmutableSortedMap.java
if (i > 0 && comparator.compare((K) sortedKeys[i - 1], (K) sortedKeys[i]) == 0) { throw new IllegalArgumentException( "keys required to be distinct but compared as equal: " + sortedKeys[i - 1] + " and " + sortedKeys[i]); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 08 18:10:02 GMT 2026 - 54.7K bytes - Click Count (0) -
guava/src/com/google/common/collect/MutableClassToInstanceMap.java
@GwtIncompatible // Spliterator public Spliterator<Entry<Class<? extends @NonNull B>, B>> spliterator() { return CollectSpliterators.map( delegate().spliterator(), Spliterator.DISTINCT | Spliterator.NONNULL, MutableClassToInstanceMap::checkedEntry); } @Override public Iterator<Entry<Class<? extends @NonNull B>, B>> iterator() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 7.1K bytes - Click Count (0)