- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 1,495 for olisit (0.04 sec)
-
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/MultipleArtifactsNotFoundException.java
* @deprecated use {@link #MultipleArtifactsNotFoundException(Artifact, List, List, List)} */ @Deprecated public MultipleArtifactsNotFoundException( Artifact originatingArtifact, List<Artifact> missingArtifacts, List<ArtifactRepository> remoteRepositories) { this(originatingArtifact, new ArrayList<>(), missingArtifacts, remoteRepositories);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
List<String> list = fieldLogMap.get("field"); assertEquals(2, list.size()); assertEquals("existing", list.get(0)); assertEquals("new", list.get(1)); } // Test addFieldLog with new field public void test_addFieldLog_newField() { getMockRequest().setAttribute(Constants.FIELD_LOGS, new HashMap<String, List<String>>());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ForwardingListTest.java
.testForwarding( List.class, new Function<List, List>() { @Override public List apply(List delegate) { return wrap(delegate); } }); } public void testEquals() { List<String> list1 = ImmutableList.of("one"); List<String> list2 = ImmutableList.of("two"); new EqualsTester()
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 6K bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java
} return false; } } static class WithStreamParameter { private final List<?> list; // This should be ignored. public WithStreamParameter(Stream<?> s, String str) { this.list = s.collect(Collectors.toList()); checkNotNull(str); } } static class UsesReferentialEquality { private final ReferentialEquality s;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 36.2K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java
@Override protected List<String> create(String[] elements) { return ImmutableList.<String>builder().addAll(asList(elements)).build(); } } public static class BuilderReversedListGenerator extends TestStringListGenerator { @Override protected List<String> create(String[] elements) { List<String> list = asList(elements); Collections.reverse(list);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 5K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/Collections2Test.java
} public void testOrderedPermutationSetEmpty() { List<Integer> list = new ArrayList<>(); Collection<List<Integer>> permutationSet = Collections2.orderedPermutations(list); assertEquals(1, permutationSet.size()); assertThat(permutationSet).contains(list); Iterator<List<Integer>> permutations = permutationSet.iterator();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 20.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/FessCrawlerThreadTest.java
list = crawlerThread.getClientRuleList(""); assertEquals(0, list.size()); list = crawlerThread.getClientRuleList(" "); assertEquals(0, list.size()); list = crawlerThread.getClientRuleList("playwright:http://.*"); assertEquals(1, list.size()); assertEquals("playwright", list.get(0).getFirst()); assertEquals("http://.*", list.get(0).getSecond().pattern());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PathMappingHelper.java
logger.warn("Failed to load path mappings.", e); } return 0; } /** * Gets the list of process types. * * @return the list of process types */ protected List<String> getProcessTypeList() { final List<String> ptList = new ArrayList<>(); final String executeType = System.getProperty("lasta.env");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java
public void test_crawl_withBothConfigs() { List<String> webConfigIds = Arrays.asList("webConfig1"); List<String> fileConfigIds = Arrays.asList("fileConfig1"); // Mock CrawlingConfigHelper CrawlingConfigHelper crawlingConfigHelper = new CrawlingConfigHelper() { @Override public List<WebConfig> getWebConfigListByIds(List<String> webConfigIdList) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 15.2K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/util/concurrent/ExecutionListBenchmark.java
RunnableExecutorPair list; synchronized (this) { if (executed) { return; } executed = true; list = runnables; runnables = null; // allow GC to free listeners even if this stays around for a while. } while (list != null) { executeListener(list.runnable, list.executor); list = list.next; } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 15.8K bytes - Viewed (0)