Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,070 for step2 (0.17 sec)

  1. 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)
  2. docs/en/docs/tutorial/security/first-steps.md

    # Security - First Steps
    
    Let's imagine that you have your **backend** API in some domain.
    
    And you have a **frontend** in another domain or in a different path of the same domain (or in a mobile application).
    
    And you want to have a way for the frontend to authenticate with the backend, using a **username** and **password**.
    
    We can use **OAuth2** to build that with **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. .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)
  6. 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)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/legacy/MarkSnapshottingInputsFinishedStep.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps.legacy;
    
    import org.gradle.internal.execution.UnitOfWork;
    import org.gradle.internal.execution.steps.CachingContext;
    import org.gradle.internal.execution.steps.Result;
    import org.gradle.internal.execution.steps.Step;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformChain.java

        /**
         * @param init The initial steps of this chain, or null if this chain only contains one step.
         * @param last The last step of this chain.
         */
        public TransformChain(@Nullable TransformChain init, TransformStep last) {
            this.init = init;
            this.last = last;
        }
    
        /**
         * @return The initial steps of this chain, or null if this chain only contains one step.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/runtime/defer_test.go

    				expect(t, 1, recover())
    			}()
    			defer panic(1)
    		}()
    		defer func() {}()
    		defer func() {}()
    		defer step(t, &steps, 10)
    		defer step(t, &steps, 9)
    		step(t, &steps, 8)
    	}()
    	func() {
    		defer step(t, &steps, 13)
    		defer step(t, &steps, 12)
    		func() {
    			defer step(t, &steps, 11)
    			panic(4)
    		}()
    
    		// Code below isn't executed,
    		// but removing it breaks the test case.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:57:24 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top