Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for highlight (0.14 sec)

  1. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

        }
    
        public void test_matches_withCss() {
            PrunedTag tag = new PrunedTag("div");
            tag.setCss("highlight");
    
            // Node with matching CSS class
            MockNode nodeWithClass = new MockNode("div");
            nodeWithClass.addAttribute("class", "highlight");
            assertTrue(tag.matches(nodeWithClass));
    
            // Node with multiple classes including target
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 21K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

         */
        public void setFacetResponse(final FacetResponse facetResponse) {
            this.facetResponse = facetResponse;
        }
    
        /**
         * Sets additional highlight parameters to append to URLs.
         *
         * @param appendHighlightParams The highlight parameters string
         */
        public void setAppendHighlightParams(final String appendHighlightParams) {
            this.appendHighlightParams = appendHighlightParams;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/QueryHelper.java

        }
    
        /**
         * Sets the prefix used for highlight field names in search results.
         *
         * @param highlightPrefix the prefix string to use for highlight fields
         */
        public void setHighlightPrefix(final String highlightPrefix) {
            this.highlightPrefix = highlightPrefix;
        }
    
        /**
         * Gets the current highlight prefix used for highlight field names.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. docs/en/mkdocs.yml

      - navigation.instant
      - navigation.instant.prefetch
      - navigation.instant.progress
      - navigation.path
      - navigation.tabs
      - navigation.tabs.sticky
      - navigation.top
      - navigation.tracking
      - search.highlight
      - search.share
      - search.suggest
      - toc.follow
      icon:
        repo: fontawesome/brands/github-alt
      logo: img/icon-white.svg
      favicon: img/favicon.png
      language: en
    repo_name: fastapi/fastapi
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  7. docs/en/docs/fastapi-people.md

    ...But here I want to show you the community.
    
    ---
    
    **FastAPI** receives a lot of support from the community. And I want to highlight their contributions.
    
    These are the people that:
    
    * [Help others with questions in GitHub](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank}.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Jan 28 20:34:56 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/SearchHelperTest.java

            }
    
            @Override
            public Object getAttribute(String name) {
                if (Constants.HIGHLIGHT_QUERIES.equals(name)) {
                    return Collections.singleton("highlight query");
                }
                return null;
            }
    
            @Override
            public Locale getLocale() {
                return locale;
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java

            searchRenderData.setAppendHighlightParams("");
            assertEquals("", searchRenderData.getAppendHighlightParams());
    
            // Test with parameter string
            String params = "&highlight=true&fields=title,content";
            searchRenderData.setAppendHighlightParams(params);
            assertEquals(params, searchRenderData.getAppendHighlightParams());
        }
    
        public void test_setAndGetExecTime() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  10. 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";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
Back to top