- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for fetchFirst (0.08 sec)
-
src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java
* @return A list of scheduled jobs. */ public List<ScheduledJob> getScheduledJobListAfter(final long updateTime) { return scheduledJobBhv.selectPage(cb -> { cb.fetchFirst(fessConfig.getPageScheduledJobMaxFetchSizeAsInteger()); cb.query().setAvailable_Equal(Boolean.TRUE); cb.query().setUpdatedTime_GreaterThan(updateTime); }); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsSqlClause.java
@Override protected String createFromHint() { return null; } @Override protected String createSqlSuffix() { return null; } @Override public void fetchFirst(int fetchSize) { _fetchScopeEffective = true; if (fetchSize < 0) { String msg = "Argument[fetchSize] should be plus: " + fetchSize; throw new IllegalArgumentException(msg); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsSqlClause.java
@Override protected String createFromHint() { return null; } @Override protected String createSqlSuffix() { return null; } @Override public void fetchFirst(int fetchSize) { _fetchScopeEffective = true; if (fetchSize < 0) { String msg = "Argument[fetchSize] should be plus: " + fetchSize; throw new IllegalArgumentException(msg); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsSqlClause.java
@Override protected String createFromHint() { return null; } @Override protected String createSqlSuffix() { return null; } @Override public void fetchFirst(int fetchSize) { _fetchScopeEffective = true; if (fetchSize < 0) { String msg = "Argument[fetchSize] should be plus: " + fetchSize; throw new IllegalArgumentException(msg); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java
public List<FileAuthentication> getFileAuthenticationList(final String fileConfigId) { return fileAuthenticationBhv.selectList(cb -> { cb.query().setFileConfigId_Equal(fileConfigId); cb.fetchFirst(fessConfig.getPageFileAuthMaxFetchSizeAsInteger()); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
return ComponentUtil.getComponent(RelatedQueryBhv.class).selectList(cb -> { cb.query().matchAll(); cb.query().addOrderBy_Term_Asc(); cb.fetchFirst(ComponentUtil.getFessConfig().getPageRelatedqueryMaxFetchSizeAsInteger()); }); } @Override public int load() { final Map<String, Map<String, String[]>> relatedQueryMap = new HashMap<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedContentService.java
public List<RelatedContent> getAvailableRelatedContentList() { return relatedContentBhv.selectList(cb -> { cb.query().matchAll(); cb.query().addOrderBy_Term_Asc(); cb.fetchFirst(fessConfig.getPageDocboostMaxFetchSizeAsInteger()); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/ElevateWord.java
cb.query().setId_InScope(labelIdList); cb.query().addOrderBy_SortOrder_Asc(); cb.fetchFirst(fessConfig.getPageLabeltypeMaxFetchSizeAsInteger()); }); } } } return labelTypeList; } public String[] getLabelTypeValues() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/PathMappingService.java
return pathMappingBhv.selectList(cb -> { cb.query().addOrderBy_SortOrder_Asc(); cb.query().setProcessType_InScope(processTypeList); cb.fetchFirst(fessConfig.getPagePathMappingMaxFetchSizeAsInteger()); }); } /** * Sets up list condition for path mapping search. * * @param cb the condition bean
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java
*/ public List<WebAuthentication> getWebAuthenticationList(final String webConfigId) { return webAuthenticationBhv.selectList(cb -> { cb.query().setWebConfigId_Equal(webConfigId); cb.fetchFirst(fessConfig.getPageWebAuthMaxFetchSizeAsInteger()); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0)