- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 112 for newE (0.02 seconds)
-
src/main/java/org/codelibs/core/collection/CollectionsUtil.java
* @return a new instance of {@link ArrayDeque} * @see ArrayDeque#ArrayDeque(int) */ public static <E> ArrayDeque<E> newArrayDeque(final int numElements) { return new ArrayDeque<>(numElements); } /** * Creates and returns a new instance of {@link ArrayList}. * * @param <E> the element type of {@link ArrayList} * @return a new instance of {@link ArrayList}Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 49.9K bytes - Click Count (0) -
guava-tests/test/com/google/common/cache/CacheLoadingTest.java
result.put(key, value); // add extra entries result.put(value, key); } return result; } }; LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build(loader); Object[] lookupKeys = new Object[] {new Object(), new Object(), new Object()}; Map<Object, Object> result = cache.getAll(asList(lookupKeys));
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Sep 30 22:03:28 GMT 2025 - 91.1K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
final Name calledName = new Name(tc.getConfig(), this.address.firstCalledName(), 0x20, null); do { this.socket = new Socket(); if (this.localAddr != null) { this.socket.bind(new InetSocketAddress(this.localAddr, this.localPort)); }
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 69.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
} /** * Creates a new LDAP user instance with the specified username and environment. * * @param username the username for the LDAP user * @param env the environment configuration for LDAP connection * @return a new LdapUser instance */ protected LdapUser createLdapUser(final String username, final Hashtable<String, String> env) { return new LdapUser(env, username); }Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 86.3K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
} problems.setRootModel(inputModel); ModelData resultData = new ModelData(request.getModelSource(), inputModel); ModelData superData = new ModelData(null, getSuperModel()); Collection<String> parentIds = new LinkedHashSet<>(); List<ModelData> lineage = new ArrayList<>(); for (ModelData currentData = resultData; currentData != null; ) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Mar 30 23:08:08 GMT 2025 - 55.3K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
int result = cli.doMain(new CliRequest(args, classWorld)); MessageUtils.systemUninstall(); return result; } // TODO need to externalize CliRequest public static int doMain(String[] args, ClassWorld classWorld) { MavenCli cli = new MavenCli(); return cli.doMain(new CliRequest(args, classWorld)); } /**
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Oct 27 13:24:03 GMT 2025 - 78.1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/cache/CacheLoadingTest.java
result.put(key, value); // add extra entries result.put(value, key); } return result; } }; LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build(loader); Object[] lookupKeys = new Object[] {new Object(), new Object(), new Object()}; Map<Object, Object> result = cache.getAll(asList(lookupKeys));
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Sep 30 22:03:28 GMT 2025 - 91.1K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbFileIntegrationTest.java
props.setProperty("jcifs.smb.client.soTimeout", "35000"); // Create a new configuration and context Configuration config = new PropertyConfiguration(props); BaseContext baseContext = new BaseContext(config); // Create fresh authentication NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication(baseContext, WORKGROUP, USERNAME, PASSWORD);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 56K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsLabelTypeCA.java
LabelTypeCQ cq = new LabelTypeCQ(); if (queryLambda != null) { queryLambda.callback(cq); } FilterAggregationBuilder builder = regFilterA(name, cq.getQuery()); if (opLambda != null) { opLambda.callback(builder); } if (aggsLambda != null) { LabelTypeCA ca = new LabelTypeCA(); aggsLambda.callback(ca);
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 69.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsAccessTokenCA.java
AccessTokenCQ cq = new AccessTokenCQ(); if (queryLambda != null) { queryLambda.callback(cq); } FilterAggregationBuilder builder = regFilterA(name, cq.getQuery()); if (opLambda != null) { opLambda.callback(builder); } if (aggsLambda != null) { AccessTokenCA ca = new AccessTokenCA(); aggsLambda.callback(ca);
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 60K bytes - Click Count (0)