Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 365 for _doc (0.03 seconds)

  1. scripts/tests/test_translation_fixer/test_header_permalinks/test_header_level_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_level_mismatch_1.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
    - 2K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistActionTest.java

            assertTrue(messages.hasMessageOf("doc.boost"), "Required field 'boost' should have error at 'doc.boost' property");
        }
    
        @Test
        public void test_validateFields_floatErrorMessagePropertyKey() {
            final Map<String, Object> doc = new HashMap<>();
            doc.put("url", "https://example.com");
            doc.put("title", "Test Title");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 34.4K bytes
    - Click Count (0)
  3. scripts/tests/test_translation_fixer/test_code_includes/test_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)
  4. fastapi/security/http.py

        dependency.
    
        Read more about it in the
        [FastAPI docs for HTTP Basic Auth](https://fastapi.tiangolo.com/advanced/security/http-basic-auth/).
        """
    
        username: Annotated[str, Doc("The HTTP Basic username.")]
        password: Annotated[str, Doc("The HTTP Basic password.")]
    
    
    class HTTPAuthorizationCredentials(BaseModel):
        """
        The HTTP authorization credentials in the result of using `HTTPBearer` or
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 16 10:16:48 GMT 2026
    - 13.1K bytes
    - Click Count (0)
  5. fastapi/sse.py

            str | None,
            Doc(
                """
                Optional event ID (`id:` field).
                """
            ),
        ] = None,
        retry: Annotated[
            int | None,
            Doc(
                """
                Optional reconnection time in milliseconds (`retry:` field).
                """
            ),
        ] = None,
        comment: Annotated[
            str | None,
            Doc(
                """
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 01 09:21:52 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocExtensionsBuilder.java

        private void build(ClassExtensionDoc extensionDoc) {
            Document doc;
            try {
                doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument();
            } catch (ParserConfigurationException e) {
                throw UncheckedException.throwAsUncheckedException(e);
            }
    
            LinkRenderer linkRenderer = new LinkRenderer(doc, model);
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.9K bytes
    - Click Count (0)
  7. scripts/tests/test_translation_fixer/test_code_blocks/test_code_blocks_mermaid.py

            cli,
            ["fix-pages", "docs/lang/docs/doc.md"],
        )
        assert result.exit_code == 0, result.output
    
        fixed_content = (root_dir / "docs" / "lang" / "docs" / "doc.md").read_text("utf-8")
        expected_content = Path(
            f"{data_path}/translated_doc_mermaid_translated.md"
        ).read_text("utf-8")
    
        assert fixed_content == expected_content  # Translated doc remains unchanged
        assert (
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 22:43:44 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                task.sources(patternSet -> {
                    patternSet.include("**/*.adoc");
                    patternSet.include("**/*.js");
                    patternSet.exclude("javaProject*Layout.adoc");
                    patternSet.exclude("userguide_single.adoc");
                    patternSet.exclude("snippets/**/*.adoc");
                });
    
                // TODO: This breaks the provider
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 12 22:33:18 GMT 2026
    - 17.8K bytes
    - Click Count (0)
  9. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    	<ol class="list-unstyled col-md-8">
    		<c:forEach var="doc" varStatus="s" items="${documentItems}">
    			<li id="result${s.index}">
    				<h3 class="title text-truncate">
    					<a class="link" href="${doc.url_link}" data-uri="${doc.url_link}"
    						data-id="${doc.doc_id}" data-order="${s.index}">${doc.content_title}</a>
    				</h3>
    				<div class="body">
    					<c:if test="${thumbnailSupport && !empty doc.thumbnail}">
    					<div class="me-3">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 12.2K bytes
    - Click Count (1)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/GenerateDocInfo.java

            Path adocDir = getDocumentationRoot().get().getAsFile().toPath();
            getDocumentationFiles().getAsFileTree().matching(pattern -> pattern.include("**/*.adoc")).forEach(adocFile -> {
                String adocFileName = adocFile.getName();
                // getting_started.adoc -> getting_started-docinfo.html
                String docInfoName = adocFileName.substring(0, adocFileName.lastIndexOf('.')) + "-docinfo.html";
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue May 27 09:07:14 GMT 2025
    - 3K bytes
    - Click Count (0)
Back to Top