Search Options

Results per page
Sort
Preferred Languages
Advance

Results 591 - 600 of 981 for warning (0.08 sec)

  1. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // resource. This replaces the deprecated `kubernetes.io/ingress.class`
      // annotation. For backwards compatibility, when that annotation is set, it
      // must be given precedence over this field. The controller may emit a
      // warning if the field and annotation have different values.
      // Implementations of this API should ignore Ingresses without a class
      // specified. An IngressClass resource may be marked as default, which can
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  2. docs/ko/docs/async.md

    > 최신 파이썬 버전은 **`async` 및 `await`** 문법과 함께 **“코루틴”**이라고 하는 것을 사용하는 **“비동기 코드”**를 지원합니다.
    
    이제 이 말을 조금 더 이해할 수 있을 것입니다. ✨
    
    이것이 (Starlette을 통해) FastAPI를 강하게 하면서 그것이 인상적인 성능을 낼 수 있게 합니다.
    
    ## 매우 세부적인 기술적 사항
    
    /// warning | "경고"
    
    이 부분은 넘어가도 됩니다.
    
    이것들은 **FastAPI**가 내부적으로 어떻게 동작하는지에 대한 매우 세부적인 기술사항입니다.
    
    만약 기술적 지식(코루틴, 스레드, 블록킹 등)이 있고 FastAPI가 어떻게 `async def` vs `def`를 다루는지 궁금하다면, 계속하십시오.
    
    ///
    
    ### 경로 작동 함수
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. docs/zh/docs/tutorial/sql-databases.md

    ```
    
    /// tip
    
    SQLAlchemy 模型`User`包含一个`hashed_password`,它应该是一个包含散列的安全密码。
    
    但由于 API 客户端提供的是原始密码,因此您需要将其提取并在应用程序中生成散列密码。
    
    然后将hashed_password参数与要保存的值一起传递。
    
    ///
    
    /// warning
    
    此示例不安全,密码未经过哈希处理。
    
    在现实生活中的应用程序中,您需要对密码进行哈希处理,并且永远不要以明文形式保存它们。
    
    有关更多详细信息,请返回教程中的安全部分。
    
    在这里,我们只关注数据库的工具和机制。
    
    ///
    
    /// tip
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.20.md

    - Kubelet: remove alpha warnings for CNI flags. ([#94508](https://github.com/kubernetes/kubernetes/pull/94508), [@andrewsykim](https://github.com/andrewsykim)) [SIG Network and Node]
    - Updates docs and guidance on cloud provider InstancesV2 and Zones interface for external cloud providers:
      - removes experimental warning for InstancesV2
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  5. docs/zh/docs/deployment/docker.md

    
    
    * <a href="https://github.com/tiangolo/uvicorn-gunicorn-fastapi-docker" class="external-link" target="_blank">tiangolo/uvicorn-gunicorn-fastapi</a>.
    
    
    /// warning
    
    你很有可能不需要此基础镜像或任何其他类似的镜像,最好从头开始构建镜像,如[上面所述:为 FastAPI 构建 Docker 镜像](#build-a-docker-image-for-fastapi)。
    
    ///
    
    该镜像包含一个**自动调整**机制,用于根据可用的 CPU 核心设置**worker进程数**。
    
    它具有**合理的默认值**,但你仍然可以使用**环境变量**或配置文件更改和更新所有配置。
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 12 21:47:53 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_3x.md

        your build configuration, `.jar` file, or `.apk`. We use
        `@ParametersAreNonnullByDefault` and all parameters and return types are
        never null unless explicitly annotated `@Nullable`.
    
     *  **Warning: this release is source-incompatible for Kotlin users.**
        Nullability was previously ambiguous and lenient but now the compiler will
        enforce strict null checks.
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

              <name>sendOnWarning</name>
              <version>4.0.0+</version>
              <defaultValue>true</defaultValue>
              <type>boolean</type>
              <description>Whether to send notifications on warning.</description>
            </field>
            <!-- TODO: Remove it after continuum alpha-3 release -->
            <field>
              <name>address</name>
              <version>4.0.0+</version>
              <type>String</type>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 09 11:07:31 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message:  */
        public static final String ERRORS_front_footer = "{errors.front_footer}";
    
        /** The key of the message: &lt;div class="alert alert-warning"&gt; */
        public static final String ERRORS_front_prefix = "{errors.front_prefix}";
    
        /** The key of the message: &lt;/div&gt; */
        public static final String ERRORS_front_suffix = "{errors.front_suffix}";
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.18.md

    - Warning about using a deprecated volume plugin is logged only once. ([#96751](https://github.com/kubernetes/kubernetes/pull/96751), [@jsafrane](https://github.com/jsafrane)) [SIG Storage]
    
    ### Other (Cleanup or Flake)
    
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  10. docs/ja/docs/async.md

    > 現代版のPythonは「**非同期コード**」を、「**コルーチン**」と称されるものを利用してサポートしています。これは **`async` と `await`** 構文を用います。
    
    今では、この意味がより理解できるはずです。✨
    
    (Starletteを介して) FastAPIに力を与えて、印象的なパフォーマンスを実現しているものはこれがすべてです。
    
    ## 非常に発展的な技術的詳細
    
    /// warning | "注意"
    
    恐らくスキップしても良いでしょう。
    
    この部分は**FastAPI**の仕組みに関する非常に技術的な詳細です。
    
    かなりの技術知識 (コルーチン、スレッド、ブロッキングなど) があり、FastAPIが `async def` と通常の `def` をどのように処理するか知りたい場合は、先に進んでください。
    
    ///
    
    ### Path operation 関数
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top