- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getUpdatedSource (0.2 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/suggest/entity/SuggestItemTest.java
assertEquals("document", SuggestItem.Kind.DOCUMENT.toString()); assertEquals("user", SuggestItem.Kind.USER.toString()); } @Test public void testGetUpdatedSource() { // Test getUpdatedSource method String[] text = { "test" }; String[][] readings = { { "test" } }; SuggestItem item = new SuggestItem(text, readings, null, 10L, 20L, 1.0f, null, null, null, SuggestItem.Kind.QUERY);
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Mon Sep 01 13:33:03 GMT 2025 - 16.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java
/** * Returns the updated source map by merging with existing source. * @param existingSource The existing source map. * @return The updated source map. */ public Map<String, Object> getUpdatedSource(final Map<String, Object> existingSource) { return SuggestItemSerializer.toUpdatedSource(this, existingSource); } /** * Concatenates values to a destination list, avoiding duplicates.Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 13.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/writer/SuggestIndexWriter.java
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Thu Nov 20 08:32:33 GMT 2025 - 4.5K bytes - Click Count (0)