- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 82 for Netzer (0.04 sec)
-
src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java
* @param propertyType * The property type. Must not be {@literal null}. * @param readMethod * The getter method. * @param writeMethod * The setter method. * @param beanDesc * The {@link BeanDesc}. Must not be {@literal null}. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
propertyDescCache.remove(name); } invalidPropertyNames.clear(); } /** * Prepares the getter method. * * @param readMethod * the getter method * @param propertyName * the property name */ protected void setupReadMethod(final Method readMethod, final String propertyName) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
assertEquals(123, item.getId()); assertEquals("and", item.getInput()); assertNull(item.getNewInput()); } public void test_getNewInput_setNewInput() { // Test getter and setter for newInput StopwordsItem item = new StopwordsItem(1, "or"); assertNull(item.getNewInput()); item.setNewInput("nor"); assertEquals("nor", item.getNewInput());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java
assertNotNull(view); assertNotNull(view.getQueryMap()); assertTrue(view.getQueryMap().isEmpty()); assertNull(view.getTitle()); } // Test title getter and setter public void test_getTitle() { assertNull(facetQueryView.getTitle()); String testTitle = "Test Title"; facetQueryView.setTitle(testTitle);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/SampleElements.java
public static class Chars extends SampleElements<Character> { public Chars() { // elements aren't sorted, to better test SortedSet iteration ordering super('b', 'a', 'c', 'd', 'e'); } } public static class Enums extends SampleElements<AnEnum> { public Enums() { // elements aren't sorted, to better test SortedSet iteration ordering super(AnEnum.B, AnEnum.A, AnEnum.C, AnEnum.D, AnEnum.E); } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 4.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeThumbnailJobTest.java
} // Test getExpiry with default value public void test_getExpiry_default() { assertEquals(30L * 24 * 60 * 60 * 1000L, purgeThumbnailJob.getExpiry()); } // Test expiry setter with valid value public void test_expiry_validValue() { long newExpiry = 60L * 24 * 60 * 60 * 1000L; // 60 days PurgeThumbnailJob result = purgeThumbnailJob.expiry(newExpiry);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.2K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/SampleElements.java
public static class Chars extends SampleElements<Character> { public Chars() { // elements aren't sorted, to better test SortedSet iteration ordering super('b', 'a', 'c', 'd', 'e'); } } public static class Enums extends SampleElements<AnEnum> { public Enums() { // elements aren't sorted, to better test SortedSet iteration ordering super(AnEnum.B, AnEnum.A, AnEnum.C, AnEnum.D, AnEnum.E); } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 4.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
assertSame(execJob, result); } // Test sessionId setter public void test_sessionId() { String testSessionId = "test-session-123"; ExecJob result = execJob.sessionId(testSessionId); assertEquals(testSessionId, execJob.sessionId); assertSame(execJob, result); } // Test logFilePath setter public void test_logFilePath() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Streams.java
* stream is empty. * * <p>Equivalent to {@code stream.reduce((a, b) -> b)}, but may perform significantly better. This * method's runtime will be between O(log n) and O(n), performing better on <a * href="http://gee.cs.oswego.edu/dl/html/StreamParallelGuidance.html">efficiently splittable</a> * streams. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 37K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
} // Test namespace setter public void test_namespace() { String testNamespace = "test_namespace"; CrawlJob result = crawlJob.namespace(testNamespace); assertEquals(testNamespace, crawlJob.namespace); assertSame(crawlJob, result); } // Test documentExpires setter public void test_documentExpires() { int testExpires = 30;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25K bytes - Viewed (0)