- Sort Score
- Num 10 results
- Language All
Results 161 - 170 of 299 for reinitialized (0.28 seconds)
-
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionTest.java
assertEquals(SmbComTransaction.TRANS2_FIND_FIRST2, transaction.getSubCommand()); // Verify maxDataCount and maxParameterCount are initialized assertTrue(transaction.maxDataCount > 0); assertTrue(transaction.maxParameterCount > 0); } @Test @DisplayName("Test setMaxBufferSize") void testSetMaxBufferSize() {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/RateLimitHelper.java
blockedIps = CacheBuilder.newBuilder().expireAfterWrite(blockDurationMs, TimeUnit.MILLISECONDS).maximumSize(10000).build(); if (logger.isInfoEnabled()) { logger.info("RateLimitHelper initialized: windowMs={}, blockDurationMs={}", windowMs, blockDurationMs); } } /** * Check if rate limiting is enabled. * @return true if rate limiting is enabled */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Dec 24 14:16:27 GMT 2025 - 9.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralTest.java
assertTrue(result.contains("Trans2GetDfsReferral")); assertTrue(result.contains("maxReferralLevel=0x3")); } @Test @DisplayName("maxReferralLevel should be initialized to 3") void testMaxReferralLevelInitialization() throws Exception { // Given trans2GetDfsReferral = new Trans2GetDfsReferral(mockConfig, "test"); // When
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java
} public void testTransform_errorAfterCancellation() throws Exception { class Transformer implements Function<Object, Object> { @SuppressWarnings("nullness:initialization.field.uninitialized") ListenableFuture<Object> output; @Override public Object apply(Object input) { output.cancel(false); throw new SomeError(); } }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 134K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/FuturesTest.java
} public void testTransform_errorAfterCancellation() throws Exception { class Transformer implements Function<Object, Object> { @SuppressWarnings("nullness:initialization.field.uninitialized") ListenableFuture<Object> output; @Override public Object apply(Object input) { output.cancel(false); throw new SomeError(); } }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 134K bytes - Click Count (0) -
src/main/resources/fess_label_fr.properties
labels.facet_filetype_ruby=Ruby labels.facet_filetype_scala=Scala labels.facet_filetype_shell=Script shell labels.facet_filetype_vb=Visual Basic labels.facet_filetype_others=Autres labels.facet_label_reset=Réinitialiser labels.facet_filter_button=Filtrer labels.searchoptions_all=Tous labels.searchoptions_score=Score labels.searchoptions_menu_sort=Trier labels.searchoptions_menu_num=Nombre labels.searchoptions_num={0} résultatsCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 54.4K bytes - Click Count (0) -
cmd/test-utils_test.go
// setting it to `nil` in order test for handlers response for uninitialized object layer. globalObjLayerMutex.Lock() globalObjectAPI = nil globalObjLayerMutex.Unlock() // call the HTTP handler. apiRouter.ServeHTTP(rec, req) // expected error response when the API handler is called before the object layer is initialized, // or when objectLayer is `nil`.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 77K bytes - Click Count (0) -
android/guava/src/com/google/common/io/TempFileCreator.java
return new JavaIoCreator(); } /** * Creates the permissions normally used for Windows filesystems, looking up the user afresh, even * if previous calls have initialized the {@code PermissionSupplier} fields. * * <p>This lets us test the effects of different values of the {@code user.name} system property * without needing a separate VM or classloader. */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 29 18:50:14 GMT 2025 - 11.8K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketReader.kt
private var isControlFrame = false private var readingCompressedMessage = false private val controlFrameBuffer = Buffer() private val messageFrameBuffer = Buffer() /** Lazily initialized on first use. */ private var messageInflater: MessageInflater? = null // Masks are only a concern for server writers. private val maskKey: ByteArray? = if (isClient) null else ByteArray(4)
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 10K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java
} protected void expectUnchanged() { expectContents(getOrderedElements()); } /** * Asserts that the collection under test contains exactly the elements it was initialized with * plus the given elements, according to {@link #expectContents(java.util.Collection)}. In other * words, for the default {@code expectContents()} implementation, the number of occurrences of
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 20:54:16 GMT 2025 - 8.9K bytes - Click Count (0)