Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 129 for tuples (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/app/service/PathMappingService.java

                op.setRefreshPolicy(Constants.TRUE);
            });
    
            ComponentUtil.getPathMappingHelper().init();
        }
    
        /**
         * Gets the path mapping list by process types.
         *
         * @param processTypeList the process type list
         * @return the path mapping list
         */
        public List<PathMapping> getPathMappingList(final Collection<String> processTypeList) {
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 4.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java

                assertNotNull(cryptographer);
                assertSame(oneWayCryptographer, cryptographer);
            }
        }
    
        // Test with different cipher types
        @Test
        public void test_withBlowfishCipher() {
            // Test with Blowfish cipher
            InvertibleCryptographer blowfish = InvertibleCryptographer.createBlowfishCipher("secretkey");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.2K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/crawler/transformer/FessFileTransformer.java

    /**
     * File transformer implementation for the Fess search engine.
     * This transformer handles file-based document transformation and content extraction
     * using the Fess file transformation process with support for various file types.
     *
     * <p>It extends AbstractFessFileTransformer to provide specialized file processing
     * capabilities using the appropriate extractor for each file type.</p>
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 3.5K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/validation/CronExpressionTest.java

            java.lang.annotation.Target target = CronExpression.class.getAnnotation(java.lang.annotation.Target.class);
            assertNotNull(target);
    
            java.lang.annotation.ElementType[] types = target.value();
            assertEquals(5, types.length);
        }
    
        // Test annotation retention policy
        @Test
        public void test_annotationRetention() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

        private static final int UTF8_BOM_SIZE = 3;
    
        /** Flag indicating whether content should be pruned */
        public boolean prunedContent = true;
    
        /** Map containing URL conversion rules (regex patterns to replacement strings) */
        protected Map<String, String> convertUrlMap = new LinkedHashMap<>();
    
        /** Fess configuration instance */
        protected FessConfig fessConfig;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 01:46:45 GMT 2026
    - 55.3K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/crawler/transformer/FessTransformerTest.java

            Object[] resultArray = (Object[]) result;
            assertEquals(1, resultArray.length);
            assertEquals("value1", resultArray[0]);
        }
    
        /**
         * Test putResultDataBody with different data types in array
         */
        @Test
        public void test_putResultDataBody_mixedTypes() {
            TestFessTransformer transformer = new TestFessTransformer();
            Map<String, Object> dataMap = new HashMap<>();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java

                assertEquals("Simulated OOM", e.getMessage());
            }
        }
    
        @Test
        public void test_execute_multipleDifferentExceptions() {
            // Test job behavior with different exception types in sequence
            final int[] callCount = { 0 };
    
            SearchLogHelper mockSearchLogHelper = new SearchLogHelper() {
                @Override
                public void storeSearchLog() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 12.3K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/ds/DataStoreTest.java

                    // Do nothing
                }
            };
    
            DataConfig config = new DataConfig();
            DataStoreParams params = new DataStoreParams();
    
            // Add various types of parameters
            params.put("string", "test-value");
            params.put("integer", 42);
            params.put("long", 123456789L);
            params.put("boolean", true);
            params.put("double", 3.14);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 13.2K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/helper/SambaHelperTest.java

                    return name;
                }
            });
            sambaHelper.init();
    
            // Test with Turkish locale characters that have special lowercase rules
            assertEquals("1üser", sambaHelper.getAccountId(createMockSID(1, "Üser")));
        }
    
        @Test
        public void test_getAccountId_exception_handling() throws SmbException {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 14.9K bytes
    - Click Count (0)
  10. architecture/standards/0008-use-nullaway.md

    * Redundant null checks may increase binary size, hurt performance, and increase cognitive load for readers
    * Missing null checks may cause NullPointerException
    * Bridging with Kotlin code is polluted with platform types
    * Some public APIs have incorrect nullability annotations (both overly restrictive and overly permissive)
    
    While there are competing ways to represent absence (`Optional`, "Null Object" pattern, method overloads),
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 4K bytes
    - Click Count (0)
Back to Top