Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NOT_ENABLED_FOR_TASK (0.14 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

        }
    
        def "cacheability for task with unspecified cacheability is NOT_ENABLED_FOR_TASK"() {
            buildFile << """
                task unspecified(type: UnspecifiedCacheabilityTask) {}
            """
            when:
            withBuildCache().run "unspecified"
            then:
            assertCachingDisabledFor NOT_ENABLED_FOR_TASK, "Caching has not been enabled for the task"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/CachingDisabledReasonCategory.java

         */
        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
         */
        NOT_CACHEABLE,
    
        /**
         * The work has no outputs declared.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationResult.java

                case BUILD_CACHE_DISABLED:
                    return CachingDisabledReasonCategory.BUILD_CACHE_DISABLED;
                case NOT_CACHEABLE:
                    return CachingDisabledReasonCategory.NOT_ENABLED_FOR_TASK;
                case ENABLE_CONDITION_NOT_SATISFIED:
                    return CachingDisabledReasonCategory.CACHE_IF_SPEC_NOT_SATISFIED;
                case DISABLE_CONDITION_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)
Back to top