- Sort Score
- Result 10 results
- Languages All
Results 401 - 410 of 603 for 1000L (0.03 sec)
-
samples/crawler/src/main/java/okhttp3/sample/Crawler.java
if (args.length != 2) { System.out.println("Usage: Crawler <cache dir> <root>"); return; } int threadCount = 20; int queueLimit = 1000; int hostLimit = 25; long cacheByteCount = 1024L * 1024L * 100L; Cache cache = new Cache(new File(args[0]), cacheByteCount); OkHttpClient client = new OkHttpClient.Builder() .cache(cache)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jul 23 00:58:06 UTC 2025 - 5K bytes - Viewed (0) -
api/maven-api-plugin/src/main/mdo/lifecycle.mdo
<codeSegment> <version>2.0.0+</version> <code><![CDATA[ /** * Get the effective ID of this phase, e.g., * {@code generate-sources} or {@code after:integration-test[1000]}. * * @return String */ public String getEffectiveId() { if (executionPoint == null) { if (priority == 0) { return id; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 5.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PopularWordHelperTest.java
public void init() { fessConfig = new FessConfig.SimpleImpl() { @Override public Integer getSuggestPopularWordCacheSizeAsInteger() { return 1000; } @Override public Integer getSuggestPopularWordCacheExpireAsInteger() { return 10; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
assertEquals(" word ", item3.toLineString()); } public void test_longStrings() { // Test with long strings StringBuilder longString = new StringBuilder(); for (int i = 0; i < 1000; i++) { longString.append("word"); } String longInput = longString.toString(); StopwordsItem item = new StopwordsItem(1, longInput);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java
*/ public long getThroughput() { long duration = System.currentTimeMillis() - establishedTime; if (duration == 0) return 0; return (bytesSent.get() + bytesReceived.get()) * 1000 / duration; } /** * Get number of pending operations * * @return number of pending operations */ public long getRequestsPending() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 10.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbSessionImplSecurityTest.java
public void testNoConcurrentModificationException() throws Exception { // Given SmbSessionImpl session = new SmbSessionImpl(mockContext, "testhost", "testdomain", mockTransport); int iterations = 1000; ExecutorService executor = Executors.newFixedThreadPool(2); CountDownLatch endLatch = new CountDownLatch(2); AtomicInteger successCount = new AtomicInteger(0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ScriptEngineExceptionTest.java
} public void test_withLongMessage() { // Test with a very long message StringBuilder longMessage = new StringBuilder(); for (int i = 0; i < 1000; i++) { longMessage.append("Error message part ").append(i).append(" "); } String message = longMessage.toString();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java
assertEquals(message, exception.getMessage()); } public void test_veryLongMessage() { // Test with very long message StringBuilder sb = new StringBuilder(); for (int i = 0; i < 1000; i++) { sb.append("Long message part ").append(i).append(" "); } String longMessage = sb.toString(); ThemeException exception = new ThemeException(longMessage);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.2K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt
if (!queue.idleLatch().await(waitTime, TimeUnit.NANOSECONDS)) { TaskRunner.INSTANCE.withLock { TaskRunner.INSTANCE.cancelAll() } fail<Unit>("Queue still active after 1000 ms") } } } override fun beforeEach(context: ExtensionContext) { testName = context.displayName beforeEach() } private fun beforeEach() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri May 30 21:28:20 UTC 2025 - 10.5K bytes - Viewed (0) -
cmd/erasure-metadata-utils_test.go
t.Run(fmt.Sprintf("%d", x), func(t *testing.T) { var first [17]int rng := rand.New(rand.NewSource(0)) var tmp [16]byte rng.Read(tmp[:]) prefix := hex.EncodeToString(tmp[:]) for range 10000 { rng.Read(tmp[:]) y := hashOrder(fmt.Sprintf("%s/%x", prefix, hex.EncodeToString(tmp[:3])), x) first[y[0]]++ } t.Log("first:", first[:x]) }) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 7.3K bytes - Viewed (0)