Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 232 for Numbers (0.55 sec)

  1. src/main/webapp/js/admin/adminlte.min.js.map

    .height()\n\n        $('body').css('min-height', box_height);\n      }\n\n      $('body.hold-transition').removeClass('hold-transition')\n    }\n\n    _max(numbers) {\n      // Calculate the maximum number in a list\n      let max = 0\n\n      Object.keys(numbers).forEach((key) => {\n        if (numbers[key] > max) {\n          max = numbers[key]\n        }\n      })\n\n      return max\n    }\n\n    // Static\n\n    static _jQueryInterface(config = '') {\n      return this.each(function () {\n ...
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 07:55:41 GMT 2020
    - 77K bytes
    - Viewed (1)
  2. 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)
  3. src/main/java/jcifs/smb1/util/Encdec.java

        }
        public static int enc_floatbe( float f, byte[] dst, int di )
        {
            return enc_uint32be( Float.floatToIntBits( f ), dst, di );
        }
    
        /* Decode floating point numbers
         */
    
        public static float dec_floatle( byte[] src, int si )
        {
            return Float.intBitsToFloat( dec_uint32le( src, si ));
        }
        public static float dec_floatbe( byte[] src, int si )
        {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 10.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/entity/PingResponse.java

        private static final String TIMED_OUT = "timed_out";
        private static final String NUMBER_OF_NODES = "number_of_nodes";
        private static final String NUMBER_OF_DATA_NODES = "number_of_data_nodes";
        private static final String NUMBER_OF_PENDING_TASKS = "number_of_pending_tasks";
        private static final String NUMBER_OF_IN_FLIGHT_FETCH = "number_of_in_flight_fetch";
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/convert/LongConversionUtil.java

            if (o == null) {
                return null;
            } else if (o instanceof Long) {
                return (Long) o;
            } else if (o instanceof Number) {
                return ((Number) o).longValue();
            } else if (o instanceof String) {
                return toLong((String) o);
            } else if (o instanceof java.util.Date) {
                if (pattern != null) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess_config.web_authentication.json

    {
      "settings": {
        "index": {
          "refresh_interval": "1s",
          "number_of_shards": 1,
          "number_of_replicas": 0,
          "auto_expand_replicas": "0-1"
        }
      }
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 173 bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess_config.elevate_word.json

    {
      "settings": {
        "index": {
          "refresh_interval": "1s",
          "number_of_shards": 1,
          "number_of_replicas": 0,
          "auto_expand_replicas": "0-1"
        }
      }
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 173 bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/fess_log.click_log.json

    {
      "settings": {
        "index": {
          "refresh_interval": "1s",
          "number_of_shards": 5,
          "number_of_replicas": 0,
          "auto_expand_replicas": "0-1"
        }
      }
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 19 05:21:19 GMT 2018
    - 173 bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess_config.data_config.json

    {
      "settings": {
        "index": {
          "refresh_interval": "1s",
          "number_of_shards": 1,
          "number_of_replicas": 0,
          "auto_expand_replicas": "0-1"
        },
        "analysis": {
          "analyzer": {
            "standard_analyzer": {
              "type": "custom",
              "tokenizer": "standard",
              "filter": [
                "cjk_width",
                "asciifolding",
                "lowercase",
                "stop",
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 484 bytes
    - Viewed (0)
  10. dbflute_fess/dfprop/conditionBeanMap.dfprop

    #         ; LessThan = map:{ PRODUCT = list:{ PRODUCT_NAME ; PRODUCT_HANDLE_CODE } }
    #         ; !InScope = map:{ $$ALL$$ = list:{ type:LONGVARCHAR } }
    #     }
    #     # This means that Number excludes all version-no's NotEqual.
    #     ; Number = map:{
    #         ; !NotEqual = map:{ $$ALL$$ = list:{ $$VersionNo$$ } }
    #     }
    #     # This means that Date does not includes NotEqual at all tables.  
    #     ; Date = map:{
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 4K bytes
    - Viewed (0)
Back to top