Home
last modified time | relevance | path

Searched refs:bytes (Results 26 – 50 of 319) sorted by last modified time

12345678910>>...13

/plugin/edittable/lib/
H A Dhandsontable.full.js12264 bytes = {
12270 byteFormatOrder = [ bytes.general, bytes.binary, bytes.decimal ],
12705 bytes = '',
12846 bytes = ' ';
12850 format = format.replace(bytes + byteFormat.marker, '');
12855 bytes = bytes + units.suffix;
12954 ((bytes) ? bytes : '') +
13437 return formatByteUnits(this._value, bytes.binary.suffixes, bytes.binary.scale).suffix;
13441 return formatByteUnits(this._value, bytes.general.suffixes, bytes.general.scale).suffix;
13445 return formatByteUnits(this._value, bytes.decimal.suffixes, bytes.decimal.scale).suffix;
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DUtils.php49 * bytes have been read.
52 * @param int $maxLen Maximum number of bytes to read. Pass -1
86 * of bytes have been read.
90 * @param int $maxLen Maximum number of bytes to read. Pass -1
107 $bytes = 0;
109 $buf = $source->read($maxLen - $bytes);
113 $bytes += $len;
115 if ($bytes == $maxLen) {
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DCatNamespace.asciidoc77 $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb)
116 $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb)
168 $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb)
213 $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb)
256 $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb)
279 $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb)
317 $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb)
382 $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb)
422 $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb)
441 $params['bytes']
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md103 * Added `bytes` processor by @deguif [#2008](https://github.com/ruflin/Elastica/pull/2008)
/plugin/html5video2/script/
H A Dvideo.min.js23bytes="+t.offset+"-"+e)),i}function Zo(e,t){return e=e.toString(16),"00".substring(0,2-e.length)+e… property in ArrayBuffer.isView
/plugin/dokucrypt2/
H A Dscript.js467 // Add message length in bytes to header
482 Note that this message will be padded with zero bytes
547 // The number of bytes to shift by in shiftRow, indexed by [Nb][row]
626 // to the result. x and y should be bytes representing elements of GF(2^8)
703 // key. The parameter key is an array of bytes holding the value of the key.
721 // Now walk down the rest of the array filling in expanded key bytes as
770 // block, an array of bytes representing a plaintext block, and expandedKey,
772 // keyExpansion(). The ciphertext block is returned as an array of bytes.
787 // block, an array of bytes representing a ciphertext block, and expandedKey,
789 // keyExpansion(). The decrypted block is returned as an array of bytes
[all...]
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DServer.php104 '{DAV:}quota-available-bytes',
105 '{DAV:}quota-used-bytes',
/plugin/davcal/vendor/sabre/dav/bin/
H A Dnaturalselection24 bytes = getbytesleft(cacheDir,threshold)
25 if (bytes>0):
26 print "Bytes to go before we hit threshold:", bytes
28 print "Threshold exceeded with:", -bytes, "bytes"
50 if left < -bytes :
51 left = -bytes
/plugin/davcal/vendor/sabre/vobject/lib/
H A DCli.php632 …this->cWrite('default', 'embedded binary stripped. (' . strlen($property->getValue()) . ' bytes)');
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Processor/
H A DMemoryProcessor.php44 * @param int $bytes
47 protected function formatBytes(int $bytes) argument
50 return $bytes;
53 if ($bytes > 1024 * 1024) {
54 return round($bytes / 1024 / 1024, 2).' MB';
55 } elseif ($bytes > 1024) {
56 return round($bytes / 1024, 2).' KB';
59 return $bytes . ' B';
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md425 * Added $useFormatting flag to MemoryProcessor to make it send raw data in bytes
/plugin/authgooglesheets/
H A Dcomposer.lock692 … "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
/plugin/authgooglesheets/vendor/symfony/polyfill-intl-idn/
H A DIdn.php468 $bytes = \strlen($labels[$i]);
469 $domainLength += $bytes;
471 if ($bytes > self::MAX_LABEL_SIZE) {
582 $bytes = array_map('ord', str_split($input));
585 if ($bytes[$j] > 0x7F) {
605 $digit = self::$basicToDigit[$bytes[$in++] & 0xFF];
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DEngine.php256 $bytes = $temp->toBytes();
258 if (!strlen($bytes)) { // eg. if the number we're trying to convert is -1
259 $bytes = chr(0);
262 if (ord($bytes[0]) & 0x80) {
263 $bytes = chr(0) . $bytes;
266 return $comparison < 0 ? ~$bytes : $bytes;
592 $bytes = $bits >> 3;
593 $min = str_repeat(chr(0), $bytes);
594 $max = str_repeat(chr(0xFF), $bytes);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DCHANGELOG.md197 - `copy_to_stream` reads bytes in chunks instead of `maxLen` into memory.
243 streams, which can sometimes return fewer bytes than requested with `fread`.
H A DREADME.md41 from to remove bytes from the buffer.
50 // When more than 1024 bytes are in the buffer, it will begin returning
58 The CachingStream is used to allow seeking over previously read bytes on
62 a PHP temp stream so that previously read bytes are cached first in memory,
94 // Start dropping data when the stream has more than 10 bytes
187 Stream that when read returns bytes for a streaming multipart or
427 of bytes have been read.
435 bytes have been read.
504 number of requested bytes are available. Any additional bytes will be
511 $generator = function ($bytes) {
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php1062 $bytes = explode(' ', rtrim(chunk_split($bits, 8, ' ')));
1063 foreach ($bytes as $byte) {
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DSocketHandler.php175 public function setChunkSize(int $bytes): self argument
177 $this->chunkSize = $bytes;
/plugin/tablelayout/
H A Dyarn.lock175 bytes "2.2.0"
228 bytes@2.2.0:
230 …resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.2.0.tgz#fd35464a403f6f9117c2de3609ecff9cae0…
232 bytes@2.4.0:
234 …resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6…
1968 bytes "2.4.0"
/plugin/pureldap/vendor/freedsx/asn1/
H A DREADME.md29 # Encoded $bytes will now contain the BER binary representation of a sequence containing:
33 $bytes = Encoders::ber()->encode($asn1);
36 $bytes = Encoders::der()->encode($asn1);
51 # Assuming bytes contains the binary BER encoded sequence described in the encoding section
53 $pdu = Encoders::ber()->decode($bytes);
56 $pdu = Encoders::der()->decode($bytes);
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Encoder/
H A DCerDerTrait.php169 $bytes = '';
171 $bytes .= $child['original'];
174 return $bytes;
H A DBerEncoder.php187 $bytes = $type->getValue() ? self::BOOL_TRUE : self::BOOL_FALSE;
191 $bytes = $this->encodeInteger($type);
194 $bytes = $this->encodeReal($type);
197 $bytes = $type->getValue();
200 $bytes = $this->encodeSetOf($type);
203 $bytes = $this->encodeSet($type);
206 $bytes = $this->encodeConstructedType(...$type->getChildren());
209 $bytes = $this->encodeBitString($type);
212 $bytes = $this->encodeOid($type);
215 $bytes
[all...]
/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/Queue/
H A DMessageQueue.php88 $bytes = $this->socket->read();
90 if ($bytes === false) {
94 $this->buffer .= $bytes;
102 $this->toConsume .= $buffer->bytes();
155 * @param string $bytes
158 protected function unwrap($bytes) : Buffer argument
160 return new Buffer($bytes, \strlen($bytes));
164 * Decode the bytes to an object. If you have a partial object, throw the PartialMessageException and the queue
167 * @param string $bytes
171 decode($bytes) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DLdapQueue.php122 protected function unwrap($bytes): Buffer
125 return parent::unwrap($bytes);
128 return $this->messageWrapper->unwrap($bytes);
134 * The logic in the loop is to send the messages in chunks of 8192 bytes to lessen the amount of TCP writes we need
118 unwrap($bytes) global() argument
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Security/
H A DDigestMD5SecurityLayer.php115 # At the very least we are expect 16 bytes. 10 for the actual MAC, 4 for the seqnum, 2 for the msgtype.
117 throw new SaslException('The data to decrypt must be at least 16 bytes.');
186 # The first 10 bytes of the MAC block is used. Extract the last 6 bytes, as that gets tacked onto the end.
256 throw new SaslException('Expected at least 16 bytes of data for the MAC.');
277 * number of padding bytes, such that total length of the encrypted part of the message is a multiple of the
293 * The MAC block is 16 bytes: the first 10 bytes of the HMAC-MD5 [RFC2104] of the message, a 2-byte message type
364 * We need to manually expand the 7-byte DES keys to 8-bytes. This shifts the first 7 bytes int
[all...]

12345678910>>...13