Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 551 - 560 of 784 for stopTs (0.25 seconds)

  1. helm-releases/minio-5.3.0.tgz

    clientSecret: "" # Provide existing client secret from the Kubernetes Secret resource, existing secret will have priority over `clientId` and/or `clientSecret`` existingClientSecret: "" existingClientIdKey: "" existingClientSecret: "" claimName: "policy" scopes: "openid,profile,email" redirectUri: "https://console-endpoint-url/oauth_callback" # Can leave empty claimPrefix: "" comment: "" displayName: "" networkPolicy: enabled: false # Specifies whether the policies created will be standard Network Policies...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Oct 11 12:21:05 GMT 2024
    - 21.7K bytes
    - Click Count (0)
  2. cmd/admin-heal-ops.go

    	defer h.mutex.RUnlock()
    	// background heal never ends
    	if h.clientToken == bgHealingUUID {
    		return false
    	}
    	return !h.endTime.IsZero()
    }
    
    // stops the heal sequence - safe to call multiple times.
    func (h *healSequence) stop() {
    	h.cancelCtx()
    }
    
    // pushHealResultItem - pushes a heal result item for consumption in
    // the heal-status API. It blocks if there are
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 25.4K bytes
    - Click Count (0)
  3. docs/es/docs/tutorial/dependencies/index.md

    * Compartir conexiones a bases de datos.
    * Imponer seguridad, autenticación, requisitos de roles, etc.
    * Y muchas otras cosas...
    
    Todo esto, mientras minimizas la repetición de código.
    
    ## Primeros Pasos { #first-steps }
    
    Veamos un ejemplo muy simple. Será tan simple que no es muy útil, por ahora.
    
    Pero de esta manera podemos enfocarnos en cómo funciona el sistema de **Inyección de Dependencias**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 10K bytes
    - Click Count (0)
  4. docs/ja/docs/how-to/migrate-from-pydantic-v1-to-pydantic-v2.md

    {* ../../docs_src/pydantic_v1_in_v2/tutorial004_an_py310.py hl[4,18] *}
    
    ### 段階的に移行 { #migrate-in-steps }
    
    /// tip | 豆知識
    
    まずは `bump-pydantic` を試してください。テストが通り、問題なければコマンド一発で完了です。✨
    
    ///
    
    `bump-pydantic` が適用できない場合は、同一アプリで v1 と v2 のモデルを併用できるサポートを利用して、徐々に v2 へ移行できます。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  5. README.md

    The TensorFlow project strives to abide by generally accepted best practices in
    open-source software development.
    
    ## Patching guidelines
    
    Follow these steps to patch a specific version of TensorFlow, for example, to
    apply fixes to bugs or security vulnerabilities:
    
    *   Clone the TensorFlow repository and switch to the appropriate branch for
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Apr 02 10:38:57 GMT 2026
    - 11.6K bytes
    - Click Count (0)
  6. fastapi/params.py

    class Depends:
        dependency: Callable[..., Any] | None = None
        use_cache: bool = True
        scope: Literal["function", "request"] | None = None
    
    
    @dataclass(frozen=True)
    class Security(Depends):
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 25.7K bytes
    - Click Count (0)
  7. docs/tr/docs/tutorial/dependencies/index.md

    * Veritabanı bağlantılarını paylaşmak.
    * Güvenlik, authentication, rol gereksinimleri vb. kuralları zorunlu kılmak.
    * Ve daha birçok şey...
    
    Tüm bunları, kod tekrarını minimumda tutarak yaparsınız.
    
    ## İlk Adımlar { #first-steps }
    
    Çok basit bir örneğe bakalım. Şimdilik o kadar basit olacak ki pek işe yaramayacak.
    
    Ama bu sayede **Dependency Injection** sisteminin nasıl çalıştığına odaklanabiliriz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 10.2K bytes
    - Click Count (0)
  8. docs/zh/docs/deployment/concepts.md

    /// tip | 提示
    
    如果这些关于 **容器**、Docker 或 Kubernetes 的内容还没有多大意义,请不要担心。
    
    我将在以后的章节中向您详细介绍容器镜像、Docker、Kubernetes 等:[容器中的 FastAPI - Docker](docker.md)。
    
    ///
    
    ## 启动之前的步骤 { #previous-steps-before-starting }
    
    在很多情况下,您希望在**启动**应用程序之前执行一些步骤。
    
    例如,您可能想要运行**数据库迁移**。
    
    但在大多数情况下,您只想执行这些步骤**一次**。
    
    因此,在启动应用程序之前,您将需要一个**单个进程**来执行这些**前面的步骤**。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 16.8K bytes
    - Click Count (0)
  9. docs/en/docs/tutorial/sql-databases.md

    {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[21:22] hl[21:22] *}
    
    ### Create a Session Dependency { #create-a-session-dependency }
    
    A **`Session`** is what stores the **objects in memory** and keeps track of any changes needed in the data, then it **uses the `engine`** to communicate with the database.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 15.3K bytes
    - Click Count (0)
  10. docs/zh/docs/tutorial/dependencies/index.md

    然后,由该系统(本文中为 **FastAPI**)负责执行所有必要的逻辑,为你的代码提供这些所需的依赖(“注入”依赖)。
    
    当你需要以下内容时,这非常有用:
    
    * 共享业务逻辑(同一段代码逻辑反复复用)
    * 共享数据库连接
    * 实施安全、认证、角色权限等要求
    * 以及更多其他内容...
    
    同时尽量减少代码重复。
    
    ## 第一步 { #first-steps }
    
    先来看一个非常简单的例子。它现在简单到几乎没什么用。
    
    但这样我们就可以专注于**依赖注入**系统是如何工作的。
    
    ### 创建依赖项,或“dependable” { #create-a-dependency-or-dependable }
    
    首先关注依赖项。
    
    它只是一个函数,且可以接收与*路径操作函数*相同的所有参数:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 8.7K bytes
    - Click Count (0)
Back to Top