Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 406 for QUERY (0.02 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsKeyMatch.java

            this.maxSize = value;
        }
    
        public String getQuery() {
            checkSpecifiedProperty("query");
            return convertEmptyToNull(query);
        }
    
        public void setQuery(String value) {
            registerModifiedProperty("query");
            this.query = value;
        }
    
        public String getTerm() {
            checkSpecifiedProperty("term");
            return convertEmptyToNull(term);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/query/TermRangeQueryCommand.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.core.message.UserMessages;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    import org.opensearch.index.query.RangeQueryBuilder;
    
    /**
     * Command class for handling term range query execution and conversion.
     * This class processes Lucene TermRangeQuery objects and converts them to OpenSearch QueryBuilder instances.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/entity/QueryContextTest.java

    import org.opensearch.index.query.BoolQueryBuilder;
    import org.opensearch.index.query.MatchAllQueryBuilder;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    import org.opensearch.index.query.TermQueryBuilder;
    import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder;
    import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder.FilterFunctionBuilder;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/ApiAdminRelatedqueryAction.java

                            .status(ApiResult.Status.OK)
                            .result());
        }
    
        /**
         * Retrieves a specific related query setting by ID.
         *
         * @param id the ID of the related query to retrieve
         * @return JSON response containing the related query configuration
         */
        // GET /api/admin/relatedquery/setting/{id}
        @Execute
        public JsonResponse<ApiResult> get$setting(final String id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

                if (available) {
                    cb.query().setAvailable_Equal(Constants.T);
                }
                if (idList != null) {
                    cb.query().setId_InScope(idList);
                }
                cb.query().setName_NotEqual(ComponentUtil.getFessConfig().getFormAdminDefaultTemplateName());
                cb.query().addOrderBy_SortOrder_Asc();
                cb.query().addOrderBy_Name_Asc();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

         * Sets the time taken to execute the search query in milliseconds.
         *
         * @param queryTime The query execution time in milliseconds
         */
        public void setQueryTime(final long queryTime) {
            this.queryTime = queryTime;
        }
    
        /**
         * Sets the actual search query executed against the search engine.
         *
         * @param searchQuery The search query string
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

         * The search is performed using the current virtual host context and
         * the query term is converted to lowercase for case-insensitive matching.
         *
         * @param query the search term to find related queries for
         * @return an array of related query strings, or empty array if none found
         */
        public String[] getRelatedQueries(final String query) {
            final String key = ComponentUtil.getVirtualHostHelper().getVirtualHostKey();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  8. okhttp-dnsoverhttps/src/test/java/okhttp3/dnsoverhttps/DohProviders.kt

          .Builder()
          .client(bootstrapClient)
          .url("https://dns.google/dns-query".toHttpUrl())
          .bootstrapDnsHosts(getByIp("8.8.4.4"), getByIp("8.8.8.8"))
          .build()
    
      private fun buildGooglePost(bootstrapClient: OkHttpClient): DnsOverHttps =
        DnsOverHttps
          .Builder()
          .client(bootstrapClient)
          .url("https://dns.google/dns-query".toHttpUrl())
          .bootstrapDnsHosts(getByIp("8.8.4.4"), getByIp("8.8.8.8"))
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java

    import org.opensearch.index.query.MatchAllQueryBuilder;
    import org.opensearch.index.query.MatchPhraseQueryBuilder;
    import org.opensearch.index.query.PrefixQueryBuilder;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.TermQueryBuilder;
    import org.opensearch.index.query.WildcardQueryBuilder;
    import org.codelibs.fess.query.DefaultQueryBuilder;
    
    public class BoostQueryCommandTest extends QueryTestBase {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/query/QueryCommandTest.java

     */
    package org.codelibs.fess.query;
    
    import org.apache.lucene.search.Query;
    import org.codelibs.fess.entity.QueryContext;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.query.parser.QueryParser;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    import org.opensearch.index.query.MatchPhraseQueryBuilder;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10K bytes
    - Viewed (0)
Back to top