- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 383 for hoge (0.03 sec)
-
src/test/java/org/codelibs/core/beans/util/CopyOptionsTest.java
new CopyOptions().include(BeanNames.hoge(), BeanNames.hoge2()).exclude(BeanNames.hoge2(), BeanNames.hoge3()); assertThat(option.isTargetProperty("hoge"), is(true)); assertThat(option.isTargetProperty("hoge2"), is(not(true))); assertThat(option.isTargetProperty("hoge3"), is(not(true))); assertThat(option.isTargetProperty("hoge4"), is(not(true))); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 12K bytes - Viewed (0) -
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 Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 13.8K 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 Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 11.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java
* */ public static interface MyInterface { /** * */ String HOGE = "hoge"; } /** * */ public static interface MyInterface2 extends MyInterface { /** * */ String HOGE = "hoge2"; } /** * */ public static class MyBean implements MyInterface2 {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 13.9K 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 Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 41.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 Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 34.5K 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 Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 11.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/HcHttpClientTest.java
assertEquals("http://localhost/search?q=java", HcHttpClient.constructRedirectLocation("http://localhost/", "/search?q=java")); assertEquals("http://localhost/home#section1", HcHttpClient.constructRedirectLocation("http://localhost/", "/home#section1")); assertEquals("http://localhost/newpage", HcHttpClient.constructRedirectLocation("http://localhost", "newpage"));
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 11.7K 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 Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 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 Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 10.6K bytes - Viewed (0)