- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for setter (0.04 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerContextTest.java
assertEquals(20, context.getMaxThreadCheckCount()); assertEquals(-1, context.getMaxDepth()); assertEquals(0L, context.getMaxAccessCount()); } /** * Test sessionId getter and setter */ public void test_sessionId() { assertNull(crawlerContext.getSessionId()); crawlerContext.setSessionId("test-session-001");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 25.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/AbstractRule.java
* Provides common functionality and properties for crawler rules. * * <p> * This class handles the registration of rules with the {@link RuleManager} * and provides getter and setter methods for common properties such as * {@code ruleId} and {@code responseProcessor}. * </p> * * <p> * Subclasses should extend this class and implement the abstract methods
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 2.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java
fail("Should propagate exception from listener"); } catch (Exception e) { assertTrue(e.getMessage().contains("Test exception")); } } /** * Test getter and setter for componentName */ public void test_componentName_getterSetter() { assertNull(factory.getComponentName()); factory.setComponentName("testName");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 19.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/AbstractTransformerTest.java
transformer.name = "directFieldAccess"; assertEquals("directFieldAccess", transformer.getName()); // Setter should update the field transformer.setName("setterAccess"); assertEquals("setterAccess", transformer.name); // Field modification should be reflected in getter transformer.name = "modifiedField"; assertEquals("modifiedField", transformer.getName()); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 20.8K bytes - Viewed (0) -
cmd/erasure-server-pool-rebalance.go
jiuker <******@****.***> 1757018844 +0800
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Sep 04 20:47:24 UTC 2025 - 28.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerStatusTest.java
assertEquals("In progress", statusMap.get(CrawlerStatus.RUNNING)); assertEquals("Completed", statusMap.get(CrawlerStatus.DONE)); // Test with EnumMap for better performance java.util.EnumMap<CrawlerStatus, String> enumMap = new java.util.EnumMap<>(CrawlerStatus.class); enumMap.put(CrawlerStatus.INITIALIZING, "Init"); enumMap.put(CrawlerStatus.RUNNING, "Run");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 15.8K bytes - Viewed (0) -
guava-gwt/pom.xml
like to get an error. Currently we do, but if we add the extra <inherits> lines, we won't. I have one idea for a better approach, but it's painful, and I haven't tested it: We could postprocess Collect.gwt.xml to add <skip> lines for all the files that should be covered by testModule.gwt.xml. Maybe I'll try it someday.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 19.4K bytes - Viewed (0) -
src/bytes/bytes.go
case r == '_': return false } return true } // Letters and digits are not separators if unicode.IsLetter(r) || unicode.IsDigit(r) { return false } // Otherwise, all we can do for now is treat spaces as separators. return unicode.IsSpace(r) } // Title treats s as UTF-8-encoded bytes and returns a copy with all Unicode letters that begin // words mapped to their title case. //
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Sep 03 14:04:47 UTC 2025 - 35.5K bytes - Viewed (0) -
docs/en/docs/release-notes.md
* Fix duplicate dependency in `pyproject.toml`. PR [#128](https://github.com/tiangolo/fastapi/pull/128) by [@zxalif](https://github.com/zxalif). ## 0.10.3 * Add Gitter chat, badge, links, etc. [https://gitter.im/tiangolo/fastapi](https://gitter.im/tiangolo/fastapi) . PR [#117](https://github.com/tiangolo/fastapi/pull/117).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 12:48:45 UTC 2025 - 544.1K bytes - Viewed (0)