Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for logRequest (0.41 sec)

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

        private final Set<String> authenticationAttempts
        private final Set<Map<String, String>> allHeaders
        private final boolean logRequests
    
        LoggingHandler(Set<String> authenticationAttempts, Set<Map<String, String>> allHeaders, boolean logRequests) {
            this.logRequests = logRequests
            this.authenticationAttempts = authenticationAttempts
            this.allHeaders = allHeaders
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServerFixture.groovy

        }
    
        Set<Map<String, String>> getAllHeaders() {
            return allHeaders
        }
    
        boolean getLogRequests() {
            return logRequests
        }
    
        void setLogRequests(boolean logRequests) {
            this.logRequests = logRequests
        }
    
        /**
         * Use the hostname for the server's URL instead of the IP.
         */
        void useHostname() {
            this.useHostnameForUrl = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/AbstractTaskOutputCachingPerformanceTest.groovy

        def setup() {
            runner.cleanTasks = ["clean"]
            runner.args = ["-D${StartParameterBuildOptions.BuildCacheOption.GRADLE_PROPERTY}=true"]
            buildCacheServer.logRequests = false
            cacheDir = temporaryFolder.file("local-cache")
            runner.addBuildMutator { invocationSettings ->
                new BuildMutator() {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top