- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 1,830 for super (0.12 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java
abstract void forEachRemaining(Consumer<? super E> action); abstract boolean tryAdvance(Consumer<? super E> action); abstract @Nullable GeneralSpliterator<E> trySplit(); final int characteristics() { return spliterator.characteristics(); } final long estimateSize() { return spliterator.estimateSize(); } final @Nullable Comparator<? super E> getComparator() {Created: 2026-04-03 12:43 - Last Modified: 2026-04-01 17:27 - 12.1K bytes - Click Count (0) -
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) -
guava/src/com/google/common/collect/TableCollectors.java
@GwtCompatible final class TableCollectors { static <T extends @Nullable Object, R, C, V> Collector<T, ?, ImmutableTable<R, C, V>> toImmutableTable( Function<? super T, ? extends R> rowFunction, Function<? super T, ? extends C> columnFunction, Function<? super T, ? extends V> valueFunction) { checkNotNull(rowFunction, "rowFunction"); checkNotNull(columnFunction, "columnFunction");Created: 2026-04-03 12:43 - Last Modified: 2025-02-11 19:03 - 7.5K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/metadata/ArtifactMetadataRetrievalException.java
@Deprecated public ArtifactMetadataRetrievalException(String message) { super(message, null, null); } /** * @param cause a cause * @deprecated use {@link #ArtifactMetadataRetrievalException(String, Throwable, Artifact)} */ @Deprecated public ArtifactMetadataRetrievalException(Throwable cause) { super(null, cause, null); } /** * @param message a messageCreated: 2026-04-05 03:35 - Last Modified: 2024-10-25 12:31 - 2.1K bytes - Click Count (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionException.java
super(message, artifact); } public ArtifactResolutionException(String message, Artifact artifact, List<ArtifactRepository> remoteRepositories) { super(message, artifact, remoteRepositories); } public ArtifactResolutionException(String message, Artifact artifact, Throwable cause) { super(message, artifact, null, cause); }Created: 2026-04-05 03:35 - Last Modified: 2024-10-25 12:31 - 2.5K bytes - Click Count (0) -
guava/src/com/google/common/collect/TreeBasedTable.java
*/ @GwtCompatible public class TreeBasedTable<R, C, V> extends StandardRowSortedTable<R, C, V> { private final Comparator<? super C> columnComparator; private static final class Factory<C, V> implements Supplier<Map<C, V>>, Serializable { final Comparator<? super C> comparator; Factory(Comparator<? super C> comparator) { this.comparator = comparator; } @Override public Map<C, V> get() {
Created: 2026-04-03 12:43 - Last Modified: 2025-07-18 15:05 - 11.6K bytes - Click Count (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/MojoFailureException.java
super(shortMessage); this.source = source; this.longMessage = longMessage; } /** * Construct a new <code>MojoFailureException</code> exception providing a message. * * @param message */ public MojoFailureException(String message) { super(message); } /**Created: 2026-04-05 03:35 - Last Modified: 2024-10-25 12:31 - 2.5K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/CompoundOrdering.java
final class CompoundOrdering<T extends @Nullable Object> extends Ordering<T> implements Serializable { final Comparator<? super T>[] comparators; @SuppressWarnings("unchecked") // Generic array creation CompoundOrdering(Comparator<? super T> primary, Comparator<? super T> secondary) { this.comparators = (Comparator<? super T>[]) new Comparator<?>[] {primary, secondary}; } @SuppressWarnings("unchecked") // Generic array creation
Created: 2026-04-03 12:43 - Last Modified: 2025-06-04 13:03 - 2.5K bytes - Click Count (0) -
guava/src/com/google/common/collect/Maps.java
SortedAsMapView(SortedSet<K> set, Function<? super K, V> function) { super(set, function); } @Override SortedSet<K> backingSet() { return (SortedSet<K>) super.backingSet(); } @Override public @Nullable Comparator<? super K> comparator() { return backingSet().comparator(); } @OverrideCreated: 2026-04-03 12:43 - Last Modified: 2026-04-01 17:27 - 163.4K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SuperPomProvider.java
/** * Provides the super POM that all models implicitly inherit from. * * @since 4.0.0 */ @Experimental public interface SuperPomProvider extends Service { /** * Gets the super POM for the specified model version. * * @param version The model version to retrieve the super POM for (e.g. "4.0.0"), must not be {@code null}. * @return The super POM, never {@code null}.Created: 2026-04-05 03:35 - Last Modified: 2024-02-28 23:54 - 1.5K bytes - Click Count (0)