- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for DocBoostMatcher (0.06 seconds)
-
src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java
/** * Default constructor that creates a DocBoostMatcher with default script type. * Uses the default script engine as defined in Constants.DEFAULT_SCRIPT. */ public DocBoostMatcher() { scriptType = Constants.DEFAULT_SCRIPT; } /** * Constructor that creates a DocBoostMatcher from a BoostDocumentRule. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:03:38 GMT 2026 - 5.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java
} @Test public void test_getValue_nullMap() { final DocBoostMatcher docBoostMatcher = new DocBoostMatcher(); docBoostMatcher.setBoostExpression("10"); assertEquals(0.0f, docBoostMatcher.getValue(null)); } @Test public void test_getValue_emptyMap() { final DocBoostMatcher docBoostMatcher = new DocBoostMatcher();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:03:38 GMT 2026 - 8.8K bytes - Click Count (0)