Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for numOfFragments (0.09 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                        stream -> stream.forEach(hf -> highlightBuilder.field(new HighlightBuilder.Field(hf).highlighterType(highlighterType)
                                .fragmentSize(fragmentSize)
                                .numOfFragments(numOfFragments)
                                .boundaryChars(boundaryChars)
                                .boundaryMaxScan(boundaryMaxScan)
                                .boundaryScannerType(boundaryScannerType)
    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)
  2. src/main/java/org/codelibs/fess/chat/ChatClient.java

            public HighlightInfo getHighlightInfo() {
                return new HighlightInfo().fragmentSize(Integer.parseInt(fessConfig.getOrDefault("rag.chat.highlight.fragment.size", "500")))
                        .numOfFragments(Integer.parseInt(fessConfig.getOrDefault("rag.chat.highlight.number.of.fragments", "3")))
                        .preTags(StringUtil.EMPTY)
                        .postTags(StringUtil.EMPTY);
            }
    
    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)
Back to Top