Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

34
votes
5answers
25k views

iPhone: How to get current milliseconds?

What is the best way to get the current system time milliseconds?
25
votes
4answers
60k views

How to measure time in milliseconds using ANSI C?

Using only ANSI C, is there any way to measure time with milliseconds precision or more? I was browsing time.h but I only found second precision functions.
21
votes
6answers
24k views

How do I sleep for a millisecond in Perl?

How do I sleep for shorter than a second in Perl?
7
votes
1answer
104 views

XMLTimeToDateTime ignores milliseconds

why does XMLTimeToDateTime ignore milliseconds? Test := XMLTimeToDateTime('2011-11-11T12:41:36.696+01:00', TRUE); T2 := FormatDateTime('yyyy''-''mm''-''dd''T''hh'':''nn'':''ss''.''zzz', Test); ...
7
votes
1answer
2k views

Local time with milliseconds

how can I get current time with library boost. I can do this: ptime now = boost::posix_timesecond_clock::local_time(); tm d_tm = to_tm(now); But the last time unit of tm structure is second and I ...
4
votes
10answers
12k views

C++ timing, milliseconds since last whole second

I'm working on a C++ application that needs detailed timing information, down to the millisecond level. We intend to gather the time to second accuracy using the standard time() function in . We ...
3
votes
2answers
365 views

How to change the C++ boost posix_time::ptime's resolution to millisecond?

I'm trying to print a boost::posix_time::ptime in the format of "YYYY-MM-DD hh:mm:ss.fff" where the MM is a 2-digit month and fff a 3-digit millisecond. An example is: 2011-07-14 22:38:40.123. I'm ...
3
votes
2answers
1k views

How can I get the current time in milliseconds using C?

How might I get the current time in milliseconds in C? I am doing following to get the time in seconds: struct tm ptm; now = time(NULL); localtime_r(&now,ptm); myTime= (ptm->tm_hour * 3600) ...
2
votes
1answer
57 views

Milliseconds puzzle when calling strptime in R

options(digits.secs = 3); > strptime("2007-03-30 15:00:00.007", format = "%Y-%m-%d %H:%M:%OS"); [1] "2007-03-30 15:00:00.007" > strptime("2007-03-30 15:00:00.008", format = "%Y-%m-%d ...
2
votes
3answers
145 views

Millisecond timing C++

Hi I want to time the real-time performance of some C++ functions I have written. How do I get the timing in milliseconds scale? I know how to get time in seconds via start=clock() ...
2
votes
4answers
2k views

How can I get the Windows system time with millisecond resolution?

How can I get the Windows system time with millisecond resolution? If the above is not possible, then how can I get the operating system start time? I would like to use this value together with ...
1
vote
2answers
687 views

What's the best way to get Epoch milliseconds in Perl?

It's easy to get Epoch-Seconds (timestamp) in perl: time But what's with milliseconds? The most effective way seems to be time*1000, but that's not as accurate as I want it to be. Any good hints ...
0
votes
2answers
90 views

currentTimeMillis() to Years, days, and minutes, and backwords. (hard)

I need System.currentTimeMillis() to be converted into 3 variables: int Years; int DaysMonths; int MinutesHours; What I mean by DayMonths, and MinutesHours is that, let's say for example we have 2 ...
0
votes
1answer
57 views

Which MySQL field(s) should I use to properly store date time with millisecond precision?

I know MySQL only has a second precision when storing datetimes and timestamps. So what is the best, simplest and most robust workaround you would recommend to include milliseconds? So far I have ...
0
votes
1answer
1k views

how to get ubuntu file timestamp in millisecond

Linux friends, how do you guys get a file timestamp in the resolution of milliseconds in Ubuntu? When I tried the command "stat" on my system, I get: File: `tmp.dat' Size: 14 Blocks: ...
0
votes
2answers
629 views

Turbo C time resolution up to milliseconds

The clock_t implications in time.h released with Turbo C++ v1.01 are good only up to 0.0545XX seconds, meaning any timing I want to do with higher precision is impossible with that library. I was ...