- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 508 for resets (0.3 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java
searchPaging(data, form); }); } /** * Resets the search criteria and displays all web crawler configurations. * * @param form the search form to reset * @return HTML response with the reset web config list */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse reset(final SearchForm form) { webConfigPager.clear();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java
searchPaging(data, form); }); } /** * Resets the search criteria and displays all role items. * * @param form the search form to reset * @return HTML response with the reset role list */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse reset(final SearchForm form) { rolePager.clear();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.2K bytes - Viewed (0) -
src/test/java/jcifs/http/HandlerTest.java
System.setProperties(originalSystemProperties); resetHandlerState(); } /** * Resets the static state of the Handler class using reflection. * This is crucial for ensuring that tests are isolated from each other. */ private void resetHandlerState() throws Exception { // Reset the static factory field Field factoryField = Handler.class.getDeclaredField("factory");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java
final NdrBuffer nb = new NdrBuffer(this.buf, this.start); nb.index = idx; nb.deferred = this.deferred; return nb; } /** * Resets the buffer position to the start. */ public void reset() { this.index = this.start; this.length = 0; this.deferred = this; } /** * Returns the current index position in the buffer.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java
searchPaging(data, form); }); } /** * Resets the search criteria and displays the default list. * * @param form the search form * @return HTML response for the reset list */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse reset(final SearchForm form) { labelTypePager.clear();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/AdminRelatedcontentAction.java
searchPaging(data, form); }); } /** * Resets the search criteria and displays all related content items. * * @param form the search form to reset * @return HTML response with the reset related content list */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse reset(final SearchForm form) { relatedContentPager.clear();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/CacheEvictionTest.java
getAll(cache, asList(46)); CacheTesting.drainRecencyQueues(cache); assertThat(keySet).contains(0); } public void testEviction_invalidateAll() { // test that .invalidateAll() resets total weight state correctly IdentityLoader<Integer> loader = identityLoader(); LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder().concurrencyLevel(1).maximumSize(10).build(loader);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 15K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/MultisetNavigationTester.java
c = Multisets.immutableEntry(entries.get(2), sortedMultiset.count(entries.get(2))); } } } /** Resets the contents of sortedMultiset to have entries a, c, for the navigation tests. */ // Needed to stop Eclipse whining private void resetWithHole() { List<E> container = new ArrayList<>(); container.addAll(nCopies(a.getCount(), a.getElement()));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 20:14:36 UTC 2024 - 26K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java
// Assert verify(mockConnection).connect(); // Connection should be established after connect } /** * Test that disconnect() calls disconnect() on the underlying connection and resets state. */ @Test void testDisconnect() throws Exception { // Act ntlmConnection.disconnect(); // Assert verify(mockConnection).disconnect();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/reqheader/AdminReqheaderAction.java
searchPaging(data, form); }); } /** * Resets the search criteria and displays all request header items. * * @param form the search form to reset * @return HTML response with the reset request header list */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse reset(final SearchForm form) { reqHeaderPager.clear();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.3K bytes - Viewed (0)