Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for 1234abcd (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/signature-v4-utils_test.go

    	signedHeaders = append(signedHeaders, "expect")
    	// expected header values.
    	expectedHost := "play.min.io:9000"
    	expectedContentSha256 := "1234abcd"
    	expectedTime := UTCNow().Format(iso8601Format)
    	expectedTransferEncoding := "gzip"
    	expectedExpect := "100-continue"
    
    	r, err := http.NewRequest(http.MethodGet, "http://play.min.io:9000", nil)
    	if err != nil {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed Apr 09 14:28:39 GMT 2025
    - 14.3K bytes
    - Click Count (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/TextUtilTest.java

            assertEquals("123 あいう", normalizeText(" 123 あいう ", 100, -1, 2, false));
            assertEquals("123 abc", normalizeText(" 123\nabc ", 100, -1, 2, false));
            assertEquals("123abc", normalizeText(" 123abc ", 100, -1, 2, false));
    
            assertEquals("!!", normalizeText("!!!", 100, -1, 2, false));
            assertEquals("//", normalizeText("///", 100, -1, 2, false));
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Thu Aug 07 02:55:08 GMT 2025
    - 8.2K bytes
    - Click Count (0)
  3. src/archive/tar/strconv_test.go

    			ok:   true,
    		},
    		{
    			name: "WithNanoTruncate",
    			in:   "1.123456789123",
    			want: time.Unix(1, 123456789),
    			ok:   true,
    		},
    		{
    			name: "TrailingError",
    			in:   "1.123abc",
    			want: time.Time{},
    			ok:   false,
    		},
    		{
    			name: "LeadingError",
    			in:   "1.abc123",
    			want: time.Time{},
    			ok:   false,
    		},
    	}
    	for _, tt := range tests {
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Sep 11 17:52:43 GMT 2025
    - 15K bytes
    - Click Count (0)
Back to Top