Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for basePath (0.03 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. samples/static-server/src/main/java/okhttp3/sample/SampleServer.java

        }
      }
    
      private MockResponse directoryToResponse(String basePath, File directory) {
        if (!basePath.endsWith("/")) basePath += "/";
    
        StringBuilder response = new StringBuilder();
        response.append(String.format("<html><head><title>%s</title></head><body>", basePath));
        response.append(String.format("<h1>%s</h1>", basePath));
        for (String file : directory.list()) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jan 02 02:50:44 UTC 2019
    - 4.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java

         */
        public HtmlNext getVirtualHostPath(final HtmlNext page) {
            return processVirtualHost(s -> {
                final String basePath = getVirtualHostBasePath(s, page);
                return new HtmlNext(basePath + page.getRoutingPath());
            }, page);
        }
    
        /**
         * Gets the base path for virtual host based on the virtual host key and page.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  5. 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)
  6. src/main/resources/log4j2.xml

    				<TimeBasedTriggeringPolicy />
    				<SizeBasedTriggeringPolicy size="100 MB" />
    			</Policies>
    			<DefaultRolloverStrategy fileIndex="max" min="1"
    				max="${backup.max.history}" compressionLevel="9">
    				<Delete basePath="${log.file.basedir}">
    					<IfFileName glob="${domain.name}*.log.gz" />
    					<IfLastModified age="P${backup.max.age}D" />
    				</Delete>
    			</DefaultRolloverStrategy>
    		</RollingFile>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Feb 20 13:17:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. dbflute_fess/dfprop/esfluteMap.dfprop

    map:{
        # base package of generated classes
        ; basePackage = org.codelibs.fess.opensearch
    
        # base path to JSON resource, URL or relative path
        ; basePath = ../src/main/config/es
    
        # settings for indexes
        ; indexMap = map:{
            # Index: fess_user
            ; fess_user.group = map:{
                ; package = user
                ; esclientDiFile = esclient.xml
                ; esfluteDiFile = esflute_user.xml
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Nov 06 13:45:02 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. 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