Home
last modified time | relevance | path

Searched refs:FileCache (Results 1 – 14 of 14) sorted by relevance

/external/python/google-api-python-client/tests/
Dtest_discovery_cache.py29 from googleapiclient.discovery_cache.file_cache import Cache as FileCache unknown
31 FileCache = None variable
34 @unittest.skipIf(FileCache is None, 'FileCache unavailable.')
44 cache = FileCache(max_age=DISCOVERY_DOC_MAX_AGE)
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/internal/dependency/
DCachedDependencyResolverFileCacheTest.java31 Cache cache = new CachedDependencyResolver.FileCache(temporaryFolder.getRoot(), 1000); in shouldLoadNullWhenCacheIsEmpty()
40 Cache cache = new CachedDependencyResolver.FileCache(temporaryFolder.getRoot(), 1000); in shouldLoadObjectWhenCacheExists()
53 Cache cache = new CachedDependencyResolver.FileCache(temporaryFolder.getRoot(), 1000); in shouldLoadNullWhenObjectInCacheHaveBadType()
62 Cache cache = new CachedDependencyResolver.FileCache(temporaryFolder.getRoot(), 1000); in shouldWriteObjectToFile()
75 Cache cache = new CachedDependencyResolver.FileCache(temporaryFolder.getRoot(), 1000); in shouldWriteUrlArrayToFile()
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/dependency/
DCachedDependencyResolver.java25 …this(dependencyResolver, new FileCache(cacheDir, cacheValidTime), new DefaultCacheNamingStrategy()… in CachedDependencyResolver()
103 static class FileCache implements Cache { class in CachedDependencyResolver
107 FileCache(File dir, long validTime) { in FileCache() method in CachedDependencyResolver.FileCache
/external/vogar/src/vogar/android/
DDeviceFileCache.java23 import vogar.FileCache;
27 public class DeviceFileCache implements FileCache {
/external/vogar/src/vogar/
DMd5Cache.java32 private final FileCache fileCache;
38 public Md5Cache(Log log, String keyPrefix, FileCache fileCache) { in Md5Cache()
DFileCache.java24 public interface FileCache { interface
DHostFileCache.java24 public class HostFileCache implements FileCache {
/external/python/httplib2/doc/html/
Dobjects.inv14 httplib2.FileCache class libhttplib2.html
Dsearchindex.js1 …edentials:[1,1]},httplib2:{HttpLib2Error:[1,3],RETRIES:[1,4],Http:[1,0],FileCache:[1,0],Unimplemen… property
/external/python/httplib2/doc/
Dlibhttplib2.rst222 .. class:: FileCache(dir_name, [safe=safename])
224 FileCache implements a Cache as a directory of files. The *dir_name* parameter
226 FileCache attempts to create the directory. The optional *safe* parameter is a
227 funtion which generates the cache filename for each URI. A FileCache object is
/external/python/httplib2/doc/html/_sources/
Dlibhttplib2.txt222 .. class:: FileCache(dir_name, [safe=safename])
224 FileCache implements a Cache as a directory of files. The *dir_name* parameter
226 FileCache attempts to create the directory. The optional *safe* parameter is a
227 funtion which generates the cache filename for each URI. A FileCache object is
/external/python/httplib2/
Dlibhttplib2.tex185 \begin{classdesc}{FileCache}{dir_name, \optional{safe=safename}}
186 FileCache implements a Cache as a directory of files.
189 not exist then FileCache attempts to create the directory.
191 the cache filename for each URI. A FileCache object is
/external/python/httplib2/python3/httplib2/
D__init__.py893 class FileCache(object): class
1419 self.cache = FileCache(cache)
/external/python/httplib2/python2/httplib2/
D__init__.py925 class FileCache(object): class
1619 self.cache = FileCache(cache)