Home
last modified time | relevance | path

Searched refs:error (Results 26 – 50 of 1430) sorted by relevance

12345678910>>...58

/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/
H A DFileCommentSniff.php140 $error = 'You must use "/**" style comments for a file comment';
141 $phpcsFile->addError($error, $errorToken, 'WrongStyle');
199 $error = 'PHP version not specified';
200 $phpcsFile->addWarning($error, $commentEnd, 'MissingVersion');
243 $error = 'Only one %s tag is allowed in a %s comment';
256 $error = 'Content missing for %s tag in %s comment';
271 $error = 'Missing %s tag in %s comment';
293 $error = 'The tag in position %s should be the %s tag';
380 $error = 'Package name "%s" is not valid';
473 $phpcsFile->addError($error, $tag, 'InvalidAuthors');
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Classes/
H A DClassDeclarationSniff.php16 $error = 'Class PEAR_Sniffs_Classes_ClassDeclarationSniff not found'; variable
17 throw new PHP_CodeSniffer_Exception($error);
88 $error = 'Expected 1 space between %s and %s keywords; %s found';
138 $error = 'Expected 1 space between %s keyword and %s name; %s found';
156 $error = 'Expected 1 space after %s name; %s found';
320 $error = 'Expected %s spaces before interface name; %s found';
344 $error = 'Expected 1 space before "%s"; 0 found';
359 $error = 'Expected 1 space before "%s"; %s found';
381 $error = 'Expected 0 spaces between "%s" and comma; %s found';
447 $error = 'Closing %s brace must be on a line by itself';
[all …]
/plugin/zip/pear/File/Archive/Reader/
H A DFilter.php60 $error = $this->source->next();
61 if ($error !== true) {
62 return $error;
74 $error = $this->close();
75 if (PEAR::isError($error)) {
76 return $error;
81 $error = $this->source->select($filename, false);
82 if ($error !== true) {
83 return $error;
H A DUncompress.php169 if (!$error) {
178 } while (!$error);
218 $error = $this->next();
219 if ($error === false) {
222 return $error;
236 return $error;
280 return $error;
289 $error = $this->next();
291 return $error;
303 $error = $this->next();
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/
H A DOpacitySniff.php80 $error = 'Opacity values must be between 0 and 1';
81 $phpcsFile->addError($error, $next, 'Invalid');
85 $error = 'Opacity values must have a single value after the decimal point';
86 $phpcsFile->addError($error, $next, 'DecimalPrecision');
88 $error = 'Opacity value does not require decimal point; use %s instead';
90 $fix = $phpcsFile->addFixableError($error, $next, 'PointNotRequired', $data);
95 $error = 'Opacity values must not start with a decimal point; use 0%s instead';
97 $fix = $phpcsFile->addFixableError($error, $next, 'StartWithPoint', $data);
102 $error = 'Opacity values must be between 0 and 1';
103 $phpcsFile->addError($error, $next, 'Invalid');
H A DForbiddenStylesSniff.php76 public $error = true; variable in Squiz_Sniffs_CSS_ForbiddenStylesSniff
155 $error = 'The use of style %s is ';
156 if ($this->error === true) {
158 $error .= 'forbidden';
161 $error .= 'discouraged';
170 if ($this->error === true) {
171 …$fix = $phpcsFile->addFixableError($error.'; use %s instead', $stackPtr, $type.'WithAlternative', …
173 …$fix = $phpcsFile->addFixableWarning($error.'; use %s instead', $stackPtr, $type.'WithAlternative'…
180 if ($this->error === true) {
181 $phpcsFile->addError($error, $stackPtr, $type, $data);
[all …]
/plugin/diagramsnet/lib/js/diagramly/
H A DDriveClient.js424 resp.error.data : resp.error.errors) : null;
430 if (error != null && resp != null && resp.error != null && (resp.error.code == -1 ||
514 error(e);
553 }), error);
569 }), error);
638 error();
742 error(e);
850 error(e);
1258 error(e);
1324 error(e);
[all …]
H A DTrelloClient.js63 error: function()
70 if (error != null)
191 error();
210 error();
248 }), error);
256 }), error, data);
292 error();
295 }, error);
370 error();
548 else if (error != null)
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Exception/
H A DElasticsearchException.php35 * @param string $error Error message from elasticsearch
37 public function __construct(int $code, string $error) argument
39 $this->_parseError($error);
40 parent::__construct($error, $code);
70 * Parse error message from elasticsearch.
72 * @param string $error Error message
74 protected function _parseError(string $error): void argument
76 $errors = \explode(']; nested: ', $error);
91 * Extract exception name from error response.
95 protected function _extractException(string $error) argument
[all...]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/
H A DFileCommentSniff.php120 $error = 'There must be no blank lines before the file comment';
121 $phpcsFile->addError($error, $stackPtr, 'SpacingAfterOpen');
127 $error = 'There must be exactly one blank line after the file comment';
128 $phpcsFile->addError($error, $commentEnd, 'SpacingAfterComment');
145 $error = 'Only one %s tag is allowed in a file comment';
158 $error = 'Content missing for %s tag in file comment';
166 $error = 'Expected "Squiz Pty Ltd <products@squiz.net>" for author tag';
167 $fix = $phpcsFile->addFixableError($error, $tag, 'IncorrectAuthor');
176 $fix = $phpcsFile->addFixableError($error, $tag, 'IncorrectCopyright');
195 $error = 'Missing %s tag in file comment';
[all …]
H A DInlineCommentSniff.php137 $phpcsFile->addError($error, $stackPtr, 'DocBlock');
142 $error = 'Perl-style comments are not allowed; use "// Comment" instead';
143 $fix = $phpcsFile->addFixableError($error, $stackPtr, 'WrongStyle');
255 $error = 'Blank comments are not allowed';
256 $fix = $phpcsFile->addFixableError($error, $stackPtr, 'Empty');
265 $error = 'Inline comments must start with a capital letter';
266 $phpcsFile->addError($error, $topComment, 'NotCapital');
280 $error = 'Inline comments must end in %s';
288 $phpcsFile->addError($error, $stackPtr, 'InvalidEndChar', $data);
306 $error = 'There must be no blank line following an inline comment';
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/
H A DXml.php73 foreach ($colErrors as $error) {
74 $error['type'] = strtolower($error['type']);
76 … $error['message'] = iconv(PHP_CODESNIFFER_ENCODING, 'utf-8', $error['message']);
79 $out->startElement($error['type']);
82 $out->writeAttribute('source', $error['source']);
83 $out->writeAttribute('severity', $error['severity']);
84 $out->writeAttribute('fixable', (int) $error['fixable']);
85 $out->text($error['message']);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Commenting/
H A DFunctionCommentSniff.php17 $error = 'Class Squiz_Sniffs_Commenting_FunctionCommentSniff not found'; variable
18 throw new PHP_CodeSniffer_Exception($error);
67 … $error = 'The @api tag must come first in the @api tag list in a function comment';
68 $phpcsFile->addError($error, $tag, 'ApiNotFirst');
76 … $error = 'There must be one blank line before the @api tag in a function comment';
77 $phpcsFile->addError($error, $tag, 'ApiSpacing');
84 $error = 'There must be no blank line before the @%s tag in a function comment';
86 $phpcsFile->addError($error, $tag, 'ApiTagSpacing', $data);
93 $error = 'The @api tags must be the last tags in a function comment';
94 $phpcsFile->addError($error, $commentEnd, 'ApiNotLast');
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/
H A DFunctionDeclarationArgumentSpacingSniff.php148 … $fix = $phpcsFile->addFixableError($error, $nextToken, 'SpaceBeforeEquals', $data);
188 $error = 'Expected 0 spaces between argument "%s" and comma; %s found';
194 … $fix = $phpcsFile->addFixableError($error, $nextToken, 'SpaceBeforeComma', $data);
237 $error = 'Expected 1 space between type hint and argument "%s"; %s found';
254 $error = 'Expected 1 space between comma and type hint "%s"; 0 found';
278 $error = 'Expected 1 space between comma and argument "%s"; 0 found';
287 $error = 'Expected 1 space between comma and argument "%s"; %s found';
321 $error = 'Expected 1 space between type hint and argument "%s"; %s found';
388 $error = 'Expected 0 spaces between brackets of function declaration; %s found';
390 $fix = $phpcsFile->addFixableError($error, $openBracket, 'SpacingBetween', $data);
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/
H A DNoSilencedErrorsSniff.php41 public $error = false; variable in Generic_Sniffs_PHP_NoSilencedErrorsSniff
67 $error = 'Silencing errors is forbidden';
68 if ($this->error === true) {
69 $error = 'Silencing errors is forbidden';
70 $phpcsFile->addError($error, $stackPtr, 'Forbidden');
72 $error = 'Silencing errors is discouraged';
73 $phpcsFile->addWarning($error, $stackPtr, 'Discouraged');
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/
H A DEmbeddedPhpSniff.php101 $error = 'Empty embedded PHP tag found';
117 $error = 'Opening PHP tag must be on a line by itself';
190 $error = 'Opening PHP tag must be on a line by itself';
246 $error = 'Closing PHP tag must be on a line by itself';
256 $error = 'Closing PHP tag must be on a line by itself';
283 $error = 'Blank line found at end of embedded PHP content';
284 $fix = $phpcsFile->addFixableError($error, $i, 'SpacingAfter');
328 $error = 'Empty embedded PHP tag found';
349 $error = 'Expected 1 space after opening PHP tag; %s found';
364 $error = 'Inline PHP statement must end with a semicolon';
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Debug/
H A DESLintSniff.php107 foreach ($messages as $error) {
108 if (empty($error->fatal) === false || $error->severity === 2) {
109 $phpcsFile->addErrorOnLine($error->message, $error->line, $error->ruleId);
111 $phpcsFile->addWarningOnLine($error->message, $error->line, $error->ruleId);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/
H A DInlineIfDeclarationSniff.php78 $error = 'Inline shorthand IF statement must be declared on a single line';
79 $phpcsFile->addError($error, $stackPtr, 'NotSingleLine');
87 $error = 'Inline shorthand IF statement requires brackets around comparison';
88 $phpcsFile->addError($error, $stackPtr, 'NoBrackets');
93 $error = 'Inline shorthand IF statement requires 1 space before THEN; %s found';
95 $fix = $phpcsFile->addFixableError($error, $stackPtr, 'SpacingBeforeThen', $data);
114 $fix = $phpcsFile->addFixableError($error, $stackPtr, 'ElvisSpacing');
122 $error = 'Inline shorthand IF statement requires 1 space after THEN; %s found';
137 $error = 'Inline shorthand IF statement requires 1 space before ELSE; %s found';
153 $error = 'Inline shorthand IF statement requires 1 space after ELSE; %s found';
[all …]
/plugin/struct/meta/
H A DSchemaImporter.php33 $error = 'No errors';
36 $error = 'Maximum stack depth exceeded';
39 $error = 'Underflow or the modes mismatch';
42 $error = 'Unexpected control character found';
45 $error = 'Syntax error, malformed JSON';
48 $error = 'Malformed UTF-8 characters, possibly incorrectly encoded';
51 $error = 'Unknown error';
55 throw new StructException('JSON couldn\'t be decoded: ' . $error);
[all...]
/plugin/zip/pear/File/Archive/Writer/
H A DMail.php144 $error = $this->mime->addAttachment(
150 return $error;
157 $error = $this->addCurrentData();
158 if (PEAR::isError($error)) {
159 return $error;
178 $error = parent::close();
179 if (PEAR::isError($error)) {
180 return $error;
182 $error = $this->addCurrentData();
183 if (PEAR::isError($error)) {
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/src/Exception/
H A DXmlErrorException.php14 public function __construct(\LibXMLError $error) argument
16 switch ($error->level) {
33 …f('[%s] %s in %s (line: %d, column: %d)', $level, $error->message, $error->file, $error->line, $er…
35 $this->xmlError = $error;
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/ControlStructures/
H A DSwitchDeclarationSniff.php88 … $error = strtoupper($type).' keyword must be lowercase; expected "%s" but found "%s"';
94 $fix = $phpcsFile->addFixableError($error, $nextCase, $type.'NotLower', $data);
104 $error = 'CASE keyword must be followed by a single space';
105 $fix = $phpcsFile->addFixableError($error, $nextCase, 'SpacingAfterCase');
119 … $error = 'There must be no space before the colon in a '.strtoupper($type).' statement';
163 $error = 'Terminating statement must be on a line by itself';
164 … $fix = $phpcsFile->addFixableError($error, $nextCloser, 'BreakNotNewLine');
173 … $fix = $phpcsFile->addFixableError($error, $nextCloser, 'BreakIndent');
185 $error = strtoupper($type).' statements must be defined using a colon';
186 $phpcsFile->addError($error, $nextCase, 'WrongOpener'.$type);
[all …]
/plugin/dirtylittlehelper/mermaid/editor/src/components/
H A DError.svelte4 let error;
7 error = _error.toString();
9 error = false;
15 #error {
29 {#if error}
30 <div id="error" class={classes}>{error}</div>
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/
H A DClassDeclarationSniff.php17 $error = 'Class PSR2_Sniffs_Classes_ClassDeclarationSniff not found'; variable
18 throw new PHP_CodeSniffer_Exception($error);
59 $error = 'Only one interface or class is allowed in a file';
60 $phpcsFile->addError($error, $nextClass, 'MultipleClasses');
92 $error = 'Expected 0 spaces before %s keyword; %s found';
155 $error = 'Closing %s brace must be on a line by itself';
157 $fix = $phpcsFile->addFixableError($error, $closeBrace, 'CloseBraceSameLine', $data);
174 $error = 'Expected 0 spaces before closing brace; newline found';
175 $phpcsFile->addError($error, $closeBrace, 'NewLineBeforeCloseBrace');
177 $error = 'Expected 0 spaces before closing brace; %s found';
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Exception/Connection/
H A DHttpException.php26 * @param int $error
28 public function __construct($error, ?Request $request = null, ?Response $response = null) argument
30 $this->_error = $error;
37 * Returns the error message corresponding to the error code
38 * cUrl error code reference can be found here {@link http://curl.haxx.se/libcurl/c/libcurl-errors.html}.
40 * @param int $error Error code
44 public function getErrorMessage(int $error): string argument
46 switch ($error) {
50 return 'Internal cUrl error
[all...]

12345678910>>...58