Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ratelimit (0.17 sec)

  1. src/main/java/jcifs/smb/SmbCopyUtil.java

                    int maxChunkSize = 1024 * 1024;
                    int byteLimit = 16 * 1024 * 1024;
                    boolean retry = false;
                    do {
                        long ooff = 0;
                        while ( ooff < size ) {
                            long wsize = size - ooff;
                            if ( wsize > byteLimit ) {
                                wsize = byteLimit;
                            }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 17.1K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

       this.cancelButtonClasses = options.cancelClass;
    L208:
    L209:        if (typeof options.maxSpan === 'object')
    L210:            this.maxSpan = options.maxSpan;
    L211:
    L212:        if (typeof options.dateLimit === 'object') //backwards compat
    L213:            this.maxSpan = options.dateLimit;
    L214:
    L215:        if (typeof options.opens === 'string')
    L216:            this.opens = options.opens;
    L217:
    L218:        if (typeof options.drops === 'string')
    L219:            this.drops = options.drops;
    ...
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 65.7K bytes
    - Viewed (0)
Back to top