Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 566 for Deleted (0.36 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt

        }
        return false
      }
    
      /**
       * Closes the cache and deletes all of its stored values. This will delete all files in the cache
       * directory including files that weren't created by the cache.
       */
      @Throws(IOException::class)
      fun delete() {
        close()
        fileSystem.deleteContents(directory)
      }
    
      /**
       * Deletes all stored values from the cache. In-flight edits will complete normally but their
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 23:28:25 UTC 2025
    - 34.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/PurgeThumbnailJobTest.java

        // Test execute with successful purge (single file deleted)
        public void test_execute_singleFileDeleted() {
            thumbnailManager.setPurgeCallCount(1);
    
            String result = purgeThumbnailJob.execute();
    
            assertEquals("Deleted 1 thumbnail files.", result);
        }
    
        // Test execute with successful purge (multiple files deleted)
        public void test_execute_multipleFilesDeleted() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  3. src/main/resources/fess_message.properties

    success.delete_doc_from_index = Started a process to delete documents from an index.
    success.crawling_info_delete_all = Deleted session data.
    success.start_crawl_process = Started a crawl process.
    success.upload_design_file = Updated {0}.
    success.update_design_jsp_file = Updated {0}.
    success.create_crawling_config_at_wizard = Created a crawling config {0}.
    success.failure_url_delete_all = Deleted failure URLs.
    success.delete_file = Deleted {0} 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)
  4. src/main/resources/fess_message_en.properties

    success.delete_doc_from_index = Started a process to delete documents from an index.
    success.crawling_info_delete_all = Deleted session data.
    success.start_crawl_process = Started a crawl process.
    success.upload_design_file = Updated {0}.
    success.update_design_jsp_file = Updated {0}.
    success.create_crawling_config_at_wizard = Created a crawling config {0}.
    success.failure_url_delete_all = Deleted failure URLs.
    success.delete_file = Deleted {0} 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)
  5. android/guava/src/com/google/common/io/RecursiveDeleteOption.java

       *
       * <p><b>Warning:</b> On a file system that supports symbolic links, it is possible for an
       * insecure recursive delete to delete files and directories that are <i>outside</i> the directory
       * being deleted. This can happen if, after checking that a file is a directory (and not a
       * symbolic link), that directory is deleted and replaced by a symbolic link to an outside
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

        }
    
        /**
         * Deletes all documents associated with the specified session ID from the given index.
         *
         * @param searchEngineClient the search engine client to use for deletion
         * @param index the index name to delete documents from
         * @param sessionId the session ID to delete documents for
         * @return the number of documents that were deleted
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/IoTestCase.java

      @CanIgnoreReturnValue
      private boolean delete(File file) {
        if (file.isDirectory()) {
          File[] files = file.listFiles();
          if (files != null) {
            for (File f : files) {
              if (!delete(f)) {
                return false;
              }
            }
          }
        }
    
        if (!file.delete()) {
          logger.log(Level.WARNING, "couldn't delete file: {0}", new Object[] {file});
          return false;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

                reload(updater);
            }
        }
    
        /**
         * Deletes a character mapping item from the dictionary file.
         *
         * @param item the character mapping item to delete
         */
        @Override
        public synchronized void delete(final CharMappingItem item) {
            final CharMappingItem mappingItem = item;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

            }
    
            final List<Map<String, Object>> afterList = readJobLog(NAME_PREFIX);
            assertEquals(0, afterList.size()); // check if logs are successfully deleted
        }
    
        /**
         * Test for CrawlingInfo
         * */
        private void testReadCrawlingInfo() {
            final List<Map<String, Object>> logList = readCrawlingInfo(webConfigId);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java

         * @return true if updated, false otherwise
         */
        public boolean isUpdated() {
            return newInput != null;
        }
    
        /**
         * Checks if this item has been deleted.
         * @return true if deleted, false otherwise
         */
        public boolean isDeleted() {
            return isUpdated() && newInput.length() == 0;
        }
    
        @Override
        public int hashCode() {
            final int prime = 31;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
Back to top