- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 301 for manyje (0.03 sec)
-
android/guava/src/com/google/common/collect/RegularImmutableMap.java
* values are null. This method may update {@code alternatingKeysAndValues} if there are duplicate * keys. If so, the return value will indicate how many entries are still valid, and will also * include a {@link Builder.DuplicateKey} in case duplicate keys are not allowed now or will not * be allowed on a later {@link Builder#buildOrThrow()} call. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 22.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/PhraseQueryCommandTest.java
// Verify query was processed // Note: Field logging behavior depends on implementation } public void test_convertPhraseQuery_longPhrase() { // Test with long phrase (many terms) PhraseQuery.Builder builder = new PhraseQuery.Builder(); String[] words = { "this", "is", "a", "very", "long", "phrase", "query" }; for (String word : words) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableClassToInstanceMap.java
import java.io.Serializable; import java.util.Map; import org.jspecify.annotations.NonNull; import org.jspecify.annotations.Nullable; /** * A {@link ClassToInstanceMap} whose contents will never change, with many other important * properties detailed at {@link ImmutableCollection}. * * @author Kevin Bourrillion * @since 2.0 */ @Immutable(containerOf = "B") @GwtIncompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 7.1K bytes - Viewed (0) -
guava/src/com/google/common/net/UrlEscapers.java
* href="https://url.spec.whatwg.org/#syntax-url-path-segment">URL path segments</a>. The returned * escaper escapes all non-ASCII characters, even though <a * href="https://url.spec.whatwg.org/#url-code-points">many of these are accepted in modern * URLs</a>. (<a href="https://url.spec.whatwg.org/#path-state">If the escaper were to leave these * characters unescaped, they would be escaped by the consumer at parse time, anyway.</a>)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 7.1K bytes - Viewed (0) -
src/test/java/jcifs/SmbTransportPoolTest.java
verify(transportPool).getChallenge(context, address); verify(transportPool).logon(context, address); } @Test @DisplayName("Should manage multiple transport types") void testMultipleTransportTypes() throws Exception { // Given SmbTransport sharedTransport = mock(SmbTransport.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
import com.google.common.cache.CacheBuilder; import jakarta.annotation.PostConstruct; /** * Helper class for managing crawling configurations. * Provides functionality to store, retrieve, and manage different types of crawling configurations * including web, file, and data configurations. Supports caching and session-based configuration management. */ public class CrawlingConfigHelper { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java
// Simulate partial copy where not all requested bytes were copied byte[] buffer = createValidCopyChunkResponse(3, // Only 3 chunks written (maybe less than requested) 65536, // 64KB per chunk 196608 // 192KB total (3 * 64KB) ); int bytesDecoded = response.decode(buffer, 0, buffer.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/FileEntryTest.java
Arguments.of((IntGetter) FileEntry::getAttributes, 0, "no attributes"), Arguments.of((IntGetter) FileEntry::getAttributes, 0xFFFF, "many attributes"), Arguments.of((IntGetter) FileEntry::getFileIndex, -5, "negative index"), Arguments.of((IntGetter) FileEntry::getFileIndex, 0, "zero index")); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractFutureState.java
// and we could use that to make a decision about whether or not we timed out prior to being // unparked. @SuppressWarnings({ "LabelledBreakTarget", // TODO(b/345814817): Maybe fix? "nullness", // TODO(b/147136275): Remove once our checker understands & and |. }) @ParametricNullness final V blockingGet(long timeout, TimeUnit unit)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 34.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java
|| message.contains("not supported") || message.contains("capability")) { return true; } } // If we've had many errors, consider fallback double errorRate = statistics.getErrorRate(); if (errorRate > 0.1) { // More than 10% error rate
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 10.5K bytes - Viewed (0)