Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Outputs (0.03 sec)

  1. .github/workflows/translate.yml

            type: string
            required: false
            default: ""
    
    env:
      UV_SYSTEM_PYTHON: 1
    
    jobs:
      langs:
        runs-on: ubuntu-latest
        outputs:
          langs: ${{ steps.show-langs.outputs.langs }}
          commands: ${{ steps.show-langs.outputs.commands }}
        steps:
          - uses: actions/checkout@v6
          - name: Set up Python
            uses: actions/setup-python@v6
            with:
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:48:45 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  2. fastapi/openapi/utils.py

        if components:
            output["components"] = components
        output["paths"] = paths
        if webhook_paths:
            output["webhooks"] = webhook_paths
        if tags:
            output["tags"] = tags
        if external_docs:
            output["externalDocs"] = external_docs
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  3. fastapi/encoders.py

                if it should exclude from the output the fields that had the same default
                value, even when they were explicitly set.
                """
            ),
        ] = False,
        exclude_none: Annotated[
            bool,
            Doc(
                """
                Pydantic's `exclude_none` parameter, passed to Pydantic models to define
                if it should exclude from the output any fields that have a `None` value.
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  4. scripts/translate.py

            «««
            <abbr title="Input/Output: disk reading or writing, network communication.">I/O</abbr>
            <abbr title="Content Delivery Network: service, that provides static files.">CDN</abbr>
            <abbr title="Integrated Development Environment: similar to a code editor">IDE</abbr>
            »»»
    
        Result (German):
    
            «««
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:05:53 UTC 2025
    - 34.1K bytes
    - Viewed (0)
  5. fastapi/_compat/v2.py

                continue
            new_name = model_name_map[model]
            old_name = schema["$ref"].split("/")[-1]
            if old_name in {f"{new_name}-Input", f"{new_name}-Output"}:
                continue
            old_name_to_new_name_map[old_name] = new_name
    
        new_field_mapping: dict[
            tuple[ModelField, Literal["validation", "serialization"]], JsonSchemaValue
        ] = {}
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  6. docs/en/docs/release-notes.md

    ### Docs
    
    * 📝 Add note to docs about Separate Input and Output Schemas with FastAPI version. PR [#10150](https://github.com/tiangolo/fastapi/pull/10150) by [@tiangolo](https://github.com/tiangolo).
    
    ## 0.102.0
    
    ### Features
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:06:15 UTC 2025
    - 586.7K bytes
    - Viewed (0)
Back to top