- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for jarFile (0.03 sec)
-
android/guava-tests/test/com/google/common/reflect/ClassPathTest.java
File jarFile = File.createTempFile("with_circular_class_path", ".jar"); try { writeSelfReferencingJarFile(jarFile, "test.txt"); assertThat( new ClassPath.LocationInfo(jarFile, ClassPathTest.class.getClassLoader()) .scanResources()) .hasSize(1); } finally { jarFile.delete(); } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 20:58:01 UTC 2025 - 23K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
if (form.jarFile == null) { throwValidationError(messages -> messages.addErrorsPluginFileIsNotFound(GLOBAL, form.id), this::asListHtml); } if (!form.jarFile.getFileName().endsWith(".jar")) { throwValidationError(messages -> messages.addErrorsFileIsNotSupported(GLOBAL, form.jarFile.getFileName()),
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java
// Test loadDataStoreNameList with valid XML public void test_loadDataStoreNameList_validXml() throws Exception { // Create test JAR with valid XML final File jarFile = new File(tempDir, "test-datastore.jar"); createTestJarWithXml(jarFile, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<components>\n" + " <component class=\"org.codelibs.fess.ds.impl.CsvDataStore\"/>\n"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
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")); if (jarFiles != null) { for (final File file : jarFiles) { buf.append(cpSeparator); buf.append(basePath); buf.append(file.getName());
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/main/java/org/codelibs/fess/helper/PluginHelper.java
final List<Artifact> list = new ArrayList<>(jarFiles.length); for (final File file : jarFiles) { list.add(getArtifactFromFileName(artifactType, file.getName())); } list.sort(Comparator.comparing(Artifact::getName)); return list.toArray(new Artifact[list.size()]); } final File[] jarFiles = ResourceUtil.getPluginJarFiles(artifactType.getId());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0)