- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 726 for advance (0.11 sec)
-
src/main/webapp/WEB-INF/view/advance.jsp
Registered: 2024-06-12 13:08 - Last Modified: 2023-02-17 12:13 - 14.9K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/advance.jsp
Registered: 2024-06-12 13:08 - Last Modified: 2023-02-17 12:13 - 14.9K bytes - Viewed (0) -
src/main/webapp/js/advance.js
Shinsuke Sugaya <******@****.***> 1680155124 +0900
Registered: 2024-06-12 13:08 - Last Modified: 2023-03-30 05:45 - 1.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/StopwatchTest.java
public void testElapsed_notRunning() { ticker.advance(1); stopwatch.start(); ticker.advance(4); stopwatch.stop(); ticker.advance(9); assertEquals(4, stopwatch.elapsed(NANOSECONDS)); } public void testElapsed_multipleSegments() { stopwatch.start(); ticker.advance(9); stopwatch.stop(); ticker.advance(16); stopwatch.start();
Registered: 2024-06-12 16:38 - Last Modified: 2024-02-09 15:49 - 5.8K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/FakeTicker.java
private volatile long autoIncrementStepNanos; /** Advances the ticker value by {@code time} in {@code timeUnit}. */ @SuppressWarnings("GoodTime") // should accept a java.time.Duration @CanIgnoreReturnValue public FakeTicker advance(long time, TimeUnit timeUnit) { return advance(timeUnit.toNanos(time)); } /** Advances the ticker value by {@code nanoseconds}. */
Registered: 2024-06-12 16:38 - Last Modified: 2024-02-06 14:40 - 3.5K bytes - Viewed (0) -
pkg/util/async/bounded_frequency_runner_test.go
ft.lock.Lock() defer ft.lock.Unlock() return ft.now.Sub(t) } func (ft *fakeTimer) Sleep(d time.Duration) { // ft.advance grabs ft.lock ft.advance(d) } // advance the current time. func (ft *fakeTimer) advance(d time.Duration) { ft.lock.Lock() defer ft.lock.Unlock() ft.now = ft.now.Add(d) if ft.active && !ft.now.Before(ft.timeout) { ft.active = false
Registered: 2024-06-15 01:39 - Last Modified: 2022-11-15 09:36 - 12.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java
advance(n); return n; } public void enc_ndr_small ( int s ) { this.buf[ this.index ] = (byte) ( s & 0xFF ); advance(1); } public int dec_ndr_small () { int val = this.buf[ this.index ] & 0xFF; advance(1); return val; } public void enc_ndr_short ( int s ) { align(2);
Registered: 2024-06-12 15:45 - Last Modified: 2018-07-01 13:12 - 6.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/CacheExpirationTest.java
// 4 expires ticker.advance(1, MILLISECONDS); assertThat(keySet).containsExactly(6, 8, 0, 1, 2, 5, 7, 9); ticker.advance(1, MILLISECONDS); assertThat(keySet).containsExactly(6, 8, 0, 1, 2, 5, 7, 9); // 6 expires ticker.advance(1, MILLISECONDS); assertThat(keySet).containsExactly(8, 0, 1, 2, 5, 7, 9); ticker.advance(1, MILLISECONDS);
Registered: 2024-06-12 16:38 - Last Modified: 2022-08-05 17:21 - 18.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java
System.arraycopy(b, i, buf, index, l); advance(l); } public void readOctetArray(byte[] b, int i, int l) { System.arraycopy(buf, index, b, i, l); advance(l); } public int getLength() { return deferred.length; } public void setLength(int length) { deferred.length = length; } public void advance(int n) { index += n;
Registered: 2024-06-12 15:45 - Last Modified: 2019-03-22 20:39 - 6.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java
.build(); cache.put(0, 10); cache.put(2, 30); fakeTicker.advance(999, TimeUnit.MILLISECONDS); assertEquals(Integer.valueOf(30), cache.getIfPresent(2)); fakeTicker.advance(1, TimeUnit.MILLISECONDS); assertEquals(Integer.valueOf(30), cache.getIfPresent(2)); fakeTicker.advance(1000, TimeUnit.MILLISECONDS); assertEquals(null, cache.getIfPresent(0)); }
Registered: 2024-06-12 16:38 - Last Modified: 2017-12-04 17:37 - 15K bytes - Viewed (0)