OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Container
(Results
76 - 100
of
157
) sorted by null
1
2
3
4
5
6
7
/prebuilts/gdb/linux-x86/lib/python2.7/test/
test_collections.py
13
from collections import Sized,
Container
, Callable
396
self.assertNotIsInstance(x,
Container
)
397
self.assertFalse(issubclass(type(x),
Container
), repr(type(x)))
403
self.assertIsInstance(x,
Container
)
404
self.assertTrue(issubclass(type(x),
Container
), repr(type(x)))
405
self.validate_abstract_methods(
Container
, '__contains__')
406
self.validate_isinstance(
Container
, '__contains__')
429
for B in Hashable, Iterable, Iterator, Sized,
Container
, Callable:
436
for B in Hashable, Iterable, Iterator, Sized,
Container
, Callable:
[
all
...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_collections.py
13
from collections import Sized,
Container
, Callable
396
self.assertNotIsInstance(x,
Container
)
397
self.assertFalse(issubclass(type(x),
Container
), repr(type(x)))
403
self.assertIsInstance(x,
Container
)
404
self.assertTrue(issubclass(type(x),
Container
), repr(type(x)))
405
self.validate_abstract_methods(
Container
, '__contains__')
406
self.validate_isinstance(
Container
, '__contains__')
429
for B in Hashable, Iterable, Iterator, Sized,
Container
, Callable:
436
for B in Hashable, Iterable, Iterator, Sized,
Container
, Callable:
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_collections.py
13
from collections import Sized,
Container
, Callable
396
self.assertNotIsInstance(x,
Container
)
397
self.assertFalse(issubclass(type(x),
Container
), repr(type(x)))
403
self.assertIsInstance(x,
Container
)
404
self.assertTrue(issubclass(type(x),
Container
), repr(type(x)))
405
self.validate_abstract_methods(
Container
, '__contains__')
406
self.validate_isinstance(
Container
, '__contains__')
429
for B in Hashable, Iterable, Iterator, Sized,
Container
, Callable:
436
for B in Hashable, Iterable, Iterator, Sized,
Container
, Callable:
[
all
...]
/external/autotest/site_utils/
lxc.py
6
1. Download base
container
from given GS location, setup the base
container
.
7
2. Create a snapshot as test
container
from base
container
.
8
3. Mount a directory in drone to the test
container
.
9
4. Run a command in the
container
and return the output.
10
5. Cleanup, e.g., destroy the
container
.
12
This tool can also be used to set up a base
container
for test. For example,
13
python lxc.py -s -p /tmp/
container
14
This command will download and setup base
container
in directory /tmp/container
[
all
...]