Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for highlighting (0.08 seconds)

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

  1. src/main/resources/fess_config.properties

    # Whether to detect boundary position in query highlighting.
    query.highlight.boundary.position.detect=true
    # Type for text fragment in query highlighting.
    query.highlight.text.fragment.type=query
    # Size for text fragment in query highlighting.
    query.highlight.text.fragment.size=3
    # Prefix length for text fragment in query highlighting.
    query.highlight.text.fragment.prefix.length=5
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            }
    
            /**
             * The list of documents returned in the search results.
             */
            protected List<Map<String, Object>> docs;
            /**
             * Parameters for highlighting search results.
             */
            protected String highlightParams;
            /**
             * The execution time of the search query.
             */
            protected String execTime;
            /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                throw new UnsupportedOperationException("getSimilarDocHash() is not supported in this implementation");
            }
    
            @Override
            public HighlightInfo getHighlightInfo() {
                return new HighlightInfo();
            }
        }
    
        @Override
        protected void writeHeaders(final HttpServletResponse response) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 27 13:56:32 GMT 2026
    - 55.4K bytes
    - Click Count (1)
Back to Top