Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for resultsOfFirstListener (0.28 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/BuildProgressCrossVersionSpec.groovy

        def "stops dispatching events to progress listeners when a listener fails and continues with build"() {
            given:
            goodCode()
    
            when: "launching a build"
            List<ProgressEvent> resultsOfFirstListener = []
            List<ProgressEvent> resultsOfLastListener = []
            def failure = new IllegalStateException("Throwing an exception on purpose")
            withConnection {
                ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

        def "receive current task progress event even if one of multiple task listeners throws an exception"() {
            given:
            goodCode()
    
            when: "launching a build"
            List<TaskProgressEvent> resultsOfFirstListener = []
            List<TaskProgressEvent> resultsOfLastListener = []
            def failure = new IllegalStateException("Throwing an exception on purpose")
            withConnection {
                ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TestProgressCrossVersionSpec.groovy

        def "receive current test progress event even if one of multiple test listeners throws an exception"() {
            given:
            goodCode()
    
            when: "launching a build"
            List<TestProgressEvent> resultsOfFirstListener = new ArrayList<TestProgressEvent>()
            List<TestProgressEvent> resultsOfLastListener = new ArrayList<TestProgressEvent>()
            def failure = new IllegalStateException("Throwing an exception on purpose")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top