(n int)
| 1318 | } |
| 1319 | |
| 1320 | func randStringBytes(n int) []byte { |
| 1321 | b := make([]byte, n) |
| 1322 | for i := range b { |
| 1323 | b[i] = letterBytes[rand.Intn(len(letterBytes))] |
| 1324 | } |
| 1325 | return b |
| 1326 | } |
| 1327 | |
| 1328 | var ( |
| 1329 | _ fs.Fs = (*cache.Fs)(nil) |
no outgoing calls
no test coverage detected
searching dependent graphs…