- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ClassName (0.03 sec)
-
src/main/java/org/codelibs/core/io/SerializeUtil.java
if (allowedPattern.endsWith("*")) { String prefix = allowedPattern.substring(0, allowedPattern.length() - 1); if (className.startsWith(prefix)) { return ObjectInputFilter.Status.ALLOWED; } } else if (className.equals(allowedPattern)) { return ObjectInputFilter.Status.ALLOWED; } } // Reject everything else
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/PrunedTag.java
} /** * Parses a comma-separated string of pruned tag configurations into an array of PrunedTag objects. * Each tag configuration follows the pattern: tagname[attr=value].classname#id * * Examples: * - "div.content" matches div elements with class "content" * - "span#header" matches span elements with ID "header"Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 04:23:08 UTC 2025 - 7.1K bytes - Viewed (0)