- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 2,192 for supe (0.06 sec)
-
src/main/java/jcifs/spnego/SpnegoException.java
* */ public SpnegoException () { super(); } /** * @param message * @param cause */ public SpnegoException ( String message, Throwable cause ) { super(message, cause); } /** * @param message */ public SpnegoException ( String message ) { super(message); } /** * @param cause
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/RequestTimeoutException.java
*/ public RequestTimeoutException () { super(); } /** * @param msg * @param rootCause */ public RequestTimeoutException ( String msg, Throwable rootCause ) { super(msg, rootCause); } /** * @param msg */ public RequestTimeoutException ( String msg ) { super(msg); } /** * @param rootCause
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.5K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java
I, O, AsyncFunction<? super I, ? extends O>, ListenableFuture<? extends O>> { AsyncTransformFuture( ListenableFuture<? extends I> inputFuture, AsyncFunction<? super I, ? extends O> function) { super(inputFuture, function); } @Override ListenableFuture<? extends O> doTransform( AsyncFunction<? super I, ? extends O> function, @ParametricNullness I input)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 13:13:32 UTC 2024 - 11K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/DenseImmutableTable.java
@Override @GwtIncompatible // serialization Object writeReplace() { return super.writeReplace(); } } private final class Row extends ImmutableArrayMap<C, V> { private final int rowIndex; Row(int rowIndex) { super(rowCounts[rowIndex]); this.rowIndex = rowIndex; } @Override ImmutableMap<C, Integer> keyToIndex() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 10.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/NavigableSetTestSuiteBuilder.java
protected List<TestSuite> createDerivedSuites( FeatureSpecificTestSuiteBuilder<?, ? extends OneSizeTestContainerGenerator<Collection<E>, E>> parentBuilder) { List<TestSuite> derivedSuites = new ArrayList<>(super.createDerivedSuites(parentBuilder)); if (!parentBuilder.getFeatures().contains(SUBSET_VIEW)) { // Other combinations are inherited from SortedSetTestSuiteBuilder.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 6.2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/superpom/DefaultSuperPomProvider.java
/** * Provides the super POM that all models implicitly inherit from. * * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Named @Singleton @Deprecated(since = "4.0.0") public class DefaultSuperPomProvider implements SuperPomProvider { private final ModelProcessor modelProcessor; /** * The cached super POM, lazily created. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.3K bytes - Viewed (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);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 17.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoLoginException.java
private static final long serialVersionUID = 1L; public SsoLoginException(final String message) { super(message); } public SsoLoginException(final String message, final Exception e) { super(message, e); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 967 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoProcessException.java
private static final long serialVersionUID = 1L; public SsoProcessException(final String message) { super(message); } public SsoProcessException(final String message, final Exception e) { super(message, e); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 973 bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/DocGenerationException.java
@Contextual public class DocGenerationException extends RuntimeException { public DocGenerationException(String message) { super(message); } public DocGenerationException(String message, Throwable throwable) { super(message, throwable); }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 968 bytes - Viewed (0)