Will review and pull shortly. There's still an issue with your ICLA, can you please sort it out?
-- Itamar Syn-Hershko http://code972.com | @synhershko <https://twitter.com/synhershko> Freelance Developer & Consultant Author of RavenDB in Action <http://manning.com/synhershko/> On Mon, Sep 15, 2014 at 8:00 PM, Prad Nelluru <[email protected]> wrote: > Hey everyone, > Good to see progress! I've fixed many of the unit tests in the util > package. The pull request is here ( > https://github.com/apache/lucene.net/pull/18). > > -Prad > > -----Original Message----- > From: [email protected] [mailto:[email protected]] On > Behalf Of Itamar Syn-Hershko > Sent: Sunday, September 14, 2014 5:12 PM > To: [email protected] > Subject: Re: Pulsing Codec Port help > > Great! In the meantime I'm porting the Suggest, Queries, etc packages > while waiting for Prad to come up with new findings with the failing tests. > > -- > > Itamar Syn-Hershko > http://code972.com | @synhershko <https://twitter.com/synhershko> > Freelance Developer & Consultant Author of RavenDB in Action < > http://manning.com/synhershko/> > > On Mon, Sep 15, 2014 at 3:10 AM, Prescott Nasser <[email protected]> > wrote: > > > Sure didn't, that seems to have done the trick - > > > > Thanks Paul. > > > > ~P > > > > > Date: Sun, 14 Sep 2014 19:37:24 -0400 > > > Subject: Re: Pulsing Codec Port help > > > From: [email protected] > > > To: [email protected] > > > > > > The .class usually translates to a generic type parameter in C#. > > > Have you tried something like this: > > > > > > return atts.AddAttribute<PulsingEnumAttribute>().Enums()[this]; > > > > > > and > > > > > > return atts.AddAttribute<PulsingEnumAttribute>().Enums[this] = > > > other; > > > > > > > > > > > > > > > Paul Irwin > > > Lead Software Engineer > > > feature[23] > > > > > > Email: [email protected] > > > Cell: 863-698-9294 > > > > > > On Sun, Sep 14, 2014 at 7:30 PM, Prescott Nasser > > > <[email protected]> > > > wrote: > > > > > > > So, I've mostly ported the Pulsing Codecs and I'm running into a > > little > > > > trouble: > > > > > > > > private DocsEnum GetOther(DocsEnum de) > > > > { > > > > if (de == null) > > > > return null; > > > > > > > > var atts = de.Attributes(); > > > > return > > > > atts.AddAttribute(PulsingEnumAttribute.class).Enums().get(this); > > > > //how > > to > > > > convert this line. > > > > } > > > > > > > > private DocsEnum SetOther(DocsEnum de, DocsEnum other) > > > > { > > > > var atts = de.Attributes(); > > > > return > > > > atts.AddAttribute(PulsingEnumAttribute.class).Enums().put(this, > > > > other); //how to convert this line. > > > > } > > > > > > > > Java source here: > > > > > > https://github.com/apache/lucene-solr/blob/lucene_solr_4_8_0/lucene/co > > decs/src/java/org/apache/lucene/codecs/pulsing/PulsingPostingsReader.j > > ava > > > > > > > > Any thoughts? > > > > > > > > Thanks > > > > ~Prescott > > > > > > > > >
