Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 13 of 13 for doc10 (0.02 seconds)

  1. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

            final List<Map<String, Object>> documents = new ArrayList<>();
            final Map<String, Object> doc1 = new HashMap<>();
            doc1.put("title", "Doc 1");
            doc1.put("content", "<h1>Title</h1><p>Content 1</p>");
            documents.add(doc1);
    
            final Map<String, Object> doc2 = new HashMap<>();
            doc2.put("title", "Doc 2");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorEdgeCaseTest.java

         */
        @Test
        public void test_duplicateDocumentIds() throws Exception {
            try (RankFusionProcessor processor = new RankFusionProcessor()) {
                processor.setSearcher(new TestSearcherWithFixedIds("doc1", "doc2", "doc3"));
                processor.register(new TestSearcherWithFixedIds("doc2", "doc3", "doc4")); // Some duplicates
                processor.init();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 14.2K bytes
    - Click Count (0)
  3. MIGRATION.md

    - Metadata (title, author, date, etc.)
    - Security/access control information
    
    **Step 2: Format for Fess**
    
    Create NDJSON file with required Fess fields:
    
    ```json
    {"url":"http://example.com/doc1","title":"Document 1","content":"Full text content...","mimetype":"text/html"}
    {"url":"http://example.com/doc2","title":"Document 2","content":"More content...","mimetype":"application/pdf"}
    ```
    
    **Step 3: Bulk Import**
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 12:40:11 GMT 2025
    - 23.2K bytes
    - Click Count (0)
Back to Top