- Sort Score
- Result 10 results
- Languages All
Results 141 - 143 of 143 for setAccessible (1.21 sec)
-
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
try { java.lang.reflect.Method getExpiredTimeMethod = CrawlingInfoHelper.class.getDeclaredMethod("getExpiredTime", int.class); getExpiredTimeMethod.setAccessible(true); long result1 = (Long) getExpiredTimeMethod.invoke(crawlingInfoHelper, 1); long result7 = (Long) getExpiredTimeMethod.invoke(crawlingInfoHelper, 7);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 26.6K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractFutureState.java
() -> { Class<Unsafe> k = Unsafe.class; for (Field f : k.getDeclaredFields()) { f.setAccessible(true); Object x = f.get(null); if (k.isInstance(x)) { return k.cast(x); } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 34.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java
} private void setValueToObject(Object obj, String name, Object value) { Field field = ClassUtil.getDeclaredField(obj.getClass(), name); field.setAccessible(true); FieldUtil.set(field, obj, value); } public void test_pruneNode() throws Exception { final String data = "<html><body><br/><script>foo</script><noscript>bar</noscript></body></html>";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 41.5K bytes - Viewed (0)