Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for editor (0.17 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/java/jcifs/smb1/smb1/ACE.java

         * not be set within all security descriptors even though the ACE was in
         * face inherited. If an inherited ACE is added to a parent the Windows
         * ACL editor will rebuild all children ACEs and set this flag accordingly.
         */
        public boolean isInherited() {
            return (flags & FLAGS_INHERITED) != 0;
        }
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.2K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/jcifs/ACE.java

         * not be set within all security descriptors even though the ACE was in
         * face inherited. If an inherited ACE is added to a parent the Windows
         * ACL editor will rebuild all children ACEs and set this flag accordingly.
         * 
         * @return whether this is an inherited ACE
         */
        boolean isInherited ();
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/MediaType.java

      public static final MediaType I_CALENDAR_UTF_8 = createConstantUtf8(TEXT_TYPE, "calendar");
      public static final MediaType PLAIN_TEXT_UTF_8 = createConstantUtf8(TEXT_TYPE, "plain");
    
      /**
       * <a href="http://www.rfc-editor.org/rfc/rfc4329.txt">RFC 4329</a> declares {@link
       * #JAVASCRIPT_UTF_8 application/javascript} to be the correct media type for JavaScript, but this
       * may be necessary in certain situations for compatibility.
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Aug 07 16:17:10 GMT 2023
    - 46.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/HttpHeaders.java

       * <p>This header is experimental.
       *
       * @since 31.0
       */
      public static final String SEC_CH_PREFERS_COLOR_SCHEME = "Sec-CH-Prefers-Color-Scheme";
    
      /**
       * The HTTP <a
       * href="https://www.rfc-editor.org/rfc/rfc8942#name-the-accept-ch-response-head">{@code
       * Accept-CH}</a> header field name.
       *
       * @since 31.0
       */
      public static final String ACCEPT_CH = "Accept-CH";
      /**
       * The HTTP <a
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:08:08 GMT 2024
    - 34.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top