- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 119 for quer (0.01 sec)
-
src/main/java/org/codelibs/fess/query/TermQueryCommand.java
} @Override public QueryBuilder execute(final QueryContext context, final Query query, final float boost) { if (query instanceof final TermQuery termQuery) { if (logger.isDebugEnabled()) { logger.debug("TermQuery: query={}, boost={}", query, boost); } return convertTermQuery(context, termQuery, boost); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
// Test normal query String query = "test query"; String field = "content"; String[] keywords = SuggestUtil.parseQuery(query, field); assertNotNull(keywords); assertEquals(2, keywords.length); assertEquals("test", keywords[0]); assertEquals("query", keywords[1]); // Test empty queryRegistered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 26.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetQueryView.java
/** * Adds a query to the query map with the specified display key. * * @param key the display key for the query * @param query the query string to add */ public void addQuery(final String key, final String query) { queryMap.put(key, query); } /** * Returns a string representation of this FacetQueryView object. * Includes the title and query map for debugging purposes.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.4K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Nov 23 11:39:05 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/PhraseQueryCommand.java
"Unknown q: " + query.getClass() + " => " + query); } /** * Converts a phrase query to a query builder. * * @param context the query context * @param phraseQuery the phrase query * @param boost the boost factor * @return the query builder */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/BooleanQueryCommand.java
} @Override public QueryBuilder execute(final QueryContext context, final Query query, final float boost) { if (query instanceof final BooleanQuery booleanQuery) { if (logger.isDebugEnabled()) { logger.debug("BooleanQuery: query={}, boost={}", query, boost); } return convertBooleanQuery(context, booleanQuery, boost); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java
*/ @Override public QueryBuilder execute(final QueryContext context, final Query query, final float boost) { if (query instanceof final FuzzyQuery fuzzyQuery) { if (logger.isDebugEnabled()) { logger.debug("FuzzyQuery: query={}, boost={}", query, boost); } return convertFuzzyQuery(context, fuzzyQuery, boost); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedquery/AdminRelatedqueryAction.java
/** * Displays the related query management index page. * * @return HTML response for the related query list page */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index() { return asListHtml(); } /** * Displays a paginated list of related query items. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
* @param boost the boost factor to apply to the query * @return the processed OpenSearch QueryBuilder */ public QueryBuilder execute(final QueryContext context, final Query query, final float boost) { return filterChain.execute(context, query, boost); } /** * Adds a query command to the processor. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/index/contents/querylog/QueryLogTest.java
QueryLog queryLog = new QueryLog("test query", "test filter"); assertNotNull(queryLog); assertEquals("test query", queryLog.getQueryString()); assertEquals("test filter", queryLog.getFilterQueryString()); } @Test public void test_constructorWithNullFilter() throws Exception { QueryLog queryLog = new QueryLog("test query", null); assertNotNull(queryLog);
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Thu Nov 13 00:40:54 UTC 2025 - 3.4K bytes - Viewed (0)