- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 345 for Doubles (0.04 sec)
-
docs/fr/docs/tutorial/path-params.md
/// tip | Astuce Vous pourriez avoir besoin que le paramètre contienne `/home/johndoe/myfile.txt`, avec un slash au début (`/`). Dans ce cas, l'URL serait : `/files//home/johndoe/myfile.txt`, avec un double slash (`//`) entre `files` et `home`. /// ## Récapitulatif Avec **FastAPI**, en utilisant les déclarations de type rapides, intuitives et standards de Python, vous bénéficiez de :
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 9.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/HashingTest.java
assertEquals(80343, Hashing.consistentHash(2, 100001)); assertEquals(22152, Hashing.consistentHash(2201, 100001)); assertEquals(15018, Hashing.consistentHash(2202, 100001)); } private static final double MAX_PERCENT_SPREAD = 0.5; private static final long RANDOM_SEED = 177L; public void testCombineOrdered_empty() { assertThrows( IllegalArgumentException.class,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 26.4K bytes - Viewed (2) -
src/main/java/org/codelibs/fess/Constants.java
/** Mapping type for long fields. */ public static final String MAPPING_TYPE_LONG = "long"; /** Mapping type for double fields. */ public static final String MAPPING_TYPE_DOUBLE = "double"; /** Mapping type for date fields. */ public static final String MAPPING_TYPE_DATE = "date"; /** Mapping type for PDF date fields. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0) -
guava/src/com/google/common/hash/Hashing.java
private long state; LinearCongruentialGenerator(long seed) { this.state = seed; } double nextDouble() { state = 2862933555777941757L * state + 1; return ((double) ((int) (state >>> 33) + 1)) / 0x1.0p31; } } private Hashing() {}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:06:57 UTC 2025 - 31.1K bytes - Viewed (0) -
CHANGELOG.md
all of them. * Fix: Address a performance bug in `MultipartReader`. We were scanning the entire input stream for a delimiter when we only needed to scan enough to return a result. * Fix: Don't double-compress the public suffix database. OkHttp is usually distributed in a compressed file (like a JAR or APK), so compressing its internal data was redundant.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 19:32:33 UTC 2025 - 31.6K bytes - Viewed (1) -
android/guava-tests/test/com/google/common/base/FunctionsTest.java
.testEquals(); } public void testForMapWildCardWithDefault() { Map<String, Integer> map = new HashMap<>(); map.put("One", 1); map.put("Three", 3); Number number = Double.valueOf(42); Function<String, Number> function = Functions.forMap(map, number); assertEquals(1, function.apply("One").intValue()); assertEquals(number, function.apply("Two"));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 15.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java
assertEquals("{errors.app.db.already.updated}", FessMessages.ERRORS_APP_DB_ALREADY_UPDATED); assertEquals("{errors.app.db.already.exists}", FessMessages.ERRORS_APP_DB_ALREADY_EXISTS); assertEquals("{errors.app.double.submit.request}", FessMessages.ERRORS_APP_DOUBLE_SUBMIT_REQUEST); assertEquals("{errors.login_error}", FessMessages.ERRORS_login_error); assertEquals("{errors.sso_login_error}", FessMessages.ERRORS_sso_login_error);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 28.2K bytes - Viewed (0) -
src/main/resources/fess_message_ja.properties
errors.app.db.already.deleted = 他の処理で削除されている可能性があります。再度、操作をやり直してください。 errors.app.db.already.updated = 他の処理で更新されている可能性があります。再度、操作をやり直してください。 errors.app.db.already.exists = データがすでに存在しています。再度、操作をやり直してください。 errors.app.double.submit.request = このリクエストの前に処理されている場合があります。再度、操作をやり直してください。 # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ # you can define your messages here: # e.g. # errors.xxx = ...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 28 08:40:50 UTC 2025 - 15.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CompactHashSet.java
} /** * Maximum allowed false positive probability of detecting a hash flooding attack given random * input. */ @VisibleForTesting( ) static final double HASH_FLOODING_FPP = 0.001; /** * Maximum allowed length of a hash table bucket before falling back to a j.u.LinkedHashSet based * implementation. Experimentally determined. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 23.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
* * @param value the file size in bytes * @return formatted file size string (e.g., "1.5M", "2.3G", "512K") */ public static String formatFileSize(final long value) { double target = value; String unit = ""; // TODO l10n? String format = "0.#"; if (value < 1024) { format = "0"; } else if (value < 1024L * 1024L) { target /= 1024;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.3K bytes - Viewed (1)