Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 299 for nanoSeconds (0.41 sec)

  1. guava-tests/test/com/google/common/util/concurrent/ListeningExecutorServiceTest.java

        assertThat(recordedTimeUnit).isEqualTo(NANOSECONDS);
        assertThat(Duration.ofNanos(recordedTimeout)).isEqualTo(Duration.ofDays(365));
      }
    
      public void testAwaitTermination() throws Exception {
        boolean result = executorService.awaitTermination(Duration.ofMinutes(144));
    
        assertThat(result).isTrue();
        assertThat(recordedTimeUnit).isEqualTo(NANOSECONDS);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 02 12:45:23 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/TimeTrackingProcessorTest.groovy

            }
            completions == [completion] as Set
            result.executionTimeInMillis == 11
        }
    
        def "tracks time in nanoseconds"() {
            given:
            delegate.init(_) >> {
                simulateWorkWithDuration(500_000, NANOSECONDS)
            }
    
            when:
            tracker.init(null)
    
            then:
            result.executionTimeInMillis == 0
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/QueuesTest.java

    import static java.lang.Thread.currentThread;
    import static java.util.concurrent.Executors.newCachedThreadPool;
    import static java.util.concurrent.TimeUnit.MILLISECONDS;
    import static java.util.concurrent.TimeUnit.NANOSECONDS;
    import static java.util.concurrent.TimeUnit.SECONDS;
    import static org.junit.Assert.assertThrows;
    
    import com.google.common.base.Stopwatch;
    import java.util.Collection;
    import java.util.List;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 12K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Ticker.java

     * the License.
     */
    
    package com.google.common.base;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * A time source; returns a time value representing the number of nanoseconds elapsed since some
     * fixed but arbitrary point in time. Note that most users should use {@link Stopwatch} instead of
     * interacting with this class directly.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 23 23:27:53 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/runtime/tracetime.go

    		// We're using cputicks as our clock, so we need a real estimate.
    		return uint64(ticksPerSecond() / traceTimeDiv)
    	}
    	// Our clock is nanotime, so it's just the constant time division.
    	// (trace clock units / nanoseconds) * (1e9 nanoseconds / 1 second)
    	return uint64(1.0 / float64(traceTimeDiv) * 1e9)
    }
    
    // traceFrequency writes a batch with a single EvFrequency event.
    //
    // freq is the number of trace clock units per second.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/RecordingCallback.kt

        val timeoutMillis = TimeUnit.NANOSECONDS.toMillis(System.nanoTime()) + TIMEOUT_MILLIS
        while (true) {
          val i = responses.iterator()
          while (i.hasNext()) {
            val recordedResponse = i.next()
            if (recordedResponse.request.url.equals(url)) {
              i.remove()
              return recordedResponse
            }
          }
          val nowMillis = TimeUnit.NANOSECONDS.toMillis(System.nanoTime())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. src/cmd/internal/pgo/pprof.go

    		// a scaled version of it, so either one we can find is fine.
    		if (s.Type == "samples" && s.Unit == "count") ||
    			(s.Type == "cpu" && s.Unit == "nanoseconds") {
    			valueIndex = i
    			break
    		}
    	}
    
    	if valueIndex == -1 {
    		return nil, fmt.Errorf(`profile does not contain a sample index with value/type "samples/count" or cpu/nanoseconds"`)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/time/example_test.go

    	fmt.Printf("There are %.0f seconds in %v.\n", complex.Seconds(), complex)
    	fmt.Printf("There are %d nanoseconds in %v.\n", micro.Nanoseconds(), micro)
    	fmt.Printf("There are %6.2e seconds in %v.\n", micro2.Seconds(), micro2)
    	// Output:
    	// 10h0m0s
    	// 1h10m10s
    	// There are 4210 seconds in 1h10m10s.
    	// There are 1000 nanoseconds in 1µs.
    	// There are 1.00e-06 seconds in 1µs.
    }
    
    func ExampleDuration_Hours() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  9. src/go/doc/testdata/benchmark.go

    		// The format specifiers here make sure that
    		// the ones digits line up for all three possible formats.
    		if nsop < 10 {
    			ns = fmt.Sprintf("%13.2f ns/op", float64(r.T.Nanoseconds())/float64(r.N))
    		} else {
    			ns = fmt.Sprintf("%12.1f ns/op", float64(r.T.Nanoseconds())/float64(r.N))
    		}
    	}
    	return fmt.Sprintf("%8d\t%s%s", r.N, ns, mb)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  10. src/syscall/syscall.go

    // Unix returns the time stored in ts as seconds plus nanoseconds.
    func (ts *Timespec) Unix() (sec int64, nsec int64) {
    	return int64(ts.Sec), int64(ts.Nsec)
    }
    
    // Unix returns the time stored in tv as seconds plus nanoseconds.
    func (tv *Timeval) Unix() (sec int64, nsec int64) {
    	return int64(tv.Sec), int64(tv.Usec) * 1000
    }
    
    // Nano returns the time stored in ts as nanoseconds.
    func (ts *Timespec) Nano() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top