- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 106 for nocontent (0.19 seconds)
-
src/test/java/org/codelibs/fess/util/SearchEngineUtilTest.java
assertNotNull(outputStream); assertTrue(outputStream instanceof ByteArrayOutputStream); } @Test public void test_getXContentOutputStream_withException() { ToXContent xContent = new ToXContent() { @Override public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13.8K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateFixedIssuesInReleaseNotes.kt
val listEnd = findEndOfListSection(content, afterIntro) content.substring(0, introStart) + newSection + "\n" + content.substring(listEnd) } else { newSection + "\n" + content } notesFile.writeText(newContent) println("Fixed issues section updated in $notesFile") } private fun findEndOfListSection(content: String, startAfterIntro: Int): Int {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 23 14:49:33 GMT 2026 - 5.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
} // Prefer full content, fallback to description final String docContent = StringUtil.isNotBlank(content) ? content : description; if (StringUtil.isNotBlank(docContent)) { docContext.append(sanitizeDocumentContent(stripHtmlTags(docContent))).append("\n"); } docContext.append("\n");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
assertEquals("output", item.getOutput()); } // Helper method to write content to test file private void writeTestFile(String content) throws IOException { Writer writer = null; try { writer = new OutputStreamWriter(new FileOutputStream(testFile), Constants.UTF_8); writer.write(content); writer.flush(); } finally {
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/test/java/org/codelibs/fess/job/IndexExportJobTest.java
assertTrue(content.contains("<html lang=\"ja\">")); } @Test public void test_exportDocument_createsDirectories() { final Map<String, Object> source = new LinkedHashMap<>(); source.put("url", "https://example.com/a/b/c/deep.html"); source.put("title", "Deep"); source.put("content", "Content");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 09:08:38 GMT 2026 - 66.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/ChatSession.java
* * @param content the message content */ public void addUserMessage(final String content) { addMessage(ChatMessage.userMessage(content)); } /** * Adds an assistant message to this session. * * @param content the message content */ public void addAssistantMessage(final String content) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 01:53:06 GMT 2026 - 6.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmChatRequest.java
* * @param content the message content * @return this request for method chaining */ public LlmChatRequest addSystemMessage(final String content) { messages.add(LlmMessage.system(content)); return this; } /** * Adds a user message to the request. * * @param content the message content * @return this request for method chainingCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 05 03:38:31 GMT 2026 - 6.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/DocumentsTests.java
final Map<String, Object> doc = new HashMap<>(); doc.put("title", NAME_PREFIX + i); doc.put("url", "http://example.com/bulk/" + i); doc.put("content", "This is test content for bulk document " + i); doc.put("boost", 1.0f); doc.put("role", "Rguest"); documents.add(doc); } requestBody.put("documents", documents);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.9K bytes - Click Count (0) -
src/main/webapp/css/chat.css
.message-content p { margin: 0.5rem 0; } .message-content p:first-child { margin-top: 0; } .message-content p:last-child { margin-bottom: 0; } /* Headings in messages */ .message-content h1, .message-content h2, .message-content h3, .message-content h4, .message-content h5, .message-content h6 { margin: 0.75rem 0 0.375rem; font-weight: 600; line-height: 1.3; color: #172b4d; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:21:57 GMT 2026 - 19.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatClient.java
} final String content = msg.getContent(); if (content == null || content.isEmpty()) { return suffix; } final String truncMarker = "... [truncated]"; final int bodyBudget = Math.max(0, summaryMaxChars - suffix.length() - truncMarker.length()); if (content.length() <= bodyBudget) { return content + suffix; }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)