484950515253545556
} @Override protected void describe() { ExOperatorFactory f = new ExOperatorFactory(); Summarize summarized = f.summarize(in); out.add(summarized.out); } }
105106107108109110111112113114115
taskUpdateRequest.getFragment(), taskUpdateRequest.getSources(), taskUpdateRequest.getOutputIds()); if (shouldSummarize(uriInfo)) { taskInfo = taskInfo.summarize(); } return Response.ok().entity(taskInfo).build(); }
18192021222324252627
HeapRecorder.register(recorder, HeapRecorder.Threading.Local); allocateBar(); HeapRecorder.unregister(recorder, HeapRecorder.Threading.Local); System.out.println(recorder.summarize(HeapRecorder.Threading.Local)); } }
104105106107108109110111112113114
} while (reader.readNextEntry()) { } reader.summarize(csvFormat); if (!csvFormat) { System.out.println("</DbPrintLog>"); } } finally { env.close();
6162636465666768697071
// Enclose the output in a tag to keep proper XML syntax. System.out.println("<DbPrintLog>"); while (reader.readNextEntry()) { } reader.summarize(); System.out.println("</DbPrintLog>"); env.close(); } /**
7576777879808182838485
594595596597598599600601602603604
{ int pidx = _ctrl.getPlayerIndex(); if (pidx != -1 && _puzobj != null && _puzobj.summaries != null) { BoardSummary bsum = _puzobj.summaries[pidx]; bsum.setBoard(_dboard); bsum.summarize(); _dpanel.setSummary(pidx, bsum); } } /**
4142434445464748495051
@Before public void setup() { final IntervalSummarizer summarizer = new IntervalSummarizer(new CurrencyExchangeRateMap()); this.summaries = summarizer.summarize(ImmutableList.of(paidRent, boughtLunch), interval, IntervalType.DAILY, USD, null); } @Test public void itBuildsASingleSummary() throws Exception { assertThat(summaries).hasSize(1);
96979899100101102103104105106
@Before public void setup() { final IntervalSummarizer summarizer = new IntervalSummarizer(new CurrencyExchangeRateMap()); this.summaries = summarizer.summarize(txactions, interval, IntervalType.DAILY, USD, null); } @Test public void itBuildsThreeSummaries() throws Exception { assertThat(summaries).hasSize(3);