- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 22 for getLong (0.44 sec)
-
src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java
assertTrue(Modifier.isPrivate(serialVersionField.getModifiers())); serialVersionField.setAccessible(true); assertEquals(1L, serialVersionField.getLong(null)); } /** * Test that all label constants follow the naming convention */ public void test_labelConstantsNamingConvention() throws Exception {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java
private long getSerialVersionUID() { try { java.lang.reflect.Field field = FessMessages.class.getDeclaredField("serialVersionUID"); field.setAccessible(true); return field.getLong(null); } catch (Exception e) { fail("Failed to get serialVersionUID: " + e.getMessage()); return -1; } } // Test error message methods without parameters
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/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java
super.tearDown(); } // Test basic property retrieval public void test_get_basicProperty() { // Test getting a property from the config String value = fessConfig.get("domain.title"); assertEquals("Test Fess", value); // Test getting another property String engineType = fessConfig.get("search_engine.type"); assertEquals("opensearch", engineType); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/TrustedListenableFutureTaskTest.java
package com.google.common.util.concurrent; import static com.google.common.truth.Truth.assertThat; import static com.google.common.util.concurrent.Callables.returning; import static com.google.common.util.concurrent.Futures.getDone; import static com.google.common.util.concurrent.ReflectionFreeAssertThrows.assertThrows; import static com.google.common.util.concurrent.TestPlatform.verifyThreadWasNotInterrupted;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 7.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java
package com.google.common.util.concurrent; import static com.google.common.truth.Truth.assertThat; import static com.google.common.util.concurrent.Futures.allAsList; import static com.google.common.util.concurrent.Futures.getDone; import static com.google.common.util.concurrent.MoreExecutors.directExecutor; import static java.util.concurrent.Executors.newCachedThreadPool; import static java.util.concurrent.Executors.newFixedThreadPool;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 20:58:01 UTC 2025 - 16.1K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/Uninterruptibles.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 19.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractAbstractFutureTest.java
* limitations under the License. */ package com.google.common.util.concurrent; import static com.google.common.truth.Truth.assertThat; import static com.google.common.util.concurrent.Futures.getDone; import static com.google.common.util.concurrent.Futures.immediateFuture; import static com.google.common.util.concurrent.MoreExecutors.directExecutor;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 15.4K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/Futures.java
* .call( * () -> * new UsageHistory( * username, * Futures.getDone(loginDateFuture), * Futures.getDone(recentCommandsFuture)), * executor); * } * * @since 20.0 */ @GwtCompatible public static final class FutureCombiner<V extends @Nullable Object> {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 64.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
// Load data first protwordsFile.reload(null); // Test getting non-existing item OptionalEntity<ProtwordsItem> item = protwordsFile.get(999); assertFalse(item.isPresent()); } public void test_get_withUnloadedData() { // Test getting item when data is not loaded yet OptionalEntity<ProtwordsItem> item = protwordsFile.get(1);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ldap/LdapUserTest.java
assertEquals("role1", permissions[0]); assertEquals("role2", permissions[1]); assertEquals("Uuser", permissions[2]); } public void test_getRoleNames() { // Test getting role names from permissions ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override public String getRoleSearchRolePrefix() { return "R"; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.6K bytes - Viewed (0)