Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NOT_ENABLED_FOR_TASK (0.19 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. 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