Searched defs:namespace_end (Results 1 - 1 of 1) sorted by relevance

/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
H A Dnamespace_range.py178 namespace_end=None,
187 namespace_end: A string representing the end of the namespace range.
188 namespace_end is included in the range and must be >= namespace_start.
189 If namespace_end is None then the lexographically last namespace is
193 ValueError: if namespace_start > namespace_end.
198 if namespace_end is None:
199 namespace_end = MAX_NAMESPACE
201 if namespace_start > namespace_end:
202 raise ValueError('namespace_start (%r) > namespace_end (%r)' % (
203 namespace_start, namespace_end))
217 def namespace_end(self): member in class:NamespaceRange
[all...]

Completed in 148 milliseconds