Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for NOTHING (0.05 sec)

  1. tests/test_forms_single_model.py

                    "msg": "Field required",
                    "input": {"tags": ["foo", "bar"], "with": "nothing"},
                },
                {
                    "type": "missing",
                    "loc": ["body", "lastname"],
                    "msg": "Field required",
                    "input": {"tags": ["foo", "bar"], "with": "nothing"},
                },
            ]
        }
    
    
    def test_extra_param_single():
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  2. .github/workflows/pre-commit.yml

          - name: Error out on pre-commit errors
            if: steps.precommit.outcome == 'failure'
            run: exit 1
    
      # https://github.com/marketplace/actions/alls-green#why
      pre-commit-alls-green:  # This job does nothing and is only used for the branch protection
        if: always()
        needs:
          - pre-commit
        runs-on: ubuntu-latest
        steps:
          - name: Dump GitHub context
            env:
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 23 11:17:16 UTC 2025
    - 3K bytes
    - Viewed (0)
  3. .github/workflows/build-docs.yml

            with:
              name: docs-site-${{ matrix.lang }}
              path: ./site/**
              include-hidden-files: true
    
      # https://github.com/marketplace/actions/alls-green#why
      docs-all-green:  # This job does nothing and is only used for the branch protection
        if: always()
        needs:
          - build-docs
        runs-on: ubuntu-latest
        steps:
          - name: Decide whether the needed jobs succeeded or failed
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Dec 21 17:40:17 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  4. .github/workflows/test.yml

              path: htmlcov
              include-hidden-files: true
          - run: coverage report --fail-under=100
    
      # https://github.com/marketplace/actions/alls-green#why
      check:  # This job does nothing and is only used for the branch protection
        if: always()
        needs:
          - coverage-combine
        runs-on: ubuntu-latest
        steps:
          - name: Dump GitHub context
            env:
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 08:53:59 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  5. scripts/translate.py

            «««
            ```bash
            # Gruß ausgeben
            echo "Hello, World!"
            ```
            »»»
    
        Source (English) – The code block is a console example containing HTML tags. No comments, so nothing to change here:
    
            «««
            ```console
            $ <font color="#4E9A06">fastapi</font> run <u style="text-decoration-style:solid">main.py</u>
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:05:53 UTC 2025
    - 34.1K bytes
    - Viewed (0)
  6. docs/en/docs/release-notes.md

    * ⬆ Upgrade MkDocs Material and configs. PR [#4385](https://github.com/tiangolo/fastapi/pull/4385) by [@tiangolo](https://github.com/tiangolo).
    
    ## 0.70.1
    
    There's nothing interesting in this particular FastAPI release. It is mainly to enable/unblock the release of the next version of Pydantic that comes packed with features and improvements. 🤩
    
    ### Fixes
    
    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