- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for setBoostExpression (0.09 sec)
-
src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java
} }.register(); } public void test_integer() { final DocBoostMatcher docBoostMatcher = new DocBoostMatcher(); docBoostMatcher.setBoostExpression("10"); docBoostMatcher.setMatchExpression("data1 > 10"); final Map<String, Object> map = new HashMap<String, Object>(); assertTrue(0.0f == docBoostMatcher.getValue(map));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java
return boostExpression; } /** * Sets the boost expression used to calculate boost values. * * @param expression the boost expression string */ public void setBoostExpression(final String expression) { boostExpression = expression; } /** * Gets the current match expression. * * @return the match expression string */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.8K bytes - Viewed (0)