Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ABCABCABC (0.08 sec)

  1. src/strings/strings_test.go

    	{"fo", "foo", -1},
    	{"foo", "foo", 0},
    	{"foo", "f", 0},
    	{"oofofoofooo", "f", 7},
    	{"oofofoofooo", "foo", 7},
    	{"barfoobarfoo", "foo", 9},
    	{"foo", "", 3},
    	{"foo", "o", 2},
    	{"abcABCabc", "A", 3},
    	{"abcABCabc", "a", 6},
    }
    
    var indexAnyTests = []IndexTest{
    	{"", "", -1},
    	{"", "a", -1},
    	{"", "abc", -1},
    	{"a", "", -1},
    	{"a", "a", 0},
    	{"\x80", "\xffb", 0},
    	{"aaa", "a", 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. src/bytes/bytes_test.go

    	{"fo", "foo", -1},
    	{"foo", "foo", 0},
    	{"foo", "f", 0},
    	{"oofofoofooo", "f", 7},
    	{"oofofoofooo", "foo", 7},
    	{"barfoobarfoo", "foo", 9},
    	{"foo", "", 3},
    	{"foo", "o", 2},
    	{"abcABCabc", "A", 3},
    	{"abcABCabc", "a", 6},
    }
    
    var indexAnyTests = []BinOpTest{
    	{"", "", -1},
    	{"", "a", -1},
    	{"", "abc", -1},
    	{"a", "", -1},
    	{"a", "a", 0},
    	{"\x80", "\xffb", 0},
    	{"aaa", "a", 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        server.enqueue(
          MockResponse.Builder()
            .addHeader("Content-Encoding: gzip")
            .body(gzip("ABCABCABC"))
            .build(),
        )
        val call = client.newCall(Request(server.url("/r1")))
        val response = call.execute()
        assertThat(response.body.string()).isEqualTo("ABCABCABC")
      }
    
      @ParameterizedTest
      @ArgumentsSource(ProtocolParamProvider::class)
      fun authenticate(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
Back to top