search for: genfil

Displaying 14 results from an estimated 14 matches for "genfil".

Did you mean: genfile
2006 Apr 26
2
help in R
Hi, I cant understand where I am going wrong.Below is my code.I would really appreciate your help. Thanks. > genfile<-read.table("c:/tina/phd/bs871/hw/genfile.txt",skip=1) > > #read in SNP data > snp.dat <- as.matrix(genfile) > snp.name <- scan("c:/tina/phd/bs871/hw/genfile.txt",nline=1,what="character") Read 100 items > n.snp <- length(snp.name) > n.i...
2011 Feb 04
1
GWAF package: lme.batch.imputed(): object 'kmat' not found
Hello, All, GWAF 1.2 R.Version() is below. system(lme.batch.imputed( phenfile = 'phenfile.csv', genfile = 'CARe_imputed_release.0.fhsR.gz', pedfile='pedfile.csv', phen='phen1', covar=c('covar1','covar2'), kinmat='imputed_fhs.kinship.RData', outfile='imputed.FHS.IBC.GWAF.LME.output.0.txt' )) Gives the error messages: Error in coxme.varcheck(nc...
2012 Dec 28
3
git push heroku master error
allo vous tous vois l''erreur Counting objects: 66, done. Delta compression using up to 4 threads. Compressing objects: 100% (52/52), done. Writing objects: 100% (66/66), 26.30 KiB, done. Total 66 (delta 3), reused 0 (delta 0) -----> Ruby/Rails app detected -----> Installing dependencies using Bundler version 1.3.0.pre.2 Running: bundle install --without development:test
2008 Feb 12
0
[PATCH] Make `make distclean' remove a few more files.
...b/dummy popt/dummy zlib/dummy rm -f $(srcdir)/Makefile $(srcdir)/config.h $(srcdir)/config.status + rm -f $(srcdir)/lib/dummy $(srcdir)/popt/dummy $(srcdir)/zlib/dummy rm -f config.cache config.log rm -f $(srcdir)/config.cache $(srcdir)/config.log rm -f shconfig $(srcdir)/shconfig rm -f $(GENFILES) + rm -rf autom4te.cache # this target is really just for my use. It only works on a limited # range of machines and is used to produce a list of potentially -- 1.5.4.rc3.15.g4bbc
2008 Jan 03
2
[LLVMdev] Building LLVM on Windows
...,7 +21,7 @@ $(ObjDir)/Intrinsics.gen.tmp: $(ObjDir)/.dir $(INTRINSICTDS) $(TBLGEN) $(Echo) Building Intrinsics.gen.tmp from Intrinsics.td - $(Verb) $(TableGen) $(INTRINSICTD) -o $@ -gen-intrinsic + $(Verb) $(TableGen) $(call SYSPATH, $(INTRINSICTD)) -o $(call SYSPATH, $@) -gen-intrinsic $(GENFILE): $(ObjDir)/Intrinsics.gen.tmp $(Verb) $(CMP) -s $@ $< || ( $(CP) $< $@ && \ Index: Makefile.rules =================================================================== --- Makefile.rules (revision 45533) +++ Makefile.rules (working copy) @@ -483,8 +483,9 @@ ProgInstall = $(INST...
2014 Dec 17
0
[PATCH] build: sort sources to build in a more deterministic way
...5 deletions(-) diff --git a/codepage/Makefile b/codepage/Makefile index 18a590f..af5258a 100644 --- a/codepage/Makefile +++ b/codepage/Makefile @@ -1,6 +1,6 @@ VPATH = $(SRC) PERL = perl -CPSRC = $(wildcard $(SRC)/*.txt) +CPSRC = $(sort $(wildcard $(SRC)/*.txt)) CPOBJ = $(notdir $(CPSRC)) GENFILES = $(patsubst %.txt,%.cp,$(CPOBJ)) diff --git a/com32/cmenu/Makefile b/com32/cmenu/Makefile index 6bb5231..b81b68e 100644 --- a/com32/cmenu/Makefile +++ b/com32/cmenu/Makefile @@ -32,8 +32,8 @@ LIBMENU = libmenu/syslnx.o libmenu/com32io.o libmenu/tui.o \ libmenu/menu.o libmenu/passwords.o libm...
2015 Sep 03
2
Fuzzing complex programs
On Thu, Sep 3, 2015 at 6:45 PM, Kostya Serebryany <kcc at google.com> wrote: > Did you build the Postgres code with -fsanitize-coverage=... ? Yes: CC = clang CFLAGS = -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -Wno-unused-command-line-argument -g -O0 -fsanitize=address
2020 May 20
0
[PATCHv2] SSE2/SSSE3 optimized version of get_checksum1() for x86-64
...EXEEXT=@EXEEXT@ > LDFLAGS=@LDFLAGS@ > LIBOBJDIR=lib/ > @@ -27,7 +30,11 @@ SHELL=/bin/sh > VERSION=@RSYNC_VERSION@ > > .SUFFIXES: > -.SUFFIXES: .c .o > +ifeq ($(CXXUSED),yes) > + .SUFFIXES: .c .cpp .o > +else > + .SUFFIXES: .c .o > +endif > > GENFILES=configure.sh aclocal.m4 config.h.in proto.h proto.h-tstamp > rsync.1 rsync-ssl.1 rsyncd.conf.5 > HEADERS=byteorder.h config.h errcode.h proto.h rsync.h ifuncs.h > itypes.h inums.h \ > @@ -41,10 +48,11 @@ OBJS1=flist.o rsync.o generator.o receiver.o > cleanup.o sender.o exclude.o...
2020 May 19
5
[PATCHv2] SSE2/SSSE3 optimized version of get_checksum1() for x86-64
...CPPFLAGS=@CPPFLAGS@ +CXX=@CXX@ +CXXFLAGS=@CXXFLAGS@ +CXXUSED=@CXXUSED@ EXEEXT=@EXEEXT@ LDFLAGS=@LDFLAGS@ LIBOBJDIR=lib/ @@ -27,7 +30,11 @@ SHELL=/bin/sh VERSION=@RSYNC_VERSION@ .SUFFIXES: -.SUFFIXES: .c .o +ifeq ($(CXXUSED),yes) + .SUFFIXES: .c .cpp .o +else + .SUFFIXES: .c .o +endif GENFILES=configure.sh aclocal.m4 config.h.in proto.h proto.h-tstamp rsync.1 rsync-ssl.1 rsyncd.conf.5 HEADERS=byteorder.h config.h errcode.h proto.h rsync.h ifuncs.h itypes.h inums.h \ @@ -41,10 +48,11 @@ OBJS1=flist.o rsync.o generator.o receiver.o cleanup.o sender.o exclude.o \ OBJS2=options.o io.o co...
2020 May 18
3
[PATCH] SSE2/SSSE3 optimized version of get_checksum1() for x86-64
What do you base this on? Per https://gcc.gnu.org/onlinedocs/gcc/x86-Options.html : "For the x86-32 compiler, you must use -march=cpu-type, -msse or -msse2 switches to enable SSE extensions and make this option effective. For the x86-64 compiler, these extensions are enabled by default." That reads to me like we're fine for SSE2. As stated in my comments, SSSE3 support must be
2015 Sep 03
2
Fuzzing complex programs
...t/bool.o > utils/adt/cash.o utils/adt/char.o utils/adt/date.o > utils/adt/datetime.o utils/adt/datum.o utils/adt/dbsize.o > utils/adt/domains.o utils/adt/encode.o utils/adt/enum.o > utils/adt/expandeddatum.o utils/adt/float.o utils/adt/format_type.o > utils/adt/formatting.o utils/adt/genfile.o utils/adt/geo_ops.o > utils/adt/geo_selfuncs.o utils/adt/inet_cidr_ntop.o > utils/adt/inet_net_pton.o utils/adt/int.o utils/adt/int8.o > utils/adt/json.o utils/adt/jsonb.o utils/adt/jsonb_gin.o > utils/adt/jsonb_op.o utils/adt/jsonb_util.o utils/adt/jsonfuncs.o > utils/adt/like.o...
2020 May 22
2
[PATCH] Optimized assembler version of md5_process() for x86-64
...sm_x86_64.s diff --git a/Makefile.in b/Makefile.in index af5aaa56..fbe22ccc 100644 --- a/Makefile.in +++ b/Makefile.in @@ -33,8 +33,10 @@ VERSION=@RSYNC_VERSION@ .SUFFIXES: .c .o CXXOBJ= +ASMOBJ= ifeq ($(SIMD),x86-64) CXXOBJ=checksum_simd_x86_64.o + ASMOBJ=lib/md5_asm_x86_64.o endif GENFILES=configure.sh aclocal.m4 config.h.in proto.h proto.h-tstamp rsync.1 rsync-ssl.1 rsyncd.conf.5 @@ -52,7 +54,7 @@ OBJS3=progress.o pipe.o DAEMON_OBJ = params.o loadparm.o clientserver.o access.o connection.o authenticate.o popt_OBJS=popt/findme.o popt/popt.o popt/poptconfig.o \ popt/popthelp.o...
2010 Aug 17
6
DO NOT REPLY [Bug 7625] New: "Don't know how to make ./*.c"
https://bugzilla.samba.org/show_bug.cgi?id=7625 Summary: "Don't know how to make ./*.c" Product: rsync Version: 3.0.7 Platform: s390 OS/Version: Other Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned at samba.org ReportedBy: sebastian.hoffman at
2020 Feb 09
2
[RFC PATCH] Add SHA1 support
...-) create mode 100644 lib/md32_common.h create mode 100644 lib/sha1.c create mode 100644 lib/sha1.h create mode 100644 lib/sha_local.h diff --git a/Makefile.in b/Makefile.in index 9bb977eb6b0a8..a390afe4ed829 100644 --- a/Makefile.in +++ b/Makefile.in @@ -32,7 +32,7 @@ VERSION=@RSYNC_VERSION@ GENFILES=configure.sh aclocal.m4 config.h.in proto.h proto.h-tstamp rsync.1 rsyncd.conf.5 HEADERS=byteorder.h config.h errcode.h proto.h rsync.h ifuncs.h itypes.h inums.h \ lib/pool_alloc.h -LIBOBJ=lib/wildmatch.o lib/compat.o lib/snprintf.o lib/mdfour.o lib/md5.o \ +LIBOBJ=lib/wildmatch.o lib/compat.o...