Lines Matching refs:w
34 w io.WriteCloser member
48 w := gzip.NewWriter(f)
51 w: w,
63 fmt.Fprintf(v.w, "[%d/%d] %s\n", counts.FinishedActions, counts.TotalActions, cmd)
66 fmt.Fprintf(v.w, "FAILED: %s\n", strings.Join(result.Outputs, " "))
70 fmt.Fprintln(v.w, result.Output)
75 v.w.Close()
79 fmt.Fprintf(v.w, "%s%s\n", level.Prefix(), message)
83 fmt.Fprint(v.w, string(p))
88 w io.WriteCloser member
100 w: f,
113 fmt.Fprintf(e.w, "\n\n")
117 fmt.Fprintf(e.w, "FAILED: %s\n", result.Description)
120 fmt.Fprintf(e.w, "Outputs: %s\n", strings.Join(result.Outputs, " "))
123 fmt.Fprintf(e.w, "Error: %s\n", result.Error)
125 fmt.Fprintf(e.w, "Command: %s\n", result.Command)
127 fmt.Fprintf(e.w, "Output:\n%s\n", result.Output)
131 e.w.Close()
140 fmt.Fprintf(e.w, "\n\n")
144 fmt.Fprintf(e.w, "error: %s\n", message)
148 fmt.Fprint(e.w, string(p))