Home
last modified time | relevance | path

Searched refs:encoding (Results 26 – 50 of 300) sorted by last modified time

12345678910>>...12

/plugin/stlviewer/stlviewer/
H A Dthree.min.js2encoding=void 0!==l?l:q,this.version=0,this.onUpdate=null}gt.DEFAULT_IMAGE=void 0,gt.DEFAULT_MAPPI… property in e._allocateTargets.e
/plugin/davcal/vendor/sabre/vobject/lib/
H A DProperty.php509 if ($encoding = $this->offsetGet('ENCODING')) {
519 $encoding = (string)$encoding;
535 if ($allowedEncoding && !in_array(strtoupper($encoding), $allowedEncoding)) {
538 … 'message' => 'ENCODING=' . strtoupper($encoding) . ' is not valid for this document type.',
H A DStringUtil.php42 $encoding = mb_detect_encoding($str , array('UTF-8','ISO-8859-1', 'WINDOWS-1252'), true);
44 switch($encoding) {
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DStringUtil.php81 $encoding = mb_detect_encoding($input, ['UTF-8', 'ISO-8859-1'], true);
83 if ($encoding === 'ISO-8859-1') {
H A DClient.php90 protected $encoding = self::ENCODING_IDENTITY; variable in Sabre\\DAV\\Client
153 $encoding = $settings['encoding'];
156 if ($encoding & self::ENCODING_IDENTITY) {
159 if ($encoding & self::ENCODING_DEFLATE) {
162 if ($encoding & self::ENCODING_GZIP) {
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Xml/Notification/
H A DSystemStatusTest.php60 …'<?xml version="1.0" encoding="UTF-8"?>' . "\n" . '<cs:root xmlns:cs="http://calendarserver.org/ns…
61 …'<?xml version="1.0" encoding="UTF-8"?>' . "\n" . '<cs:root xmlns:cs="http://calendarserver.org/ns…
/plugin/davcal/vendor/sabre/vobject/
H A DChangeLog.md338 * Fixed: jCard encoding of TIME properties.
339 * Fixed: jCal encoding of REQUEST-STATUS, GEO and PERIOD values.
/plugin/davcal/vendor/sabre/http/lib/
H A Dfunctions.php434 $encoding = mb_detect_encoding($path, ['UTF-8', 'ISO-8859-1']);
436 switch ($encoding) {
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/
H A DREADME.md10 this library aims to offer character encoding functions that do not leak
11 information about what you are encoding/decoding via processor cache
19 * Base16 encoding
20 * Base32 encoding
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/
H A DCsvOptions.php36 public $encoding; variable in Google\\Service\\Bigquery\\CsvOptions
85 public function setEncoding($encoding) argument
87 $this->encoding = $encoding;
94 return $this->encoding;
H A DBigtableColumn.php25 public $encoding; variable in Google\\Service\\Bigquery\\BigtableColumn
50 public function setEncoding($encoding) argument
52 $this->encoding = $encoding;
59 return $this->encoding;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DUPGRADING.md962 <?xml version="1.0" encoding="UTF-8"?>
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DQuery.php67 * @param int|false $encoding Set to false to not encode, PHP_QUERY_RFC3986
73 public static function build(array $params, $encoding = PHP_QUERY_RFC3986) argument
79 if ($encoding === false) {
83 } elseif ($encoding === PHP_QUERY_RFC3986) {
85 } elseif ($encoding === PHP_QUERY_RFC1738) {
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md54 …* Added JSON_PARTIAL_OUTPUT_ON_ERROR to default json encoding flags, to avoid dropping entire cont…
69 * Fixed removing of json encoding options
102 …* Fixed json encoding across all handlers to always attempt recovery of non-UTF-8 strings instead …
188 …* Fixed json encoding across all handlers to always attempt recovery of non-UTF-8 strings instead …
309 …* Fixed JSON encoding errors that would gobble up the whole log record, we now handle those more g…
350 * Fixed JSON encoding errors being silently suppressed (PHP 5.5+ only)
447 * Added support for tweaking the content type and encoding in NativeMailerHandler
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudDataplex/
H A DGoogleCloudDataplexV1AssetDiscoverySpecJsonOptions.php29 public $encoding; variable in Google\\Service\\CloudDataplex\\GoogleCloudDataplexV1AssetDiscoverySpecJsonOptions
48 public function setEncoding($encoding) argument
50 $this->encoding = $encoding;
57 return $this->encoding;
H A DGoogleCloudDataplexV1ZoneDiscoverySpecCsvOptions.php33 public $encoding; variable in Google\\Service\\CloudDataplex\\GoogleCloudDataplexV1ZoneDiscoverySpecCsvOptions
70 public function setEncoding($encoding) argument
72 $this->encoding = $encoding;
79 return $this->encoding;
H A DGoogleCloudDataplexV1StorageFormatCsvOptions.php29 public $encoding; variable in Google\\Service\\CloudDataplex\\GoogleCloudDataplexV1StorageFormatCsvOptions
56 public function setEncoding($encoding) argument
58 $this->encoding = $encoding;
65 return $this->encoding;
H A DGoogleCloudDataplexV1ZoneDiscoverySpecJsonOptions.php29 public $encoding; variable in Google\\Service\\CloudDataplex\\GoogleCloudDataplexV1ZoneDiscoverySpecJsonOptions
48 public function setEncoding($encoding) argument
50 $this->encoding = $encoding;
57 return $this->encoding;
H A DGoogleCloudDataplexV1StorageFormatJsonOptions.php25 public $encoding; variable in Google\\Service\\CloudDataplex\\GoogleCloudDataplexV1StorageFormatJsonOptions
30 public function setEncoding($encoding) argument
32 $this->encoding = $encoding;
39 return $this->encoding;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Pubsub/
H A DSchemaSettings.php25 public $encoding; variable in Google\\Service\\Pubsub\\SchemaSettings
34 public function setEncoding($encoding) argument
36 $this->encoding = $encoding;
43 return $this->encoding;
H A DValidateMessageRequest.php25 public $encoding; variable in Google\\Service\\Pubsub\\ValidateMessageRequest
40 public function setEncoding($encoding) argument
42 $this->encoding = $encoding;
49 return $this->encoding;
/plugin/authgooglesheets/
H A Dcomposer.lock658 "encoding",
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DStreamHandler.php163 $encoding = $headers[$normalizedKeys['content-encoding']];
164 if ($encoding[0] === 'gzip' || $encoding[0] === 'deflate') {
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DCHANGELOG.md97 - Fixed encoding of special characters in the `userInfo` component of an URI (#253)
216 - Handling of encoding in `Uri::with(out)QueryValue` so one can pass the
H A DREADME.md406 `public static function build(array $params, int|false $encoding = PHP_QUERY_RFC3986): string`
746 …All letters within a percent-encoding triplet (e.g., "%3A") are case-insensitive, and should be ca…

12345678910>>...12