Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for links (0.25 sec)

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

                if (logger.isDebugEnabled()) {
                    logger.debug("{} does not exists.", dir);
                }
                return;
            }
            try (Stream<Path> walk = Files.walk(dir, FileVisitOption.FOLLOW_LINKS)) {
                walk.sorted(Comparator.reverseOrder()).forEach(f -> {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Deleting {}", f);
                    }
                    try {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_ja.properties

    labels.dict_list_title=辞書一覧
    labels.dict_list_link=辞書
    labels.dictionary_name=名前
    labels.dictionary_type=種類
    labels.dict_synonym_configuration=同義語一覧
    labels.dict_synonym_title=同義語一覧
    labels.dict_synonym_list_link=一覧
    labels.dict_synonym_link_create=新規作成
    labels.dict_synonym_link_edit=編集
    labels.dict_synonym_link_delete=削除
    labels.dict_synonym_link_details=詳細
    labels.dict_synonym_link_download=ダウンロード
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  3. src/main/java/org/codelibs/fess/util/ParameterUtil.java

                final PrimaryCipher cipher = ComponentUtil.getPrimaryCipher();
                final String[] lines = value.split("[\r\n]");
                for (final String line : lines) {
                    if (StringUtil.isNotBlank(line)) {
                        final int pos = line.indexOf('=');
                        if (pos == 0) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

        /** The key of the configuration. e.g. root@localhost */
        String MAIL_RETURN_PATH = "mail.return.path";
    
        /**
         * Get the value of property as {@link String}.
         * @param propertyKey The key of the property. (NotNull)
         * @return The value of found property. (NotNull: if not found, exception)
         * @throws ConfigPropertyNotFoundException When the property is not found.
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String RESPONSE_FIELD_content_description = "response.field.content_description";
    
        /** The key of the configuration. e.g. url_link */
        String RESPONSE_FIELD_url_link = "response.field.url_link";
    
        /** The key of the configuration. e.g. site_path */
        String RESPONSE_FIELD_site_path = "response.field.site_path";
    
        /** The key of the configuration. e.g. 50 */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  6. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

                while ((line = reader.readLine()) != null) {
                    // Remove comments
                    final String replacedLine = line.replaceAll("#.*$", StringUtil.EMPTY).trim();
    
                    // Skip empty lines or comment lines
                    if (replacedLine.length() == 0) {
                        if (updater != null) {
                            updater.write(line);
                        }
                        continue;
                    }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_ru.properties

    labels.dict_kuromoji_list_link=List
    labels.dict_kuromoji_link_edit=Создать новый
    labels.dict_kuromoji_link_edit=Изменить
    labels.dict_kuromoji_link_delete=Удалить
    labels.dict_kuromoji_link_details=Details
    labels.dict_kuromoji_link_download=Download
    labels.dict_kuromoji_link_upload=Upload
    labels.dict_kuromoji_token=Token
    labels.dict_kuromoji_segmentation=Segmentation
    labels.dict_kuromoji_reading=Reading
    labels.dict_kuromoji_pos=POS
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_failure_url_link_list = "{labels.failure_url_link_list}";
    
        /** The key of the message: Details */
        public static final String LABELS_failure_url_link_details = "{labels.failure_url_link_details}";
    
        /** The key of the message: Delete */
        public static final String LABELS_failure_url_link_delete = "{labels.failure_url_link_delete}";
    
        /** The key of the message: Delete All */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            assertEquals("PrunedTag [tag=a, id=null, css=null, attrName=target, attrValue=_blank]", tags[0].toString());
    
            tags = PrunedTag.parse("a.link,div#123");
            assertEquals(2, tags.length);
            assertEquals("PrunedTag [tag=a, id=null, css=link, attrName=null, attrValue=null]", tags[0].toString());
            assertEquals("PrunedTag [tag=div, id=123, css=null, attrName=null, attrValue=null]", tags[1].toString());
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  10. src/main/resources/fess_config.properties

    index.field.filename=filename
    index.field.thumbnail=thumbnail
    index.field.virtual_host=virtual_host
    response.field.content_title=content_title
    response.field.content_description=content_description
    response.field.url_link=url_link
    response.field.site_path=site_path
    response.max.title.length=50
    response.max.site.path.length=100
    response.highlight.content_title.enabled=true
    response.inline.mimetypes=application/pdf,text/plain
    
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
Back to top