Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 186 for doc1 (0.02 seconds)

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

  1. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            Map<String, Object> doc1 = new HashMap<>();
            doc1.put("title", "Doc1");
            Map<String, Object> doc2 = new HashMap<>();
            doc2.put("title", "Doc2");
            Map<String, Object> doc3 = new HashMap<>();
            doc3.put("title", "Doc3");
            documentList.add(doc1);
            documentList.add(doc2);
            documentList.add(doc3);
    
    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)
  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();
    
            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)
  3. src/test/java/org/codelibs/fess/ds/DataStoreTest.java

                    Map<String, Object> doc1 = new HashMap<>();
                    doc1.put("id", "1");
                    doc1.put("title", "Document 1");
                    callback.store(initParamMap, doc1);
    
                    Map<String, Object> doc2 = new HashMap<>();
                    doc2.put("id", "2");
                    doc2.put("title", "Document 2");
                    callback.store(initParamMap, doc2);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 13.2K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/util/DocListTest.java

            DocList docList = new DocList();
    
            Map<String, Object> doc1 = new HashMap<>();
            doc1.put("id", "1");
            doc1.put("title", "Test Document 1");
    
            Map<String, Object> doc2 = new HashMap<>();
            doc2.put("id", "2");
            doc2.put("title", "Test Document 2");
    
            docList.add(doc1);
            docList.add(doc2);
    
            assertEquals(2, docList.size());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

        @Test
        public void test_searchWithQuery_returnsConfiguredResults() {
            final List<Map<String, Object>> docs = new ArrayList<>();
            final Map<String, Object> doc = new HashMap<>();
            doc.put("title", "Test Doc");
            doc.put("doc_id", "doc1");
            docs.add(doc);
            chatClient.setSearchResults(docs);
            chatClient.resetSearchDocumentsCalled();
    
    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)
  9. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            }
    
            // Sort all documents by fused RRF score (descending)
            final var fusedDocs = documentsByIdMap.values()
                    .stream()
                    .sorted((doc1, doc2) -> Float.compare(toFloat(doc2.get(scoreField)), toFloat(doc1.get(scoreField))))
                    .toList();
    
            // Calculate offset based on documents not in main searcher's top results
            int offset = 0;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 25 02:13:14 GMT 2025
    - 28K bytes
    - Click Count (0)
  10. 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)
Back to Top