Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 211 - 220 of 249 for _clear (0.03 seconds)

  1. src/test/java/org/codelibs/fess/filter/WebApiFilterTest.java

            super.setUp(testInfo);
            webApiFilter = new WebApiFilter();
        }
    
        @Override
        protected void tearDown(TestInfo testInfo) throws Exception {
            // Clear WebApiManagerFactory
            super.tearDown(testInfo);
        }
    
        // Test constructor
        @Test
        public void test_constructor() {
            assertNotNull(new WebApiFilter());
        }
    
        // Test init method
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 26.5K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/reqheader/AdminReqheaderAction.java

         * @return HTML response with the reset request header list
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse reset(final SearchForm form) {
            reqHeaderPager.clear();
            return asHtml(path_AdminReqheader_AdminReqheaderJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 17.7K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java

         * @return HTML response for the reset list
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse reset(final SearchForm form) {
            fileAuthenticationPager.clear();
            return asHtml(path_AdminFileauth_AdminFileauthJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
         * Sets up data for search result pagination.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 18.7K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

            // Create SuggestJob after all components are registered
            suggestJob = new SuggestJob();
        }
    
        @Override
        protected void tearDown(TestInfo testInfo) throws Exception {
            // Clean up temp directory
            if (tempDir != null && tempDir.exists()) {
                deleteDirectory(tempDir);
            }
            super.tearDown(testInfo);
        }
    
        private void createRequiredDirectories() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 31.6K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java

         * @return HTML response for the reset list
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse reset(final SearchForm form) {
            labelTypePager.clear();
            return asHtml(path_AdminLabeltype_AdminLabeltypeJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
         * Sets up data for search result pagination.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 07:01:25 GMT 2025
    - 17.6K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/util/ParameterUtilTest.java

    public class ParameterUtilTest extends UnitFessTestCase {
    
        @Override
        protected void setUp(TestInfo testInfo) throws Exception {
            super.setUp(testInfo);
            FessProp.propMap.clear();
            FessConfig fessConfig = new FessConfig.SimpleImpl() {
                @Override
                public String getAppEncryptPropertyPattern() {
                    return ".*password|.*key";
                }
            };
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 22.8K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/app/web/admin/design/AdminDesignActionTest.java

            action = new AdminDesignAction();
            tempDir = Files.createTempDirectory("fess_test");
        }
    
        @Override
        protected void tearDown(TestInfo testInfo) throws Exception {
            // Clean up temp directory
            if (tempDir != null) {
                deleteRecursively(tempDir.toFile());
            }
            super.tearDown(testInfo);
        }
    
        private void deleteRecursively(File file) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/helper/CurlHelperTest.java

                return null;
            }
        }
    
        @Override
        protected void tearDown(TestInfo testInfo) throws Exception {
            // Clean up system properties
            System.clearProperty("fess.search_engine.http_address");
            System.clearProperty("fesen.http.url");
            super.tearDown(testInfo);
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java

         * @return HTML response with all elevate words
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse reset(final SearchForm form) {
            elevateWordPager.clear();
            return asHtml(path_AdminElevateword_AdminElevatewordJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 23 23:57:26 GMT 2026
    - 22.2K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java

                    }
                });
            } catch (final ExecutionException e) {
                throw (RuntimeException) e.getCause();
            }
        }
    
        /**
         * Closes all cached GroovyClassLoaders and clears the script cache.
         * Called by the DI container on shutdown.
         */
        @PreDestroy
        public void close() {
            scriptCache.invalidateAll();
            scriptCache.cleanUp();
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 11.9K bytes
    - Click Count (0)
Back to Top