similar to: ANN: Alpha Ruby bindings for Xapian now available

Displaying 20 results from an estimated 3000 matches similar to: "ANN: Alpha Ruby bindings for Xapian now available"

2006 Apr 22
1
Ruby bindings now pass all smoketests
Dear Xapian developers, I am happy to announce that the Xapian-Ruby bindings now pass all tests defined in smoketest.rb. (These tests are mostly drawn from smoketest.py; a few tests that are not applicable to the Ruby version have been removed.) I have also added Olly's patch to integrate the Ruby bindings into the automake/configure scripts. The latest version is available by anonymous
2006 Apr 20
1
Odd stemmer behavior
I've noticed some strange results from the stemmer in the Ruby port: irb(main):003:0> @stem.stem_word("anybody") => "anybodi" irb(main):004:0> @stem.stem_word("swimmingly") => "swim" irb(main):005:0> @stem.stem_word("fiercely") => "fierc" irb(main):006:0> @stem.stem_word("fraudulently") =>
2006 May 10
2
ruby bindings odds and ends
In the Ruby bindings, set_X and get_X are renamed to remove the get/set, so MSet::get_matches_estimated() becomes a read-only property (if I have my terminology right) of the Ruby MSet class called matches_estimated. This matches how a Ruby programmer would expect a class to be designed. I was looking through the getters and setters list. I wonder if a few entries shouldn't be there, (the
2007 Apr 11
1
Re: [Xapian-commits] 8181: trunk/xapian-bindings/ trunk/xapian-bindings/python/
On Wed, Apr 11, 2007 at 10:31:39AM +0100, richard wrote: > python/smoketest.py: Replace cut-and-pasted test checking code > with functions, to simplify tests. It might be simpler, but mostly because functionality has gone - you've thrown away all my carefully written failure messages! Now if a test fails, the message is very generic and you have to read the code to find out what's
2006 Aug 10
28
On the total nondisclosure of the 8/9/06 security vulnerability
Dear Rails team, The handling of the recent vulnerability in Rails has proven somewhat problematic for us. We have recently adopted Rails as our web platform of choice; previously, we used J2EE. We love Rails. We hate J2EE. We don''t want to go back. It took a lot of effort and convincing to get the management teams of our various projects to sign off on the use of Rails. The
2020 Aug 05
1
HELPWANTED keyword in bugs.r-project.org
Just a quick note to mention that we have added a HELPWANTED keyword on bugs.r-project.org for tagging bugs and issues where a good well-tested patch would be particularly appreciated. You can find the HELPWANTED issues by selecting the keyword in the search interface or at https://bugs.r-project.org/bugzilla/buglist.cgi?keywords=HELPWANTED This URL shows both open and resolved HELPWANTED
2012 Dec 16
1
[Developing and Starting with Xapian]
Hi, My interest lies in primarily in Natural Language Processing and Information Retrieval and I would like to know how can I contribute to the organization and how should I begin. Regards Abhishek Shah -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.xapian.org/pipermail/xapian-devel/attachments/20121216/2c1109bf/attachment-0001.html>
2011 Dec 29
3
Array element is function of its position in the array
I want to create a new array which selects values from an original array based on a function of the indices. That is: I want to create a new matrix Vnew[i,j,k]=Vold[i,j,ks] where ks is a function of the index elements i,j,k. I want to do this WITHOUT a loop. Call the function "ksfunction", and the array dimensions nis,njs,nks. I can do this using a loop as follows: # Loop version:
2017 Jan 16
0
Building xapian-bindings
Oh, by the way, just running `make all` works fine too, which is what I am now doing in the gem.. but fixing the makefile would retain the existing working behaviour of `make clean all` which was fine in 1.2.x On 16 January 2017 at 14:21, Samuel Williams <space.ship.traveller at gmail.com> wrote: > I'm posting this here to help others who might be having the same issue. > > I
2017 Jan 16
2
Building xapian-bindings
I'm posting this here to help others who might be having the same issue. I maintain xapian-core ruby gem. I was trying to upgrade to 1.4.2 and had some issues. The generated makefile doesn’t work because of the following: docs/rdocs/index.html: docs/xapian.rb rm -rf docs/rdocs $(MKDIR_P) docs cd docs && $(RDOC) --op rdocs `test -f xapian.rb||echo '$(abs_srcdir)/'`xapian.rb
2003 Aug 14
1
Asterisk SIP calls failing - not a proxy? What of RTP codec transcoding?
I have an Asterisk 0.4.0 install working with two grandstream budgetone 100 phones, gnophone, and kphone. This is a private network segment (172.17.x.x), with the PBX configured on my outbound firewall which has a public address (66.x.x.x). - I can make calls between phones - all extensions are working. - I can make IAX calls to IAXTEL. No problems (apparently gsm only) - I can call SIP phone
2007 Nov 27
3
Problems with xapian php bindings in osx
Hello, I am attempting to run the smoketest.php file from my devserver and am getting nothing but errors. It looks like it did not install correctly. Yesterday I compiled the source on os x and it appeared to install just fine, but now it is not working at all. I tried to replace the location of the xapian.php file with a hardcoded located and got a different set of errors. Here are
2003 Aug 21
1
Working example of "switch"?
Does anyone have a working example of how to use the "switch" directive to peer two Asterisk PBXes? -- - Ian C. Blenke <icblenke@nks.net> (This message bound by the following: http://www.nks.net/email_disclaimer.html)
2003 Aug 20
1
IAX <> IAX trunking... DP cache?
I'm attempting to get two Asterisk 0.4.0 PBXes to communicate with one another using IAX/IAX2 trunks. I've managed to get a semi-functional NAT Firewall working as a PBX (with Asterisk running directly on the firewall itself), but there are issues with bind()ing to various interfaces which is causing outbound SIP issues. To get around these issues, the idea is to do something like
2012 Jan 10
1
plotOHLC(alpha3): Error in plotOHLC(alpha3) : x is not a open/high/low/close time series
R version 2.12.0, 64 bit on Windows. Here is a short script that illustrates the problem: library(tseries) library(xts) setwd('C:\\cygwin\\home\\Ted\\New.Task\\NKs-01-08-12\\NKs\\tests') x = read.table("quotes_h.2.dat", header = FALSE, sep="\t", skip=0) str(x) y <- data.frame(as.POSIXlt(paste(x$V2,substr(x$V4,4,8),sep=" "),format='%Y-%m-%d
2012 Jan 24
1
problems with rollapply {zoo}
Here is a relatively simple script (with comments as to the logic interspersed): # Some of these libraries are probably not needed here, but leaving them in place harms nothing: library(tseries) library(xts) library(quantmod) library(fGarch) library(fTrading) library(ggplot2) # Set the working directory, where the data file is located, and read the raw data
2016 Mar 26
0
PHP bindings fail on Ubuntu for xapian-bindings-1.2.21
On Sat, Mar 26, 2016 at 04:51:35PM -0500, Yannick Warnier wrote: > On an Ubuntu 15.10, following the docs at > https://trac.xapian.org/wiki/FAQ/PHP%20Bindings%20Package > > When > > running debuild -e PHP_VERSIONS=5 -us -uc > > I get (sorry for the French): > > > " > dpkg-buildpackage -rfakeroot -D -us -uc > dpkg-buildpackage: paquet source
2003 Aug 12
1
Working with FWD, IPTel, SIPPhone?
I'll admit it. I'm a asterisk newbie (but no stranger to telephony). The setup is simple: two Grandstream BudgeTel 100 phones (SIPPhone specials) on a private segment calling to a Linux box acting as the segment's firewall with a leg on our public network. The phones are setup as SIP/phone1 (x1000) and SIP/phone2 (x1001), respectively (thanks to the Asterisk HOWTO). Getting IAX
2016 Mar 26
0
PHP bindings fail on Ubuntu for xapian-bindings-1.2.21
Le 26/03/16 18:44, Yannick Warnier a ?crit : > Le 26/03/16 18:04, Olly Betts a ?crit : >> On Sat, Mar 26, 2016 at 04:51:35PM -0500, Yannick Warnier wrote: >>> On an Ubuntu 15.10, following the docs at >>> https://trac.xapian.org/wiki/FAQ/PHP%20Bindings%20Package >>> >>> When >>> >>> running debuild -e PHP_VERSIONS=5 -us -uc
2016 Mar 26
2
PHP bindings fail on Ubuntu for xapian-bindings-1.2.21
Hi Olly and co, On an Ubuntu 15.10, following the docs at https://trac.xapian.org/wiki/FAQ/PHP%20Bindings%20Package When running debuild -e PHP_VERSIONS=5 -us -uc I get (sorry for the French): " dpkg-buildpackage -rfakeroot -D -us -uc dpkg-buildpackage: paquet source xapian-bindings dpkg-buildpackage: version source 1.2.21-2.1 dpkg-buildpackage: distribution source unstable