Lines Matching refs:output
168 output = _capture_fail_section(full_log)
169 if not output:
170 output = full_log
171 if len(output) >= _FAILED_OUTPUT_LINE_LIMIT:
172 output = output[-_FAILED_OUTPUT_LINE_LIMIT:]
173 output = 'Output (may be trimmed):\n%s' % ''.join(output)
174 return output
219 output = []
223 output = f.read()
224 if not output:
225 output = _capture_limited_output(full_output)
226 raise subprocess.CalledProcessError(proc.returncode, cmd, output)
300 if err.output:
301 logging.error(err.output)
432 output = colorize(text, color, highlight)
434 print(output)
436 print(output, end="")
964 output = subprocess.check_output(cmd).decode()
967 for line in output.splitlines():
1051 output = subprocess.check_output(
1057 match = branch_re.match(output)
1060 logging.warning('Unable to detect branch name through:\n %s', output)