- Sort Score
- Result 10 results
- Languages All
Results 571 - 580 of 1,542 for implement (0.1 sec)
-
docs/features/interceptors.md
Interceptors ============ Interceptors are a powerful mechanism that can monitor, rewrite, and retry calls. Here's a simple interceptor that logs the outgoing request and the incoming response. ```java class LoggingInterceptor implements Interceptor { @Override public Response intercept(Interceptor.Chain chain) throws IOException { Request request = chain.request(); long t1 = System.nanoTime();
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 8.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/ProjectScope.java
* but can be extended by registering a {@code org.apache.maven.api.spi.ProjectScopeProvider}. * <p> * Implementation must have {@code equals()} and {@code hashCode()} implemented, so implementations of this interface * can be used as keys. * * @since 4.0.0 */ @Experimental @Immutable @SuppressWarnings("checkstyle:InterfaceIsType")
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Feb 05 09:42:51 UTC 2024 - 1.8K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/SpiService.java
* <p> * SPI services are typically registered in {@code META-INF/services/} files corresponding to * the specific service interface being implemented. * <p> * All SPI services should be annotated with {@link Consumer} to indicate they are meant to be * implemented by plugins and extensions rather than used by them. * * @since 4.0.0 */ @Experimental @Consumer
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 1.7K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/ReserializingTestSetGenerator.java
* <p>TODO: make CollectionTestSuiteBuilder test reserialized collections * * @author Jesse Wilson */ @GwtIncompatible public class ReserializingTestSetGenerator<E> extends ReserializingTestCollectionGenerator<E> implements TestSetGenerator<E> { ReserializingTestSetGenerator(TestSetGenerator<E> delegate) { super(delegate); } public static <E> TestSetGenerator<E> newInstance(TestSetGenerator<E> delegate) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Oct 01 17:18:04 UTC 2021 - 1.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestCollidingSetGenerator.java
/** * A generator using sample elements whose hash codes all collide badly. * * @author Kevin Bourrillion */ @GwtCompatible @NullMarked public abstract class TestCollidingSetGenerator implements TestSetGenerator<Object> { @Override public SampleElements<Object> samples() { return new Colliders(); } @Override public Object[] createArray(int length) { return new Object[length]; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/CloseableIterator.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs; import java.util.Iterator; /** * An iterator that implements AutoCloseable to allow resource cleanup. * This interface combines Iterator functionality with automatic resource management. * * @param <T> the type of elements returned by this iterator * @author mbechler */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java
import org.codelibs.fess.util.ComponentUtil; import org.codelibs.saml2.Auth; import org.lastaflute.web.login.credential.LoginCredential; /** * Credential for SAML authentication. */ public class SamlCredential implements LoginCredential, FessCredential { private final Map<String, List<String>> attributes; private final String nameId; private final String nameIdFormat; private final String sessionIndex;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/LocalUserCredential.java
package org.codelibs.fess.app.web.base.login; import org.lastaflute.web.login.credential.UserPasswordCredential; /** * The credential for a local user. */ public class LocalUserCredential extends UserPasswordCredential implements FessCredential { /** * Creates a new LocalUserCredential with the specified user and password. * * @param user the username * @param password the password */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/EmptyIterator.java
import org.codelibs.core.exception.ClUnsupportedOperationException; /** * An empty {@link Iterator}. * * @author higa * @param <T> the element type */ public class EmptyIterator<T> implements Iterator<T> { /** * Creates an {@link EmptyIterator}. */ public EmptyIterator() { } @Override public void remove() {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/DetectedProfileActivator.java
*/ package org.apache.maven.profiles.activation; import org.apache.maven.model.Profile; /** * DetectedProfileActivator */ @Deprecated public abstract class DetectedProfileActivator implements ProfileActivator { @Override public boolean canDetermineActivation(Profile profile) { return canDetectActivation(profile); } protected abstract boolean canDetectActivation(Profile profile);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 1.2K bytes - Viewed (0)