- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getAsLong (0.65 sec)
-
src/test/java/org/codelibs/fess/suggest/settings/SuggestSettingsTest.java
} @Test public void test_setAndGetAsLong() { String key = "key"; long value = Long.MAX_VALUE; settings.set(key, value); assertEquals(value, settings.getAsLong(key, -1)); } @Test public void test_setAndGetAsFloat() { String key = "key"; float value = 0.01F; settings.set(key, value);Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sun Nov 23 13:04:17 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java
} public String getTimeAdjustTimeMillis() { return get(FessEnv.TIME_ADJUST_TIME_MILLIS); } public Long getTimeAdjustTimeMillisAsLong() { return getAsLong(FessEnv.TIME_ADJUST_TIME_MILLIS); } public String getMailSendMock() { return get(FessEnv.MAIL_SEND_MOCK); } public boolean isMailSendMock() {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
* @param key The key of the setting. * @param defaultValue The default value if the setting is not found. * @return The setting value as a long. */ public long getAsLong(final String key, final long defaultValue) { final Object obj = get(key); final long value; if (obj == null) { value = defaultValue; } else {Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 20.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Streams.java
@Beta @InlineMe(replacement = "optional.stream()") @InlineMeValidationDisabled("Java 9+ API only") public static LongStream stream(OptionalLong optional) { return optional.isPresent() ? LongStream.of(optional.getAsLong()) : LongStream.empty(); } /** * If a value is present in {@code optional}, returns a stream containing only that element, * otherwise returns an empty stream. *
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 21 15:40:45 UTC 2025 - 36.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/Streams.java
@Beta @InlineMe(replacement = "optional.stream()") @InlineMeValidationDisabled("Java 9+ API only") public static LongStream stream(OptionalLong optional) { return optional.isPresent() ? LongStream.of(optional.getAsLong()) : LongStream.empty(); } /** * If a value is present in {@code optional}, returns a stream containing only that element, * otherwise returns an empty stream. *
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 36.4K bytes - Viewed (0)