- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for URLValues (0.07 sec)
-
internal/grid/types.go
*b = (*b)[:0] PutByteBuffer(*b) *b = nil } } // URLValues can be used for url.Values. type URLValues map[string][]string var urlValuesPool = sync.Pool{ New: func() interface{} { return make(map[string][]string, 10) }, } // NewURLValues returns a new URLValues. func NewURLValues() *URLValues { u := URLValues(urlValuesPool.Get().(map[string][]string)) return &u }
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Wed Aug 14 17:11:51 UTC 2024 - 15.5K bytes - Viewed (0) -
cmd/bucket-listobjects-handlers.go
return checkRequestAuthType(ctx, r, action, bucket, name) } } urlValues := r.Form // Extract all the listBucketVersions query params to their native values. prefix, marker, delimiter, maxkeys, encodingType, versionIDMarker, errCode := getListBucketObjectVersionsArgs(urlValues) if errCode != ErrNone { writeErrorResponse(ctx, w, errorCodes.ToAPIErr(errCode), r.URL) return }
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Tue Jun 11 03:13:30 UTC 2024 - 11.4K bytes - Viewed (0) -
internal/grid/handlers.go
} return resp, ErrDisconnected } payload, err := req.MarshalMsg(GetByteBufferCap(req.Msgsize())) if err != nil { return resp, err } switch any(req).(type) { case *MSS, *URLValues: ctx = context.WithValue(ctx, TraceParamsKey{}, req) case *NoPayload, *Bytes: // do not need to trace nopayload and bytes payload default:
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Mon Sep 09 16:58:30 UTC 2024 - 27.7K bytes - Viewed (0)