Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for listed (1.58 sec)

  1. .github/workflows/codeql-analysis.yml

          with:
            languages: ${{ matrix.language }}
            # If you wish to specify custom queries, you can do so here or in a config file.
            # By default, queries listed here will override any specified in a config file.
            # Prefix the list here with "+" to use these queries and those in the config file.
            # queries: ./path/to/local/query, your-org/your-repo/queries@main
    
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java

            /** The crawl delay in seconds for this directive. */
            private int crawlDelay;
    
            /** The list of allowed path patterns for this directive. */
            private final List<PathPattern> allowedPaths = new ArrayList<>();
    
            /** The list of disallowed path patterns for this directive. */
            private final List<PathPattern> disallowedPaths = new ArrayList<>();
    
            /**
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_tr.properties

    labels.plugin_list=Eklenti listesi
    labels.pathmap_list=Yol eşleme listesi
    labels.log_file_list=Günlük dosyası listesi
    labels.labeltype_list=Etiket türü listesi
    labels.key_match_list=Anahtar eşleşme listesi
    labels.job_log_list=İş günlüğü listesi
    labels.group_list=Grup listesi
    labels.file_config_list=Dosya yapılandırma listesi
    labels.file_auth_list=Dosya kimlik doğrulama listesi
    labels.failure_url_list=Başarısız URL listesi
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 47K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/JsonExtractorTest.java

            CloseableUtil.closeQuietly(in);
    
            final String content = extractData.getContent();
            logger.info("Limited depth content: " + content);
    
            // With depth 1, nested content should not be deeply processed
            assertNotNull(content);
        }
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_fr.properties

    labels.related_content_list=Liste de contenu associé
    labels.plugin_list=Liste des plugins
    labels.pathmap_list=Liste de mappage de chemins
    labels.log_file_list=Liste des fichiers journaux
    labels.labeltype_list=Liste des types d'étiquettes
    labels.key_match_list=Liste de correspondance de clés
    labels.job_log_list=Liste des journaux de tâches
    labels.group_list=Liste des groupes
    labels.file_config_list=Liste de configuration de fichiers
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 49.2K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_de.properties

    labels.plugin_list=Plugin-Liste
    labels.pathmap_list=Pfadzuordnungs-Liste
    labels.log_file_list=Logdatei-Liste
    labels.labeltype_list=Label-Typ-Liste
    labels.key_match_list=Schlüsselübereinstimmungs-Liste
    labels.job_log_list=Job-Log-Liste
    labels.group_list=Gruppen-Liste
    labels.file_config_list=Dateikonfigurations-Liste
    labels.file_auth_list=Dateiauthentifizierungs-Liste
    labels.failure_url_list=Fehler-URL-Liste
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 46.9K bytes
    - Viewed (1)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JsonExtractor.java

         */
        public void setExtractMetadata(final boolean extractMetadata) {
            this.extractMetadata = extractMetadata;
        }
    
        /**
         * Sets the separator for nested keys.
         *
         * @param nestedKeySeparator the nested key separator
         */
        public void setNestedKeySeparator(final String nestedKeySeparator) {
            this.nestedKeySeparator = nestedKeySeparator;
        }
    
        /**
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_it.properties

    labels.joblog_delete_all_cancel=Annulla
    labels.dict_configuration=Lista dizionari
    labels.dict_list_title=Lista dizionari
    labels.dict_list_link=Dizionario
    labels.dictionary_name=Nome
    labels.dictionary_type=Tipo
    labels.dict_synonym_configuration=Lista sinonimi
    labels.dict_synonym_title=Lista sinonimi
    labels.dict_synonym_list_link=Lista
    labels.dict_synonym_link_create=Crea nuovo
    labels.dict_synonym_link_edit=Modifica
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 04 09:16:23 UTC 2025
    - 46.6K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EXTRACTOR_TESTS_README.md

    ## Testing Best Practices
    
    1. **Isolation**: Each test is independent and doesn't affect others
    2. **Clarity**: Test names clearly describe what is being tested
    3. **Coverage**: Both success and failure paths are tested
    4. **Edge Cases**: Null, empty, and boundary conditions are covered
    5. **Resources**: Test resources are properly managed and cleaned up
    
    ## Contributing
    
    When adding new tests:
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Wed Nov 19 08:55:01 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java

     *
     * This class provides methods to normalize text by reading characters from a provided Reader
     * and processing them according to specific rules. The main functionality is encapsulated
     * within the nested {@link TextNormalizeContext} class.
     *
     * <p>The text normalization process includes:
     * <ul>
     *   <li>Treating ISO control characters and specified space characters as spaces.</li>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 12K bytes
    - Viewed (0)
Back to top