- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 2,287 for super (0.02 seconds)
-
compat/maven-model-builder/src/site/apt/super-pom.apt.vm
~~ KIND, either express or implied. See the License for the ~~ specific language governing permissions and limitations ~~ under the License. ----- Super POM ----- Hervé Boutemy ----- 2011-09-12 ----- Super POM All models implicitly inherit from a super-POM:
Created: 2026-04-05 03:35 - Last Modified: 2024-10-25 12:31 - 1K bytes - Click Count (0) -
guava/src/com/google/common/collect/CollectSpliterators.java
this.delegate = delegate; } @Override public boolean tryAdvance(Consumer<? super T> action) { return delegate.tryAdvance((IntConsumer) i -> action.accept(function.apply(i))); } @Override public void forEachRemaining(Consumer<? super T> action) { delegate.forEachRemaining((IntConsumer) i -> action.accept(function.apply(i))); } @OverrideCreated: 2026-04-03 12:43 - Last Modified: 2025-11-17 22:50 - 19.9K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/CollectSpliterators.java
this.delegate = delegate; } @Override public boolean tryAdvance(Consumer<? super T> action) { return delegate.tryAdvance((IntConsumer) i -> action.accept(function.apply(i))); } @Override public void forEachRemaining(Consumer<? super T> action) { delegate.forEachRemaining((IntConsumer) i -> action.accept(function.apply(i))); } @OverrideCreated: 2026-04-03 12:43 - Last Modified: 2025-08-09 01:14 - 20.5K bytes - Click Count (0) -
android/guava/src/com/google/common/reflect/TypeToken.java
* </ul> */ public final Class<? super T> getRawType() { if (runtimeType instanceof Class) { @SuppressWarnings("unchecked") // raw type is T Class<? super T> result = (Class<? super T>) runtimeType; return result; } else if (runtimeType instanceof ParameterizedType) { @SuppressWarnings("unchecked") // raw type is |T|
Created: 2026-04-03 12:43 - Last Modified: 2026-01-29 22:14 - 53.8K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/TreeMultimap.java
} TreeMultimap(Comparator<? super K> keyComparator, Comparator<? super V> valueComparator) { super(new TreeMap<K, Collection<V>>(keyComparator)); this.keyComparator = keyComparator; this.valueComparator = valueComparator; } private TreeMultimap( Comparator<? super K> keyComparator, Comparator<? super V> valueComparator, Multimap<? extends K, ? extends V> multimap) {
Created: 2026-04-03 12:43 - Last Modified: 2025-08-07 16:05 - 8.5K bytes - Click Count (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java
Function<? super T, ? extends V> valueFunction) { return CollectCollectors.toImmutableSortedMap(Ordering.natural(), keyFunction, valueFunction); } public static <T extends @Nullable Object, K, V> Collector<T, ?, ImmutableSortedMap<K, V>> toImmutableSortedMap( Comparator<? super K> comparator, Function<? super T, ? extends K> keyFunction,
Created: 2026-04-03 12:43 - Last Modified: 2026-01-08 18:10 - 16.6K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/CollectCollectors.java
static <E extends Comparable<? super E>> Collector<Range<E>, ?, ImmutableRangeSet<E>> toImmutableRangeSet() { return (Collector) TO_IMMUTABLE_RANGE_SET; } // Multisets static <T extends @Nullable Object, E> Collector<T, ?, ImmutableMultiset<E>> toImmutableMultiset( Function<? super T, ? extends E> elementFunction, ToIntFunction<? super T> countFunction) { checkNotNull(elementFunction);
Created: 2026-04-03 12:43 - Last Modified: 2025-09-22 18:35 - 16.9K bytes - Click Count (0) -
guava/src/com/google/common/collect/CollectCollectors.java
static <E extends Comparable<? super E>> Collector<Range<E>, ?, ImmutableRangeSet<E>> toImmutableRangeSet() { return (Collector) TO_IMMUTABLE_RANGE_SET; } // Multisets static <T extends @Nullable Object, E> Collector<T, ?, ImmutableMultiset<E>> toImmutableMultiset( Function<? super T, ? extends E> elementFunction, ToIntFunction<? super T> countFunction) { checkNotNull(elementFunction);
Created: 2026-04-03 12:43 - Last Modified: 2025-09-22 18:35 - 16.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedInputs.java
super(message); } public ExceptionWithManyConstructorsButOnlyOneThrowable( String message, String a1, String a2, String a3) { super(message); } public ExceptionWithManyConstructorsButOnlyOneThrowable(String message, Throwable antecedent) { super(message); this.antecedent = antecedent; } public ExceptionWithManyConstructorsButOnlyOneThrowable(Created: 2026-04-03 12:43 - Last Modified: 2026-03-16 15:59 - 6.3K bytes - Click Count (0) -
api/maven-api-xml/src/main/java/org/apache/maven/api/xml/ImmutableCollections.java
public V computeIfAbsent(K key, Function<? super K, ? extends V> mappingFunction) { throw uoe(); } @Override public V computeIfPresent(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction) { throw uoe(); } @Override public V compute(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction) {
Created: 2026-04-05 03:35 - Last Modified: 2025-07-07 11:47 - 7.8K bytes - Click Count (0)