Home | History | Annotate | Download | only in server2

Lines Matching refs:Future

8 from future import Future
22 return Future(callback=boom)
80 guaranteed to only happen once the Future has been resolved (Get()
88 '''Reads a single file from the FileSystem. Returns a Future with the same
93 return Future(callback=lambda: read_single.Get()[path])
96 '''Returns a Future to the existence of |path|; True if |path| exists,
106 return Future(value=True)
115 return Future(callback=resolve)
119 future to its completion.
138 return Future(callback=lambda: self.Stat(path))