Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 101 for UnitOfWork (0.15 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

                });
            });
        }
    
        private class WorkspaceMoveHandler {
            private final UnitOfWork work;
            private final ImmutableWorkspace workspace;
            private final File temporaryWorkspace;
            private final CachingResult delegateResult;
    
            public WorkspaceMoveHandler(UnitOfWork work, ImmutableWorkspace workspace, File temporaryWorkspace, CachingResult delegateResult) {
                this.work = work;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/LoadPreviousExecutionStateStepTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps
    
    import org.gradle.internal.execution.UnitOfWork
    import org.gradle.internal.execution.history.ExecutionHistoryStore
    import org.gradle.internal.execution.history.PreviousExecutionState
    
    class LoadPreviousExecutionStateStepTest extends StepSpec<WorkspaceContext> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/LoadPreviousExecutionStateStep.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps;
    
    import org.gradle.internal.execution.UnitOfWork;
    import org.gradle.internal.execution.UnitOfWork.Identity;
    import org.gradle.internal.execution.history.PreviousExecutionState;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/RemovePreviousOutputsStepTest.groovy

    import com.google.common.collect.ImmutableSortedMap
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.internal.execution.OutputChangeListener
    import org.gradle.internal.execution.UnitOfWork
    import org.gradle.internal.execution.UnitOfWork.OutputVisitor
    import org.gradle.internal.execution.history.BeforeExecutionState
    import org.gradle.internal.execution.history.OverlappingOutputs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/impl/DefaultExecutionEngine.java

    import org.gradle.cache.Cache;
    import org.gradle.internal.Deferrable;
    import org.gradle.internal.Try;
    import org.gradle.internal.execution.ExecutionEngine;
    import org.gradle.internal.execution.UnitOfWork;
    import org.gradle.internal.execution.UnitOfWork.Identity;
    import org.gradle.internal.execution.WorkValidationContext;
    import org.gradle.internal.execution.steps.DeferredExecutionAwareStep;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 16:13:07 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/Stage1BlocksAccessorClassPath.kt

    import org.gradle.internal.execution.ImmutableUnitOfWork
    import org.gradle.internal.execution.InputFingerprinter
    import org.gradle.internal.execution.UnitOfWork
    import org.gradle.internal.execution.UnitOfWork.InputVisitor
    import org.gradle.internal.execution.UnitOfWork.OutputFileValueSupplier
    import org.gradle.internal.file.TreeType.DIRECTORY
    import org.gradle.internal.fingerprint.CurrentFileCollectionFingerprint
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 18:58:57 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/CancelExecutionStep.java

     */
    
    package org.gradle.internal.execution.steps;
    
    import org.gradle.api.BuildCancelledException;
    import org.gradle.initialization.BuildCancellationToken;
    import org.gradle.internal.execution.UnitOfWork;
    
    public class CancelExecutionStep<C extends Context, R extends Result> implements Step<C, R> {
        private final BuildCancellationToken cancellationToken;
        private final Step<? super C, ? extends R> delegate;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/legacy/MarkSnapshottingInputsStartedStep.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps.legacy;
    
    import org.gradle.internal.execution.UnitOfWork;
    import org.gradle.internal.execution.steps.Context;
    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)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/Step.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps;
    
    import org.gradle.internal.execution.UnitOfWork;
    
    public interface Step<C extends Context, R extends Result> {
        R execute(UnitOfWork work, C context);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 819 bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/Result.java

            return new Result(duration, Try.successful(outcome));
        }
    
        /**
         * The elapsed wall clock time of executing the actual work, i.e. the time it took to execute the
         * {@link UnitOfWork#execute(UnitOfWork.ExecutionRequest)} method.
         *
         * The execution time refers to when and where the work was executed: if a previous result was reused,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top