- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 39 for ArrayList (2.06 sec)
-
impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java
if (remoteProjectRepositories == null) { remoteProjectRepositories = new ArrayList<>(); } return remoteProjectRepositories; } public List<RemoteRepository> getRemotePluginRepositories() { if (remotePluginRepositories == null) { remotePluginRepositories = new ArrayList<>(); } return remotePluginRepositories; }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Aug 29 12:47:20 UTC 2025 - 67K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/CollectionsUtil.java
* Creates and returns a new instance of {@link ArrayList}. * * @param <E> the element type of {@link ArrayList} * @return a new instance of {@link ArrayList} * @see ArrayList#ArrayList() */ public static <E> ArrayList<E> newArrayList() { return new ArrayList<>(); } /** * Creates and returns a new instance of {@link ArrayList}. *Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 49.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/IteratorsTest.java
List<String> list = new ArrayList<>(); Predicate<String> predicate = equalTo("pants"); assertFalse(any(list.iterator(), predicate)); list.add("cool"); assertFalse(any(list.iterator(), predicate)); list.add("pants"); assertTrue(any(list.iterator(), predicate)); } public void testAll() { List<String> list = new ArrayList<>();
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 28 18:44:53 UTC 2025 - 56.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java
@SuppressWarnings("rawtypes") // raw class ArrayList.class Constructor<ArrayList> constructor = ArrayList.class.getConstructor(); assertEquals( TypeToken.of(ArrayList.class), TypeToken.of(ArrayList.class).constructor(constructor).getOwnerType()); assertEquals( new TypeToken<ArrayList<String>>() {}, new TypeToken<ArrayList<String>>() {}.constructor(constructor).getOwnerType()); }Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 28 18:44:53 UTC 2025 - 89K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
if (!result.isEmpty()) { final List<String> groupList = new ArrayList<>(); final List<String> roleList = new ArrayList<>(); final String lowerGroupDn = fessConfig.getLdapAdminGroupBaseDn().toLowerCase(Locale.ROOT);
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 86.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
import java.net.Authenticator; import java.net.InetSocketAddress; import java.net.PasswordAuthentication; import java.net.Proxy; import java.net.Proxy.Type; import java.net.SocketAddress; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.Date; import java.util.Enumeration; import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.Locale;
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 88.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
logger.debug("[updateMemberOf] Starting for user: {}", user.getName()); } final List<String> groupList = new ArrayList<>(); final List<String> roleList = new ArrayList<>(); final List<String> groupIdsForParentLookup = new ArrayList<>(); final List<String> defaultGroups = getDefaultGroupList(); final List<String> defaultRoles = getDefaultRoleList();
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 56.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
inheritanceAssembler.assembleModelInheritance(child, parent, request, problems); } } private List<Profile> getProfiles(Model model) { ArrayList<Profile> profiles = new ArrayList<>(); for (Profile profile : model.getProfiles()) { profile = profile.clone(); profiles.add(profile); } return profiles; }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Mar 30 23:08:08 UTC 2025 - 55.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
*/ protected Node pruneNodeByTags(final Node node, final PrunedTag[] prunedTags) { final NodeList nodeList = node.getChildNodes(); final List<Node> childNodeList = new ArrayList<>(); final List<Node> removedNodeList = new ArrayList<>(); for (int i = 0; i < nodeList.getLength(); i++) { final Node childNode = nodeList.item(i); if (isPrunedTag(childNode, prunedTags)) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Dec 12 13:58:40 UTC 2025 - 54.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
import javax.inject.Inject; import javax.inject.Named; import javax.xml.stream.XMLStreamException; import java.io.IOException; import java.time.Duration; import java.time.Instant; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.Optional; import java.util.Set;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 55.1K bytes - Viewed (0)