Searched refs:substeps (Results 1 – 5 of 5) sorted by relevance
/external/pigweed/pw_presubmit/py/ |
D | presubmit_test.py | 93 substeps = {} 96 for sub in step.substeps(): 97 substeps[sub.name or step.name] = sub._func 99 return substeps 122 substeps = _all_substeps( 125 self.assertEqual(2, len(substeps)) 126 self.assertEqual((_fake_function_1, _fake_function_2), tuple(substeps)) 136 substeps = _all_substeps( 139 self.assertEqual(1, len(substeps)) 140 self.assertEqual((_fake_function_2,), tuple(substeps))
|
/external/pigweed/pw_presubmit/py/pw_presubmit/ |
D | presubmit.py | 1078 substeps = filtered_check.check.substeps() 1079 if len(substeps) > 1: 1080 step['substeps'] = [x.name for x in substeps] 1198 def substeps(self) -> Sequence[SubStep]: member in Check 1335 for substep in self.substeps(): 1339 expected = ', '.join(repr(s.name) for s in self.substeps()) 1349 for substep in self.substeps():
|
/external/brotli/fetch-spec/ |
D | shared-brotli-fetch-spec.txt | 44 To point `12. Run these substeps in parallel:`, add new first sub-point: 64 To handle content codings given codings, bytes and optionally a dictionary, run these substeps:
|
/external/pigweed/pw_presubmit/ |
D | docs.rst | 167 Presubmit steps can define substeps that can run independently in other tooling. 168 These steps should subclass ``SubStepCheck`` and must define a ``substeps()``
|
/external/python/apitools/samples/bigquery_sample/bigquery_v2/ |
D | bigquery_v2_messages.py | 820 substeps = _messages.StringField(2, repeated=True) variable in ExplainQueryStep
|