Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 160 for path_ (0.03 seconds)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

            }
    
            /**
             * Matches the given path.
             *
             * @param path The path to match.
             * @return True if the path matches, otherwise false.
             */
            public boolean match(final String path) {
                if (includedPaths == null) {
                    if (excludedPaths != null && excludedPaths.matcher(path).matches()) {
                        if (logger.isDebugEnabled()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 14.8K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

            if (StringUtil.isBlank(path)) {
                throw new IllegalArgumentException("File path cannot be blank.");
            }
            try {
                final Path filePath = Paths.get(path).normalize();
                final String normalizedPath = filePath.toString();
                if (normalizedPath.contains("..")) {
                    throw new IllegalArgumentException("Invalid file path: path=" + path);
                }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 13:57:12 GMT 2026
    - 10.9K bytes
    - Click Count (0)
Back to Top