Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 365 for _doc (0.02 seconds)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java

                    }
                    doc.put(indexFieldContentLength, contentLength);
                }
                if (!doc.containsKey(indexFieldFavoriteCount)) {
                    doc.put(indexFieldFavoriteCount, 0L);
                }
                if (!doc.containsKey(indexFieldClickCount)) {
                    doc.put(indexFieldClickCount, 0L);
                }
                if (!doc.containsKey(indexFieldBoost)) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 8.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

            for (Map<String, Object> doc : docs1) {
                assertTrue(doc.get(field).toString().toLowerCase().contains(query), doc.toString());
            }
            List<Map<String, Object>> docs2 = JsonPath.from(wcResponse2).getList("data");
            for (Map<String, Object> doc : docs2) {
                assertTrue(doc.get(field).toString().toLowerCase().contains(query), doc.toString());
            }
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:29:45 GMT 2025
    - 19K bytes
    - Click Count (0)
  3. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/DomUtilsTest.java

                </project>
                """;
    
            Document doc = Document.of(pomXml);
            Element root = doc.root();
    
            // Insert description between name and url
            DomUtils.insertContentElement(root, "description", "Test description");
    
            String xmlOutput = DomUtils.toXml(doc);
    
            int nameIndex = xmlOutput.indexOf("<name>");
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 31.3K bytes
    - Click Count (0)
  4. api/maven-api-plugin/src/main/mdo/plugin.mdo

            </field>
            <field xdoc.separator="blank">
              <name>mojos</name>
              <version>1.0.0+</version>
              <association>
                <type>MojoDescriptor</type>
                <multiplicity>*</multiplicity>
              </association>
              <description>Description of each Mojo provided by the plugin.</description>
            </field>
            <field xdoc.separator="blank">
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 25 08:28:41 GMT 2025
    - 24.8K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

                    throwError.accept(messages -> fessConfig.invalidIndexRequiredFields(doc)
                            .stream()
                            .forEach(s -> messages.addErrorsPropertyRequired("doc." + s, s)));
                }
    
                if (!fessConfig.validateIndexArrayFields(doc)) {
                    throwError.accept(messages -> fessConfig.invalidIndexArrayFields(doc)
                            .stream()
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 25.5K bytes
    - Click Count (1)
  6. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            assertNull(doc.get("boost"));
            assertNotNull(doc.get("doc_id"));
        }
    
        // Test updateDocument with existing doc_id
        @Test
        public void test_updateDocument_existingDocId() {
            final Map<String, Object> doc = new HashMap<>();
            doc.put("doc_id", "existing_id");
            doc.put("url", "http://example.com");
    
            indexUpdater.updateDocument(doc);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 33.6K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

            doc.put("url", "smb://server/share/file.doc");
            doc.put("doc_id", "doc123");
            doc.put("url_link", "http://proxy.example.com/file.doc");
    
            final ChatMessage.ChatSource source = new ChatMessage.ChatSource(1, doc);
            assertEquals("http://proxy.example.com/file.doc", source.getUrlLink());
            assertNull(source.getGoUrl());
    
            source.setGoUrl("/go/?rt=123&docId=doc123&queryId=q1&order=0");
    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)
  8. scripts/tests/test_translation_fixer/test_header_permalinks/test_header_number_mismatch.py

            cli,
            ["fix-pages", "docs/lang/docs/doc.md"],
        )
        assert result.exit_code == 1
    
        fixed_content = (root_dir / "docs" / "lang" / "docs" / "doc.md").read_text("utf-8")
        expected_content = Path(f"{data_path}/translated_doc_number_gt.md").read_text(
            "utf-8"
        )
    
        assert fixed_content == expected_content  # Translated doc remains unchanged
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 22:43:44 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  9. scripts/tests/test_translation_fixer/test_code_blocks/test_code_blocks_lines_number_mismatch.py

            cli,
            ["fix-pages", "docs/lang/docs/doc.md"],
        )
        assert result.exit_code == 1, result.output
    
        fixed_content = (root_dir / "docs" / "lang" / "docs" / "doc.md").read_text("utf-8")
        expected_content = Path(f"{data_path}/translated_doc_lines_number_gt.md").read_text(
            "utf-8"
        )
    
        assert fixed_content == expected_content  # Translated doc remains unchanged
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 22:43:44 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  10. scripts/tests/test_translation_fixer/test_code_blocks/test_code_blocks_wrong_lang_code.py

            cli,
            ["fix-pages", "docs/lang/docs/doc.md"],
        )
        assert result.exit_code == 1, result.output
    
        fixed_content = (root_dir / "docs" / "lang" / "docs" / "doc.md").read_text("utf-8")
        expected_content = Path(f"{data_path}/translated_doc_wrong_lang_code.md").read_text(
            "utf-8"
        )
    
        assert fixed_content == expected_content  # Translated doc remains unchanged
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 22:43:44 GMT 2026
    - 1.9K bytes
    - Click Count (0)
Back to Top