- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 19 for padded (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
writeTestFile("a,b => c\n"); CharMappingItem newItem = new CharMappingItem(0, new String[] { "x", "y" }, "z"); charMappingFile.insert(newItem); // Verify the item was added PagingList<CharMappingItem> result = charMappingFile.selectList(0, 10); assertEquals(2, result.size()); // Check if new item exists boolean found = false;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:03:27 GMT 2026 - 56.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
} /** * Adds a new web protocol to the supported protocols list. * If the protocol already exists, it will not be added again. * * @param protocol the protocol name to add (without colon suffix) */ public void addWebProtocol(final String protocol) { final String prefix = protocol + ":";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 13:59:25 GMT 2026 - 12.4K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java
final String json = coordinatorHelper.toJson(original); final Map<String, Object> parsed = coordinatorHelper.parseJson(json); assertEquals("operation", parsed.get("type")); assertEquals("reindex", parsed.get("name")); assertEquals("running", parsed.get("status")); assertEquals(1234567890, ((Number) parsed.get("createdTime")).longValue()); }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/helper/LanguageHelperTest.java
doc.put("title", "タイトル"); doc.put("content", "コンテンツ"); languageHelper.updateDocument(doc); assertEquals("ja", doc.get("lang")); // No fields should be added since langFields is empty assertNull(doc.get("title_ja")); assertNull(doc.get("content_ja")); } @Test public void test_createScript_noLangFields() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerActionTest.java
assertNotNull(responseJobLogId); assertEquals(32, responseJobLogId.length()); assertTrue(responseJobLogId.matches("[0-9a-f]{32}")); // Verify the pre-generated ID was passed to the job via launch params assertNotNull(capturedOption.get()); assertEquals(responseJobLogId, capturedOption.get().getParameterMap().get(Constants.JOB_LOG_ID)); }
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/mylasta/direction/sponsor/FessMultipartRequestHandler.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:48:41 GMT 2026 - 18.9K bytes - Click Count (1) -
src/main/resources/fess_label_nl.properties
labels.log_file_date=Tijdstempel labels.labeltype_configuration=Label labels.labeltype_title_details=Label labels.labeltype_name=Naam labels.labeltype_value=Waarde labels.labeltype_included_paths=Inbegrepen paden labels.labeltype_excluded_paths=Uitgesloten paden labels.roletype_configuration=Rol labels.roletype_title_details=Rol labels.roletype_name=Naam labels.roletype_value=Waarde labels.reqheader_configuration=Verzoekheader
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 51.3K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java
assertEquals(true, groovyEngine.evaluate("return bool", params)); assertEquals(3.14, groovyEngine.evaluate("return dbl", params)); } /** * Test that complex objects can be passed as parameters */ @Test public void test_evaluate_complexObjectParameters() { final Map<String, Object> params = new HashMap<>(); final Map<String, String> nestedMap = new HashMap<>();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:03:38 GMT 2026 - 29.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatClient.java
fullResponse.length(), htmlContent.length(), System.currentTimeMillis() - renderStartTime); } // Create and save assistant message (user message was already added at the start) final ChatMessage assistantMessage = ChatMessage.assistantMessage(fullResponse.toString()); assistantMessage.setHtmlContent(htmlContent);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 56.6K bytes - Click Count (0)