Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 320 for path1 (0.02 seconds)

  1. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

        @Test
        public void test_FilePurgeVisitor_getDocId() throws IOException {
            // Test the getDocId logic without creating actual FilePurgeVisitor
            // The logic converts path to doc ID by removing path separators
            String pathStr = "_1/_2/docid123";
            String expectedDocId = "_1_2docid123";
            String actualDocId = pathStr.replace("/", "").replace("\\", "");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 20.4K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

                        String path = htmlNext.getRoutingPath();
                        assertFalse("Duplicate path found: " + path + " in field " + field.getName(), paths.contains(path));
                        paths.add(path);
                    }
                }
            }
            assertTrue("Should have unique paths", paths.size() > 0);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.1K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/job/IndexExportJob.java

                    path = path + formatter.getFileExtension();
                }
    
                if (path.startsWith("/")) {
                    path = path.substring(1);
                }
    
                final String[] components = (host + "/" + path).split("/");
                final StringBuilder sanitized = new StringBuilder();
                for (int i = 0; i < components.length; i++) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                return pathLC;
            }
    
            final String pathL = getLocalizedPagePath(page, lang, null);
            final String pL = pageCacheMap.get(pathL);
            if (pL != null) {
                return pL;
            }
            if (existsPage(pathL)) {
                pageCacheMap.put(pathLC, pathL);
                return pathL;
            }
    
            final String path = getLocalizedPagePath(page, null, null);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 52.6K bytes
    - Click Count (0)
  5. pom.xml

    						<data>
    							<type>files</type>
    							<paths>
    								<path>${project.basedir}/src/main/assemblies/files/fess</path>
    								<path>${project.basedir}/src/main/assemblies/files/fess.in.sh</path>
    								<path>${project.basedir}/src/main/assemblies/files/generate-thumbnail</path>
    								<path>${project.basedir}/plugin.xml</path>
    							</paths>
    							<dst>${packaging.fess.bin.dir}</dst>
    							<mapper>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 49.9K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/app/web/base/FessAdminActionTest.java

            final FessAdminAction action = createAction();
            // Use a path with a distinct name to test non-matching paths
            final Path baseDir = Files.createDirectories(tempDir.resolve("vardata"));
            System.setProperty("fess.var.path", baseDir.toString());
    
            // A directory that does NOT share the prefix
            final Path otherDir = Files.createDirectories(tempDir.resolve("other"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/validation/UriTypeValidator.java

            final String[] paths = value.split("[\r\n]");
            for (final String path : paths) {
                if (StringUtil.isNotBlank(path) && !path.trim().startsWith("#")) {
                    boolean flag = false;
                    for (final String protocol : protocols) {
                        if (path.trim().startsWith(protocol.trim())) {
                            flag = true;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Nov 23 12:34:02 GMT 2025
    - 3.1K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/util/ResourceUtil.java

         */
        public static Path getDictionaryPath(final String... names) {
            return getPath("WEB-INF/", "dict", names);
        }
    
        /**
         * Gets the path to thumbnail files directory.
         *
         * @param names the path components to append to the thumbnails directory
         * @return the Path object pointing to the thumbnails directory
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 14.1K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/app/web/admin/design/AdminDesignActionTest.java

                    Tuple3<String, String, String>[] result = new Tuple3[paths.length];
                    for (int i = 0; i < paths.length; i++) {
                        // Remove leading slash for the tuple value
                        String path = paths[i].startsWith("/") ? paths[i].substring(1) : paths[i];
                        result[i] = new Tuple3<>("Host", "host" + i + ".example.com", path);
                    }
                    return result;
                }
    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)
  10. src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java

            Files.createDirectories(Paths.get("target", "fess", "css"));
            Files.createDirectories(Paths.get("target", "fess", "js"));
        }
    
        @Override
        protected void tearDown(TestInfo testInfo) throws Exception {
            if (tempDir != null && Files.exists(tempDir)) {
                deleteDirectory(tempDir);
            }
            super.tearDown(testInfo);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 14.7K bytes
    - Click Count (0)
Back to Top