- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 337 for Doc (0.02 seconds)
-
src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java
final List<Map<String, Object>> documents = new ArrayList<>(); final Map<String, Object> doc = new HashMap<>(); doc.put("title", "Test Doc"); doc.put("url", "http://example.com"); doc.put("content", "<p>Hello <b>world</b></p>"); doc.put("content_description", "description"); documents.add(doc); final String result = client.testBuildContext(documents);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 53K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java
} else { assertEquals("filetype:pdf", queryMap.get("PDF")); } if (queryMap.containsKey("DOC")) { assertEquals("filetype:doc", queryMap.get("DOC")); } else { assertEquals("filetype:doc", queryMap.get("labels.facet_filetype_doc")); } if (queryMap.containsKey("labels.facet_filetype_txt")) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 17.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/DocumentUtil.java
* @return the converted value or the default value if not found */ public static <T> T getValue(final Map<String, Object> doc, final String key, final Class<T> clazz, final T defaultValue) { final T value = getValue(doc, key, clazz); if (value == null) { return defaultValue; } return value; } /** * Gets a typed value from a document map.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 7.2K bytes - Click Count (0) -
fastapi/exceptions.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 11 18:41:21 GMT 2026 - 7.3K bytes - Click Count (0) -
README.md
Official binary distributions are available at https://go.dev/dl/. After downloading a binary release, visit https://go.dev/doc/install for installation instructions. #### Install From Source If a binary distribution is not available for your combination of operating system and architecture, visit https://go.dev/doc/install/source for source installation instructions. ### Contributing
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Mon Jul 22 17:45:27 GMT 2024 - 1.4K bytes - Click Count (0) -
src/main/webapp/js/profile.js
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 21 13:12:50 GMT 2025 - 1.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/ChatMessageTest.java
@Test public void test_chatSourceFromMap() { final Map<String, Object> doc = new HashMap<>(); doc.put("title", "Test Title"); doc.put("url", "https://example.com"); doc.put("doc_id", "doc-123"); doc.put("content_description", "Test snippet"); final ChatSource source = new ChatSource(5, doc); assertEquals(5, source.getIndex());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 9.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java
// Here we just verify no concurrent modification exceptions occur String url = "http://example.com/thread" + threadIndex + "/doc" + j; // Simulate the synchronized access that happens in deleteDocument() synchronized (mockCallback) { callback.deleteUrlList.add(url);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 19.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/QueryResponseListTest.java
List<Map<String, Object>> documentList = new ArrayList<>(); for (int i = 0; i < 5; i++) { Map<String, Object> doc = new HashMap<>(); doc.put("title", "Doc" + i); documentList.add(doc); } QueryResponseList qrList = new QueryResponseList(documentList, 0, 10, 0); List<Map<String, Object>> subList = qrList.subList(1, 4);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 40.1K bytes - Click Count (0) -
internal/bucket/object/lock/lock_test.go
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 18.4K bytes - Click Count (0)