Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for Highlight (0.18 sec)

  1. src/main/resources/fess_config.properties

    query.highlight.boundary.max.scan=20
    query.highlight.boundary.scanner=chars
    query.highlight.encoder=default
    query.highlight.force.source=false
    query.highlight.fragmenter=span
    query.highlight.fragment.offset=-1
    query.highlight.no.match.size=0
    query.highlight.order=score
    query.highlight.phrase.limit=256
    query.highlight.content.description.fields=hl_content,digest
    query.highlight.boundary.position.detect=true
    query.highlight.text.fragment.type=query
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  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 */
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  3. 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;
    
    public class DefaultSearcher extends RankFusionSearcher {
    
        private static final Logger logger = LogManager.getLogger(DefaultSearcher.class);
    
        @Override
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  4. docs/en/overrides/partials/copyright.html

    <div class="md-copyright">
        <div class="md-copyright__highlight">
            The FastAPI trademark is owned by <a href="https://tiangolo.com" target="_blank">@tiangolo</a> and is registered in the US and across other regions
        </div>
        {% if not config.extra.generator == false %}
        Made with
        <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
            Material for MkDocs
        </a>
        {% endif %}
    HTML
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sun Feb 04 20:56:59 GMT 2024
    - 450 bytes
    - Viewed (0)
  5. docs/en/mkdocs.maybe-insiders.yml

    # updated and written, and the script would remove the env var
    INHERIT: !ENV [INSIDERS_FILE, '../en/mkdocs.no-insiders.yml']
    markdown_extensions:
      pymdownx.highlight:
    Others
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Fri Jun 30 16:23:02 GMT 2023
    - 285 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/entity/QueryContext.java

            }
            if (isQuery) {
                LaRequestUtil.getOptionalRequest().ifPresent(request -> {
                    highlightedQuerySet = new HashSet<>();
                    request.setAttribute(Constants.HIGHLIGHT_QUERIES, highlightedQuerySet);
                    fieldLogMap = (Map<String, List<String>>) request.getAttribute(Constants.FIELD_LOGS);
                    if (fieldLogMap == null) {
                        fieldLogMap = new HashMap<>();
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  7. 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 21 07:19:11 GMT 2024
    - Last Modified: Sat May 08 17:50:56 GMT 2021
    - 6.6K bytes
    - Viewed (0)
  8. CONTRIBUTING.md

      Push your changes to a topic branch in your fork of the repository.
    + Make commits of logical units.
    + Respect the original code style: by using the same [codestyle][code-style],
      patches should only highlight the actual difference, not being disturbed by any formatting issues:
      + Only use spaces for indentation.
      + Create minimal diffs - disable on save actions like reformat source code or organize imports.
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 10 09:48:27 GMT 2021
    - 4.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top