Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ActionSupport (0.27 sec)

  1. platforms/software/security/src/testFixtures/groovy/org/gradle/security/fixtures/KeyServer.groovy

        private final Map<String, File> keyFiles = [:]
    
        KeyServer(TestFile baseDirectory) {
            this.baseDirectory = baseDirectory
            allow("/pks/lookup", false, ["GET"], new HttpServer.ActionSupport("Get key") {
                @Override
                void handle(HttpServletRequest request, HttpServletResponse response) {
                    if (request.queryString.startsWith("op=get&options=mr&search=0x")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/MavenHttpPluginRepository.groovy

            def pluginMarker = module(pluginId, pluginId + PLUGIN_MARKER_SUFFIX, pluginVersion)
            server.expect(pluginMarker.pomPath, ["GET"], new HttpServer.ActionSupport("plugin marker pom") {
                void handle(HttpServletRequest request, HttpServletResponse response) {
                    ConfigureUtil.configure(markerQueryConfigurer, response)
                }
            })
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. platforms/software/resources-http/src/integTest/groovy/org/gradle/internal/resource/transport/http/CookieHeaderTest.groovy

                    'Max-Age=31536000; Expires=Sun, 24-Jun-18 16:26:36 GMT-08:00;',
            ]
        }
    
    }
    
    class RespondWithCookieAction extends HttpServer.ActionSupport {
        private final String cookie
        private final String attributes
    
        RespondWithCookieAction(String cookie, String attributes) {
            super("Return cookie header ${cookie}")
            this.cookie = cookie
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top