- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for postTags (0.04 seconds)
-
src/main/java/org/codelibs/fess/entity/HighlightInfo.java
public String[] getPostTags() { return postTags; } /** * Sets the custom post-tags for highlighting with fluent interface. * * @param postTags the post-tags to set * @return this HighlightInfo instance for method chaining */ public HighlightInfo postTags(final String... postTags) { this.postTags = postTags; return this; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 05 10:17:07 GMT 2026 - 5.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
final String[] preTags = highlightInfo.getPreTags(); final String[] postTags = highlightInfo.getPostTags(); if (preTags != null) { highlightBuilder.preTags(preTags); } if (postTags != null) { highlightBuilder.postTags(postTags); } queryFieldConfig.highlightedFields(
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) -
src/main/java/org/codelibs/fess/chat/ChatClient.java
.numOfFragments(Integer.parseInt(fessConfig.getOrDefault("rag.chat.highlight.number.of.fragments", "3"))) .preTags(StringUtil.EMPTY) .postTags(StringUtil.EMPTY); } @Override public String getSort() { return null; } @Override public int getStartPosition() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 56.6K bytes - Click Count (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/PosConcatenationFilterFactory.java
if (tagList != null) { posTags.addAll(tagList); } } @Override public TokenStream create(final TokenStream tokenStream) { final PartOfSpeechAttribute posAtt = tokenStream.addAttribute(PartOfSpeechAttribute.class); return new PosConcatenationFilter(tokenStream, posTags, () -> posAtt.getPartOfSpeech()); }
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Mar 15 06:51:20 GMT 2025 - 1.9K bytes - Click Count (0)