Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 125 for secondi (0.04 seconds)

  1. src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java

            scriptExecutor.addShutdownListener(listener1);
    
            // Add second listener (should replace first)
            TestShutdownListener listener2 = new TestShutdownListener();
            scriptExecutor.addShutdownListener(listener2);
    
            // Call shutdown
            scriptExecutor.shutdown();
    
            // Verify only second listener was called
            assertFalse(listener1.wasShutdownCalled());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/opensearch/config/exentity/JobLogTest.java

        public void test_setId_overwriteExisting() {
            final JobLog jobLog = new JobLog();
            jobLog.setId("first-id");
            assertEquals("first-id", jobLog.getId());
    
            jobLog.setId("second-id");
            assertEquals("second-id", jobLog.getId());
        }
    
        @Test
        public void test_setId_withUuidFormat() {
            final JobLog jobLog = new JobLog();
            final String uuidNoHyphens = "a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/validation/UriTypeTest.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
    - 21.3K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/helper/RateLimitHelper.java

                return false;
            }
    
            return true;
        }
    
        /**
         * Get the Retry-After header value in seconds.
         * @return the retry after seconds
         */
        public int getRetryAfterSeconds() {
            return ComponentUtil.getFessConfig().getRateLimitRetryAfterSecondsAsInteger();
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Dec 24 14:16:27 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java

            // First execution
            String result1 = aggregateLogJob.execute();
            assertNotNull(result1);
            assertTrue(result1.contains("Error 1"));
    
            // Second execution
            String result2 = aggregateLogJob.execute();
            assertNotNull(result2);
            assertTrue(result2.contains("Error 2"));
    
            // Results should be independent
    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)
  6. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

                    // First mock implementation
                }
            };
    
            // Create second customizer
            ComponentCustomizer customizer2 = new ComponentCustomizer() {
                @Override
                public void customize(org.lastaflute.di.core.ComponentDef componentDef) {
                    // Second mock implementation
                }
            };
    
            // Set first customizer
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  7. src/packaging/common/systemd/fess.service

    # Set to "infinity" if you use the 'bootstrap.mlockall: true' option
    # in fess.yml and 'MAX_LOCKED_MEMORY=unlimited' in ${packaging.env.file}
    #LimitMEMLOCK=infinity
    
    # Shutdown delay in seconds, before process is tried to be killed with KILL (if configured)
    TimeoutStopSec=20
    
    [Install]
    WantedBy=multi-user.target
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 1.1K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainBeforeHookTest.java

            // When
            DfFinalTimeZoneProvider provider = curtainBeforeHook.createFinalTimeZoneProvider();
    
            // Then
            TimeZone first = provider.provide();
            TimeZone second = provider.provide();
            assertSame(first, second, "Provider should return the same TimeZone instance");
        }
    
        @Test
        public void test_createFinalTimeZoneProvider_toStringContainsTimeZoneId() {
            // When
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 8.4K bytes
    - Click Count (0)
  9. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinInternalFilteringTest.kt

                v1 = internalSource,
                v2 = publicSource
            ).apply {
                assertHasErrors(
                    *reportedMembers.map {
                        added(it.first, it.second)
                    }.toTypedArray()
                )
                assertHasNoWarning()
                assertHasNoInformation()
            }
        }
    
        @Test
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 14 02:17:00 GMT 2025
    - 6.5K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java

            testData.add(createRelatedQuery("test", new String[] { "second", "set" }, ""));
            mockBhv.setTestData(testData);
    
            relatedQueryHelper.load();
    
            // The second entry should overwrite the first one
            String[] results = relatedQueryHelper.getRelatedQueries("test");
            assertEquals(2, results.length);
            assertEquals("second", results[0]);
            assertEquals("set", results[1]);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 16.7K bytes
    - Click Count (0)
Back to Top