Lines Matching full:cached
27 // cached version of buildData, so we can determine whether a build has
31 // returns the cached version of this build, or {} is there isn't a cached one
39 var cached = getCached(build);
40 return cached.state &&
41 cached.state !== build.state &&
48 var cached = getCached(build);
49 return (cached.state !== build.state);
54 var cached = getCached(build);
55 return (cached.tasks_complete_percentage !== build.tasks_complete_percentage);
60 var cached = getCached(build);
61 return (cached.recipes_parsed_percentage !== build.recipes_parsed_percentage);
66 var cached = getCached(build);
67 return (cached.repos_cloned_percentage !== build.repos_cloned_percentage);