- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for setUserBoost (0.46 sec)
-
src/test/java/org/codelibs/fess/suggest/entity/SuggestItemTest.java
assertEquals(200L, item.getQueryFreq()); // Test document frequency item.setDocFreq(150L); assertEquals(150L, item.getDocFreq()); // Test user boost item.setUserBoost(2.0f); assertEquals(2.0f, item.getUserBoost(), 0.001f); // Test readings String[][] newReadings = { { "read1", "read2" }, { "read3" } }; item.setReadings(newReadings);
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/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java
this.docFreq = docFreq; } /** * Sets the user boost of the suggest item. * @param userBoost The user boost to set. */ public void setUserBoost(final float userBoost) { this.userBoost = userBoost; } /** * Sets the readings of the suggest item. * @param readings The readings to set. */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 25.1K bytes - Viewed (0)