Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 209 for Advance (0.15 sec)

  1. src/main/webapp/WEB-INF/view/advance.jsp

    	<script type="text/javascript" src="${fe:url('/js/bootstrap.min.js')}"></script>
    	<script type="text/javascript" src="${fe:url('/js/suggestor.js')}"></script>
    	<script type="text/javascript" src="${fe:url('/js/advance.js')}"></script>
    </body>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/orig/view/advance.jsp

    	<script type="text/javascript" src="${fe:url('/js/bootstrap.min.js')}"></script>
    	<script type="text/javascript" src="${fe:url('/js/suggestor.js')}"></script>
    	<script type="text/javascript" src="${fe:url('/js/advance.js')}"></script>
    </body>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  3. 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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  4. 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: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Aug 05 17:21:46 UTC 2022
    - 18.7K bytes
    - Viewed (0)
  5. 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: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Aug 05 17:21:46 UTC 2022
    - 15.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    	case 'O':
    		rst.advance(1)
    		rst.writeString("*mut ")
    		rst.demangleType()
    	case 'F':
    		rst.advance(1)
    		hold := rst.lifetimes
    		rst.fnSig()
    		rst.lifetimes = hold
    	case 'D':
    		rst.advance(1)
    		hold := rst.lifetimes
    		rst.dynBounds()
    		rst.lifetimes = hold
    		if len(rst.str) == 0 || rst.str[0] != 'L' {
    			rst.fail("expected L")
    		}
    		rst.advance(1)
    		if lifetime := rst.base62Number(); lifetime > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Combinators.kt

                        }
                        advance()
                    }
    
                    SEMICOLON -> {
                        advance()
                        seenSeparator = true
                    }
    
                    in COMMENTS -> {
                        if (ignoresComments) {
                            advance()
                        } else {
                            break
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

        // can return a temporary object (and of type other then T), so just
        // having "return &*iterator_;" doesn't work.
        // value_ is updated here and not in Advance() because Advance()
        // can advance iterator_ beyond the end of the range, and we cannot
        // detect that fact. The client code, on the other hand, is
        // responsible for not calling Current() on an out-of-range iterator.
        virtual const T* Current() const {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

        // can return a temporary object (and of type other then T), so just
        // having "return &*iterator_;" doesn't work.
        // value_ is updated here and not in Advance() because Advance()
        // can advance iterator_ beyond the end of the range, and we cannot
        // detect that fact. The client code, on the other hand, is
        // responsible for not calling Current() on an out-of-range iterator.
        virtual const T* Current() const {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  10. src/crypto/sha512/sha512block_ppc64x.s

    	SHA512ROUND0(V0, V1, V2, V3, V4, V5, V6, V7, V8, R_x020)
    	LXVD2X	(INP)(R_x000), VS42	// load v10 (=vs42) in advance
    	VSLDOI	$8, V8, V8, V9
    	SHA512ROUND0(V7, V0, V1, V2, V3, V4, V5, V6, V9, R_x030)
    	VPERMLE(V10,V10,LEMASK,V10)
    	SHA512ROUND0(V6, V7, V0, V1, V2, V3, V4, V5, V10, R_x040)
    	LXVD2X	(INP)(R_x010), VS44	// load v12 (=vs44) in advance
    	VSLDOI	$8, V10, V10, V11
    	SHA512ROUND0(V5, V6, V7, V0, V1, V2, V3, V4, V11, R_x050)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top