similar to: Error after upgrading to latest xapian distro

Displaying 20 results from an estimated 9000 matches similar to: "Error after upgrading to latest xapian distro"

2011 Jul 28
0
xapian.InvalidArgumentError: Term too long (> 245)?
xapian.InvalidArgumentError: Term too long (> 245): XTEXT... What is 245 here. 245 characters or 245 bytes or 245 words or 245 unique words or 245 characters in one word? Does it include spaces? Ashish
2016 Jul 12
3
Xapian 1.4.0 released
On Mon, Jul 11, 2016 at 02:02:56PM -0700, Kevin Duraj wrote: > You are saying that when I search for "delve Xapian 1.4" on Google, a > company worth of 491 Billion of Dollars and you saying that their top > of the search result has nothing to do with Xapian. > > https://www.google.com/search?q=xapian+delve&ie=utf-8&oe=utf-8#q=delve+xapian+1.4 Well, I'm not
2007 Oct 17
1
passing arguments to functions within functions
Dear R Users, I am trying to write a wrapper around summarize and xYplot from Hmisc and am having trouble understanding how to pass arguments from the function I am writing to the nested functions. There must be a way, but I have not been able to figure it out. An example is below. Any advice would be greatly appreciated. Thanks, Dan # some example data df=expand.grid(rep=1:4,
2007 Mar 29
1
"Bad serialised query" error
Hi all, We've struck a problem when using remote queries and hoping someone can offer some guidance. I haven't managed to get a C++ reproduction in the test suite, but I have got a demo that fails using Python: import xapian db = xapian.remote_open('localhost', 8100) qp = xapian.QueryParser() qp.set_database(db) query = qp.parse_query('test') enq =
2016 Jul 23
0
Xapian 1.4.0 released
James, I would like to propose to change the following code while indexing a term that is larger than 245 characters and then crashing and aborting the entire index, we could rather truncate the term to 245 characters and continue with indexing. if (tname.size() > MAX_SAFE_TERM_LENGTH) throw Xapian::InvalidArgumentError("Term too long (> " STRINGIZE(MAX_SAFE_TERM_LENGTH) "):
2017 Oct 16
2
Current master unit test errors
I'm preparing a pull request for the master branch and noticed that `make check` on a clone of the xapian repository fails badly. I haven't merged my changes and built from e24cc6018de0. Is is just me or is there something broken in the master branch? Running test './apitest' under valgrind Running tests with backend "none"... Running test: defaultctor1...
2011 Jul 28
0
Is it changed in 1.2.6
xapian 1.0.16 threw xapian.InvalidArgumentError: Term too long (> 245) but in our testing xapian 1.26 is not throwing this exception. Did it change? Ashish
2008 Mar 31
2
alsa 1.016 compile error on latest kernel centos 5.1
Hi all, I need to compile alsa-project 1.0.16 on the latest centos 5.1 kernel. I am getting this error. What to do... ? CC [M] /home/silentm/MessageNet/alsa-project/alsa-driver-1.0.16/acore/sound_oss.o CC [M] /home/silentm/MessageNet/alsa-project/alsa-driver-1.0.16/acore/info_oss.o In file included from
2010 Jun 07
2
Is there a 64 character term size limit? In Ruby bindings?
I've just found some items in my Xapian database which aren't being indexed, when the terms are quite long. Example term: Frotherham_doncaster_and_south_humber_mental_health_nhs_foundation_trust It represents that the Freedom of Information request was made to a particular public body. It results in pages like this not correctly showing results:
2013 May 23
0
[LLVMdev] More User Friendly Tool Chain perhaps Through a DSL
Hi, LLVM is very useful but I am wondering if there is an interest in creating a full tool chain for language definition and compilation with IDE integration support (to be used by IDE implimenter) using a DSL perhaps using insights from projects like xtext (http://www.eclipse.org/Xtext/) and MPS (http://www.jetbrains.com/mps/). Perhaps you could use MPS code base to be able to have it translated
2009 Sep 09
2
InvalidArgumentError throw using Turkish stemmer and posting text "'leri"
Hi all, I've come across a very strange bug with Xapian 1.0.9.0 and the Turkish query parser when trying to index a string (as posting) that looks like this: "...bir araya getiren CD'leri son teknolojiyle piyasaya...". The actual offending bit of the string is: 'leri It throws the message I have shown below. The real annoyance is that I can't seem to catch it because it
2011 Jun 14
1
Problem installing Xapian python bindings on Mac OS X
I am using xapian-bindings-1.0.16.tar.gz ./configure --prefix=$HOME PYTHON=/usr/bin/python PYTHON_LIB=/Library/Python/2.6/site-packages --with-python --without-ruby --without-php --without-tcl and I get configure: error: Can't find xapian-config, although the xapian-core runtime library seems to be installed. If you've installed xapian-core from a package, you probably need to install
2010 Feb 18
2
xapian.DocNotFoundError: regression?
Hello, I've installed xapian-core 1.1.3 and xapian-bindings 1.1.4 from the tarballs announced by Olly the other day. With these versions, Enquire.get_mset() seems to consistently be raising xapian.DocNotFoundError. I've attached a small test case which reproduces this. The same test case works fine with 1.0.16 (not the latest 1.0.x, but it's what I had installed). Program output
2016 Sep 09
1
Phantom DNS records visible with dig, but not samba-tool dns
We appear to have some phantom DNS records on both our domain controllers. We can see the records using "dig", but not with samba-tool. We can't remove the records either. (v-ward and v-fief are the DCs, Hawaii and Alaska are old DCs which were demoted without errors, I'm trying to clean up some DNS records which don't seem to have been cleaned). All machines are
2008 Nov 27
1
A small bug in R code of the legend function of the Graphics pacakge (PR#13340)
Full_Name: Arkady Sherman Version: 2.8.0 OS: Windows XP Submission from: (NULL) (158.195.16.114) Please consider initialization of the "seg.len" variable. It's done only if (do.lines) { seg.len <- 2 .., but after the seg.len is used: if (has.pch) { pch <- rep(pch, length.out = n.leg) pt.bg <- rep(pt.bg, length.out = n.leg) pt.cex <-
2006 Feb 22
3
elements that appear only once
Hi. I have a factor and I want to extract just those elements that appear exactly once. How to do this? Toy example follows. > a <- as.factor(c(rep("oak",5) ,rep("ash",1),rep("elm",1),rep ("beech",4))) > a [1] oak oak oak oak oak ash elm beech beech beech beech Levels: ash beech elm oak > table(a) a ash beech elm oak
2003 Jul 01
6
Shell Requirements for Shorewall 1.4.6
The 1.4.6 version of Shorewall makes additional demands on the shell. I have found that both the RH9.0 version of ash and the version of ash that has long been available from the Shorewall download sites are *not* suitable for use with Shorewall 1.4.6. The LEAF Bering version of ash on the other hand works fine. Attached is a small shell program that will allow you to test your shell for
2009 Nov 30
2
how to install ash on CentOS 5.4?
Hi, Does anyone know if it's possible to install ash on CentOS 5.4, or just CentOS 5, for that matter? I'm trying to install OpenQRM which requires ash, but ash doesn't exist in the repositories. rpmfind.net als only has an older version listed, for CentOS 4 http://rpmfind.net/linux/rpm2html/search.php?query=ash&submit=Search+...&system=&arch= dag wier's repository
2016 May 30
1
xapian performance
Hi, I am facing some performance issue on xapian version 1.0.16. Can someone tell me how system configuration help to improve xapian performance. Guessing that re-indexing is taking time. Is there any performance improvement in later version ? What is performance for xapian on some particular system configuration ? Appreciate help for any pointer. thanks Smriti
2010 Dec 10
11
pp grammar test-files?
Hi, I am working on some tools that read and write pp files, and I wonder if there are some pp files available somewhere that can be used to test a parser. I am especially interested in if there are some tests written that capture invalid syntax. - henrik -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send