Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 22 for secondes (0.05 seconds)

  1. src/main/resources/fess_label_fr.properties

    labels.search_result_status=Résultats <b>{2}</b> - <b>{3}</b> sur <b>{1}</b> pour <b>{0}</b>
    labels.search_result_status_over=Résultats <b>{2}</b> - <b>{3}</b> sur plus de <b>{1}</b> pour <b>{0}</b>
    labels.search_result_time=({0} secondes)
    labels.prev_page=Précédent
    labels.next_page=Suivant
    labels.did_not_match=Votre recherche - <b>{0}</b> - ne correspond à aucun document.
    labels.did_not_match_suggestion=Essayez d'autres mots-clés ou vérifiez l'orthographe.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 54.4K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/LogNotificationHelperTest.java

            List<LogNotificationEvent> first = helper.drainAll();
            assertEquals(1, first.size());
            List<LogNotificationEvent> second = helper.drainAll();
            assertTrue(second.isEmpty());
        }
    
        @Test
        public void test_offer_bufferCapacity() {
            LogNotificationHelper helper = new LogNotificationHelper();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 6.3K bytes
    - Click Count (0)
  3. src/main/resources/mail/log_notification.dfmail

    subject: [FESS] /*pmb.level*/ Log Alert: /*pmb.hostname*/
    >>>
    --- Server Info ---
    Host Name: /*pmb.hostname:orElse('Unknown')*/
    
    --- Log Summary ---
    Level: /*pmb.level*/
    Total: /*pmb.count*/ event(s) in the last /*pmb.interval*/ seconds
    
    --- Log Details ---
    /*pmb.details*/
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 343 bytes
    - Click Count (0)
  4. .teamcity/src/main/kotlin/configurations/Gradleception.kt

    import model.CIBuildModel
    import model.Stage
    
    /**
     * Build a Gradle distribution (dogfood-first) and use this distribution to build a distribution again (dogfood-second).
     * Use `dogfood-second` to run `test sanityCheck`.
     */
    class Gradleception(
        model: CIBuildModel,
        stage: Stage,
        buildJvm: Jvm,
        jvmDescription: String,
        bundleGroovyMajor: Int? = null,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 04:44:29 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  5. src/main/resources/fess_config.properties

    # Window size in milliseconds.
    rate.limit.window.ms=60000
    # Duration in milliseconds to block IP when limit exceeded.
    rate.limit.block.duration.ms=300000
    # Retry-After header value in seconds.
    rate.limit.retry.after.seconds=60
    # Comma-separated list of whitelisted IPs (e.g., 127.0.0.1,::1).
    rate.limit.whitelist.ips=127.0.0.1,::1
    # Comma-separated list of blocked IPs.
    rate.limit.blocked.ips=
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  6. 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)
  7. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        @Size(max = 1000)
        public String entraidAuthority;
    
        /** Entra ID OAuth2 reply URL. */
        @Size(max = 1000)
        public String entraidReplyUrl;
    
        /** Entra ID state parameter TTL in seconds. */
        @Size(max = 100)
        public String entraidStateTtl;
    
        /** Entra ID default groups. */
        @Size(max = 1000)
        public String entraidDefaultGroups;
    
        /** Entra ID default roles. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

            testClient.reindexResult = true;
            testClient.deleteIndexResult = true;
            testClient.documentCount = 10;
            testClient.aliasCount = 2;
            // First createIndex (backup) succeeds, second (new) fails
            testClient.createIndexFailOnNth = 2;
    
            final boolean result = testClient.reindexConfigIndices(false, allTargetPrefixes());
    
            assertFalse(result);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 28.6K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * Get the value for the key 'rate.limit.retry.after.seconds'. <br>
         * The value is, e.g. 60 <br>
         * comment: Retry-After header value in seconds.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getRateLimitRetryAfterSeconds();
    
        /**
         * Get the value for the key 'rate.limit.retry.after.seconds' as {@link Integer}. <br>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  10. 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)
Back to Top