Home
last modified time | relevance | path

Searched refs:error (Results 101 – 125 of 1814) sorted by relevance

12345678910>>...73

/plugin/mdpage/vendor/cebe/markdown/bin/
H A Dmarkdown44 error("Unknown flavor: " . $arg[1], "usage");
47 error("Incomplete argument --flavor!", "usage");
61 error("Unknown argument " . $arg[0], "usage");
73 error("File does not exist:" . $file);
77 error("Converting multiple files is not yet supported.", "usage");
161 function error($message, $callback = null) { function
/plugin/diagramsnet/lib/js/diagramly/
H A DDrawioFileSync.js67 if (err.error != null && err.error.data != null &&
700 error();
713 error();
721 }), error);
778 error();
849 error(e);
880 error();
914 error();
949 error();
1063 error(err);
[all …]
H A DDriveComment.js10 DriveComment.prototype.addReply = function(reply, success, error, doResolve, doReopen) argument
32 }), error);
35 DriveComment.prototype.editComment = function(newContent, success, error) argument
52 success, error);
55 DriveComment.prototype.deleteComment = function(success, error) argument
67 success, error);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/
H A DFull.php87 foreach ($colErrors as $error) {
88 $length = strlen($error['message']);
90 $length += (strlen($error['source']) + 3);
145 foreach ($colErrors as $error) {
146 $message = $error['message'];
149 $message = "\033[1m".$message."\033[0m".' ('.$error['source'].')';
161 if ($error['type'] === 'ERROR') {
173 if ($error['fixable'] === true) {
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Methods/
H A DMethodDeclarationSniff.php66 … $error = 'Method name "%s" should not be prefixed with an underscore to indicate visibility';
68 $phpcsFile->addWarning($error, $stackPtr, 'Underscore', $data);
101 $error = 'The final declaration must precede the visibility declaration';
102 $fix = $phpcsFile->addFixableError($error, $final, 'FinalAfterVisibility');
115 $error = 'The abstract declaration must precede the visibility declaration';
116 $fix = $phpcsFile->addFixableError($error, $abstract, 'AbstractAfterVisibility');
129 $error = 'The static declaration must come after the visibility declaration';
130 $fix = $phpcsFile->addFixableError($error, $static, 'StaticBeforeVisibility');
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/NamingConventions/
H A DValidClassNameSniff.php70 $error = '%s name must begin with a capital letter';
71 $phpcsFile->addError($error, $stackPtr, 'StartWithCapital', $errorData);
92 $error = '%s name is not valid';
93 $phpcsFile->addError($error, $stackPtr, 'Invalid', $errorData);
103 $error = '%s name is not valid; consider %s instead';
106 $phpcsFile->addError($error, $stackPtr, 'Invalid', $data);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/
H A DForbiddenFunctionsSniff.php66 public $error = true; variable in Generic_Sniffs_PHP_ForbiddenFunctionsSniff
213 $error = 'The use of function %s() is ';
214 if ($this->error === true) {
216 $error .= 'forbidden';
219 $error .= 'discouraged';
231 $error .= '; use %s() instead';
234 if ($this->error === true) {
235 $phpcsFile->addError($error, $stackPtr, $type, $data);
237 $phpcsFile->addWarning($error, $stackPtr, $type, $data);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/ControlStructures/
H A DMultiLineConditionSniff.php93 …$error = 'First condition of a multi-line IF statement must directly follow the opening parenthesi…
94 … $fix = $phpcsFile->addFixableError($error, ($openBracket + 1), 'SpacingAfterOpenBrace');
127 … $error = 'Closing parenthesis of a multi-line IF statement must be on a new line';
128 … $fix = $phpcsFile->addFixableError($error, $closeBracket, 'CloseBracketNewLine');
172 … $error = 'Multi-line IF statement not indented correctly; expected %s spaces but found %s';
178 $fix = $phpcsFile->addFixableError($error, $i, 'Alignment', $data);
192 … $error = 'Each line in a multi-line IF statement must begin with a boolean operator';
193 $fix = $phpcsFile->addFixableError($error, $i, 'StartWithBoolean');
261 $error .= 'newline';
264 $error .= '%s spaces';
[all …]
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dslf4j-api-1.7.25.jar ... msg Throwable t public boolean isErrorEnabled () public void error (java.lang.String) String msg public ...
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dataproc/
H A DWorkflowNode.php26 public $error; variable in Google\\Service\\Dataproc\\WorkflowNode
47 public function setError($error) argument
49 $this->error = $error;
56 return $this->error;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleCloudApigeeV1AsyncQueryResultView.php30 public $error; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1AsyncQueryResultView
59 public function setError($error) argument
61 $this->error = $error;
68 return $this->error;
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DUploadedFile.php39 private $error; variable in GuzzleHttp\\Psr7\\UploadedFile
108 * @param int $error
112 private function setError($error) argument
114 if (false === is_int($error)) {
120 if (false === in_array($error, UploadedFile::$errors)) {
126 $this->error = $error;
204 return $this->error === UPLOAD_ERR_OK;
307 return $this->error;
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/
H A DAbstractScopeSniff.php92 $error = 'The scope tokens list cannot be empty';
93 throw new PHP_CodeSniffer_Exception($error);
97 $error = 'The tokens list cannot be empty';
98 throw new PHP_CodeSniffer_Exception($error);
104 $error = "Scope tokens [$invalid] can't be in the tokens array";
105 throw new PHP_CodeSniffer_Exception($error);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Functions/
H A DFunctionCallSignatureSniff.php123 $error = 'Space before opening parenthesis of function call prohibited';
124 $fix = $phpcsFile->addFixableError($error, $stackPtr, 'SpaceBeforeOpenBracket');
141 $error = 'Space after closing parenthesis of function call prohibited';
214 $error = 'Space after opening parenthesis of function call prohibited';
215 $fix = $phpcsFile->addFixableError($error, $stackPtr, 'SpaceAfterOpenBracket');
226 $error = 'Expected %s spaces after opening bracket; %s found';
258 $error = 'Expected %s spaces before closing bracket; %s found';
368 $fix = $phpcsFile->addFixableError($error, $stackPtr, 'ContentAfterOpenBracket');
381 $fix = $phpcsFile->addFixableError($error, $closeBracket, 'CloseBracketLine');
441 $fix = $phpcsFile->addFixableError($error, $i, 'EmptyLine');
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/
H A DControlStructureSpacingSniff.php95 $error = 'Expected 0 spaces after opening bracket; %s found';
97 … $fix = $phpcsFile->addFixableError($error, ($parenOpener + 1), 'SpacingAfterOpenBrace', $data);
109 $error = 'Expected 0 spaces before closing bracket; %s found';
151 $error = 'Blank line found at start of control structure';
152 $fix = $phpcsFile->addFixableError($error, $scopeOpener, 'SpacingAfterOpen');
198 $error = 'Blank line found at end of control structure';
199 $fix = $phpcsFile->addFixableError($error, $errorToken, 'SpacingBeforeClose');
286 $error = 'Blank line found after control structure';
287 $fix = $phpcsFile->addFixableError($error, $scopeCloser, 'LineAfterClose');
306 $error = 'No blank line found after control structure';
[all …]
H A DFunctionClosingBraceSpaceSniff.php85 …$error = 'The opening and closing braces of empty functions must be directly next to each other; e…
86 $fix = $phpcsFile->addFixableError($error, $closeBrace, 'SpacingBetween');
116 $error = 'Closing brace of nested function must be on a new line';
117 $fix = $phpcsFile->addFixableError($error, $closeBrace, 'ContentBeforeClose');
122 $error = 'Expected 0 blank lines before closing brace of nested function; %s found';
124 … $fix = $phpcsFile->addFixableError($error, $closeBrace, 'SpacingBeforeNestedClose', $data);
154 $error = 'Expected 1 blank line before closing function brace; %s found';
156 … $fix = $phpcsFile->addFixableError($error, $closeBrace, 'SpacingBeforeClose', $data);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Functions/
H A DOpeningFunctionBraceBsdAllmanSniff.php105 $error = 'Opening brace should be on a new line';
106 $fix = $phpcsFile->addFixableError($error, $openingBrace, 'BraceOnSameLine');
120 … $error = 'Opening brace should be on the line after the declaration; found %s blank line(s)';
122 $fix = $phpcsFile->addFixableError($error, $openingBrace, 'BraceSpacing', $data);
142 $error = 'Opening brace must be the last content on the line';
143 $fix = $phpcsFile->addFixableError($error, $openingBrace, 'ContentAfterBrace');
169 $error = 'Opening brace indented incorrectly; expected %s spaces, found %s';
175 $fix = $phpcsFile->addFixableError($error, $openingBrace, 'BraceIndent', $data);
/plugin/quickstats/GEOIP/vendor/geoip2/geoip2/src/Exception/
H A DInvalidRequestException.php14 public $error; variable in GeoIp2\\Exception\\InvalidRequestException
18 $error, argument
23 $this->error = $error;
/plugin/farm/
H A Dconfig.class.php43 $this->manager->error('system_errors', 'system_badtoken_failure');
47 $this->manager->error('config_errors', 'config_save_failure');
223 $this->manager->error('config_errors', 'config_createrewritefile_failure');
237 $this->manager->error('config_errors', 'config_deleterewritefile_failure');
249 $this->manager->error('config_errors', 'config_copyvirtualhostfile_failure');
255 $this->manager->error('config_errors', 'config_createrewritefile_failure');
281 $this->manager->error('config_errors', 'config_createrewritefile_failure');
288 $this->manager->error('config_errors', 'animal_unknownanimal_failure');
298 $this->manager->error('config_errors', 'config_createwsdl_failure');
308 $this->manager->error('config_errors', 'config_createwsdl_failure');
[all …]
/plugin/zip/pear/File/Archive/Reader/
H A DConcat.php57 while (($error = $source->next()) === true) {
69 if (PEAR::isError($error) || PEAR::isError($source->close())) {
71 '('.$error->getMessage().'), cannot continue');
121 $error = $this->source->next();
122 if (PEAR::isError($error)) {
123 return $error;
125 if (!$error) {
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.audio.shorten.php33 …$this->error('Expecting "'.getid3_lib::PrintHexBytes($magic).'" at offset '.$info['avdataoffset'].…
54 …$this->error('Expecting "'.getid3_lib::PrintHexBytes($magic).'" at offset '.$info['shn']['seektabl…
121 …$this->error('PHP running in Safe Mode - backtick operator not available, cannot run shntool to an…
130 $this->error(GETID3_HELPERAPPSDIR.$required_file.' does not exist');
144 $this->error('shorten binary was not found in path or /usr/local/bin');
172 …$this->error('shorten failed to decode DATA chunk to expected location, cannot determine playtime'…
181 $this->error('shorten failed to decode file to WAV for parsing');
/plugin/userimportextended/
H A Dadmin.php207 $error = sprintf($this->getLang('import_error_fields'), count($raw));
212 $clean = $this->_cleanImportUser($raw, $error);
213 if ($clean && $this->_addImportUser($clean, $error)) {
266 * @param string $error
269 protected function _cleanImportUser($candidate, &$error) { argument
285 $error = $this->getLang('import_error_baduserid');
292 $error = $this->getLang('import_error_badname');
298 $error = $this->getLang('import_error_badmail');
303 $error = $this->getLang('import_error_badmail');
320 protected function _addImportUser($user, & $error){ argument
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/
H A DConstructorNameSniff.php17 $error = 'Class PHP_CodeSniffer_Standards_AbstractScopeSniff not found'; variable
18 throw new PHP_CodeSniffer_Exception($error);
87 $error = 'PHP4 style constructors are not allowed; use "__construct()" instead';
88 $phpcsFile->addError($error, $stackPtr, 'OldStyle');
113 …$error = 'PHP4 style calls to parent constructors are not allowed; use "parent::__construct()" ins…
114 $phpcsFile->addError($error, ($doubleColonIndex + 1), 'OldStyleCall');
/plugin/authgooglesheets/vendor/google/apiclient-services/src/IdentityToolkit/
H A DUploadAccountResponse.php33 public function setError($error) argument
35 $this->error = $error;
42 return $this->error;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Monitoring/
H A DCollectdValueError.php32 public function setError(Status $error) argument
34 $this->error = $error;
41 return $this->error;

12345678910>>...73