Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for HOge (0.03 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformerTest.java

            assertEquals("http://hoge/index.html?a=1&b=2", htmlTransformer.normalizeUrl(url));
    
            url = "http://hoge/index.html;jsessionid=hoge#HOGE";
            assertEquals("http://hoge/index.html", htmlTransformer.normalizeUrl(url));
    
            url = "http://hoge/index.html;jsessionid=hoge?a=1#HOGE";
            assertEquals("http://hoge/index.html?a=1", htmlTransformer.normalizeUrl(url));
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            value = transformer.normalizeCanonicalUrl("http://hoge.com/bbb", "http://hoge.com/aaa");
            assertEquals("http://hoge.com/aaa", value);
    
            value = transformer.normalizeCanonicalUrl("http://hoge.com/bbb", "://hoge.com/aaa");
            assertEquals("http://hoge.com/aaa", value);
    
            value = transformer.normalizeCanonicalUrl("http://hoge.com/bbb", "//hoge.com/aaa");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/impl/MimeTypeHelperImplTest.java

            assertContentType("text/plain", null, "hoge.txt");
            assertContentType("text/html", "html/test1.html", "hoge.html");
            assertContentType("text/html", "html/test1.html", "hoge.htm");
            assertContentType("text/html", "html/test1.shtml", "hoge.shtml");
    
            assertContentType("application/msword", "test/text1.txt", "hoge.doc");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/beans/util/CopyOptionsTest.java

            assertThat(option.isTargetProperty("hoge"), is(true));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testIsTargetProperty_includes() throws Exception {
            final CopyOptions option = new CopyOptions().include(BeanNames.hoge());
            assertThat(option.isTargetProperty("hoge"), is(true));
            assertThat(option.isTargetProperty("hoge2"), is(not(true)));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/lang/GenericsUtilTest.java

            Method method = Hoge.class.getMethod("foo", Object.class);
            assertThat(GenericsUtil.getActualClass(method.getGenericParameterTypes()[0], map), is(sameClass(Integer.class)));
            assertThat(GenericsUtil.getActualClass(method.getGenericReturnType(), map), is(sameClass(Long.class)));
    
            method = Hoge.class.getMethod("array");
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java

        public void testGetFieldDescs() throws Exception {
            final BeanDesc beanDesc = new BeanDescImpl(MyBean.class);
            assertThat(beanDesc.hasFieldDesc("HOGE"), is(true));
            final FieldDesc fieldDesc = beanDesc.getFieldDesc("HOGE");
            assertThat(fieldDesc.getFieldName(), is("HOGE"));
            assertThat(beanDesc.hasFieldDesc("aaa"), is(true));
            assertThat(beanDesc.hasFieldDesc("aaA"), is(not(true)));
        }
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java

         */
        @Test
        public void testCopy_BeanToNewMap_Prefix() throws Exception {
            final HogeDto2 hoge = new HogeDto2();
            hoge.aaa = "1";
            hoge.search_bbb = "2";
            hoge.search_ccc$ddd = "3";
            hoge.search_employee$name = "4";
            final Map<String, Object> map = BeanUtil.copyBeanToNewMap(hoge, new CopyOptions().prefix("search_"));
            assertThat(map.size(), is(3));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformerTest.java

                    + "<field name=\"access\"><list><item></item><item>http://www.taro.com/</item><item>jiro@hoge.foo.bar</item><item>090-xxxx-xxxx</item></list></field>\n"//
                    + "<field name=\"image\"><list><item>taro.png</item><item>jiro.png</item><item>hanako.png</item></list></field>\n"//
                    + "<field name=\"email\"><list><item></item><item>jiro@hoge.foo.bar</item></list></field>\n"//
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/collection/ArrayUtilTest.java

        }
    
        /**
         *
         */
        @Test
        public void testIsArray() {
            assertFalse(ArrayUtil.isArray(null));
            assertFalse(ArrayUtil.isArray("hoge"));
            assertTrue(ArrayUtil.isArray(new Object[] {}));
            assertTrue(ArrayUtil.isArray(new Object[] { "" }));
            assertTrue(ArrayUtil.isArray(new Object[] { "aaa" }));
        }
    
        /**
         *
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/suggest/SuggesterTest.java

                    new ElevateWord("test", 2.0f, Collections.singletonList("test"), Collections.singletonList("content"), null, null);
            ElevateWord elevateWord2 =
                    new ElevateWord("hoge", 2.0f, Collections.singletonList("hoge"), Collections.singletonList("content"), null, null);
            ElevateWord elevateWord3 =
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 37K bytes
    - Viewed (0)
Back to top