- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 538 for esum (0.18 sec)
-
guava/src/com/google/common/util/concurrent/FuturesGetChecked.java
*/ static GetCheckedTypeValidator getBestValidator() { try { @SuppressWarnings("rawtypes") // class literals Class<? extends Enum> theClass = Class.forName(CLASS_VALUE_VALIDATOR_NAME).asSubclass(Enum.class); return (GetCheckedTypeValidator) theClass.getEnumConstants()[0]; } catch (ClassNotFoundException | RuntimeException
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 11.8K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/Crc32cHashFunction.java
^ strideTable[1][(word >>> 16) & 0xFF] ^ strideTable[0][word >>> 24]; } static int combine(int csum, int crc) { csum ^= crc; for (int i = 0; i < 4; i++) { csum = (csum >>> 8) ^ byteTable[csum & 0xFF]; } return csum; } private static final ByteBuffer EMPTY = ByteBuffer.allocate(0); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 01:26:26 UTC 2024 - 21.2K bytes - Viewed (0) -
docs/em/docs/tutorial/path-operation-configuration.md
<img src="/img/tutorial/path-operation-configuration/image01.png"> ### ๐ โฎ๏ธ ๐ข ๐ฅ ๐ โ๏ธ ๐ฆ ๐ธ, ๐ 5๏ธโฃ๐ ๐ ๐ ๐ **๐ ๐**, & ๐ ๐ ๐ โ ๐ญ ๐ ๐ง โ๏ธ **๐ ๐** ๐ *โก ๐ ๏ธ*. ๐ซ ๐ผ, โซ๏ธ ๐ช โ ๐ ๐ช ๐ `Enum`. **FastAPI** ๐โ๐ฆบ ๐ ๐ ๐ โฎ๏ธ โ ๐ป: {* ../../docs_src/path_operation_configuration/tutorial002b.py hl[1,8:10,13,18] *} ## ๐ & ๐ ๐ ๐ช ๐ฎ `summary` & `description`:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeInternalTest.java
@EnumSource(RequestParam.class) @DisplayName("send handles each RequestParam enum constant") void send_eachRequestParam_isAccepted(RequestParam param) throws Exception { // Arrange: stub per-call return to ensure interaction with the exact enum when(tree.send(eq(request), eq(param))).thenReturn(response); // Act
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.6K bytes - Viewed (0) -
guava/src/com/google/common/base/CaseFormat.java
/** * Utility class for converting between various ASCII case formats. Behavior is undefined for * non-ASCII input. * * @author Mike Bostock * @since 1.0 */ @GwtCompatible public enum CaseFormat { /** * Hyphenated variable naming convention, e.g., "lower-hyphen". This format is also colloquially * known as "kebab case". */ LOWER_HYPHEN(CharMatcher.is('-'), "-") { @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Apr 15 22:14:00 UTC 2025 - 6.5K bytes - Viewed (0) -
docs/ja/docs/tutorial/path-params.md
### `Enum` ใฏใฉในใฎไฝๆ `Enum` ใใคใณใใผใใใ `str` ใจ `Enum` ใ็ถๆฟใใใตใใฏใฉในใไฝๆใใพใใ `str` ใ็ถๆฟใใใใจใงใAPIใใญใฅใกใณใใฏๅคใ `ๆๅญๅ` ใงใชใใใฐใใใชใใใจใ็ฅใใๆญฃ็ขบใซใฌใณใใชใณใฐใงใใใใใซใชใใพใใ ใใใฆใๅบๅฎๅคใฎใฏใฉในๅฑๆงใไฝใใพใใใใใจใใใฎๅคใไฝฟ็จๅฏ่ฝใชๅคใจใชใใพใ: {* ../../docs_src/path_params/tutorial005.py hl[1,6,7,8,9] *} /// info | ๆ ๅ ฑ
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 10.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/AtomicLongMapBasherTest.java
} })); } threadPool.shutdown(); assertTrue(threadPool.awaitTermination(300, SECONDS)); long sum = 0; for (Future<Long> f : futures) { sum += f.get(); } assertEquals(sum, map.get(key)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/CrawlingConfig.java
if (StringUtil.isNotBlank(scriptType)) { return scriptType; } return Constants.DEFAULT_SCRIPT; } public enum ConfigType { WEB("W"), FILE("F"), DATA("D"); private final String typePrefix; ConfigType(final String typePrefix) { this.typePrefix = typePrefix; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 5.6K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/collect/BinaryTreeTraverserBenchmark.java
final Optional<BinaryNode> right; BinaryNode(int x, Optional<BinaryNode> left, Optional<BinaryNode> right) { this.x = x; this.left = left; this.right = right; } } enum Topology { BALANCED { @Override Optional<BinaryNode> createTree(int size, Random rng) { if (size == 0) { return Optional.absent(); } else {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 4.9K bytes - Viewed (0) -
cmd/metrics-v3-cache.go
totalDrives := onlineDrives.Merge(offlineDrives) v = storageMetrics{ storageInfo: storageInfo, onlineDrives: onlineDrives.Sum(), offlineDrives: offlineDrives.Sum(), totalDrives: totalDrives.Sum(), ioStats: map[string]driveIOStatMetrics{}, } currentStats := getCurrentDriveIOStats() now := time.Now().UTC() prevDriveIOStatsMu.Lock()
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Mar 30 00:56:02 UTC 2025 - 8K bytes - Viewed (0)