- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 218 for exited (0.05 sec)
-
src/main/java/jcifs/util/InputValidator.java
if (credits < 0) { throw new IllegalArgumentException("Credits cannot be negative: " + credits); } if (credits > MAX_CREDITS) { throw new IllegalArgumentException("Credits exceed maximum (" + MAX_CREDITS + "): " + credits); } } /** * Validates a string is not null or empty * * @param value the string to validate
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 13.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HpackTest.kt
assertThat(hpackReader!!.headerCount).isEqualTo(0) assertThat(hpackReader!!.getAndResetHeaderList()).isEqualTo( headerEntries("custom-key", "custom-header"), ) } /** Oldest entries are evicted to support newer ones. */ @Test fun writerEviction() { val headerBlock = headerEntries( "custom-foo", "custom-header", "custom-bar", "custom-header",
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 38.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/JobHelper.java
this.jobLog = jobLog; } /** * Called when the timeout expires. Updates the job log if the job is still running. */ @Override public void expired() { if (jobLog.getEndTime() == null) { jobLog.setLastUpdated(ComponentUtil.getSystemHelper().getCurrentTimeAsLong()); if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/java/jcifs/util/ServerResponseValidator.java
} /** * Validate buffer access bounds * * @param buffer the buffer * @param offset offset to access * @param length length to read * @throws SmbException if access would exceed bounds */ public void validateBufferAccess(byte[] buffer, int offset, int length) throws SmbException { totalValidations.incrementAndGet(); if (buffer == null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/HashingTest.java
Random r = new Random(9); for (int i = 0; i < ITERS; i++) { countRemaps(r.nextLong(), map); } for (int shard = 2; shard <= MAX_SHARDS; shard++) { // Rough: don't exceed 1.2x the expected number of remaps by more than 20 assertTrue(map.get(shard) <= 1.2 * ITERS / shard + 20); } } private void countRemaps(long h, AtomicLongMap<Integer> map) { int last = 0;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 26.4K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
assertTrue(file.canCacheWrite()); } } ``` ## 9. Performance Considerations ### 9.1 Memory Management - Lease entries should be evicted based on LRU when max leases reached - Implement periodic cleanup of expired leases ### 9.2 Thread Safety - Use concurrent data structures for lease storage - Minimize lock contention in hot paths - Async handling of lease breaks
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java
void testWriteAtBufferBoundary() { request.setReadLength(1024); byte[] buffer = new byte[100]; // Try to write at position that would exceed buffer assertThrows(ArrayIndexOutOfBoundsException.class, () -> request.writeBytesWireFormat(buffer, 52)); // 52 + 49 > 100 } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/QueryResponseListTest.java
assertFalse(qrList.isExistPrevPage()); } public void test_calculatePageInfo_currentEndRecordNumber_boundary() { // Test when currentEndRecordNumber would exceed allRecordCount QueryResponseList qrList = new QueryResponseList(null, 95, 10, 0) { @Override public int size() { return 5; // Only 5 records returned }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 39.7K bytes - Viewed (0) -
docs/fr/README.md
## Site Web [fess.codelibs.org](https://fess.codelibs.org/) ## Problèmes/Questions [discuss.codelibs.org](https://discuss.codelibs.org/c/FessEN/) ## Démarrage rapide Il existe 2 manières d'essayer Fess. La première est de le télécharger et l'installer vous-même. La seconde est d'utiliser [Docker](https://www.docker.com/products/docker-engine). ### Télécharger et Installer/Exécuter
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 12 07:19:47 UTC 2024 - 7.9K bytes - Viewed (0) -
docs/pt-BR/README.md
## Site [fess.codelibs.org](https://fess.codelibs.org/) ## Problemas/Perguntas [discuss.codelibs.org](https://discuss.codelibs.org/c/FessEN/) ## Como Começar Existem duas maneiras de testar o Fess. A primeira é baixar e instalar você mesmo. A segunda é usar [Docker](https://www.docker.com/products/docker-engine). ### Baixar e Instalar/Executar
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 12 07:19:47 UTC 2024 - 7.4K bytes - Viewed (0)