Home | History | Annotate | Download | only in servlet

Lines Matching defs:startTime

103         Long startTime = null; // time in microseconds
105 if (request.getParameter("startTime") != null) {
106 String time = request.getParameter("startTime");
108 startTime = Long.parseLong(time);
109 startTime = startTime > 0 ? startTime : null;
111 startTime = null;
124 if (startTime != null && endTime == null) {
145 testPlanKey, TestPlanRunEntity.KIND, startTime, endTime, typeFilter);
218 startTime = lastRun.testPlanRun.startTimestamp;
240 testPlanKey, TestPlanRunEntity.KIND, startTime)));
246 request.setAttribute("startTime", new Gson().toJson(startTime));