- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 429 for quer (0.02 sec)
-
src/main/java/org/codelibs/fess/app/service/FileConfigService.java
cb.query().setDescription_Wildcard(fileConfigPager.description); } else if (fileConfigPager.description.endsWith("*")) { cb.query().setDescription_Prefix(fileConfigPager.description.replaceAll("\\*$", StringUtil.EMPTY)); } else { cb.query().setDescription_MatchPhrase(fileConfigPager.description); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionSearcher.java
* * @param query the search query string * @param params the search request parameters including pagination, filters, etc. * @param userBean the optional user bean for access control and personalization * @return the search result containing matched documents and metadata */ protected abstract SearchResult search(String query, SearchRequestParams params, OptionalThing<FessUserBean> userBean);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java
import org.codelibs.fess.exception.InvalidQueryException; import org.codelibs.fess.util.ComponentUtil; import org.dbflute.util.DfTypeUtil; import org.opensearch.index.query.MatchPhrasePrefixQueryBuilder; import org.opensearch.index.query.PrefixQueryBuilder; import org.opensearch.index.query.QueryBuilder; public class PrefixQueryCommandTest extends QueryTestBase { private PrefixQueryCommand queryCommand; private QueryFieldConfig queryFieldConfig;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableRangeMapTest.java
assertEquals( ImmutableList.copyOf(asMap.entrySet()).reverse(), ImmutableList.copyOf(descendingMap.entrySet())); for (Range<Integer> query : RANGES) { assertEquals(expectedAsMap.get(query), asMap.get(query)); } } } } } public void testSubRangeMap() { for (Range<Integer> range1 : RANGES) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/job/AllJobScheduler.java
if (StringUtil.isNotBlank(myName)) { ComponentUtil.getComponent(JobLogBhv.class).queryDelete(cb -> { cb.query().setJobStatus_Equal(Constants.RUNNING); cb.query().setTarget_Equal(myName); }); } TimeoutManager.getInstance().addTimeoutTarget(() -> { if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsRelatedQueryCQ.java
import org.opensearch.index.query.RangeQueryBuilder; import org.opensearch.index.query.RegexpQueryBuilder; import org.opensearch.index.query.SpanTermQueryBuilder; import org.opensearch.index.query.TermQueryBuilder; import org.opensearch.index.query.TermsQueryBuilder; import org.opensearch.index.query.WildcardQueryBuilder; import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 57.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsRoleTypeCQ.java
import org.opensearch.index.query.RangeQueryBuilder; import org.opensearch.index.query.RegexpQueryBuilder; import org.opensearch.index.query.SpanTermQueryBuilder; import org.opensearch.index.query.TermQueryBuilder; import org.opensearch.index.query.TermsQueryBuilder; import org.opensearch.index.query.WildcardQueryBuilder; import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 55.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BadWordService.java
* Sets up search conditions for bad word list queries. * @param cb The condition bean for the query. * @param badWordPager The pager containing search criteria. */ protected void setupListCondition(final BadWordCB cb, final BadWordPager badWordPager) { if (badWordPager.id != null) { cb.query().docMeta().setId_Equal(badWordPager.id); } // TODO Long, Integer, String supported only.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
return params; } /** * Sets the search query string. * * @param query the query string * @return this builder for method chaining */ public SearchConditionBuilder query(final String query) { this.query = query; return this; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/cbean/cq/bs/BsGroupCQ.java
import org.opensearch.index.query.RangeQueryBuilder; import org.opensearch.index.query.RegexpQueryBuilder; import org.opensearch.index.query.SpanTermQueryBuilder; import org.opensearch.index.query.TermQueryBuilder; import org.opensearch.index.query.TermsQueryBuilder; import org.opensearch.index.query.WildcardQueryBuilder; import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 20.1K bytes - Viewed (0)