Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,070 for step2 (0.12 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ResolveInputChangesStepTest.groovy

     */
    
    package org.gradle.internal.execution.steps
    
    import org.gradle.internal.execution.UnitOfWork
    import org.gradle.internal.execution.history.changes.ExecutionStateChanges
    import org.gradle.internal.execution.history.changes.InputChangesInternal
    
    class ResolveInputChangesStepTest extends StepSpec<IncrementalCachingContext> {
    
        def step = new ResolveInputChangesStep<>(delegate)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CaptureNonIncrementalStateBeforeExecutionStepTest.groovy

     */
    
    package org.gradle.internal.execution.steps
    
    import com.google.common.collect.ImmutableSortedMap
    import org.gradle.internal.execution.UnitOfWork
    
    class CaptureNonIncrementalStateBeforeExecutionStepTest extends AbstractCaptureStateBeforeExecutionStepTest<PreviousExecutionContext> {
    
        AbstractCaptureStateBeforeExecutionStep<PreviousExecutionContext, CachingResult> step
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CancelExecutionStepTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps
    
    import org.gradle.api.BuildCancelledException
    import org.gradle.initialization.DefaultBuildCancellationToken
    
    class CancelExecutionStepTest extends StepSpec<Context> {
        def cancellationToken = new DefaultBuildCancellationToken()
        def step = new CancelExecutionStep<Context, Result>(cancellationToken, delegate)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignMutableWorkspaceStep.java

     */
    
    package org.gradle.internal.execution.steps;
    
    import org.gradle.internal.execution.MutableUnitOfWork;
    import org.gradle.internal.execution.UnitOfWork;
    
    public class AssignMutableWorkspaceStep<C extends IdentityContext> implements Step<C, WorkspaceResult> {
        private final Step<? super WorkspaceContext, ? extends CachingResult> delegate;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/NeverUpToDateStep.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.internal.execution.UnitOfWork;
    
    public class NeverUpToDateStep<C extends NonIncrementalCachingContext> implements Step<C, UpToDateResult> {
        // TODO Use a better explanation?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 17:44:52 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/security/first-steps.md

    Nils Lindemann <******@****.***> 1711822028 +0100
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:07:08 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. docs/pl/docs/tutorial/first-steps.md

    Nils Lindemann <******@****.***> 1713469999 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. docs/ru/docs/tutorial/security/first-steps.md

    Joshua Hanson <******@****.***> 1710356539 -0600
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. docs/zh/docs/tutorial/security/first-steps.md

    Joshua Hanson <******@****.***> 1710356539 -0600
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/webhook/validation.go

    		urlPathToCheck = urlPathToCheck[:len(urlPathToCheck)-1]
    	}
    	steps := strings.Split(urlPathToCheck, "/")
    	for i, step := range steps {
    		if len(step) == 0 {
    			allErrors = append(allErrors, field.Invalid(fldPath.Child("path"), urlPath, fmt.Sprintf("segment[%d] may not be empty", i)))
    			continue
    		}
    		failures := validation.IsDNS1123Subdomain(step)
    		for _, failure := range failures {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 19 23:14:37 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top