Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 129 for abcdeff (0.59 sec)

  1. src/regexp/testdata/re2-search.txt

    "^(?:^[ay]*[bx]+c)"
    -;-;-;-
    -;0-4;-;0-4
    "(?:^[ay]*[bx]+c)$"
    -;-;-;-
    -;-;-;-
    strings
    ""
    "abcdef"
    regexps
    "def$"
    -;-;-;-
    -;3-6;-;3-6
    "^(?:def$)$"
    -;-;-;-
    -;-;-;-
    "^(?:def$)"
    -;-;-;-
    -;-;-;-
    "(?:def$)$"
    -;-;-;-
    -;3-6;-;3-6
    strings
    ""
    "abcdeff"
    regexps
    "def$"
    -;-;-;-
    -;-;-;-
    "^(?:def$)$"
    -;-;-;-
    -;-;-;-
    "^(?:def$)"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 42.4K bytes
    - Viewed (0)
  2. src/hash/test_cases.txt

    a
    ab
    abc
    abcd
    abcde
    abcdef
    abcdefg
    abcdefgh
    abcdefghi
    abcdefghij
    Discard medicine more than two years old.
    He who has a shady past knows that nice guys finish last.
    I wouldn't marry him with a ten foot pole.
    Free! Free!/A trip/to Mars/for 900/empty jars/Burma Shave
    The days of the digital watch are numbered.  -Tom Stoppard
    Nepal premier won't resign.
    For every action there is an equal and opposite government program.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.3K bytes
    - Viewed (0)
  3. src/hash/adler32/adler32_test.go

    	{0x012600c4, "ab", "adl\x01\x00b\x00b"},
    	{0x024d0127, "abc", "adl\x01\x00b\x00b"},
    	{0x03d8018b, "abcd", "adl\x01\x01&\x00\xc4"},
    	{0x05c801f0, "abcde", "adl\x01\x01&\x00\xc4"},
    	{0x081e0256, "abcdef", "adl\x01\x02M\x01'"},
    	{0x0adb02bd, "abcdefg", "adl\x01\x02M\x01'"},
    	{0x0e000325, "abcdefgh", "adl\x01\x03\xd8\x01\x8b"},
    	{0x118e038e, "abcdefghi", "adl\x01\x03\xd8\x01\x8b"},
    	{0x158603f8, "abcdefghij", "adl\x01\x05\xc8\x01\xf0"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 21:04:12 UTC 2017
    - 5.5K bytes
    - Viewed (0)
  4. src/net/http/responsewrite_test.go

    				ProtoMinor:    0,
    				Request:       dummyReq("GET"),
    				Header:        Header{},
    				Body:          io.NopCloser(strings.NewReader("abcdef")),
    				ContentLength: 6,
    			},
    
    			"HTTP/1.0 503 Service Unavailable\r\n" +
    				"Content-Length: 6\r\n\r\n" +
    				"abcdef",
    		},
    		// Unchunked response without Content-Length.
    		{
    			Response{
    				StatusCode:    200,
    				ProtoMajor:    1,
    				ProtoMinor:    0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  5. src/go/printer/testdata/alignment.golden

    	abcdefghijklmnopqrstuvwxyzabc	string
    	abcde				string
    	abcdefghijklmnopqrstuvwxyzabcde	string
    	abcdefg				string
    }
    
    func main() {
    	_ := Fmt{
    		abcdefghijklmnopqrstuvwx:		"foo",
    		abcdefghijklmnopqrstuvwxyza:		"foo",
    		abcdefghijklmnopqrstuvwxyzab:		"foo",
    		abcdefghijklmnopqrstuvwxyzabc:		"foo",
    		abcde:					"foo",
    		abcdefghijklmnopqrstuvwxyzabcde:	"foo",
    		abcdefg:				"foo",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  6. src/go/printer/testdata/alignment.input

    	abcdefghijklmnopqrstuvwxyzabc string
    	abcde string
    	abcdefghijklmnopqrstuvwxyzabcde string
    	abcdefg string
    }
    
    func main() {
    	_ := Fmt{
    		abcdefghijklmnopqrstuvwx: "foo",
    		abcdefghijklmnopqrstuvwxyza: "foo",
    		abcdefghijklmnopqrstuvwxyzab: "foo",
    		abcdefghijklmnopqrstuvwxyzabc: "foo",
    		abcde: "foo",
    		abcdefghijklmnopqrstuvwxyzabcde: "foo",
    		abcdefg: "foo",
    		abcdefghijklmnopqrstuvwxy: "foo",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  7. src/regexp/find_test.go

    }
    
    var findTests = []FindTest{
    	{``, ``, build(1, 0, 0)},
    	{`^abcdefg`, "abcdefg", build(1, 0, 7)},
    	{`a+`, "baaab", build(1, 1, 4)},
    	{"abcd..", "abcdef", build(1, 0, 6)},
    	{`a`, "a", build(1, 0, 1)},
    	{`x`, "y", nil},
    	{`b`, "abc", build(1, 1, 2)},
    	{`.`, "a", build(1, 0, 1)},
    	{`.*`, "abcdef", build(1, 0, 6)},
    	{`^`, "abcde", build(1, 0, 0)},
    	{`$`, "abcde", build(1, 5, 5)},
    	{`^abcd$`, "abcd", build(1, 0, 4)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 15:28:50 UTC 2021
    - 16.3K bytes
    - Viewed (0)
  8. platforms/core-execution/hashing/src/test/groovy/org/gradle/internal/hash/HashCodeTest.groovy

            where:
            a                                  | b                                  | equals
            "abcdef12"                         | "abcdef12"                         | true
            "abcdef12"                         | "abcdef1234"                       | false
            "abcdef1234"                       | "abcdef12"                         | false
            "e5b7d1919156335a9c453a4956bbe775" | "e5b7d1919156335a9c453a4956bbe775" | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  9. src/hash/crc64/crc64_test.go

    	{0x32d36776c4200000, 0x40bdf58fb0895f2, "abcde", "crc\x02s\xba\x84\x84\xbb\xcd]\xef6\xc4 \x00\x00\x00\x00\x00", "crc\x02`&\x9aR\xe1\xb7\xfee\xbces \x0e\x84\xb0F"},
    	{0x3002d36776c42000, 0xd08e9f8545a700f4, "abcdef", "crc\x02s\xba\x84\x84\xbb\xcd]\xef7v\xc4 \x00\x00\x00\x00", "crc\x02`&\x9aR\xe1\xb7\xfee,\xd8\tJ\x1a'v'"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 25 06:32:12 UTC 2018
    - 9.9K bytes
    - Viewed (0)
  10. test/typeparam/absdiff.go

    Matthew Dempsky <******@****.***> 1646087539 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top