- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 31 for highlighting (0.07 seconds)
-
src/main/java/org/codelibs/fess/Constants.java
/** Text fragments feature identifier. */ public static final String TEXT_FRAGMENTS = "text_fragments"; /** Text fragment type for query highlighting. */ public static final String TEXT_FRAGMENT_TYPE_QUERY = "query"; /** Text fragment type for result highlighting. */ public static final String TEXT_FRAGMENT_TYPE_HIGHLIGHT = "highlight"; /** Crawler statistics key identifier. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 35.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* comment: Unicode terminal characters for query highlighting. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getQueryHighlightTerminalChars(); /** * Get the value for the key 'query.highlight.fragment.size'. <br> * The value is, e.g. 60 <br> * comment: Fragment size for query highlighting.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 576.9K bytes - Click Count (2) -
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; } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 138.6K bytes - Click Count (1) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed May 21 06:20:45 GMT 2025 - 29.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
if (input == null) { return StringUtil.EMPTY; } return input.toString().replaceAll(regex, replacement); } /** * Formats code content with syntax highlighting and line numbers. * * @param prefix the line number prefix pattern * @param style the CSS class name for styling * @param mimetype the MIME type of the content (currently unused)
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 25.4K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
viewHelper.init(); HighlightInfo highlightInfo = new HighlightInfo(); int originalSize = highlightInfo.getFragmentSize(); viewHelper.updateHighlightInfo(highlightInfo, 500); Assertions.assertEquals((int) (originalSize * 0.65), highlightInfo.getFragmentSize(), 10); highlightInfo = new HighlightInfo(); viewHelper.updateHighlightInfo(highlightInfo, 300);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 27.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 26.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java
} @Override public String getSimilarDocHash() { return null; } @Override public HighlightInfo getHighlightInfo() { return new HighlightInfo(); } @Override public boolean hasConditionQuery() { return conditions != null && !conditions.isEmpty(); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/ListForm.java
return null; } @Override public FacetInfo getFacetInfo() { return null; } @Override public HighlightInfo getHighlightInfo() { return new HighlightInfo(); } @Override public String getSort() { return sort; } /** * Initializes the form with default values from configuration.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java
import java.util.HashMap; import java.util.Map; 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.direction.FessConfig; import org.codelibs.fess.opensearch.log.exentity.SearchLog; import org.codelibs.fess.unit.UnitFessTestCase;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 16.6K bytes - Click Count (0)