MCPcopy Create free account
hub / github.com/golang/appengine / FullyQualifiedAppID

Function FullyQualifiedAppID

internal/api_common.go:91–96  ·  view source on GitHub ↗

FullyQualifiedAppID returns the fully-qualified application ID. This may contain a partition prefix (e.g. "s~" for High Replication apps), or a domain prefix (e.g. "example.com:").

(ctx context.Context)

Source from the content-addressed store, hash-verified

89// This may contain a partition prefix (e.g. "s~" for High Replication apps),
90// or a domain prefix (e.g. "example.com:").
91func FullyQualifiedAppID(ctx context.Context) string {
92 if id, ok := ctx.Value(&appIDOverrideKey).(string); ok {
93 return id
94 }
95 return fullyQualifiedAppID(ctx)
96}
97
98func Logf(ctx context.Context, level int64, format string, args ...interface{}) {
99 if f, ok := ctx.Value(&logOverrideKey).(logOverrideFunc); ok {

Callers 11

handleFunction · 0.92
CountMethod · 0.92
RunMethod · 0.92
GetMultiFunction · 0.92
PutMultiFunction · 0.92
DeleteMultiFunction · 0.92
NewKeyFunction · 0.92
EnableKeyConversionFunction · 0.92
RunMethod · 0.92
AppIDFunction · 0.70
RunTransactionOnceFunction · 0.70

Calls 2

fullyQualifiedAppIDFunction · 0.70
ValueMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…