search for: tsearch

Displaying 20 results from an estimated 111 matches for "tsearch".

Did you mean: search
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
2015 Sep 03
2
Fuzzing complex programs
.../pruneheap.o access/heap/rewriteheap.o > access/heap/syncscan.o access/heap/tuptoaster.o > access/heap/visibilitymap.o access/index/genam.o > access/index/indexam.o access/nbtree/nbtcompare.o > access/nbtree/nbtinsert.o access/nbtree/nbtpage.o > access/nbtree/nbtree.o access/nbtree/nbtsearch.o > access/nbtree/nbtutils.o access/nbtree/nbtsort.o > access/nbtree/nbtxlog.o access/rmgrdesc/brindesc.o > access/rmgrdesc/clogdesc.o access/rmgrdesc/committsdesc.o > access/rmgrdesc/dbasedesc.o access/rmgrdesc/gindesc.o > access/rmgrdesc/gistdesc.o access/rmgrdesc/hashdesc.o > a...
2018 Jan 24
4
Geometry delaunayn and deldir results, differing results from Octave due to decimal precision?
...ry(foreign) theData <- read.octave('x y tri xiflat yiflat tri_list.mat') options(digits = 10) x <- unlist(theData[1]) y <- unlist(theData[3]) tri_deldir <- triMat(deldir(x,y)) tri_delaunayn <- delaunayn(x,y) tri_delaunayn <- delaunayn(cbind(x,y)) tri_list_from_deldir <- tsearch(x,y,tri_deldir,xiflat,yiflat) xiflat <- unlist(theData[7]) yiflat <- unlist(theData[9]) tri_list_from_deldir <- tsearch(x,y,tri_deldir,xiflat,yiflat) tri_list_from_delaunayn <- tsearch(x,y,tri_delaunayn,xiflat,yiflat) Kam Yuen Software Developer T +44 (0)1491 820634| F +44 (0)1491 820...
2018 Jan 24
0
Geometry delaunayn and deldir results, differing results from Octave due to decimal precision?
...ve('x y tri xiflat yiflat tri_list.mat') > options(digits = 10) > x <- unlist(theData[1]) > y <- unlist(theData[3]) > tri_deldir <- triMat(deldir(x,y)) > tri_delaunayn <- delaunayn(x,y) > tri_delaunayn <- delaunayn(cbind(x,y)) > tri_list_from_deldir <- tsearch(x,y,tri_deldir,xiflat,yiflat) > xiflat <- unlist(theData[7]) > yiflat <- unlist(theData[9]) > tri_list_from_deldir <- tsearch(x,y,tri_deldir,xiflat,yiflat) > tri_list_from_delaunayn <- tsearch(x,y,tri_delaunayn,xiflat,yiflat) > > > Kam Yuen > Software Developer &...
2018 Jan 25
0
Geometry delaunayn and deldir results, differing results from Octave due to decimal precision?
...ve('x y tri xiflat yiflat tri_list.mat') > options(digits = 10) > x <- unlist(theData[1]) > y <- unlist(theData[3]) > tri_deldir <- triMat(deldir(x,y)) > tri_delaunayn <- delaunayn(x,y) > tri_delaunayn <- delaunayn(cbind(x,y)) > tri_list_from_deldir <- tsearch(x,y,tri_deldir,xiflat,yiflat) > xiflat <- unlist(theData[7]) > yiflat <- unlist(theData[9]) > tri_list_from_deldir <- tsearch(x,y,tri_deldir,xiflat,yiflat) > tri_list_from_delaunayn <- tsearch(x,y,tri_delaunayn,xiflat,yiflat) > > > Kam Yuen > Software Developer &...
2006 Mar 24
10
innodb vs myisam
Hi, I have been using myisam tables in mysql with rails because my client will soon want fulltext searchable content, however when I migrated my development db from schema.rb all of the tables generated were innodb. I understand that I can override this, but also like the transactions and foreign keys of innodb. So 2 questions really: 1. are transactions in activerecord dependent on innodb or do
2000 Nov 12
1
Balanced trees in tinc
Hi everybody, I'm looking into replacing the linked lists in tinc with balanced trees. Using balanced trees will greatly improve performance for medium to large VPNs. As I see it, there are several options: 1) Use tsearch()/twalk()/etc functions from glibc. + It is in a very standard library - It relies solely on callback functions, which sometimes results in ugly, awkward code (I tried to use this in subnet.c just now...) - Not extendable 2) Use our own tree management code. + Optimized for tinc...
2009 Jul 16
1
Theil test help
Hello, I have a series of questions that I hope will be simple to answer. Basically I would like a code to do the following so that I can compute the distribution free test for the slope of a postulated regression line (Theil test). As I am testing the null hypothesis that slope = 0 against the general alternative the slope does not equal 0, it should be pretty straight-forward. I have a data
2006 Jul 31
5
PostgreSQL
Hi @ all Does anyone has some experience with PostgreSQL and RoR? Does it gives any disadvantages or problems with PostgreSQL? I have a webapplication, that manage (read/write) many records (no. 200''000 records) and I search a ideal database. Actually, I have two options: - MySQL / - PostgreSQL And now, I would like to ascertain a good solution... Thx, ribit -- Posted via
2006 Mar 25
1
Re: Rails Digest, Vol 18, Issue 656
...with innodb would there be a workaround for > > effective text searching? > > You need to do some fun stuff to make that work. > > If you aren''t forced to stay on MySQL, you might consider another open > source database... PostgreSQL. > > Transactional support + tsearch2 = relational data integrity + smart > full text searching. > > More info: > > - http://www.postgresql.org/ > - http://www.sai.msu.su/~megera/postgres/gist/tsearch/V2/ > > > -Robby > > -- > /************************************************************** >...
2015 Nov 17
12
3.7.1-rc1 has been tagged. Let's begin testing!
Hi, I have just tagged 3.7.1-rc1, so it is ready for testing. As a reminder, when doing regression testing, use the 3.7.0 release as your baseline. Thanks, Tom
2015 Oct 09
2
llvm-dev Digest, Vol 136, Issue 22
(Note to self: learn to scan the full digest for later messages in a thread before replying to an earlier message.) Ed, Your reply to John answered some of my questions, but not all, and raised a new one: > Maybe I should have been a bit clearer; we're really interested in full > memory and type safety. We want to harden the system against memory > corruption vulnerabilities.
2019 Jul 21
2
Missing hivex.h error when compiling on macOS 10.14 (Mojave)
...is declared... yes checking for O_CLOEXEC... yes checking for promoted mode_t type... int checking whether strerror_r is declared... (cached) yes checking whether setenv is declared... yes checking search.h usability... yes checking search.h presence... yes checking for search.h... yes checking for tsearch... yes checking for struct timespec in <time.h>... yes checking whether unsetenv is declared... yes checking for alloca as a compiler built-in... yes checking byteswap.h usability... no checking byteswap.h presence... no checking for byteswap.h... no checking whether // is distinct from /......
2001 Jun 04
2
creating /etc/tinc directories in make install
Hi, I am curious why don't you guys create /etc/tinc directory, set permissions, add /etc/rc.d scripts etc. from the Makefile(s) in the source distribution ? Doing a make install and not finding an example config in /etc/tinc is kind of frustrating. Am I missing something? Maybe there is a good reason for that? Also, why is it not finding evp.h when I try to do configure? Is creating
2006 Jun 22
2
Error - Compiling R on a Sun V40Z - R/R-2.2.1 (PR#9024)
...hecking for munmap... yes checking for putenv... (cached) yes checking for setenv... (cached) yes checking for setlocale... yes checking for snprintf... (cached) yes checking for stpcpy... no checking for strcasecmp... yes checking for strdup... (cached) yes checking for strtoul... yes checking for tsearch... yes checking for wcslen... yes checking for __argz_count... no checking for __argz_stringify... no checking for __argz_next... no checking for __fsetlocking... yes checking whether _snprintf is declared... no checking whether _snwprintf is declared... no checking whether feof_unlocked is declare...
2005 May 11
5
Implementing R on IBM p690 cluster Jump
...ecking for munmap... yes checking for putenv... (cached) yes checking for setenv... (cached) yes checking for setlocale... yes checking for snprintf... (cached) yes checking for stpcpy... yes checking for strcasecmp... yes checking for strdup... (cached) yes checking for strtoul... yes checking for tsearch... yes checking for wcslen... yes checking for __argz_count... no checking for __argz_stringify... no checking for __argz_next... no checking for __fsetlocking... no checking whether _snprintf is declared... no checking whether _snwprintf is declared... no checking whether feof_unlocked is declared...
2006 May 18
0
R-devel and PGI 6.0 compile error
..... yes checking for munmap... yes checking for putenv... (cached) yes checking for setenv... yes checking for setlocale... yes checking for snprintf... (cached) yes checking for stpcpy... yes checking for strcasecmp... yes checking for strdup... (cached) yes checking for strtoul... yes checking for tsearch... yes checking for wcslen... yes checking for __argz_count... yes checking for __argz_stringify... yes checking for __argz_next... yes checking for __fsetlocking... yes checking whether _snprintf is declared... no checking whether _snwprintf is declared... no checking whether feof_unlocked is decl...
2014 May 29
3
Re: libguestfs error
...hecking whether select is declared without a macro... yes checking for inline... inline checking for library containing setsockopt... none needed checking whether setenv is declared... yes checking search.h usability... yes checking search.h presence... yes checking for search.h... yes checking for tsearch... yes checking for uid_t in sys/types.h... yes checking whether snprintf returns a byte count as in C99... yes checking whether snprintf is declared... yes checking for stdbool.h that conforms to C99... yes checking for _Bool... yes checking whether strdup is declared... yes checking whether ffsl...
2011 Jun 21
0
builder-ubuntu libguestfs FAILED build step e1e78bcef5e4654bd2456bd696840329359d35cd
...her memchr works... yes checking for C/C++ restrict keyword... __restrict checking whether memrchr is declared... yes checking for ssize_t... yes checking whether setenv is declared... yes checking search.h usability... yes checking search.h presence... yes checking for search.h... yes checking for tsearch... yes checking for stdbool.h that conforms to C99... yes checking for _Bool... yes checking for wchar_t... yes checking whether strdup is declared... yes checking whether memmem is declared without a macro... yes checking whether mempcpy is declared without a macro... yes checking whether memrchr...
2014 May 29
2
Re: libguestfs error
Hi Rich Yes Rich I have tried libguesftfs on powerpc and it was working fine.For some reason i had to format my hard disk and now when I'm again compiling it,I'm getting following error.... Below is the status of configure .. This is how we have configured the optional components for you today: Daemon .............................. yes Appliance ........................... yes QEMU