Searched defs:cachingRepo (Results 1 – 1 of 1) sorted by relevance
180 type cachingRepo struct { struct181 path string182 versionsCache par.ErrCache[string, *Versions]183 statCache par.ErrCache[string, *RevInfo]184 latestCache par.ErrCache[struct{}, *RevInfo]185 gomodCache par.ErrCache[string, []byte]187 once sync.Once188 initRepo func(context.Context) (Repo, error)189 r Repo199 func (r *cachingRepo) repo(ctx context.Context) Repo {[all …]