- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for expandPath (0.04 sec)
-
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
/** * Expands a file path using the file path mapping. * @param value The original path value. * @return The expanded path or the original value if no mapping exists. */ protected String expandPath(final String value) { if (value != null && filePathMap.containsKey(value)) { return filePathMap.get(value); } return value; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
assertTrue("Long commands should be settable", true); } // Test path expansion logic public void test_path_expansion() throws Exception { // Test the expandPath functionality indirectly through variable replacement final String testCommand = "convert ${url} -resize 100x100 ${outputFile}"; final String tempPath = "/tmp/source.pdf";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Jul 18 14:34:06 UTC 2025 - 14.7K bytes - Viewed (0)