Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 142 for editor (0.23 sec)

  1. src/main/java/jcifs/SID.java

         * @return the RID
         */
        int getRid ();
    
    
        /**
         * Return a String representing this SID ideal for display to
         * users. This method should return the same text that the ACL
         * editor in Windows would display.
         * <p>
         * Specifically, if the SID has
         * been resolved and it is not a domain SID or builtin account,
         * the full DOMAIN\name form of the account will be
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.1K bytes
    - Viewed (0)
  2. src/main/resources/fess_message_ko.properties

    errors.design_file_name_is_invalid = 파일 이름이 잘못되었습니다.
    errors.design_file_is_unsupported_type =이 파일 형식은 지원되지 않습니다.
    errors.failed_to_create_crawling_config_at_wizard = 크롤링 설정의 작성에 실패했습니다.
    errors.design_editor_disabled =이 기능은 사용할 수 없습니다.
    errors.not_found_on_file_system = 찾을 수 없습니다. 원인 : {0}
    errors.could_not_open_on_system = {0}을 열 수 없습니다. <br> 파일이 응용 프로그램과 연결되어 있는지 확인하십시오.
    errors.result_size_exceeded = 더 이상 결과를 표시 할 수 없습니다.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jul 07 06:11:30 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  3. src/main/resources/fess_message.properties

    errors.design_file_name_is_invalid=The file name is invalid.
    errors.design_file_is_unsupported_type=The kind of file is unsupported.
    errors.failed_to_create_crawling_config_at_wizard=Failed to create a crawling config.
    errors.design_editor_disabled=This feature is disabled.
    errors.not_found_on_file_system=Not Found: {0}
    errors.could_not_open_on_system=Could not open {0}. <br/>Please check if the file is associated with an application.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: This feature is disabled. */
        public static final String ERRORS_design_editor_disabled = "{errors.design_editor_disabled}";
    
        /** The key of the message: Not Found: {0} */
        public static final String ERRORS_not_found_on_file_system = "{errors.not_found_on_file_system}";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_ja.properties

    errors.design_file_name_is_invalid = ファイル名が無効です。
    errors.design_file_is_unsupported_type = このファイルの種類はサポートされていません。
    errors.failed_to_create_crawling_config_at_wizard = クロール設定の作成に失敗しました。
    errors.design_editor_disabled = この機能は無効です。
    errors.not_found_on_file_system = 見つかりません。原因:  {0}
    errors.could_not_open_on_system = {0} を開くことができません。<br>ファイルがアプリケーションに関連付けられているか確認してください。
    errors.result_size_exceeded = これ以上の結果は表示できません。
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 15.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/EditForm.java

     */
    package org.codelibs.fess.app.web.admin.dict.kuromoji;
    
    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    public class EditForm extends CreateForm {
    
        @Required
        @ValidateTypeFailure
        public Long id;
    
        public String getDisplayId() {
            return dictId + ":" + id;
        }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 981 bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/app/web/admin/labeltype/EditForm.java

    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * @author Keiichi Watanabe
     */
    public class EditForm extends CreateForm {
    
        @Required
        @Size(max = 1000)
        public String id;
    
        @Size(max = 1000)
        public String updatedBy;
    
        @ValidateTypeFailure
        public Long updatedTime;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/pathmap/EditForm.java

    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * @author Keiichi Watanabe
     */
    public class EditForm extends CreateForm {
    
        @Required
        @Size(max = 1000)
        public String id;
    
        @Size(max = 1000)
        public String updatedBy;
    
        @ValidateTypeFailure
        public Long updatedTime;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java

    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * @author codelibs
     * @author Keiichi Watanabe
     */
    public class EditForm {
    
        public String webConfigName;
    
        public String fileConfigName;
    
        @ValidateTypeFailure
        public String pageNumber;
    
        @ValidateTypeFailure
        public Integer crudMode;
    
        @Required
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/scheduler/EditForm.java

    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * @author Keiichi Watanabe
     */
    public class EditForm extends CreateForm {
    
        @Required
        @Size(max = 1000)
        public String id;
    
        @Required
        @ValidateTypeFailure
        public Integer versionNo;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1K bytes
    - Viewed (0)
Back to top