Home
last modified time | relevance | path

Searched full:wheel (Results 1 – 25 of 394) sorted by relevance

12345678910>>...16

/external/angle/
D.vpython3 # It describes patterns for python wheel dependencies of the python scripts in
32 wheel: <
36 wheel: <
56 wheel: <
63 wheel: <
77 wheel: <
104 wheel: <
111 wheel: <
124 wheel: <
131 wheel: <
[all …]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
DImplicitTagsTest.java37 Wheel wheel = new Wheel(); in testDefaultRepresenter() local
38 wheel.setId(2); in testDefaultRepresenter()
39 car1.setWheel(wheel); in testDefaultRepresenter()
43 car1.setPart(new Wheel(4)); in testDefaultRepresenter()
55 Wheel wheel = new Wheel(); in testNoRootTag() local
56 wheel.setId(2); in testNoRootTag()
57 car1.setWheel(wheel); in testNoRootTag()
74 Wheel wheel = new Wheel(); in testRootMap() local
75 wheel.setId(2); in testRootMap()
79 car1.put("wheel", wheel); in testRootMap()
[all …]
DArrayTagsTest.java33 Wheel[] wheels = new Wheel[5]; in testDefaultRepresenter()
35 Wheel wheel = new Wheel(); in testDefaultRepresenter() local
36 wheel.setId(i); in testDefaultRepresenter()
37 wheels[i - 1] = wheel; in testDefaultRepresenter()
47 Wheel[] wheels = new Wheel[5]; in testFlowBlock()
49 Wheel wheel = new Wheel(); in testFlowBlock() local
50 wheel.setId(i); in testFlowBlock()
51 wheels[i - 1] = wheel; in testFlowBlock()
66 List<Wheel> wheels = car.getWheels(); in testLoadClassTag()
87 Wheel[] wheels = car.getWheels(); in testLoadClassNoRoot()
[all …]
DClassTagsTest.java35 List<Wheel> wheels = new ArrayList<Wheel>(); in testDefaultRepresenter()
37 Wheel wheel = new Wheel(); in testDefaultRepresenter() local
38 wheel.setId(i); in testDefaultRepresenter()
39 wheels.add(wheel); in testDefaultRepresenter()
48 List<Wheel> wheels = new ArrayList<Wheel>(); in testDumpClassTag()
50 Wheel wheel = new Wheel(); in testDumpClassTag() local
51 wheel.setId(i); in testDumpClassTag()
52 wheels.add(wheel); in testDumpClassTag()
57 representer.addClassTag(Wheel.class, Tag.MAP); in testDumpClassTag()
81 List<Wheel> wheels = car.getWheels(); in testLoadClassTag()
[all …]
DWheel.java18 public class Wheel { class
21 public Wheel(int id) { in Wheel() method in Wheel
25 public Wheel() { in Wheel() method in Wheel
39 return "Wheel id=" + id; in toString()
44 if (obj instanceof Wheel) { in equals()
45 Wheel wheel = (Wheel) obj; in equals() local
46 return id == wheel.getId(); in equals()
DTypeSafeCollectionsTest.java36 carDescription.putListPropertyType("wheels", Wheel.class); in testTypeSafeList()
41 List<Wheel> wheels = car.getWheels(); in testTypeSafeList()
44 for (Wheel wheel : wheels) { in testTypeSafeList()
45 assertTrue(wheel.getId() > 0); in testTypeSafeList()
61 for (MyWheel wheel : wheels.keySet()) { in testTypeSafeMap()
62 assertTrue(wheel.getId() > 0); in testTypeSafeMap()
63 Date date = wheels.get(wheel); in testTypeSafeMap()
97 Object wheel = car.getWheels().keySet().iterator().next(); in testWithGlobalTag() local
98 assertTrue(wheel instanceof MyWheel); in testWithGlobalTag()
99 MyWheel w = (MyWheel) wheel; in testWithGlobalTag()
/external/perfetto/test/stress_test/
DREADME.md89 drwxr-xr-x 16 primiano wheel 512B 5 Aug 09:16 bursts
90 drwxr-xr-x 9 primiano wheel 288B 5 Aug 09:16 simple
91 drwxr-xr-x 38 primiano wheel 1.2K 5 Aug 09:16 the_storm
95 -rw-r--r-- 1 primiano wheel 0B 5 Aug 09:16 errors.log
96 -rw-r--r-- 1 primiano wheel 180B 5 Aug 09:16 perfetto.log
97 -rw-r--r-- 1 primiano wheel 441B 5 Aug 09:16 producer.0.log
99 -rw-r--r-- 1 primiano wheel 441B 5 Aug 09:16 producer.9.log
100 -rw------- 1 primiano wheel 11M 5 Aug 09:16 trace
101 -rw-r--r-- 1 primiano wheel 407B 5 Aug 09:16 traced.log
105 srwxr-xr-x 1 primiano wheel 0B 5 Aug 09:16 consumer.sock
[all …]
/external/python/cpython3/Doc/library/
Dimportlib.metadata.rst41 (example) $ pip install wheel
43 You can get the version string for ``wheel`` by running the following:
49 >>> version('wheel') # doctest: +SKIP
58 >>> list(metadata('wheel')) # doctest: +SKIP
88 >>> wheel = [ep for ep in scripts if ep.name == 'wheel'][0] # doctest: +SKIP
89 >>> wheel # doctest: +SKIP
90 EntryPoint(name='wheel', value='wheel.cli:main', group='console_scripts')
91 >>> wheel.module # doctest: +SKIP
92 'wheel.cli'
93 >>> wheel.attr # doctest: +SKIP
[all …]
/external/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/
DNestedBuildersTest.java35 import protobuf_unittest.Wheel;
70 Wheel wheel = vehicle.getWheel(i); in testMessagesAndBuilders() local
71 assertEquals(4, wheel.getRadius()); in testMessagesAndBuilders()
72 assertEquals(i + 1, wheel.getWidth()); in testMessagesAndBuilders()
85 Wheel wheel = vehicle.getWheel(i); in testMessagesAndBuilders() local
86 assertEquals(5, wheel.getRadius()); in testMessagesAndBuilders()
87 assertEquals(i + 10, wheel.getWidth()); in testMessagesAndBuilders()
109 List<Wheel> wheels = new ArrayList<Wheel>(vehicleBuilder.getWheelList()); in testMessagesAreCached()
152 vehicleBuilder.addWheel(Wheel.newBuilder() in testRemove_WithNestedMessages()
155 vehicleBuilder.addWheel(Wheel.newBuilder() in testRemove_WithNestedMessages()
[all …]
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DNestedBuildersTest.java34 import protobuf_unittest.Wheel;
58 Wheel wheel = vehicle.getWheel(i); in testMessagesAndBuilders() local
59 assertEquals(4, wheel.getRadius()); in testMessagesAndBuilders()
60 assertEquals(i + 1, wheel.getWidth()); in testMessagesAndBuilders()
71 Wheel wheel = vehicle.getWheel(i); in testMessagesAndBuilders() local
72 assertEquals(5, wheel.getRadius()); in testMessagesAndBuilders()
73 assertEquals(i + 10, wheel.getWidth()); in testMessagesAndBuilders()
87 List<Wheel> wheels = new ArrayList<Wheel>(vehicleBuilder.getWheelList()); in testMessagesAreCached()
125 vehicleBuilder.addWheel(Wheel.newBuilder().setRadius(1).setWidth(1)); in testRemove_WithNestedMessages()
126 vehicleBuilder.addWheel(Wheel.newBuilder().setRadius(2).setWidth(2)); in testRemove_WithNestedMessages()
[all …]
/external/usrsctp/usrsctplib/netinet/
Dsctp_ss_functions.c67 TAILQ_INIT(&asoc->ss_data.out.wheel); in sctp_ss_default_init()
72 * to the wheel. in sctp_ss_default_init()
92 while (!TAILQ_EMPTY(&asoc->ss_data.out.wheel)) { in sctp_ss_default_clear()
95 strq = TAILQ_FIRST(&asoc->ss_data.out.wheel); in sctp_ss_default_clear()
96 TAILQ_REMOVE(&asoc->ss_data.out.wheel, strq, ss_params.rr.next_spoke); in sctp_ss_default_clear()
131 /* Add to wheel if not already on it and stream queue not empty */ in sctp_ss_default_add()
135 TAILQ_INSERT_TAIL(&asoc->ss_data.out.wheel, in sctp_ss_default_add()
147 if (TAILQ_EMPTY(&asoc->ss_data.out.wheel)) { in sctp_ss_default_is_empty()
162 /* Remove from wheel if stream queue is empty and actually is on the wheel */ in sctp_ss_default_remove()
171 asoc->ss_data.last_out_stream = TAILQ_LAST(&asoc->ss_data.out.wheel, in sctp_ss_default_remove()
[all …]
/external/webrtc/
D.vpython3 # It describes patterns for python wheel dependencies of the python scripts in
29 wheel: <
35 wheel: <
42 wheel: <
53 wheel: <
57 wheel: <
61 wheel: <
65 wheel: <
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/artifacts/
Dbuild_artifact_python.sh25 # Install Cython to avoid source wheel build failure.
41 # Wheel has a bug where directories don't get excluded.
42 # https://bitbucket.org/pypa/wheel/issues/99/cannot-exclude-directory
85 for wheel in dist/*.whl; do
86 "${AUDITWHEEL}" show "$wheel" | tee /dev/stderr | grep -E -w "$AUDITWHEEL_PLAT"
87 "${AUDITWHEEL}" repair "$wheel" -w "$ARTIFACT_DIR"
88 rm "$wheel"
90 for wheel in tools/distrib/python/grpcio_tools/dist/*.whl; do
91 "${AUDITWHEEL}" show "$wheel" | tee /dev/stderr | grep -E -w "$AUDITWHEEL_PLAT"
92 "${AUDITWHEEL}" repair "$wheel" -w "$ARTIFACT_DIR"
[all …]
/external/rust/crates/tokio/src/time/driver/
Dmod.rs15 mod wheel; module
53 /// A hashed timing wheel is a vector of slots, where each slot handles a time
56 /// end of the wheel, it starts again at the beginning.
59 /// levels go up, the slots of the associated wheel represent larger intervals
60 /// of time. At each level, the wheel has 64 slots. Each slot covers a range of
61 /// time equal to the wheel at the lower level. At level zero, each slot
75 /// levels, all entries will be redistributed across the wheel at the next level
155 /// Timer wheel
156 wheel: wheel::Wheel, field
201 let next_wake = lock.wheel.next_expiration_time(); in park_internal()
[all …]
/external/python/setuptools/setuptools/tests/
Dtest_wheel.py3 """wheel tests
18 from setuptools.wheel import Wheel
68 Wheel(filename)
70 w = Wheel(filename)
130 w = Wheel(filename)
175 'WHEEL',
207 'WHEEL',
277 'WHEEL',
301 'WHEEL',
332 'WHEEL',
[all …]
Dtest_virtualenv.py32 """ Bare virtualenv (no pip/setuptools/wheel).
35 '--no-wheel',
61 # Python 2.6 support was dropped in wheel 0.30.0.
62 virtualenv.run('pip install -U "wheel<0.30.0"')
63 # Generate source distribution / wheel.
70 wheel = glob.glob(os.path.join(dist_dir, '*.whl'))[0]
71 # Then update from wheel.
72 virtualenv.run('pip install ' + wheel)
/external/rust/crates/tokio/src/time/driver/wheel/
Dmod.rs12 /// Timing wheel implementation.
14 /// This type provides the hashed timing wheel implementation that backs `Timer`
24 pub(crate) struct Wheel { struct
25 /// The number of milliseconds elapsed since the wheel started.
28 /// Timer wheel.
52 impl Wheel { argument
53 /// Create a new timing wheel
54 pub(crate) fn new() -> Wheel { in new()
57 Wheel { in new()
65 /// wheel's creation.
[all …]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue150/
DYamlLoadAsIssueTest.java74 yaml.addImplicitResolver(new Tag("!wheel"), Pattern.compile("w#\\d+"), "w"); in yaml()
84 ArrayList<Wheel> wheels = new ArrayList<Wheel>(car.getWheels()); in ignoreImplicitTag()
98 yamlConstructors.put(new Tag("!wheel"), new ConstructWheel()); in MyConstructor()
119 List<Wheel> wheels = (List<Wheel>) constructSequence(snode); in construct()
129 public Wheel construct(Node node) { in construct()
130 Wheel w = null; in construct()
134 w = new Wheel(); in construct()
/external/autotest/client/site_tests/touch_MouseScroll/
DREADME6 up_slow - Scroll the mouse wheel up slowly to record multiple scrolls.
7 up_fast - Scroll the mouse wheel up fast to record multiple scrolls.
8 up_1 - Scroll the mouse wheel up (one gear up) to record single scroll.
9 down_slow - Scroll the mouse wheel down slowly to record scrolls.
10 down_fast - Scroll the mouse wheel down fast to record multiple scrolls.
11 down_1 - Scroll the mouse wheel down (one gear down) to record single scroll.
/external/rust/crates/grpcio-sys/grpc/tools/internal_ci/macos/
Dgrpc_build_artifacts.sh28 python2.7 -m pip install -U cython setuptools==44.1.1 wheel --user
29 python3.5 -m pip install -U cython setuptools==44.1.1 wheel --user
30 python3.6 -m pip install -U cython setuptools==44.1.1 wheel --user
31 python3.7 -m pip install -U cython setuptools==44.1.1 wheel --user
32 python3.8 -m pip install -U cython setuptools==44.1.1 wheel --user
33 python3.9 -m pip install -U cython setuptools==44.1.1 wheel --user
/external/grpc-grpc/tools/run_tests/artifacts/
Dbuild_artifact_python.sh33 # Wheel has a bug where directories don't get excluded.
34 # https://bitbucket.org/pypa/wheel/issues/99/cannot-exclude-directory
76 for wheel in dist/*.whl; do
77 "${AUDITWHEEL}" repair "$wheel" -w "$ARTIFACT_DIR"
78 rm "$wheel"
80 for wheel in tools/distrib/python/grpcio_tools/dist/*.whl; do
81 "${AUDITWHEEL}" repair "$wheel" -w "$ARTIFACT_DIR"
82 rm "$wheel"
/external/python/cryptography/.jenkins/
DJenkinsfile-cryptography-wheel-builder87 pip install wheel virtualenv
88 … pip wheel cryptography==$BUILD_VERSION --wheel-dir=wheelhouse --no-binary cryptography
112 … pip install -U wheel # upgrade wheel to latest before we use it to build the wheel
121 …pip wheel cryptography==$BUILD_VERSION --wheel-dir=wheelhouse --no-binary cryptography --no-deps \…
151 …$linux32 /opt/python/$version/bin/pip wheel cryptography==$BUILD_VERSION --no-binary cryptography …
/external/fonttools/
Dtox.ini65 commands = pip wheel -w {envtmpdir}/build --no-deps .
71 wheel
74 # make sure we use the latest setuptools and wheel
84 # build wheel from sdist
85 …pip wheel -v --no-deps --no-index --wheel-dir {toxinidir}/dist --find-links {toxinidir}/dist fontt…
/external/python/setuptools/setuptools/
Dwheel.py53 class Wheel(object): class
58 raise ValueError('invalid wheel name: %r' % filename)
64 '''List tags (py_version, abi, platform) supported by this wheel.'''
70 '''Is the wheel is compatible with the current platform?'''
81 '''Install wheel as an egg directory.'''
90 wheel_metadata = get_metadata('WHEEL')
92 # Check wheel format version is supported.
93 wheel_version = parse_version(wheel_metadata.get('Wheel-Version'))
95 raise ValueError('unsupported wheel format version: %s' % wheel_version)
/external/grpc-grpc/tools/internal_ci/macos/
Dgrpc_build_artifacts.sh24 python2.7 -m pip install cython setuptools wheel
25 python3.4 -m pip install cython setuptools wheel
26 python3.5 -m pip install cython setuptools wheel
27 python3.6 -m pip install cython setuptools wheel
28 python3.7 -m pip install cython setuptools wheel

12345678910>>...16