Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 51 for eren (0.02 seconds)

  1. src/test/java/org/codelibs/fess/crawler/serializer/DataSerializerTest.java

         */
        @Test
        public void test_serializeDeserialize_null() {
            byte[] serialized = serializer.fromObjectToBinary(null);
            assertNotNull(serialized, "Serialized data should not be null even for null input");
    
            Object deserialized = serializer.fromBinaryToObject(serialized);
            assertNull(deserialized, "Deserialized object should be null");
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 21.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

                    checkBoundarySize(contentType, boundary);
                    return boundary;
                }
            };
        }
    
        // #for_now jflute to suppress CVE-2014-0050 even if commons-fileupload is older than safety version (2024/09/08)
        // but if you use safety version, this extension is basically unneeded (or you can use it as double check)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:48:41 GMT 2026
    - 18.9K bytes
    - Click Count (1)
  3. src/test/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistActionTest.java

            assertNotNull(extraFieldNames);
            assertTrue(extraFieldNames.contains("custom_tags"), "Config-defined array field should appear even without doc data");
            assertTrue(extraFieldNames.contains("custom_publish_date"), "Config-defined date field should appear even without doc data");
    
            @SuppressWarnings("unchecked")
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 34.4K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java

            // Test with different class
            assertFalse(item1.equals("string"));
        }
    
        @Test
        public void test_equals_withUnsortedInputs() {
            // Test that equals works correctly even when inputs are initially unsorted
            String[] inputs1 = { "z", "a", "m" };
            String[] inputs2 = { "m", "z", "a" };
    
            CharMappingItem item1 = new CharMappingItem(1L, inputs1, "output");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16K bytes
    - Click Count (0)
  5. LICENSE

          Work (including but not limited to damages for loss of goodwill,
          work stoppage, computer failure or malfunction, or any and all
          other commercial damages or losses), even if such Contributor
          has been advised of the possibility of such damages.
    
       9. Accepting Warranty or Additional Liability. While redistributing
          the Work or Derivative Works thereof, You may choose to offer,
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue May 08 21:35:34 GMT 2018
    - 11.1K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

            }
        }
    
        /**
         * Test cache refresh mechanism with concurrent access.
         * Verifies that cache is refreshed correctly even with concurrent readers.
         */
        @Test
        public void test_cacheRefresh_withConcurrentReads() throws Exception {
            final int[] loadCount = { 0 };
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

            final EventInfo event = new EventInfo();
            event.name = "test_event";
            coordinatorHelper.dispatchEvent(event);
    
            // Second handler should still be called even if first throws
            assertTrue(secondCalled.get());
        }
    
        @Test
        public void test_dispatchEvent_eventData() {
            final AtomicReference<String> receivedData = new AtomicReference<>();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

            // This test verifies that ProtwordsUpdater constructor properly handles exceptions
            // The actual exception handling is tested by ensuring the updater can be created
            // and properly closed even when errors might occur
    
            protwordsFile.reload(null);
    
            // Test normal creation and cleanup of ProtwordsUpdater
            ProtwordsItem testItem = new ProtwordsItem(0, "testWord");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 21.2K bytes
    - Click Count (0)
  9. src/main/webapp/js/admin/jquery-3.7.1.min.js

    RegExp("^\\.("+t+")"),TAG:new RegExp("^("+t+"|[*])"),ATTR:new RegExp("^"+p),PSEUDO:new RegExp("^"+g),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ge+"*(even|odd|(([+-]|)(\\d*)n|)"+ge+"*(?:([+-]|)"+ge+"*(\\d+)|))"+ge+"*\\)|)","i"),bool:new RegExp("^(?:"+f+")$","i"),needsContext:new RegExp("^"+ge+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ge+"*((?:-\\d)?\\d*)"+ge+"*\\)|)(?=[^-]|$)","i")},N=/^(?:input|select|textarea|button)$/i,q=/^h\d$/i,L=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,H=/[+~]/,O=new...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:07:52 GMT 2024
    - 85.5K bytes
    - Click Count (1)
  10. src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java

            final Map<String, Object> params = new HashMap<>();
            assertNotNull(groovyEngine.evaluate("return container", params));
        }
    
        /**
         * Test that container is accessible even with null paramMap
         */
        @Test
        public void test_evaluate_containerAvailableWithNullParams() {
            assertNotNull(groovyEngine.evaluate("return container", null));
        }
    
    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)
Back to Top