()
| 76 | } |
| 77 | |
| 78 | func (ic ImageCache) ResolveImage() string { |
| 79 | if ic.IsLocalRegistryImage() { |
| 80 | return ic.LocalRegistryImageName |
| 81 | } |
| 82 | |
| 83 | return ic.ImageName |
| 84 | } |
| 85 | |
| 86 | func (l *LocalCache) ListImageCache() map[string]ImageCache { |
| 87 | l.accessMutex.Lock() |
no test coverage detected