Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 101 for UnitOfWork (0.17 sec)

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

        }
    
        private void validateImplementations(UnitOfWork work, BeforeExecutionState beforeExecutionState, WorkValidationContext validationContext) {
            MutableReference<Class<?>> workClass = MutableReference.empty();
            work.visitImplementations(new UnitOfWork.ImplementationVisitor() {
                @Override
                public void visitImplementation(Class<?> implementation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BroadcastChangingOutputsStep.java

        }
    
        @Override
        public Result execute(UnitOfWork work, C context) {
            ImmutableList.Builder<String> builder = ImmutableList.builder();
            work.visitOutputs(context.getWorkspace(), new UnitOfWork.OutputVisitor() {
                @Override
                public void visitOutputProperty(String propertyName, TreeType type, UnitOfWork.OutputFileValueSupplier value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:23 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DependencyManagementGradleUserHomeScopeServices.java

    import org.gradle.execution.plan.ToPlannedNodeConverter;
    import org.gradle.internal.event.ListenerManager;
    import org.gradle.internal.execution.ExecutionEngine;
    import org.gradle.internal.execution.UnitOfWork;
    import org.gradle.internal.execution.workspace.ImmutableWorkspaceProvider;
    import org.gradle.internal.execution.workspace.impl.CacheBasedImmutableWorkspaceProvider;
    import org.gradle.internal.file.FileAccessTimeJournal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/HandleStaleOutputsStep.java

            return result;
        }
    
        private void cleanupStaleOutputs(UnitOfWork work, C context) {
            Set<File> filesToDelete = new HashSet<>();
            work.visitOutputs(context.getWorkspace(), new UnitOfWork.OutputVisitor() {
                @Override
                public void visitOutputProperty(String propertyName, TreeType type, UnitOfWork.OutputFileValueSupplier value) {
                    Streams.stream(value.getFiles())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GenerateVersionCatalogAccessors.kt

        override val identitySuffix: String = "VC"
    
        override fun execute(executionRequest: UnitOfWork.ExecutionRequest): UnitOfWork.WorkOutput {
            val workspace = executionRequest.workspace
            kotlinScriptClassPathProviderOf(rootProject).run {
                withAsynchronousIO(rootProject) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ResolveNonIncrementalCachingStateStep.java

    package org.gradle.internal.execution.steps;
    
    import org.gradle.caching.internal.controller.BuildCacheController;
    import org.gradle.caching.internal.controller.NoOpBuildCacheController;
    import org.gradle.internal.execution.UnitOfWork;
    import org.gradle.internal.execution.caching.CachingState;
    import org.gradle.internal.hash.HashCode;
    
    import java.util.Optional;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/TimeoutStep.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps;
    
    import org.gradle.api.GradleException;
    import org.gradle.api.InvalidUserDataException;
    import org.gradle.internal.execution.UnitOfWork;
    import org.gradle.internal.execution.timeout.Timeout;
    import org.gradle.internal.execution.timeout.TimeoutHandler;
    import org.gradle.internal.operations.CurrentBuildOperationRef;
    
    import java.time.Duration;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/DeferredExecutionAwareStep.java

    import org.gradle.internal.execution.ExecutionEngine.IdentityCacheResult;
    import org.gradle.internal.execution.UnitOfWork;
    import org.gradle.internal.execution.UnitOfWork.Identity;
    
    public interface DeferredExecutionAwareStep<C extends Context, R extends Result> extends Step<C, R> {
        <T> Deferrable<Try<T>> executeDeferred(UnitOfWork work, C context, Cache<Identity, IdentityCacheResult<T>> cache);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 16:13:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CaptureIncrementalStateBeforeExecutionStepTest.groovy

    import org.gradle.internal.execution.OutputSnapshotter
    import org.gradle.internal.execution.UnitOfWork
    import org.gradle.internal.execution.history.OverlappingOutputDetector
    import org.gradle.internal.execution.history.PreviousExecutionState
    import org.gradle.internal.snapshot.FileSystemSnapshot
    
    import static org.gradle.internal.execution.UnitOfWork.OverlappingOutputHandling.DETECT_OVERLAPS
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStepConcurrencyTest.groovy

        private static class MockStep implements Step<WorkspaceContext, CachingResult> {
            BiFunction<UnitOfWork, WorkspaceContext, CachingResult> expectCall
    
            @Override
            CachingResult execute(UnitOfWork work, WorkspaceContext context) {
                def call = expectCall
                expectCall = null
                return call.apply(work, context)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:46:25 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top