Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 258 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/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)
  9. 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)
  10. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/runtimes/CheckTargetRuntimes.kt

            Gson().let { gson ->
                val paths = projectPaths.get()
                val detailsFiles = targetRuntimeDetailsFiles.get()
                val buildFiles = projectBuildFiles.get()
                require(paths.size == detailsFiles.size)
                require(paths.size == buildFiles.size)
    
                for (i in paths.indices) {
                    val path = paths[i]
                    val detailsFile = detailsFiles[i]
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:40:18 GMT 2026
    - 13.8K bytes
    - Click Count (0)
Back to Top