Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isToolingApiHasCauseOnCancel (0.31 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

        /**
         * Returns true if this version has a useful cause attached to the exception thrown by the tooling API client on build cancel.
         */
        boolean isToolingApiHasCauseOnCancel();
    
        /**
         * Returns true if this version does not occasionally add additional 'build cancelled' exceptions when tasks are cancelled.
         */
        boolean isToolingApiDoesNotAddCausesOnTaskCancel();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DefaultGradleDistribution.groovy

            // Versions before 5.1 would sometimes add some additional 'build cancelled' exceptions
            return isSameOrNewer("5.1-rc-1");
        }
    
        @Override
        boolean isToolingApiHasCauseOnCancel() {
            // Versions before 3.2 would throw away the cause. There was also a regression in 4.0.x
            return isSameOrNewer("3.2") && !(isSameOrNewer("4.0") && isSameOrOlder("4.0.2"));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top