Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for committed (0.65 sec)

  1. src/test/java/org/codelibs/fess/ds/DataStoreTest.java

                return executeTime.get();
            }
    
            @Override
            public void commit() {
                committed.set(true);
            }
    
            public boolean isCommitted() {
                return committed.get();
            }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

         * and atomic updates to ensure data consistency during modifications.
         */
        protected class MappingUpdater implements Closeable {
    
            /** Flag indicating whether changes should be committed to the file. */
            protected boolean isCommit = false;
    
            /** Temporary file used for writing updates before committing. */
            protected File newFile;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

             */
            public JvmMemoryHeapObj() {
                // Default constructor
            }
    
            /** Used heap memory in bytes */
            public long used;
            /** Committed heap memory in bytes */
            public long committed;
            /** Maximum heap memory in bytes */
            public long max;
            /** Heap memory usage percentage */
            public short percent;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt

              entry.zombie = true // We can't delete it until the current edit completes.
            }
          }
        }
    
        /**
         * Returns an unbuffered input stream to read the last committed value, or null if no value has
         * been committed.
         */
        fun newSource(index: Int): Source? {
          synchronized(this@DiskLruCache) {
            check(!done)
            if (!entry.readable || entry.currentEditor != this || entry.zombie) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 23:28:25 UTC 2025
    - 34.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

            }
    
            /**
             * Commits the changes to the dictionary file.
             * If there is a pending new item, it is written to the file.
             *
             * @return The committed item, or null if no item was committed.
             * @throws DictionaryException if an I/O error occurs.
             */
            public SynonymItem commit() {
                isCommit = true;
                if (item != null && item.isUpdated()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

        }
    
        /**
         * An updater for Kuromoji files.
         */
        protected class KuromojiUpdater implements Closeable {
    
            /** True if the changes have been committed. */
            protected boolean isCommit = false;
    
            /** The new file. */
            protected File newFile;
    
            /** The writer for the new file. */
            protected Writer writer;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

            }
    
            /**
             * Commits the changes to the dictionary file.
             * If there is a pending new item, it is written to the file.
             *
             * @return The committed item, or null if no item was committed.
             * @throws DictionaryException if an I/O error occurs.
             */
            public StopwordsItem commit() {
                isCommit = true;
                if (item != null && item.isUpdated()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

            }
    
            /**
             * Commits the changes to the dictionary file.
             * If there is a pending new item, it is written to the file.
             *
             * @return The committed item, or null if no item was committed.
             * @throws DictionaryException if an I/O error occurs.
             */
            public StemmerOverrideItem commit() {
                isCommit = true;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java

            final Mem mem = jvmStats.getMem();
            buf.append("\"memory\":{");
            buf.append("\"heap\":{");
            append(buf, "used", () -> mem.getHeapUsed().getBytes()).append(',');
            append(buf, "committed", () -> mem.getHeapCommitted().getBytes()).append(',');
            append(buf, "max", () -> mem.getHeapMax().getBytes()).append(',');
            append(buf, "percent", () -> mem.getHeapUsedPercent());
            buf.append("},");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

         * This class handles the writing and committing of changes to the dictionary file.
         */
        protected class ProtwordsUpdater implements Closeable {
    
            /** Flag indicating if the update should be committed */
            protected boolean isCommit = false;
    
            /** Temporary file for storing updates */
            protected File newFile;
    
            /** Writer for writing to the temporary file */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.5K bytes
    - Viewed (0)
Back to top