- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for toNames (0.07 sec)
-
cmd/erasure-sets.go
// Original index from the list of arguments // where this object is passed origIndex int // object to delete object ObjectToDelete } // Transform []delObj to the list of object names toNames := func(delObjs []delObj) []ObjectToDelete { objs := make([]ObjectToDelete, len(delObjs)) for i, obj := range delObjs { objs[i] = obj.object } return objs }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 27 10:41:37 UTC 2024 - 37K bytes - Viewed (0) -
cmd/bucket-handlers.go
objectsToDelete[object] = index } } toNames := func(input map[ObjectToDelete]int) (output []ObjectToDelete) { output = make([]ObjectToDelete, len(input)) idx := 0 for obj := range input { output[idx] = obj idx++ } return } // Disable timeouts and cancellation ctx = bgContext(ctx) deleteList := toNames(objectsToDelete)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 12 12:24:04 UTC 2024 - 63.4K bytes - Viewed (0) -
schema/naming_test.go
} ns := NamingStrategy{} for key, value := range maps { if ns.toDBName(key) != value { t.Errorf("%v toName should equal %v, but got %v", key, value, ns.toDBName(key)) } } maps = map[string]string{ "x": "X", "user_restrictions": "UserRestriction",
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Tue May 30 02:00:48 UTC 2023 - 7K bytes - Viewed (0) -
docs/changelogs/changelog_3x.md
* Fix: Don't crash doing platform detection on RoboVM. * Fix: Don't leak socket connections when web socket upgrades fail. ## Version 3.11.0 _2018-07-12_ * **OkHttp's new okhttp-tls submodule tames HTTPS and TLS.** `HeldCertificate` is a TLS certificate and its private key. Generate a certificate with its builder then use it to sign another certificate or perform a TLS handshake. The
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0)