- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for READING1 (0.05 sec)
-
src/test/java/org/codelibs/fess/suggest/entity/ElevateWordTest.java
assertArrayEquals(new String[] { "reading1" }, itemReadings[0]); } @Test public void testToSuggestItemWithNullTagsAndRoles() { // Test toSuggestItem when tags and roles are null (converted to empty lists) String word = "null tags and roles"; float boost = 1.0f; List<String> readings = Arrays.asList("reading1"); List<String> fields = Arrays.asList("field1");
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 16K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/entity/SuggestItemTest.java
public class SuggestItemTest { @Test public void testParameterizedConstructor() { // Test constructor with all parameters String[] text = { "test", "text" }; String[][] readings = { { "reading1" }, { "reading2" } }; String[] fields = { "field1", "field2" }; String[] tags = { "tag1", "tag2" }; String[] roles = { "role1", "role2" }; String[] languages = { "en", "ja" };
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 16.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
} @Test public void testCreateBulkLine() { // Test creating bulk line for indexing SuggestItem item = new SuggestItem(new String[] { "test text" }, new String[][] { { "reading1" }, { "reading2" } }, new String[] { "field1", "field2" }, 10, // queryFreq 5, // docFreq 2.0f, // userBoost
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 18.2K bytes - Viewed (0)