()
| 206 | } |
| 207 | |
| 208 | func (s *storageImageDestination) computeNextBlobCacheFile() string { |
| 209 | return filepath.Join(s.directory, fmt.Sprintf("%d", s.nextTempFileID.Add(1))) |
| 210 | } |
| 211 | |
| 212 | // NoteOriginalOCIConfig provides the config of the image, as it exists on the source, BUT converted to OCI format, |
| 213 | // or an error obtaining that value (e.g. if the image is an artifact and not a container image). |
no test coverage detected