- Sort Score
- Num 10 results
- Language All
Results 291 - 300 of 1,107 for sull (0.11 seconds)
-
src/test/java/org/codelibs/fess/timer/LogNotificationTargetTest.java
ComponentUtil.getLogNotificationHelper() .offer(new LogNotificationEvent(System.currentTimeMillis(), "ERROR", "org.test", "msg1", null)); ComponentUtil.getLogNotificationHelper() .offer(new LogNotificationEvent(System.currentTimeMillis(), "WARN", "org.test", "msg2", null)); // expired() will drain buffer then fail on OpenSearch (not available) but should not throw logNotificationTarget.expired();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 4.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java
protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo); responseHeaders = new HashMap<>(); processCalled = false; processOrigin = null; processRequest = null; processResponse = null; // Create a test implementation of CorsHandler corsHandler = new CorsHandler() { @Override
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 26.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java
if (jobLogId != null) { jobLog.setId(jobLogId); } final String scriptType = scheduledJob.getScriptType(); final String script = scheduledJob.getScriptData(); final JobExecutor jobExecutor = ComponentUtil.getJobExecutor(scriptType); if (jobExecutor == null) { throw new ScheduledJobException("No jobExecutor: " + scriptType);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 5.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
if (map != null) { final String[] queries = map.get(toLowerCase(query)); if (queries != null) { return queries; } } return StringUtil.EMPTY_STRINGS; } private String toLowerCase(final String term) { return term != null ? term.toLowerCase(Locale.ROOT) : term; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 5.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/DictionaryExceptionTest.java
// Test constructor with null message DictionaryException exception = new DictionaryException(null); assertNotNull(exception); assertNull(exception.getMessage()); assertNull(exception.getCause()); } @Test public void test_constructor_withNullMessageAndCause() { // Test constructor with null message but valid causeCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 6.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java
throw new NullPointerException("Null value encountered"); } }; ComponentUtil.register(mockSearchLogHelper, "searchLogHelper"); // Execute the job String result = aggregateLogJob.execute(); // Verify result contains error message assertNotNull(result); assertTrue(result.contains("Null value encountered"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 12.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientExceptionTest.java
// Test constructor with null message SearchEngineClientException exception = new SearchEngineClientException(null); assertNotNull(exception); assertNull(exception.getMessage()); assertNull(exception.getCause()); } @Test public void test_constructor_withNullMessageAndCause() { // Test constructor with null message and null causeCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsKeyMatch.java
if (boost != null) { addFieldToSource(sourceMap, "boost", boost); } if (createdBy != null) { addFieldToSource(sourceMap, "createdBy", createdBy); } if (createdTime != null) { addFieldToSource(sourceMap, "createdTime", createdTime); } if (maxSize != null) { addFieldToSource(sourceMap, "maxSize", maxSize);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 7.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsWebConfigCB.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 8.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java
pageSize = getDefaultPageSize(); currentPageNumber = getDefaultCurrentPageNumber(); id = null; name = null; value = null; webConfigId = null; createdBy = null; createdTime = null; versionNo = null; } /** * Gets the default current page number. * * @return the default current page number
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7.4K bytes - Click Count (0)