HomeSort by relevance Sort by last modified time
    Searched refs:trialId (Results 1 - 9 of 9) sorted by null

  /external/caliper/caliper/src/main/java/com/google/caliper/bridge/
StartupAnnounceMessage.java 31 private final UUID trialId;
33 public StartupAnnounceMessage(UUID trialId) {
34 this.trialId = checkNotNull(trialId);
37 public UUID trialId() {
38 return trialId;
42 return trialId.hashCode();
47 && trialId.equals(((StartupAnnounceMessage) obj).trialId);
WorkerSpec.java 33 public final UUID trialId;
46 UUID trialId,
52 this.trialId = trialId;
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
TrialOutputLogger.java 44 private final UUID trialId;
48 @TrialId UUID trialId, Experiment experiment) {
51 this.trialId = trialId;
80 writer.println("Trial Id: " + trialId);
TrialModule.java 42 private final UUID trialId;
46 TrialModule(UUID trialId, int trialNumber, Experiment experiment) {
47 this.trialId = trialId;
54 @TrialId
56 return trialId;
85 @TrialId UUID trialId,
87 return serverSocketService.getConnection(trialId);
118 @TrialId final UUID trialId
    [all...]
WorkerProcess.java 65 private final UUID trialId;
68 UUID trialId,
71 this.trialId = trialId;
77 @Inject WorkerProcess(@TrialId UUID trialId,
84 this.trialId = trialId;
86 buildProcess(trialId, experiment, benchmarkSpec, localPort, benchmarkClass);
102 final Thread shutdownHook = new Thread("worker-shutdown-hook-" + trialId) {
    [all...]
ServerSocketService.java 152 UUID id = ((StartupAnnounceMessage) openedSocket.reader().read()).trialId();
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
WorkerEventLog.java 42 void notifyWorkerStarted(UUID trialId) throws IOException {
43 writer.write(new StartupAnnounceMessage(trialId));
WorkerMain.java 53 log.notifyWorkerStarted(request.trialId);
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
StreamServiceTest.java 198 UUID trialId = UUID.randomUUID();
210 }, TRIAL_NUMBER, trialId, null /* experiment */);
219 trialId,

Completed in 209 milliseconds