Home
last modified time | relevance | path

Searched refs:parts (Results 226 – 250 of 925) sorted by last modified time

12345678910>>...37

/plugin/davcal/vendor/sabre/vobject/lib/Property/
H A DText.php316 $parts = $this->getParts();
317 if (count($parts) < $minimum) {
320 …e' => 'This property must have at least ' . $minimum . ' components. It only has ' . count($parts),
324 $parts = array_pad($parts, $minimum, '');
325 $this->setParts($parts);
/plugin/davcal/vendor/sabre/uri/lib/
H A Dfunctions.php108 $parts = parse($uri);
110 if (!empty($parts['path'])) {
131 if ($parts['scheme']) {
132 $parts['scheme'] = strtolower($parts['scheme']);
138 …if (!empty($parts['port']) && isset($defaultPorts[$parts['scheme']]) && $defaultPorts[$parts['sche…
154 if ($parts['host']) $parts['host'] = strtolower($parts['host']);
156 return build($parts);
189 * @param array $parts
192 function build(array $parts) { argument
197 if (!empty($parts['host'])) {
[all …]
/plugin/davcal/vendor/sabre/vobject/
H A DChangeLog.md550 * Added: A new 'Compound' property, that can automatically split up parts for
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Property/
H A DCompoundTest.php23 $parts = $elem->getParts();
24 $this->assertEquals('Marketing;Sales', $parts[2]);
37 $parts = $elem->getParts();
38 $this->assertEquals('Marketing;Sales', $parts[2]);
/plugin/davcal/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDuration.php80 $parts = $this->getParts();
81 $value = $parts[0];
H A DRecur.php93 * @param array $parts
96 public function setParts(array $parts) { argument
98 $this->setValue($parts);
/plugin/davcal/vendor/sabre/vobject/lib/
H A DVCardConverter.php110 $parts = DateTimeParser::parseVCardDateTime($property->getValue());
111 if (is_null($parts['year'])) {
112 $newValue = '1604-' . $parts['month'] . '-' . $parts['date'];
171 $parts = DateTimeParser::parseVCardDateTime($property->getValue());
172 if ($parts['year']===$property['X-APPLE-OMIT-YEAR']->getValue()) {
173 $newValue = '--' . $parts['month'] . '-' . $parts['date'];
/plugin/davcal/vendor/sabre/http/lib/
H A DClient.php515 $parts = explode(':', $header, 2);
516 if (count($parts) == 2) {
517 $response->addHeader(trim($parts[0]), trim($parts[1]));
H A Dfunctions.php333 $parts = explode(';', $str);
336 $mimeType = array_shift($parts);
345 foreach ($parts as $part) {
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DClient.php367 $parts = parse_url($this->baseUri);
368 …return $parts['scheme'] . '://' . $parts['host'] . (isset($parts['port']) ? ':' . $parts['port'] :…
/plugin/pot/
H A DLICENSE251 10. If you wish to incorporate parts of the Program into other free
322 parts of the General Public License. Of course, the commands you use may
/plugin/spreadout/
H A DLICENSE250 10. If you wish to incorporate parts of the Program into other free
321 parts of the General Public License. Of course, the commands you use may
/plugin/indexmenu/
H A DCOPYING254 10. If you wish to incorporate parts of the Program into other free
327 parts of the General Public License. Of course, the commands you use may
/plugin/actionrenderer/
H A DLICENSE250 10. If you wish to incorporate parts of the Program into other free
321 parts of the General Public License. Of course, the commands you use may
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/
H A DStrings.php242 $parts = preg_split('#(\d+)#', $format, -1, PREG_SPLIT_DELIM_CAPTURE);
244 for ($i = 1; $i < count($parts); $i += 2) {
245 … $format .= substr($parts[$i - 1], 0, -1) . str_repeat(substr($parts[$i - 1], -1), $parts[$i]);
247 $format .= $parts[$i - 1];
291 $parts = str_split($x, $block_size);
293 foreach ($parts as $part) {
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DQuery.php43 $parts = explode('=', $kvp, 2);
44 $key = $decoder($parts[0]);
45 $value = isset($parts[1]) ? $decoder($parts[1]) : null;
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DClient.php565 $parts = explode('.', $idToken);
566 $payload = json_decode(base64_decode($parts[1]), true);
/plugin/authgooglesheets/vendor/google/apiclient/src/Http/
H A DMediaFileUpload.php340 $parts = parse_url((string) $this->request->getUri());
341 if (!isset($parts['path'])) {
342 $parts['path'] = '';
344 $parts['path'] = '/upload' . $parts['path'];
345 $uri = Uri::fromParts($parts);
H A DBatch.php159 $parts = explode("--$boundary", $body);
163 foreach ($parts as $i => $part) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DOpenSSH.php137 $parts = explode(' ', $key, 3);
139 if (!isset($parts[1])) {
140 $key = base64_decode($parts[0]);
141 $comment = isset($parts[1]) ? $parts[1] : false;
143 $asciiType = $parts[0];
144 self::checkType($parts[0]);
145 $key = base64_decode($parts[1]);
146 $comment = isset($parts[2]) ? $parts[2] : false;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
H A DGoogleCloudDialogflowCxV3IntentTrainingPhrase.php51 public function setParts($parts) argument
53 $this->parts = $parts;
60 return $this->parts;
H A DGoogleCloudDialogflowV2IntentTrainingPhrase.php55 public function setParts($parts) argument
57 $this->parts = $parts;
64 return $this->parts;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DStreamHandler.php102 $parts = explode(' ', array_shift($hdrs), 3);
103 $ver = explode('/', $parts[0])[1];
104 $status = $parts[1];
105 $reason = isset($parts[2]) ? $parts[2] : null;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A Dfunctions.php68 $parts = explode(':', $line, 2);
69 $headers[trim($parts[0])][] = isset($parts[1])
70 ? trim($parts[1])
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md660 `public static function fromParts(array $parts): UriInterface`

12345678910>>...37