Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for str (0.14 sec)

  1. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java

                return ((List<?>) value).stream().map(v -> v.toString()).toArray(n -> new String[n]);
            }
            String str = DfTypeUtil.toString(value);
            if (str == null) {
                return null;
            }
            return new String[] { str };
        }
    
        protected LocalDateTime toLocalDateTime(Object value) {
            return DfTypeUtil.toLocalDateTime(value);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  2. src/main/resources/fess_message_ru.properties

    errors.failed_to_upload_mapping_file=Failed to upload the Mapping file.
    errors.invalid_kuromoji_token={0} is invalid.
    errors.invalid_kuromoji_segmentation=The number of segmentations {0} does not the match number of readings {1}.
    errors.invalid_str_is_included="{1}" in "{0}" is invalid.
    errors.blank_password=Password is required.
    errors.invalid_confirm_password=Confirm Password does not match.
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri May 20 12:12:28 GMT 2022
    - 10.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            querySet.add("on");
            document.put("title", "on 111 strong on aaaa");
            assertEquals("<strong>on</strong> 111 str<strong>on</strong>g <strong>on</strong> <strong>aaa</strong>a",
                    viewHelper.getContentTitle(document));
    
            querySet.add("$");
            document.put("title", "$test");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.1K bytes
    - Viewed (0)
  4. src/main/webapp/js/suggestor.js

                      $liEle = $("<li/>");
                      $liEle.html(str);
                      $liEle.click(function() {
                        var str = $(this).html();
                        suggestor.fixList();
                        $textArea.val(str);
                        if (typeof $settingSearchForm !== "undefined") {
                          $settingSearchForm.submit();
    JavaScript
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Mar 30 05:45:24 GMT 2023
    - 13.3K bytes
    - Viewed (2)
  5. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractBehavior.java

                return ((List<?>) value).stream().map(v -> v.toString()).toArray(n -> new String[n]);
            }
            String str = DfTypeUtil.toString(value);
            if (str == null) {
                return null;
            }
            return new String[] { str };
        }
    
        protected LocalDateTime toLocalDateTime(Object value) {
            return DfTypeUtil.toLocalDateTime(value);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        public String generateDocId(final Map<String, Object> map) {
            return UUID.randomUUID().toString().replace("-", StringUtil.EMPTY);
        }
    
        public String abbreviateLongText(final String str) {
            return StringUtils.abbreviate(str, ComponentUtil.getFessConfig().getMaxLogOutputLengthAsInteger());
        }
    
        public String normalizeHtmlLang(final String value) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (2)
  7. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            }
            return value.replaceAll(escapedHighlightPre, highlightTagPre).replaceAll(escapedHighlightPost, highlightTagPost);
        }
    
        protected String removeHighlightTag(final String str) {
            return str.replaceAll(originalHighlightTagPre, StringUtil.EMPTY).replaceAll(originalHighlightTagPost, StringUtil.EMPTY);
        }
    
        public HighlightInfo createHighlightInfo() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 40.1K bytes
    - Viewed (2)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: "{1}" in "{0}" is invalid. */
        public static final String ERRORS_invalid_str_is_included = "{errors.invalid_str_is_included}";
    
        /** The key of the message: Password is required. */
        public static final String ERRORS_blank_password = "{errors.blank_password}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  9. src/main/resources/fess_message_ja.properties

    errors.failed_to_upload_mapping_file = マッピングファイルのアップロードに失敗しました。
    errors.invalid_kuromoji_token={0} はトークンとして正しくありません。
    errors.invalid_kuromoji_segmentation={0} の分割数と {1}の分割数が一致しません。
    errors.invalid_str_is_included = {0}では{1}は無効です。
    errors.blank_password = パスワードが必要になります。
    errors.invalid_confirm_password = パスワードの確認と一致しません。
    errors.cannot_delete_doc_because_of_running = クローラーが実行されています。文書を削除することはできません。
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 15.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

        protected static String urlEncode(final String str) {
            if (str == null) {
                return StringUtil.EMPTY;
            }
            return URLEncoder.encode(str, Constants.UTF_8_CHARSET);
        }
    
        @Deprecated
        protected static String urlDecode(final String str) {
            if (str == null) {
                return StringUtil.EMPTY;
            }
            return URLDecoder.decode(str, Constants.UTF_8_CHARSET);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 19.9K bytes
    - Viewed (0)
Back to top