Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for merged (0.03 sec)

  1. .github/workflows/pre-commit.yml

          - uses: actions/checkout@v5
            name: Checkout PR for own repo
            if: env.HAS_SECRETS == 'true'
            with:
              # To be able to commit it needs to fetch the head of the branch, not the
              # merge commit
              ref: ${{ github.head_ref }}
              # And it needs the full history to be able to compute diffs
              fetch-depth: 0
              # A token other than the default GITHUB_TOKEN is needed to be able to trigger CI
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 23 11:17:16 UTC 2025
    - 3K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

    * Update tests and handling of `response_model_by_alias`. PR [#1642](https://github.com/tiangolo/fastapi/pull/1642).
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:06:15 UTC 2025
    - 586.7K bytes
    - Viewed (0)
  3. .github/workflows/test.yml

            run: uv pip install -r requirements-tests.txt
          - name: Get coverage files
            uses: actions/download-artifact@v6
            with:
              pattern: coverage-*
              path: coverage
              merge-multiple: true
          - run: ls -la coverage
          - run: coverage combine coverage
          - run: coverage html --title "Coverage for ${{ github.sha }}"
          - name: Store coverage HTML
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 08:53:59 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  4. fastapi/openapi/utils.py

        "DEFAULT": "Default Response",
    }
    
    
    def get_openapi_security_definitions(
        flat_dependant: Dependant,
    ) -> tuple[dict[str, Any], list[dict[str, Any]]]:
        security_definitions = {}
        # Use a dict to merge scopes for same security scheme
        operation_security_dict: dict[str, list[str]] = {}
        for security_dependency in flat_dependant._security_dependencies:
            security_definition = jsonable_encoder(
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  5. docs/de/docs/advanced/path-operation-advanced-configuration.md

    Sie können dem automatisch generierten Schema also zusätzliche Daten hinzufügen.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 24 10:28:19 UTC 2025
    - 8.3K bytes
    - Viewed (0)
Back to top