- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for WEBAPP (0.45 sec)
-
src/test/java/org/codelibs/fess/helper/PluginHelperTest.java
Artifact scriptArtifact = new Artifact("fess-script-test", "1.0.0"); assertEquals(ArtifactType.SCRIPT, scriptArtifact.getType()); Artifact webappArtifact = new Artifact("fess-webapp-test", "1.0.0"); assertEquals(ArtifactType.WEBAPP, webappArtifact.getType()); Artifact thumbnailArtifact = new Artifact("fess-thumbnail-test", "1.0.0"); assertEquals(ArtifactType.THUMBNAIL, thumbnailArtifact.getType());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/FessBoot.java
final String varPath = System.getProperty(FESS_VAR_PATH); if (varPath != null) { tomcatBoot.atBaseDir(new File(varPath, "webapp").getAbsolutePath()); } else if (tempPath != null) { tomcatBoot.atBaseDir(new File(tempPath, "webapp").getAbsolutePath()); } final String tomcatConfigPath = getTomcatConfigPath(); if (tomcatConfigPath != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
/** Ingest processor plugins */ INGEST("fess-ingest"), // /** Script plugins */ SCRIPT("fess-script"), // /** Web application plugins */ WEBAPP("fess-webapp"), // /** Thumbnail generator plugins */ THUMBNAIL("fess-thumbnail"), // /** Crawler plugins */ CRAWLER("fess-crawler"), // /** Unknown/generic JAR files */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java
@Override public String getRealPath(String path) { if (tempDir != null) { return new File(tempDir, path).getAbsolutePath(); } return new File("/test/webapp", path).getAbsolutePath(); } // Other methods return null or default values @Override public Object getAttribute(String name) { return null; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PythonJobTest.java
@Override public String getOutput() { return output; } } private static class TestServletContext implements ServletContext { File parentFile = new File("/test/webapp"); @Override public String getRealPath(String path) { if (path != null && path.contains("WEB-INF")) { return new File(parentFile, "WEB-INF").getAbsolutePath();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 22.1K bytes - Viewed (0)