- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 513 for arrayList (5.95 sec)
-
android/guava-testlib/src/com/google/common/collect/testing/DerivedCollectionGenerators.java
V v = ((TestMapGenerator<K, V>) mapGenerator.getInnerGenerator()).samples().e0().getValue(); List<Entry<K, V>> entries = new ArrayList<>(); for (K element : insertionOrder) { entries.add(mapEntry(element, v)); } List<K> keys = new ArrayList<>(); for (Entry<K, V> entry : mapGenerator.order(entries)) { keys.add(entry.getKey()); } return keys; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jan 30 16:59:10 UTC 2025 - 18.2K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/collect/SortedCopyBenchmark.java
set.add(random.nextInt()); } List<Integer> list = new ArrayList<>(set); inputOrder.arrange(list); input = ImmutableList.copyOf(list); } @Benchmark int collections(int reps) { int dummy = 0; // Yes, this could be done more elegantly if (mutable) { for (int i = 0; i < reps; i++) { List<Integer> copy = new ArrayList<>(input); sort(copy); dummy += copy.get(0);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 3.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java
helper.duplicateHostList = new ArrayList<>(); String url = "http://test.com"; String result = helper.convert(url); assertEquals(url, result); } public void test_convert_multipleTransformations() { DuplicateHostHelper helper = new DuplicateHostHelper(); helper.duplicateHostList = new ArrayList<>(); DuplicateHost host1 = new DuplicateHost();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 6.6K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/ClassSanityTester.java
List<ParameterNotInstantiableException> paramErrors = new ArrayList<>(); List<ParameterHasNoDistinctValueException> distinctValueErrors = new ArrayList<>(); List<InvocationTargetException> instantiationExceptions = new ArrayList<>(); List<FactoryMethodReturnsNullException> nullErrors = new ArrayList<>(); // Try factories with the greatest number of parameters.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 32.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java
final List<SmbAuthentication> smbAuthList = new ArrayList<>(); final List<org.codelibs.fess.crawler.client.smb1.SmbAuthentication> smb1AuthList = new ArrayList<>(); final List<FtpAuthentication> ftpAuthList = new ArrayList<>(); for (final FileAuthentication fileAuth : fileAuthList) { if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Apr 03 09:24:53 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocList.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.util; import java.util.ArrayList; import java.util.Arrays; import java.util.Map; /** * A specialized ArrayList for storing document data with additional metadata. * This class extends ArrayList to hold document maps while tracking content size * and processing time metrics. It's used throughout the Fess search system to
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/MultisetTestSuiteBuilder.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/QueryResponseListTest.java
List<Map<String, Object>> documentList = new ArrayList<>(); QueryResponseList qrList = new QueryResponseList(documentList, 0, 10, 0); // Test addAll with empty collection assertFalse(qrList.addAll(new ArrayList<>())); assertEquals(0, qrList.size()); assertFalse(qrList.addAll(0, new ArrayList<>())); assertEquals(0, qrList.size()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 39.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebConfig.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.opensearch.config.exentity; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.function.Supplier; import java.util.regex.Pattern;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/exentity/SearchLog.java
private final List<Pair<String, String>> searchFieldLogList = new ArrayList<>(); private final List<Pair<String, String>> headerList = new ArrayList<>(); private OptionalEntity<UserInfo> userInfo; private Map<String, Object> fields; private final List<Map<String, Object>> documentList = new ArrayList<>(); @Override public String getId() { return asDocMeta().id();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6K bytes - Viewed (0)