MCPcopy Create free account
hub / github.com/pydio/cells / GetStringSlice

Function GetStringSlice

common/runtime/runtime.go:87–92  ·  view source on GitHub ↗

GetStringSlice gets a slice from global runtime.

(key string)

Source from the content-addressed store, hash-verified

85
86// GetStringSlice gets a slice from global runtime.
87func GetStringSlice(key string) []string {
88 if l, o := legacyMap[key]; o && !r.IsSet(key) && r.IsSet(l) {
89 return r.GetStringSlice(l)
90 }
91 return r.GetStringSlice(key)
92}
93
94// SetDefault updates global runtime
95func SetDefault(key string, value interface{}) {

Callers 2

InitPeerMetaFunction · 0.92
initProcessesMethod · 0.92

Calls 2

IsSetMethod · 0.65
GetStringSliceMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…