Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Kong (0.02 sec)

  1. docs/en/docs/release-notes.md

    * 📝 Update includes in `docs/en/docs/tutorial/path-params-numeric-validations.md`. PR [#12825](https://github.com/fastapi/fastapi/pull/12825) by [@zhaohan-dong](https://github.com/zhaohan-dong).
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:06:15 UTC 2025
    - 586.7K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_query_params/test_tutorial003.py

                    "item_id": "foo",
                    "description": "This is an amazing item that has a long description",
                },
            ),
            (
                "/items/bar?q=somequery",
                {
                    "item_id": "bar",
                    "q": "somequery",
                    "description": "This is an amazing item that has a long description",
                },
            ),
            (
                "/items/baz?short=true",
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_query_params/test_tutorial004.py

                    "description": "This is an amazing item that has a long description",
                },
            ),
            (
                "/users/1/items/bar?q=somequery",
                {
                    "item_id": "bar",
                    "owner_id": 1,
                    "q": "somequery",
                    "description": "This is an amazing item that has a long description",
                },
            ),
            (
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_path_operation_configurations/test_tutorial003_tutorial004.py

        "tutorial004": dedent("""
            Create an item with all the information:
    
            - **name**: each item must have a name
            - **description**: a long description
            - **price**: required
            - **tax**: if the item doesn't have tax, you can omit this
            - **tags**: a set of unique tag strings for this item
        """).strip(),
    }
    
    
    @pytest.fixture(
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 7K bytes
    - Viewed (0)
  5. pyproject.toml

        "W",  # pycodestyle warnings
        "F",  # pyflakes
        "I",  # isort
        "B",  # flake8-bugbear
        "C4",  # flake8-comprehensions
        "UP",  # pyupgrade
    ]
    ignore = [
        "E501",  # line too long, handled by black
        "B008",  # do not perform function calls in argument defaults
        "C901",  # too complex
        "W191",  # indentation contains tabs
    ]
    
    [tool.ruff.lint.per-file-ignores]
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  6. scripts/translate.py

            <abbr title="too long; didn't read"><strong>TL;DR:</strong></abbr>
            »»»
    
        Result (German):
    
            «««
            <abbr title="Internet of Things – Internet der Dinge">IoT</abbr>
            <abbr title="Central Processing Unit – Zentrale Verarbeitungseinheit">CPU</abbr>
            <abbr title="too long; didn't read – zu lang; hab's nicht gelesen"><strong>TL;DR:</strong></abbr>
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:05:53 UTC 2025
    - 34.1K bytes
    - Viewed (0)
Back to top