- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 72 for k1 (0.01 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/util/DocMap.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.7K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableSetMultimap.java
} /** Returns an immutable multimap containing a single entry. */ public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1) { ImmutableSetMultimap.Builder<K, V> builder = ImmutableSetMultimap.builder(); builder.put(k1, v1); return builder.build(); } /** * Returns an immutable multimap containing the given entries, in order. Repeated occurrences of
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Feb 19 22:57:35 GMT 2026 - 26.1K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ImmutableMultimap.java
public static <K, V> ImmutableMultimap<K, V> of(K k1, V v1) { return ImmutableListMultimap.of(k1, v1); } /** Returns an immutable multimap containing the given entries, in order. */ public static <K, V> ImmutableMultimap<K, V> of(K k1, V v1, K k2, V v2) { return ImmutableListMultimap.of(k1, v1, k2, v2); } /**
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Dec 09 15:58:48 GMT 2025 - 27.1K bytes - Click Count (0) -
internal/bucket/lifecycle/rule_test.go
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed May 01 01:11:10 GMT 2024 - 4.9K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/ImmutableMultimapTest.java
ImmutableMultimap<String, String> setMultimapCopy = ImmutableMultimap.copyOf(setMultimap); assertWithMessage("copyOf(ImmutableSetMultimap) should not create a new instance") .that(setMultimapCopy) .isSameInstanceAs(setMultimap); ImmutableListMultimap<String, String> listMultimap = ImmutableListMultimap.of("k1", "v1");
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 6.9K bytes - Click Count (0) -
docs/debugging/hash-set/main.go
if cardinality <= 0 { return -1 } // use the faster version as per siphash docs // https://github.com/dchest/siphash#usage k0, k1 := binary.LittleEndian.Uint64(id[0:8]), binary.LittleEndian.Uint64(id[8:16]) sum64 := siphash.Hash(k0, k1, []byte(key)) return int(sum64 % uint64(cardinality)) } // hashOrder - hashes input key to return consistent // hashed integer slice. Returned integer order is salted
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Mon Sep 19 18:05:16 GMT 2022 - 3.7K bytes - Click Count (0) -
build-tools-internal/src/main/resources/test/ssl/test-client.key
r9LhUHh+WS0669aQBDX8BOYlb8RTTKUyLeEBNk1Pp12oCbtJP6cXUYrw/BCkfahV famzReBq+U/uUFDTGij8wE3jlGuRx+iubj99FDBqDwdvyGZuOIRXnC/10X8Zyck6 A15nOfxOm5faBvc38YFf9GCfZsavM9o+ezYh7yh1X1RLF6Dr7/Tg3nOa/JYz5RjG K1+79u0oKOgb0L8NK9elp2YKdpt7XkhBl1QkbokimA8B9j0h4hgE/OwINwluOlKf MforwvAp+7IeaMeJQZ79/A==
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 2K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java
SubtypeOfWithFalseRecursiveType<List<V>, List<K>> evenSubtypeWorks(); } private interface SubtypeOfWithFalseRecursiveType<K1, V1> extends WithFalseRecursiveType<List<K1>, List<V1>> { SubtypeOfWithFalseRecursiveType<V1, K1> revertKeyAndValueTypes(); } public void testFalseRecursiveType_mappingOnTheSameDeclarationNotUsed() { Type returnType =Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 19.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java
SubtypeOfWithFalseRecursiveType<List<V>, List<K>> evenSubtypeWorks(); } private interface SubtypeOfWithFalseRecursiveType<K1, V1> extends WithFalseRecursiveType<List<K1>, List<V1>> { SubtypeOfWithFalseRecursiveType<V1, K1> revertKeyAndValueTypes(); } public void testFalseRecursiveType_mappingOnTheSameDeclarationNotUsed() { Type returnType =Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 19.6K bytes - Click Count (0) -
internal/kms/config_test.go
}, IsPresent: true, }, { // 2 Env: map[string]string{ EnvKMSEndpoint: "https://127.0.0.1:7373", EnvKMSDefaultKey: "minio-key", EnvKMSEnclave: "demo", EnvKMSAPIKey: "k1:MBDtmC9ZAf3Wi4-oGglgKx_6T1jwJfct1IC15HOxetg", }, IsPresent: true, }, { // 3 Env: map[string]string{ EnvKESEndpoint: "https://127.0.0.1:7373", EnvKESDefaultKey: "minio-key",Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Feb 18 16:25:55 GMT 2025 - 2.7K bytes - Click Count (0)