Displaying 20 results from an estimated 10000 matches similar to: ""netbios name" parameter"
2025 May 15
0
"netbios name" parameter
>>> With the obsolescence of NetBIOS, maybe it's time, for the sake of
>>> clarity and precision, to introduce a synonym like "short host
>>> name" to the
>> "netbios
>>> name" parameter, which would eventually be phased out in the future.
>>
>>> As it is now, the "netbios name" parameter is the only way to
2012 Jan 05
1
Enhance synonyms feature of the query parser (patch included)
Very few people seem to be using synonym in Xapian, I recently found some problems in the use of synonyms.
Normally, I think we should not contain any prefix info in synonym table except that 'Z'.
For example, I have the following synonyms and prefix info:
db.add_synonym("search", "find");
db.add_synonym("Zsearch", "Zfind");
2011 Jul 28
1
Xapian and Synonyms
Hi guys
I've just had a thought about something we do with our search on
ReportBuyer.com: we cater for both American and British English in our
searches and we have had plans for a while now to implement something
that allows users to find 'colour' and 'color', 'tap' and 'faucet' by
doing some clever programming.
Looking at the Xapian docs, though, it appears
2007 Jul 07
2
Extending/Modifying QueryParser
Hi,
I''ve implemented synonym searching in my rails application but have
an idea I''d like to implement but can''t figure out how to do. The
idea is that I''d like to give the end user the choice on whether to
search for the synonym of a word or not. Preferably by extending the
query language to parse a construct similar to ''%word1'' and
2015 Dec 28
3
synonym expansion for boolean prefixes.
I have an application for synonyms for tags in in notmuch, which means
synonym expansion for a particular boolean prefix. I have a vague memory
of Olly telling me this doesn't work, but I'm not sure about the
details.
My higher level goal is to support a kind of indirection with tags,
where query tag:foo can really generate tag:bar or tag:fub, depending on
some kind of configuration.
2009 Aug 15
1
extracting text from wordnet using synonym()
Dear group,
There are postings on extracting partial string using sub()/gsub()/gsubfn()
but I still couldn't figure this one out. Supposed I am pulling the
synonyms of "help" using synonyms("help") from wordnet and get the
followings:
> synonyms("help")
[1] "c(\"aid\", \"assist\", \"assistance\", \"help\")"
2019 Sep 19
3
Improving partial lookup results
Incidentally, if you're actually aiming to match different forms of a
name (Peter vs Pete, Ann vs Anne vs Annette) then you might find the
synonym feature a better option than wildcarding.
You'd need to give it a list of names to treat as synonyms, but it
should have many fewer false positives, and can also handle cases
which aren't just a substring - e.g. Robert vs Rob vs Bob vs
2016 Jan 09
1
synonym expansion for boolean prefixes.
Olly Betts <olly at survex.com> writes:
> On Tue, Jan 05, 2016 at 08:43:13AM -0400, David Bremner wrote:
>> Olly Betts <olly at survex.com> writes:
>>
>> > To achieve this with synonyms in a configurable way you'd need to
>> > rewrite the synonyms in the database to match the current configuration,
>> > so it's not as dynamic as the
2016 Jan 05
2
synonym expansion for boolean prefixes.
Olly Betts <olly at survex.com> writes:
> A better option for this is probably a FieldProcessor - you set one for
> a prefix and the it gets passed the value and returns a Query object
> for it. E.g. in lua (where you can just pass an anon function for the
> FieldProcessor - we ought to support C++11 lambdas for such things):
[snip]
> To achieve this with synonyms in a
2006 Aug 22
3
synonyms
Hi,
Using ferret and acts_as_ferret.
Great work.
Is there a way to define some synonyms (searchable words that would not
appear in the texts ?
Like stop words, but instead of being removed from query and index,
they would be added ;-)
Can some synonyms be regexp ? I''d like for instance to have ? (oelig)
be equivalent to oe in French.
Or maybe an utf8 normalization could achieve
2005 Nov 21
2
Multinomial Nested Logit package in R?
Dear R-Help,
I'm hoping to find a Multinomial Nested Logit package in R. It would
be great to find something analogous to "PROC MDC" in SAS:
> The MDC (Multinomial Discrete Choice) procedure analyzes models
> where the
> choice set consists of multiple alternatives. This procedure
> supports conditional logit,
> mixed logit, heteroscedastic extreme value,
2009 Apr 01
3
questions about bug 5535
AFAICs Simo's patch for bug 5535 was only applied to the 3.3 series.
Does the closing comment in https://bugzilla.samba.org/show_bug.cgi?id=5535
mean that the inconsistencies about RID calculation won't be addressed
in the 3.0 and 3.2 series?
Does the fact that 3.3.2 always uses sambaNextRid mean that algorithmic
RID allocation is doomed to obsolescence?
Regards,
Thierry
2012 Oct 04
1
Synonyms of Abbreviations
Hello,
I am looking for a documentation or an example to use the synonym function.
I tried this
db.add_synonym("omega","xapain");
and this works by adding the flag FLAG_AUTO_SYNONYMS.
If i try to use the
db.add_synonym("omega","xapain is search engine ");
it fails why? Can xapian use synonym for Abbreviations like MBA => Master
of business
2011 Mar 18
1
[PATCH] s3: Add "spoolss backchannel" parameter
---
.../smbdotconf/printing/spoolssbackchannel.xml | 16 ++++++++++++++++
source3/include/proto.h | 1 +
source3/param/loadparm.c | 12 ++++++++++++
source3/rpc_server/srv_spoolss_nt.c | 6 ++++++
4 files changed, 35 insertions(+), 0 deletions(-)
create mode 100644
2006 Mar 23
11
ActiveRecord: Oracle metadata loading slow on large database
All,
While attempting to use ActiveRecord against a large database, approx.
1700 tables and 4 million rows, I discovered an inefficiency in
oci_adapter.rb. The problem seems to be the SQL being generated to
lazy-load the columns metadata. "def columns(table_name, name = nil)"
method generates the following SQL:
select column_name, data_type, data_default, nullable,
2016 Jan 05
0
synonym expansion for boolean prefixes.
On Sun, Dec 27, 2015 at 11:24:36PM -0400, David Bremner wrote:
> I have an application for synonyms for tags in in notmuch, which means
> synonym expansion for a particular boolean prefix. I have a vague memory
> of Olly telling me this doesn't work, but I'm not sure about the
> details.
Yes, synonym expansion isn't done for boolean terms (only "probabilistic
2008 Feb 22
0
Association to indicate synonyms
Which is the better way to indicating synonyms into a table? But I''d
get all those synonyms together to the main table. Althought if is
choosed a synonym I''d that it were directed to the object of the main
table.
I don''t know if a polymorphic association could be helpful in this
case. Any help please?
-------------
create_table :words do |t|
t.string :name
t.string
2008 Apr 24
3
how to delete all document from the DB (without deleting the DB itself)
Hello,
I'm still testing PHP5 bindings and I could'nt find a way to delete
all documents from a DB without deleting other informations stored in
the DB such as synonyms.
Since the process of adding synonyms is time consuming, I would like
to use the same DB but restart my test without any document in the DB,
is this possibile?
I could'nt find a delete_all or a method like that, nor
2010 Oct 30
1
writable = yes for Profiles in smb.conf.default
Hello all
I'm suggesting to add line 'writable = yes' for Profiles share in file examples/smb.conf.default.
Then the complete share def looked like
;[Profiles]
; path = /usr/local/samba/profiles
; browseable = no
; guest ok = yes
; writable = yes
The reason is simply I spent two days figuring out why my Samba PDC did not work.
That line was missing. Not very clever, I
2017 Jan 12
2
NEAR non-leaf subqueries
Olly Betts writes:
> On Wed, Jan 04, 2017 at 07:29:58AM +0100, Jean-Francois Dockes wrote:
> > Olly Betts writes:
> > > The ticket has a patch which attempts to handle the OR case (which seems
> > > to be the part you actually care about) but this suffers from issues with
> > > object lifetimes which get a bit involved in the details. Since there
>