Tagged Questions
The elapsed tag has no wiki summary.
4
votes
2answers
2k views
Measuring elapsed time with the Time module
With the Time module in python is it possible to measure elapsed time? If so, how do I do that?
I need to do this so that if the cursor has been in a widget for a certain duration an event happens. ...
3
votes
1answer
2k views
How to pass parameters to the function called by ElapsedEventHandler?
How to pass parameters to the function called by ElapsedEventHandler?
My code:
private static void InitTimer(int Index)
{
keepAlive[Index] = new Timer();
keepAlive[Index].Interval = 3000;
...
3
votes
6answers
2k views
Elapsed time of running a C program
I would like to know what lines of C code to add to a program so that it tells me the total time that the program takes to run. I guess there should be counter initialization near the beginning of ...
1
vote
1answer
24 views
Getting surprising elapsed time in windows and linux
I have written one function which is platform independent and working nicely in windows as well as linux. I wanted to check the execution time of that function. I am using QueryPerformanceCounter to ...
1
vote
3answers
99 views
Checking elapsed time in Groovy/Grails
I'm trying to get the duration of a web-based phone call by passing a new Date value to an application at the connection time and exit time of each call.
The code looks a little bit like this:
...
1
vote
1answer
72 views
Select elapsed time from MySQL
I'm using this query:
SELECT NOW() - date AS elapsed FROM ...
Date column is TIMESTAMP.
It returns 41632 when elapsed time is about 4 hours and 20 minutes.
It's not timestamp.
What is it?
Or is ...
1
vote
1answer
74 views
Time Elapsed and Timezones
my problem is as following :
When I store a DateTime and then retrieve it and do some elapsed function to know how much time ago I stored that DateTime, I get an offset of about 7200 second, wich is 2 ...
1
vote
1answer
376 views
Time Elapsed/StopWatch
I want to create an ASP.NET WinForms application that tracks time on task. I need to be able to write the form so that I can add the task to the database, open it in a new tab, and be able to start, ...
1
vote
6answers
138 views
elapsed time in C
#include <time.h>
time_t start,end;
time (&start);
//code here
time (&end);
double dif = difftime (end,start);
printf ("Elasped time is %.2lf seconds.", dif );
I'm getting 0.000 ...
1
vote
4answers
360 views
Perl Localtime Returning 16 Hours When Input is only Seconds
I must be doing something wrong, but I can't figure it out. When I give seconds as an argument to localtime(), I get seconds and 16 hours back.
my $startTime = time;
(process)
my $endTime = time;
...
1
vote
3answers
258 views
.NET - Timer Elapsed Event Overlap
Is there a way to detect that elapsed events of timer are overlapping? For example, I create a Timer with 200ms interval between elapsed events but the executed code at event is taking more than ...
1
vote
2answers
265 views
Is clock-based timing reliable when CPU frequency is variable?
A common way to measure elapsed time is:
const clock_t START = clock();
// ...
const clock_t END = clock();
double T_ELAPSED = (double)(END - START) / CLOCKS_PER_SEC;
I know this is not the best ...
1
vote
5answers
1k views
Elapsed time without considering weekends and bank holidays in Java
I've implemented a stopwatch that works fine without considering that bank holidays and weekends shouldn't be counted in the total duration. I was looking for some open-source library where I could ...
0
votes
2answers
73 views
Set my timer to 0:00 and show elapsed time [closed]
I want to set my timer to 0 and show the elapsed time. With this code it starts at 1:00 automatically. But I want to start at 0:00 automatically. Here's my code where it starts at 1:00. How can I set ...
0
votes
3answers
245 views
Getting precise elapsed time using Java to the Milisecond
I've been searching for an answer to my dilemma and have found some useful tips but nothing that addresses my specific question, so I was hoping someone here might be able to help me out.
I'm trying ...
0
votes
2answers
3k views
calculate elapsed time in flash
I am building a quiz and i need to calculate the total time taken to do the quiz.
and i need to display the time taken in HH::MM::SS..any pointers?