Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for opacity (0.03 seconds)

  1. src/test/java/org/codelibs/fess/helper/LogNotificationHelperTest.java

            assertTrue(events.size() > 0);
        }
    
        @Test
        public void test_offer_bufferCapacity_dropsOldest() {
            LogNotificationHelper helper = new LogNotificationHelper();
            // Fill beyond default capacity
            for (int i = 0; i < 1100; i++) {
                helper.offer(new LogNotificationEvent(i, "ERROR", "org.test", "msg" + i, null));
            }
            List<LogNotificationEvent> events = helper.drainAll();
    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)
  2. src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java

                append(b, "count", () -> p.getCount()).append(',');
                append(b, "used", () -> p.getUsed().getBytes()).append(',');
                append(b, "capacity", () -> p.getTotalCapacity().getBytes()).append('}');
                return b.toString();
            }).collect(Collectors.joining(",")));
            buf.append("},");
            final GarbageCollectors gc = jvmStats.getGc();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 7.8K bytes
    - Click Count (0)
  3. AI_POLICY.md

    3. **Actively collaborate with us.** We commit real time and attention to everything we review. Low-effort submissions—where code is generated, submitted, and abandoned—waste our limited review capacity.
    
    ## What contributors can expect from us
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 3.1K bytes
    - Click Count (0)
Back to Top