- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 81 for omitted (0.03 sec)
-
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) -
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) -
docs/de/docs/python-types.md
Wir verwenden Doppelpunkte (`:`), nicht Gleichheitszeichen (`=`). Und das Hinzufügen von Typhinweisen ändert normalerweise nichts an dem, was ohne sie passieren würde. Aber jetzt stellen Sie sich vor, Sie sind wieder mitten in der Erstellung dieser Funktion, aber mit Typhinweisen. An derselben Stelle versuchen Sie, die Autovervollständigung mit „Strg+Leertaste“ auszulösen, und Sie sehen: <img src="/img/python-types/image02.png">
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 18.9K bytes - Viewed (1) -
docs/contribute/code_of_conduct.md
Open Source Code of Conduct =========================== At Square, we are committed to contributing to the open source community and simplifying the process of releasing and managing open source software. We’ve seen incredible support and enthusiasm from thousands of people who have already contributed to our projects — and we want to ensure our community continues to be truly open for everyone.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 5.1K 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/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) -
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/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/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)