- Sort Score
- Num 10 results
- Language All
Results 1961 - 1970 of 2,629 for bize (0.32 seconds)
-
android/guava-testlib/src/com/google/common/collect/testing/google/SetMultimapAsMapTester.java
public void testValuesRemove() { resetContainer(mapEntry(k0(), v0()), mapEntry(k1(), v0()), mapEntry(k0(), v3())); assertTrue(multimap().asMap().values().remove(singleton(v0()))); assertEquals(2, multimap().size()); assertEquals(singletonMap(k0(), newHashSet(v0(), v3())), multimap().asMap()); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue May 13 17:27:14 GMT 2025 - 4.3K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/CompactHashMapTest.java
map.put(i, Integer.toString(i)); } map.trimToSize(); assertThat(map.entries).hasLength(10); assertThat(map.keys).hasLength(10); assertThat(map.values).hasLength(10); assertEquals(10, map.size()); for (int i = 0; i < 10; i++) { assertThat(map.get(i)).isEqualTo(Integer.toString(i)); } } public void testEntrySetValueAfterRemoved() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 5.4K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SecurityDescriptor.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/PomInlinerTransformer.java
Set<String> needsInlining = needsInlining(session); if (needsInlining.isEmpty()) { return artifacts; } ArrayList<Artifact> newArtifacts = new ArrayList<>(artifacts.size()); for (Artifact artifact : artifacts) { if ("pom".equals(artifact.getExtension()) && artifact.getClassifier().isEmpty()) { try {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 20:01:00 GMT 2025 - 5.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 06:06:55 GMT 2026 - 25.8K bytes - Click Count (0) -
guava-tests/test/com/google/common/math/IntMathTest.java
} @GwtIncompatible // BigIntegerMath // TODO(cpovirk): GWT-enable BigIntegerMath public void testMaxLog10ForLeadingZeros() { for (int i = 0; i < Integer.SIZE; i++) { assertEquals( BigIntegerMath.log10(BigInteger.ONE.shiftLeft(Integer.SIZE - i), FLOOR), IntMath.maxLog10ForLeadingZeros[i]); } } @GwtIncompatible // BigIntegerMath // TODO(cpovirk): GWT-enable BigIntegerMath
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Aug 11 19:31:30 GMT 2025 - 24.1K bytes - Click Count (0) -
docs/ja/docs/tutorial/handling-errors.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 11.2K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java
// Set converter value first setConverter(response, 0); // Set number of entries setNumEntries(response, 1); // Calculate buffer size int serverNameSize = 16; // Fixed field size int versionSize = 2; int typeSize = 4; int offsetSize = 4; int commentSize = comment.length() + 1;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 25.4K bytes - Click Count (0) -
src/main/java/jcifs/util/SecureKeyManager.java
} } } /** * Get the number of stored keys * * @return number of keys in memory */ public int getKeyCount() { return sessionKeys.size(); } /** * Check if a session key exists * * @param sessionId session identifier * @return true if key exists */ public boolean hasSessionKey(String sessionId) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 21.5K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
/** * Get the file change time * @return the changeTime */ public final long getChangeTime() { return this.changeTime; } /** * Get the allocation size of the file * @return the allocationSize */ public final long getAllocationSize() { return this.allocationSize; } /** * Get the end of file positionCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:49:49 GMT 2025 - 15.4K bytes - Click Count (0)