Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for afterTask (0.33 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingTaskExecutionGraph.kt

        }
    
        @Deprecated("Deprecated in Java")
        override fun afterTask(closure: Closure<*>) {
            @Suppress("DEPRECATION")
            delegate.afterTask(closure)
        }
    
        @Deprecated("Deprecated in Java")
        override fun afterTask(action: Action<Task>) {
            @Suppress("DEPRECATION")
            delegate.afterTask(action)
        }
    
        // endregion
    
        override fun resetState() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/execution/taskgraph/DefaultTaskExecutionGraphSpec.groovy

            }
            def action = Mock(Action)
    
            final Task a = task("a")
            final Task b = task("b")
    
            when:
            taskGraph.afterTask(closure)
            taskGraph.afterTask(action)
            taskExecutionListeners.source.afterExecute(a, a.state)
            taskExecutionListeners.source.afterExecute(b, b.state)
    
            then:
            1 * closure.call(a)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            "TaskExecutionGraph.beforeTask"               | "gradle.taskGraph.beforeTask {}"
            "TaskExecutionGraph.afterTask"                | "gradle.taskGraph.afterTask {}"
        }
    
        def "reports unsupported build listener #listenerType registration on #registrationPoint"() {
            given:
            buildFile("""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.execution.TaskExecutionGraph.afterTask(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (TaskExecutionGraph.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top