Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for highlight_ (0.05 seconds)

  1. src/main/resources/fess_config.properties

    query.highlight.encoder=default
    # Whether to force source for query highlighting.
    query.highlight.force.source=false
    # Fragmenter type for query highlighting.
    query.highlight.fragmenter=span
    # Offset for query highlight fragments.
    query.highlight.fragment.offset=-1
    # Size for no-match query highlight.
    query.highlight.no.match.size=0
    # Order for query highlight fragments.
    query.highlight.order=score
    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/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. <strong> */
        String QUERY_HIGHLIGHT_TAG_PRE = "query.highlight.tag.pre";
    
        /** The key of the configuration. e.g. </strong> */
        String QUERY_HIGHLIGHT_TAG_POST = "query.highlight.tag.post";
    
        /** The key of the configuration. e.g. u0009u000Au0013u0020 */
        String QUERY_HIGHLIGHT_BOUNDARY_CHARS = "query.highlight.boundary.chars";
    
    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)
  3. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

            final String contentTitle = (String) item.get("content_title");
            assertTrue(contentTitle.contains("<strong>CodeLibs</strong>"),
                    "content_title should contain highlighted 'CodeLibs': " + contentTitle);
        }
    
        private void testDeleteSearchList() {
            final Map<String, Object> requestBody = new HashMap<>();
            requestBody.put("q", "CodeLibs");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:01:34 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/Constants.java

        /** Request attribute key for storing queries. */
        public static final String REQUEST_QUERIES = "fess.Queries";
    
        /** Request attribute key for storing highlight queries. */
        public static final String HIGHLIGHT_QUERIES = "fess.HighlightQueries";
    
        /** Request attribute key for storing field logs. */
        public static final String FIELD_LOGS = "fess.FieldLogs";
    
    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)
  5. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

    import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
    import org.opensearch.search.collapse.CollapseBuilder;
    import org.opensearch.search.fetch.subphase.highlight.HighlightBuilder;
    import org.opensearch.threadpool.ThreadPool;
    import org.opensearch.transport.client.AdminClient;
    import org.opensearch.transport.client.Client;
    
    import com.fasterxml.jackson.core.type.TypeReference;
    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)
Back to Top