The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
1k views

JFreeChart DynamicTimeSeriesCollection with a period of n milliseconds

I'm trying to define an applet with a chart that have to be updated every n milliseconds. For example every 500 milliseconds. This is a part of the code: dataSet = new DynamicTimeSeriesCollection(1, ...
13
votes
3answers
14k views

c++ boost get current time in milliseconds

I need in my thread (using boost::thread) to retrieve the current time in ms or less and to convert into ms: actually, reading here I've found this: tick = ...
7
votes
3answers
2k views

file.lastModified() is never what was set with file.setLastModified()

I do have a problem with millis set and read on Android 2.3.4 on a Nexus One. This is the code: File fileFolder = new File(Environment.getExternalStorageDirectory(), appName + "/" + ...
2
votes
2answers
1k views

SQL Server 2008 and milliseconds

In SQL Server 2008, why do the following queries return the same value? -- These all return 2011-01-01 23:59:59.997 SELECT CAST('2011-01-01 23:59:59.997' as datetime) SELECT CAST('2011-01-01 ...
3
votes
4answers
6k views

PHP — Convert milliseconds to Hours : Minutes : Seconds.fractional

I've got a script that takes in a value in seconds (to 2 decimal points of fractional seconds): $seconds_input = 23.75 I then convert it to milliseconds: $milliseconds = $seconds_input * 1000; // ...
1
vote
3answers
295 views

R issue with rounding milliseconds

Given the following issue with rounding milliseconds under R. How do I get around it so that the times are correct? > options(digits.secs=3) > as.POSIXlt("13:29:56.061", format='%H:%M:%OS', ...
7
votes
2answers
167 views

Colon in date format between seconds and milliseconds. How to parse in R?

How can I parse this date format? Should I change this colon to dot or maybe someone know better solution? > x <- "2012.01.15 09:00:02:002" > strptime(x, "%Y.%m.%d %H:%M:%S:%OS") [1] ...
5
votes
2answers
2k views

What is the duration of a Toast LENGTH_LONG and LENGTH_SHORT

I need the exact duration of LENGTH_LONG and LENGTH_SHORT in milliseconds (ms). Also I need to know if the duration of Toast message with LENGTH_LONG will have the same duration in any phone and with ...
5
votes
3answers
6k views

milliseconds to days

i did some research, but still can't find how to get the days... Here is what I got: int seconds = (int) (milliseconds / 1000) % 60 ; int minutes = (int) ((milliseconds / (1000*60)) % 60); int hours ...
1
vote
2answers
469 views

Python logging: override log time

Following Python's documentation, I'm trying to override logging.Formatter.converter in order to control the time logged.As you can see below - the milliseconds were not overriden (they are the ...
1
vote
2answers
387 views

Milliseconds conversion to basic time

I need to convert 1774132 to 30:42 or 30 minutes and 42 seconds or whatever the output of this is. Is there any PHP function that does this?
0
votes
1answer
2k views

Boost: How to print/convert posix_time::ptime in milliseconds from Epoch?

I am having trouble converting posix_time::ptime to a timestamp represented by time_t or posix_time::milliseconds, or any other appropriate type which can be easily printed (from Epoch). I actually ...