Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for testBase32 (0.11 sec)

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

      public void testBase64UrlInvalidDecodings() {
        assertFailsToDecode(base64Url(), "+zzz", "Unrecognized character: +");
        assertFailsToDecode(base64Url(), "/zzz", "Unrecognized character: /");
      }
    
      public void testBase32() {
        // The following test vectors are specified in RFC 4648 itself
        testEncodingWithCasing(base32(), "", "");
        testEncodingWithCasing(base32(), "f", "MY======");
    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 testBase64UrlInvalidDecodings() {
        assertFailsToDecode(base64Url(), "+zzz", "Unrecognized character: +");
        assertFailsToDecode(base64Url(), "/zzz", "Unrecognized character: /");
      }
    
      public void testBase32() {
        // The following test vectors are specified in RFC 4648 itself
        testEncodingWithCasing(base32(), "", "");
        testEncodingWithCasing(base32(), "f", "MY======");
    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

    		12: {
    			IsTruncated: false,
    			Objects: []ObjectInfo{
    				{Name: "obj2"},
    			},
    		},
    		// ListObjectsResult-13.
    		// Marker is set to "man" in the testCase, (testCase37).
    		13: {
    			IsTruncated: false,
    			Objects: []ObjectInfo{
    				{Name: "newPrefix0"},
    				{Name: "newPrefix1"},
    				{Name: "newzen/zen/recurse/again/again/again/pics"},
    				{Name: "obj0"},
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  4. cmd/post-policy_test.go

    		if rec.Code != testCase.expectedRespStatus {
    			t.Errorf("Test %d: %s: Expected the response status to be `%d`, but instead found `%d`", i+1, instanceType, testCase.expectedRespStatus, rec.Code)
    		}
    	}
    
    	testCases2 := []struct {
    		objectName          string
    		data                []byte
    		expectedRespStatus  int
    		accessKey           string
    		secretKey           string
    		malformedBody       bool
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top