Displaying 6 results from an estimated 6 matches for "iserror".
Did you mean:
i_error
2011 Dec 06
1
Sequential Sum in R
I am trying to code the following excel formula in R.
a b c Result Formula
1 10 0.1 #N/A
IF(B2<20,NA(),C2+IF(ISERROR(D1),0,D1))
2 20 0.2 0.2
IF(B3<20,NA(),C3+IF(ISERROR(D2),0,D2))
3 30 0.3 0.5
IF(B4<20,NA(),C4+IF(ISERROR(D3),0,D3))
4 40 0.4 0.9
IF(B5<20,NA(),C5+IF(ISERROR(D4),0,D4))
5 50...
2005 Sep 13
1
populating asterisk realtime tables from configfiles
...pear.php.net)
<?php
include('DB.php');
$db_host = '';
$db_name = '';
$db_login = '';
$db_pass = '';
$db_table = 'extensions_table';
define(DBINFO,"mysql://$db_login:$db_pass@$db_host/$db_name");
$db = DB::CONNECT(DBINFO);
if(!DB::isError($db)) {
//we got the db connection
$extensions = file('extensions.conf');
foreach($extensions as $extension) {
$application = '';
if (substr($extension,0,1)=='[') {
$context=substr($extension,1,strpos($extension,'...
2009 Sep 17
0
web-meetme cbEnd.php not running - error
...() should not be
called statically in /usr/share/php5/PEAR/DB.php on line 543
PHP Strict Standards: Non-static method DB::errorMessage() should not be
called statically, assuming $this from incompatible context in
/usr/share/php5/PEAR/DB.php on line 965
PHP Strict Standards: Non-static method DB::isError() should not be called
statically, assuming $this from incompatible context in
/usr/share/php5/PEAR/DB.php on line 688
PHP Strict Standards: is_a(): Deprecated. Please use the instanceof
operator in /usr/share/php5/PEAR/DB.php on line 594
PHP Strict Standards: Non-static method PEAR::getStaticPro...
2006 May 19
2
Icecast2 Status Page Parser
Does anyone have a Perl or PHP Icecast2 Status Page Parser?
Thanks.
-greg.
__________________________________________________________________________
Greg J. Ogonowski
VP Product Development
ORBAN / CRL, Inc.
1525 Alvarado St.
San Leandro, CA 94577 USA
TEL +1 510 351-3500
FAX +1 510 351-0500
greg@orban.com
http://www.orban.com
2005 Apr 04
0
io timeout after 180 seconds
...fclose ($fp);
~ return $in;
~ }
}
// }}}
// {{{ requires
require_once 'Console/Getopt.php';
// }}}
// {{{ grab command line vars
// don't run out of time
set_time_limit(0);
// we want all errors
error_reporting(E_ALL);
$args = Console_Getopt::readPHPArgv();
if (PEAR::isError($args)) {
~ die('Fatal Error: ' . $args->getMessage() . "\n");
}
$options = Console_Getopt::getopt($args, 'dhtr', array('debug',
'help', 'test', 'reinit'));
if (PEAR::isError($options)) {
~ die($options->getMessage() . "\n&...
2020 Jan 26
2
[RFC] Replacing inalloca with llvm.call.setup and preallocated
...ing statement expressions, to exit a call setup region
with
normal control flow. In this case, the Clang should emit a normal cleanup to
call `llvm.eh.teardown`. Consider:
```c++
#define RETURN_IF_ERR(maybeError) \
({ \
auto val = maybeError; \
if (val.isError()) \
return val.getError(); \
val.getValue; \
})
ErrorOr<int> mayFail();
void use_callsetup(int, Foo);
void f(bool cond) {
use_callsetup(RETURN_IF_ERR(mayFail()), Foo());
}
```
### Inlining non-EH code into EH code
If exceptions are disabled, th...