MCPcopy Index your code
hub / github.com/nodejs/node / _RunLocallyIsolated

Method _RunLocallyIsolated

deps/v8/tools/mb/mb.py:379–390  ·  view source on GitHub ↗
(self, build_dir, target)

Source from the content-addressed store, hash-verified

377 return self._RunLocallyIsolated(build_dir, target)
378
379 def _RunLocallyIsolated(self, build_dir, target):
380 cmd = [
381 self.PathJoin(self.chromium_src_dir, 'tools', 'luci-go',
382 self.isolate_exe),
383 'run',
384 '-i',
385 self.ToSrcRelPath('%s/%s.isolate' % (build_dir, target)),
386 ]
387 if self.args.extra_args:
388 cmd += ['--'] + self.args.extra_args
389 ret, _, _ = self.Run(cmd, force_verbose=True, buffer_output=False)
390 return ret
391
392 def _DefaultDimensions(self):
393 if not self.args.default_dimensions:

Callers 1

CmdRunMethod · 0.95

Calls 3

PathJoinMethod · 0.95
ToSrcRelPathMethod · 0.95
RunMethod · 0.95

Tested by

no test coverage detected