- Sort Score
- Num 10 results
- Language All
Results 71 - 80 of 104 for event2 (0.05 seconds)
-
src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 26 01:49:09 GMT 2024 - 64.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java
// Test insert with no chains @Test public void test_insert_noChains() { User user = createTestUser("testuser"); authenticationManager.insert(user); // Should not throw exception even with no chains } // Test insert with single chain @Test public void test_insert_singleChain() { User user = createTestUser("testuser");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeValidatorTest.java
} @Test public void test_isValid_basic() { final CustomSize annotation = createBasicAnnotation(); validator.initialize(annotation); // Test that the method can be called (even if context handling is complex) try { final boolean result = validator.isValid("test", null); assertNotNull(Boolean.valueOf(result), "isValid should return a boolean result");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 5.4K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/BinaryBreakingSuperclassChangeRule.groovy
* * <p> * Reports simple superclass changes (e.g. the removal of a superclass) as a breaking change, as it affects what methods can be * called with the given type, even if the methods and fields inherited don't change. * </p> */ class BinaryBreakingSuperclassChangeRule extends AbstractSuperClassChangesRule { BinaryBreakingSuperclassChangeRule(Map<String, Object> params) {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Oct 06 19:15:15 GMT 2022 - 1.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/interval/FessIntervalControllerTest.java
FessIntervalController controller = new FessIntervalController(); controller.setDelayMillisForWaitingNewUrl(0L); // Set to 0 to avoid actual delay // This should not throw any exceptions even if helpers are not available try { // Note: In unit test environment, ComponentUtil may not be fully initialized // The improved error handling should catch and log any exceptions
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 6.2K bytes - Click Count (0) -
src/main/webapp/js/jquery-3.7.1.min.map
"wrap","attached","fragment","nodes","htmlPrefilter","createTextNode","rtypenamespace","returnTrue","returnFalse","on","types","one","origFn","event","off","leverageNative","isSetup","saved","isTrigger","delegateType","stopPropagation","stopImmediatePropagation","preventDefault","trigger","isImmediatePropagationStopped","handleObjIn","eventHandle","events","t","handleObj","handlers","namespaces","origType","elemData","create","handle","triggered","dispatch","bindType","delegateCount","setup","ma...
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 26 01:07:52 GMT 2024 - 131.6K bytes - Click Count (0) -
architecture/standards/0002-avoid-using-java-serialization.md
- **Security:** Java serialization poses security risks, especially related to deserialization vulnerabilities. - **Version Compatibility:** With Java serialization, even minor changes to a class (like adding a field) can break compatibility. - **Cross-Language Compatibility:** Java serialization is inherently Java-centric and does not support cross-language scenarios well. - **Type Safety:**
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 14:05:45 GMT 2026 - 2.3K bytes - Click Count (0) -
build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 26 09:04:32 GMT 2026 - 9.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/PopularWordHelperTest.java
String result = popularWordHelper.getCacheKey(seed, tags, roles, fields, excludes); assertNotNull(result); assertTrue(result.contains("test_seed")); // Should contain 4 separators even with null arrays long separatorCount = result.chars().filter(ch -> ch == '\n').count(); assertEquals(4, separatorCount); } @Test public void test_getCacheKey_emptyArrays() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
Crawler.Options options = new Crawler.Options(); options.sessionId = "test-session"; options.expires = "invalid"; // Verify the expires value is set even if invalid assertEquals("invalid", options.expires); } @Test public void test_process_withName() throws Exception { // Test that name is properly set
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 30.8K bytes - Click Count (0)