Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 269 for A12345 (0.27 sec)

  1. fess-crawler/src/test/resources/extractor/test_ns.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <hoge:address xmlns:hoge="http://www.example.com/hoge">
    	<hoge:item sex="male" custid="A12345">
    		<hoge:name>鈴木太郎</hoge:name>
    		<hoge:access kind="email"></hoge:access>
    		<hoge:access kind="url">http://www.taro.com/</hoge:access>
    		<hoge:image file="taro.png" />
    	</hoge:item>
    	<hoge:item sex="male" custid="B23456">
    		<hoge:name>佐藤二朗</hoge:name>
    		<hoge:access kind="email">******@****.***</hoge:access>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 707 bytes
    - Viewed (0)
  2. fess-crawler/src/test/resources/extractor/xml/test_utf8bom.xml

    <address xmlns:hoge="http://www.example.com/hoge">
            <item sex="male" custid="A12345">
                    <name>鈴木太郎</name>
                    <access kind="email"></access>
                    <access kind="url">http://www.taro.com/</access>
                    <image file="taro.png" />
            </item>
            <item sex="male" custid="B23456">
                    <name>佐藤二朗</name>
                    <access kind="email">******@****.***</access>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Wed Aug 01 02:48:58 UTC 2018
    - 729 bytes
    - Viewed (0)
  3. fess-crawler/src/test/resources/extractor/test.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <address xmlns:hoge="http://www.example.com/hoge">
    	<item sex="male" custid="A12345">
    		<name>鈴木太郎</name>
    		<access kind="email"></access>
    		<access kind="url">http://www.taro.com/</access>
    		<image file="taro.png" />
    	</item>
    	<item sex="male" custid="B23456">
    		<name>佐藤二朗</name>
    		<access kind="email">******@****.***</access>
    		<image file="jiro.png" />
    	</item>
    	<item sex="female" custid="C34567">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 582 bytes
    - Viewed (0)
  4. src/runtime/string_test.go

    		{"012345", 12345, true},
    		{"98765432100", 98765432100, true},
    		{"9223372036854775807", 1<<63 - 1, true},
    
    		// Good trivial suffix inputs.
    		{"1B", 1, true},
    		{"12345B", 12345, true},
    		{"012345B", 12345, true},
    		{"98765432100B", 98765432100, true},
    		{"9223372036854775807B", 1<<63 - 1, true},
    
    		// Good binary suffix inputs.
    		{"1KiB", 1 << 10, true},
    		{"05KiB", 5 << 10, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 13 14:05:23 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  5. src/crypto/x509/name_constraints_test.go

    	{"\"Fred Bloggs\"@example.com", "Fred Bloggs", "example.com"},
    	{"customer/department=******@****.***", "customer/department=shipping", "example.com"},
    	{"$A12345@example.com", "$A12345", "example.com"},
    	{"!def!******@****.***", "!def!xyz%abc", "example.com"},
    	{"******@****.***", "_somename", "example.com"},
    }
    
    func TestRFC2821Parsing(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. src/strconv/atoi_test.go

    	// underscores allowed with base == 0 only
    	{"1_2_3_4_5", 0, 12345, nil}, // base 0 => 10
    	{"_12345", 0, 0, ErrSyntax},
    	{"1__2345", 0, 0, ErrSyntax},
    	{"12345_", 0, 0, ErrSyntax},
    
    	{"1_2_3_4_5", 10, 0, ErrSyntax}, // base 10
    	{"_12345", 10, 0, ErrSyntax},
    	{"1__2345", 10, 0, ErrSyntax},
    	{"12345_", 10, 0, ErrSyntax},
    
    	{"0x_1_2_3_4_5", 0, 0x12345, nil}, // base 0 => 16
    	{"_0x12345", 0, 0, ErrSyntax},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 05:09:21 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/primitives/ShortsTest.java

        testRotate(new short[] {1, 2, 3, 4, 5}, 0, new short[] {1, 2, 3, 4, 5});
        testRotate(new short[] {1, 2, 3, 4, 5}, 1, new short[] {5, 1, 2, 3, 4});
        testRotate(new short[] {1, 2, 3, 4, 5}, 3, new short[] {3, 4, 5, 1, 2});
        testRotate(new short[] {1, 2, 3, 4, 5}, 4, new short[] {2, 3, 4, 5, 1});
        testRotate(new short[] {1, 2, 3, 4, 5}, 6, new short[] {5, 1, 2, 3, 4});
      }
    
      public void testRotateIndexed() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/primitives/BytesTest.java

        testRotate(new byte[] {1, 2, 3, 4, 5}, 0, new byte[] {1, 2, 3, 4, 5});
        testRotate(new byte[] {1, 2, 3, 4, 5}, 1, new byte[] {5, 1, 2, 3, 4});
        testRotate(new byte[] {1, 2, 3, 4, 5}, 3, new byte[] {3, 4, 5, 1, 2});
        testRotate(new byte[] {1, 2, 3, 4, 5}, 4, new byte[] {2, 3, 4, 5, 1});
        testRotate(new byte[] {1, 2, 3, 4, 5}, 6, new byte[] {5, 1, 2, 3, 4});
      }
    
      public void testRotateIndexed() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/primitives/CharsTest.java

        testRotate(new char[] {'1', '2', '3', '4', '5'}, -3, new char[] {'4', '5', '1', '2', '3'});
        testRotate(new char[] {'1', '2', '3', '4', '5'}, -1, new char[] {'2', '3', '4', '5', '1'});
        testRotate(new char[] {'1', '2', '3', '4', '5'}, 0, new char[] {'1', '2', '3', '4', '5'});
        testRotate(new char[] {'1', '2', '3', '4', '5'}, 1, new char[] {'5', '1', '2', '3', '4'});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. src/internal/fuzz/minimize_test.go

    				}
    				return fmt.Errorf("bad %v", e.Values[0])
    			},
    			input:    []any{[]byte{1, 2, 3, 4, 5}},
    			expected: []any{[]byte("00")},
    		},
    		{
    			name: "set_of_bytes",
    			fn: func(e CorpusEntry) error {
    				b := e.Values[0].([]byte)
    				if len(b) < 3 {
    					return nil
    				}
    				if bytes.Equal(b, []byte{0, 1, 2, 3, 4, 5}) || bytes.Equal(b, []byte{0, 4, 5}) {
    					return fmt.Errorf("bad %v", e.Values[0])
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 12 19:47:40 UTC 2022
    - 4.4K bytes
    - Viewed (0)
Back to top