Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for determineNoCacheReason (0.15 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/DefaultTaskCacheabilityResolverTest.groovy

        def "report no reason if the task is cacheable"() {
            expect:
            determineNoCacheReason(
                [inputProperty],
                [cacheableOutputProperty],
                [spec({ true })],
            ) == null
        }
    
        def "caching is disabled with no outputs"() {
            when:
            def reason = determineNoCacheReason(
                [],
                [],
                [spec({ true })],
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 18 08:25:11 UTC 2021
    - 7.1K bytes
    - Viewed (0)
Back to top