- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 74 for sull (0.02 seconds)
-
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
* @return the normalized content, or empty string if content is null */ public String getContent(final CrawlingConfig crawlingConfig, final ResponseData responseData, final String content, final Map<String, Object> dataMap) { if (content == null) { return StringUtil.EMPTY; // empty } if (crawlingConfig != null) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Mar 30 14:27:04 GMT 2026 - 17.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJobTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 15.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java
* * @param template the Groovy script to evaluate (null-safe, returns null if empty) * @param paramMap the parameters to bind to the script (null-safe, treated as empty map if null) * @return the result of script evaluation, or null if the template is empty or evaluation fails * @throws JobProcessingException if the script explicitly throws this exceptionCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 11.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 58.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerActionTest.java
} return null; } @Override public LaunchedProcess launchNow(final LaunchNowOpCall opLambda) { if (withParamsCallback != null) { return withParamsCallback.call(opLambda); } return null; } }; final JobManager mockJobManager = new JobManager() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 13K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
final boolean runAll = webConfigIdList == null && fileConfigIdList == null && dataConfigIdList == null; Thread webFsCrawlerThread = null; Thread dataCrawlerThread = null; if (runAll || webConfigIdList != null || fileConfigIdList != null) { webFsCrawlerThread = new Thread((Runnable) () -> { // crawl webCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 32.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
final String value = getHttpFileuploadMaxSize(); return value != null ? DfTypeUtil.toLong(value) : null; } String getHttpFileuploadThresholdSize(); default Long getHttpFileuploadThresholdSizeAsLong() { final String value = getHttpFileuploadThresholdSize(); return value != null ? DfTypeUtil.toLong(value) : null; } String getPasswordInvalidAdminPasswords();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 92.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java
events.add(new LogNotificationEvent(base, "ERROR", "org.test.A", "first", null)); events.add(new LogNotificationEvent(base + 1000, "WARN", "org.test.B", "second", null)); events.add(new LogNotificationEvent(base + 2000, "ERROR", "org.test.C", "third", null)); String details = testableJob.testFormatDetails(events); int posFirst = details.indexOf("first");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 10.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/LogNotificationAppender.java
helper = ComponentUtil.getLogNotificationHelper(); } catch (final Exception e) { return; } String throwableStr = null; final Throwable thrown = event.getThrown(); if (thrown != null) { final StringWriter sw = new StringWriter(); thrown.printStackTrace(new PrintWriter(sw)); throwableStr = sw.toString();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
protected String detailedMessage(final Throwable t) { if (t == null) { return "Unknown"; } Throwable target = t; if (target.getCause() == null) { return target.getClass().getSimpleName() + "[" + target.getMessage() + "]"; } final StringBuilder sb = new StringBuilder(); while (target != null) { sb.append(target.getClass().getSimpleName());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 27 13:56:32 GMT 2026 - 55.4K bytes - Click Count (1)