Skip to content

Commit

Permalink
Bump version in order to make sure people use cargo dependency can ge…
Browse files Browse the repository at this point in the history
…t the latest version.
  • Loading branch information
jtong11 committed Oct 9, 2020
1 parent c9f4283 commit 7a75268
Show file tree
Hide file tree
Showing 10 changed files with 117 additions and 0 deletions.
Empty file removed joker.yml
Empty file.
13 changes: 13 additions & 0 deletions src/core/codec/doc_values/doc_values_iterator.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
// Copyright 2019 Zhizhesihai (Beijing) Technology Limited.
//
// Licensed 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,
// See the License for the specific language governing permissions and
// limitations under the License.

use core::codec::doc_values::{
BinaryDocValues, NumericDocValues, SortedDocValues, SortedNumericDocValues, SortedSetDocValues,
};
Expand Down
13 changes: 13 additions & 0 deletions src/core/codec/postings/partial_block_decoder.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
// Copyright 2019 Zhizhesihai (Beijing) Technology Limited.
//
// Licensed 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,
// See the License for the specific language governing permissions and
// limitations under the License.

use core::codec::postings::MAX_ENCODED_SIZE;
use core::store::io::IndexInput;
use core::util::packed::Format;
Expand Down
13 changes: 13 additions & 0 deletions src/core/codec/postings/simd_block_decoder.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
// Copyright 2019 Zhizhesihai (Beijing) Technology Limited.
//
// Licensed 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,
// See the License for the specific language governing permissions and
// limitations under the License.

use core::codec::postings::BLOCK_SIZE;
use core::search::NO_MORE_DOCS;
use core::store::io::IndexInput;
Expand Down
13 changes: 13 additions & 0 deletions src/core/codec/stored_fields/stored_fields_consumer.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
// Copyright 2019 Zhizhesihai (Beijing) Technology Limited.
//
// Licensed 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,
// See the License for the specific language governing permissions and
// limitations under the License.

use core::analysis::TokenStream;
use core::codec::field_infos::FieldInfo;
use core::codec::segment_infos::SegmentWriteState;
Expand Down
13 changes: 13 additions & 0 deletions src/core/index/writer/doc_values_update.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
// Copyright 2019 Zhizhesihai (Beijing) Technology Limited.
//
// Licensed 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,
// See the License for the specific language governing permissions and
// limitations under the License.

use core::codec::{Codec, PackedLongDocMap, PostingIteratorFlags};
use core::codec::{Fields, SorterDocMap, TermIterator, Terms};
use core::doc::{DocValuesType, Term};
Expand Down
13 changes: 13 additions & 0 deletions src/core/search/query/boosting_query.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
// Copyright 2019 Zhizhesihai (Beijing) Technology Limited.
//
// Licensed 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,
// See the License for the specific language governing permissions and
// limitations under the License.

use std::any::Any;
use std::fmt;

Expand Down
13 changes: 13 additions & 0 deletions src/core/search/query/exists_query.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
// Copyright 2019 Zhizhesihai (Beijing) Technology Limited.
//
// Licensed 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,
// See the License for the specific language governing permissions and
// limitations under the License.

use std::any::Any;
use std::fmt;

Expand Down
13 changes: 13 additions & 0 deletions src/core/search/scorer/boosting_scorer.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
// Copyright 2019 Zhizhesihai (Beijing) Technology Limited.
//
// Licensed 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,
// See the License for the specific language governing permissions and
// limitations under the License.

use core::search::scorer::Scorer;
use core::search::DocIterator;
use core::util::DocId;
Expand Down
13 changes: 13 additions & 0 deletions src/core/util/packed/packed_simd.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
// Copyright 2019 Zhizhesihai (Beijing) Technology Limited.
//
// Licensed 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,
// See the License for the specific language governing permissions and
// limitations under the License.

use std::arch::x86_64 as simd;
use std::slice::{from_raw_parts, from_raw_parts_mut};

Expand Down

0 comments on commit 7a75268

Please sign in to comment.