- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for tagname (0.33 sec)
-
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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
* * @param tagName the HTML tag name * @param attrName the attribute name to extract URLs from */ public void addChildUrlRule(final String tagName, final String attrName) { if (StringUtil.isNotBlank(tagName) && StringUtil.isNotBlank(attrName)) { childUrlRuleMap.put(tagName, attrName); } } /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 29 07:42:33 UTC 2025 - 30.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/AbstractTransformerTest.java
// Maximum practical length (avoid OutOfMemoryError) StringBuilder maxName = new StringBuilder(); for (int i = 0; i < 1000; i++) { maxName.append("0123456789"); } testTransformer.setName(maxName.toString()); assertEquals(10000, testTransformer.getName().length()); assertEquals(maxName.toString(), testTransformer.getName()); } /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 20.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/EmptyArgumentException.java
* Creates an {@link EmptyArgumentException}. * * @param argName * Name of the argument * @param messageCode * Message code * @param args * Array of arguments */ public EmptyArgumentException(final String argName, final String messageCode, final Object[] args) { this(argName, messageCode, args, null); } /**Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/AssertionUtil.java
*/ public static void assertArgumentArrayIndex(final String argName, final int argValue, final int arraySize) { if (argValue < 0) { throw new ClIllegalArgumentException(argName, "ECL0014", asArray(argName)); } if (argValue >= arraySize) { throw new ClIllegalArgumentException(argName, "ECL0015", asArray(argName, arraySize)); } } /**Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/NullArgumentException.java
private static final long serialVersionUID = 1L; /** * Creates a {@link NullArgumentException}. * * @param argName * Name of the argument that is {@code null} */ public NullArgumentException(final String argName) { super(argName, "ECL0008", asArray(argName)); }Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ClIllegalArgumentException.java
* @param args * Array of arguments */ public ClIllegalArgumentException(final String argName, final String messageCode, final Object[] args) { this(argName, messageCode, args, null); } /** * Creates a {@link ClIllegalArgumentException}. * * @param argName * Name of the argument * @param messageCode * Message code * @param argsRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java
void testMaximumNameLength() { byte[] maxName = new byte[65536]; // 64KB Arrays.fill(maxName, (byte) 'M'); TestCreateContextRequest request = new TestCreateContextRequest(maxName); assertArrayEquals(maxName, request.getName()); assertTrue(request.size() > maxName.length); } @Test
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/RequestParamTest.java
void valueOfRejectsUnknownOrCaseMismatch(String badName) { IllegalArgumentException ex = assertThrows(IllegalArgumentException.class, () -> RequestParam.valueOf(badName)); assertTrue(ex.getMessage().contains(badName), "Exception message should mention the bad name"); } // Edge/Invalid: empty string is invalid for valueOf
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/FessBoot.java
if (host instanceof final StandardHost standardHost) { standardHost.setErrorReportValveClass(SuppressErrorReportValve.class.getName()); } }).useTldDetect(jarName -> (jarName.contains("jstl") || jarName.contains("lasta-taglib"))).asDevelopment(isNoneEnv()).bootAwait(); } /** * Shuts down the Fess application. * * @param args command line arguments (not used) */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.3K bytes - Viewed (0)