Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for caughtGradleConnectionException (0.43 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/RetryConditions.groovy

            def caughtGradleConnectionException = specification.hasProperty("caughtGradleConnectionException") ? specification.caughtGradleConnectionException : null
    
            println "Failure: " + failure
            println "Cause  : " + failure?.cause
    
            if (caughtGradleConnectionException != null) {
                failure = caughtGradleConnectionException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

        @Rule
        public final SetSystemProperties sysProperties = new SetSystemProperties()
    
        GradleConnectionException caughtGradleConnectionException
        TestOutputStream stderr = new TestOutputStream()
        TestOutputStream stdout = new TestOutputStream()
    
        public final TestNameTestDirectoryProvider temporaryFolder = new TestNameTestDirectoryProvider(getClass())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r82/CustomToolingModelCrossVersionSpec.groovy

            when:
            withConnection { connection ->
                fetchCustomModelsWithRestrictedMemoryAction(connection)
            }
    
            then:
            thrown(GradleConnectionException)
            caughtGradleConnectionException.cause.cause instanceof OutOfMemoryError
        }
    
        @ToolingApiVersion(">=8.2")
        def "can free memory when executing a build action"() {
            when:
            withConnection { connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top