Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for builtin (0.04 sec)

  1. docs/en/docs/python-types.md

    #### Generic types { #generic-types }
    
    These types that take type parameters in square brackets are called **Generic types** or **Generics**, for example:
    
    //// tab | Python 3.10+
    
    You can use the same builtin types as generics (with square brackets and types inside):
    
    * `list`
    * `tuple`
    * `set`
    * `dict`
    
    And the same as with previous Python versions, from the `typing` module:
    
    * `Union`
    * `Optional`
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  2. CLAUDE.md

    ```
    
    ### Running
    ```bash
    # From IDE: Run main method in org.codelibs.fess.FessBoot
    # Access at: http://localhost:8080/
    # Admin UI: http://localhost:8080/admin/ (admin/admin)
    
    # From command line (after building)
    ./bin/fess
    ```
    
    ### Code Formatting
    ```bash
    # Format code
    mvn formatter:format
    
    # Add license headers
    mvn license:format
    ```
    
    ## Tech Stack
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/first-steps.md

    **<a href="https://fastapicloud.com" class="external-link" target="_blank">FastAPI Cloud</a>** is built by the same author and team behind **FastAPI**.
    
    It streamlines the process of **building**, **deploying**, and **accessing** an API with minimal effort.
    
    It brings the same **developer experience** of building apps with FastAPI to **deploying** them to the cloud. 🎉
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  4. docs/en/docs/index.md

    **<a href="https://fastapicloud.com" class="external-link" target="_blank">FastAPI Cloud</a>** is built by the same author and team behind **FastAPI**.
    
    It streamlines the process of **building**, **deploying**, and **accessing** an API with minimal effort.
    
    It brings the same **developer experience** of building apps with FastAPI to **deploying** them to the cloud. 🎉
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Dec 25 11:01:37 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  5. README.md

    #### About FastAPI Cloud
    
    **<a href="https://fastapicloud.com" class="external-link" target="_blank">FastAPI Cloud</a>** is built by the same author and team behind **FastAPI**.
    
    It streamlines the process of **building**, **deploying**, and **accessing** an API with minimal effort.
    
    It brings the same **developer experience** of building apps with FastAPI to **deploying** them to the cloud. 🎉
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Dec 25 11:01:37 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  6. docs/en/data/sponsors.yml

      - url: https://docs.render.com/deploy-fastapi?utm_source=deploydoc&utm_medium=referral&utm_campaign=fastapi
        title: Deploy & scale any full-stack web app on Render. Focus on building apps, not infra.
        img: https://fastapi.tiangolo.com/img/sponsors/render.svg
      - url: https://www.coderabbit.ai/?utm_source=fastapi&utm_medium=badge&utm_campaign=fastapi
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Dec 01 20:06:57 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  7. scripts/docs.py

    
    @app.command()
    def serve() -> None:
        """
        A quick server to preview a built site with translations.
    
        For development, prefer the command live (or just mkdocs serve).
    
        This is here only to preview a site with translations already built.
    
        Make sure you run the build-all command first.
        """
        typer.echo("Warning: this is a very simple server.")
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Dec 21 17:40:17 UTC 2025
    - 16.9K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_python_types/test_tutorial008.py

    from unittest.mock import patch
    
    from docs_src.python_types.tutorial008_py39 import process_items
    
    
    def test_process_items():
        with patch("builtins.print") as mock_print:
            process_items({"a": 1.0, "b": 2.5})
    
        assert mock_print.call_count == 4
        call_args = [arg.args for arg in mock_print.call_args_list]
        assert call_args == [
            ("a",),
            (1.0,),
            ("b",),
            (2.5,),
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 417 bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java

     * a file named {@code pom.xml} and loaded into a {@link org.apache.maven.api.model.Model Model}
     * instances.</p>
     *
     * <p><dfn>Project aggregation</dfn> allows building several projects together. This is only
     * for projects that are built, hence available on the file system. One project,
     * called the <dfn>aggregator project</dfn> lists one or more <dfn>sub-projects</dfn>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Dec 15 11:13:42 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_python_types/test_tutorial009_tutorial009b.py

        ],
    )
    def get_module(request: pytest.FixtureRequest):
        mod = importlib.import_module(f"docs_src.python_types.{request.param}")
        return mod
    
    
    def test_say_hi(module: ModuleType):
        with patch("builtins.print") as mock_print:
            module.say_hi("FastAPI")
            module.say_hi()
    
        assert mock_print.call_count == 2
        call_args = [arg.args for arg in mock_print.call_args_list]
        assert call_args == [
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 805 bytes
    - Viewed (0)
Back to top