Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Queries (0.03 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsRelatedQueryCQ.java

            return this;
        }
    
        public void setQueries_Equal(String queries) {
            setQueries_Term(queries, null);
        }
    
        public void setQueries_Equal(String queries, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setQueries_Term(queries, opLambda);
        }
    
        public void setQueries_Term(String queries) {
            setQueries_Term(queries, null);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 57.5K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    query.additional.cache.response.fields=
    # Additional highlighted fields for queries.
    query.additional.highlighted.fields=
    # Additional search fields for queries.
    query.additional.search.fields=
    # Additional facet fields for queries.
    query.additional.facet.fields=
    # Additional sort fields for queries.
    query.additional.sort.fields=
    # Additional analyzed fields for queries.
    query.additional.analyzed.fields=
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        /**
         * Replaces search queries with highlighted versions in cached content.
         * Preserves HTML tags while highlighting text content.
         *
         * @param cache the cached content
         * @param queries the search queries to highlight
         * @return the content with highlighted queries
         */
        protected String replaceHighlightQueries(final String cache, final String[] queries) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

        }
    
        private QueryBuilder andQuery(QueryBuilder... queries) {
            BoolQueryBuilder boolQuery = QueryBuilders.boolQuery();
            for (QueryBuilder query : queries) {
                boolQuery.must(query);
            }
            return boolQuery;
        }
    
        private QueryBuilder orQuery(QueryBuilder... queries) {
            BoolQueryBuilder boolQuery = QueryBuilders.boolQuery();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/CharMatcher.java

       * for matchers that only match a few characters, and so on. In the worst-case scenario, it
       * constructs an eight-kilobyte bit array and queries that. In many situations this produces a
       * matcher which is faster to query than the original.
       */
      @GwtIncompatible // SmallCharMatcher
      CharMatcher precomputedInternal() {
        BitSet table = new BitSet();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 53.9K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

     * This kind behavior is consistent with web browsers. `HttpUrl` prefers consistency with major web
     * browsers over consistency with obsolete specifications.
     *
     * ### Paths and Queries should decompose
     *
     * Neither of the built-in URL models offer direct access to path segments or query parameters.
     * Manually using `StringBuilder` to assemble these components is cumbersome: do '+' characters get
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_3x.md

        interface to track metrics and monitor HTTP requests' size and duration.
     *  New: `okhttp-dnsoverhttps` is an experimental API for doing DNS queries over HTTPS. Using HTTPS
        for DNS offers better security and potentially better performance. This feature is a preview:
        the API is subject to change.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
Back to top