Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 51 of 51 for expectGetMissing (0.11 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

        void expectGetBlocking(String path) {
            expect(path, false, ['GET'], blocking())
        }
    
        /**
         * Expects one GET request for the given URL, which return 404 status code
         */
        void expectGetMissing(String path, PasswordCredentials passwordCredentials = null) {
            expect(path, false, ['GET'], notFound(), passwordCredentials)
        }
    
        void allowGetOrHeadMissing(String path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top