Searched refs:getTimeStampHMS (Results 1 – 9 of 9) sorted by relevance
136 expect(Utils.getTimeStampHMS(3900_000_000_000)).toBe('01:05:00:000.000');140 expect(Utils.getTimeStampHMS(70_000_000_000)).toBe('01:10:000.000');144 expect(Utils.getTimeStampHMS(2_000_000_000)).toBe('02:000.000');148 expect(Utils.getTimeStampHMS(2_000_000)).toBe('00:002.000');152 expect(Utils.getTimeStampHMS(2_000)).toBe('00:000.002.');156 expect(Utils.getTimeStampHMS(1)).toBe('00:000.000001');240 expect(Utils.getTimeStampHMS(0)).toBe('00:000.000');
95 processHistory.firstSeen = Utils.getTimeStampHMS(processHistory.firstSeenNumber);98 processHistory.lastSeen = Utils.getTimeStampHMS(Number(processHistory.lastSeenNumber));
91 systemCpuSummary.startTimeStr = Utils.getTimeStampHMS(systemCpuSummary.startTime);
120 : Utils.getTimeStampHMS(item.startTime - startTime);
93 systemDiskIOSummary.startTimeStr = Utils.getTimeStampHMS(systemDiskIOSummary.startTime);
95 … systemNetworkSummary.startTimeStr = Utils.getTimeStampHMS(systemNetworkSummary.startTime);
117 sliceValue = Utils.getTimeStampHMS(Number(sliceValue));335 return Utils.getTimeStampHMS(Number(sliceValue));
76 counterValue = Utils.getTimeStampHMS(Number(counterValue));
361 public static getTimeStampHMS(ns: number): string { method in Utils