- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 452 for sizi (0.02 seconds)
-
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/CreateForm.java
/** Configuration name for identifying this data source */ @Required @Size(max = 200) public String name; /** Optional description of this data configuration */ @Size(max = 1000) public String description; /** Handler class name for processing this data source */ @Required @CustomSize(maxKey = "form.admin.max.input.size") public String handlerName;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/CreateForm.java
*/ @Size(max = 10) public String protocolScheme; /** * The username for authentication. */ @Required @Size(max = 100) public String username; /** * The password for authentication. */ @Size(max = 100) public String password; /** * Additional parameters for the authentication. */ @Size(max = 1000)Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/LogNotificationAppenderTest.java
} @Test public void test_append_nonExcludedLogger() { final LogEvent event = createLogEvent(Level.ERROR, "org.codelibs.fess.helper.SystemHelper", "not excluded"); appender.append(event); final List<LogNotificationEvent> events = ComponentUtil.getLogNotificationHelper().drainAll(); assertEquals(1, events.size());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 10.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/DocMapTest.java
assertTrue(docMap.isEmpty()); assertEquals(0, docMap.size()); docMap.put("key1", "value1"); assertFalse(docMap.isEmpty()); assertEquals(1, docMap.size()); docMap.put("key2", "value2"); assertFalse(docMap.isEmpty()); assertEquals(2, docMap.size()); docMap.clear(); assertTrue(docMap.isEmpty());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/CreateForm.java
@Required @Size(max = 100) public String username; /** The password for file authentication (maximum 100 characters). */ @Size(max = 100) public String password; /** Additional parameters for file authentication (maximum 1000 characters). */ @Size(max = 1000) public String parameters;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/BaseSearchBody.java
*/ public BaseSearchBody() { // Default constructor } /** * Gets the page size for search results. * @return The page size. */ public int getPageSize() { if (size != null) { return size; } return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger(); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/LogNotificationHelperTest.java
} List<LogNotificationEvent> events = helper.drainAll(); // Should be capped at buffer size (1000) assertTrue(events.size() <= 1000); assertTrue(events.size() > 0); } @Test public void test_offer_bufferCapacity_dropsOldest() { LogNotificationHelper helper = new LogNotificationHelper();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 6.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
// Debug: print what we actually got if (result.size() > 0) { for (CharMappingItem item : result) { System.out.println("Unexpected item: " + item.toLineString()); } } // An empty file should return no items assertEquals("Empty file should have no items", 0, result.size());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java
this.existNextPage = existNextPage; } /** * Gets the number of records to display per page. * If page size is not set or is invalid, returns the default page size. * * @return page size */ public int getPageSize() { if (pageSize <= 0) { pageSize = getDefaultPageSize(); } return pageSize; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/FacetInfoTest.java
} // Test size assignment @Test public void test_sizeAssignment() { facetInfo.size = 100; assertEquals(Integer.valueOf(100), facetInfo.size); } // Test minDocCount assignment @Test public void test_minDocCountAssignment() { facetInfo.minDocCount = 10L; assertEquals(Long.valueOf(10), facetInfo.minDocCount); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13.4K bytes - Click Count (0)