- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 142 for 128 (0.02 sec)
-
android/guava-tests/test/com/google/common/collect/IteratorsTest.java
int nestingDepth = 128; Iterator<Integer> iterator = iterateOver(); for (int i = 0; i < nestingDepth; i++) { iterator = Iterators.concat(iterator, iterateOver(1)); } assertEquals(nestingDepth, Iterators.size(iterator)); } public void testConcatNested_appendToBeginning() { int nestingDepth = 128; Iterator<Integer> iterator = iterateOver();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 54.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.java
/** Account control bit flag: Interdomain trust account */ public static final int ACB_DOMTRUST = 64; /** Account control bit flag: Workstation trust account */ public static final int ACB_WSTRUST = 128; /** Account control bit flag: Server trust account */ public static final int ACB_SVRTRUST = 256; /** Account control bit flag: Password does not expire */ public static final int ACB_PWNOEXP = 512;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java
/** Account control bit flag: Interdomain trust account */ public static final int ACB_DOMTRUST = 64; /** Account control bit flag: Workstation trust account */ public static final int ACB_WSTRUST = 128; /** Account control bit flag: Server trust account */ public static final int ACB_SVRTRUST = 256; /** Account control bit flag: Password does not expire */ public static final int ACB_PWNOEXP = 512;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/CompactHashMap.java
// // The `table` array always has a size that is a power of 2. The hashcode of a key in the map // is masked in order to correspond to the current table size. For example, if the table size // is 128 then the mask is 127 == 0x7f, keeping the bottom 7 bits of the hash value. // If a key hashes to 0x89abcdef the mask reduces it to 0x89abcdef & 0x7f == 0x6f. We'll call this // the "short hash". //
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 39.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/samrTest.java
assertEquals(8, samr.ACB_TEMPDUP); assertEquals(16, samr.ACB_NORMAL); assertEquals(32, samr.ACB_MNS); assertEquals(64, samr.ACB_DOMTRUST); assertEquals(128, samr.ACB_WSTRUST); assertEquals(256, samr.ACB_SVRTRUST); assertEquals(512, samr.ACB_PWNOEXP); assertEquals(1024, samr.ACB_AUTOLOCK); assertEquals(2048, samr.ACB_ENC_TXT_PWD_ALLOWED);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.7K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java
assertEquals(8, samr.ACB_TEMPDUP); assertEquals(16, samr.ACB_NORMAL); assertEquals(32, samr.ACB_MNS); assertEquals(64, samr.ACB_DOMTRUST); assertEquals(128, samr.ACB_WSTRUST); assertEquals(256, samr.ACB_SVRTRUST); assertEquals(512, samr.ACB_PWNOEXP); assertEquals(1024, samr.ACB_AUTOLOCK); assertEquals(2048, samr.ACB_ENC_TXT_PWD_ALLOWED);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.6K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
// Reserved (4 bytes) writeInt4(buffer, 8, 0); // LinkSpeed (8 bytes) writeInt8(buffer, 12, linkSpeed * 1000000L); // Convert to bps // SockaddrStorage (128 bytes) encodeSockaddr(buffer, 20); return buffer; } private void encodeSockaddr(byte[] buffer, int offset) { if (ipv6) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
if (cipherId == -1) { // Default to AES-128-GCM for SMB 3.1.1 if no cipher negotiated cipherId = EncryptionNegotiateContext.CIPHER_AES128_GCM; } } else if (dialect.atLeast(DialectVersion.SMB300)) { // SMB 3.0/3.0.2 only supports AES-128-CCM cipherId = EncryptionNegotiateContext.CIPHER_AES128_CCM; } else {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0) -
docs/en/data/people.yml
- login: euri10 count: 153 avatarUrl: https://avatars.githubusercontent.com/u/1104190?u=321a2e953e6645a7d09b732786c7a8061e0f8a8b&v=4 url: https://github.com/euri10 - login: iudeen count: 128 avatarUrl: https://avatars.githubusercontent.com/u/10519440?u=f09cdd745e5bf16138f29b42732dd57c7f02bee1&v=4 url: https://github.com/iudeen - login: phy25 count: 126
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 08:57:16 UTC 2025 - 28.6K bytes - Viewed (0) -
guava/src/com/google/common/io/ByteStreams.java
// as their length. These files are very small, so it's wasteful to allocate an 8KB buffer. int initialBufferSize = min(BUFFER_SIZE, max(128, Integer.highestOneBit(totalLen) * 2)); // Starting with an 8k buffer, double the size of each successive buffer. Smaller buffers // quadruple in size until they reach 8k, to minimize the number of small reads for longer
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 31.1K bytes - Viewed (0)