- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for expects (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
AI_POLICY.md
A pull request is not a finished product—it is the start of a conversation, and an implied contract: we promise to provide thoughtful feedback, and we expect the contributor to engage with us in return. ## What we expect from contributors
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 27 18:43:39 GMT 2026 - 3.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/base/FessAdminActionTest.java
try { runnable.run(); throw new AssertionError("Expected " + expectedType.getSimpleName() + " to be thrown"); } catch (final Throwable t) { if (!expectedType.isInstance(t)) { throw new AssertionError("Expected " + expectedType.getSimpleName() + " but got " + t.getClass().getSimpleName(), t); } } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 22.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java
} catch (Exception e) { // Expected in test environment assertTrue(true); } } @Test public void test_getUserInfo_nullUserCode() { try { var result = searchLogHelper.getUserInfo(null); assertFalse(result.isPresent()); } catch (Exception e) { // Expected in test environment assertTrue(true); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 16.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJobTest.java
scheduledJob.setId("nonexistent-job"); try { scheduledJob.start(Map.of(Constants.JOB_LOG_ID, "some-id")); fail("Expected JobNotFoundException"); } catch (final JobNotFoundException e) { // expected } } @Test public void test_startNoArg_callsLaunchNowWithoutParams() {
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/app/web/admin/general/EditForm.java
* When enabled, frequently searched terms are tracked and displayed. */ @Size(max = 10) public String popularWord; /** * Character encoding to use for CSV file exports. * This setting affects the encoding of downloaded CSV files. */ @Required @Size(max = 20) public String csvFileEncoding; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 15.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/IndexExportJob.java
logger.warn("Failed to export documents.", e); resultBuf.append(e.getMessage()).append("\n"); } return resultBuf.toString(); } /** * Exports a single document as a file. * * @param source the document source map * @param exportPath the base export directory path * @param excludeFields the set of field names to exclude from output
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 10.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java
if (!"GET".equalsIgnoreCase(request.getMethod()) && !"POST".equalsIgnoreCase(request.getMethod())) { if (logger.isDebugEnabled()) { logger.debug("Invalid method for stream request. method={}, expected GET or POST", request.getMethod()); } writeJsonResponse(response, HttpServletResponse.SC_METHOD_NOT_ALLOWED, createErrorResponse("Method not allowed")); return; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 06:06:55 GMT 2026 - 25.8K bytes - Click Count (0)