Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ABC123 (0.94 sec)

  1. src/archive/tar/strconv_test.go

    			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 {
    		b.Run(tt.name, func(b *testing.B) {
    			b.ReportAllocs()
    			for b.Loop() {
    				ts, err := parsePAXTime(tt.in)
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Sep 08 17:08:20 UTC 2025
    - 15K bytes
    - Viewed (0)
  2. src/bytes/bytes_test.go

    type StringTest struct {
    	in  string
    	out []byte
    }
    
    var upperTests = []StringTest{
    	{"", []byte("")},
    	{"ONLYUPPER", []byte("ONLYUPPER")},
    	{"abc", []byte("ABC")},
    	{"AbC123", []byte("ABC123")},
    	{"azAZ09_", []byte("AZAZ09_")},
    	{"longStrinGwitHmixofsmaLLandcAps", []byte("LONGSTRINGWITHMIXOFSMALLANDCAPS")},
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Jul 28 18:13:58 UTC 2025
    - 62.9K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

            body = "Please authenticate.",
          ),
        )
        server.enqueue(
          MockResponse(body = "A"),
        )
        val authenticator = RecordingOkAuthenticator("oauthed abc123", "Bearer")
        client =
          client
            .newBuilder()
            .authenticator(authenticator)
            .build()
        assertContent("A", getResponse(newRequest("/private")))
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 133.2K bytes
    - Viewed (0)
Back to top