Returns True if the class loaded from the cache file
(self)
| 2243 | self.hit_cache = hasattr(self, "hit_cache") |
| 2244 | |
| 2245 | def is_cached(self): |
| 2246 | """ |
| 2247 | Returns True if the class loaded from the cache file |
| 2248 | """ |
| 2249 | return self.cache_infile and self.hit_cache |
| 2250 | |
| 2251 | def cpu_baseline_flags(self): |
| 2252 | """ |
no outgoing calls
no test coverage detected