- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for addContentSize (0.07 seconds)
-
src/main/java/org/codelibs/fess/util/DocList.java
return contentSize; } /** * Adds to the total content size of this document list. * * @param contentSize the content size to add in bytes */ public void addContentSize(final long contentSize) { this.contentSize += contentSize; } /** * Gets the total processing time for all documents in this list. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/DocListTest.java
@Test public void test_addContentSize_multiple() { DocList docList = new DocList(); docList.addContentSize(100); assertEquals(100, docList.getContentSize()); docList.addContentSize(200); assertEquals(300, docList.getContentSize()); docList.addContentSize(50); assertEquals(350, docList.getContentSize()); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 6.8K bytes - Click Count (0)