Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,070 for step2 (1.18 sec)

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

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps
    
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.internal.execution.UnitOfWork
    import org.gradle.internal.file.TreeType
    
    class PreCreateOutputParentsStepTest extends StepSpec<ChangingOutputsContext> {
        def step = new PreCreateOutputParentsStep<>(delegate)
    
        def "outputs are created"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:22 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/TimeoutStepTest.groovy

        def currentBuildOperationRef = new CurrentBuildOperationRef()
        def step = new TimeoutStep<>(timeoutHandler, currentBuildOperationRef, delegate)
        def delegateResult = Mock(Result)
    
        def "negative timeout is reported"() {
            when:
            step.execute(work, context)
    
            then:
            thrown InvalidUserDataException
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/PreCreateOutputParentsStep.java

     */
    
    package org.gradle.internal.execution.steps;
    
    import org.gradle.internal.execution.UnitOfWork;
    import org.gradle.internal.file.TreeType;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.io.File;
    
    import static org.gradle.util.internal.GFileUtils.mkdirs;
    
    public class PreCreateOutputParentsStep<C extends ChangingOutputsContext, R extends Result> implements Step<C, R> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:22 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ResolveInputChangesStep.java

    public class ResolveInputChangesStep<C extends IncrementalCachingContext, R extends Result> implements Step<C, R> {
        private static final Logger LOGGER = LoggerFactory.getLogger(ResolveInputChangesStep.class);
    
        private final Step<? super InputChangesContext, ? extends R> delegate;
    
        public ResolveInputChangesStep(Step<? super InputChangesContext, ? extends R> delegate) {
            this.delegate = delegate;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. .github/workflows/build-docs.yml

          - name: Install docs extras
            if: steps.cache.outputs.cache-hit != 'true'
            run: pip install -r requirements-docs.txt
          # Install MkDocs Material Insiders here just to put it in the cache for the rest of the steps
          - name: Install Material for MkDocs Insiders
            if: ( github.event_name != 'pull_request' || github.secret_source == 'Actions' ) && steps.cache.outputs.cache-hit != 'true'
            run: |
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. docs/es/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.9K bytes
    - Viewed (0)
  7. docs/pt/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.6K bytes
    - Viewed (0)
  8. docs/fr/docs/tutorial/first-steps.md

    Samuel Rigaud <******@****.***> 1695847951 -0400
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/security/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
    - 8.3K bytes
    - Viewed (0)
  10. docs/ru/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
    - 13.1K bytes
    - Viewed (0)
Back to top