Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for cred_string (0.18 sec)

  1. internal/bucket/object/lock/lock_test.go

    		expected        map[string]string
    	}{
    		{
    			metadata: map[string]string{
    				"Authorization":        "AWS4-HMAC-SHA256 <cred_string>",
    				"X-Amz-Content-Sha256": "",
    				"Content-Encoding":     "",
    			},
    			expected: map[string]string{
    				"Authorization":        "AWS4-HMAC-SHA256 <cred_string>",
    				"X-Amz-Content-Sha256": "",
    				"Content-Encoding":     "",
    			},
    		},
    		{
    			metadata: map[string]string{
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 17.1K bytes
    - Viewed (0)
  2. cmd/auth-handler_test.go

    			req: &http.Request{
    				URL: &url.URL{
    					Host:   "127.0.0.1:9000",
    					Scheme: httpScheme,
    					Path:   SlashSeparator,
    				},
    				Header: http.Header{
    					"Authorization":        []string{"AWS4-HMAC-SHA256 <cred_string>"},
    					"X-Amz-Content-Sha256": []string{streamingContentSHA256},
    					"Content-Encoding":     []string{streamingContentEncoding},
    				},
    				Method: http.MethodPut,
    				Body:   nopCloser,
    			},
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

        }
      }
    
      public void test1() {
        Red<String> redString = new Red<String>() {};
        Red<Integer> redInteger = new Red<Integer>() {};
        assertEquals(String.class, redString.getClassDirect());
        assertEquals(Integer.class, redInteger.getClassDirect());
    
        Red<String>.Yellow<Integer> yellowInteger = redString.new Yellow<Integer>(redInteger) {};
        assertEquals(Integer.class, yellowInteger.getClassA());
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 19.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

        }
      }
    
      public void test1() {
        Red<String> redString = new Red<String>() {};
        Red<Integer> redInteger = new Red<Integer>() {};
        assertEquals(String.class, redString.getClassDirect());
        assertEquals(Integer.class, redInteger.getClassDirect());
    
        Red<String>.Yellow<Integer> yellowInteger = redString.new Yellow<Integer>(redInteger) {};
        assertEquals(Integer.class, yellowInteger.getClassA());
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 19.5K bytes
    - Viewed (0)
Back to top