Home
last modified time | relevance | path

Searched refs:run_step (Results 1 – 8 of 8) sorted by relevance

/external/toolchain-utils/rust_tools/
Drust_uprev.py492 skip_compile: bool, run_step: Callable[[], T]) -> None:
493 stage0_info = run_step(
495 template_version, template_ebuild = run_step(
503 run_step('copy patches', lambda: copy_patches(template_version, rust_version))
504 ebuild_file = run_step(
506 run_step('update ebuild', lambda: update_ebuild(ebuild_file, stage0_info))
508 run_step('upload_to_localmirror', lambda: upload_to_localmirror(
510 run_step('update manifest to add new version', lambda: update_manifest(
513 run_step('emerge rust', lambda: subprocess.check_call(
515 run_step('insert version into rust packages', lambda: update_rust_packages(
[all …]
/external/tensorflow/tensorflow/python/keras/distribute/
Dminimize_loss_test.py106 def run_step(): function
112 run_step = sess.make_callable(run_step())
117 run_step()
143 def run_step(): function
150 run_step = sess.make_callable(run_step())
155 run_step()
201 def run_step(): function
207 run_step = sess.make_callable(run_step())
209 run_step()
269 def run_step(): function
[all …]
/external/llvm-project/lldb/test/API/functionalities/step_scripted/
DTestStepScripted.py117 def run_step(self, stop_others_value, run_mode, token): member in StepScriptedTestCase
145 self.run_step(False, "all-threads", thread_id)
148 self.run_step(True, "this-thread", thread_id)
151 self.run_step(True, None, thread_id)
160 self.run_step(False, None, thread_id)
/external/llvm-project/clang/utils/check_cfc/
Dcheck_cfc.py232 def run_step(command, my_env, error_on_failure): function
267 run_step(alternate_command, my_env, "Error compiling with -g")
287 run_step(alternate_command, my_env,
/external/clang/utils/check_cfc/
Dcheck_cfc.py229 def run_step(command, my_env, error_on_failure): function
264 run_step(alternate_command, my_env, "Error compiling with -g")
284 run_step(alternate_command, my_env,
/external/tensorflow/tensorflow/core/protobuf/
Dreplay_log.proto25 RunStepRequest run_step = 4; field
/external/tensorflow/tensorflow/python/keras/engine/
Dtraining.py829 def run_step(data): function
837 outputs = model.distribute_strategy.run(run_step, args=(data,))
1269 def run_step(data): function
1277 outputs = model.distribute_strategy.run(run_step, args=(data,))
1517 def run_step(data): function
1525 outputs = model.distribute_strategy.run(run_step, args=(data,))
/external/tensorflow/tensorflow/python/client/
Dsession_test.py1149 def run_step(): function
1154 threads = [self.checkedThread(target=run_step) for _ in range(100)]