- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 417 for 100 (0.01 sec)
-
src/test/java/org/codelibs/fess/util/JobProcessTest.java
List<String> callbackResults = new ArrayList<>(); Consumer<String> callback = line -> callbackResults.add(line); JobProcess jobProcess = new JobProcess(mockProcess, 100, callback); InputStreamThread thread = jobProcess.getInputStreamThread(); thread.start(); thread.join(1000); assertEquals(2, callbackResults.size());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 8.5K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/TestUtilJvm.kt
* java/lang/ref/FinalizationTester.java */ @Throws(Exception::class) @JvmStatic fun awaitGarbageCollection() { Runtime.getRuntime().gc() Thread.sleep(100) System.runFinalization() } @JvmStatic fun assumeNetwork() { try { InetAddress.getByName("www.google.com") } catch (uhe: UnknownHostException) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
final String value = URLUtil.decode(form.hash, Constants.UTF_8); if (targetUrl.indexOf('#') == -1) { final StringBuilder buf = new StringBuilder(value.length() + 100); for (final char c : value.toCharArray()) { if (CharUtil.isUrlChar(c) || c == ' ') { buf.append(c); } else { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/CompactLinkedHashMapTest.java
map.remove(2); testHasMapEntriesInOrder(map, 1, "a", 4, "b", 3, "d"); } public void testTrimToSize() { CompactLinkedHashMap<Integer, String> map = CompactLinkedHashMap.createWithExpectedSize(100); map.put(1, "a"); map.put(4, "b"); map.put(3, "d"); map.put(2, "c"); map.trimToSize(); assertThat(map.entries).hasLength(4); assertThat(map.keys).hasLength(4);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 6.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineTest.java
Map<String, Object> paramMap = new HashMap<>(); paramMap.put("price", "100"); paramMap.put("discount", "20"); Object result = scriptEngine.evaluate(template, paramMap); assertEquals("Price: $100 (with 20% off)", result); } // Test evaluate method with nested expressions public void test_evaluate_withNestedExpressions() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.3K bytes - Viewed (0) -
README.md
String last = CollectionsUtil.getLast(sequenced); SequencedCollection<String> reversed = CollectionsUtil.reversed(sequenced); // Specialized collections LruHashMap<String, Object> lruCache = new LruHashMap<>(100); // LRU cache with max 100 entries CaseInsensitiveMap<String> configMap = new CaseInsensitiveMap<>(); ``` ### Resource Management ```java import org.codelibs.core.io.*; // Resource loading and management
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/AtomicLongMapBasherTest.java
@NullUnmarked public class AtomicLongMapBasherTest extends TestCase { private final Random random = new Random(301); public void testModify_basher() throws Exception { int nTasks = 3000; int nThreads = 100; int getsPerTask = 1000; int deltaRange = 10000; String key = "key"; AtomicLongMap<String> map = AtomicLongMap.create(); ExecutorService threadPool = newFixedThreadPool(nThreads);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 4.2K bytes - Viewed (0) -
src/test/java/org/codelibs/core/log/LoggerTest.java
logger.log(format("ILOGTEST0002", "1", "2"), new Exception()); } /** * @throws Exception */ @Test public void testPerformance() throws Exception { final int num = 100; long start = System.currentTimeMillis(); for (int i = 0; i < num; i++) { System.out.println("test" + i); } final long sysout = System.currentTimeMillis() - start;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
* The cache is configured with a maximum size of 100 entries and expires after 10 minutes. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } crawlingConfigCache = CacheBuilder.newBuilder().maximumSize(100).expireAfterWrite(10, TimeUnit.MINUTES).build(); } /**
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/main/webapp/WEB-INF/view/common/help_ko.jsp
<pre>content_length:[1000 TO 10000]</pre> </dd> <dt>부스트(Boost)검색</dt> <dd> 부스트 검색은 검색어 뒤에 ^을 지정하여 사용할 수 있습니다. ^ 다음에 가중치 값을 정수로 지정하여 그 검색어가 향상됩니다. <pre>Fess^100</pre> </dd> <dt>퍼지(Fuzzy)검색</dt> <dd> 퍼지 검색은 검색어 후 ~을 지정하여 사용할 수 있습니다. 예를 들어, Fess가 포함 된 문서에 퍼지 검색을 수행하려면 다음과 같이 입력합니다. <pre>Fess~0.5</pre> ~ 다음에 값을 1 이하로 지정할 수 있습니다. 기본값은 0.5입니다. </dd>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 26 14:01:31 UTC 2018 - 3.1K bytes - Viewed (0)