Displaying 15 results from an estimated 15 matches for "otest".
Did you mean:
test
2005 Sep 21
0
HOWTO: A simple AGI application to modify incomi ng CallerID on the fly using SQL Server and *not* UnixODBC
...write request
fputs($fToOpen, $sSend);
//now read response
while (!feof($fToOpen))
{
$sReturn = $sReturn .
fgets($fToOpen, 128);
}
fclose($fToOpen);
}
return $sReturn;
}
}//class
//Here is the code that uses this class. First we create the class
$oTest = new ODBCSocketServer;
//Set the Hostname, port, and connection string
$oTest->sHostName = "192.168.1.17";
$oTest->nPort = 9628;
$oTest->sConnectionString = "DSN=intranet;UID=sa;PWD=12345;";
//It is bad practice to use the SA account; in sane installations y...
2005 Sep 22
0
AGI Script to interact with ACCESS Databse a nd Set CID info on the fly.
...rite request
fputs($fToOpen, $sSend);
//now read response
while (!feof($fToOpen))
{
$sReturn = $sReturn .
fgets($fToOpen, 128);
}
fclose($fToOpen);
}
return $sReturn;
}
}//class
//Here is the code that uses this class. First we create the class
$oTest = new ODBCSocketServer;
//Set the Hostname, port, and connection string
$oTest->sHostName = "192.168.1.17";
$oTest->nPort = 9628;
$oTest->sConnectionString = "DSN=intranet;UID=sa;PWD=12345;";
//It is bad practice to use the SA account; in sane installations...
2013 Jan 30
0
[LLVMdev] Calling dispatch_async() within call to ExecutionEngine::runFunction()
I have used libdispatch (on FreeBSD) from JIT'd code without any issues, so I think your bug is elsewhere.
David
On 30 Jan 2013, at 07:43, Rick Mann wrote:
> My host app calls runFunction() on my JITed code. It, in turn, calls a C function ("decode()") in the host app that then calls dispatch_async(). The runFunction() call returns as expected, but the block passed to
2013 Jan 30
3
[LLVMdev] Calling dispatch_async() within call to ExecutionEngine::runFunction()
My host app calls runFunction() on my JITed code. It, in turn, calls a C function ("decode()") in the host app that then calls dispatch_async(). The runFunction() call returns as expected, but the block passed to dispatch_async() never gets called. The async block is supposed to call a function pointer callback that was passed in to decode().
Everything is being called on the main
2016 Oct 17
2
Dict proxy client returning empty string instead of multiline string
...S_IFSOCK|0777, st_size=0, ...}) = 0
> > > >>>>>> [...]
> > > >>>>>> write(8, "H2\t0\t0\tadmin at domain.tld\tsieve\n", 30) = 30
> > > >>>>>> [...]
> > > >>>>>> read(8, "Otest\1r\1ntest\n", 8192) = 14
> > > >>>>>>
> > > >>>>>> Indeed "\1r" and "\1n" are the escape sequences used by
> > > >>>>>> "lib/strescape.c". I went deeped and debugged the call to...
2016 Oct 16
2
Dict proxy client returning empty string instead of multiline string
...ts from running "doveadm dict get"
against the dict socket:
connect(8, {sa_family=AF_UNIX, sun_path="..."}, 110) = 0
fstat(8, {st_mode=S_IFSOCK|0777, st_size=0, ...}) = 0
[...]
write(8, "H2\t0\t0\tadmin at domain.tld\tsieve\n", 30) = 30
[...]
read(8, "Otest\1r\1ntest\n", 8192) = 14
Indeed "\1r" and "\1n" are the escape sequences used by
"lib/strescape.c". I went deeped and debugged the call to "dict_lookup"
performed by doveadm. Indeed the client gets the proper string from the
socket and to my surpri...
2011 Jun 20
3
[LLVMdev] C struct as function argument
...[SVFunctionTests testLLVMStructFuncCall]' started.
; ModuleID = 'llvm_structfunccall_test'
%0 = type { i32, i32 }
declare i64* @testLLVMStructFuncCall(%0)
define i64* @0() {
entry:
%0 = call i64* @testLLVMStructFuncCall(%0 { i32 10, i32 25 })
ret i64* %0
}
2011-06-20 21:25:54.821 otest-x86_64[3369:707] 10 0
/Users/mtindal/Projects/Silver/Tests/SVFunctionTests.m:576: error: -[SVFunctionTests testLLVMStructFuncCall] : Expected <35>, but was <10>
Test Case '-[SVFunctionTests testLLVMStructFuncCall]' failed (0.016 seconds).
The module dump suggests everything is...
2016 Oct 17
2
Dict proxy client returning empty string instead of multiline string
...socket:
>>
>> connect(8, {sa_family=AF_UNIX, sun_path="..."}, 110) = 0
>> fstat(8, {st_mode=S_IFSOCK|0777, st_size=0, ...}) = 0
>> [...]
>> write(8, "H2\t0\t0\tadmin at domain.tld\tsieve\n", 30) = 30
>> [...]
>> read(8, "Otest\1r\1ntest\n", 8192) = 14
>>
>> Indeed "\1r" and "\1n" are the escape sequences used by
>> "lib/strescape.c". I went deeped and debugged the call to "dict_lookup"
>> performed by doveadm. Indeed the client gets the proper stri...
2016 Oct 17
2
Dict proxy client returning empty string instead of multiline string
...gt;>>>> fstat(8, {st_mode=S_IFSOCK|0777, st_size=0, ...}) = 0
> >>>>>> [...]
> >>>>>> write(8, "H2\t0\t0\tadmin at domain.tld\tsieve\n", 30) = 30
> >>>>>> [...]
> >>>>>> read(8, "Otest\1r\1ntest\n", 8192) = 14
> >>>>>>
> >>>>>> Indeed "\1r" and "\1n" are the escape sequences used by
> >>>>>> "lib/strescape.c". I went deeped and debugged the call to "dict_lookup"
> &...
2008 Apr 12
0
[LLVMdev] Bitwidth analysis?
We have a bitwidth analysis that can be downloaded. It is not in LLVM.
There should be a link in the paper:
http://www.cs.utah.edu/~regehr/papers/pldi075-cooprider.pdf
John Regehr
2008 Apr 12
1
[LLVMdev] Bitwidth analysis?
...iler running?
best,
Fernando
------------------------------------------------------------------------------
if test ! -f Makefile.cil ;then echo Run configure first ;fi
make -f Makefile.cil check
make[1]: Entering directory `/misc/project/fernando/cil-cXprop'
bin/cilly -c test/small1/func.c -otest/small1/func.o
gcc -D_GNUCC -E -DCIL=1 test/small1/func.c -o /tmp/cil-UGzNLDHj.i
/project/fernando/cil-cXprop/obj/x86_LINUX/cilly.asm.exe --out
/tmp/cil-WsGP4BtF.cil.c /tmp/cil-UGzNLDHj.i
test/small1/func.c:17: Bug: unrollType failed in castTo
Context : 2cil: foo
error in doExp (Errormsg.Error)...
2019 Oct 03
2
[PATCH] Avoiding Dereferencing of NULL pointer
...hnaiah bommu <krishnaiah.bommu at intel.com>
---
moduli.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/moduli.c b/moduli.c
index 578fc48..c1fa484 100644
--- a/moduli.c
+++ b/moduli.c
@@ -153,12 +153,14 @@ static int
qfileout(FILE * ofile, u_int32_t otype, u_int32_t otests, u_int32_t otries,
u_int32_t osize, u_int32_t ogenerator, BIGNUM * omodulus)
{
- struct tm *gtm;
+ struct tm *gtm = NULL;
time_t time_now;
int res;
time(&time_now);
gtm = gmtime(&time_now);
+ if (!gtm)
+ return (-1);
res = fprintf(ofile, "%04d%02d%02d%02d%02d%02d...
2008 Apr 09
4
[LLVMdev] Bitwidth analysis?
Hi, LLVMers,
has someone implemented bitwidth analysis for LLVM? I was looking for
something similar to the bitwise compiler described in
"Bidwidth analysis with application to silicon compilation, by Mark
Stephenson, Jonathan Babb and Saman Amarasinghe"
e.g.: http://portal.acm.org/citation.cfm?id=349299.349317
all the best,
Fernando
2016 Oct 17
1
Dict proxy client returning empty string instead of multiline string
...;> connect(8, {sa_family=AF_UNIX, sun_path="..."}, 110) = 0
>>> fstat(8, {st_mode=S_IFSOCK|0777, st_size=0, ...}) = 0
>>> [...]
>>> write(8, "H2\t0\t0\tadmin at domain.tld\tsieve\n", 30) = 30
>>> [...]
>>> read(8, "Otest\1r\1ntest\n", 8192) = 14
>>>
>>> Indeed "\1r" and "\1n" are the escape sequences used by
>>> "lib/strescape.c". I went deeped and debugged the call to "dict_lookup"
>>> performed by doveadm. Indeed the client gets...
2016 Oct 17
2
Dict proxy client returning empty string instead of multiline string
...th="..."}, 110) = 0
> >>>> fstat(8, {st_mode=S_IFSOCK|0777, st_size=0, ...}) = 0
> >>>> [...]
> >>>> write(8, "H2\t0\t0\tadmin at domain.tld\tsieve\n", 30) = 30
> >>>> [...]
> >>>> read(8, "Otest\1r\1ntest\n", 8192) = 14
> >>>>
> >>>> Indeed "\1r" and "\1n" are the escape sequences used by
> >>>> "lib/strescape.c". I went deeped and debugged the call to "dict_lookup"
> >>>> performe...