Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for xfdf (0.04 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.wt.stf",
    				"application/vnd.wv.csp+wbxml",
    				"application/vnd.wv.csp+xml",
    				"application/vnd.wv.ssp+xml",
    				"application/vnd.xara",
    				"application/vnd.xfdl",
    				"application/vnd.xfdl.webform",
    				"application/vnd.xmi+xml",
    				"application/vnd.xmpie.cpkg",
    				"application/vnd.xmpie.dpkg",
    				"application/vnd.xmpie.plan",
    				"application/vnd.xmpie.ppkg",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  2. src/math/rand/v2/chacha8_test.go

    	"chacha8:\x00\x00\x00\x00\x00\x00\x00=K3\x9bB!,\x94\x9d\x975\xce'O_t\xee|\xb21\x87\xbb\xbb\xfd)\x8f\xe52\x01\vP\fk",
    	"chacha8:\x00\x00\x00\x00\x00\x00\x00>K3\x9bB!,\x94\x9d\x975\xce'O_t\xee|\xb21\x87\xbb\xbb\xfd)\x8f\xe52\x01\vP\fk",
    	"chacha8:\x00\x00\x00\x00\x00\x00\x00?K3\x9bB!,\x94\x9d\x975\xce'O_t\xee|\xb21\x87\xbb\xbb\xfd)\x8f\xe52\x01\vP\fk",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 55K bytes
    - Viewed (0)
  3. src/strings/strings_test.go

    	{faces, "~", -1, []string{faces}},
    	{"1 2 3 4", " ", 3, []string{"1", "2", "3 4"}},
    	{"1 2", " ", 3, []string{"1", "2"}},
    	{"", "T", math.MaxInt / 4, []string{""}},
    	{"\xff-\xff", "", -1, []string{"\xff", "-", "\xff"}},
    	{"\xff-\xff", "-", -1, []string{"\xff", "\xff"}},
    }
    
    func TestSplit(t *testing.T) {
    	for _, tt := range splittests {
    		a := SplitN(tt.s, tt.sep, tt.n)
    		if !eq(a, tt.a) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. src/bytes/bytes_test.go

    	{"1 2", " ", 3, []string{"1", "2"}},
    	{"123", "", 2, []string{"1", "23"}},
    	{"123", "", 17, []string{"1", "2", "3"}},
    	{"bT", "T", math.MaxInt / 4, []string{"b", ""}},
    	{"\xff-\xff", "", -1, []string{"\xff", "-", "\xff"}},
    	{"\xff-\xff", "-", -1, []string{"\xff", "\xff"}},
    }
    
    func TestSplit(t *testing.T) {
    	for _, tt := range splittests {
    		a := SplitN([]byte(tt.s), []byte(tt.sep), tt.n)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. src/fmt/fmt_test.go

    	{"%d", 12345, "12345"},
    	{"%v", 12345, "12345"},
    	{"%t", true, "true"},
    
    	// basic string
    	{"%s", "abc", "abc"},
    	{"%q", "abc", `"abc"`},
    	{"%x", "abc", "616263"},
    	{"%x", "\xff\xf0\x0f\xff", "fff00fff"},
    	{"%X", "\xff\xf0\x0f\xff", "FFF00FFF"},
    	{"%x", "", ""},
    	{"% x", "", ""},
    	{"%#x", "", ""},
    	{"%# x", "", ""},
    	{"%x", "xyz", "78797a"},
    	{"%X", "xyz", "78797A"},
    	{"% x", "xyz", "78 79 7a"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  6. src/encoding/json/decode_test.go

    		in   string
    		want string
    	}{
    		{Name(""), "hello\xffworld", `"hello\ufffdworld"`},
    		{Name(""), "", `""`},
    		{Name(""), "\xff", `"\ufffd"`},
    		{Name(""), "\xff\xff", `"\ufffd\ufffd"`},
    		{Name(""), "a\xffb", `"a\ufffdb"`},
    		{Name(""), "\xe6\x97\xa5\xe6\x9c\xac\xff\xaa\x9e", `"日本\ufffd\ufffd\ufffd"`},
    	}
    	for _, tt := range tests {
    		t.Run(tt.Name, func(t *testing.T) {
    			got, err := Marshal(tt.in)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
Back to top