- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for 216 (0.01 sec)
-
guava-tests/test/com/google/common/collect/AbstractImmutableSetTest.java
216, webSafeColors.size()); assertEquals("the new array should be one bigger than webSafeColors", 217, addedColor.size()); Integer[] appendColorArray = addedColor.toArray(new Integer[addedColor.size()]); assertEquals(getComplexBuilderSetLastElement(), (int) appendColorArray[216]); } abstract int getComplexBuilderSetLastElement();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 18.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableListTest.java
"Modifying the builder should not have changed any already" + " built sets", 216, webSafeColors.size()); assertEquals("the new array should be one bigger than webSafeColors", 217, addedColor.size()); Integer[] appendColorArray = addedColor.toArray(new Integer[addedColor.size()]); assertEquals(0x00BFFF, (int) appendColorArray[216]); } public void testBuilderAddHandlesNullsCorrectly() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 23.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableListTest.java
"Modifying the builder should not have changed any already" + " built sets", 216, webSafeColors.size()); assertEquals("the new array should be one bigger than webSafeColors", 217, addedColor.size()); Integer[] appendColorArray = addedColor.toArray(new Integer[addedColor.size()]); assertEquals(0x00BFFF, (int) appendColorArray[216]); } public void testBuilderAddHandlesNullsCorrectly() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 24.1K bytes - Viewed (0) -
src/test/java/jcifs/tests/ContextConfigTest.java
assertEquals("foo", ntlm.getUsername()); assertEquals("DOMAIN", ntlm.getUserDomain()); assertEquals("bar", ntlm.getPassword()); } } @Test // #216 public void testMinMaxVersions () throws CIFSException { Properties prop1 = new Properties(); prop1.setProperty("jcifs.smb.client.minVersion", "SMB302");
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 9.9K bytes - Viewed (0) -
cmd/apierrorcode_string.go
_ = x[ErrSiteReplicationIAMError-212] _ = x[ErrSiteReplicationConfigMissing-213] _ = x[ErrSiteReplicationIAMConfigMismatch-214] _ = x[ErrAdminRebalanceAlreadyStarted-215] _ = x[ErrAdminRebalanceNotStarted-216] _ = x[ErrAdminBucketQuotaExceeded-217] _ = x[ErrAdminNoSuchQuotaConfiguration-218] _ = x[ErrHealNotImplemented-219] _ = x[ErrHealNoSuchProcess-220] _ = x[ErrHealInvalidClientToken-221]
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jun 13 22:26:38 UTC 2024 - 21.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
this.revision = Byte.parseByte(st.nextToken()); String tmp = st.nextToken(); long id = 0; if ( tmp.startsWith("0x") ) id = Long.parseLong(tmp.substring(2), 16); else id = Long.parseLong(tmp); this.identifier_authority = new byte[6]; for ( int i = 5; id > 0; i-- ) { this.identifier_authority[ i ] = (byte) ( id % 256 );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 18.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 22.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java
final MediaType type = detector.detect(tis, metadata); metadata.set(ExtractData.CONTENT_TYPE, type.toString()); // TIKA-216: Zip bomb prevention final SecureContentHandler sch = new SecureContentHandler(handler, tis); sch.setMaximumCompressionRatio(maxCompressionRatio);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 25K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RegularImmutableMap.java
return outI == n ? hashTable : new Object[] {hashTable, outI, duplicateKey}; } else if (tableSize <= SHORT_MAX_SIZE) { /* * Use 16 bits per entry. The value is unsigned to allow use up to a size of 2^16. * * The absent indicator of -1 signed becomes 2^16 - 1 unsigned, which reduces the actual max * size to 2^16 - 1. However, due to a load factor < 1 the limit is never approached. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 15 22:32:14 UTC 2024 - 22.7K bytes - Viewed (0)