Displaying 20 results from an estimated 53 matches for "ftest".
Did you mean:
test
2011 Apr 03
2
converting "call" objects into character
Dear all,
I would like to log the calls to my functions. I am trying to do this using the function match.call():
fTest<-function(x)
{
theCall<-match.call()
print(theCall)
return(x)
}
> fTest(2)
fTest(x = 2)
[1] 2
I can see "theCall" printed into the console, but I don't manage to convert it into a character to write it into a log file with other informations.
C...
2007 May 21
3
need some help please
...rgs: dovecot
passdb:
driver: passwd
userdb:
driver: passwd
May 21 13:51:15 pop dovecot: imap-login: Login: user=<test>, method=PLAIN,
rip=127.0.0.1, lip=127.0.0.1, secured
May 21 13:51:38 pop dovecot: auth(default): passwd(test,127.0.0.1): lookup
May 21 13:51:53 pop dovecot: IMAP(ftest): Disconnected: Logged out
May 21 13:51:54 pop dovecot: imap-login: Login: user=<ftest>, method=PLAIN,
rip=127.0.0.1, lip=127.0.0.1, secured
May 21 13:51:54 pop dovecot: auth(default): pam(ftest,127.0.0.1): lookup
service=dovecot
May 21 13:51:56 pop dovecot: auth(default): client out: OK...
2011 Dec 22
2
Decoding only a certain frame results in different values than when decoding the entire file
To make it complete, here is the code that I am using to encode a large
file:
int __stdcall SpxEncode(unsigned char* inBuf, unsigned char* outBuf,
unsigned int inlen)
{
//char *testFile;
//FILE *ftest;
//testFile = "test";
//ftest = fopen(testFile, "wb");
//fwrite(inBuf,1,inlen,ftest);
//take every 320 bytes
//copy every short to float array, and make sure to put null in
unused area
float input[MAX_FRAME_SIZE];
char cbits[MAX_FRAME_BYTES]...
2009 Oct 09
4
Fatal: chdir( ) failed: Permission denied
Hi
Dovecot fails to chdir() into users home directory giving the following error:
Oct 9 16:43:49 jura dovecot: dovecot: Fatal: chdir(/a/home/mina) failed: Permission denied (euid=1118
0(mina) egid=11332(devel) missing +x perm: /a/home)
Oct 9 16:43:49 jura dovecot: dovecot: child 14441 (imap) returned error 89 (Fatal failure)
The reason seems to be that user primary group is "devel"
2017 Jun 20
1
Fortran programs not writing stdout on windows
...f stdout. When the same
executable is called from the terminal it works fine and prints to
stdout. This unexpected behavior is unfortunate for R wrappers that
rely on captured output.
A minimal example is available from github [1] and can be installed with
devtools::install_github("jeroen/ftest")
ftest::hello()
When running ftest::hello() on linux, R will properly capture output.
However on Windows it will return an empty string, and a file 'fort.6'
gets created in the working directory instead.
The executables can be found in: system.file("bin", package = &quo...
2017 Aug 31
2
The issue about code coverage for libguestfs
...-i-ova-Prefer-pigz-or-pxz-for-uncompressing-OVA-f.patch
Patch0036: 0036-resize-handle-empty-UUIDs-for-swap-partitions-RHBZ-1.patch
-
+Patch0037: 0037-possible-link-fix.patch
# Use git for patch management.
BuildRequires: git
@@ -815,6 +815,8 @@
%build
+CFLAGS="-fprofile-arcs -ftest-coverage -g -O0"; export CFLAGS
+LDFLAGS="-fprofile-arcs -ftest-coverage -lgcov"; export LDFLAGS
# Test if network is available.
ip addr list ||:
ip route list ||:
@@ -852,6 +854,7 @@
--disable-golang \
$extra
+sed -i 's/^CFLAGS = -fprofile-arcs -ftest-coverage -g -O0/...
2011 Dec 21
3
Decoding only a certain frame results in different values than when decoding the entire file
...ank you very much.
Hermann
Hi Lakhdar,
I am not sure if I do anything wrong with the dec state memory.
Could you perhaps take a look at what I am (perhaps wrongly) doing?
int __stdcall SpxDecode(unsigned char* DinBuf, float* DoutBuf, unsigned
int Dinlen)
{
//char *testFile;
//FILE *ftest;
//testFile = "test2";
//ftest = fopen(testFile, "wb");
//fwrite(inBuf,1,inlen,ftest);
//fwrite(outBuf, 1, outBufpos, ftest);
//fclose(ftest);
//take every 62 bytes
//decode, then write to outbuf
char cbits[MAX_FRAME_BYTES];
float o...
2007 Apr 05
2
about systemfit
...ed to systemfit. I ran the ADF regression with systemfit and obtained the same coefficient estimates as through ADF.test (as it had to be). Unfortunately I could not find how to extract AIC from the result of systemfit, so I evaluated the ADF regression by lm. So far so good. However the results of ftest.systemfit and linear.hypothesis from the "car" package are very different, while the results from waldtest.systemfit and linear.hypothesis coincide. I have no explanation for this issue a
nd I could not see the code of linear.hypothesis. When I type "linear.hypothesis" I get:
f...
2011 Dec 23
0
Decoding only a certain frame results in different values than when decoding the entire file
...Hermann
Am 22.12.2011 20:55, schrieb Hermann Weber:
> To make it complete, here is the code that I am using to encode a large
> file:
>
> int __stdcall SpxEncode(unsigned char* inBuf, unsigned char* outBuf,
> unsigned int inlen)
> {
> //char *testFile;
> //FILE *ftest;
> //testFile = "test";
> //ftest = fopen(testFile, "wb");
> //fwrite(inBuf,1,inlen,ftest);
>
> //take every 320 bytes
> //copy every short to float array, and make sure to put null in
> unused area
>
> float input[M...
2017 Sep 01
2
Re: The issue about code coverage for libguestfs
...Ms, so
> we can get the changes working upstream first. Make sure to read this
> page first:
>
> http://libguestfs.org/guestfs-building.1.html
I will read it later. And I need to think about how to do code coverage in this way. Thanks.
>
> > +CFLAGS="-fprofile-arcs -ftest-coverage -g -O0"; export CFLAGS
> > +LDFLAGS="-fprofile-arcs -ftest-coverage -lgcov"; export LDFLAGS
>
> > +sed -i 's/^CFLAGS = -fprofile-arcs -ftest-coverage -g -O0/CFLAGS = /g'
> > /home/mockbuild/rpmbuild/BUILD/libguestfs-1.36.5/ocaml/Makefile
>
&...
2011 Dec 23
2
Decoding only a certain frame results in different values than when decoding the entire file
...ieb Hermann Weber:
>> To make it complete, here is the code that I am using to encode a large
>> file:
>>
>> int __stdcall SpxEncode(unsigned char* inBuf, unsigned char* outBuf,
>> unsigned int inlen)
>> {
>> //char *testFile;
>> //FILE *ftest;
>> //testFile = "test";
>> //ftest = fopen(testFile, "wb");
>> //fwrite(inBuf,1,inlen,ftest);
>>
>> //take every 320 bytes
>> //copy every short to float array, and make sure to put null in
>> unused a...
2008 Jan 18
1
how to specify a particular contrast
...t I need
to exclude the situation where the response at the 3
levels of "treat" are equal. I can do separate
contrasts to test them separately:
obj<-aov(y~treat,data=dat)
### testing a=b=c
summary(glht(obj, linfct= mcp
(treat=c('a-b=0','a-c=0','b-c=0'))),test=Ftest())
### testing linear relationship among a,b and c
summary(glht(obj, linfct= mcp
(treat=c('a+c-2*b=0'))),test=Ftest())
Is there anyway to build one contrast that tests both
at the same time, i.e. just generate one single p
value. Because the ultimate purpose was to test the
linear relati...
2015 Apr 28
4
[LLVMdev] GCC compatibility code coverage issue .
Hi All,
We trying to use clang+llvm to generate the gcc coverage format as
clang version 3.6.0
$clang --coverage -Xclang -coverage-cfg-checksum -Xclang
-coverage-no-function-names-in-data -Xclang -coverage-version='407*'
test.c
$a.out
$llvm-cov gcov test.gcda
Unexpected version: *704.
Invalid .gcno File!
Debugging the above cause ,But any hints from experts here ,will help a lot
2011 Dec 22
0
Decoding only a certain frame results in different values than when decoding the entire file
...t;
> I am not sure if I do anything wrong with the dec state memory.
> Could you perhaps take a look at what I am (perhaps wrongly) doing?
>
> int __stdcall SpxDecode(unsigned char* DinBuf, float* DoutBuf, unsigned
> int Dinlen)
> {
>
> //char *testFile;
> //FILE *ftest;
> //testFile = "test2";
> //ftest = fopen(testFile, "wb");
> //fwrite(inBuf,1,inlen,ftest);
> //fwrite(outBuf, 1, outBufpos, ftest);
> //fclose(ftest);
>
> //take every 62 bytes
> //decode, then write to outbuf
>
> c...
2016 Dec 08
2
[HCL] Cyber Power Systems EC750G supported by usbhid-ups
...he load and remain off
shutdown.stop - Stop a shutdown in progress
test.battery.start.deep - Start a deep battery test
test.battery.start.quick - Start a quick battery test
test.battery.stop - Stop the battery test
==================================
log messages during shutdown:
Dec 8 13:08:14 ftest upsmon[2949]: UPS myups at localhost on battery
Dec 8 13:14:24 ftest upsmon[2949]: UPS myups at localhost battery is low
Dec 8 13:14:24 ftest upsmon[2949]: Executing automatic power-fail shutdown
Dec 8 13:14:24 ftest upsmon[2949]: Auto logout and shutdown proceeding
Dec 8 13:14:29 ftest shu...
2015 May 22
2
[LLVMdev] GCC compatibility code coverage issue .
...015, Umesh Kalappa <umesh.kalappa0 at gmail.com>
>> > wrote:
>> >>
>> >> Hi Justin ,
>> >>
>> >> Thank you for the reply,but without version too ,the llvm-cov fails i.e
>> >>
>> >> bash-4.1$ clang -fprofile-arcs -ftest-coverage test.c
>> >> bash-4.1$ ./a.out
>> >> bash-4.1$ llvm-cov gcov test.c
>> >> Unexpected number of edges (in main).
>> >> Invalid .gcda File!
>> >>
>> >> bash-4.1$ clang -g -O0 -fprofile-arcs -ftest-coverage -Xclang
>&g...
2013 Feb 01
0
[LLVMdev] Structure declaration with IR builder
...ointerType::get(structReg, 0);
>
> //Create a llvm function
> llvm::FunctionType* ty = llvm::FunctionType::get(llvm::Type::getInt32Ty(TargetModule->getContext()),structRegPtr,false);
> llvm::Constant *c = TargetModule->getOrInsertFunction(BB.getBlockName(),ty);
> fTest = llvm::cast<llvm::Function>(c);
> fTest ->setCallingConv(llvm::CallingConv::C);
>
> //Access the struct members
> llvm:Value *ArgValuePtr = builder->CreateStructGEP(fTest ->arg_begin(),0,"ptrMember1");
> llvm::Valuie *StructValue = builder->CreateLoa...
2017 Aug 31
0
Re: The issue about code coverage for libguestfs
...install the source package(libguestfs-1.36.5-1.el7.src.rpm)
Probably best to try building this from git instead of using RPMs, so
we can get the changes working upstream first. Make sure to read this
page first:
http://libguestfs.org/guestfs-building.1.html
> +CFLAGS="-fprofile-arcs -ftest-coverage -g -O0"; export CFLAGS
> +LDFLAGS="-fprofile-arcs -ftest-coverage -lgcov"; export LDFLAGS
> +sed -i 's/^CFLAGS = -fprofile-arcs -ftest-coverage -g -O0/CFLAGS = /g' /home/mockbuild/rpmbuild/BUILD/libguestfs-1.36.5/ocaml/Makefile
> ../libmlguestfs.a(libguest...
2007 Dec 07
0
regression tests for unlink and wildcards fail - Solaris 10 SPARC / Sun Studio 12 (PR#10501)
...SPARC). All tests using "make check" pass with a
status of OK. However, the following section of "reg-tests-1.R" fails when I
attempt to test after a build of either 2.6.0 or 2.6.1:
## regression tests for unlink and wildcards
owd <- setwd(tempdir())
f <- c("ftest1", "ftest2", "ftestmore", "ftest&more")
file.create(f)
stopifnot(file.exists(f))
unlink("ftest?")
stopifnot(file.exists(f) == c(FALSE, FALSE, TRUE, TRUE))
unlink("ftest*", recursive = TRUE)
stopifnot(!file.exists(f))
stopifno...
2013 Jan 31
2
[LLVMdev] Structure declaration with IR builder
Hi All,
I tryed to create a global structured derived declaration in my compiler by:
StructType *st = StructType(getGlobalContext(), elements, false);
In dump module i didn't find any code needed to declare a new user data
type.
Is there a instruction to add this class into current module?
Cheers,
Manuele