- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for NewURLValuesWith (0.08 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
internal/grid/types.go
}, } // NewURLValues returns a new URLValues. func NewURLValues() *URLValues { u := URLValues(urlValuesPool.Get()) return &u } // NewURLValuesWith returns a new URLValues with the provided content. func NewURLValuesWith(values map[string][]string) *URLValues { u := URLValues(values) return &u } // Values returns the url.Values. // If u is nil, an empty url.Values is returned.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 15.5K bytes - Click Count (0) -
cmd/peer-rest-client.go
} for host := range opts.hosts { values.Add(peerRESTHost, host) } values.Set(peerRESTJobID, opts.jobID) values.Set(peerRESTDepID, opts.depID) v, err := getMetricsRPC.Call(ctx, client.gridConn(), grid.NewURLValuesWith(values)) return v.ValueOrZero(), err } // GetProcInfo - fetch MinIO process information for a remote node. func (client *peerRESTClient) GetProcInfo(ctx context.Context) (info madmin.ProcInfo, err error) {Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 26.1K bytes - Click Count (0)