Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fragmentSize (5.05 sec)

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

                queryFieldConfig.highlightedFields(
                        stream -> stream.forEach(hf -> highlightBuilder.field(new HighlightBuilder.Field(hf).highlighterType(highlighterType)
                                .fragmentSize(fragmentSize)
                                .numOfFragments(numOfFragments)
                                .boundaryChars(boundaryChars)
                                .boundaryMaxScan(boundaryMaxScan)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 122.4K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            if (width < TABLET_WIDTH) {
                float ratio = (float) width / (float) TABLET_WIDTH;
                if (ratio < 0.5) {
                    ratio = 0.5f;
                }
                highlightInfo.fragmentSize((int) (highlightInfo.getFragmentSize() * ratio));
            }
        }
    
        /**
         * Gets the URL link for a document with proper protocol handling.
         * Handles file, SMB, FTP, and HTTP protocols.
         *
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 52.6K bytes
    - Viewed (0)
Back to top