- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 1,031 for implementors (0.07 sec)
-
guava-gwt/test/com/google/common/GuavaTestsEntryPoint.java
*/ package com.google.common; import com.google.gwt.core.client.EntryPoint; /** * A dummy entry point for our tests. * * @author Chris Povirk */ public class GuavaTestsEntryPoint implements EntryPoint { @Override public void onModuleLoad() {}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Jan 18 02:54:30 UTC 2025 - 854 bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LongAddables.java
* * @author Louis Wasserman */ final class LongAddables { public static LongAddable create() { return new GwtLongAddable(); } private static final class GwtLongAddable implements LongAddable { private long value; public void increment() { value++; } public void add(long x) { value += x; } public long sum() { return value;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jan 08 14:27:16 UTC 2025 - 1K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/DirectExecutor.java
import java.util.concurrent.Executor; /** * An {@link Executor} that runs each task in the thread that invokes {@link Executor#execute * execute}. */ @GwtCompatible enum DirectExecutor implements Executor { INSTANCE; @Override public void execute(Runnable command) { command.run(); } @Override public String toString() { return "MoreExecutors.directExecutor()"; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 1.1K bytes - Viewed (0) -
guava/src/com/google/common/cache/LongAddables.java
*/ @GwtCompatible final class LongAddables { public static LongAddable create() { return new JavaUtilConcurrentLongAdder(); } private static final class JavaUtilConcurrentLongAdder extends LongAdder implements LongAddable {} private LongAddables() {}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 1.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/EnumMultiset.java
*/ @GwtCompatible @J2ktIncompatible @SuppressWarnings("EnumOrdinal") // This is one of the low-level utilities where it's suitable. public final class EnumMultiset<E extends Enum<E>> extends AbstractMultiset<E> implements Serializable { /** Creates an empty {@code EnumMultiset}. */ public static <E extends Enum<E>> EnumMultiset<E> create(Class<E> type) { return new EnumMultiset<>(type); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 9.3K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractScheduledService.java
* rate limit the number of queries we perform. * * @author Luke Sandberg * @since 11.0 */ @GwtIncompatible @J2ktIncompatible public abstract class AbstractScheduledService implements Service { private static final LazyLogger logger = new LazyLogger(AbstractScheduledService.class); /** * A scheduler defines the policy for how the {@link AbstractScheduledService} should run its * task.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 27.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/ConnectionPool.kt
import okhttp3.internal.connection.RouteDatabase /** * Manages reuse of HTTP and HTTP/2 connections for reduced network latency. HTTP requests that * share the same [Address] may share a [Connection]. This class implements the policy * of which connections to keep open for future use. * * @constructor Create a new connection pool with tuning parameters appropriate for a single-user
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jun 03 17:10:08 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassIterator.java
* specify {@literal false} for the second argument of {@link #iterable(Class, boolean)} or {@link #ClassIterator(Class, boolean)}. * </p> * * @author koichik */ public class ClassIterator implements Iterator<Class<?>> { /** The class */ protected Class<?> clazz; /** If {@link Object} class should also be iterated, set to {@literal true} */ protected final boolean includeObject; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NetServerEnum2Response.java
*/ package jcifs.smb1.smb1; import jcifs.smb1.util.Hexdump; import jcifs.smb1.util.LogStream; class NetServerEnum2Response extends SmbComTransactionResponse { class ServerInfo1 implements FileEntry { String name; int versionMajor; int versionMinor; int type; String commentOrMasterBrowser; @Override public String getName() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProvider.java
import org.lastaflute.core.security.SecurityResourceProvider; /** * The provider of security resource. * * @author jflute */ public class FessSecurityResourceProvider implements SecurityResourceProvider { protected final InvertibleCryptographer primaryInvertibleCryptographer; protected final OneWayCryptographer primaryOneWayCryptographer;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0)