search for: fields

Displaying 20 results from an estimated 26572 matches for "fields".

Did you mean: field
2006 Mar 09
1
Missing fields in search result
Hello ferret users, I have a problem with ferret dropping stored fields in the index. Not all fields I want to store get stored, so they can be searched, but can''t be retrieved in a search. Index creation: INDEX = Index::Index.new(:path => ''/home/gregor/wisa/index'', :analyzer => Analysis::WhiteSpaceAnalyzer....
2018 Jul 30
0
2.3.2.1 - EC keys suppport?
> I did some local testing and it seems that you are using a curve that is not acceptable for openssl as a server key. > > I tested with openssl s_server -cert ec-cert.pem -key ec-key.pem -port 5555 > > using cert generated with brainpool. Everything works if I use prime256v1 or secp521r1. This is a limitation in OpenSSL and not something we can really do anything about. > >
2014 Jan 21
3
[PATCH] builder: proper consider subkeys in index files
...------- 5 files changed, 41 insertions(+), 22 deletions(-) diff --git a/builder/index-parser-c.c b/builder/index-parser-c.c index 17e680b..baf2b62 100644 --- a/builder/index-parser-c.c +++ b/builder/index-parser-c.c @@ -83,11 +83,13 @@ virt_builder_parse_index (value filenamev) for (j = 0, fields = sections->fields; fields != NULL; j++, fields = fields->next) { - v = caml_alloc_tuple (2); + v = caml_alloc_tuple (3); sv = caml_copy_string (fields->key); - Store_field (v, 0, sv); /* (key, value) */ - sv = caml_copy_string (fields->value); +...
2014 Jan 21
0
[PATCH] builder: proper consider subkeys in index files
...49,7 +49,7 @@ value virt_builder_parse_index (value filenamev) { CAMLparam1 (filenamev); - CAMLlocal4 (rv, v, sv, fv); + CAMLlocal5 (rv, v, sv, sv2, fv); struct section *sections; size_t i, nr_sections; @@ -83,11 +83,18 @@ virt_builder_parse_index (value filenamev) for (j = 0, fields = sections->fields; fields != NULL; j++, fields = fields->next) { - v = caml_alloc_tuple (2); + v = caml_alloc_tuple (3); sv = caml_copy_string (fields->key); - Store_field (v, 0, sv); /* (key, value) */ - sv = caml_copy_string (fields->value); +...
2014 Jan 21
2
Re: [PATCH] builder: proper consider subkeys in index files
On Tuesday 21 January 2014 16:37:20 Richard W.M. Jones wrote: > On Tue, Jan 21, 2014 at 05:18:27PM +0100, Pino Toscano wrote: > > + sv = caml_copy_string (fields->subkey ? fields->subkey : ""); > > > > Store_field (v, 1, sv); > > Heh, sure would be nice if this was an option type :-) > > I believe the following should work: > > (1) Change CAMLlocal4 (..) at the top of the function to: > > CAM...
2012 Apr 09
0
virsh works but libvirt-java throws a 'No route to host'
I'm able to connect to my xenserver using virsh like so and I see the VMs. [jdrews at flynx ~]$ virsh -c xenapi://root at 192.168.1.23?no_verify=1 list Enter root's password for 192.168.1.23: Id Name State ---------------------------------------------------- Struct did not contain expected field memory_overhead. Struct did not contain expected field
2018 Jul 30
3
2.3.2.1 - EC keys suppport?
> On 30 July 2018 at 20:37 ????? <vtol at gmx.net> wrote: > > > > >>>>>>> facing [ no shared cipher ] error with EC private keys. > >>>>>> the client connecting to your instance has to support ecdsa > >>>>>> > >>>>>> > >>>>> It does - Thunderbird 60.0b10 (64-bit) >
2007 Aug 10
3
Different ferret fields for instances of the same model?
Hi all, So far as I know, while using acts_as_ferret, we should add the following declaration in the ActiveRecord model which is going to be indexed: acts_as_ferret({:fields => @@ferrect_fields}) in which @@ferrect_fields is a hash containing all the field to be indexed. This is pretty much for some simple situations. But I got a more complex situation that I want to define the fields to be indexed for every instance of the same model. My requirements are somethin...
2007 Oct 28
1
test/trace
test/trace/Makefile.am | 11 +++++ test/trace/text-field-init-native-5.swf |binary test/trace/text-field-init-native-5.swf.trace | 2 + test/trace/text-field-init-native-6.swf |binary test/trace/text-field-init-native-6.swf.trace | 2 + test/trace/text-field-init-native-7.swf |binary test/trace/text-field-init-native-7.swf.trace | 2 +
2018 Jul 30
2
2.3.2.1 - EC keys suppport?
<!doctype html> <html> <head> <meta charset="UTF-8"> </head> <body> <div> <br> </div> <blockquote type="cite"> <div> On 30 July 2018 at 21:00 ѽ҉ᶬḳ℠ < <a href="mailto:vtol@gmx.net">vtol@gmx.net</a>> wrote: </div> <div> <br>
2007 Nov 01
0
5 commits - libswfdec/swfdec_as_array.c libswfdec/swfdec_as_object.c libswfdec/swfdec_text_field_movie.c test/image
...t3", 2, 25, 25, 100, 100); + +t3.autoSize = "right"; +t3.background = true; +t3.backgroundColor = 0x0000FF; commit 9004c86799488b57215561140cf32b984066085c Author: Pekka Lampila <pekka.lampila at iki.fi> Date: Thu Nov 1 21:29:16 2007 +0200 Add an image test for empty TextFields Still missing border testing there, since it's one pixel off diff --git a/test/image/Makefile.am b/test/image/Makefile.am index 52cd656..c40fd37 100644 --- a/test/image/Makefile.am +++ b/test/image/Makefile.am @@ -112,5 +112,12 @@ EXTRA_DIST = \ replace-shape-shape-6.swf \ replace...
2006 Jun 04
20
Proposal of some radical changes to API
...tors. Now I don''t know the exact thinking behind these rules but it seems to me that it would be better to just keep whatever rule you used when you first added the document. If you want to add term vectors later, then re-index. So here''s my radical api change proposal. You set a fields properties when you create the index and Document becomes (almost) a simple Hash object. Actually, you may not have realized this, but you can almost do this currently in Ferret. Once you add the first instance of a field, that field''s properties are set. From then on you and just add docu...
2006 Sep 20
8
Understanding boost ?
Hi, I''m confused about managing field boosting ... I have set the :boost for the :name field in my docs to 10, via :boost => 10 Then I performed a search for ''keith'' over all fields via with *:(keith*), expecting a doc with Keith in the :name field to come out on top. But another doc with Keith mentioned in other fields (:comments, :address) scored higher. I viewed the explanation from the searcher, but it wasn''t clear to me why the boost wasn''t pushing the...
2006 Aug 23
4
Ferret 0.10 and Fields
Hey ... I just tried to convert my code to 0.10 .. But i''m currently not sure how to use fields.. i really like some of the new api.. its leaner and i like the fact that these strange consts are gone (like Ferret::Search::BooleanClause::Occur::MUST) .. I see that you''re now having Ferret::Index::FieldInfo to describe the fields of the index.. thats good.. and i now see that documen...
2019 Jul 01
0
[PATCH 1/6] p2v: move kernel config to perl script
...t;, "none", "output allocation not set"], + ["OUTPUT_ALLOCATION_SPARSE", "sparse", "sparse"], + ["OUTPUT_ALLOCATION_PREALLOCATED", "preallocated", "preallocated"], + )], +); + +# Configuration fields. +my @fields = [ + ConfigSection->new( + name => 'remote', + elements => [ + ConfigString->new(name => 'server'), + ConfigInt->new(name => 'port', value => 22), + ], + ), + ConfigSection->new( + name => 'auth', +...
2003 Feb 13
5
ESRI shape file import and time-space models
Dear R user, I am running R under Windows 2000. I am looking for a routine for importing - shape files (ESRI) into R - dbase files (FOXPRO) into R and I am looking for time-space models for description and prediction of Bernoulli-, Binomial- and Poissonvaraibles. Thank's a lot for a reply. Sincerely yours, Ekkehardt Altpeter Swiss Federal Office of Public
2007 Nov 01
0
2 commits - libswfdec/swfdec_text_field_movie.c test/image
libswfdec/swfdec_text_field_movie.c | 6 ++++-- test/image/Makefile.am | 7 +++++++ test/image/text-field-color-transform-6.swf |binary test/image/text-field-color-transform-6.swf.png |binary test/image/text-field-color-transform-7.swf |binary test/image/text-field-color-transform-7.swf.png |binary test/image/text-field-color-transform-8.swf
2009 Nov 12
1
trap window pop up when running 'bugs' in R
.../Documents and Settings/BaBaoZ" ... .pos INTEGER 208 .text TextModels.Model [0100DEA0H] .v Views.View [01027520H] BugsCmds.Parse [00000470H] .name ARRAY 256 OF CHAR "C:/Documents and Settings/BaBaoZ" ... .s BugsScanners.Scanner Fields StdInterpreter.CallProc [0000047AH] .a BOOLEAN FALSE .b BOOLEAN FALSE .c BOOLEAN FALSE .i Meta.Item Fields .imported ARRAY 256 OF CHAR "" ... .importing ARRAY 256 OF CHAR "" ... .mn Meta.Name "Bugs...
2020 Aug 14
2
Another possible tracing feature for TableGen
I hacked around a bit with the simple case of tracing just classes and defs (no multiclasses or defms). Below you will see my test file and then the output produced. Note that the regular output from the PrintRecords backend follows the trace, so you can see the final classes and records there. Once the trace can be selective, it makes sense to add another option for PrintRecords that restricts
2007 Mar 05
2
Cost of using many fields
Hi, In ferret, and especially when using acts_as_ferret, it is easy to specify many fields. What is the cost of using a lot of fields from a performance perspective? Is each field searched separately, or are they combined together in the inverted index. As an extreme example, if I made every word in my documents a separate field (so the first word in each document was field 1 and the...