- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 322 for fess_config (0.58 sec)
-
src/main/java/org/codelibs/fess/app/service/ProtwordsService.java
} /** Dictionary manager for handling dictionary files */ @Resource protected DictionaryManager dictionaryManager; /** Configuration for Fess */ @Resource protected FessConfig fessConfig; /** * Gets a paginated list of protected words items. * @param dictId the dictionary ID * @param protwordsPager the pager for pagination * @return the list of protected words itemsRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RoleTypeService.java
} /** * The behavior for role types. */ @Resource protected RoleTypeBhv roleTypeBhv; /** * The Fess configuration. */ @Resource protected FessConfig fessConfig; /** * Gets a list of role types based on the pager. * @param roleTypePager The pager for role types. * @return A list of role types. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
final ServletContext servletContext = ComponentUtil.getComponent(ServletContext.class); final ProcessHelper processHelper = ComponentUtil.getProcessHelper(); final FessConfig fessConfig = ComponentUtil.getFessConfig(); cmdList.add(fessConfig.getJavaCommandPath()); // -cp cmdList.add("-cp"); final StringBuilder buf = new StringBuilder(100);
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java
} /** Database behavior for boost document rule operations. */ @Resource protected BoostDocumentRuleBhv boostDocumentRuleBhv; /** Fess configuration. */ @Resource protected FessConfig fessConfig; /** * Gets a paginated list of boost document rules. * @param boostDocumentRulePager The pager with search criteria and pagination settings.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProvider.java
return false; } @Override public OptionalThing<Locale> findBusinessLocale(final ActionRuntime runtimeMeta, final RequestManager requestManager) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String name = fessConfig.getQueryBrowserLangParameterName(); if (StringUtil.isNotBlank(name)) { try {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessFileTransformer.java
} fessConfig = ComponentUtil.getFessConfig(); dataSerializer = ComponentUtil.getComponent("dataSerializer"); } /** * Gets the Fess configuration instance. * * @return the Fess configuration */ @Override public FessConfig getFessConfig() { return fessConfig; } /**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/app/service/LabelTypeService.java
public class LabelTypeService extends FessAppService { /** The LabelType behavior. */ @Resource protected LabelTypeBhv labelTypeBhv; /** The Fess config. */ @Resource protected FessConfig fessConfig; /** * Default constructor. */ public LabelTypeService() { super(); } /** * Get a list of label types. *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/helper/JobHelper.java
cron.register(cronExpression, fessConfig.getSchedulerJobClassAsClass(), fessConfig.getSchedulerConcurrentExecModeAsEnum(), op -> op.uniqueBy(id).changeNoticeLogToDebug().params(paramsOp)); } else { logger.info("Inactive Job: id={}, name={}", id, scheduledJob.getName());
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/KuromojiService.java
import org.codelibs.fess.mylasta.direction.FessConfig; import org.dbflute.optional.OptionalEntity; import jakarta.annotation.Resource; /** * Service class for Kuromoji. */ public class KuromojiService { /** The dictionary manager. */ @Resource protected DictionaryManager dictionaryManager; /** The Fess config. */ @Resource protected FessConfig fessConfig; /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryStringBuilder.java
* * @return the complete formatted query string */ public String build() { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final int maxQueryLength = fessConfig.getQueryMaxLengthAsInteger(); final StringBuilder queryBuf = new StringBuilder(255); final String query = buildBaseQuery();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.3K bytes - Viewed (0)