- Sort Score
- Result 10 results
- Languages All
Results 311 - 320 of 378 for enums (0.35 sec)
-
android/guava/src/com/google/common/hash/BloomFilterStrategies.java
* * <p>Important: the order of the constants cannot change, and they cannot be deleted - we depend on * their ordinal for BloomFilter serialization. * * @author Dimitris Andreou * @author Kurt Alfred Kluever */ enum BloomFilterStrategies implements BloomFilter.Strategy { /** * See "Less Hashing, Same Performance: Building a Better Bloom Filter" by Adam Kirsch and Michael
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 10.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java
assertEquals(TypeToken.of(Object.class), new TypeToken<T[]>() {}.getGenericSuperclass()); } public <T extends Enum<T> & Serializable> void testGetGenericSuperclass_typeVariable_boundIsFBoundedClass() { assertEquals( new TypeToken<Enum<T>>() {}, TypeToken.of(new TypeCapture<T>() {}.capture()).getGenericSuperclass());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Sep 02 17:23:59 UTC 2025 - 89K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java
public boolean set(T t) { return super.set(t); } @CanIgnoreReturnValue @Override public boolean setException(Throwable t) { return super.setException(t); } } enum Impl { NEW { @Override <T> Facade<T> newFacade() { return new NewAbstractFutureFacade<T>(); } }, OLD { @Override <T> Facade<T> newFacade() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jan 30 16:59:10 UTC 2025 - 13.7K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
- **MS-SMB2 Section 3.2.4.1.6**: Alternative Channel Creation - **MS-SMB2 Section 3.3.5.15.12**: Channel Binding ## 3. Multi-Channel Architecture ### 3.1 Channel States ```java public enum ChannelState { DISCONNECTED(0), // Not connected CONNECTING(1), // Connection in progress AUTHENTICATING(2), // Authentication in progress ESTABLISHED(3), // Ready for use
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/UnsignedLongs.java
* Arrays::compareUnsigned}. */ public static Comparator<long[]> lexicographicalComparator() { return LexicographicalComparator.INSTANCE; } enum LexicographicalComparator implements Comparator<long[]> { INSTANCE; @Override public int compare(long[] left, long[] right) { int minLength = Math.min(left.length, right.length);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 17.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/ImmutableLongArrayTest.java
} ImmutableLongArray iia = builder.build(); for (int j = 0; j < iia.length(); j++) { assertThat(iia.get(j)).isEqualTo((long) j); } } } private enum BuilderOp { ADD_ONE { @Override void doIt(ImmutableLongArray.Builder builder, AtomicLong counter) { builder.add(counter.getAndIncrement()); } }, ADD_ARRAY {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/jcifs/util/SmbCircuitBreaker.java
*/ public class SmbCircuitBreaker { private static final Logger log = LoggerFactory.getLogger(SmbCircuitBreaker.class); /** * Circuit breaker states */ public enum State { /** * Normal operation - requests pass through */ CLOSED, /** * Service is failing - requests are blocked */ OPEN,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 33.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
/** * Enumeration of predefined statistics actions that can be recorded * during crawler operations. Each action represents a specific event * or milestone in the crawling process. */ public enum StatsAction { /** Indicates that a URL was successfully accessed. */ ACCESSED, /** Indicates that an exception occurred during URL access. */ ACCESS_EXCEPTION,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
private final AtomicLong totalChannelsCreated = new AtomicLong(0); /** * Load balancing strategies for distributing operations across channels. */ public enum LoadBalancingStrategy { /** Round-robin distribution */ ROUND_ROBIN, /** Least connections */ LEAST_CONNECTIONS, /** Random selection */ RANDOM,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMaker.java
* A dummy singleton value type used by {@link Interners}. * * <p>{@link MapMakerInternalMap} can optimize for memory usage in this case; see {@link * MapMakerInternalMap#createWithDummyValues}. */ enum Dummy { VALUE } @CanIgnoreReturnValue MapMaker setValueStrength(Strength strength) { checkState(valueStrength == null, "Value strength was already set to %s", valueStrength);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0)