Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for basePath (0.04 sec)

  1. src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java

        }
    
        public void test_getVirtualHostBasePath() {
            String basePath = virtualHostHelper.getVirtualHostBasePath("site1", new HtmlNext("/test"));
            assertEquals("/site1", basePath);
    
            basePath = virtualHostHelper.getVirtualHostBasePath("", new HtmlNext("/test"));
            assertEquals("", basePath);
    
            basePath = virtualHostHelper.getVirtualHostBasePath(null, new HtmlNext("/test"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/ExecJob.java

         * @param buf the StringBuilder to append to
         * @param libDir the directory containing JAR files
         * @param basePath the base path to prepend to JAR file names
         */
        protected void appendJarFile(final String cpSeparator, final StringBuilder buf, final File libDir, final String basePath) {
            final File[] jarFiles = libDir.listFiles((FilenameFilter) (dir, name) -> name.toLowerCase().endsWith(".jar"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/api/WebApiManagerTest.java

        }
    
        // Test implementation classes
    
        private static class TestWebApiManager implements WebApiManager {
            private final String basePath;
            private boolean processCalled = false;
    
            public TestWebApiManager(String basePath) {
                this.basePath = basePath;
            }
    
            @Override
            public boolean matches(HttpServletRequest request) {
                if (request == null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            /**
             * Fess configuration for settings.
             */
            protected final FessConfig fessConfig;
    
            FilePurgeVisitor(final Path basePath, final String imageExtention, final long expiry) {
                this.basePath = basePath;
                this.imageExtention = imageExtention;
                this.expiry = expiry;
                fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

            verifyPathPattern("AdminWebauth", "/admin/webauth/");
            verifyPathPattern("AdminWebconfig", "/admin/webconfig/");
        }
    
        private void verifyPathPattern(String prefix, String basePath) throws Exception {
            // Helper method to verify common pattern
            String baseFieldName = "path_" + prefix + "_" + prefix + "Jsp";
            String detailsFieldName = "path_" + prefix + "_" + prefix + "DetailsJsp";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/job/ExecJobTest.java

                super.deleteTempDir(ownTmpDir);
            }
    
            public void testAppendJarFile(String cpSeparator, StringBuilder buf, File libDir, String basePath) {
                super.appendJarFile(cpSeparator, buf, libDir, basePath);
            }
    
            public TimeoutTask testCreateTimeoutTask() {
                return super.createTimeoutTask();
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
Back to top