- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for HighlightInfo (0.06 sec)
-
src/main/java/org/codelibs/fess/helper/ViewHelper.java
* Adjusts fragment size for mobile devices. * * @return the highlight information */ public HighlightInfo createHighlightInfo() { return LaRequestUtil.getOptionalRequest().map(req -> { final HighlightInfo highlightInfo = new HighlightInfo(); final String widthStr = req.getParameter(SCREEN_WIDTH); if (StringUtil.isNotBlank(widthStr)) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 52.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
throw new UnsupportedOperationException("getSimilarDocHash() is not supported in this implementation"); } @Override public HighlightInfo getHighlightInfo() { return new HighlightInfo(); } } @Override protected void writeHeaders(final HttpServletResponse response) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 55.4K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
.size(params.getPageSize()) .facetInfo(params.getFacetInfo()) .geoInfo(params.getGeoInfo()) .highlightInfo(params.getHighlightInfo()) .similarDocHash(params.getSimilarDocHash()) .responseFields(params.getResponseFields()) .searchRequestType(params.getType())
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
import org.codelibs.core.stream.StreamUtil; import org.codelibs.fess.Constants; import org.codelibs.fess.entity.FacetInfo; import org.codelibs.fess.entity.GeoInfo; import org.codelibs.fess.entity.HighlightInfo; import org.codelibs.fess.entity.SearchRequestParams; import org.codelibs.fess.mylasta.action.FessUserBean; import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.util.ComponentUtil;
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 27.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
/** * Sets the highlighting information. * * @param highlightInfo the highlighting configuration * @return this builder for method chaining */ public SearchConditionBuilder highlightInfo(final HighlightInfo highlightInfo) { this.highlightInfo = highlightInfo; return this; } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 122.4K bytes - Viewed (1)