- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 363 for coexist (0.04 sec)
-
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
* @param file the actual file containing the dictionary content * @throws DictionaryException if the file was updated by another process, * if the file doesn't exist, or if there's an error during storage */ public void store(final DictionaryFile<? extends DictionaryItem> dictFile, final File file) { getDictionaryFile(dictFile.getId()).ifPresent(currentFile -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorSecurityTest.java
passwordField.setAccessible(true); // Verify password exists before wipe char[] passwordBefore = (char[]) passwordField.get(authenticator); assertNotNull(passwordBefore, "Password should exist before wipe"); assertArrayEquals(testPassword.toCharArray(), passwordBefore, "Password should match before wipe"); // Wipe the password authenticator.secureWipePassword();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseManagerTest.java
directoryLeaseManager.requestDirectoryLease(directoryPath, DirectoryLeaseState.DIRECTORY_READ_HANDLE, DirectoryCacheScope.IMMEDIATE_CHILDREN); // Now cache entry should exist DirectoryCacheEntry entry = directoryLeaseManager.getCacheEntry(directoryPath); assertNotNull(entry); assertEquals(directoryPath, entry.getDirectoryPath()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 15.9K bytes - Viewed (0) -
src/main/resources/fess_message.properties
errors.could_not_find_log_file = Could not find {0}. errors.failed_to_start_crawl_process = Failed to start a crawl process. errors.invalid_design_jsp_file_name = Invalid JSP file. errors.design_jsp_file_does_not_exist = The JSP file does not exist. errors.design_file_name_is_not_found = The file name is not specified. errors.failed_to_write_design_image_file = Failed to upload an image file. errors.failed_to_update_jsp_file = Failed to update the JSP file.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/resources/fess_message_en.properties
errors.could_not_find_log_file = Could not find {0}. errors.failed_to_start_crawl_process = Failed to start a crawl process. errors.invalid_design_jsp_file_name = Invalid JSP file. errors.design_jsp_file_does_not_exist = The JSP file does not exist. errors.design_file_name_is_not_found = The file name is not specified. errors.failed_to_write_design_image_file = Failed to upload an image file. errors.failed_to_update_jsp_file = Failed to update the JSP file.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/jcifs/SmbResource.java
*/ CloseableIterator<SmbResource> children() throws CIFSException; /** * Fetch children matching pattern, server-side filtering * * <p> * The wildcard expression may consist of two special meta * characters in addition to the normal filename characters. The '*' * character matches any number of characters in part of a name. If
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 28K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/RequestHeader.java
try { webConfig = webConfigService.getWebConfig(getWebConfigId()).get(); } catch (final Exception e) { logger.warn("Web Config {} does not exist.", getWebConfigId(), e); } } return webConfig; } @Override public String toString() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlExceptionTest.java
try { CurlException.class.getDeclaredField("serialVersionUID"); hasSerialVersionUID = true; } catch (NoSuchFieldException e) { // Field doesn't exist } assertTrue("CurlException should have serialVersionUID field", hasSerialVersionUID); } @Test public void testExceptionChaining() {
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 4.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/FilesFileTraverserTest.java
assertThat(Files.fileTraverser().breadthFirst(rootDir)).containsExactly(rootDir); } public void testFileTraverser_nonExistingFile() throws Exception { File file = new File(rootDir, "file-that-doesnt-exist"); assertThat(Files.fileTraverser().breadthFirst(file)).containsExactly(file); } public void testFileTraverser_file() throws Exception { File file = newFile("some-file");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 3.4K bytes - Viewed (0) -
src/test/java/jcifs/NetbiosAddressTest.java
} @Test void testConstantsAreImmutable() { // Ensure constants are properly defined as final // This test just verifies the constants exist and are accessible String anyHosts = NbtAddress.ANY_HOSTS_NAME; String masterBrowser = NbtAddress.MASTER_BROWSER_NAME; String smbServer = NbtAddress.SMBSERVER_NAME; assertNotNull(anyHosts);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.9K bytes - Viewed (0)