Lucene.Net.Codecs: license headers and usings
Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/46743cc0 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/46743cc0 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/46743cc0 Branch: refs/heads/api-work Commit: 46743cc04b4f0a11b32b77db96435e73511c8c11 Parents: 0159ad2 Author: Shad Storhaug <[email protected]> Authored: Sun Jan 29 20:22:59 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Sun Jan 29 20:22:59 2017 +0700 ---------------------------------------------------------------------- .../Appending/AppendingCodec.cs | 36 ++++---- .../Appending/AppendingPostingsFormat.cs | 38 ++++----- .../Appending/AppendingTermsReader.cs | 38 ++++----- .../BlockTerms/BlockTermsReader.cs | 45 +++++----- .../BlockTerms/BlockTermsWriter.cs | 44 +++++----- .../BlockTerms/FixedGapTermsIndexReader.cs | 48 +++++------ .../BlockTerms/FixedGapTermsIndexWriter.cs | 47 ++++++----- .../BlockTerms/TermsIndexReaderBase.cs | 39 +++++---- .../BlockTerms/TermsIndexWriterBase.cs | 38 ++++----- .../BlockTerms/VariableGapTermsIndexReader.cs | 51 ++++++------ .../BlockTerms/VariableGapTermsIndexWriter.cs | 50 ++++++------ .../Bloom/BloomFilterFactory.cs | 35 ++++---- .../Bloom/BloomFilteringPostingsFormat.cs | 50 ++++++------ .../Bloom/DefaultBloomFilterFactory.cs | 34 ++++---- src/Lucene.Net.Codecs/Bloom/FuzzySet.cs | 43 +++++----- src/Lucene.Net.Codecs/Bloom/HashFunction.cs | 34 ++++---- src/Lucene.Net.Codecs/Bloom/MurmurHash2.cs | 36 ++++---- .../DiskDV/DiskDocValuesFormat.cs | 43 +++++----- .../DiskDV/DiskDocValuesProducer.cs | 42 +++++----- src/Lucene.Net.Codecs/DiskDV/DiskNormsFormat.cs | 39 ++++----- .../Memory/DirectDocValuesConsumer.cs | 45 +++++----- .../Memory/DirectDocValuesFormat.cs | 37 ++++----- .../Memory/DirectDocValuesProducer.cs | 8 +- .../Memory/DirectPostingsFormat.cs | 63 +++++++------- .../Memory/FSTOrdPostingsFormat.cs | 36 ++++---- .../Memory/FSTOrdPulsing41PostingsFormat.cs | 36 ++++---- .../Memory/FSTOrdTermsReader.cs | 56 ++++++------- .../Memory/FSTOrdTermsWriter.cs | 54 ++++++------ .../Memory/FSTPostingsFormat.cs | 35 ++++---- .../Memory/FSTPulsing41PostingsFormat.cs | 37 ++++----- src/Lucene.Net.Codecs/Memory/FSTTermOutputs.cs | 44 +++++----- src/Lucene.Net.Codecs/Memory/FSTTermsReader.cs | 43 +++++----- src/Lucene.Net.Codecs/Memory/FSTTermsWriter.cs | 51 ++++++------ .../Memory/MemoryDocValuesConsumer.cs | 46 +++++------ .../Memory/MemoryDocValuesFormat.cs | 35 ++++---- .../Memory/MemoryDocValuesProducer.cs | 44 +++++----- .../Memory/MemoryPostingsFormat.cs | 71 ++++++++-------- .../Pulsing/Pulsing41PostingsFormat.cs | 34 ++++---- .../Pulsing/PulsingPostingsFormat.cs | 39 +++++---- .../Pulsing/PulsingPostingsReader.cs | 46 +++++------ .../Pulsing/PulsingPostingsWriter.cs | 43 +++++----- src/Lucene.Net.Codecs/Sep/IntIndexInput.cs | 36 ++++---- src/Lucene.Net.Codecs/Sep/IntIndexOutput.cs | 36 ++++---- src/Lucene.Net.Codecs/Sep/IntStreamFactory.cs | 35 ++++---- src/Lucene.Net.Codecs/Sep/SepPostingsReader.cs | 41 +++++----- src/Lucene.Net.Codecs/Sep/SepPostingsWriter.cs | 40 ++++----- src/Lucene.Net.Codecs/Sep/SepSkipListReader.cs | 40 ++++----- src/Lucene.Net.Codecs/Sep/SepSkipListWriter.cs | 40 ++++----- .../SimpleText/SimpleTextCodec.cs | 35 ++++---- .../SimpleText/SimpleTextDocValuesFormat.cs | 37 ++++----- .../SimpleText/SimpleTextDocValuesReader.cs | 59 +++++++------- .../SimpleText/SimpleTextDocValuesWriter.cs | 51 ++++++------ .../SimpleText/SimpleTextFieldInfosFormat.cs | 35 ++++---- .../SimpleText/SimpleTextFieldInfosReader.cs | 49 ++++++----- .../SimpleText/SimpleTextFieldInfosWriter.cs | 48 ++++++----- .../SimpleText/SimpleTextFieldsReader.cs | 76 ++++++++--------- .../SimpleText/SimpleTextFieldsWriter.cs | 36 ++++---- .../SimpleText/SimpleTextLiveDocsFormat.cs | 75 +++++++++-------- .../SimpleText/SimpleTextNormsFormat.cs | 35 ++++---- .../SimpleText/SimpleTextPostingsFormat.cs | 37 ++++----- .../SimpleText/SimpleTextSegmentInfoFormat.cs | 35 ++++---- .../SimpleText/SimpleTextSegmentInfoReader.cs | 50 ++++++------ .../SimpleText/SimpleTextSegmentInfoWriter.cs | 44 +++++----- .../SimpleText/SimpleTextStoredFieldsFormat.cs | 35 ++++---- .../SimpleText/SimpleTextStoredFieldsReader.cs | 76 +++++++++-------- .../SimpleText/SimpleTextStoredFieldsWriter.cs | 57 +++++++------ .../SimpleText/SimpleTextTermVectorsFormat.cs | 36 ++++---- .../SimpleText/SimpleTextTermVectorsReader.cs | 86 ++++++++++---------- .../SimpleText/SimpleTextTermVectorsWriter.cs | 46 +++++------ .../SimpleText/SimpleTextUtil.cs | 33 ++++---- src/Lucene.Net.Core/Util/Fst/Util.cs | 2 +- 71 files changed, 1498 insertions(+), 1576 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Appending/AppendingCodec.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Appending/AppendingCodec.cs b/src/Lucene.Net.Codecs/Appending/AppendingCodec.cs index 3b87595..cb690ab 100644 --- a/src/Lucene.Net.Codecs/Appending/AppendingCodec.cs +++ b/src/Lucene.Net.Codecs/Appending/AppendingCodec.cs @@ -1,24 +1,24 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using System; +using Lucene.Net.Codecs.Lucene40; namespace Lucene.Net.Codecs.Appending { - using System; - using Lucene40; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /// <summary> /// This codec uses an index format that is very similar to Lucene40Codec http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Appending/AppendingPostingsFormat.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Appending/AppendingPostingsFormat.cs b/src/Lucene.Net.Codecs/Appending/AppendingPostingsFormat.cs index d15d75c..f937595 100644 --- a/src/Lucene.Net.Codecs/Appending/AppendingPostingsFormat.cs +++ b/src/Lucene.Net.Codecs/Appending/AppendingPostingsFormat.cs @@ -1,25 +1,25 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using Lucene.Net.Codecs.Lucene40; +using Lucene.Net.Index; +using System; namespace Lucene.Net.Codecs.Appending { - using System; - using Lucene40; - using Index; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /// <summary> /// Appending Postigns Implementation http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Appending/AppendingTermsReader.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Appending/AppendingTermsReader.cs b/src/Lucene.Net.Codecs/Appending/AppendingTermsReader.cs index 3929f83..1b01fea 100644 --- a/src/Lucene.Net.Codecs/Appending/AppendingTermsReader.cs +++ b/src/Lucene.Net.Codecs/Appending/AppendingTermsReader.cs @@ -1,25 +1,25 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using Lucene.Net.Index; +using Lucene.Net.Store; +using System; namespace Lucene.Net.Codecs.Appending { - using System; - using Index; - using Store; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /// <summary> /// Reads append-only terms from AppendingTermsWriter. http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/BlockTerms/BlockTermsReader.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/BlockTerms/BlockTermsReader.cs b/src/Lucene.Net.Codecs/BlockTerms/BlockTermsReader.cs index e427beb..8a0bf2b 100644 --- a/src/Lucene.Net.Codecs/BlockTerms/BlockTermsReader.cs +++ b/src/Lucene.Net.Codecs/BlockTerms/BlockTermsReader.cs @@ -1,30 +1,29 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using Lucene.Net.Index; +using Lucene.Net.Store; +using Lucene.Net.Util; +using System; +using System.Collections.Generic; +using System.Diagnostics; namespace Lucene.Net.Codecs.BlockTerms { + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ - using System; - using System.Collections.Generic; - using System.Diagnostics; - using Index; - using Store; - using Util; - /// <summary> /// Handles a terms dict, but decouples all details of /// doc/freqs/positions reading to an instance of {@link http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/BlockTerms/BlockTermsWriter.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/BlockTerms/BlockTermsWriter.cs b/src/Lucene.Net.Codecs/BlockTerms/BlockTermsWriter.cs index a6d9bda..d95aa57 100644 --- a/src/Lucene.Net.Codecs/BlockTerms/BlockTermsWriter.cs +++ b/src/Lucene.Net.Codecs/BlockTerms/BlockTermsWriter.cs @@ -1,28 +1,28 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using Lucene.Net.Index; +using Lucene.Net.Store; +using Lucene.Net.Util; +using System; +using System.Collections.Generic; +using System.Diagnostics; namespace Lucene.Net.Codecs.BlockTerms { - using System; - using System.Collections.Generic; - using System.Diagnostics; - using Index; - using Store; - using Util; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /// <summary> /// Writes terms dict, block-encoding (column stride) each term's metadata http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/BlockTerms/FixedGapTermsIndexReader.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/BlockTerms/FixedGapTermsIndexReader.cs b/src/Lucene.Net.Codecs/BlockTerms/FixedGapTermsIndexReader.cs index 8fa852f..534c9d0 100644 --- a/src/Lucene.Net.Codecs/BlockTerms/FixedGapTermsIndexReader.cs +++ b/src/Lucene.Net.Codecs/BlockTerms/FixedGapTermsIndexReader.cs @@ -1,30 +1,30 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using Lucene.Net.Index; +using Lucene.Net.Store; +using Lucene.Net.Util; +using Lucene.Net.Util.Packed; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; namespace Lucene.Net.Codecs.BlockTerms { - using System; - using System.Collections.Generic; - using System.Diagnostics; - using System.Linq; - using Index; - using Store; - using Util; - using Util.Packed; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /// <summary> /// TermsIndexReader for simple every Nth terms indexes http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/BlockTerms/FixedGapTermsIndexWriter.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/BlockTerms/FixedGapTermsIndexWriter.cs b/src/Lucene.Net.Codecs/BlockTerms/FixedGapTermsIndexWriter.cs index b202a57..4339316 100644 --- a/src/Lucene.Net.Codecs/BlockTerms/FixedGapTermsIndexWriter.cs +++ b/src/Lucene.Net.Codecs/BlockTerms/FixedGapTermsIndexWriter.cs @@ -1,30 +1,29 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHoutput WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using Lucene.Net.Index; +using Lucene.Net.Store; +using Lucene.Net.Util; +using Lucene.Net.Util.Packed; +using System; +using System.Collections.Generic; +using System.Diagnostics; namespace Lucene.Net.Codecs.BlockTerms { - - using System; - using System.Collections.Generic; - using System.Diagnostics; - using Index; - using Store; - using Util; - using Util.Packed; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /// <summary> /// Selects every Nth term as and index term, and hold term http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/BlockTerms/TermsIndexReaderBase.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/BlockTerms/TermsIndexReaderBase.cs b/src/Lucene.Net.Codecs/BlockTerms/TermsIndexReaderBase.cs index 76ee43c..6323e7e 100644 --- a/src/Lucene.Net.Codecs/BlockTerms/TermsIndexReaderBase.cs +++ b/src/Lucene.Net.Codecs/BlockTerms/TermsIndexReaderBase.cs @@ -1,26 +1,25 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using Lucene.Net.Index; +using Lucene.Net.Util; +using System; namespace Lucene.Net.Codecs.BlockTerms { - - using System; - using Index; - using Util; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /// <summary> /// TODO http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/BlockTerms/TermsIndexWriterBase.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/BlockTerms/TermsIndexWriterBase.cs b/src/Lucene.Net.Codecs/BlockTerms/TermsIndexWriterBase.cs index e3efbcd..7613f23 100644 --- a/src/Lucene.Net.Codecs/BlockTerms/TermsIndexWriterBase.cs +++ b/src/Lucene.Net.Codecs/BlockTerms/TermsIndexWriterBase.cs @@ -1,25 +1,25 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using Lucene.Net.Index; +using Lucene.Net.Util; +using System; namespace Lucene.Net.Codecs.BlockTerms { - using System; - using Index; - using Util; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /// <summary> /// Base class for terms index implementations to plug http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/BlockTerms/VariableGapTermsIndexReader.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/BlockTerms/VariableGapTermsIndexReader.cs b/src/Lucene.Net.Codecs/BlockTerms/VariableGapTermsIndexReader.cs index 35b0dc4..bbcaac5 100644 --- a/src/Lucene.Net.Codecs/BlockTerms/VariableGapTermsIndexReader.cs +++ b/src/Lucene.Net.Codecs/BlockTerms/VariableGapTermsIndexReader.cs @@ -1,32 +1,31 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using Lucene.Net.Index; +using Lucene.Net.Store; +using Lucene.Net.Util; +using Lucene.Net.Util.Fst; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; namespace Lucene.Net.Codecs.BlockTerms { + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ - using System; - using System.Collections.Generic; - using System.Diagnostics; - using System.Linq; - using Index; - using Store; - using Util; - using Util.Fst; - /// <summary> /// See VariableGapTermsIndexWriter /// @@ -219,7 +218,7 @@ namespace Lucene.Net.Codecs.BlockTerms { if (count == outerInstance._indexDivisor) { - builder.Add(Util.ToIntsRef(result.Input, scratchIntsRef), result.Output); + builder.Add(Util.Fst.Util.ToIntsRef(result.Input, scratchIntsRef), result.Output); count = 0; } count++; http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/BlockTerms/VariableGapTermsIndexWriter.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/BlockTerms/VariableGapTermsIndexWriter.cs b/src/Lucene.Net.Codecs/BlockTerms/VariableGapTermsIndexWriter.cs index 296dc20..9b8ebae 100644 --- a/src/Lucene.Net.Codecs/BlockTerms/VariableGapTermsIndexWriter.cs +++ b/src/Lucene.Net.Codecs/BlockTerms/VariableGapTermsIndexWriter.cs @@ -1,32 +1,30 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using Lucene.Net.Index; +using Lucene.Net.Store; +using Lucene.Net.Util; +using Lucene.Net.Util.Fst; +using System; +using System.Collections.Generic; +using System.Diagnostics; namespace Lucene.Net.Codecs.BlockTerms { + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ - using System; - using System.Collections.Generic; - using System.Diagnostics; - using Codecs; - using Index; - using Store; - using Util; - using Util.Fst; - /// <summary> /// Selects index terms according to provided pluggable /// {@link IndexTermSelector}, and stores them in a prefix trie that's @@ -286,7 +284,7 @@ namespace Lucene.Net.Codecs.BlockTerms text.Length = outerInstance.IndexedTermPrefixLength(_lastTerm, text); try { - _fstBuilder.Add(Util.ToIntsRef(text, _scratchIntsRef), termsFilePointer); + _fstBuilder.Add(Util.Fst.Util.ToIntsRef(text, _scratchIntsRef), termsFilePointer); } finally { http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Bloom/BloomFilterFactory.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Bloom/BloomFilterFactory.cs b/src/Lucene.Net.Codecs/Bloom/BloomFilterFactory.cs index 4dab212..377806c 100644 --- a/src/Lucene.Net.Codecs/Bloom/BloomFilterFactory.cs +++ b/src/Lucene.Net.Codecs/Bloom/BloomFilterFactory.cs @@ -1,24 +1,23 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using Lucene.Net.Index; namespace Lucene.Net.Codecs.Bloom { - - using Index; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /// <summary> /// Class used to create index-time {@link FuzzySet} appropriately configured for http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Bloom/BloomFilteringPostingsFormat.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Bloom/BloomFilteringPostingsFormat.cs b/src/Lucene.Net.Codecs/Bloom/BloomFilteringPostingsFormat.cs index 6ef2c7a..cfdcb6b 100644 --- a/src/Lucene.Net.Codecs/Bloom/BloomFilteringPostingsFormat.cs +++ b/src/Lucene.Net.Codecs/Bloom/BloomFilteringPostingsFormat.cs @@ -1,33 +1,31 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - +using Lucene.Net.Index; +using Lucene.Net.Store; +using Lucene.Net.Support; +using Lucene.Net.Util; +using Lucene.Net.Util.Automaton; +using System; +using System.Collections.Generic; +using System.Diagnostics; using System.Linq; namespace Lucene.Net.Codecs.Bloom { - - using System; - using System.Collections.Generic; - using System.Diagnostics; - using Index; - using Store; - using Support; - using Util; - using Util.Automaton; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /// <summary> /// http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Bloom/DefaultBloomFilterFactory.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Bloom/DefaultBloomFilterFactory.cs b/src/Lucene.Net.Codecs/Bloom/DefaultBloomFilterFactory.cs index f3e0722..0b2e1ad 100644 --- a/src/Lucene.Net.Codecs/Bloom/DefaultBloomFilterFactory.cs +++ b/src/Lucene.Net.Codecs/Bloom/DefaultBloomFilterFactory.cs @@ -1,23 +1,23 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using Lucene.Net.Index; namespace Lucene.Net.Codecs.Bloom { - using Index; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /// <summary> /// Default policy is to allocate a bitset with 10% saturation given a unique term per document. http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Bloom/FuzzySet.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Bloom/FuzzySet.cs b/src/Lucene.Net.Codecs/Bloom/FuzzySet.cs index d3ac42b..df87f20 100644 --- a/src/Lucene.Net.Codecs/Bloom/FuzzySet.cs +++ b/src/Lucene.Net.Codecs/Bloom/FuzzySet.cs @@ -1,28 +1,27 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using Lucene.Net.Store; +using Lucene.Net.Util; +using System; +using System.Diagnostics; +using System.Linq; namespace Lucene.Net.Codecs.Bloom { - - using System; - using System.Diagnostics; - using System.Linq; - using Store; - using Util; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /// <summary> /// A class used to represent a set of many, potentially large, values (e.g. many http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Bloom/HashFunction.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Bloom/HashFunction.cs b/src/Lucene.Net.Codecs/Bloom/HashFunction.cs index facee5b..9be4889 100644 --- a/src/Lucene.Net.Codecs/Bloom/HashFunction.cs +++ b/src/Lucene.Net.Codecs/Bloom/HashFunction.cs @@ -1,23 +1,23 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using Lucene.Net.Util; namespace Lucene.Net.Codecs.Bloom { - using Util; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /// <summary> /// Base class for hashing functions that can be referred to by name. http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Bloom/MurmurHash2.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Bloom/MurmurHash2.cs b/src/Lucene.Net.Codecs/Bloom/MurmurHash2.cs index 9992971..83504fc 100644 --- a/src/Lucene.Net.Codecs/Bloom/MurmurHash2.cs +++ b/src/Lucene.Net.Codecs/Bloom/MurmurHash2.cs @@ -1,25 +1,23 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using Lucene.Net.Util; namespace Lucene.Net.Codecs.Bloom { - - using System; - using Util; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /// <summary> /// This is a very fast, non-cryptographic hash suitable for general hash-based http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/DiskDV/DiskDocValuesFormat.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/DiskDV/DiskDocValuesFormat.cs b/src/Lucene.Net.Codecs/DiskDV/DiskDocValuesFormat.cs index 758a413..cf4a000 100644 --- a/src/Lucene.Net.Codecs/DiskDV/DiskDocValuesFormat.cs +++ b/src/Lucene.Net.Codecs/DiskDV/DiskDocValuesFormat.cs @@ -1,29 +1,26 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - +using Lucene.Net.Codecs.Lucene45; +using Lucene.Net.Index; +using Lucene.Net.Util; +using System.Collections.Generic; namespace Lucene.Net.Codecs.DiskDV { - using Codecs; - using Lucene45; - using Index; - using System; - using Util; - using System.Collections.Generic; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /// <summary> /// DocValues format that keeps most things on disk. http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/DiskDV/DiskDocValuesProducer.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/DiskDV/DiskDocValuesProducer.cs b/src/Lucene.Net.Codecs/DiskDV/DiskDocValuesProducer.cs index 605cfa0..6fc81d1 100644 --- a/src/Lucene.Net.Codecs/DiskDV/DiskDocValuesProducer.cs +++ b/src/Lucene.Net.Codecs/DiskDV/DiskDocValuesProducer.cs @@ -1,27 +1,27 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using Lucene.Net.Codecs.Lucene45; +using Lucene.Net.Index; +using Lucene.Net.Store; +using Lucene.Net.Util.Packed; +using System; namespace Lucene.Net.Codecs.DiskDV { - using System; - using Lucene45; - using Index; - using Store; - using Util.Packed; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ internal class DiskDocValuesProducer : Lucene45DocValuesProducer { http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/DiskDV/DiskNormsFormat.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/DiskDV/DiskNormsFormat.cs b/src/Lucene.Net.Codecs/DiskDV/DiskNormsFormat.cs index 4284b18..4ba4e5e 100644 --- a/src/Lucene.Net.Codecs/DiskDV/DiskNormsFormat.cs +++ b/src/Lucene.Net.Codecs/DiskDV/DiskNormsFormat.cs @@ -1,27 +1,24 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using Lucene.Net.Codecs.Lucene45; +using Lucene.Net.Index; namespace Lucene.Net.Codecs.DiskDV { - - using System; - using Codecs; - using Lucene45; - using Index; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /// <summary> /// Norms format that keeps all norms on disk http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Memory/DirectDocValuesConsumer.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Memory/DirectDocValuesConsumer.cs b/src/Lucene.Net.Codecs/Memory/DirectDocValuesConsumer.cs index b19e988..a6addd3 100644 --- a/src/Lucene.Net.Codecs/Memory/DirectDocValuesConsumer.cs +++ b/src/Lucene.Net.Codecs/Memory/DirectDocValuesConsumer.cs @@ -1,34 +1,33 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Diagnostics; namespace Lucene.Net.Codecs.Memory { - using System; - using System.Diagnostics; - using System.Collections.Generic; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + using BytesRef = Util.BytesRef; using FieldInfo = Index.FieldInfo; using IndexFileNames = Index.IndexFileNames; - using SegmentWriteState = Index.SegmentWriteState; using IndexOutput = Store.IndexOutput; - using BytesRef = Util.BytesRef; using IOUtils = Util.IOUtils; - using System.Collections; - + using SegmentWriteState = Index.SegmentWriteState; /// <summary> /// Writer for <seealso cref="DirectDocValuesFormat"/> http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Memory/DirectDocValuesFormat.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Memory/DirectDocValuesFormat.cs b/src/Lucene.Net.Codecs/Memory/DirectDocValuesFormat.cs index 2bf48cb..57a9fc3 100644 --- a/src/Lucene.Net.Codecs/Memory/DirectDocValuesFormat.cs +++ b/src/Lucene.Net.Codecs/Memory/DirectDocValuesFormat.cs @@ -1,24 +1,23 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -namespace Lucene.Net.Codecs.Memory +namespace Lucene.Net.Codecs.Memory { + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ - using SegmentReadState = Index.SegmentReadState; + using SegmentReadState = Index.SegmentReadState; using SegmentWriteState = Index.SegmentWriteState; using ArrayUtil = Util.ArrayUtil; http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Memory/DirectDocValuesProducer.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Memory/DirectDocValuesProducer.cs b/src/Lucene.Net.Codecs/Memory/DirectDocValuesProducer.cs index 49ec998..1fdb2ee 100644 --- a/src/Lucene.Net.Codecs/Memory/DirectDocValuesProducer.cs +++ b/src/Lucene.Net.Codecs/Memory/DirectDocValuesProducer.cs @@ -1,14 +1,13 @@ -using System.Diagnostics; -using System.Collections.Generic; -using Lucene.Net.Index; +using Lucene.Net.Index; using Lucene.Net.Store; using Lucene.Net.Support; using Lucene.Net.Util; using System; +using System.Collections.Generic; +using System.Diagnostics; namespace Lucene.Net.Codecs.Memory { - /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with @@ -29,7 +28,6 @@ namespace Lucene.Net.Codecs.Memory /// <summary> /// TextReader for <seealso cref="DirectDocValuesFormat"/> /// </summary> - internal class DirectDocValuesProducer : DocValuesProducer { // metadata maps (just file pointers and minimal stuff) http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Memory/DirectPostingsFormat.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Memory/DirectPostingsFormat.cs b/src/Lucene.Net.Codecs/Memory/DirectPostingsFormat.cs index 347891c..e6f1fce 100644 --- a/src/Lucene.Net.Codecs/Memory/DirectPostingsFormat.cs +++ b/src/Lucene.Net.Codecs/Memory/DirectPostingsFormat.cs @@ -1,50 +1,47 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -using Lucene.Net.Support; +using Lucene.Net.Support; +using System; +using System.Collections.Generic; +using System.Diagnostics; using System.Linq; namespace Lucene.Net.Codecs.Memory { + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ - using System; - using System.Diagnostics; - using System.Collections.Generic; - - using Lucene41PostingsFormat = Lucene41.Lucene41PostingsFormat; + using ArrayUtil = Util.ArrayUtil; + using BytesRef = Util.BytesRef; + using CompiledAutomaton = Util.Automaton.CompiledAutomaton; using DocsAndPositionsEnum = Index.DocsAndPositionsEnum; using DocsEnum = Index.DocsEnum; - using IndexOptions = Index.IndexOptions; using FieldInfo = Index.FieldInfo; using Fields = Index.Fields; + using IBits = Util.IBits; + using IndexOptions = Index.IndexOptions; + using IOContext = Store.IOContext; using OrdTermState = Index.OrdTermState; + using RAMOutputStream = Store.RAMOutputStream; + using RamUsageEstimator = Util.RamUsageEstimator; + using RunAutomaton = Util.Automaton.RunAutomaton; using SegmentReadState = Index.SegmentReadState; using SegmentWriteState = Index.SegmentWriteState; - using TermState = Index.TermState; using Terms = Index.Terms; using TermsEnum = Index.TermsEnum; - using IOContext = Store.IOContext; - using RAMOutputStream = Store.RAMOutputStream; - using ArrayUtil = Util.ArrayUtil; - using IBits = Util.IBits; - using BytesRef = Util.BytesRef; - using RamUsageEstimator = Util.RamUsageEstimator; - using CompiledAutomaton = Util.Automaton.CompiledAutomaton; - using RunAutomaton = Util.Automaton.RunAutomaton; + using TermState = Index.TermState; using Transition = Util.Automaton.Transition; // TODO: http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Memory/FSTOrdPostingsFormat.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Memory/FSTOrdPostingsFormat.cs b/src/Lucene.Net.Codecs/Memory/FSTOrdPostingsFormat.cs index 89ae246..dc8725f 100644 --- a/src/Lucene.Net.Codecs/Memory/FSTOrdPostingsFormat.cs +++ b/src/Lucene.Net.Codecs/Memory/FSTOrdPostingsFormat.cs @@ -1,22 +1,22 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -namespace Lucene.Net.Codecs.Memory +namespace Lucene.Net.Codecs.Memory { + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + using Lucene41PostingsWriter = Lucene41.Lucene41PostingsWriter; using Lucene41PostingsReader = Lucene41.Lucene41PostingsReader; using SegmentReadState = Index.SegmentReadState; http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Memory/FSTOrdPulsing41PostingsFormat.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Memory/FSTOrdPulsing41PostingsFormat.cs b/src/Lucene.Net.Codecs/Memory/FSTOrdPulsing41PostingsFormat.cs index 1fa3bc4..7447d02 100644 --- a/src/Lucene.Net.Codecs/Memory/FSTOrdPulsing41PostingsFormat.cs +++ b/src/Lucene.Net.Codecs/Memory/FSTOrdPulsing41PostingsFormat.cs @@ -1,22 +1,22 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -namespace Lucene.Net.Codecs.Memory +namespace Lucene.Net.Codecs.Memory { + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + using Lucene41PostingsBaseFormat = Lucene41.Lucene41PostingsBaseFormat; using PulsingPostingsWriter = Pulsing.PulsingPostingsWriter; using PulsingPostingsReader = Pulsing.PulsingPostingsReader; http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Memory/FSTOrdTermsReader.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Memory/FSTOrdTermsReader.cs b/src/Lucene.Net.Codecs/Memory/FSTOrdTermsReader.cs index 8bab5ef..627c3d0 100644 --- a/src/Lucene.Net.Codecs/Memory/FSTOrdTermsReader.cs +++ b/src/Lucene.Net.Codecs/Memory/FSTOrdTermsReader.cs @@ -1,34 +1,32 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using Lucene.Net.Index; +using Lucene.Net.Store; +using Lucene.Net.Support; +using Lucene.Net.Util; +using Lucene.Net.Util.Automaton; +using Lucene.Net.Util.Fst; +using System; +using System.Collections; +using System.Collections.Generic; +using System.Diagnostics; namespace Lucene.Net.Codecs.Memory { - - using System; - using System.Diagnostics; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - using Lucene.Net.Index; - using Lucene.Net.Store; - using Lucene.Net.Support; - using Lucene.Net.Util; - using Lucene.Net.Util.Automaton; - using Lucene.Net.Util.Fst; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /// <summary> /// FST-based terms dictionary reader. @@ -855,7 +853,7 @@ namespace Lucene.Net.Codecs.Memory private Frame LoadCeilFrame(int label, Frame top, Frame frame) { var arc = frame.arc; - arc = Util.ReadCeilArc(label, fst, top.arc, arc, fstReader); + arc = Util.Fst.Util.ReadCeilArc(label, fst, top.arc, arc, fstReader); if (arc == null) { return null; http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Memory/FSTOrdTermsWriter.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Memory/FSTOrdTermsWriter.cs b/src/Lucene.Net.Codecs/Memory/FSTOrdTermsWriter.cs index 77bf2a6..9299b55 100644 --- a/src/Lucene.Net.Codecs/Memory/FSTOrdTermsWriter.cs +++ b/src/Lucene.Net.Codecs/Memory/FSTOrdTermsWriter.cs @@ -1,42 +1,39 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - +using Lucene.Net.Util.Fst; +using System; +using System.Collections.Generic; using System.IO; -using Lucene.Net.Util.Fst; namespace Lucene.Net.Codecs.Memory { - using System; - using System.Collections.Generic; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ - using IndexOptions = Index.IndexOptions; + using BytesRef = Util.BytesRef; using FieldInfo = Index.FieldInfo; using FieldInfos = Index.FieldInfos; + using FST = FST; using IndexFileNames = Index.IndexFileNames; - using SegmentWriteState = Index.SegmentWriteState; - using DataOutput = Store.DataOutput; + using IndexOptions = Index.IndexOptions; using IndexOutput = Store.IndexOutput; - using RAMOutputStream = Store.RAMOutputStream; - using BytesRef = Util.BytesRef; - using IOUtils = Util.IOUtils; using IntsRef = Util.IntsRef; - using Builder = Util.Fst.Builder<long>; - using FST = FST; + using IOUtils = Util.IOUtils; using PositiveIntOutputs = Util.Fst.PositiveIntOutputs; + using RAMOutputStream = Store.RAMOutputStream; + using SegmentWriteState = Index.SegmentWriteState; using Util = Util.Fst.Util; /// <summary> @@ -138,7 +135,6 @@ namespace Lucene.Net.Codecs.Memory /// /// @lucene.experimental /// </summary> - public class FSTOrdTermsWriter : FieldsConsumer { internal const string TERMS_INDEX_EXTENSION = "tix"; http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Memory/FSTPostingsFormat.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Memory/FSTPostingsFormat.cs b/src/Lucene.Net.Codecs/Memory/FSTPostingsFormat.cs index a552fe9..3327f6e 100644 --- a/src/Lucene.Net.Codecs/Memory/FSTPostingsFormat.cs +++ b/src/Lucene.Net.Codecs/Memory/FSTPostingsFormat.cs @@ -1,22 +1,21 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -namespace Lucene.Net.Codecs.Memory +namespace Lucene.Net.Codecs.Memory { + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ using Lucene41PostingsWriter = Lucene41.Lucene41PostingsWriter; using Lucene41PostingsReader = Lucene41.Lucene41PostingsReader; http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Memory/FSTPulsing41PostingsFormat.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Memory/FSTPulsing41PostingsFormat.cs b/src/Lucene.Net.Codecs/Memory/FSTPulsing41PostingsFormat.cs index 7f285fd..f18be31 100644 --- a/src/Lucene.Net.Codecs/Memory/FSTPulsing41PostingsFormat.cs +++ b/src/Lucene.Net.Codecs/Memory/FSTPulsing41PostingsFormat.cs @@ -1,23 +1,22 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -namespace Lucene.Net.Codecs.Memory +namespace Lucene.Net.Codecs.Memory { - + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + using Lucene41PostingsBaseFormat = Lucene41.Lucene41PostingsBaseFormat; using PulsingPostingsWriter = Pulsing.PulsingPostingsWriter; using PulsingPostingsReader = Pulsing.PulsingPostingsReader; http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Memory/FSTTermOutputs.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Memory/FSTTermOutputs.cs b/src/Lucene.Net.Codecs/Memory/FSTTermOutputs.cs index 34a45d8..376896b 100644 --- a/src/Lucene.Net.Codecs/Memory/FSTTermOutputs.cs +++ b/src/Lucene.Net.Codecs/Memory/FSTTermOutputs.cs @@ -1,33 +1,31 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - +using Lucene.Net.Support; +using System.Diagnostics; using System.Linq; namespace Lucene.Net.Codecs.Memory { + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ - using System.Diagnostics; - using Support; - - using FieldInfo = Index.FieldInfo; - using IndexOptions = Index.IndexOptions; using DataInput = Store.DataInput; using DataOutput = Store.DataOutput; - + using FieldInfo = Index.FieldInfo; + using IndexOptions = Index.IndexOptions; + /// <summary> /// An FST implementation for /// <seealso cref="FSTTermsWriter"/>. http://git-wip-us.apache.org/repos/asf/lucenenet/blob/46743cc0/src/Lucene.Net.Codecs/Memory/FSTTermsReader.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Memory/FSTTermsReader.cs b/src/Lucene.Net.Codecs/Memory/FSTTermsReader.cs index 9b68452..2e77f4b 100644 --- a/src/Lucene.Net.Codecs/Memory/FSTTermsReader.cs +++ b/src/Lucene.Net.Codecs/Memory/FSTTermsReader.cs @@ -1,29 +1,30 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +using System; + using System.Collections; + using System.Collections.Generic; + using System.Diagnostics; + using Lucene.Net.Util.Fst; using Lucene.Net.Support; namespace Lucene.Net.Codecs.Memory { - using System; - using System.Collections; - using System.Collections.Generic; - using System.Diagnostics; - using Util.Fst; + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + using ArrayUtil = Util.ArrayUtil; using IBits = Util.IBits; using ByteArrayDataInput = Store.ByteArrayDataInput;
