- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 551 for bplist (0.03 sec)
-
.github/workflows/extract-unit-test-split.jq
Stefan Wolf <******@****.***> 1633938695 +0200
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Oct 11 08:08:26 UTC 2021 - 171 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
/** * Creates a list from an array of configuration ID values. * * @param values array of configuration ID strings * @return list containing all values from the array */ private static List<String> createConfigIdList(final String[] values) { final List<String> idList = new ArrayList<>(); Collections.addAll(idList, values); return idList;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 31.4K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/graph/DefaultProjectDependencyGraphTest.java
private final MavenProject bProject = createProject(Arrays.asList(toDependency(aProject)), "bProject"); private final MavenProject cProject = createProject(Arrays.asList(toDependency(bProject)), "cProject"); private final MavenProject dProject = createProject( Arrays.asList(toDependency(aProject), toDependency(bProject), toDependency(cProject)), "dProject");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 10.3K bytes - Viewed (0) -
cmd/net_test.go
// With different ip along with localhost. { ipList: []string{"127.0.0.1", "192.168.1.106"}, sortedIPList: []string{"192.168.1.106", "127.0.0.1"}, }, // With a list of only one element nothing to sort. { ipList: []string{"hostname"}, sortedIPList: []string{"hostname"}, }, // With a list of only one element nothing to sort. { ipList: []string{"127.0.0.1"},Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Oct 10 18:57:03 UTC 2025 - 9.2K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/execution/DefaultBuildResumptionAnalyzerTest.java
executionResult.setTopologicallySortedProjects(asList(projectA, projectB)); Optional<BuildResumptionData> result = analyzer.determineBuildResumptionData(executionResult); assertTrue(result.isPresent(), "Expected " + result + ".isPresent() to return true"); assertEquals(asList("test:B"), result.get().getRemainingProjects()); } @Test
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 5.9K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/MultimapReplaceValuesTester.java
public void testReplaceValuesWithNullValue() { List<V> values = asList(v0(), null, v3()); multimap().replaceValues(k0(), values); assertGet(k0(), values); } @MapFeature.Require({SUPPORTS_PUT, SUPPORTS_REMOVE, ALLOWS_NULL_KEYS}) public void testReplaceValuesWithNullKey() { List<V> values = asList(v0(), v2(), v3()); multimap().replaceValues(null, values); assertGet(null, values);
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Apr 12 15:07:59 UTC 2025 - 5.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/Lifecycles.java
return new DefaultPhase(name, Collections.emptyList(), asList(link1, link2), asList(phases)); } static Lifecycle.Phase phase( String name, Lifecycle.Link link1, Lifecycle.Link link2, Lifecycle.Link link3, Lifecycle.Phase... phases) { return new DefaultPhase(name, Collections.emptyList(), asList(link1, link2, link3), asList(phases)); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 28 15:21:19 UTC 2025 - 8.4K bytes - Viewed (0) -
api/maven-api-core/src/test/java/org/apache/maven/api/services/RequestImplementationTest.java
List<RemoteRepository> repositories1 = Arrays.asList(repo1, repo2); List<RemoteRepository> repositories2 = Arrays.asList(repo1, repo2); ArtifactResolverRequest.ArtifactResolverRequestBuilder builder = ArtifactResolverRequest.builder(); ArtifactResolverRequest request1 = builder.session(session) .coordinates(Arrays.asList(coords1, coords2))Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
} /** * Processes a list of access results and converts them into indexable documents. * Each access result is transformed into a document map and added to the document list. * * @param docList the document list to add processed documents to * @param accessResultList the list to track processed access results for cleanup * @param arList the list of access results to process */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 32.9K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java
List<String> list = Lists.newArrayList(elements); list.add("zzz"); return ImmutableSortedSet.copyOf(list).headSet("zzy"); } } public static class ImmutableSortedSetTailsetGenerator extends TestStringSortedSetGenerator { @Override protected SortedSet<String> create(String[] elements) { List<String> list = Lists.newArrayList(elements);
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 08 18:35:13 UTC 2025 - 15.9K bytes - Viewed (0)