- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for HOge (0.06 sec)
-
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: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 13.8K bytes - Viewed (0) -
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 41.3K bytes - Viewed (0) -
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: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 11.6K bytes - Viewed (0) -
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: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 13.9K bytes - Viewed (0) -
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: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 12K bytes - Viewed (0) -
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: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 11.5K bytes - Viewed (0) -
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: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 34.5K bytes - Viewed (0) -
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: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 13.5K bytes - Viewed (0) -
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: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 10.6K bytes - Viewed (0) -
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: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 37K bytes - Viewed (0)