()
| 756 | } |
| 757 | |
| 758 | func uniquePart() string { |
| 759 | t := time.Now() |
| 760 | var b [3]byte |
| 761 | // Ignore read failures, just decreases uniqueness |
| 762 | rand.Read(b[:]) |
| 763 | return fmt.Sprintf("%d-%s", t.Nanosecond(), base64.URLEncoding.EncodeToString(b[:])) |
| 764 | } |
| 765 | |
| 766 | // TODO: this is a temporary workaround until #13053 lands. |
| 767 | func bindToOverlay(mounts []mount.Mount) []mount.Mount { |