- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 35 for test716 (0.07 seconds)
-
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
// Add first document - should trigger indexing because cache size is 1 Map<String, Object> dataMap1 = new HashMap<>(); dataMap1.put("url", "http://example.com/test1"); indexUpdateCallback.store(paramMap, dataMap1); assertEquals(1, indexingHelper.sendDocumentsCalled); // Add second document - should trigger indexing againCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/DocMapTest.java
DocMap docMap = new DocMap(value); assertTrue(docMap.isEmpty()); value.clear(); List<String> keys = Arrays.asList("test_2", "test_0", "lang", "test_1"); value.put(keys.get(0), true); value.put(keys.get(1), 1000); value.put(keys.get(2), "ja"); value.put(keys.get(3), "str"); docMap = new DocMap(value);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.7K bytes - Click Count (0) -
src/test/java/jcifs/util/ResourceManagerTest.java
return name; } } @Test @DisplayName("Test resource registration and tracking") void testResourceRegistration() { TestResource resource = new TestResource("test1"); String resourceId = resourceManager.registerResource(resource); assertNotNull(resourceId); assertTrue(resourceId.contains("TestResource"));Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 8.9K bytes - Click Count (0) -
guava-tests/test/com/google/common/primitives/ImmutableLongArrayTest.java
.inOrder(); } public void testOf5() { assertThat(ImmutableLongArray.of(0, 1, 3, 6, 10).asList()) .containsExactly(0L, 1L, 3L, 6L, 10L) .inOrder(); } public void testOf6() { assertThat(ImmutableLongArray.of(0, 1, 3, 6, 10, 15).asList()) .containsExactly(0L, 1L, 3L, 6L, 10L, 15L) .inOrder(); } public void testOf7() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 12 14:49:24 GMT 2025 - 20.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/MemoryUtilTest.java
} @Test public void test_sizeOf_complexNestedStructures() { // Complex nested structure Map<String, Object> complexMap = new HashMap<>(); complexMap.put("strings", Arrays.asList("test1", "test2")); complexMap.put("numbers", Arrays.asList(1, 2, 3)); complexMap.put("nested", Maps.map("inner", "value").$()); complexMap.put("array", new String[] { "array1", "array2" });Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/primitives/ImmutableDoubleArrayTest.java
.inOrder(); } public void testOf5() { assertThat(ImmutableDoubleArray.of(0, 1, 3, 6, 10).asList()) .containsExactly(0.0, 1.0, 3.0, 6.0, 10.0) .inOrder(); } public void testOf6() { assertThat(ImmutableDoubleArray.of(0, 1, 3, 6, 10, 15).asList()) .containsExactly(0.0, 1.0, 3.0, 6.0, 10.0, 15.0) .inOrder(); } public void testOf7() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 21.5K bytes - Click Count (0) -
guava-tests/test/com/google/common/primitives/ImmutableIntArrayTest.java
} public void testOf5() { assertThat(ImmutableIntArray.of(0, 1, 3, 6, 10).asList()) .containsExactly(0, 1, 3, 6, 10) .inOrder(); } public void testOf6() { assertThat(ImmutableIntArray.of(0, 1, 3, 6, 10, 15).asList()) .containsExactly(0, 1, 3, 6, 10, 15) .inOrder(); } public void testOf7() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 12 14:49:24 GMT 2025 - 20.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
assertNull(System.getProperty("fess." + now)); assertNull(System.getProperty("test." + now)); appValue.set("=abc\nfess." + now + "=test1\ntest." + now + "=test2"); helper.updateSystemProperties(); assertEquals("test1", System.getProperty("fess." + now)); assertEquals("test2", System.getProperty("test." + now)); } @Test public void test_getCurrentTime() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 44.4K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/primitives/ImmutableIntArrayTest.java
} public void testOf5() { assertThat(ImmutableIntArray.of(0, 1, 3, 6, 10).asList()) .containsExactly(0, 1, 3, 6, 10) .inOrder(); } public void testOf6() { assertThat(ImmutableIntArray.of(0, 1, 3, 6, 10, 15).asList()) .containsExactly(0, 1, 3, 6, 10, 15) .inOrder(); } public void testOf7() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 20.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/primitives/ImmutableDoubleArrayTest.java
.inOrder(); } public void testOf5() { assertThat(ImmutableDoubleArray.of(0, 1, 3, 6, 10).asList()) .containsExactly(0.0, 1.0, 3.0, 6.0, 10.0) .inOrder(); } public void testOf6() { assertThat(ImmutableDoubleArray.of(0, 1, 3, 6, 10, 15).asList()) .containsExactly(0.0, 1.0, 3.0, 6.0, 10.0, 15.0) .inOrder(); } public void testOf7() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 12 14:49:24 GMT 2025 - 21.9K bytes - Click Count (0)