Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for 216 (0.02 sec)

  1. 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 Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 23.6K bytes
    - Viewed (0)
  2. 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 Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 18.4K bytes
    - Viewed (0)
  3. 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 Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/Murmur3_128HashFunction.java

              k1 ^= (long) toUnsignedInt(bb.get(4)) << 32; // fall through
            case 4:
              k1 ^= (long) toUnsignedInt(bb.get(3)) << 24; // fall through
            case 3:
              k1 ^= (long) toUnsignedInt(bb.get(2)) << 16; // fall through
            case 2:
              k1 ^= (long) toUnsignedInt(bb.get(1)) << 8; // fall through
            case 1:
              k1 ^= (long) toUnsignedInt(bb.get(0));
              break;
            default:
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 16:36:11 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkTest.java

                assertEquals(700L, SMBUtil.readInt8(buffer, EXPECTED_SIZE * 2));
                assertEquals(800L, SMBUtil.readInt8(buffer, EXPECTED_SIZE * 2 + 8));
                assertEquals(900, SMBUtil.readInt4(buffer, EXPECTED_SIZE * 2 + 16));
            }
        }
    
        @Nested
        @DisplayName("Edge Case Tests")
        class EdgeCaseTests {
    
            @Test
            @DisplayName("Should handle encoding with minimum buffer size")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.21.md

      - [Changelog since v1.21.6](#changelog-since-v1216)
      - [Changes by Kind](#changes-by-kind-6)
        - [Feature](#feature-4)
        - [Failing Test](#failing-test)
        - [Bug or Regression](#bug-or-regression-6)
      - [Dependencies](#dependencies-7)
        - [Added](#added-7)
        - [Changed](#changed-7)
        - [Removed](#removed-7)
    - [v1.21.6](#v1216)
      - [Downloads for v1.21.6](#downloads-for-v1216)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  7. cmd/apierrorcode_string.go

    	_ = x[ErrSiteReplicationBackendIssue-212]
    	_ = x[ErrSiteReplicationServiceAccountError-213]
    	_ = x[ErrSiteReplicationBucketConfigError-214]
    	_ = x[ErrSiteReplicationBucketMetaError-215]
    	_ = x[ErrSiteReplicationIAMError-216]
    	_ = x[ErrSiteReplicationConfigMissing-217]
    	_ = x[ErrSiteReplicationIAMConfigMismatch-218]
    	_ = x[ErrAdminRebalanceAlreadyStarted-219]
    	_ = x[ErrAdminRebalanceNotStarted-220]
    	_ = x[ErrAdminBucketQuotaExceeded-221]
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/nego/NegotiateContextRequestTest.java

                context = new PreauthIntegrityNegotiateContext(mockConfig, hashAlgos, salt);
                int encoded = context.encode(buffer, 0);
    
                assertEquals(4 + (count * 2) + 16, encoded);
                assertEquals(context.size(), encoded);
            }
    
            @Test
            @DisplayName("Should encode and decode correctly")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb/NtlmUtilTest.java

            int len = clean.length();
            byte[] out = new byte[len / 2];
            for (int i = 0; i < len; i += 2) {
                out[i / 2] = (byte) Integer.parseInt(clean.substring(i, i + 2), 16);
            }
            return out;
        }
    
        @Test
        @DisplayName("getNTHash: known vector for 'password'")
        void testGetNTHash_knownVector() {
            // Arrange
            String password = "password";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 12K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/dtyp/ACETest.java

                "0x08, Invalid" })
        void testGetApplyToText(String flagsHex, String expectedText) {
            ace.flags = Integer.parseInt(flagsHex.substring(2), 16);
            assertEquals(expectedText, ace.getApplyToText());
        }
    
        @Test
        @DisplayName("Test toString format for allow ACE")
        void testToStringAllowACE() throws SmbException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.6K bytes
    - Viewed (0)
Back to top