Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 577 for Dtype (0.17 sec)

  1. src/main/resources/fess_indices/fess_config.role_type/role_type.json

          "name": {
            "type": "keyword"
          },
          "value": {
            "type": "keyword"
          },
          "sortOrder": {
            "type": "integer"
          },
          "createdBy": {
            "type": "keyword"
          },
          "createdTime": {
            "type": "long"
          },
          "updatedBy": {
            "type": "keyword"
          },
          "updatedTime": {
            "type": "long"
          }
        }
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 410 bytes
    - Viewed (0)
  2. src/main/config/es/fess_config_role_type.json

    {
      "fess_config.role_type" : {
        "aliases" : { },
        "mappings" : {
          "role_type" : {
            "properties" : {
              "createdBy" : {
                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "name" : {
                "type" : "keyword"
              },
              "sortOrder" : {
                "type" : "integer"
              },
              "updatedBy" : {
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 950 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/text/Tokenizer.java

         * @param str
         *            文字列。{@literal null}であってはいけません
         * @param ctype
         *            文字のタイプの配列。{@literal null}や空配列であってはいけません
         */
        public Tokenizer(final String str, final byte[] ctype) {
            assertArgumentNotNull("str", str);
            assertArgumentNotEmpty("ctype", ctype);
    
            this.str = str;
            this.ctype = ctype;
        }
    
        /**
         * @param ctype2
         *            文字のタイプの配列
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java

        }
        public void decode(NdrBuffer buf) throws NdrException {
            decode_header(buf);
    
            if (ptype != 12 && ptype != 2 && ptype != 3 && ptype != 13)
                throw new NdrException("Unexpected ptype: " + ptype);
    
            if (ptype == 2 || ptype == 3) { /* Response or Fault */
                alloc_hint = buf.dec_ndr_long();
                buf.dec_ndr_short();        /* context id */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/DcerpcMessage.java

        @Override
        public void decode ( NdrBuffer buf ) throws NdrException {
            decode_header(buf);
    
            if ( this.ptype != 12 && this.ptype != 2 && this.ptype != 3 && this.ptype != 13 )
                throw new NdrException("Unexpected ptype: " + this.ptype);
    
            if ( this.ptype == 2 || this.ptype == 3 ) { /* Response or Fault */
                this.alloc_hint = buf.dec_ndr_long();
                buf.dec_ndr_short(); /* context id */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5K bytes
    - Viewed (0)
  6. src/main/config/openapi/openapi-user.yaml

                        type: boolean
                        example: false
                      start_record_number:
                        type: integer
                        example: 1
                      end_record_number:
                        type: integer
                        example: 20
                      page_numbers:
                        type: array
                        items:
                          type: string
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jun 19 13:30:00 GMT 2023
    - 21.6K bytes
    - Viewed (1)
  7. src/main/resources/suggest_indices/suggest_analyzer.json

            "type" : "custom",
            "tokenizer" : "standard"
          },
          "reading_term_analyzer_mk" : {
            "type" : "custom",
            "tokenizer" : "standard"
          },
          "normalize_analyzer_mk" : {
            "type" : "custom",
            "tokenizer" : "keyword",
            "char_filter" : ["mapping_char"],
            "filter" : ["lowercase"]
          },
          "contents_analyzer_mk" : {
            "type" : "custom",
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu May 23 05:09:51 GMT 2019
    - 57.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/SID.java

         * <tr>
         * <th>Type</th>
         * <th>Name</th>
         * </tr>
         * <tr>
         * <td>SID_TYPE_USE_NONE</td>
         * <td>0</td>
         * </tr>
         * <tr>
         * <td>SID_TYPE_USER</td>
         * <td>User</td>
         * </tr>
         * <tr>
         * <td>SID_TYPE_DOM_GRP</td>
         * <td>Domain group</td>
         * </tr>
         * <tr>
         * <td>SID_TYPE_DOMAIN</td>
    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)
  9. src/main/config/es/fess_config_file_authentication.json

            "properties" : {
              "createdBy" : {
                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "fileConfigId" : {
                "type" : "keyword"
              },
              "hostname" : {
                "type" : "keyword"
              },
              "parameters" : {
                "type" : "keyword"
              },
              "password" : {
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 1.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/convert/NumberConversionUtil.java

         * 適切な {@link Number}に変換します。
         *
         * @param type
         *            変換先の型
         * @param o
         *            変換元のオブジェクト
         * @return {@literal type}に変換された{@link Number}
         */
        public static Object convertNumber(final Class<?> type, final Object o) {
            if (type == Integer.class) {
                return IntegerConversionUtil.toInteger(o);
            } else if (type == BigDecimal.class) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.7K bytes
    - Viewed (0)
Back to top