Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for beforeshow (0.1 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeLifecycleListener.java

         *
         * This method is called after the root build operation has completed, so implementations should not perform any expensive work
         * and should not run any user code.
         */
        default void beforeStop() {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/buildtree/BuildTreeStateTest.groovy

            then:
            1 * action.apply(_) >> { BuildTreeContext context -> context.execute(buildAction) }
            1 * listener.afterStart()
            1 * actionExecutor.execute(buildAction, _)
            1 * listener.beforeStop()
            0 * listener._
        }
    
        def "cannot run multiple actions against a tree"() {
            given:
            state.run {
                it.execute(Stub(BuildAction))
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top