Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for cachingState (0.62 sec)

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

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps;
    
    import org.gradle.internal.execution.caching.CachingState;
    
    public interface CachingContext extends Context {
        /**
         * The resolved state of caching for the work.
         */
        CachingState getCachingState();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 17:44:52 UTC 2024
    - 878 bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/CachingStateFactory.java

    import org.gradle.internal.execution.history.BeforeExecutionState;
    import org.gradle.internal.hash.HashCode;
    
    public interface CachingStateFactory {
    
        /**
         * Creates a CachingState for beforeExecutionState, that can be either Enabled or Disabled.
         */
        CachingState createCachingState(BeforeExecutionState beforeExecutionState, HashCode cacheKey, ImmutableList<CachingDisabledReason> cachingDisabledReasons);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 17:44:52 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/CaptureOutputsAfterExecutionStep.java

    import org.gradle.caching.internal.origin.OriginMetadata;
    import org.gradle.internal.execution.OutputSnapshotter;
    import org.gradle.internal.execution.UnitOfWork;
    import org.gradle.internal.execution.caching.CachingState;
    import org.gradle.internal.execution.history.ExecutionOutputState;
    import org.gradle.internal.execution.history.impl.DefaultExecutionOutputState;
    import org.gradle.internal.hash.HashCode;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

    import org.gradle.caching.internal.origin.OriginMetadata;
    import org.gradle.internal.Deferrable;
    import org.gradle.internal.Try;
    import org.gradle.internal.execution.UnitOfWork.Identity;
    import org.gradle.internal.execution.caching.CachingState;
    import org.gradle.internal.execution.history.ExecutionOutputState;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteActionsTaskExecuter.java

    import org.gradle.internal.execution.ExecutionEngine.Result;
    import org.gradle.internal.execution.InputFingerprinter;
    import org.gradle.internal.execution.WorkValidationException;
    import org.gradle.internal.execution.caching.CachingState;
    import org.gradle.internal.execution.history.ExecutionHistoryStore;
    import org.gradle.internal.file.PathToFileResolver;
    import org.gradle.internal.file.ReservedFileSystemLocationRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ResolveNonIncrementalCachingStateStepTest.groovy

            _ * context.beforeExecutionState >> Optional.of(beforeExecutionState)
    
            _ * context.validationProblems >> ImmutableList.of()
            1 * delegate.execute(work, { CachingContext context ->
                context.cachingState.cacheKeyCalculatedState.isPresent()
            }) >> delegateResult
    
            where:
            buildCacheEnabled << [true, false]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top