- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 566 for Deleted (0.33 sec)
-
src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java
Files.createFile(existingDir.resolve("test.txt")); assertTrue(Files.exists(existingDir)); themeHelper.closeQuietly(existingDir); // Directory should be deleted assertFalse(Files.exists(existingDir)); } public void test_closeQuietly_nestedDirectory() throws IOException { Path nestedDir = tempDir.resolve("parent").resolve("child");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.5K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/BloomFilterStrategies.java
* of the Bloom filters that use them, thus they must be preserved as is (no updates allowed, only * introduction of new versions). * * <p>Important: the order of the constants cannot change, and they cannot be deleted - we depend on * their ordinal for BloomFilter serialization. * * @author Dimitris Andreou * @author Kurt Alfred Kluever */ enum BloomFilterStrategies implements BloomFilter.Strategy { /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java
try { dictionaryManager.store(StemmerOverrideFile.this, newFile); } finally { newFile.delete(); } } else { newFile.delete(); } } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.7K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 22.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java
} /** * Deletes documents matching the given query from the search index. * * @param body the search parameters defining which documents to delete * @return JSON response containing the count of deleted documents */ // DELETE /api/admin/searchlist/query @Execute public JsonResponse<ApiResult> delete$query(final SearchBody body) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.2K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/io/ContentCacheTest.java
Files.write(tempFile.toPath(), "Hello, World!".getBytes()); ContentCache cache = new ContentCache(tempFile); cache.close(); // This deletes the file try { cache.getInputStream(); fail("Expected IOException for deleted file"); } catch (IOException e) { // Expected - file no longer exists } } @Test
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/helper/WebFsIndexHelper.java
urlFilterService.delete(sid); } catch (final Exception e) { logger.warn("Failed to delete UrlFilter for {}", sid, e); } try { // clear queue urlQueueService.clearCache(); urlQueueService.delete(sid); } catch (final Exception e) { logger.warn("Failed to delete UrlQueue for {}", sid, e); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/resources/fess_message_es.properties
# - - - - - - - - - -/ errors.login.failure = Error de inicio de sesión. errors.app.illegal.transition = Transición ilegal. Por favor, inténtelo de nuevo. errors.app.db.already.deleted = Es posible que ya haya sido eliminado por otro proceso. Por favor, inténtelo de nuevo. errors.app.db.already.updated = Es posible que ya haya sido actualizado por otro proceso. Por favor, inténtelo de nuevo.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractBehavior.java
import org.opensearch.action.bulk.BulkItemResponse; import org.opensearch.action.bulk.BulkRequestBuilder; import org.opensearch.action.bulk.BulkResponse; import org.opensearch.action.delete.DeleteRequestBuilder; import org.opensearch.action.delete.DeleteResponse; import org.opensearch.action.index.IndexRequestBuilder; import org.opensearch.action.index.IndexResponse; import org.opensearch.action.search.SearchRequestBuilder;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CompactHashSet.java
Object table = requireTable(); int[] entries = requireEntries(); @Nullable Object[] elements = requireElements(); int srcIndex = size() - 1; if (dstIndex < srcIndex) { // move last entry to deleted spot Object object = elements[srcIndex]; elements[dstIndex] = object; elements[srcIndex] = null; // move the last entry to the removed spot, just like we moved the element
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 23.9K bytes - Viewed (0)