- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 65 for batean (0.22 sec)
-
src/main/java/org/codelibs/fess/app/service/LabelTypeService.java
if (labelTypeHelper != null) { labelTypeHelper.refresh(getLabelTypeList()); } } /** * Set up list conditions. * * @param cb The condition bean. * @param labelTypePager The pager for label types. */ protected void setupListCondition(final LabelTypeCB cb, final LabelTypePager labelTypePager) { if (StringUtil.isNotBlank(labelTypePager.name)) {
Registered: Sat Dec 20 09:19:18 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/RelatedQueryService.java
* Sets up the search conditions for the related query list based on the pager parameters. * This method configures wildcard searches for term and queries fields, and sets up ordering. * * @param cb the condition bean for building the query * @param relatedQueryPager the pager containing search parameters */ protected void setupListCondition(final RelatedQueryCB cb, final RelatedQueryPager relatedQueryPager) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/KeyMatchService.java
keyMatchBhv.delete(keyMatch, op -> { op.setRefreshPolicy(Constants.TRUE); }); } /** * Set up list conditions. * * @param cb The condition bean. * @param keyMatchPager The pager for key matches. */ protected void setupListCondition(final KeyMatchCB cb, final KeyMatchPager keyMatchPager) { if (StringUtil.isNotBlank(keyMatchPager.term)) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java
/** * Sets up the search conditions for retrieving file authentication configurations. * This method configures the query conditions and ordering for the database query. * * @param cb the condition bean for building the query * @param fileAuthenticationPager the pager containing search criteria */ protected void setupListCondition(final FileAuthenticationCB cb, final FileAuthPager fileAuthenticationPager) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/resources/fess_message_tr.properties
errors.app.db.already.deleted = Başka bir işlem tarafından silinmiş olabilir. Lütfen tekrar deneyin. errors.app.db.already.updated = Başka bir işlem tarafından güncellenmiş olabilir. Lütfen tekrar deneyin. errors.app.db.already.exists = Veri zaten mevcut. Lütfen tekrar deneyin. errors.app.double.submit.request = Bu istekten önce işlenmiş olabilir. Lütfen tekrar deneyin. # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 07 21:12:48 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
protected static final Object[] EMPTY_ARGS = new Object[0]; /** Empty class array */ protected static final Class<?>[] EMPTY_PARAM_TYPES = new Class<?>[0]; /** The class of the bean */ protected final Class<?> beanClass; /** Map of type arguments and type variables */ protected final Map<TypeVariable<?>, Type> typeVariables; /** Map from property name to {@link PropertyDesc} */
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/service/FileConfigService.java
* This method applies various filter conditions based on the pager parameters * including name, paths, and description filters with wildcard and phrase matching. * * @param cb the condition bean for building the database query * @param fileConfigPager the pager containing search filter criteria */ protected void setupListCondition(final FileConfigCB cb, final FileConfigPager fileConfigPager) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java
}); ComponentUtil.getJobHelper().remove(scheduledJob); } /** * Sets up the list condition for the scheduled job query. * @param cb The scheduled job condition bean. * @param scheduledJobPager The scheduled job pager. */ protected void setupListCondition(final ScheduledJobCB cb, final SchedulerPager scheduledJobPager) { if (scheduledJobPager.id != null) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebConfigService.java
} /** * Sets up the list condition for querying web configurations. * Applies search filters based on pager criteria such as name, URLs, and description. * * @param cb The condition bean for the query * @param webConfigPager The pager containing search criteria */ protected void setupListCondition(final WebConfigCB cb, final WebConfigPager webConfigPager) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
/** * Initializes the query processor after construction. * This method creates the initial filter chain from the registered filters. * Called automatically by the DI container after bean construction. */ @PostConstruct public void init() { createFilterChain(); } /** * Executes query processing through the filter chain. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.2K bytes - Viewed (0)