Home | History | Annotate | Download | only in model

Lines Matching refs:buffer

223 			StringBuffer buffer = new StringBuffer();
225 buffer.append("Status for ");
226 buffer.append(getPerformanceResults().getName());
227 buffer.append(Util.LINE_SEPARATOR);
230 buffer.append("Options: ");
231 buffer.append(Util.LINE_SEPARATOR);
234 buffer.append(" error level: ");
237 buffer.append("include all failures whatever the error level is");
240 buffer.append("all failures with at least a noticeable error (> 3%) are excluded!");
243 buffer.append("all failures with at least a suspicious error (> 25%) are excluded!");
246 buffer.append("all failures with at least a weird error (> 50%) are excluded!");
249 buffer.append("all failures with an invalid error (> 100%) are excluded!");
252 buffer.append(Util.LINE_SEPARATOR);
256 buffer.append(" small value: ");
259 buffer.append("all failures with a small build value (<100ms) are excluded!");
262 buffer.append("all failures with a small delta value (<100ms) are excluded!");
265 buffer.append("all failures with a small build or delta value (<100ms) are excluded!");
268 buffer.append(Util.LINE_SEPARATOR);
272 buffer.append(" statistics: ");
275 buffer.append("all failures with erratic baseline results (variation > 20%) are excluded!");
278 buffer.append("all failures with unstable baseline results (10% < variation < 20%) are excluded!");
281 buffer.append(Util.LINE_SEPARATOR);
284 buffer.append(" builds to confirm a regression: ");
285 buffer.append(buildsNumber);
286 buffer.append(Util.LINE_SEPARATOR);
289 buffer.append("Component");
290 buffer.append(" Scenario");
291 buffer.append(" Machine");
293 buffer.append(" Build ");
294 buffer.append(" History ");
296 buffer.append(" Comment");
297 buffer.append(Util.LINE_SEPARATOR);
299 buffer.append(" value");
300 buffer.append(" baseline");
301 buffer.append(" variation");
302 buffer.append(" delta");
303 buffer.append(" error");
304 buffer.append(" n");
305 buffer.append(" mean");
306 buffer.append(" deviation");
307 buffer.append(" coeff");
308 buffer.append(Util.LINE_SEPARATOR);
310 stream.write(buffer.toString().getBytes());