Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for highlight_ (0.07 sec)

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

     */
    public class HighlightInfo {
        /** The highlighting type (e.g., plain, html). */
        private String type;
        /** The size of each highlighted fragment in characters. */
        private int fragmentSize;
        /** The maximum number of highlighted fragments to return. */
        private int numOfFragments;
        /** The offset for fragment positioning. */
        private int fragmentOffset;
    
        /**
    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/query/QueryFieldConfig.java

        }
    
        /**
         * Gets the fields that can be highlighted in search results.
         *
         * @return array of field names that can be highlighted
         */
        public String[] getHighlightedFields() {
            return highlightedFields;
        }
    
        /**
         * Sets the fields that can be highlighted in search results.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/query/WildcardQueryCommandTest.java

            assertNotNull(queryBuilder);
    
            // Query was processed successfully
        }
    
        public void test_convertWildcardQuery_emptyHighlight() throws Exception {
            // Test with only wildcards (no highlight text)
            QueryContext queryContext = new QueryContext("***", false);
            WildcardQuery wildcardQuery = new WildcardQuery(new Term(Constants.DEFAULT_FIELD, "***"));
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

    import org.opensearch.common.document.DocumentField;
    import org.opensearch.search.SearchHit;
    import org.opensearch.search.SearchHits;
    import org.opensearch.search.aggregations.Aggregations;
    import org.opensearch.search.fetch.subphase.highlight.HighlightField;
    
    /**
     * Default implementation of RankFusionSearcher that performs standard OpenSearch queries.
     * This searcher handles query execution, response processing, and document highlighting.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                    for (var col = 0; col < 7; col++) {
    
                        var classes = [];
    
                        //highlight today's date
                        if (calendar[row][col].isSame(new Date(), "day"))
                            classes.push('today');
    
                        //highlight weekends
                        if (calendar[row][col].isoWeekday() > 5)
                            classes.push('weekend');
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  6. src/main/webapp/css/admin/adminlte.min.css.map

    #80bdff;\n}\n\n.select2-container--default .select2-primary .select2-results__option--highlighted,\n.select2-primary .select2-container--default .select2-results__option--highlighted {\n  background-color: #007bff;\n  color: #fff;\n}\n\n.select2-container--default .select2-primary .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-primary .select2-results__option--highlighted[aria-selected]:hover,\n.select2-primary .select2-container--default .select2-result...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 3.7M bytes
    - Viewed (1)
  7. src/main/webapp/css/admin/adminlte.min.css

    r--default .select2-red .select2-results__option--highlighted,.select2-red .select2-container--default .select2-results__option--highlighted{background-color:#dc3545;color:#fff}.select2-container--default .select2-red .select2-results__option--highlighted[aria-selected],.select2-container--default .select2-red .select2-results__option--highlighted[aria-selected]:hover,.select2-red .select2-container--default .select2-results__option--highlighted[aria-selected],.select2-red .select2-container--default...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 1.3M bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

        /**
         * Returns the facet info.
         *
         * @return The facet info.
         */
        public abstract FacetInfo getFacetInfo();
    
        /**
         * Returns the highlight info.
         *
         * @return The highlight info.
         */
        public abstract HighlightInfo getHighlightInfo();
    
        /**
         * Returns the sort.
         *
         * @return The sort.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/cache/CacheForm.java

     */
    public class CacheForm {
    
        /** Document ID for cache operations. */
        @Required
        @Size(max = 100)
        public String docId;
    
        /** Highlight query parameters. */
        public String[] hq;
    
        /** Search query parameter for error page. */
        public String q;
    
        /** Number of results parameter for error page. */
        public String num;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/cache/CacheAction.java

        /**
         * Retrieves and displays cached content for a specific document.
         *
         * @param form the cache form containing document ID and highlight query
         * @return ActionResponse containing the cached document content or error redirect
         */
        @Execute
        public ActionResponse index(final CacheForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 3.9K bytes
    - Viewed (0)
Back to top