Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 11 for tantes (0.04 seconds)

  1. src/main/resources/fess_message_pt_BR.properties

    errors.login.failure = Falha no login.
    errors.app.illegal.transition = Transição ilegal. Por favor, tente novamente.
    errors.app.db.already.deleted = Pode ter sido excluído por outro processo. Por favor, tente novamente.
    errors.app.db.already.updated = Pode ter sido atualizado por outro processo. Por favor, tente novamente.
    errors.app.db.already.exists = Os dados já existem. Por favor, tente novamente.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

                final int[] fints = parseTime(from);
                fromHours = fints[0];
                fromMinutes = fints[1];
                final int[] tints = parseTime(to);
                toHours = tints[0];
                toMinutes = tints[1];
                final String[] values = days.split(",");
                final List<Integer> list = new ArrayList<>();
                for (final String value : values) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Nov 23 12:34:02 GMT 2025
    - 10K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            wrongTag.addAttribute("target", "_blank");
            assertFalse(tag.matches(wrongTag));
        }
    
        @Test
        public void test_matches_complexCombinations() {
            // Test tag with both id and css (id takes precedence)
            PrunedTag tagWithIdAndCss = new PrunedTag("div");
            tagWithIdAndCss.setId("main");
            tagWithIdAndCss.setCss("container");
    
            MockNode nodeWithBothIdAndClass = new MockNode("div");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 21.1K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/crawler/helper/FessMimeTypeHelperTest.java

                public String getCrawlerDocumentMimetypeExtensionOverrides() {
                    return ".txt=application/custom-text";
                }
            });
    
            mimeTypeHelper.init();
    
            // Override takes priority over both content and filename detection
            try (InputStream is = new ByteArrayInputStream("plain text content".getBytes(StandardCharsets.UTF_8))) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 24 09:06:33 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

                }
    
                @Override
                public String getSystemProperty(final String key) {
                    return systemPropMap.get(key);
                }
            };
    
            // Test that new key takes precedence over legacy key
            systemPropMap.put("entraid.permission.fields", "newField");
            systemPropMap.put("aad.permission.fields", "legacyField");
            String[] fields = fessConfig.getEntraIdPermissionFields();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 25.4K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

                if (count % 10 == 0 && sleepTime < 500) {
                    sleepTime = Math.min((long) (sleepTime * 1.3), 500);
                }
            }
            if (3000 <= count) {
                logger.info("Time out: Crawler takes too much time");
                //TODO fail(); // Time Out
            }
    
            logger.info("Crawler terminated");
        }
    
        protected static String createWebConfig(final Map<String, Object> requestBody) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  7. src/main/resources/fess_message_fr.properties

    success.upload_bad_word = Fichier de mots incorrects téléversé.
    success.upload_mapping_file = Fichier de mappage téléversé.
    success.send_testmail=E-mail de test envoyé.
    success.job_log_delete_all=Journaux de tâches supprimés.
    success.changed_password=Mot de passe changé.
    success.started_data_update=Démarrage d'un processus de mise à jour des données.
    success.reindex_started=Réindexation démarrée.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 14.1K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorEdgeCaseTest.java

    import org.codelibs.fess.util.QueryResponseList;
    import org.dbflute.optional.OptionalThing;
    import org.junit.jupiter.api.Test;
    
    /**
     * Edge case tests for RankFusionProcessor.
     * Tests boundary conditions, empty states, and error scenarios.
     */
    public class RankFusionProcessorEdgeCaseTest extends UnitFessTestCase {
    
        private static final String ID_FIELD = "_id";
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 14.2K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java

            String testKey = "test.property";
            String systemValue = "system-value";
            System.setProperty(Constants.FESS_CONFIG_PREFIX + testKey, systemValue);
    
            try {
                // Test that system property takes precedence
                String value = fessConfig.get(testKey);
                assertEquals(systemValue, value);
            } finally {
                // Clean up system property
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.9K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

     * and user information logs. It supports different aggregation types for
     * analytics and reporting purposes.
     */
    public class SearchLogService {
    
        /** Date format pattern for parsing time ranges. */
        private static final String YYYY_MM_DD_HH_MM = "yyyy-MM-dd HH:mm";
    
        /** Field name for count values in aggregation results. */
        private static final String COUNT = "count";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 32.7K bytes
    - Click Count (0)
Back to Top