- Sort Score
- Num 10 results
- Language All
Results 1291 - 1300 of 1,305 for Request (0.16 seconds)
-
internal/crypto/sse-kms.go
"github.com/minio/minio/internal/kms" "github.com/minio/minio/internal/logger" ) type ssekms struct{} var ( // S3KMS represents AWS SSE-KMS. It provides functionality to // handle SSE-KMS requests. S3KMS = ssekms{} _ Type = S3KMS ) // String returns the SSE domain as string. For SSE-KMS the // domain is "SSE-KMS". func (ssekms) String() string { return "SSE-KMS" }Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue May 07 23:55:37 GMT 2024 - 8.5K bytes - Click Count (0) -
README.md
--- ### ๐ฑ **Contributing to Gradle** - **Contribution Guide**: [Contribute](https://github.com/gradle/gradle/blob/master/CONTRIBUTING.md) to Gradle by submitting patches or pull requests for code or documentation improvements. - **Code of Conduct**: Gradle enforces a [Code of Conduct](https://gradle.org/conduct/) to ensure a welcoming and supportive community for all contributors. ---
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Oct 20 22:15:26 GMT 2025 - 7.8K bytes - Click Count (0) -
cmd/speedtest.go
// let the client see lower value as well throughputHighestGet = totalGet } sendResult() break } // We break if we did not see 2.5% growth rate in total GET // requests, we have reached our peak at this point. doBreak := float64(totalGet-throughputHighestGet)/float64(totalGet) < 0.025 throughputHighestGet = totalGet throughputHighestResults = results
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue May 27 15:19:03 GMT 2025 - 9.2K bytes - Click Count (0) -
internal/grid/grid.go
// clientPingInterval will ping the remote handler every 15 seconds. // Clients disconnect when we exceed 2 intervals. clientPingInterval = 15 * time.Second // Deadline for single (non-streaming) requests to complete. // Used if no deadline is provided on context. defaultSingleRequestTimeout = time.Minute ) var internalByteBuffer = bpool.Pool[*[]byte]{ New: func() *[]byte {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Mar 30 00:56:02 GMT 2025 - 7K bytes - Click Count (0) -
docs/LICENSE
reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. More_considerations for the public: wiki.creativecommons.org/Considerations_for_licenseesCreated: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Mon May 10 16:50:06 GMT 2021 - 18.2K bytes - Click Count (0) -
internal/crypto/sse-s3.go
"github.com/minio/minio/internal/kms" "github.com/minio/minio/internal/logger" ) type sses3 struct{} var ( // S3 represents AWS SSE-S3. It provides functionality to handle // SSE-S3 requests. S3 = sses3{} _ Type = S3 ) // String returns the SSE domain as string. For SSE-S3 the // domain is "SSE-S3". func (sses3) String() string { return "SSE-S3" }Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue May 07 23:55:37 GMT 2024 - 7.6K bytes - Click Count (0) -
docs/distributed/README.md
```
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 8.9K bytes - Click Count (0) -
docs/ko/docs/tutorial/testing.md
//// ### ํ์ฅ๋ ํ ์คํธ ํ์ผ ์ด์ ๋ `test_main.py` ๋ฅผ ํ์ฅ๋ ํ ์คํธ๋ค๋ก ์์ ํ ์ ์์ต๋๋ค: {* ../../docs_src/app_testing/app_b/test_main.py *} ํด๋ผ์ด์ธํธ๊ฐ ์์ฒญ์ ์ ๋ณด๋ฅผ ์ ๋ฌํด์ผ ํ๋๋ฐ ๋ฐฉ๋ฒ์ ๋ชจ๋ฅด๊ฒ ๋ค๋ฉด, `httpx`์์ ํด๋น ์์ ์ ์ํํ๋ ๋ฐฉ๋ฒ์ ๊ฒ์(Google)ํ๊ฑฐ๋, `requests`์์์ ๋ฐฉ๋ฒ์ ๊ฒ์ํด๋ณด์ธ์. HTTPX๋ Requests์ ๋์์ธ์ ๊ธฐ๋ฐ์ผ๋ก ์ค๊ณ๋์์ต๋๋ค. ๊ทธ ํ, ํ ์คํธ์์๋ ๋์ผํ๊ฒ ์ ์ฉํ๋ฉด ๋ฉ๋๋ค. ์์: * *๊ฒฝ๋ก* ํน์ *์ฟผ๋ฆฌ* ๋งค๊ฐ๋ณ์๋ฅผ ์ ๋ฌํ๋ ค๋ฉด, URL ์์ฒด์ ์ถ๊ฐํ๋ค. * JSON ๋ณธ๋ฌธ์ ์ ๋ฌํ๋ ค๋ฉด, ํ์ด์ฌ ๊ฐ์ฒด (์๋ฅผ๋ค๋ฉด `dict`) ๋ฅผ `json` ํ๋ผ๋ฏธํฐ๋ก ์ ๋ฌํ๋ค.Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Oct 11 17:48:49 GMT 2025 - 7.6K bytes - Click Count (0) -
internal/grid/muxserver.go
} msg.setZeroPayloadFlag() m.send(msg) return } msg.Payload = payload msg.setZeroPayloadFlag() m.send(msg) } } // handleRequests will handle the requests from the client and call the handler function. func (m *muxServer) handleRequests(ctx context.Context, msg message, send chan<- []byte, handler StreamHandler, handlerIn <-chan []byte) (handlerErr *RemoteErr) { start := time.Now()
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue May 27 15:19:03 GMT 2025 - 9.7K bytes - Click Count (0) -
internal/kms/config.go
// // MINIO_KMS_REPLICATE_KEYID=off // // Some deployments use different KMS clusters with destinct keys on // each site. Trying to replicate the KMS key ID can cause requests // to fail in such setups. func ReplicateKeyID() bool { return replicateKeyID() } // ConnectionOptions is a structure containing options for connecting // to a KMS. type ConnectionOptions struct {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 15K bytes - Click Count (0)