Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 444 for step2 (0.04 sec)

  1. pkg/controller/volume/persistentvolume/pv_controller_test.go

    	// Store new PV
    	storeVersion(t, "Step1", c, "1", true)
    	// Store the same PV
    	storeVersion(t, "Step2", c, "1", true)
    	// Store newer PV
    	storeVersion(t, "Step3", c, "2", true)
    	// Store older PV - simulating old "PV updated" event or periodic sync with
    	// old data
    	storeVersion(t, "Step4", c, "1", false)
    	// Store newer PV - test integer parsing ("2" > "10" as string,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. docs/ja/docs/tutorial/first-steps.md

    ## ステップ毎の要約
    
    ### Step 1: `FastAPI`をインポート
    
    ```Python hl_lines="1"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    `FastAPI`は、APIのすべての機能を提供するPythonクラスです。
    
    !!! note "技術詳細"
        `FastAPI`は`Starlette`を直接継承するクラスです。
    
        `FastAPI`でも<a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a>のすべての機能を利用可能です。
    
    ### Step 2: `FastAPI`の「インスタンス」を生成
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. docs/vi/docs/tutorial/first-steps.md

        Thông tin ở đây được biểu thị như là một chỉ dẫn, không phải là một yêu cầu bắt buộc.
    
        Ví dụ, khi sử dụng GraphQL bạn thông thường thực hiện tất cả các hành động chỉ bằng việc sử dụng các toán tử `POST`.
    
    ### Step 4: Định nghĩa **hàm cho đường dẫn toán tử**
    
    Đây là "**hàm cho đường dẫn toán tử**":
    
    * **đường dẫn**: là `/`.
    * **toán tử**: là `get`.
    * **hàm**: là hàm bên dưới "decorator" (bên dưới `@app.get("/")`).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Sep 02 15:44:17 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/ci-systems/jenkins-build-step.png

    jenkins-build-step.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-step-upd.png

    teamcity-step-upd.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-step-added.png

    teamcity-step-added.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-step-edit.png

    teamcity-step-edit.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  8. .teamcity/src/test/kotlin/PromotionProjectTests.kt

            val startReleaseCycle = model.findBuildTypeByName("Start Release Cycle")
    
            val steps = startReleaseCycle.steps.items
            assertEquals(1, steps.size)
    
            val step = gradleStep(steps, 0)
            step.assertTasks("clean promoteStartReleaseCycle")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 14:18:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/wait/backoff.go

    func (b Backoff) DelayFunc() DelayFunc {
    	steps := b.Steps
    	duration := b.Duration
    	cap := b.Cap
    	factor := b.Factor
    	jitter := b.Jitter
    
    	return func() time.Duration {
    		var nextDuration time.Duration
    		// jitter is applied per step and is not cumulative over multiple steps
    		nextDuration, duration, steps = delay(steps, duration, cap, factor, jitter)
    		return nextDuration
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ExecutionGradleServices.java

    import org.gradle.internal.execution.steps.SkipUpToDateStep;
    import org.gradle.internal.execution.steps.Step;
    import org.gradle.internal.execution.steps.StoreExecutionStateStep;
    import org.gradle.internal.execution.steps.TimeoutStep;
    import org.gradle.internal.execution.steps.ValidateStep;
    import org.gradle.internal.execution.steps.WorkspaceResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top