Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for UnitOfWork (0.15 sec)

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

    import javax.annotation.Nonnull;
    import javax.annotation.Nullable;
    import java.io.File;
    import java.time.Duration;
    import java.util.Map;
    import java.util.Optional;
    import java.util.function.Supplier;
    
    public interface UnitOfWork extends Describable {
    
        /**
         * Identifier of the type of the work used in build operations.
         * <p>
         * Values returned here become part of the contract of related build operations.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildCacheStep.java

        private AfterExecutionResult executeWithoutCache(UnitOfWork work, C context) {
            return delegate.execute(work, context);
        }
    
        private static class CacheableWork implements CacheableEntity {
            private final String identity;
            private final File workspace;
            private final UnitOfWork work;
    
            public CacheableWork(String identity, File workspace, UnitOfWork work) {
                this.identity = identity;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

                }
            }
        }
    
        ExecutionEngine.Result outOfDate(UnitOfWork unitOfWork, String... expectedReasons) {
            return outOfDate(unitOfWork, ImmutableList.<String> copyOf(expectedReasons))
        }
    
        ExecutionEngine.Result outOfDate(UnitOfWork unitOfWork, List<String> expectedReasons) {
            def result = execute(unitOfWork)
            assert result.execution.get().outcome == EXECUTED_NON_INCREMENTALLY
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

    import org.gradle.internal.execution.InputFingerprinter
    import org.gradle.internal.execution.UnitOfWork
    import org.gradle.internal.execution.UnitOfWork.InputFileValueSupplier
    import org.gradle.internal.execution.UnitOfWork.InputVisitor
    import org.gradle.internal.execution.UnitOfWork.OutputFileValueSupplier
    import org.gradle.internal.execution.model.InputNormalizer
    import org.gradle.internal.file.TreeType.DIRECTORY
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/impl/DefaultInputFingerprinter.java

    import org.gradle.internal.execution.FileNormalizationSpec;
    import org.gradle.internal.execution.InputFingerprinter;
    import org.gradle.internal.execution.UnitOfWork.InputFileValueSupplier;
    import org.gradle.internal.execution.UnitOfWork.InputVisitor;
    import org.gradle.internal.execution.UnitOfWork.ValueSupplier;
    import org.gradle.internal.fingerprint.CurrentFileCollectionFingerprint;
    import org.gradle.internal.fingerprint.FileCollectionFingerprint;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutorTest.groovy

    import org.gradle.internal.buildevents.BuildStartedTime
    import org.gradle.internal.buildtree.BuildActionRunner
    import org.gradle.internal.event.DefaultListenerManager
    import org.gradle.internal.execution.UnitOfWork
    import org.gradle.internal.execution.UnitOfWork.InputVisitor
    import org.gradle.internal.invocation.BuildAction
    import org.gradle.internal.logging.text.TestStyledTextOutputFactory
    import org.gradle.internal.properties.InputBehavior
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStepTest.groovy

    import org.gradle.internal.Try
    import org.gradle.internal.execution.ExecutionEngine
    import org.gradle.internal.execution.ImmutableUnitOfWork
    import org.gradle.internal.execution.OutputSnapshotter
    import org.gradle.internal.execution.UnitOfWork
    import org.gradle.internal.execution.history.ExecutionOutputState
    import org.gradle.internal.execution.history.ImmutableWorkspaceMetadata
    import org.gradle.internal.execution.history.ImmutableWorkspaceMetadataStore
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 14:32:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GeneratePluginSpecBuilderAccessors.kt

        override fun getDisplayName(): String = "Kotlin DSL plugin specs accessors for classpath '$classLoaderHash'"
    
        override val identitySuffix: String = "PS"
    
        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
    - 15.7K bytes
    - Viewed (0)
Back to top