Home
last modified time | relevance | path

Searched refs:type (Results 276 – 300 of 4303) sorted by relevance

1...<<11121314151617181920>>...173

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Indices/
H A DPutMapping.php35 $type = $this->type ?? null;
36 if (isset($type)) {
40 if (isset($index) && isset($type)) {
41 return "/$index/$type/_mapping";
46 if (isset($type)) {
47 return "/_mappings/$type";
/plugin/barcodes/
H A Dcomposer.lock13 "type": "git",
18 "type": "zip",
29 "type": "library",
67 "type": "git",
72 "type": "zip",
90 "type": "library",
137 "type": "git",
142 "type": "zip",
159 "type": "library",
196 "type": "git",
[all …]
/plugin/cacherevisionseraser/
H A Dadmin.php173 ptln('<input type="hidden" name="do" value="admin" />');
174 ptln('<input type="hidden" name="page" value="cacherevisionserase" />');
175 ptln('<input type="hidden" name="cmd" value="main" />');
200 ptln('<input type="hidden" name="do" value="admin" />');
201 ptln('<input type="hidden" name="page" value="cacherevisionserase" />');
202 ptln('<input type="hidden" name="cmd" value="main" />');
212 ptln('<input type="hidden" name="do" value="admin" />');
213 ptln('<input type="hidden" name="page" value="cacherevisionserase" />');
214 ptln('<input type="hidden" name="cmd" value="erasecache" />');
271 ptln('<input type="hidden" name="do" value="admin" />');
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DWorkflowExecutions.php72 'type' => 'string',
92 'type' => 'string',
102 'type' => 'string',
112 'type' => 'string',
117 'type' => 'string',
126 'type' => 'string',
131 'type' => 'integer',
135 'type' => 'string',
139 'type' => 'string',
H A DLibraryagent.php72 'type' => 'string',
82 'type' => 'integer',
86 'type' => 'string',
105 'type' => 'string',
115 'type' => 'string',
125 'type' => 'string',
130 'type' => 'integer',
134 'type' => 'string',
143 'type' => 'string',
H A DCloudVideoIntelligence.php76 'type' => 'string',
86 'type' => 'string',
96 'type' => 'string',
116 'type' => 'string',
126 'type' => 'string',
136 'type' => 'string',
146 'type' => 'string',
151 'type' => 'string',
155 'type' => 'integer',
159 'type' => 'string',
/plugin/struct/meta/
H A DCSVExporter.php20 protected $type = ''; variable in dokuwiki\\plugin\\struct\\meta\\CSVExporter
26 * @param string $type
28 public function __construct($table, $type) argument
31 $this->type = $type;
39 if ($this->type !== self::DATATYPE_GLOBAL) {
45 if ($this->type !== self::DATATYPE_GLOBAL) {
64 if ($this->type !== self::DATATYPE_GLOBAL) {
86 if ($this->type !== self::DATATYPE_GLOBAL) {
H A DValueValidator.php30 * @param mixed &$rawvalue the value, will be fixed according to the type
38 $type = $col->getType();
39 $trans = $type->getTranslatedLabel();
40 if ($type->isMulti() && !is_array($rawvalue)) {
41 $rawvalue = $type->splitValues($rawvalue);
56 return $this->validateField($type, $trans, $rawvalue);
76 * @param AbstractBaseType $type
81 protected function validateField(AbstractBaseType $type, $label, &$data)
90 $value = $type->validate($value);
102 $data = $type
75 validateField(AbstractBaseType $type, $label, & $data) global() argument
[all...]
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DElasticsearchFormatter.php31 protected $type; variable in Monolog\\Formatter\\ElasticsearchFormatter
35 * @param string $type Elasticsearch record type
37 public function __construct(string $index, string $type) argument
43 $this->type = $type;
73 return $this->type;
85 $record['_type'] = $this->type;
/plugin/webdav/vendor/sabre/vobject/resources/schema/
H A Dxcal.rng269 type-freq,
270 (type-until | type-count)?,
276 type-byhour*,
277 type-byday*,
297 type-date |
317 type-weekday = (
329 type-weekday
547 type-fbprop
584 type-tzprop
588 type-tzprop
[all …]
/plugin/icalevents/vendor/sabre/vobject/resources/schema/
H A Dxcal.rng269 type-freq,
270 (type-until | type-count)?,
276 type-byhour*,
277 type-byday*,
297 type-date |
317 type-weekday = (
329 type-weekday
547 type-fbprop
584 type-tzprop
588 type-tzprop
[all …]
/plugin/codemirror/dist/modes/
H A Dhaxe.min.js.map1type","style","A","B","C","operator","atom","attribute","keywords","if","while","else","do","try",…
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DTermVectors.php41 $type = $this->type ?? null;
42 if (isset($type)) {
46 if (isset($type) && isset($id)) {
47 return "/$index/$type/$id/_termvectors";
49 if (isset($type)) {
50 return "/$index/$type/_termvectors";
H A DIndex.php41 $type = $this->type ?? null;
42 if (isset($type)) {
46 if (isset($type) && isset($id)) {
47 return "/$index/$type/$id";
52 if (isset($type)) {
53 return "/$index/$type";
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/
H A DReturn_.php30 private $type; variable in phpDocumentor\\Reflection\\DocBlock\\Tags\\Return_
32 public function __construct(Type $type, Description $description = null) argument
34 $this->type = $type;
52 $type = $typeResolver->resolve(isset($parts[0]) ? $parts[0] : '', $context);
55 return new static($type, $description);
65 return $this->type;
70 return $this->type . ' ' . $this->description;
H A DThrows.php30 private $type; variable in phpDocumentor\\Reflection\\DocBlock\\Tags\\Throws
32 public function __construct(Type $type, Description $description = null) argument
34 $this->type = $type;
52 $type = $typeResolver->resolve(isset($parts[0]) ? $parts[0] : '', $context);
55 return new static($type, $description);
65 return $this->type;
70 return $this->type . ' ' . $this->description;
/plugin/webdav/vendor/sabre/dav/lib/DAVACL/Xml/Property/
H A DPrincipal.php50 protected $type; variable in Sabre\\DAVACL\\Xml\\Property\\Principal
59 * @param int $type
62 function __construct($type, $href = null) { argument
64 $this->type = $type;
65 if ($type === self::HREF && is_null($href)) {
82 return $this->type;
108 switch ($this->type) {
142 switch ($this->type) {
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/Filter/
H A DAttributeValueAssertionTrait.php93 * @param AbstractType $type
99 public static function fromAsn1(AbstractType $type)
101 $type = $type instanceof IncompleteType ? (new LdapEncoder())->complete($type, AbstractType::TAG_TYPE_SEQUENCE) : $type;
102 if (!($type instanceof SequenceType && count($type) === 2)) {
106 $attribute = $type->getChild(0);
107 $value = $type
91 fromAsn1(AbstractType $type) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Ad/
H A DExtendedDnControl.php71 public static function fromAsn1(AbstractType $type)
73 if (!$type instanceof SequenceType) {
76 [0 => $oid, 1 => $criticality, 2 => $value] = self::parseAsn1ControlValues($type);
80 $request = self::decodeEncodedValue($type);
82 throw new ProtocolException('An ExtendedDn control value must be a sequence type.');
86 throw new ProtocolException('An ExtendedDn control value sequence 0 must be an integer type.');
110 * @param AbstractType $type
113 protected static function validate(AbstractType $type): void
115 if (!($type instanceof SequenceType && count($type)
64 fromAsn1(AbstractType $type) global() argument
106 validate(AbstractType $type) global() argument
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dns/Resource/
H A DProjectsManagedZonesRrsets.php60 * @param string $type RRSet type.
68 public function delete($project, $managedZone, $name, $type, $optParams = []) argument
70 …$params = ['project' => $project, 'managedZone' => $managedZone, 'name' => $name, 'type' => $type];
81 * @param string $type RRSet type.
89 public function get($project, $managedZone, $name, $type, $optParams = []) argument
91 …$params = ['project' => $project, 'managedZone' => $managedZone, 'name' => $name, 'type' => $type];
102 * @param string $type RRSet type.
111 …public function patch($project, $managedZone, $name, $type, ResourceRecordSet $postBody, $optParam… argument
113 …' => $project, 'managedZone' => $managedZone, 'name' => $name, 'type' => $type, 'postBody' => $pos…
/plugin/davcal/vendor/sabre/dav/lib/DAVACL/Xml/Property/
H A DPrincipal.php50 protected $type; variable in Sabre\\DAVACL\\Xml\\Property\\Principal
59 * @param int $type
62 function __construct($type, $href = null) { argument
64 $this->type = $type;
65 if ($type === self::HREF && is_null($href)) {
82 return $this->type;
108 switch ($this->type) {
142 switch ($this->type) {
/plugin/codeprettify/
H A Dall.css33 pre.prettyprint ol.linenums > li.L0 { list-style-type: decimal; }
34 pre.prettyprint ol.linenums > li.L1 { list-style-type: decimal; }
35 pre.prettyprint ol.linenums > li.L2 { list-style-type: decimal; }
36 pre.prettyprint ol.linenums > li.L3 { list-style-type: decimal; }
37 pre.prettyprint ol.linenums > li.L4 { list-style-type: decimal; }
38 pre.prettyprint ol.linenums > li.L5 { list-style-type: decimal; }
39 pre.prettyprint ol.linenums > li.L6 { list-style-type: decimal; }
40 pre.prettyprint ol.linenums > li.L7 { list-style-type: decimal; }
41 pre.prettyprint ol.linenums > li.L8 { list-style-type: decimal; }
42 pre.prettyprint ol.linenums > li.L9 { list-style-type: decimal; }
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/
H A DMethodNode.php118 * @param string $type
120 public function setReturnType($type = null) argument
122 if ($type === '' || $type === null) {
132 if (isset($typeMap[$type])) {
133 $type = $typeMap[$type];
135 $this->returnType = $this->typeHintReference->isBuiltInReturnTypeHint($type) ?
136 $type :
137 '\\' . ltrim($type, '\\');
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DExtendedRequest.php141 public static function fromAsn1(AbstractType $type)
143 return new self(...self::parseAsn1ExtendedRequest($type));
147 * @param AbstractType $type
153 protected static function decodeEncodedValue(AbstractType $type): ?AbstractType
155 [1 => $value] = self::parseAsn1ExtendedRequest($type);
161 * @param AbstractType $type
166 protected static function parseAsn1ExtendedRequest(AbstractType $type)
168 if (!($type instanceof SequenceType && (count($type) === 1 || count($type)
135 fromAsn1(AbstractType $type) global() argument
145 decodeEncodedValue(AbstractType $type) global() argument
157 parseAsn1ExtendedRequest(AbstractType $type) global() argument
[all...]
/plugin/jplayer/vendor/symfony/process/Pipes/
H A DWindowsPipes.php53 set_error_handler(function ($type, $msg) use (&$lastError) { $lastError = $msg; });
145 foreach ($this->fileHandles as $type => $fileHandle) {
146 $data = stream_get_contents($fileHandle, -1, $this->readBytes[$type]);
149 $this->readBytes[$type] += \strlen($data);
150 $read[$type] = $data;
155 flock($this->lockHandles[$type], \LOCK_UN);
156 fclose($this->lockHandles[$type]);
157 unset($this->fileHandles[$type], $this->lockHandles[$type]);
186 foreach ($this->fileHandles as $type => $handle) {
189 flock($this->lockHandles[$type], \LOCK_UN);
[all …]

1...<<11121314151617181920>>...173