- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for highlightInfo (0.25 sec)
-
src/main/java/org/codelibs/fess/entity/HighlightInfo.java
import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.util.ComponentUtil; public class HighlightInfo { private String type; private int fragmentSize; private int numOfFragments; private int fragmentOffset; public HighlightInfo() { final FessConfig fessConfig = ComponentUtil.getFessConfig(); type = fessConfig.getQueryHighlightType();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
if (width != null) { updateHighlightInfo(highlightInfo, width); } } } return highlightInfo; }).orElse(new HighlightInfo()); } protected void updateHighlightInfo(final HighlightInfo highlightInfo, final int width) { if (width < TABLET_WIDTH) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 40.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java
this.geoInfo = geoInfo; return this; } public SearchConditionBuilder highlightInfo(final HighlightInfo highlightInfo) { this.highlightInfo = highlightInfo; return this; } public SearchConditionBuilder similarDocHash(final String similarDocHash) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Oct 20 02:08:03 UTC 2024 - 86.1K 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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
@Override public String getSimilarDocHash() { throw new UnsupportedOperationException(); } @Override public HighlightInfo getHighlightInfo() { return new HighlightInfo(); } } @Override protected void writeHeaders(final HttpServletResponse response) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 50.3K bytes - Viewed (0)