Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for description (0.23 sec)

  1. src/main/java/jcifs/smb1/smb1/ACE.java

     * such as those associated with files and directories. The Windows OS
     * determines which users have the necessary permissions to access objects
     * based on these entries.
     * <p>
     * To fully understand the information exposed by this class a description
     * of the access check algorithm used by Windows is required. The following
     * is a basic description of the algorithm. For a more complete description
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java

        public String boost;
    
        public String available;
    
        public String sortOrder;
    
        public String createdBy;
    
        public String createdTime;
    
        public String versionNo;
    
        public String description;
    
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
            existNextPage = false;
            pageSize = getDefaultPageSize();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/SearchForm.java

    /**
     * @author codelibs
     * @author Keiichi Watanabe
     */
    public class SearchForm {
    
        public String name;
    
        public String handlerName;
    
        public String description;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 848 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/dataconfig/SearchBody.java

    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    public class SearchBody extends BaseSearchBody {
    
        public String name;
    
        public String handlerName;
    
        public String description;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 879 bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java

     * <p><table border="1" cellpadding="3" cellspacing="0" width="100%">
     * <tr bgcolor="#ccccff">
     * <td colspan="2"><b><code>SmbNamedPipe</code> Constructor Examples</b></td>
     * <tr><td width="20%"><b>Code Sample</b></td><td><b>Description</b></td></tr>
     * <tr><td width="20%"><pre>
     * new SmbNamedPipe( "smb1://server/IPC$/PIPE/foo",
     *         SmbNamedPipe.PIPE_TYPE_RDWR |
     *         SmbNamedPipe.PIPE_TYPE_CALL );
     * </pre></td><td>
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.3K bytes
    - Viewed (0)
  6. src/main/config/es/fess_config_file_config.json

                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "depth" : {
                "type" : "integer"
              },
              "description" : {
                "type" : "text"
              },
              "excludedDocPaths" : {
                "type" : "keyword"
              },
              "excludedPaths" : {
                "type" : "keyword"
              },
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 2.3K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess_user.user/user.json

          },
          "homePostalAddress" : {
            "type" : "keyword"
          },
          "labeledURI" : {
            "type" : "keyword"
          },
          "roomNumber" : {
            "type" : "keyword"
          },
          "description" : {
            "type" : "keyword"
          },
          "title" : {
            "type" : "keyword"
          },
          "pager" : {
            "type" : "keyword"
          },
          "street" : {
            "type" : "keyword"
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 2.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/user/cbean/bs/BsUserCB.java

            }
    
            public void columnDepartmentNumber() {
                doColumn("departmentNumber");
            }
    
            public void columnDescription() {
                doColumn("description");
            }
    
            public void columnDestinationIndicator() {
                doColumn("destinationIndicator");
            }
    
            public void columnDisplayName() {
                doColumn("displayName");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.7K bytes
    - Viewed (0)
  9. dbflute_fess/dfprop/outsideSqlMap.dfprop

        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isRequiredSqlDescription: (NotRequired - Default true)
        #   [true]
        #     You should always write the description of outsideSql.
        #     If it doesn't exist, the OutsideSqlTest task fails.
        #
        #; isRequiredSqlDescription = true
        # - - - - - - - - - -/
    
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jul 25 06:04:16 GMT 2015
    - 8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcShareGetInfo.java

        }
    
        public ACE[] getSecurity() throws IOException {
            srvsvc.ShareInfo502 info502 = (srvsvc.ShareInfo502)info;
            if (info502.security_descriptor != null) {
                SecurityDescriptor sd;
                sd = new SecurityDescriptor(info502.security_descriptor, 0, info502.sd_size);
                return sd.aces;
            }
            return null;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 1.6K bytes
    - Viewed (0)
Back to top