- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 2,019 for super (0.02 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/MavenBuilderException.java
* * @param message the detail message * @param cause the cause of this exception */ public MavenBuilderException(String message, Throwable cause) { super(message, cause); problems = ProblemCollector.empty(); } /** * Constructs a new exception with the specified message and problems. * The message will be enhanced with details from the problems.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 3.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/metadata/io/MetadataParseException.java
* @param columnNumber The one-based index of the column containing the error or {@code -1} if unknown. */ public MetadataParseException(String message, int lineNumber, int columnNumber) { super(message); this.lineNumber = lineNumber; this.columnNumber = columnNumber; } /** * Creates a new parser exception with the specified details. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java
public static <T extends @Nullable Object, E> Collector<T, ?, ImmutableSortedMultiset<E>> toImmutableSortedMultiset( Comparator<? super E> comparator, Function<? super T, ? extends E> elementFunction, ToIntFunction<? super T> countFunction) { checkNotNull(comparator); checkNotNull(elementFunction); checkNotNull(countFunction); return Collector.of(
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 35.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Synchronized.java
implements SortedSet<E> { SynchronizedSortedSet(SortedSet<E> delegate, @Nullable Object mutex) { super(delegate, mutex); } @Override SortedSet<E> delegate() { return (SortedSet<E>) super.delegate(); } @Override public @Nullable Comparator<? super E> comparator() { synchronized (mutex) { return delegate().comparator(); } }
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Aug 08 15:11:10 UTC 2025 - 53K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableBiMap.java
@CanIgnoreReturnValue @Override public Builder<K, V> orderEntriesByValue(Comparator<? super V> valueComparator) { super.orderEntriesByValue(valueComparator); return this; } @Override @CanIgnoreReturnValue Builder<K, V> combine(ImmutableMap.Builder<K, V> builder) { super.combine(builder); return this; } /**Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 22.2K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/TestFileWagon.java
super.getTransfer(resource, destination, input, closeInput, maxSize); } @Override public void get(String resourceName, File destination) throws TransferFailedException, ResourceDoesNotExistException, AuthorizationException { addTransfer("get " + resourceName); insideGet = true; super.get(resourceName, destination);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.9K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/transfer/ConsoleMavenTransferListener.java
public ConsoleMavenTransferListener(PrintStream out, boolean printResourceNames) { super(out); this.printResourceNames = printResourceNames; } @Override public void transferInitiated(TransferEvent event) { overridePreviousTransfer(event); super.transferInitiated(event); } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Apr 03 11:23:19 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthentication.java
* @param tc the CIFS context to use * @param userInfo the user information string in the format "domain;user:pass" */ public NtlmPasswordAuthentication(final CIFSContext tc, final String userInfo) { super(userInfo, tc.getConfig().getDefaultDomain(), tc.getConfig().getDefaultUsername() != null ? tc.getConfig().getDefaultUsername() : "GUEST",Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/GraphConflictResolutionException.java
public GraphConflictResolutionException(String message) { super(message); } public GraphConflictResolutionException(Throwable cause) { super(cause); } public GraphConflictResolutionException(String message, Throwable cause) { super(message, cause); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/CrawlerSystemException.java
super(message, cause); } /** * Constructs a new CrawlerSystemException with the specified detail message. * * @param message the detail message. The detail message is saved for later retrieval by the {@link #getMessage()} method. */ public CrawlerSystemException(final String message) { super(message); } /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3K bytes - Viewed (0)