- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 144 for deleting (0.15 seconds)
-
src/test/java/org/codelibs/fess/it/admin/SuggestTests.java
} @Test void testDeleteAllWords_ok() { // Test deleting all suggest words String response = checkDeleteMethod("all").asString(); assertEquals(Integer.valueOf(0), JsonPath.from(response).get("response.status")); } @Test void testDeleteDocumentWords_ok() { // Test deleting document-based suggest wordsCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 3.5K bytes - Click Count (0) -
src/main/java/org/codelibs/curl/io/ContentOutputStream.java
* It writes data to a temporary file once the data size exceeds a specified threshold. * * <p>This class ensures that the temporary file is deleted if it is not needed. * It uses a logger to log warnings if there are issues deleting the temporary file.</p> * * <p>Fields:</p> * <ul> * <li>{@code logger} - Logger instance for logging warnings.</li> * <li>{@code PREFIX} - Prefix for the temporary file name.</li>
Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Thu Nov 20 13:34:13 GMT 2025 - 3.9K bytes - Click Count (0) -
android/guava/src/com/google/common/io/FileBackedOutputStream.java
* * <p>Temporary files created by this stream may live in the local filesystem until either: * * <ul> * <li>{@link #reset} is called (removing the data in this stream and deleting the file), or... * <li>this stream (or, more precisely, its {@link #asByteSource} view) is garbage collected, * <strong>AND</strong> this stream was constructed with {@linkplain
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Mar 07 17:30:49 GMT 2026 - 12.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ThemeHelper.java
try (Stream<Path> walk = Files.walk(dir, FileVisitOption.FOLLOW_LINKS)) { walk.sorted(Comparator.reverseOrder()).forEach(f -> { if (logger.isDebugEnabled()) { logger.debug("Deleting: path={}", f); } try { Files.delete(f); } catch (final IOException e) { logger.warn("Failed to delete: path={}", f, e);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 7.1K bytes - Click Count (0) -
docs/features/caching.md
- ... Standard Events... - ResponseBodyEnd _(0 bytes)_ - **CacheHit** - ConnectionReleased - CallEnd ## Cache directory The cache directory must be exclusively owned by a single instance. Deleting the cache when it is no longer needed can be done. However this may delete the purpose of the cache which is designed to persist between app restarts. ```kotlin cache.delete() ``` ## Pruning the Cache
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Mar 15 09:01:42 GMT 2026 - 3.1K bytes - Click Count (1) -
internal/stmt_store/stmt_store.go
// This interface provides methods for creating new statements, retrieving all cache keys, // getting cached statements, setting cached statements, and deleting cached statements. type Store interface { // New creates a new Stmt object and caches it. // Parameters: // ctx: The context for the request, which can carry deadlines, cancellation signals, etc.Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sat Mar 21 11:35:55 GMT 2026 - 6.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
} finally { Files.deleteIfExists(noImageFile); } } @Test public void test_atomicDeleteIfExists_alreadyDeleted() throws Exception { // Test that deleting already deleted file doesn't throw Path tempFile = Files.createTempFile("already_deleted", ".tmp"); Files.delete(tempFile); assertFalse(Files.exists(tempFile));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 20.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java
logger.warn("Failed to check existing operation: operation={}", operationName, e); } return false; } /** * Releases the operation lock by deleting the operation document. * Safe to call multiple times; does nothing if the document is already deleted. * * @param operationName the operation name whose lock should be released. */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 33.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
* This class handles reading, parsing, and updating files that contain * a list of stopwords. Each line in the file represents a single stopword. * * The class provides methods for retrieving, adding, updating, and * deleting stopword items, as well as reloading the dictionary * from its source file. */ public class StopwordsFile extends DictionaryFile<StopwordsItem> { private static final String STOPWORDS = "stopwords";
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 13K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java
* stemmer override rules, where each rule maps an input word to an * output stem. The file format is expected to be `input => output`. * * The class provides methods for retrieving, adding, updating, and * deleting stemmer override items, as well as reloading the dictionary * from its source file. */ public class StemmerOverrideFile extends DictionaryFile<StemmerOverrideItem> {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 05:56:45 GMT 2025 - 14.2K bytes - Click Count (0)