Displaying 20 results from an estimated 580 matches for "stopper".
Did you mean:
stopped
2010 Sep 01
8
FIXMEs in Search::Xapian
Carrying on this conversation:
http://lists.tartarus.org/pipermail/xapian-discuss/2007-March/003513.html
void
TermGenerator::set_stopper(stopper)
Stopper * stopper
CODE:
// FIXME: no corresponding SvREFCNT_dec(), but a leak seems better
than
// a SEGV!
SvREFCNT_inc(ST(1));
THIS->set_stopper(stopper);
It would be good to fix these FIXMEs.
A class-level HASH could be maintained of contained objects.
Any o...
2006 Sep 12
9
Another Tar stopper
...layed from previous errors.
I thought perhaps this is some file locked becuase I was running from a
terminal session in gnome.
So I switched over to init 3 and ran the tar process from the text session.
Still got this error.
How do I figure out what is wrong and how do I find any similar
show-stoppers?
2010 Apr 05
1
Problem with stop words by indexing
...ss and I have no stemming.
I have tried with a simple example but it does not work at all.
I have my writableDatabase and my termGenerator (indexer) and they work
well both together: I can index texts and search trough the database
correctly.
But if I add (before indexing my texts):
Xapian::SimpleStopper stopper;
stopper.add("testword");
indexer.set_stopper(&stopper);
... the result is exactly the same as before. I have checked with delve
and "testword" is indexed.
Do I use the SimpleStopper in a right way?
Regards
Emmanuel
2017 Jun 14
2
KMeans Clusterer - Going forward
...rms). Getting the
useful terms within a document in its document vector can improve its
accuracy, due to less noise terms. Two important things to be done in this
direction are :
1) Stemming
This is easier because xapian already provides stemmed terms.
2) Stopword removal
Use either Xapian::SimpleStopper or create a subclass of Xapian::Stopper to
determine whether a term that is fed to it is a stopword or not. But for
determining which terms are stopwords, I was wondering whether we'd be
using the stopword list within xapian/languages/stopwords or will we have
to create one within the cluster d...
2009 Apr 06
2
Code review for stopper: 7315 xVM VNC service doesn''t work
http://cr.opensolaris.org/~johnlev/xvm-vnc-chown/
Now Xvnc runs as the ''jack'' user on the live CD, the password file must
be owned by jack for it to work.
Note that a full fix for this would make this VNC service only exist on
the live CD[1]. As a temporary measure, we just disable ourselves
post-install.
Process question: after putting back to pkg-gate, does this need
2010 May 27
1
Problem with stop words by indexing
...oes not
> work at all.
>
> > I have my writableDatabase and my termGenerator
> (indexer) and they work
> well both together: I can index texts and search
> trough the database
> correctly.
> >
> > But if I add (before indexing my texts):
> > Xapian::SimpleStopper stopper;
> > stopper.add("testword");
> > indexer.set_stopper(&stopper);
> >
> > ... the result is exactly the same as before. I have
> checked with delve
> and "testword" is indexed.
>
> http://article.gmane.org/gmane.comp.search.xapian...
2006 Jan 09
4
Lack of support of Stored Procedures is a Show Stopper
In my opinion most mature/complex client/server or n-tier applications
using SQL Server, Oracle, or MySQL, use stored procedures.
Without support (except by use of the execute method) for Stored
Procedures, Ruby on Rails or MonoRail is a Show Stopper. We are unable
to effectively use Ruby On Rails as all access to the db is using Stored
Procedures.
This does not mean that we are unable to use ORM. In fact, if we were to
be able to consider a Store Procedure results set as a View, we can
easily analyze the view (or DataSet) returned as a fir...
2016 May 03
4
Trying to build bootable iso but very confused by syslinux documentation
I was trying to follow this tutorial
https://help.ubuntu.com/community/LiveCDCustomizationFromScratch. i got
confused with the part about Create an isolinux.cfg file.
The show stopper for me was the mkisofs because the closest command I
had available was xorrisofs and I think a switch was different.
2011 Jul 21
0
[LLVMdev] git
On Thu, Jul 21, 2011 at 02:18:43PM +0200, Tobias Grosser wrote:
> Did you try to work with git and are you convinced this is a show
> stopper for you? Or are you looking for specific solutions beyond
> the ones I have suggested?
I had to work with git for a number of projects. It's a regression.
It nothing that is a show stopper, but I don't really see the advantage
of moving to git either.
Joerg
2008 Mar 12
1
how can i use stopwords?
Hi,
I do not understand the stopword function...
I've set the termgenerator like this:
$self->{'Stemmer'} = new Search::Xapian::Stem(german2);
$self->{'Stopper'} = new Search::Xapian::SimpleStopper();
$self->{'TermGenerator'} = new Search::Xapian::TermGenerator;
$self->{'TermGenerator'}->set_stemmer( $self->{'Stemmer'} );
$self->{'TermGenerator'}->set_stopper( $self->{'Stopper'} );
I've...
2012 Jun 04
1
Search not finding queries with stop words.
...rser();
$qp->set_stemmer(new Search::Xapian::Stem("english"));
$qp->set_stemming_strategy(STEM_SOME);
$qp->set_default_op($defaultop);
...
my $par = $qp->parse_query($query);
my $enq = $xDatabase->enquire( $par );
and in the db create script:
my $stopper = Search::Xapian::SimpleStopper->new();
foreach my $word (@ar) {
$stopper->add($word);
}
...
my $doc = Search::Xapian::Document->new();
my $indexer = Search::Xapian::TermGenerator->new();
my $stemmer = Search::Xapian::Stem->new('en...
2018 Apr 10
7
[RFC PATCH net-next v6 4/4] netvsc: refactor notifier/event handling code to use the bypass framework
...;sridhar.samudrala at intel.com> wrote:
> Use the registration/notification framework supported by the generic
> bypass infrastructure.
>
> Signed-off-by: Sridhar Samudrala <sridhar.samudrala at intel.com>
> ---
Thanks for doing this. Your current version has couple show stopper
issues.
First, the slave device is instantly taking over the slave.
This doesn't allow udev/systemd to do its device rename of the slave
device. Netvsc uses a delayed work to workaround this.
Secondly, the select queue needs to call queue selection in VF.
The bonding/teaming logic doesn't...
2018 Apr 10
7
[RFC PATCH net-next v6 4/4] netvsc: refactor notifier/event handling code to use the bypass framework
...;sridhar.samudrala at intel.com> wrote:
> Use the registration/notification framework supported by the generic
> bypass infrastructure.
>
> Signed-off-by: Sridhar Samudrala <sridhar.samudrala at intel.com>
> ---
Thanks for doing this. Your current version has couple show stopper
issues.
First, the slave device is instantly taking over the slave.
This doesn't allow udev/systemd to do its device rename of the slave
device. Netvsc uses a delayed work to workaround this.
Secondly, the select queue needs to call queue selection in VF.
The bonding/teaming logic doesn't...
2011 Jul 21
4
[LLVMdev] git
...[3], Polly, LLVM and clang I got
used to search all the time in the history (as it is readily available
even for offline use and it is extremely fast). As a result, looking up
version numbers easily integrated into my work flow.
Did you try to work with git and are you convinced this is a show
stopper for you? Or are you looking for specific solutions beyond the
ones I have suggested?
Cheers
Tobi
[1] http://repo.or.cz/w/cloog.git
[2] http://repo.or.cz/w/isl.git
[3] http://repo.or.cz/w/pluto.git
2009 Jun 30
4
Extension status as XML for an Aastra 57i
I'm in the process of converting our current hybrid key system to
Asterisk and Aastra 57i phones. One of the features that seems to be a
show stopper for almost everyone in the office is the inability to see
who is on the phone. Can someone point in the right direction to setup
an XML app on the phone so they can press a soft-button and get a list
of extensions and their statuses? I know I can use BLF and the line 2-4
buttons; but there are a lo...
2014 Mar 15
3
RH fucks up quite often recently
Latest really rude show stoppers were/are:
el6:
- librsvg2: your private fork bomb for gnome
- kernel: scheduler completely broken on numa systems
- qt: kde unusable when going up from -26 to -28
el5:
- firefox hangs on quit after latest ESR update
- (totem plugins no longer work too)
What I am using an enterprise distro for...
2006 Mar 14
7
Realtime Extensions
...ealtime extensions allows extensions in the format callerid/extension yet? ie the extensions.conf file allows you to do:
5551212/1000 => exten ...
and it matches against extension 1000 when the caller id is 5551212. Last time I checked, realtime didn't support this yet.
That's a show stopper for us.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060314/db1601dc/attachment.htm
2000 Jan 27
6
EGD requirement a show stopper for me
On Thu, Jan 13, 2000 at 17:34:10, Andre Lucas wrote:
> Subject: /dev/urandom
> On Thu, Jan 13, 2000 at 09:24:01AM -0700, SysProg - Nathan Paul Simons wrote:
> > On Thu, 13 Jan 2000, Ben Taylor wrote:
> >
> > > On Thu, 13 Jan 2000, Max Shaposhnikov wrote:
> > > > why ssh1.27 doesn't requre /dev/urandom on solaris?
> >
> > i think the
2009 Apr 15
4
[Release Planning 3.4] 3.4.0pre1 will be delayed
Hey folks,
the release of Samba 3.4.0pre1 will be delayed until April 30, 2009 due to
the samr access check bugs and bug #6263 (Domain login problems in Windows
XP without SP3).
@Developers: There is still some space left to place your changes in the
release notes.
Karolin
--
Samba http://www.samba.org
SerNet http://www.sernet.de
sambaXP http://www.sambaxp.org
-------------- next part
2006 May 03
6
New Release: One-Click Ruby Installer 1.8.4-17 release candidate 2
We are almost there to a final release. The uninstall issues have been
fixed, and a few packages have been upgraded to more recent versions. Many
thanks to Ryan Leavengood and Shahank Date who stepped in to help finish off
this release!
*** Only "show-stopper" problems will be fixed ***
We are extreme short of manpower at the moment. So as much as I would like
to address each and every issue, the reality is that only serious problems
will be address before the final release.
The main changes/fixes in this release are:
* Start menu items are now...