- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getMinScore (0.73 sec)
-
src/main/java/org/codelibs/fess/entity/SearchRequestParams.java
*/ public String getTrackTotalHits() { return null; } /** * Returns the min score. * * @return The min score. */ public Float getMinScore() { return null; } /** * Returns true if the request has a condition query, otherwise false. * * @return True if the request has a condition query, otherwise false.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
.responseFields(params.getResponseFields()) .searchRequestType(params.getType()) .trackTotalHits(params.getTrackTotalHits()) .minScore(params.getMinScore()) .build(); }; } /** * Parses a search hit from OpenSearch and converts it to a document map. * * @param fessConfig the Fess configuration
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 09:24:04 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
} @Override public String getTrackTotalHits() { return parent.getTrackTotalHits(); } @Override public Float getMinScore() { return parent.getMinScore(); } @Override public boolean hasConditionQuery() { return parent.hasConditionQuery(); } @OverrideRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 27.5K bytes - Viewed (0)