Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 81 for ababcd (0.1 sec)

  1. src/strings/strings_test.go

    	{"xab"[:2], "ab", -1},
    	{"", "abc", -1},
    	{"xbc", "abc", -1},
    	{"abc", "abc", 0},
    	{"xabc", "abc", 1},
    	{"xabc"[:3], "abc", -1},
    	{"xabxc", "abc", -1},
    	{"", "abcd", -1},
    	{"xbcd", "abcd", -1},
    	{"abcd", "abcd", 0},
    	{"xabcd", "abcd", 1},
    	{"xyabcd"[:5], "abcd", -1},
    	{"xbcqq", "abcqq", -1},
    	{"abcqq", "abcqq", 0},
    	{"xabcqq", "abcqq", 1},
    	{"xyabcqq"[:6], "abcqq", -1},
    	{"xabxcqq", "abcqq", -1},
    	{"xabcqxq", "abcqq", -1},
    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/unicode/utf8/utf8_test.go

    }
    
    var surrogateMap = []Utf8Map{
    	{0xd800, "\xed\xa0\x80"}, // surrogate min decodes to (RuneError, 1)
    	{0xdfff, "\xed\xbf\xbf"}, // surrogate max decodes to (RuneError, 1)
    }
    
    var testStrings = []string{
    	"",
    	"abcd",
    	"☺☻☹",
    	"日a本b語ç日ð本Ê語þ日¥本¼語i日©",
    	"日a本b語ç日ð本Ê語þ日¥本¼語i日©日a本b語ç日ð本Ê語þ日¥本¼語i日©日a本b語ç日ð本Ê語þ日¥本¼語i日©",
    	"\x80\x80\x80\x80",
    }
    
    func TestFullRune(t *testing.T) {
    	for _, m := range utf8map {
    		b := []byte(m.str)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 06:17:15 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  3. src/crypto/sha256/sha256_test.go

    	{"17eb7d40f0356f8598e89eafad5f6c759b1f822975d9c9b737c8a517", "abcdefgh", "sha\x02\xc1\x05\x9e\xd86|\xd5\a0p\xdd\x17\xf7\x0eY9\xff\xc0\v1hX\x15\x11d\xf9\x8f\xa7\xbe\xfaO\xa4abcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:21:42 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  4. src/go/scanner/scanner_test.go

    		{token.IMAG, "0xf00i", "0xf00i", ""},
    
    		// hexadecimal floats
    		{token.FLOAT, "0x0p0", "0x0p0", ""},
    		{token.FLOAT, "0x12efp-123", "0x12efp-123", ""},
    		{token.FLOAT, "0xABCD.p+0", "0xABCD.p+0", ""},
    		{token.FLOAT, "0x.0189P-0", "0x.0189P-0", ""},
    		{token.FLOAT, "0x1.ffffp+1023", "0x1.ffffp+1023", ""},
    
    		{token.FLOAT, "0x.", "0x.", "hexadecimal literal has no digits"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/v2/conversion_test.go

    		{"empty", []string{}, "foo", []string{}, false},
    		{"foo", []string{"foo"}, "foo", nil, true},
    		{"aaa", []string{"a", "a", "a"}, "a", nil, true},
    		{"abc", []string{"a", "b", "c"}, "c", []string{"a", "b"}, true},
    		{"abbbcc", []string{"a", "b", "b", "b", "c", "c"}, "b", []string{"a", "c", "c"}, true},
    	} {
    		t.Run(tt.name, func(t *testing.T) {
    			got, gotChanged := filterOut(tt.input, tt.x)
    			if !reflect.DeepEqual(tt.expected, got) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 14:34:26 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  6. src/syscall/mkerrors.sh

    	# it encounters while processing the input
    	echo "${!indirect} $includes" | $CC -x c - -E -dM $ccflags |
    	awk '
    		$1 != "#define" || $2 ~ /\(/ || $3 == "" {next}
    
    		$2 ~ /^E([ABCD]X|[BIS]P|[SD]I|S|FL)$/ {next}  # 386 registers
    		$2 ~ /^(SIGEV_|SIGSTKSZ|SIGRT(MIN|MAX))/ {next}
    		$2 ~ /^(SCM_SRCRT)$/ {next}
    		$2 ~ /^(MAP_FAILED)$/ {next}
    		$2 ~ /^CLONE_[A-Z_]+/ {next} # These are defined in exec_linux.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  7. src/hash/crc32/crc32_test.go

    	{0x9e83486d, 0xe2a22936, "ab", "crc\x01ʇ\x91M跾C", "crc\x01wB\x84\x81\xc1\xd0C0"},
    	{0x352441c2, 0x364b3fb7, "abc", "crc\x01ʇ\x91M跾C", "crc\x01wB\x84\x81\xc1\xd0C0"},
    	{0xed82cd11, 0x92c80a31, "abcd", "crc\x01ʇ\x91M\x9e\x83Hm", "crc\x01wB\x84\x81\xe2\xa2)6"},
    	{0x8587d865, 0xc450d697, "abcde", "crc\x01ʇ\x91M\x9e\x83Hm", "crc\x01wB\x84\x81\xe2\xa2)6"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. src/index/suffixarray/sais.go

    		}
    	}
    }
    
    // assignID_8_32 assigns a dense ID numbering to the
    // set of LMS-substrings respecting string ordering and equality,
    // returning the maximum assigned ID.
    // For example given the input "ababab", the LMS-substrings
    // are "aba", "aba", and "ab", renumbered as 2 2 1.
    // sa[len(sa)-numLMS:] holds the LMS-substring indexes
    // sorted in string order, so to assign numbers we can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/asm.go

    		case AABSF:
    			opset(AMOVFD, r0)
    			opset(AMOVDF, r0)
    			opset(AMOVWF, r0)
    			opset(AMOVFW, r0)
    			opset(AMOVWD, r0)
    			opset(AMOVDW, r0)
    			opset(ANEGF, r0)
    			opset(ANEGD, r0)
    			opset(AABSD, r0)
    			opset(ATRUNCDW, r0)
    			opset(ATRUNCFW, r0)
    			opset(ASQRTF, r0)
    			opset(ASQRTD, r0)
    
    		case AMOVVF:
    			opset(AMOVVD, r0)
    			opset(AMOVFV, r0)
    			opset(AMOVDV, r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

    package jcifs.smb1.dcerpc.msrpc;
    
    import jcifs.smb1.dcerpc.*;
    import jcifs.smb1.dcerpc.ndr.*;
    
    public class lsarpc {
    
        public static String getSyntax() {
            return "12345778-1234-abcd-ef00-0123456789ab:0.0";
        }
    
        public static class LsarQosInfo extends NdrObject {
    
            public int length;
            public short impersonation_level;
            public byte context_mode;
            public byte effective_only;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 33K bytes
    - Viewed (0)
Back to top