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

Function buildProcessStartTag

common/runtime/runtime.go:354–367  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

352}
353
354func buildProcessStartTag() {
355 xx := r.GetStringSlice(KeyArgExclude)
356 tt := r.GetStringSlice(KeyArgTags)
357 processStartTags = append(processStartTags, "n:"+r.GetString(KeyName))
358 for _, t := range tt {
359 processStartTags = append(processStartTags, "t:"+t)
360 }
361 for _, a := range args {
362 processStartTags = append(processStartTags, "s:"+a)
363 }
364 for _, x := range xx {
365 processStartTags = append(processStartTags, "x:"+x)
366 }
367}
368
369// GetHostname wraps os.Hostname, could be overwritten by env or parameter.
370func GetHostname() string {

Callers 1

SetArgsFunction · 0.85

Calls 2

GetStringSliceMethod · 0.65
GetStringMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…