copied from github.com/containerd/containerd/rootfs/apply.go
()
| 566 | |
| 567 | // copied from github.com/containerd/containerd/rootfs/apply.go |
| 568 | func uniquePart() string { |
| 569 | t := time.Now() |
| 570 | var b [3]byte |
| 571 | // Ignore read failures, just decreases uniqueness |
| 572 | rand.Read(b[:]) |
| 573 | return fmt.Sprintf("%d-%s", t.Nanosecond(), base64.URLEncoding.EncodeToString(b[:])) |
| 574 | } |
no test coverage detected
searching dependent graphs…