Tagged Questions
The nanotime tag has no wiki summary.
28
votes
12answers
18k views
Is System.nanoTime() completely useless?
As documented here, on x86 systems. Java's System.nanoTime() returns the time value using a cpu specific counter.
Now consider the following case I use to measure time of a call -
long time1= ...
5
votes
1answer
133 views
Why I get a negative elapsed time using System.nanoTime()?
I'm trying to use following code with System.nanoTime() to measure the elapsed time of code.
public static void main(String[] args) throws Exception {
while (true) {
long start = ...
5
votes
2answers
1k views
How to get time in PHP with nanosecond precision?
Is this even possible in PHP?
If not, what is the highest precision available?
4
votes
4answers
86 views
Comparing System.nanoTime() values resulting from different machines
Is it correct to compare two values resulting from a call to System.nanoTime() on two different machines? I would say no because System.nanoTime() returns a nanosecond-precise time relative to some ...
2
votes
4answers
375 views
How to get a meaningful result from subtracting 2 nanoTime objects?
I created a filter that monitors the length of a request.
long start = System.nanoTime();
...
long end = System.nanoTime();
How can I get the number of milliseconds from this now?
2
votes
1answer
385 views
Is System.nanoTime() consistent across threads?
I want to count the time elapsed between two events in nanoseconds. To do that, I can use System.nanoTime() as mentioned here. The problem is that the two events are happening in different threads.
...
2
votes
5answers
1k views
What is the equivalent to System.nanoTime() in .NET?
The title is pretty much self-explanatory, I'm killing myself over this simplicity.
Looked here, but it isn't much helpful.
1
vote
3answers
111 views
What's wrong with System.nanoTime?
I have a very long string with the pattern </value> at the very end, I am trying to test the performance of some function calls, so I made the following test to try to find out the answer... but ...
1
vote
3answers
80 views
Synchronize Java Virtual Machine with System.nanoTime
Does it make sense to synchronize java virtual machines
with System.nanoTime () ?
I mean :
A call System.nanoTime () and puts the results in t1
A send a packet to B
when the packet from A is ...
1
vote
1answer
395 views
java.sql.Timestamp way of storing NanoSeconds
java.sql.Timestamp constructor go like this:
public Timestamp(long time) {
super((time/1000)*1000);
nanos = (int)((time%1000) * 1000000);
if (nanos < 0) {
nanos = 1000000000 + ...
1
vote
4answers
919 views
Why is my System.nanoTime() broken?
Myself and another developer on my time recently moved from a Core 2 Duo machine at work to a new Core 2 Quad 9505; both running Windows XP SP3 32-bit with JDK 1.6.0_18.
Upon doing so, a couple of ...
1
vote
3answers
936 views
System.nanotime running slow?
One of my friends showed me something he had done, and I was at a serious loss to explain how this could have happened: he was using a System.nanotime to time something, and it gave the user an update ...
1
vote
2answers
491 views
strace java applet
I'm trying to strace a java applet, and strace doesn't seem to be working. I'm calling the following function.
public static void testSTrace(){
long c = 0;
for (int i = 0; i < 1000; i++){
long ...
0
votes
3answers
622 views
Java System.nanoTime() huge difference in elapsed time
I'm in and android widget and checking elapsed time between two calls of System.nanoTime() and the number is huge. How do you measure elapsed time with this? it should be a fraaction of a second and ...
0
votes
1answer
167 views
measuring a java program runtime using asm Instrumantation
I was wondering if there is a way to measure a given bytecode (class file , that has main function in the original code) runtime using java bytecode instrumentation of asm.
The measure should be as ...
0
votes
1answer
678 views
Conversion of nanoseconds to milliseconds and nanoseconds < 999999 in Java
I'm wondering what the most accurate way of converting a big nanoseconds value is to milliseconds and nanoseconds, with an upper limit on the nanoseconds of 999999. The goal is to combine the ...
-1
votes
2answers
115 views
Slow down a clock based on System.nanoTime();
I have a timer based on System.nanoTime()
and I want to slow it down.
I have this:
elapsed = System.nanoTime();
seconds = ((elapsed - now) / 1.0E9F);
where now is System.nanoTime(); called ...