- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for gzipHandler (0.05 sec)
-
LICENSES/vendor/github.com/NYTimes/gziphandler/LICENSE
= vendor/github.com/NYTimes/gziphandler licensed under: = Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Feb 03 21:57:36 UTC 2021 - 11.2K bytes - Viewed (0) -
cmd/admin-router.go
adminAPISiteReplicationNetPerf = "/site-replication/netperf" adminAPIClientDevNull = "/speedtest/client/devnull" adminAPIClientDevExtraTime = "/speedtest/client/devnull/extratime" ) var gzipHandler = func() func(http.Handler) http.HandlerFunc { gz, err := gzhttp.NewWrapper(gzhttp.MinSize(1000), gzhttp.CompressionLevel(gzip.BestSpeed)) if err != nil { // Static params, so this is very unlikely.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 16 07:34:24 UTC 2025 - 26.7K bytes - Viewed (0) -
cmd/api-router.go
} else { tracedHandler = httpTraceAll(f) } // Skip wrapping with the gzip middleware if specified. gzippedHandler := tracedHandler if !handlerFlags.has(noGZS3HFlag) { gzippedHandler = gzipHandler(gzippedHandler) } // Skip wrapping with throttling middleware if specified. throttledHandler := gzippedHandler if !handlerFlags.has(noThrottleS3HFlag) { throttledHandler = maxClients(throttledHandler)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed May 07 15:37:12 UTC 2025 - 23.3K bytes - Viewed (0)