Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for BUILD_CACHE_DISABLED (0.19 sec)

  1. src/cmd/go/testdata/script/build_cache_disabled.txt

    Jay Conrod <******@****.***> 1632516699 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 965 bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

            then:
            assertCachingDisabledFor BUILD_CACHE_DISABLED, "Build cache is disabled"
    
            when:
            run "notCacheableByDefault"
            then:
            assertCachingDisabledFor BUILD_CACHE_DISABLED, "Build cache is disabled"
    
            when:
            run "unspecified"
            then:
            assertCachingDisabledFor BUILD_CACHE_DISABLED, "Build cache is disabled"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationResult.java

            switch (category) {
                case UNKNOWN:
                    return CachingDisabledReasonCategory.UNKNOWN;
                case BUILD_CACHE_DISABLED:
                    return CachingDisabledReasonCategory.BUILD_CACHE_DISABLED;
                case NOT_CACHEABLE:
                    return CachingDisabledReasonCategory.NOT_ENABLED_FOR_TASK;
                case ENABLE_CONDITION_NOT_SATISFIED:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/CachingDisabledReasonCategory.java

    public enum CachingDisabledReasonCategory {
        /**
         * Reason for disabled caching is not known.
         */
        UNKNOWN,
    
        /**
         * Caching has not been enabled for the build.
         */
        BUILD_CACHE_DISABLED,
    
        /**
         * Caching has not been enabled for the work.
         */
        NOT_CACHEABLE,
    
        /**
         * Condition enabling caching isn't satisfied.
         */
        ENABLE_CONDITION_NOT_SATISFIED,
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ExecuteWorkBuildOperationFiringStep.java

                    case UNKNOWN:
                        return org.gradle.operations.execution.CachingDisabledReasonCategory.UNKNOWN;
                    case BUILD_CACHE_DISABLED:
                        return org.gradle.operations.execution.CachingDisabledReasonCategory.BUILD_CACHE_DISABLED;
                    case NOT_CACHEABLE:
                        return org.gradle.operations.execution.CachingDisabledReasonCategory.NOT_CACHEABLE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/CachingDisabledReasonCategory.java

    public enum CachingDisabledReasonCategory {
        /**
         * Reason for disabled caching is not known.
         */
        UNKNOWN,
    
        /**
         * Caching has not been enabled for the build.
         */
        BUILD_CACHE_DISABLED,
    
        /**
         * Caching has not been enabled for the task.
         */
        NOT_ENABLED_FOR_TASK,
    
        /**
         * Caching has not been enabled for the work.
         *
         * @since 8.3
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AbstractResolveCachingStateStepTest.groovy

            1 * delegate.execute(work, { CachingContext context ->
                context.cachingState.whenDisabled().map { it.disabledReasons*.category }.get() == [CachingDisabledReasonCategory.BUILD_CACHE_DISABLED]
                context.cachingState.whenDisabled().map { it.disabledReasons*.message }.get() == ["Build cache is disabled"]
            }) >> delegateResult
        }
    
        def "disables caching when work is invalid"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractResolveCachingStateStep.java

        private static final CachingDisabledReason BUILD_CACHE_DISABLED_REASON = new CachingDisabledReason(CachingDisabledReasonCategory.BUILD_CACHE_DISABLED, "Build cache is disabled");
        private static final CachingState BUILD_CACHE_DISABLED_STATE = CachingState.disabledWithoutInputs(BUILD_CACHE_DISABLED_REASON);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top