- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 449 for 15000 (0.01 sec)
-
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/exec/CrawlerTest.java
options.fileConfigIds = "file1"; options.dataConfigIds = "data1"; options.propertiesPath = "/path/to/props"; options.expires = "7"; options.hotThread = 5000; String result = options.toString(); assertNotNull(result); assertTrue(result.contains("sessionId=session123")); assertTrue(result.contains("name=testCrawl"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
@DisplayName("Test override timeout property") void testOverrideTimeoutProperty() { assertNull(testBlock.getOverrideTimeout()); testBlock.setOverrideTimeout(5000); assertEquals(5000, testBlock.getOverrideTimeout()); } @Test @DisplayName("Test digest property") void testDigestProperty() { testBlock.setDigest(mockDigest);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 36.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
/** * Cache for storing resource file modification timestamps to enable cache busting. * The cache expires after 10 minutes and has a maximum size of 1000 entries. */ private static LoadingCache<String, Long> resourceHashCache = CacheBuilder.newBuilder().maximumSize(1000).expireAfterWrite(10, TimeUnit.MINUTES).build(new CacheLoader<String, Long>() { @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.3K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/util/DocMapTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 10.5K 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) -
src/main/java/jcifs/SmbException.java
*/ public long getRetryDelay() { switch (severity) { case RECOVERABLE: return 100; // Immediate retry with small delay case TRANSIENT: return 5000; // Wait 5 seconds default: return 0; // No retry } } @Override public String toString() { StringBuilder sb = new StringBuilder();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 6.4K bytes - Viewed (0)