- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 350 for doubles (0.08 sec)
-
src/main/java/org/codelibs/core/misc/AssertionUtil.java
* @throws EmptyArgumentException * If the argument is <code>null</code> or an empty array. */ public static void assertArgumentNotEmpty(final String argName, final double[] argValue) { if (ArrayUtil.isEmpty(argValue)) { throw new EmptyArgumentException(argName, "ECL0011", asArray(argName)); } } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java
*/ public long dec_ndr_hyper() { align(8); final long val = Encdec.dec_uint64le(this.buf, this.index); advance(8); return val; } /* float */ /* double */ /** * Encodes a string in NDR format. * * @param s the string to encode */ public void enc_ndr_string(final String s) { align(4); int i = this.index;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.7K bytes - Viewed (0) -
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)