Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for fragmentSize (0.5 sec)

  1. src/main/java/org/codelibs/fess/entity/HighlightInfo.java

         */
        public int getFragmentSize() {
            return fragmentSize;
        }
    
        /**
         * Sets the fragment size with fluent interface.
         *
         * @param fragmentSize the fragment size in characters
         * @return this HighlightInfo instance for method chaining
         */
        public HighlightInfo fragmentSize(final int fragmentSize) {
            this.fragmentSize = fragmentSize;
            return this;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  3. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
Back to top