- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for setSearcher (0.05 sec)
-
src/main/resources/fess_rankfusion.xml
"http://dbflute.org/meta/lastadi10.dtd"> <components> <component name="rankFusionProcessor" class="org.codelibs.fess.rank.fusion.RankFusionProcessor"> <postConstruct name="setSearcher"> <arg> <component class="org.codelibs.fess.rank.fusion.DefaultSearcher"> </component> </arg> </postConstruct> </component>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 09:24:04 UTC 2025 - 451 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
* If searchers list is empty, adds the searcher; otherwise, replaces the first searcher. * * @param searcher the RankFusionSearcher to set as the main searcher */ public void setSearcher(final RankFusionSearcher searcher) { if (searchers.isEmpty()) { searchers.add(searcher); } else { searchers.set(0, searcher); } } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 27.5K bytes - Viewed (0)