Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for hoge4 (0.04 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractorTest.java

            String value;
    
            value = "hoge.txt";
            expected = "hoge.txt";
            actual = extractor.getFileName(value);
            assertEquals(expected, actual);
    
            value = "/hoge.txt";
            expected = "hoge.txt";
            actual = extractor.getFileName(value);
            assertEquals(expected, actual);
    
            value = "fuga/hoge.txt";
            expected = "hoge.txt";
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. fess-crawler/src/test/resources/extractor/test_attr.html

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>タイトル</title>
    </head>
    <body>
    本文1
    <img src="hoge.gif" alt="画像1"/>
    <img src="hoge.gif" alt="画像2" title="タイトル1"/>
    <a href="hoge.html" title="タイトル2">リンク1</a>
    本文2
    </body>
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 308 bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbAuthenticationHolderTest.java

            smbAuthenticationHolder.add(fooAuth);
    
            assertEquals(hogeAuth, smbAuthenticationHolder.get("smb://hoge/"));
            assertEquals(fugaAuth, smbAuthenticationHolder.get("smb://fuga/"));
            assertEquals(fooAuth, smbAuthenticationHolder.get("smb://foo:1000/"));
            assertEquals(hogeAuth, smbAuthenticationHolder.get("smb://hoge/text.txt"));
            assertEquals(fugaAuth, smbAuthenticationHolder.get("smb://fuga/text.txt"));
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/exception/SIllegalStateExceptionTest.java

         * .
         */
        @Test
        public void testSIllegalStateExceptionString() {
            final ClIllegalStateException clIllegalStateException = new ClIllegalStateException("hoge");
            assertThat(clIllegalStateException.getMessage(), is("hoge"));
        }
    
        /**
         * Test method for
         * {@link org.codelibs.core.exception.ClIllegalStateException#SIllegalStateException(java.lang.String, java.lang.Throwable)}
         * .
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/beans/impl/MethodDescTest.java

            assertThat(foo.isStatic(), is(not(true)));
            assertThat(foo.isFinal(), is(not(true)));
            assertThat(foo.isAbstract(), is(not(true)));
            assertThat(foo.invoke(new MyBean()), is((Object) "hoge"));
        }
    
        /**
         * @throws Exception
         */
        @Test(expected = MethodNotStaticRuntimeException.class)
        public void testFoo_InvokeStatic() throws Exception {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. fess-crawler/src/test/resources/extractor/test_ns.xml

    <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">jiro@hoge.foo.bar</hoge:access>
    		<hoge:image file="jiro.png" />
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 707 bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/message/MessageFormatterTest.java

        /**
         * @throws Exception
         */
        @Test
        public void testGetMessageWithArgs() throws Exception {
            final String s = MessageFormatter.getMessage("EMSG0001", "hoge");
            System.out.println(s);
            assertThat(s, is("[EMSG0001]hogeが見つかりません"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testGetMessageIllegalSystemName() throws Exception {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java

            assertTrue(robotsTxt.allows("/ddd", "Crawler/2.0"));
            assertTrue(robotsTxt.allows("/aaa", "Hoge Crawler"));
            assertTrue(robotsTxt.allows("/bbb", "Hoge Crawler"));
            assertTrue(robotsTxt.allows("/ccc", "Hoge Crawler"));
            assertFalse(robotsTxt.allows("/ddd", "Hoge Crawler"));
    
            String[] sitemaps = robotsTxt.getSitemaps();
            assertEquals(2, sitemaps.length);
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. 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">jiro@hoge.foo.bar</access>
    		<image file="jiro.png" />
    	</item>
    	<item sex="female" custid="C34567">
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 582 bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/XmlExtractorTest.java

            CloseableUtil.closeQuietly(bis);
            assertEquals("UTF-16BE", encoding);
        }
    
        public void test_getEncoding_none() {
            final InputStream in = new ByteArrayInputStream("<hoge></hoge>".getBytes());
            final BufferedInputStream bis = new BufferedInputStream(in);
            final String encoding = xmlExtractor.getEncoding(bis);
            CloseableUtil.closeQuietly(bis);
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top