Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for advanceTo (0.05 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 13 05:54:52 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        Object four = new Object();
        Object five = new Object();
    
        map.put(one, two);
        ticker.advance(1);
        map.put(two, three);
        ticker.advance(1);
        map.put(three, four);
        assertThat(listener.isEmpty()).isTrue();
        ticker.advance(1);
        map.put(four, five);
        assertNotified(listener, one, two, RemovalCause.EXPIRED);
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 12 00:25:21 UTC 2025
    - 115.9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        Object four = new Object();
        Object five = new Object();
    
        map.put(one, two);
        ticker.advance(1);
        map.put(two, three);
        ticker.advance(1);
        map.put(three, four);
        assertThat(listener.isEmpty()).isTrue();
        ticker.advance(1);
        map.put(four, five);
        assertNotified(listener, one, two, RemovalCause.EXPIRED);
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 12 00:25:21 UTC 2025
    - 117.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: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 30 22:03:28 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

        cache.put(0, 10);
        cache.put(2, 30);
    
        fakeTicker.advance(999, MILLISECONDS);
        assertThat(cache.getIfPresent(2)).isEqualTo(30);
        fakeTicker.advance(1, MILLISECONDS);
        assertThat(cache.getIfPresent(2)).isEqualTo(30);
        fakeTicker.advance(1000, MILLISECONDS);
        assertThat(cache.getIfPresent(0)).isNull();
      }
    
      @Test
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 30 22:03:28 UTC 2025
    - 14.8K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/cache/CacheRefreshTest.java

          ticker.advance(1, MILLISECONDS);
        }
    
        assertThat(cache.getUnchecked(0)).isEqualTo(0);
        assertThat(cache.getUnchecked(1)).isEqualTo(1);
        assertThat(cache.getUnchecked(2)).isEqualTo(2);
        assertThat(loader.getLoadCount()).isEqualTo(expectedLoads);
        assertThat(loader.getReloadCount()).isEqualTo(expectedReloads);
    
        // refresh 0
        ticker.advance(1, MILLISECONDS);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 30 22:03:28 UTC 2025
    - 4K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/cache/CacheRefreshTest.java

          ticker.advance(1, MILLISECONDS);
        }
    
        assertThat(cache.getUnchecked(0)).isEqualTo(0);
        assertThat(cache.getUnchecked(1)).isEqualTo(1);
        assertThat(cache.getUnchecked(2)).isEqualTo(2);
        assertThat(loader.getLoadCount()).isEqualTo(expectedLoads);
        assertThat(loader.getReloadCount()).isEqualTo(expectedReloads);
    
        // refresh 0
        ticker.advance(1, MILLISECONDS);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 30 22:03:28 UTC 2025
    - 4K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_en.properties

    labels.tooltip_search_view=Search Screen
    labels.tooltip_run_crawler=Run Crawler
    labels.tooltip_forum=Forum
    labels.tooltip_onlinehelp=Help
    labels.tooltip_logout=Logout
    labels.advance=Advanced Search
    labels.advance_search_title=Advanced Search
    labels.advance_search_must_queries=with all of the words
    labels.advance_search_phrase_query=with the exact phrase
    labels.advance_search_should_queries=with at least one of the words
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 44K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/index.jsp

    						<i class="fa fa-search" aria-hidden="true"></i>
    						<la:message key="labels.search" />
    					</button>
    					<la:link href="/search/advance" styleClass="btn btn-info">
    						<i class="fa fa-cog" aria-hidden="true"></i>
    						<la:message key="labels.advance" />
    					</la:link>
    				</div>
    			</div>
    		</div>
    		<main class="container">
    			<div class="row">
    				<div class="col text-center searchFormBox">
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 05:40:20 UTC 2025
    - 7K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/cache/CacheLoadingTest.java

        ticker.advance(1, MILLISECONDS);
        assertThat(cache.getUnchecked(key)).isSameInstanceAs(one);
        stats = cache.stats();
        assertThat(stats.missCount()).isEqualTo(1);
        assertThat(stats.loadSuccessCount()).isEqualTo(1);
        assertThat(stats.loadExceptionCount()).isEqualTo(0);
        assertThat(stats.hitCount()).isEqualTo(1);
    
        ticker.advance(1, MILLISECONDS);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 30 22:03:28 UTC 2025
    - 91.1K bytes
    - Viewed (0)
Back to top