- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for basePath (0.05 sec)
-
src/main/java/org/codelibs/fess/job/ExecJob.java
* @param buf the StringBuilder to append to * @param libDir the directory containing JAR files * @param basePath the base path to prepend to JAR file names */ protected void appendJarFile(final String cpSeparator, final StringBuilder buf, final File libDir, final String basePath) { final File[] jarFiles = libDir.listFiles((FilenameFilter) (dir, name) -> name.toLowerCase().endsWith(".jar"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/api/WebApiManagerTest.java
} // Test implementation classes private static class TestWebApiManager implements WebApiManager { private final String basePath; private boolean processCalled = false; public TestWebApiManager(String basePath) { this.basePath = basePath; } @Override public boolean matches(HttpServletRequest request) { if (request == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
/** * Fess configuration for settings. */ protected final FessConfig fessConfig; FilePurgeVisitor(final Path basePath, final String imageExtention, final long expiry) { this.basePath = basePath; this.imageExtention = imageExtention; this.expiry = expiry; fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java
verifyPathPattern("AdminWebauth", "/admin/webauth/"); verifyPathPattern("AdminWebconfig", "/admin/webconfig/"); } private void verifyPathPattern(String prefix, String basePath) throws Exception { // Helper method to verify common pattern String baseFieldName = "path_" + prefix + "_" + prefix + "Jsp"; String detailsFieldName = "path_" + prefix + "_" + prefix + "DetailsJsp";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
super.deleteTempDir(ownTmpDir); } public void testAppendJarFile(String cpSeparator, StringBuilder buf, File libDir, String basePath) { super.appendJarFile(cpSeparator, buf, libDir, basePath); } public TimeoutTask testCreateTimeoutTask() { return super.createTimeoutTask(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
* * @param basePath the base path for resources * @param type the search engine type * @param path the relative path to the resource * @return the full resource path */ protected String getResourcePath(final String basePath, final String type, final String path) { final String target = basePath + "/_" + type + path;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0)