Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 105 for imageID (0.22 sec)

  1. docs/zh/docs/tutorial/metadata.md

    L19:你可以按如下方式设置它们:
    L20:
    L21:```Python hl_lines="4-6"
    L22:{!../../../docs_src/metadata/tutorial001.py!}
    L23:```
    L24:
    L25:!!! tip
    L26:    您可以在 `description` 字段中编写 Markdown,它将在输出中呈现。
    L27:
    L28:通过这样设置,自动 API 文档看起来会像:
    L29:
    L30:<img src="/img/tutorial/metadata/image01.png">
    L31:
    L32:## 标签元数据
    L33:
    L34:### 创建标签元数据
    L35:
    L36:让我们在带有标签的示例中为 `users` 和 `items` 试一下。
    L37:
    L38:创建标签元数据并把它传递给 `openapi_tags` 参数:
    L39:
    L40:```Python hl_lines="3-16  18"
    L41:{!../../../docs_src/metadata/tutorial004.py!}
    L42:```
    L43:
    ...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. docs/ko/docs/tutorial/response-status-code.md

    `status_code` 매개변수는:
    
    * 응답에서 해당 상태 코드를 반환합니다.
    * 상태 코드를 OpenAPI 스키마(및 사용자 인터페이스)에 문서화 합니다.
    
    <img src="https://fastapi.tiangolo.com/img/tutorial/response-status-code/image01.png">
    
    !!! note "참고"
        어떤 응답 코드들은 해당 응답에 본문이 없다는 것을 의미하기도 합니다 (다음 항목 참고).
    
        이에 따라 FastAPI는 응답 본문이 없음을 명시하는 OpenAPI를 생성합니다.
    
    ## HTTP 상태 코드에 대하여
    
    !!! note "참고"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:06:53 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      optional int32 restartCount = 5;
    
      // Image is the name of container image that the container is running.
      // The container image may not match the image used in the PodSpec,
      // as it may have been resolved by the runtime.
      // More info: https://kubernetes.io/docs/concepts/containers/images.
      optional string image = 6;
    
      // ImageID is the image ID of the container's image. The image ID may not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. docs/ja/docs/tutorial/security/first-steps.md

    下記のように見えるでしょう:
    
    <img src="/img/tutorial/security/image01.png">
    
    !!! check "Authorizeボタン!"
        すでにピカピカの新しい「Authorize」ボタンがあります。
    
        そして、あなたの*path operation*には、右上にクリックできる小さな鍵アイコンがあります。
    
    それをクリックすると、`ユーザー名`と`パスワード` (およびその他のオプションフィールド) を入力する小さな認証フォームが表示されます:
    
    <img src="/img/tutorial/security/image02.png">
    
    !!! note "備考"
        フォームに何を入力しても、まだうまくいきません。ですが、これから動くようになります。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/schema-extra-example.md

        {!> ../../../docs_src/schema_extra_example/tutorial003.py!}
        ```
    
    ### Example in the docs UI
    
    With any of the methods above it would look like this in the `/docs`:
    
    <img src="/img/tutorial/body-fields/image01.png">
    
    ### `Body` with multiple `examples`
    
    You can of course also pass multiple `examples`:
    
    === "Python 3.10+"
    
        ```Python hl_lines="23-38"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.pb.go

    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.ContainerID)))
    	i--
    	dAtA[i] = 0x42
    	i -= len(m.ImageID)
    	copy(dAtA[i:], m.ImageID)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.ImageID)))
    	i--
    	dAtA[i] = 0x3a
    	i -= len(m.Image)
    	copy(dAtA[i:], m.Image)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Image)))
    	i--
    	dAtA[i] = 0x32
    	i = encodeVarintGenerated(dAtA, i, uint64(m.RestartCount))
    	i--
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  7. docs/en/docs/advanced/openapi-webhooks.md

    You will see your docs have the normal *path operations* and now also some **webhooks**:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/dataclasses.md

    {!../../../docs_src/dataclasses/tutorial002.py!}
    ```
    
    The dataclass will be automatically converted to a Pydantic dataclass.
    
    This way, its schema will show up in the API docs user interface:
    
    <img src="/img/tutorial/dataclasses/image01.png">
    
    ## Dataclasses in Nested Data Structures
    
    You can also combine `dataclasses` with other type annotations to make nested data structures.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. docs/em/docs/advanced/path-operation-advanced-configuration.md

    ```Python hl_lines="6"
    {!../../../docs_src/path_operation_advanced_configuration/tutorial005.py!}
    ```
    
    🚥 👆 📂 🏧 🛠️ 🩺, 👆 ↔ 🔜 🎦 🆙 🔝 🎯 *➡ 🛠️*.
    
    <img src="/img/tutorial/path-operation-advanced-configuration/image01.png">
    
    &amp; 🚥 👆 👀 📉 🗄 ( `/openapi.json` 👆 🛠️), 👆 🔜 👀 👆 ↔ 🍕 🎯 *➡ 🛠️* 💁‍♂️:
    
    ```JSON hl_lines="22"
    {
        "openapi": "3.0.2",
        "info": {
            "title": "FastAPI",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/response-model.md

    When you see the automatic docs, you can check that the input model and output model will both have their own JSON Schema:
    
    <img src="/img/tutorial/response-model/image01.png">
    
    And both models will be used for the interactive API documentation:
    
    <img src="/img/tutorial/response-model/image02.png">
    
    ## Other Return Type Annotations
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top