Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 55 for doc_ (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

                // Expected
            }
        }
    
        @Test
        public void test_withRelevantDocs_manyDocs() {
            List<String> docIds = Arrays.asList("doc1", "doc2", "doc3", "doc4", "doc5", "doc6", "doc7", "doc8", "doc9", "doc10");
            List<Integer> indexes = Arrays.asList(1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
            RelevanceEvaluationResult result = RelevanceEvaluationResult.withRelevantDocs(docIds, indexes);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 01 08:11:18 GMT 2026
    - 7.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            final List<Map<String, Object>> docs = new ArrayList<>();
            final Map<String, Object> doc1 = new LinkedHashMap<>();
            doc1.put("url", "https://example.com/page1.html");
            doc1.put("title", "Page 1");
            doc1.put("content", "Content 1");
            doc1.put("lang", "en");
            doc1.put("host", "example.com");
            doc1.put("cache", "cached1");
            docs.add(doc1);
    
    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)
  3. src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java

            Map<String, Object> doc1 = new HashMap<>();
            doc1.put("title", "Test Document 1");
            doc1.put("content", "Test content 1");
            documentItems.add(doc1);
    
            Map<String, Object> doc2 = new HashMap<>();
            doc2.put("title", "Test Document 2");
            doc2.put("content", "Test content 2");
            documentItems.add(doc2);
    
            searchRenderData.setDocumentItems(documentItems);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 23.6K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

            final Map<String, Object> doc1 = new HashMap<>();
            doc1.put("_id", "doc1");
            doc1.put("title", "Document 1");
    
            final Map<String, Object> doc2 = new HashMap<>();
            doc2.put("_id", "doc2");
            doc2.put("title", "Document 2");
    
            final SearchResult result = SearchResult.create().addDocument(doc1).addDocument(doc2).allRecordCount(2).build();
    
            assertNotNull(result);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/it/admin/DocumentsTests.java

                final Map<String, Object> doc = new HashMap<>();
                doc.put("doc_id", existingDoc.get("doc_id"));
                doc.put("title", existingDoc.get("title") + "_updated");
                doc.put("url", existingDoc.get("url_link"));
                doc.put("content", "Updated content");
                doc.put("boost", 2.0f);
                doc.put("role", "Rguest");
                documents.add(doc);
            }
    
    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)
  6. src/main/resources/fess_indices/_aws/fess/doc.json

    Shinsuke Sugaya <******@****.***> 1773561175 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  7. src/main/resources/fess_indices/_cloud/fess/doc.json

    Shinsuke Sugaya <******@****.***> 1773561175 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  8. src/main/resources/fess_indices/fess/doc.json

    Shinsuke Sugaya <******@****.***> 1773561175 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

            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");
            doc2.put("content", "<ul><li>Item A</li><li>Item B</li></ul>");
            documents.add(doc2);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
  10. CONTRIBUTING.md

    * Cover your code with tests. See the [Testing guide](contributing/Testing.md) for more information.
    * Add documentation to the User Manual and DSL Reference (under [platforms/documentation/docs/src/docs](platforms/documentation/docs/src/docs/)).
    * For error messages related changes, follow the [ErrorMessages Guide](contributing/ErrorMessages.md).
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
Back to Top