Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 160 for Number (0.4 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                buf.append(json);
                buf.append('}');
            } else if (value instanceof Long || value instanceof Integer) {
                buf.append(((Number) value).longValue());
            } else if (value instanceof Number) {
                buf.append(((Number) value).doubleValue());
            } else {
                buf.append('"').append(StringEscapeUtils.escapeJson(value.toString())).append('"');
            }
            return buf;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/lang/ClassUtilTest.java

        }
    
        /**
         *
         */
        @Test
        public void testIsAssignableFrom() {
            assertThat(ClassUtil.isAssignableFrom(Number.class, Integer.class), is(true));
            assertThat(ClassUtil.isAssignableFrom(Integer.class, Number.class), is(not(true)));
            assertThat(ClassUtil.isAssignableFrom(int.class, Integer.class), is(true));
        }
    
        /**
         *
         */
        @Test
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                        <div class="form-inline col-sm-9">
                                            <la:errors property="crawlingThreadCount"/>
                                            <input type="number" name="crawlingThreadCount" id="crawlingThreadCount"
                                                   value="${f:h(crawlingThreadCount)}" class="form-control"
                                                   min="1" max="1000">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 16 12:54:35 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/convert/StringConversionUtil.java

                return (String) value;
            } else if (value instanceof java.util.Date) {
                return toString((java.util.Date) value, pattern);
            } else if (value instanceof Number) {
                return toString((Number) value, pattern);
            } else if (value instanceof byte[]) {
                return Base64Util.encode((byte[]) value);
            } else {
                return value.toString();
            }
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig_edit.jsp

                                        <div class="form-inline col-sm-9">
                                            <la:errors property="depth"/>
                                            <input type="number" name="depth" id="depth"
                                                   value="${f:h(depth)}" class="form-control"
                                                   min="0" max="10000">
                                        </div>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 15.9K bytes
    - Viewed (0)
  6. src/main/resources/fess_message_ru.properties

    errors.failed_to_upload_mapping_file=Failed to upload the Mapping file.
    errors.invalid_kuromoji_token={0} is invalid.
    errors.invalid_kuromoji_segmentation=The number of segmentations {0} does not the match number of readings {1}.
    errors.invalid_str_is_included="{1}" in "{0}" is invalid.
    errors.blank_password=Password is required.
    errors.invalid_confirm_password=Confirm Password does not match.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri May 20 12:12:28 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/Configuration.java

        /**
         * 
         * Property <tt>jcifs.smb.maxBuffers</tt> (int, default 16)
         * 
         * @return number of buffers to keep in cache
         */
        int getBufferCacheSize ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.listCount</tt> (int, default 200)
         * 
         * @return maxmimum number of elements to request in a list request
         */
        int getListCount ();
    
    
        /**
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                                                     title="Floating point number" required="required"
                                                     data-validation="custom"
                                                     data-validation-regexp="(\+|\-)?\d+(\.\d+)?((e|E)(\+|\-)?\d+)?"
                                                     data-validation-help="number (Float)"/>
                                        </div>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/plugins/form-validator/uk.js

    uery)}(this,function(a){!function(a){"use strict";a.formUtils.registerLoadedModule("uk"),a.formUtils.addValidator({name:"ukvatnumber",validatorFunction:function(a){if(a=a.replace(/[^0-9]/g,""),a.length<9)return!1;var b=!1,c=[];c=a.split("");var d=Number(c[7]+c[8]),e=c[0],f=c[1];if(0===e&&f>0)return!1;for(var g=0,h=0;h<7;h++)g+=c[h]*(8-h);for(var i=0,j=0,k=8;k>=2;k--)i+=c[j]*k,j++;for(;g>0;)g-=97;return g=Math.abs(g),d===g&&(b=!0),b||(g%=97,g>=55?g-=55:g+=42,g===d&&(b=!0)),b},errorMessage:"",erro...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  10. src/main/config/openapi/openapi-user.yaml

                type: integer
                minimum: 0
                exclusiveMinimum: false
                default: 0
                example: 0
            - name: num
              in: query
              description: The number of returned documents as a search result
              required: false
              schema:
                type: integer
                minimum: 0
                exclusiveMinimum: false
                maximum: 100
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top