Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 261 - 270 of 417 for step5 (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. 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)
  2. cmd/erasure-object_test.go

    	}
    
    	for i, testCase := range testCases {
    		// Step 1: create a bucket
    		err = z.MakeBucket(ctx, testCase.bucket, MakeBucketOptions{VersioningEnabled: testCase.versioned})
    		if err != nil {
    			t.Fatalf("Test %d: Failed to create a bucket: %v", i+1, err)
    		}
    
    		// Step 2: Upload an object with a random content
    		initialData := bytes.Repeat([]byte{'b'}, len(testCase.content))
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 38.3K 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. 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)
  7. 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)
  8. build-tools-internal/src/main/groovy/elasticsearch.ide.gradle

          xmlFragment.module.each { treeWalker.append(it) }
    
          // Change the checkstyle config to inline the path to the
          // suppressions config. This removes a configuration step when using
          // the checkstyle config in an IDE.
          Node suppressions = xml.module.find { it.'@name' == 'SuppressionFilter' }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 24 19:34:12 GMT 2021
    - 8.8K bytes
    - Click Count (0)
  9. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                                        // managed version's POM, *not* any other version's POM.
                                        // We retrieve the POM below in the retrieval step.
                                        manageArtifact(child, managedVersions, listeners);
    
                                        // Also, we need to ensure that any exclusions it presents are
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 36.5K bytes
    - Click Count (0)
  10. docs/SMB3_IMPLEMENTATION_PLAN.md

    3. **Reliability**: 
       - Persistent handles survive 99% of network interruptions
       - Witness protocol achieves <5 second failover time
    4. **Compatibility**: Works with Windows Server 2016+ and Azure Files
    
    ## Next Steps
    
    1. **Immediate Actions**:
       - Set up Windows Server test environment
       - Create detailed technical specifications for Phase 1
       - Identify and evaluate Java RDMA libraries
    
    2. **Phase 1 Kickoff**:
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 02:53:50 GMT 2025
    - 10.7K bytes
    - Click Count (0)
Back to Top