- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for Unicode (0.06 sec)
-
doc/go1.17_spec.html
unicode_digit = /* a Unicode code point classified as "Number, decimal digit" */ . </pre> <p> In <a href="https://www.unicode.org/versions/Unicode8.0.0/">The Unicode Standard 8.0</a>, Section 4.5 "General Category" defines a set of character categories. Go treats all characters in any of the Letter categories Lu, Ll, Lt, Lm, or Lo
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 10 18:25:45 UTC 2024 - 211.6K bytes - Viewed (0) -
api/go1.3.txt
pkg testing, method (*B) RunParallel(func(*PB)) pkg testing, method (*B) SetParallelism(int) pkg testing, method (*PB) Next() bool pkg testing, type PB struct
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Jun 02 02:45:00 UTC 2014 - 117K bytes - Viewed (0) -
cmd/testdata/decryptObjectInfo.json.zst
ed-Key":"IAAfAOJeL547WbzY+7SZ/+AInx3txIM2lUJAsYgu9t==","X-Minio-Internal-Server-Side-Encryption-Seal-Algorithm":"DAREv2-HMAC-SHA256","content-type":"application/octet-stream"}},{"Bucket":"buck1","Name":"go_113/src/cmd/internal/test2json/testdata/unicode.json","UserDef":{"X-Minio-Internal-Server-Side-Encryption-Iv":"d8cVtW6lHJBCI+D7QcxqxcDAuWiJfX1kNf=","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Key-Id":"my-minio-key","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Sealed-Key":"IAAfAPctMlMnrM...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 29 16:34:20 UTC 2020 - 164K bytes - Viewed (0) -
cmd/admin-handlers.go
// previous result back to the client if prevResult.Version != "" { if err := enc.Encode(prevResult); err != nil { return } } else { // first result is not yet obtained, keep writing // empty entry to prevent client from disconnecting. if err := enc.Encode(madmin.SpeedTestResult{}); err != nil { return } } w.(http.Flusher).Flush()
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 11:32:32 UTC 2024 - 99.7K bytes - Viewed (0) -
cmd/metrics-v2.go
} contentType := expfmt.Negotiate(r.Header) w.Header().Set("Content-Type", string(contentType)) enc := expfmt.NewEncoder(w, contentType) for _, mf := range mfs { if err := enc.Encode(mf); err != nil { // client may disconnect for any reasons // we do not have to log this. return } } if closer, ok := enc.(expfmt.Closer); ok { closer.Close() } })
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 131.9K bytes - Viewed (0) -
cmd/object-handlers_test.go
if testCase.copySourceHeader != "" { if values.Encode() != "" && !strings.Contains(testCase.copySourceHeader, "?") { req.Header.Set("X-Amz-Copy-Source", testCase.copySourceHeader+"?"+values.Encode()) } else { req.Header.Set("X-Amz-Copy-Source", testCase.copySourceHeader) } } if testCase.copyModifiedHeader != "" {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 12 20:10:44 UTC 2024 - 163.2K bytes - Viewed (0) -
cmd/server_test.go
// unmarshalling works from a client perspective, specifically // while unmarshalling time.Time type for 'Initiated' field. // time.Time does not honor xml marshaller, it means that we need // to encode/format it before giving it to xml marshaling. // This below check adds client side verification to see if its // truly parsable. // listMultipartUploadsResponse - format for list multipart uploads response.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 15 16:28:02 UTC 2024 - 116.3K bytes - Viewed (0)