initResolutionCache initializes the URI resolution cache. To be wrapped in a sync.Once.Do call.
()
| 64 | |
| 65 | // initResolutionCache initializes the URI resolution cache. To be wrapped in a sync.Once.Do call. |
| 66 | func initResolutionCache() { |
| 67 | resCache = defaultResolutionCache() |
| 68 | } |
| 69 | |
| 70 | func defaultResolutionCache() *simpleCache { |
| 71 | return &simpleCache{store: map[string]any{ |
nothing calls this directly
no test coverage detected
searching dependent graphs…