Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for Highlight (0.18 sec)

  1. src/main/java/org/codelibs/fess/helper/ViewHelper.java

    import org.lastaflute.web.util.LaRequestUtil;
    import org.lastaflute.web.util.LaServletContextUtil;
    import org.opensearch.core.common.text.Text;
    import org.opensearch.search.fetch.subphase.highlight.HighlightField;
    
    import com.github.jknack.handlebars.Context;
    import com.github.jknack.handlebars.Handlebars;
    import com.github.jknack.handlebars.Template;
    import com.github.jknack.handlebars.io.FileTemplateLoader;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 40.1K bytes
    - Viewed (2)
  2. docs/en/docs/js/custom.js

        const customPromptLiteralStart = "# ";
        const termynalActivateClass = "termy";
        let termynals = [];
    
        function createTermynals() {
            document
                .querySelectorAll(`.${termynalActivateClass} .highlight`)
                .forEach(node => {
                    const text = node.textContent;
                    const lines = text.split("\n");
                    const useLines = [];
                    let buffer = [];
    JavaScript
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat May 08 17:50:56 GMT 2021
    - 6.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/Constants.java

        public static final String TEXT_FRAGMENTS = "text_fragments";
    
        public static final String TEXT_FRAGMENT_TYPE_QUERY = "query";
    
        public static final String TEXT_FRAGMENT_TYPE_HIGHLIGHT = "highlight";
    
        public static final String CRAWLER_STATS_KEY = "crawler.stats.key";
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  4. 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}.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 16 23:54:24 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/SearchHelper.java

            data.setFacetResponse(queryResponseList.getFacetResponse());
    
            @SuppressWarnings("unchecked")
            final Set<String> highlightQueries = (Set<String>) params.getAttribute(Constants.HIGHLIGHT_QUERIES);
            if (highlightQueries != null) {
                final StringBuilder buf = new StringBuilder(100);
                highlightQueries.stream().forEach(q -> {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  6. scripts/docs.py

        build-all.
    
        Takes an optional LANG argument with the name of the language to serve, by default
        en.
        """
        # Enable line numbers during local development to make it easier to highlight
        os.environ["LINENUMS"] = "true"
        if lang is None:
            lang = "en"
        lang_path: Path = docs_path / lang
        os.chdir(lang_path)
        mkdocs.commands.serve.serve(dev_addr="127.0.0.1:8008")
    
    
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Mon Jan 22 19:26:14 GMT 2024
    - 10.9K bytes
    - Viewed (1)
  7. docs/en/mkdocs.yml

        scheme: slate
        primary: teal
        accent: amber
        toggle:
          icon: material/lightbulb-outline
          name: Switch to light mode
      features:
      - search.suggest
      - search.highlight
      - content.tabs.link
      - navigation.indexes
      - content.tooltips
      - navigation.path
      - content.code.annotate
      - content.code.copy
      - content.code.select
      - navigation.tabs
      icon:
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Mon Apr 01 16:48:56 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

    import org.opensearch.search.sort.SortOrder;
    
    public interface FessProp {
    
        String API_PING_SEARCH_ENGINE_FIELD_SET = "apiPingSearchEngineFieldSet";
    
        String QUERY_HIGHLIGHT_TERMINAL_CHARS = "queryHighlightTerminalChars";
    
        String QUERY_HIGHLIGHT_BOUNDARY_CHARS = "queryHighlightBoundaryChars";
    
        String QUERY_TRACK_TOTAL_HITS_VALUE = "queryTrackTotalHitsValue";
    
        String CORS_ALLOW_ORIGIN = "CorsAllowOrigin";
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  9. src/main/config/openapi/openapi-user.yaml

                        format: int64
                        example: 31625
                      page_count:
                        type: integer
                        example: 1
                      highlight_params:
                        type: string
                        example: "&hq=n2sm&hq=Fess"
                      next_page:
                        type: boolean
                        example: true
                      prev_page:
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Jun 19 13:30:00 GMT 2023
    - 21.6K bytes
    - Viewed (1)
  10. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                buf.append(escapeJson(allRecordCountRelation));
                buf.append(',');
                buf.append("\"page_count\":");
                buf.append(allPageCount);
                buf.append(",\"highlight_params\":");
                buf.append(escapeJson(highlightParams));
                buf.append(",\"next_page\":");
                buf.append(escapeJson(nextPage));
                buf.append(",\"prev_page\":");
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 02:17:23 GMT 2024
    - 50.3K bytes
    - Viewed (0)
Back to top