- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 909 for FILE (0.03 sec)
-
src/main/resources/fess_message_it.properties
errors.invalid_design_jsp_file_name = Nome file JSP non valido. errors.design_jsp_file_does_not_exist = Il file JSP non esiste. errors.design_file_name_is_not_found = Il nome del file non è stato specificato. errors.failed_to_write_design_image_file = Impossibile caricare il file immagine. errors.failed_to_update_jsp_file = Impossibile aggiornare il file JSP. errors.design_file_name_is_invalid = Il nome del file non è valido.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceUtil.java
} /** * Returns the file of the resource. * * @param url * The resource URL. Must not be {@literal null}. * @return The file. */ public static File getFile(final URL url) { assertArgumentNotNull("url", url); final File file = new File(getFileName(url)); if (file != null && file.exists()) { return file; }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 14.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.5K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/io/ContentCacheTest.java
} } @Test public void testFileBasedCacheCloseNonExistentFile() { tempFile = new File(Curl.tmpDir, "non-existent-file.tmp"); assertFalse(tempFile.exists()); ContentCache cache = new ContentCache(tempFile); // Should throw IOException when file doesn't exist try { cache.close();
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java
/** Service for file authentication operations. */ @Resource private FileAuthenticationService fileAuthenticationService; /** Pager for file authentication list pagination. */ @Resource private FileAuthPager fileAuthenticationPager; /** Service for file configuration operations. */ @Resource protected FileConfigService fileConfigService;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.2K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-UtilCommon.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java
.map(file -> asStream(new File(file.getPath()).getName()).contentTypeOctetStream().stream(out -> { file.writeOut(out); })) .orElseGet(() -> { throwValidationError(messages -> messages.addErrorsFailedToDownloadStemmeroverrideFile(GLOBAL), () -> downloadpage(form.dictId)); return null; });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java
return Integer.valueOf(-1); } }; File file = File.createTempFile("test", ".properties"); file.deleteOnExit(); FileUtil.writeBytes(file.getAbsolutePath(), "ldap.security.principal=******@****.***".getBytes("UTF-8")); DynamicProperties systemProps = new DynamicProperties(file); // Get existing component and update it instead of registering new one
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java
body.dictId = dictId; validateApi(body, messages -> {}); return stemmerOverrideService.getStemmerOverrideFile(body.dictId) .map(file -> asStream(new File(file.getPath()).getName()).contentTypeOctetStream().stream(out -> { file.writeOut(out); })) .orElseGet(() -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ResourceUtilTest.java
try { Path path = ResourceUtil.getConfOrClassesPath("dir", "file.conf"); fail("Should throw ResourceNotFoundRuntimeException for non-existent file"); } catch (org.codelibs.core.exception.ResourceNotFoundRuntimeException e) { // Expected behavior assertTrue(e.getMessage().contains("dir") && e.getMessage().contains("file.conf")); } } public void test_getClassesPath() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.5K bytes - Viewed (0)