Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 359 for _self (0.03 seconds)

  1. docs/en/docs/js/custom.js

            || window.location.origin;
        const siteOrigin = new URL(siteUrl).origin;
        document.querySelectorAll(".md-content a[href]").forEach(a => {
            if (a.getAttribute("target") === "_self") return;
            const href = a.getAttribute("href");
            if (!href) return;
            try {
                const url = new URL(href, window.location.href);
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 17:59:48 GMT 2026
    - 7.7K bytes
    - Click Count (2)
  2. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            assertTrue(tag.matches(nodeWithAttr));
    
            // Node with different attribute value
            MockNode nodeWithDifferentAttr = new MockNode("a");
            nodeWithDifferentAttr.addAttribute("target", "_self");
            assertFalse(tag.matches(nodeWithDifferentAttr));
    
            // Node without the attribute
            MockNode nodeWithoutAttr = new MockNode("a");
            assertFalse(tag.matches(nodeWithoutAttr));
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 21.1K bytes
    - Click Count (0)
  3. compat/maven-model-builder/src/test/resources/poms/validation/raw-model/self-referencing.xml

    Guillaume Nodet <******@****.***> 1729859506 +0200
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.5K bytes
    - Click Count (0)
  4. compat/maven-model-builder/src/test/resources/poms/validation/raw-model/self-referencing-classifier.xml

    Guillaume Nodet <******@****.***> 1729859506 +0200
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.5K bytes
    - Click Count (0)
  5. fastapi/exceptions.py

        def errors(self) -> Sequence[Any]:
            return self._errors
    
        def _format_endpoint_context(self) -> str:
            if not (self.endpoint_file and self.endpoint_line and self.endpoint_function):
                if self.endpoint_path:
                    return f"\n  Endpoint: {self.endpoint_path}"
                return ""
    
            context = f'\n  File "{self.endpoint_file}", line {self.endpoint_line}, in {self.endpoint_function}'
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 11 18:41:21 GMT 2026
    - 7.3K bytes
    - Click Count (0)
  6. docs_src/dependencies/tutorial011_an_py310.py

    from typing import Annotated
    
    from fastapi import Depends, FastAPI
    
    app = FastAPI()
    
    
    class FixedContentQueryChecker:
        def __init__(self, fixed_content: str):
            self.fixed_content = fixed_content
    
        def __call__(self, q: str = ""):
            if q:
                return self.fixed_content in q
            return False
    
    
    checker = FixedContentQueryChecker("bar")
    
    
    @app.get("/query-checker/")
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 544 bytes
    - Click Count (0)
  7. docs_src/dependencies/tutorial002_an_py310.py

    app = FastAPI()
    
    
    fake_items_db = [{"item_name": "Foo"}, {"item_name": "Bar"}, {"item_name": "Baz"}]
    
    
    class CommonQueryParams:
        def __init__(self, q: str | None = None, skip: int = 0, limit: int = 100):
            self.q = q
            self.skip = skip
            self.limit = limit
    
    
    @app.get("/items/")
    async def read_items(commons: Annotated[CommonQueryParams, Depends(CommonQueryParams)]):
        response = {}
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 18 12:29:59 GMT 2023
    - 664 bytes
    - Click Count (0)
  8. fastapi/.agents/skills/fastapi/references/dependencies.md

    
    class DatabasePaginator:
        def __init__(self, offset: int = 0, limit: int = 100, q: str | None = None):
            self.offset = offset
            self.limit = limit
            self.q = q
    
        def get_page(self) -> dict:
            # Simulate a page of data
            return {
                "offset": self.offset,
                "limit": self.limit,
                "q": self.q,
                "items": [],
            }
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 01 10:05:57 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  9. docs/tls/README.md

    1. [Install MinIO Server](#install-minio-server)
    2. [Use an Existing Key and Certificate with MinIO](#use-an-existing-key-and-certificate-with-minio)
    3. [Generate and use Self-signed Keys and Certificates with MinIO](#generate-use-self-signed-keys-certificates)
    4. [Install Certificates from Third-party CAs](#install-certificates-from-third-party-cas)
    
    ## 1. Install MinIO Server
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 8.6K bytes
    - Click Count (0)
  10. fastapi/routing.py

            self.dependency_overrides_provider = dependency_overrides_provider
            self.callbacks = callbacks
            self.openapi_extra = openapi_extra
            self.generate_unique_id_function = generate_unique_id_function
            self.strict_content_type = strict_content_type
            self.tags = tags or []
            self.responses = responses or {}
            self.name = get_name(endpoint) if name is None else name
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 193K bytes
    - Click Count (0)
Back to Top