Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testBase64 (0.11 sec)

  1. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

      public void testAtMostOneSeparator() {
        BaseEncoding separated = base64().withSeparator("\n", 3);
        assertThrows(UnsupportedOperationException.class, () -> separated.withSeparator("$", 4));
      }
    
      public void testBase64() {
        // The following test vectors are specified in RFC 4648 itself
        testEncodingWithSeparators(base64(), "", "");
        testEncodingWithSeparators(base64(), "f", "Zg==");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 16:27:30 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/BaseEncodingTest.java

      public void testAtMostOneSeparator() {
        BaseEncoding separated = base64().withSeparator("\n", 3);
        assertThrows(UnsupportedOperationException.class, () -> separated.withSeparator("$", 4));
      }
    
      public void testBase64() {
        // The following test vectors are specified in RFC 4648 itself
        testEncodingWithSeparators(base64(), "", "");
        testEncodingWithSeparators(base64(), "f", "Zg==");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 16:27:30 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  3. cmd/object-api-listobjects_test.go

    		18: {
    			IsTruncated: true,
    			Objects: []ObjectInfo{
    				{Name: "newzen/zen/recurse/again/again/again/pics"},
    			},
    		},
    		// ListObjectsResult-19.
    		// Marker = "obj0" & maxKeys = 1 in the testCase, (testCase44).
    		// Output truncated to 1 value.
    		19: {
    			IsTruncated: true,
    			Objects: []ObjectInfo{
    				{Name: "obj1"},
    			},
    		},
    		// ListObjectsResult-20.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
Back to top