Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for doc10 (0.01 seconds)

  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/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();
    
    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)
  3. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            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);
    
            final Map<String, Object> doc2 = new LinkedHashMap<>();
    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)
  4. src/test/java/org/codelibs/fess/helper/UserInfoHelperTest.java

            MockletHttpServletRequest request = getMockRequest();
    
            List<Map<String, Object>> documentItems = new ArrayList<>();
            Map<String, Object> doc1 = new HashMap<>();
            doc1.put("docId", "doc1");
            doc1.put("title", "Test Document 1");
            documentItems.add(doc1);
    
            try {
                userInfoHelper.storeQueryId("query1", documentItems);
                assertTrue(true);
            } catch (Exception e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java

            // Test with populated list
            List<Map<String, Object>> documentItems = new ArrayList<>();
            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");
    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)
  6. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

            final ChatMessage msg = ChatMessage.assistantMessage("Response text");
            final Map<String, Object> doc1 = new HashMap<>();
            doc1.put("title", "Installation Guide");
            doc1.put("url", "http://example.com/install");
            msg.addSource(new ChatSource(1, doc1));
            final Map<String, Object> doc2 = new HashMap<>();
            doc2.put("title", "Quick Start");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 40.6K bytes
    - Click Count (0)
  7. 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)
Back to Top