- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for setAttr (0.03 seconds)
-
src/main/java/org/codelibs/fess/util/PrunedTag.java
* Sets a custom attribute name-value pair that this pruned tag should match. * * @param name the attribute name to match * @param value the attribute value to match */ public void setAttr(final String name, final String value) { attrName = name; attrValue = value; } @Override public String toString() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Nov 24 04:23:08 GMT 2025 - 7.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/interval/FessIntervalControllerTest.java
*/ @Test public void test_constructor() { FessIntervalController controller = new FessIntervalController(); assertNotNull(controller); } /** * Test getter and setter for delayMillisAfterProcessing */ @Test public void test_delayMillisAfterProcessing() { FessIntervalController controller = new FessIntervalController();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 6.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/PurgeThumbnailJobTest.java
} // Test getExpiry with default value @Test public void test_getExpiry_default() { assertEquals(30L * 24 * 60 * 60 * 1000L, purgeThumbnailJob.getExpiry()); } // Test expiry setter with valid value @Test public void test_expiry_validValue() { long newExpiry = 60L * 24 * 60 * 60 * 1000L; // 60 days PurgeThumbnailJob result = purgeThumbnailJob.expiry(newExpiry);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.4K bytes - Click Count (0)