- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for max_timeout (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
internal/config/drive/help.go
package drive import "github.com/minio/minio/internal/config" var ( // MaxTimeout is the max timeout for drive MaxTimeout = "max_timeout" // HelpDrive is help for drive HelpDrive = config.HelpKVS{ config.HelpKV{ Key: MaxTimeout, Type: "string", Description: "set per call max_timeout for the drive, defaults to 30 seconds", Optional: true, }, }Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Wed May 22 23:07:14 GMT 2024 - 1.1K bytes - Click Count (0) -
internal/config/drive/drive.go
) // DefaultKVS - default KVS for drive var DefaultKVS = config.KVS{ config.KV{ Key: MaxTimeout, Value: "30s", }, } var configLk sync.RWMutex // Config represents the subnet related configuration type Config struct { // MaxTimeout - maximum timeout for a drive operation MaxTimeout time.Duration `json:"maxTimeout"` } // Update - updates the config with latest valuesCreated: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Mon Nov 11 14:51:43 GMT 2024 - 3K bytes - Click Count (0)