- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 24 for committed (0.03 sec)
-
src/test/java/org/codelibs/fess/ds/DataStoreTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java
} public void test_updater_commit() { StopwordsItem newItem = new StopwordsItem(0, "committed"); StopwordsFile.StopwordsUpdater updater = stopwordsFile.new StopwordsUpdater(newItem); StopwordsItem result = updater.commit(); assertNotNull(result); assertEquals("committed", result.getInput()); updater.close(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0)