- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for setMatchExpression (0.81 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)); map.put("data1", 20);
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
} /** * Sets the match expression used to determine if documents should be boosted. * * @param expression the match expression string */ public void setMatchExpression(final String expression) { matchExpression = expression; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.8K bytes - Viewed (0)