- Sort Score
- Num 10 results
- Language All
Results 151 - 160 of 1,472 for bize (0.17 seconds)
-
android/guava-testlib/src/com/google/common/collect/testing/google/AbstractListMultimapTester.java
} else { assertNull(multimap().asMap().get(key)); } assertEquals(values.size(), multimap().get(key).size()); assertEquals(values.size() > 0, multimap().containsKey(key)); assertEquals(values.size() > 0, multimap().keySet().contains(key)); assertEquals(values.size() > 0, multimap().keys().contains(key)); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 2.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/CreateForm.java
public Integer crudMode; /** * The regular expression pattern to match request paths. */ @Required @Size(max = 1000) public String regex; /** * The replacement pattern for matched paths. */ @Size(max = 1000) public String replacement; /** * The processing type for path mapping. */ @Required public String processType;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.5K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Serialization.java
int size = stream.readInt(); populateMap(map, stream, size); } /** * Populates a map by reading an input stream, as part of deserialization. See {@link #writeMap} * for the data format. */ static <K extends @Nullable Object, V extends @Nullable Object> void populateMap( Map<K, V> map, ObjectInputStream stream, int size) throws IOException, ClassNotFoundException {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Dec 09 15:58:48 GMT 2025 - 6.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/CreateForm.java
public Integer crudMode; /** * The search term that triggers the key match. */ @Required @Size(max = 100) public String term; /** * The query to execute when the term matches. */ @Required @CustomSize(maxKey = "form.admin.max.input.size") public String query; /** * The maximum number of results to return. */ @RequiredCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.5K bytes - Click Count (0) -
guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
if (ancestor != null) { ancestor.addToMap(); } else { map.put(key, delegate); } } @Override public int size() { refreshIfEmpty(); return delegate.size(); } @Override /* * Most Multimap implementations use a List or Set (or even Multiset) for their values, in which
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Nov 17 22:50:48 GMT 2025 - 48.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/serializer/DataSerializerTest.java
@SuppressWarnings("unchecked") List<String> deserializedList = (List<String>) deserialized; assertEquals("List size should match", original.size(), deserializedList.size()); assertEquals("List contents should match", original, deserializedList); } /** * Test serialization and deserialization of Map */ @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 21.6K bytes - Click Count (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSet.java
return create(e1, e2, e3, e4, e5); } @SuppressWarnings("unchecked") public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E... others) { int size = others.length + 6; List<E> all = new ArrayList<E>(size); Collections.addAll(all, e1, e2, e3, e4, e5, e6); Collections.addAll(all, others); return copyOf(all.iterator()); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 21:07:18 GMT 2025 - 8.2K bytes - Click Count (0) -
src/main/java/org/codelibs/core/collection/SLinkedList.java
header.previous = header; size = 0; } /** * Returns the entry at the specified position. * * @param index the index * @return the entry */ public Entry getEntry(final int index) { assertIndex(0 <= index && index < size, "Index: " + index + ", Size: " + size); Entry e = header; if (index < size / 2) {Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 10.5K bytes - Click Count (0) -
guava/src/com/google/common/collect/CompactHashing.java
private static final int BYTE_MAX_SIZE = 1 << Byte.SIZE; // 2^8 = 256 private static final int BYTE_MASK = (1 << Byte.SIZE) - 1; // 2^8 - 1 = 255 private static final int SHORT_MAX_SIZE = 1 << Short.SIZE; // 2^16 = 65_536 private static final int SHORT_MASK = (1 << Short.SIZE) - 1; // 2^16 - 1 = 65_535 /** * Returns the power of 2 hashtable size required to hold the expected number of items or the
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 26 20:08:09 GMT 2025 - 7.1K bytes - Click Count (0) -
.teamcity/src/main/kotlin/projects/StageProject.kt
functionalTestsPass.filter { it.testCoverage.isCrossVersionTest } if (stage.stageName !in listOf(StageName.QUICK_FEEDBACK_LINUX_ONLY, StageName.QUICK_FEEDBACK)) { if (topLevelFunctionalTests.size + functionalTestProjects.size > 1) { buildType( PartialTrigger( "All Functional Tests for ${stage.stageName.stageName}",Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 04:44:29 GMT 2026 - 12.5K bytes - Click Count (0)