Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isFailure (0.09 sec)

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

                configurationCacheBuildOperations.assertStateStored(false)
            }
    
            def message = "Configuration cache entry ${details.storeAction}"
            boolean isFailure = spec.result instanceof ExecutionFailure
            if (isFailure) {
                spec.outputContains(message)
            } else {
                spec.postBuildOutputContains(message)
            }
    
            assertHasProblems(problemDetails)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ChainingHttpHandler.java

                    ResponseProducer responseProducer = selectProducer(id, httpExchange);
                    System.out.printf("[%d] sending response for %s%n", id, outcome.getDisplayName());
                    if (!responseProducer.isFailure()) {
                        responseProducer.writeTo(id, httpExchange);
                    } else {
                        Throwable failure = responseProducer.getFailure();
                        requestFailed(outcome, failure);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top