Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 447 for PATH (0.01 sec)

  1. src/main/java/org/codelibs/fess/app/service/PathMappingService.java

        }
    
        /**
         * Gets a path mapping by ID.
         *
         * @param id the path mapping ID
         * @return the path mapping
         */
        public OptionalEntity<PathMapping> getPathMapping(final String id) {
            return pathMappingBhv.selectByPK(id);
        }
    
        /**
         * Stores a path mapping.
         *
         * @param pathMapping the path mapping to store
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java

                deleteDirectory(tempDir);
            }
            super.tearDown();
        }
    
        private void deleteDirectory(Path dir) throws IOException {
            Files.walk(dir).sorted((a, b) -> b.compareTo(a)).forEach(path -> {
                try {
                    Files.delete(path);
                } catch (IOException e) {
                    // Ignore
                }
            });
        }
    
        public void test_getThemeName() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

                    || path.startsWith("ftp:") || path.startsWith("storage:")) {
                return path;
            }
    
            if (path.startsWith("www.")) {
                return "http://" + path;
            }
    
            if (path.startsWith("//")) {
                return "file://" + path;
            }
            if (path.startsWith("/")) {
                return "file:" + path;
            }
            if (!path.startsWith("file:")) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java

        /**
         * Displays the main path mapping administration page.
         *
         * @param form the search form containing search criteria
         * @return HTML response for the path mapping list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index(final SearchForm form) {
            return asListHtml();
        }
    
        /**
         * Displays the path mapping list with pagination support.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/pathmap/ApiAdminPathmapAction.java

    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.JsonResponse;
    
    import jakarta.annotation.Resource;
    
    /**
     * API action for admin path mapping management.
     * Provides RESTful API endpoints for managing path mapping settings in the Fess search engine.
     * Path mappings define URL path transformations and redirections for crawling and indexing.
     */
    public class ApiAdminPathmapAction extends FessApiAdminAction {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/FessBoot.java

        private static final String FESS_VAR_PATH = "fess.var.path";
    
        /** System property key for Fess web application path */
        private static final String FESS_WEBAPP_PATH = "fess.webapp.path";
    
        /** System property key for Java temporary directory */
        private static final String JAVA_IO_TMPDIR = "java.io.tmpdir";
    
        /** System property key for Tomcat configuration path */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/PathMappingHelper.java

        protected static final String GROOVY_MATCHER = "groovy:";
    
        /** Map of path mappings by process type. */
        protected final Map<String, List<PathMapping>> pathMappingMap = new HashMap<>();
    
        /** Cached list of path mappings. */
        protected volatile List<PathMapping> cachedPathMappingList = null;
    
        /**
         * Initializes the path mapping helper.
         */
        @PostConstruct
        public void init() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/io/ResourceHandler.java

     *
     * @author taedium
     */
    public interface ResourceHandler {
    
        /**
         * Processes a resource.
         *
         * @param path the path
         * @param is the {@link InputStream} to read the resource
         */
        void processResource(String path, InputStream is);
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 997 bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/CookieTest.kt

          parse("http://example.com/foo/bar".toHttpUrl(), "a=b; path=quux")!!.path,
        ).isEqualTo("/foo")
        assertThat(parse("http://example.com/foo/bar".toHttpUrl(), "a=b; path=")!!.path)
          .isEqualTo("/foo")
      }
    
      @Test fun pathAttributeDoesntNeedToMatch() {
        assertThat(parse("http://example.com/".toHttpUrl(), "a=b; path=/quux")!!.path)
          .isEqualTo("/quux")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java

            // Test task creation with null document map
            String path = "/path/to/document.pdf";
    
            Tuple3<String, String, String> task = thumbnailGenerator.createTask(path, null);
            assertNull(task);
        }
    
        public void test_createTask_withEmptyDocMap() {
            // Test task creation with empty document map
            String path = "/path/to/document.pdf";
            Map<String, Object> docMap = new HashMap<>();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.4K bytes
    - Viewed (0)
Back to top