- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getPluginJarFiles (0.16 sec)
-
src/main/java/org/codelibs/fess/helper/PluginHelper.java
*/ public Artifact[] getInstalledArtifacts(final ArtifactType artifactType) { if (artifactType == ArtifactType.UNKNOWN) { final File[] jarFiles = ResourceUtil.getPluginJarFiles((d, n) -> { for (final ArtifactType type : ArtifactType.values()) { if (n.startsWith(type.getId())) { return false; } }
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/ds/DataStoreFactoryTest.java
File[] jarFiles = new File[] { jarFile }; return super.loadDataStoreNameList(); } }; // Note: ResourceUtil.getPluginJarFiles is a static method, so we can't mock it directly // The test will verify the method works with the actual ResourceUtil implementation // Test with reflection to access protected method
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.8K bytes - Viewed (0)