- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 89 for quer (0.09 sec)
-
src/main/java/org/codelibs/fess/query/QueryCommand.java
/** * Gets the class name of the query this command handles. * @return The query class name. */ protected abstract String getQueryClassName(); /** * Registers this query command with the query processor. * Associates this command with its query class name in the processor. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java
} /** * Executes the fuzzy query command to convert a Lucene FuzzyQuery into an OpenSearch QueryBuilder. * * @param context the query context containing search configuration * @param query the Lucene query to convert (must be a FuzzyQuery) * @param boost the boost factor to apply to the query * @return OpenSearch QueryBuilder for fuzzy matching
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryStringBuilder.java
} /** * Appends a query string to the query buffer with proper formatting. * Handles OR operators and wraps complex queries in parentheses when necessary. * * @param queryBuf the StringBuilder to append to * @param query the query string to append */ protected void appendQuery(final StringBuilder queryBuf, final String query) { String q = query;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/search/SearchApiTests.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/TermRangeQueryCommandTest.java
QueryContext context = new QueryContext("test", false); TermRangeQuery query = new TermRangeQuery("title", new BytesRef("aaa"), new BytesRef("zzz"), true, true); QueryBuilder builder = queryCommand.convertTermRangeQuery(context, query, 1.0f); assertNotNull(builder); assertTrue(builder instanceof RangeQueryBuilder); // Query was processed successfully RangeQueryBuilder rqb = (RangeQueryBuilder) builder;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 2.6K bytes - Viewed (0) -
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) -
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) -
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) -
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) -
src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
/** * Performs a search operation using the specified query and parameters. * * @param query the search query string * @param params the search request parameters * @param userBean the optional user bean for access control * @return the search result containing documents and metadata */ @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.6K bytes - Viewed (0)