- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for dropend (0.06 seconds)
-
src/test/java/org/codelibs/fess/helper/LogNotificationHelperTest.java
helper.offer(new LogNotificationEvent(i, "ERROR", "org.test", "msg" + i, null)); } List<LogNotificationEvent> events = helper.drainAll(); // The newest events should be retained; oldest dropped // Last event should be msg1099 LogNotificationEvent last = events.get(events.size() - 1); assertEquals("msg1099", last.getMessage()); } @Test
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/main/java/org/codelibs/fess/helper/LogNotificationHelper.java
if (logNotificationTarget != null) { logNotificationTarget.flush(); } } /** * Offers an event to the buffer. If the buffer exceeds the maximum size, the oldest event is dropped. * * @param event the log notification event to add */ public void offer(final LogNotificationEvent event) { int maxBufferSize; try {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 5.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/FessBoot.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess; // DO NOT DEPEND OTHER JARs import java.io.File; import java.util.List; import java.util.Properties; import org.apache.catalina.Container; import org.apache.catalina.Context; import org.apache.catalina.Host;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 11.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
* * @param cpSeparator the classpath separator to use * @param buf the StringBuilder to append to * @param libDir the directory containing JAR files * @param basePath the base path to prepend to JAR file names */ protected void appendJarFile(final String cpSeparator, final StringBuilder buf, final File libDir, final String basePath) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 14.2K bytes - Click Count (0)