- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 310 for initializer (0.12 sec)
-
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
@Override public String toString() { return "Options [sessionId=" + sessionId + ", name=" + name + ", propertiesPath=" + propertiesPath + "]"; } } /** * Initializes the necessary probes for monitoring system resources. */ static void initializeProbes() { // Force probes to be loaded ProcessProbe.getInstance(); OsProbe.getInstance();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/PhraseQueryCommandTest.java
public class PhraseQueryCommandTest extends QueryTestBase { private PhraseQueryCommand queryCommand; @Override protected void setUpChild() throws Exception { // Initialize and register PhraseQueryCommand queryCommand = new PhraseQueryCommand(); queryCommand.register(); } public void test_getQueryClassName() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
} getCrawlingInfoService().storeInfo(crawlingInfoParamList); } infoMap = null; } /** * Adds a key-value pair to the information map. * Initializes the info map as a synchronized LinkedHashMap if it doesn't exist. * * @param key the parameter key to store * @param value the parameter value to store */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
queryContext = new QueryContext("test", true); assertEquals("test", queryContext.getQueryString()); // Verify that highlighting and field log are initialized assertNotNull(getMockRequest().getAttribute(Constants.HIGHLIGHT_QUERIES)); assertNotNull(getMockRequest().getAttribute(Constants.FIELD_LOGS)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 22.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PermissionHelper.java
/** System helper for user/group/role search operations */ @Resource protected SystemHelper systemHelper; /** * Default constructor for PermissionHelper. * Initializes the permission helper with default configuration. */ public PermissionHelper() { // Default constructor } /** * Encodes a permission string into a search role format.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
protected int timeout = -1; // sec /** Flag indicating whether the process has timed out */ protected boolean processTimeout = false; /** * Default constructor for ExecJob. * Initializes default values for job configuration. */ protected ExecJob() { // Default constructor } /** * Executes the job and returns the result as a string.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java
@Execute @Secured({ ROLE }) public HtmlResponse createnew() { saveToken(); return asEditHtml().useForm(CreateForm.class, op -> { op.setup(form -> { form.initialize(); ComponentUtil.getCrawlingConfigHelper().getDefaultConfig(ConfigType.DATA).ifPresent(entity -> { copyBeanToBean(entity, form, copyOp -> { copyOp.excludeNull();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java
new BooleanQueryCommand().register(); new PrefixQueryCommand().register(); new WildcardQueryCommand().register(); new FuzzyQueryCommand().register(); // Initialize BoostQueryCommand boostQueryCommand = new BoostQueryCommand(); boostQueryCommand.register(); } public void test_getQueryClassName() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17K bytes - Viewed (0)