- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for fileUrl (0.05 sec)
-
src/main/java/org/codelibs/core/net/URLUtil.java
* * @param fileUrl * The URL of the Jar file. Must not be {@literal null}. * @return The {@link File} of the Jar file. */ public static File toFile(final URL fileUrl) { assertArgumentNotNull("fileUrl", fileUrl); try { final String path = URLDecoder.decode(fileUrl.getPath(), "UTF-8");
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PermissionHelper.java
} catch (final IOException e) { throw new CrawlingAccessException("Failed to access permission info", e); } if (logger.isDebugEnabled()) { logger.debug("fileUrl:{} roleType:{}", responseData.getUrl(), roleTypeList); } } return roleTypeList; } /** * Extracts role type information from FTP (File Transfer Protocol) response data.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
webConfig.setUpdatedTime(now); } final String fileUrls = urlList.stream() .filter(s -> Arrays.stream(fileProtocols).anyMatch(p -> s.startsWith(p))) .collect(Collectors.joining("\n")); if (StringUtil.isNotBlank(fileUrls)) { fileConfig = new FileConfig(); fileConfig.setName("Default");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0)