MCPcopy Create free account
hub / github.com/docker/cli / isAlphaNum

Function isAlphaNum

cli/context/store/store.go:254–258  ·  view source on GitHub ↗
(c byte)

Source from the content-addressed store, hash-verified

252}
253
254func isAlphaNum(c byte) bool {
255 return (c >= 'a' && c <= 'z') ||
256 (c >= 'A' && c <= 'Z') ||
257 (c >= '0' && c <= '9')
258}
259
260// Export exports an existing namespace into an opaque data stream
261// This stream is actually a tarball containing context metadata and TLS materials, but it does

Callers 1

isValidNameFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…