Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 125 for secondi (0.04 seconds)

  1. src/main/java/org/codelibs/fess/helper/JobHelper.java

        /**
         * Default constructor.
         */
        public JobHelper() {
            // Default constructor
        }
    
        /** Monitor interval in seconds (default: 1 hour) */
        protected int monitorInterval = 60 * 60;// 1hour
    
        /** Thread-local storage for job runtime information */
        protected ThreadLocal<LaJobRuntime> jobRuntimeLocal = new ThreadLocal<>();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

        protected int maxRedirectCount;
    
        /** Executor service for concurrent processing of file operations. */
        private final ExecutorService executor;
    
        /** Timeout in seconds for executor service termination during shutdown. */
        private int executorTerminationTimeout = 300;
    
        /**
         * Constructs a new FileListIndexUpdateCallbackImpl with the specified parameters.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 29.7K bytes
    - Click Count (3)
  3. src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java

            events.add(new LogNotificationEvent(base + 1000, "WARN", "org.test.B", "second", null));
            events.add(new LogNotificationEvent(base + 2000, "ERROR", "org.test.C", "third", null));
    
            String details = testableJob.testFormatDetails(events);
    
            int posFirst = details.indexOf("first");
            int posSecond = details.indexOf("second");
            int posThird = details.indexOf("third");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

            // Multiple quoted values - quotes are removed
            value = "\"first\",\"second\",\"third\"";
            result = KuromojiCSVUtil.parse(value);
            assertEquals(3, result.length);
            assertEquals("first", result[0]);
            assertEquals("second", result[1]);
            assertEquals("\"third\"", result[2]);
    
            // Mixed quoted and unquoted - quotes are removed from quoted values
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

            }
    
            /**
             * Compares two times.
             *
             * @param h1 the first hour
             * @param m1 the first minute
             * @param h2 the second hour
             * @param m2 the second minute
             * @return positive if first time is earlier, 0 if equal, negative if later
             */
            protected int compareTime(final int h1, final int m1, final int h2, final int m2) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Nov 23 12:34:02 GMT 2025
    - 10K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/validation/CustomSizeTest.java

            assertEquals("Second group should be AnotherTestGroup", AnotherTestGroup.class, multiAnnotation.groups()[1]);
    
            assertEquals("Should have 2 payloads", 2, multiAnnotation.payload().length);
            assertEquals("First payload should be TestPayload", TestPayload.class, multiAnnotation.payload()[0]);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java

            assertTrue(pattern.match("/test/path"));
    
            // Should match second included path
            assertTrue(pattern.match("/another/path"));
    
            // Should not match first excluded path
            assertFalse(pattern.match("/exclude/path"));
    
            // Should not match second excluded path
            assertFalse(pattern.match("/deny/path"));
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 12.7K bytes
    - Click Count (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBadMultiLangSnippets.java

    /**
     * Checks adoc files for reversed multi-language snippet order.
     * Only rule enforced:
     *   In a ==== ... ==== block, if there are at least two [.multi-language-sample] snippets,
     *   flag when the first is GROOVY and the second is KOTLIN.
     */
    @CacheableTask
    public abstract class FindBadMultiLangSnippets extends DefaultTask {
    
        @InputDirectory
        @PathSensitive(PathSensitivity.RELATIVE)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Aug 29 10:12:17 GMT 2025
    - 7.2K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/timer/HotThreadMonitorTargetTest.java

            HotThreadMonitorTarget target2 = new HotThreadMonitorTarget();
    
            assertNotNull(target1, "First instance should not be null");
            assertNotNull(target2, "Second instance should not be null");
            assertNotSame(target1, target2, "Instances should be different objects");
        }
    
        @Test
        public void test_class_has_proper_annotations() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/crawler/serializer/DataSerializerTest.java

         */
        @Test
        public void test_serializeDeserialize_linkedHashMap() {
            LinkedHashMap<String, Object> original = new LinkedHashMap<>();
            original.put("first", 1);
            original.put("second", 2);
            original.put("third", 3);
    
            byte[] serialized = serializer.fromObjectToBinary(original);
            assertNotNull(serialized, "Serialized data should not 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)
Back to Top