- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 14 for counters (0.04 seconds)
-
src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java
private void setupMockComponentsWithCounter(final AtomicInteger counter) { setupMockComponents(); // Override thumbnail manager with counter ThumbnailManager mockThumbnailManager = new ThumbnailManager() { @Override public int generate(ExecutorService executorService, boolean cleanup) { counter.incrementAndGet(); // Return 0 to exit the loopCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.2K bytes - Click Count (0) -
src/main/resources/fess_message_pt_BR.properties
errors.password_length = A senha deve ter pelo menos {0} caracteres. errors.password_no_uppercase = A senha deve conter pelo menos uma letra maiúscula. errors.password_no_lowercase = A senha deve conter pelo menos uma letra minúscula. errors.password_no_digit = A senha deve conter pelo menos um dígito. errors.password_no_special_char = A senha deve conter pelo menos um caractere especial.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 13.7K bytes - Click Count (0) -
src/main/webapp/js/chat.js
} /** * Update character counter */ function updateCharCount() { var count = elements.chatInput.val().length; var maxLength = 4000; elements.charCount.text(count); var counter = elements.charCount.parent(); counter.removeClass('warning danger'); if (count >= maxLength * 0.95) { counter.addClass('danger');Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 01:36:02 GMT 2026 - 30.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java
*/ @Test public void test_evaluate_noStateLeakBetweenEvaluations() { final GroovyEngine engine = new GroovyEngine(); final String script = "def counter = 0; counter += x; return counter"; final Map<String, Object> params1 = new HashMap<>(); params1.put("x", 5); assertEquals(5, engine.evaluate(script, params1));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:03:38 GMT 2026 - 29.1K bytes - Click Count (0) -
CONTRIBUTING.md
* Why is this change done? What's the use case? * For user-facing features, what will the API look like? * What test cases should it have? What could go wrong? * How will it roughly be implemented? We'll happily provide code pointers to save you time. We may ask you to answer these questions directly in the GitHub issue or (for large changes) in a shared Google Doc.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 27 18:43:39 GMT 2026 - 19.1K bytes - Click Count (0) -
src/main/webapp/css/chat.css
padding: 0 0.25rem; } .input-hint { font-size: 0.6875rem; color: #8993a4; } .char-counter { font-size: 0.6875rem; color: #8993a4; font-variant-numeric: tabular-nums; } .char-counter.warning { color: #ff991f; } .char-counter.danger { color: #de350b; } /* ============================================ Responsive adjustmentsCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:21:57 GMT 2026 - 19.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProviderTest.java
// Verify assertTrue(result.isPresent()); assertEquals(Locale.JAPAN, result.get()); } // Test findBusinessLocale with language only (no country) @Test public void test_findBusinessLocale_withLanguageOnly() { // Setup mock config FessConfig mockConfig = new FessConfig.SimpleImpl() { @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
final AtomicInteger counter = new AtomicInteger(0); final ForkJoinPool pool = new ForkJoinPool(10); for (int i = 0; i < 1000; i++) { pool.execute(() -> { assertEquals(result, crawlingInfoHelper.generateId(dataMap)); counter.incrementAndGet(); }); } pool.shutdown();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 28.7K bytes - Click Count (0) -
src/main/webapp/WEB-INF/orig/view/chat/chat.jsp
</button> </div> <div class="input-footer"> <span class="input-hint"><la:message key="labels.chat_input_hint" /></span> <span class="char-counter"><span id="charCount">0</span> / 4000</span> </div> </div> </div> </div> </div> </div> </main> <jsp:include page="../footer.jsp" />
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:21:57 GMT 2026 - 10.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
assertNull(crawlingConfigHelper.getCrawlingConfig("W123")); } @Test public void test_store_counterIncrement() { final String sessionId = "testSession"; // Test counter increment String sessionCountId1 = crawlingConfigHelper.store(sessionId, crawlingConfigHelper.getCrawlingConfig("W1")); assertEquals("testSession-1", sessionCountId1);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 35.3K bytes - Click Count (0)