(d *storageImageDestination)
| 1296 | } |
| 1297 | |
| 1298 | func newUncommittedImageSource(d *storageImageDestination) *uncommittedImageSource { |
| 1299 | s := &uncommittedImageSource{ |
| 1300 | PropertyMethodsInitialize: srcImpl.PropertyMethods(srcImpl.Properties{ |
| 1301 | HasThreadSafeGetBlob: true, |
| 1302 | }), |
| 1303 | NoGetBlobAtInitialize: srcStubs.NoGetBlobAt(d.Reference()), |
| 1304 | |
| 1305 | d: d, |
| 1306 | } |
| 1307 | s.Compat = srcImpl.AddCompat(s) |
| 1308 | return s |
| 1309 | } |
| 1310 | |
| 1311 | func (u *uncommittedImageSource) Reference() types.ImageReference { |
| 1312 | return u.d.Reference() |
no test coverage detected
searching dependent graphs…