Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for afterTask (0.1 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. 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)
Back to top