- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 145 for get_query (0.17 sec)
-
src/main/java/org/codelibs/fess/app/web/search/SearchAction.java
createPagingQuery(form); final String[] relatedContents = relatedContentHelper.getRelatedContents(form.getQuery()); RenderDataUtil.register(data, "relatedContents", relatedContents); final String[] relatedQueries = relatedQueryHelper.getRelatedQueries(form.getQuery()); if (relatedQueries.length > 0) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/fe.tld
</example> </function> <function> <description> Returns query parameters for Geo. </description> <name>geoQuery</name> <function-class>org.codelibs.fess.taglib.FessFunctions</function-class> <function-signature>java.lang.String geoQuery()</function-signature> <example> ${fe:geoQuery()} </example> </function> <function> <description>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Dec 23 06:18:48 UTC 2023 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsUserInfoCQ.java
UserInfoCQ cf = new UserInfoCQ(); cqLambda.callback(cf); list.add(new FilterFunctionBuilder(cf.getQuery(), scoreFunctionBuilder)); }); } final FunctionScoreQueryBuilder builder = regFunctionScoreQ(cq.getQuery(), list); if (opLambda != null) { opLambda.callback(builder); } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 20.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/KeyMatchTests.java
return requestBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); updateMap.put("query", "new_query"); return updateMap; } @Test void crudTest() { testCreate(); testRead(); testUpdate(); testDelete(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/SearchForm.java
} catch (final NumberFormatException e) { num = fessConfig.getPagingSearchPageSizeAsInteger(); } } return num; } @Override public String getQuery() { return q; } @Override public String[] getExtraQueries() { return stream(ex_q).get(stream -> stream.filter(StringUtil::isNotBlank).distinct().toArray(n -> new String[n])); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/ListForm.java
public Map<String, String[]> fields = new HashMap<>(); public Map<String, String[]> as = new HashMap<>(); public String[] ex_q; public String sdh; @Override public String getQuery() { return q; } @Override public String[] getExtraQueries() { return stream(ex_q).get(stream -> stream.filter(StringUtil::isNotBlank).distinct().toArray(n -> new String[n])); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/RelatedContentTests.java
return requestBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); updateMap.put("content", "new_query"); return updateMap; } @Test void crudTest() { testCreate(); testRead(); testUpdate(); testDelete(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRequestParams.java
public static final String AS_SITESEARCH = "sitesearch"; public static final String AS_OCCURRENCE = "occt"; public static final String AS_TIMESTAMP = "timestamp"; public abstract String getQuery(); public abstract Map<String, String[]> getFields(); public abstract Map<String, String[]> getConditions(); public abstract String[] getLanguages(); public abstract GeoInfo getGeoInfo();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/UpdateLabelJob.java
try { final long count = searchEngineClient.updateByQuery(fessConfig.getIndexDocumentUpdateIndex(), option -> { if (queryBuilder != null) { option.setQuery(queryBuilder); } return option.setFetchSource(new String[] { fessConfig.getIndexFieldUrl(), fessConfig.getIndexFieldLang() }, null); }, (builder, hit) -> { try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.5K bytes - Viewed (0)