Conversation
There was a problem hiding this comment.
license-eye has totally checked 255 files.
| Valid | Invalid | Ignored | Fixed |
|---|---|---|---|
| 4 | 186 | 65 | 0 |
Click to see the invalid file list
- all/pom.xml
- commons/pom.xml
- commons/src/main/java/io/github/dengliming/redismodule/common/api/RBatch.java
- commons/src/main/java/io/github/dengliming/redismodule/common/api/RCommonBatch.java
- commons/src/main/java/io/github/dengliming/redismodule/common/util/ArgsUtil.java
- commons/src/main/java/io/github/dengliming/redismodule/common/util/RAssert.java
- commons/src/main/java/io/github/dengliming/redismodule/common/util/TestSettings.java
- commons/src/test/java/io/github/dengliming/redismodule/common/test/EnabledOnRedisCondition.java
- commons/src/test/java/io/github/dengliming/redismodule/common/test/EnabledOnRedisConditionExtension.java
- commons/src/test/java/io/github/dengliming/redismodule/common/test/ModuleListDecoder.java
- commons/src/test/java/io/github/dengliming/redismodule/common/test/RedisConditionClient.java
- commons/src/test/java/io/github/dengliming/redismodule/common/test/RedisConditionTest.java
- commons/src/test/java/io/github/dengliming/redismodule/common/test/RedisConditions.java
- commons/src/test/java/io/github/dengliming/redismodule/common/test/RedisConditionsDecoder.java
- examples/pom.xml
- examples/src/main/java/io/github/dengliming/redismodule/examples/redisai/Examples.java
- examples/src/main/java/io/github/dengliming/redismodule/examples/redisbloom/Examples.java
- examples/src/main/java/io/github/dengliming/redismodule/examples/redisearch/Examples.java
- examples/src/main/java/io/github/dengliming/redismodule/examples/redisgears/Examples.java
- examples/src/main/java/io/github/dengliming/redismodule/examples/redisjson/Examples.java
- examples/src/main/java/io/github/dengliming/redismodule/examples/redisjson/PipeliningExamples.java
- examples/src/main/java/io/github/dengliming/redismodule/examples/redistimeseries/Examples.java
- pom.xml
- redisai/pom.xml
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/Backend.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/DataType.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/Device.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/RedisAI.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/args/SetModelArgs.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/args/StoreScriptArgs.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/client/RedisAIClient.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/model/Model.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/model/Script.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/model/Tensor.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/protocol/Keywords.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/protocol/RedisCommands.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/protocol/decoder/ModelDecoder.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/protocol/decoder/ScriptDecoder.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/protocol/decoder/TensorDecoder.java
- redisai/src/test/java/io/github/dengliming/redismodule/redisai/AbstractTest.java
- redisai/src/test/java/io/github/dengliming/redismodule/redisai/RedisAITest.java
- redisai/src/test/resources/test_data/creditcard_10K.csv
- redisai/src/test/resources/test_data/onnx_batch.py
- redisai/src/test/resources/test_data/pt_minimal.py
- redisai/src/test/resources/test_data/tf-minimal.py
- redisai/src/test/resources/test_data/tf2-minimal.py
- redisbloom/pom.xml
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/BloomFilter.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/CountMinSketch.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/CuckooFilter.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/TDigest.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/TopKFilter.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/client/RedisBloomClient.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/model/BloomFilterInfo.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/model/ChunksData.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/model/CountMinSketchInfo.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/model/CuckooFilterInfo.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/model/InsertArgs.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/model/TDigestInfo.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/model/TopKFilterInfo.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/protocol/Keywords.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/protocol/RedisCommands.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/protocol/decoder/BloomFilterDecoder.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/protocol/decoder/ChunksDecoder.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/protocol/decoder/CountMinSketchDecoder.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/protocol/decoder/CuckooFilterDecoder.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/protocol/decoder/TDigestDecoder.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/protocol/decoder/TopKFilterDecoder.java
- redisbloom/src/test/java/io/github/dengliming/redismodule/redisbloom/AbstractTest.java
- redisbloom/src/test/java/io/github/dengliming/redismodule/redisbloom/BloomFilterTest.java
- redisbloom/src/test/java/io/github/dengliming/redismodule/redisbloom/CountMinSketchTest.java
- redisbloom/src/test/java/io/github/dengliming/redismodule/redisbloom/CuckooFilterTest.java
- redisbloom/src/test/java/io/github/dengliming/redismodule/redisbloom/TDigestTest.java
- redisbloom/src/test/java/io/github/dengliming/redismodule/redisbloom/TopKFilterTest.java
- redisearch/pom.xml
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/RediSearch.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/aggregate/AggregateOptions.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/aggregate/AggregateResult.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/aggregate/Apply.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/aggregate/Filter.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/aggregate/Group.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/aggregate/Reducer.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/aggregate/Reducers.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/aggregate/SortBy.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/aggregate/SortField.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/client/RediSearchClient.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/ConfigOption.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/Document.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/DocumentOptions.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/IndexDefinition.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/IndexInfo.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/IndexOptions.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/Phonetic.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/RSLanguage.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/Suggestion.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/SuggestionOptions.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/schema/Field.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/schema/FieldType.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/schema/Schema.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/schema/TagField.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/schema/TextField.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/protocol/Keywords.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/protocol/RedisCommands.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/protocol/decoder/AggregateDecoder.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/protocol/decoder/MisspelledTermDecoder.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/protocol/decoder/SearchResultDecoder.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/protocol/decoder/StringMapInfoDecoder.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/Filter.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/GeoFilter.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/HighlightOptions.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/MisspelledSuggestion.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/MisspelledTerm.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/NumericFilter.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/Page.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/SearchOptions.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/SearchResult.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/SortBy.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/SpellCheckOptions.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/SummaryOptions.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/Tags.java
- redisearch/src/test/java/io/github/dengliming/redismodule/redisearch/AbstractTest.java
- redisearch/src/test/java/io/github/dengliming/redismodule/redisearch/AggregationTest.java
- redisearch/src/test/java/io/github/dengliming/redismodule/redisearch/RediSearchTest.java
- redisgears/pom.xml
- redisgears/src/main/java/io/github/dengliming/redismodule/redisgears/RedisGears.java
- redisgears/src/main/java/io/github/dengliming/redismodule/redisgears/client/RedisGearsClient.java
- redisgears/src/main/java/io/github/dengliming/redismodule/redisgears/model/ClusterInfo.java
- redisgears/src/main/java/io/github/dengliming/redismodule/redisgears/protocol/Keywords.java
- redisgears/src/main/java/io/github/dengliming/redismodule/redisgears/protocol/RedisCommands.java
- redisgears/src/main/java/io/github/dengliming/redismodule/redisgears/protocol/decoder/ClusterInfoDecoder.java
- redisgears/src/test/java/io/github/dengliming/redismodule/redisgears/AbstractTest.java
- redisgears/src/test/java/io/github/dengliming/redismodule/redisgears/RedisGearsTest.java
- redisgraph/pom.xml
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/RedisGraph.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/RedisGraphBatch.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/client/RedisGraphClient.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/enums/ColumnType.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/enums/ScalarType.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/Edge.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/GraphEntity.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/Header.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/Node.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/Path.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/Point.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/Property.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/Record.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/ResultSet.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/SlowLogItem.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/Statistics.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/protocol/Keywords.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/protocol/RedisCommands.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/protocol/decoder/ResultSetDecoder.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/protocol/decoder/SlowLogItemDecoder.java
- redisgraph/src/test/java/io/github/dengliming/redismodule/redisgraph/AbstractTest.java
- redisgraph/src/test/java/io/github/dengliming/redismodule/redisgraph/RedisGraphTest.java
- redisjson/pom.xml
- redisjson/src/main/java/io/github/dengliming/redismodule/redisjson/RedisJSON.java
- redisjson/src/main/java/io/github/dengliming/redismodule/redisjson/RedisJSONBatch.java
- redisjson/src/main/java/io/github/dengliming/redismodule/redisjson/args/GetArgs.java
- redisjson/src/main/java/io/github/dengliming/redismodule/redisjson/args/SetArgs.java
- redisjson/src/main/java/io/github/dengliming/redismodule/redisjson/client/RedisJSONClient.java
- redisjson/src/main/java/io/github/dengliming/redismodule/redisjson/protocol/Keywords.java
- redisjson/src/main/java/io/github/dengliming/redismodule/redisjson/protocol/RedisCommands.java
- redisjson/src/main/java/io/github/dengliming/redismodule/redisjson/utils/GsonUtils.java
- redisjson/src/test/java/io/github/dengliming/redismodule/redisjson/AbstractTest.java
- redisjson/src/test/java/io/github/dengliming/redismodule/redisjson/RedisJSONTest.java
- redistimeseries/pom.xml
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/Aggregation.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/Align.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/DuplicatePolicy.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/GroupByOptions.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/Label.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/RangeOptions.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/RedisTimeSeries.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/Reducer.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/Sample.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/TimeSeries.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/TimeSeriesOptions.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/client/RedisTimeSeriesClient.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/protocol/Keywords.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/protocol/RedisCommands.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/protocol/decoder/LabelDecoder.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/protocol/decoder/TimeSeriesDecoder.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/protocol/decoder/ValueDecoder.java
- redistimeseries/src/test/java/io/github/dengliming/redismodule/redistimeseries/AbstractTest.java
- redistimeseries/src/test/java/io/github/dengliming/redismodule/redistimeseries/RedisTimeSeriesTest.java
| @@ -1,3 +1,19 @@ | |||
| /* | |||
There was a problem hiding this comment.
| /* | |
| /* | |
| * 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. | |
| * | |
| */ | |
| /* |
| @@ -1,3 +1,19 @@ | |||
| /* | |||
There was a problem hiding this comment.
| /* | |
| /* | |
| * 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. | |
| * | |
| */ | |
| /* |
| @@ -1,3 +1,19 @@ | |||
| /* | |||
There was a problem hiding this comment.
| /* | |
| /* | |
| * 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. | |
| * | |
| */ | |
| /* |
| @@ -1,3 +1,19 @@ | |||
| /* | |||
There was a problem hiding this comment.
| /* | |
| /* | |
| * 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. | |
| * | |
| */ | |
| /* |
| @@ -1,3 +1,19 @@ | |||
| /* | |||
There was a problem hiding this comment.
| /* | |
| /* | |
| * 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. | |
| * | |
| */ | |
| /* |
| @@ -1,3 +1,19 @@ | |||
| /* | |||
There was a problem hiding this comment.
| /* | |
| /* | |
| * 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. | |
| * | |
| */ | |
| /* |
| @@ -1,3 +1,19 @@ | |||
| /* | |||
There was a problem hiding this comment.
| /* | |
| /* | |
| * 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. | |
| * | |
| */ | |
| /* |
| @@ -1,3 +1,19 @@ | |||
| /* | |||
There was a problem hiding this comment.
| /* | |
| /* | |
| * 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. | |
| * | |
| */ | |
| /* |
| @@ -1,3 +1,19 @@ | |||
| /* | |||
There was a problem hiding this comment.
| /* | |
| /* | |
| * 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. | |
| * | |
| */ | |
| /* |
| @@ -1,3 +1,19 @@ | |||
| /* | |||
There was a problem hiding this comment.
| /* | |
| /* | |
| * 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. | |
| * | |
| */ | |
| /* |
There was a problem hiding this comment.
license-eye has totally checked 255 files.
| Valid | Invalid | Ignored | Fixed |
|---|---|---|---|
| 4 | 186 | 65 | 0 |
Click to see the invalid file list
- all/pom.xml
- commons/pom.xml
- commons/src/main/java/io/github/dengliming/redismodule/common/api/RBatch.java
- commons/src/main/java/io/github/dengliming/redismodule/common/api/RCommonBatch.java
- commons/src/main/java/io/github/dengliming/redismodule/common/util/ArgsUtil.java
- commons/src/main/java/io/github/dengliming/redismodule/common/util/RAssert.java
- commons/src/main/java/io/github/dengliming/redismodule/common/util/TestSettings.java
- commons/src/test/java/io/github/dengliming/redismodule/common/test/EnabledOnRedisCondition.java
- commons/src/test/java/io/github/dengliming/redismodule/common/test/EnabledOnRedisConditionExtension.java
- commons/src/test/java/io/github/dengliming/redismodule/common/test/ModuleListDecoder.java
- commons/src/test/java/io/github/dengliming/redismodule/common/test/RedisConditionClient.java
- commons/src/test/java/io/github/dengliming/redismodule/common/test/RedisConditionTest.java
- commons/src/test/java/io/github/dengliming/redismodule/common/test/RedisConditions.java
- commons/src/test/java/io/github/dengliming/redismodule/common/test/RedisConditionsDecoder.java
- examples/pom.xml
- examples/src/main/java/io/github/dengliming/redismodule/examples/redisai/Examples.java
- examples/src/main/java/io/github/dengliming/redismodule/examples/redisbloom/Examples.java
- examples/src/main/java/io/github/dengliming/redismodule/examples/redisearch/Examples.java
- examples/src/main/java/io/github/dengliming/redismodule/examples/redisgears/Examples.java
- examples/src/main/java/io/github/dengliming/redismodule/examples/redisjson/Examples.java
- examples/src/main/java/io/github/dengliming/redismodule/examples/redisjson/PipeliningExamples.java
- examples/src/main/java/io/github/dengliming/redismodule/examples/redistimeseries/Examples.java
- pom.xml
- redisai/pom.xml
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/Backend.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/DataType.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/Device.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/RedisAI.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/args/SetModelArgs.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/args/StoreScriptArgs.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/client/RedisAIClient.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/model/Model.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/model/Script.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/model/Tensor.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/protocol/Keywords.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/protocol/RedisCommands.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/protocol/decoder/ModelDecoder.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/protocol/decoder/ScriptDecoder.java
- redisai/src/main/java/io/github/dengliming/redismodule/redisai/protocol/decoder/TensorDecoder.java
- redisai/src/test/java/io/github/dengliming/redismodule/redisai/AbstractTest.java
- redisai/src/test/java/io/github/dengliming/redismodule/redisai/RedisAITest.java
- redisai/src/test/resources/test_data/creditcard_10K.csv
- redisai/src/test/resources/test_data/onnx_batch.py
- redisai/src/test/resources/test_data/pt_minimal.py
- redisai/src/test/resources/test_data/tf-minimal.py
- redisai/src/test/resources/test_data/tf2-minimal.py
- redisbloom/pom.xml
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/BloomFilter.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/CountMinSketch.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/CuckooFilter.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/TDigest.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/TopKFilter.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/client/RedisBloomClient.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/model/BloomFilterInfo.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/model/ChunksData.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/model/CountMinSketchInfo.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/model/CuckooFilterInfo.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/model/InsertArgs.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/model/TDigestInfo.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/model/TopKFilterInfo.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/protocol/Keywords.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/protocol/RedisCommands.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/protocol/decoder/BloomFilterDecoder.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/protocol/decoder/ChunksDecoder.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/protocol/decoder/CountMinSketchDecoder.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/protocol/decoder/CuckooFilterDecoder.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/protocol/decoder/TDigestDecoder.java
- redisbloom/src/main/java/io/github/dengliming/redismodule/redisbloom/protocol/decoder/TopKFilterDecoder.java
- redisbloom/src/test/java/io/github/dengliming/redismodule/redisbloom/AbstractTest.java
- redisbloom/src/test/java/io/github/dengliming/redismodule/redisbloom/BloomFilterTest.java
- redisbloom/src/test/java/io/github/dengliming/redismodule/redisbloom/CountMinSketchTest.java
- redisbloom/src/test/java/io/github/dengliming/redismodule/redisbloom/CuckooFilterTest.java
- redisbloom/src/test/java/io/github/dengliming/redismodule/redisbloom/TDigestTest.java
- redisbloom/src/test/java/io/github/dengliming/redismodule/redisbloom/TopKFilterTest.java
- redisearch/pom.xml
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/RediSearch.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/aggregate/AggregateOptions.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/aggregate/AggregateResult.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/aggregate/Apply.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/aggregate/Filter.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/aggregate/Group.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/aggregate/Reducer.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/aggregate/Reducers.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/aggregate/SortBy.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/aggregate/SortField.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/client/RediSearchClient.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/ConfigOption.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/Document.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/DocumentOptions.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/IndexDefinition.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/IndexInfo.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/IndexOptions.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/Phonetic.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/RSLanguage.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/Suggestion.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/SuggestionOptions.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/schema/Field.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/schema/FieldType.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/schema/Schema.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/schema/TagField.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/index/schema/TextField.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/protocol/Keywords.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/protocol/RedisCommands.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/protocol/decoder/AggregateDecoder.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/protocol/decoder/MisspelledTermDecoder.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/protocol/decoder/SearchResultDecoder.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/protocol/decoder/StringMapInfoDecoder.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/Filter.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/GeoFilter.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/HighlightOptions.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/MisspelledSuggestion.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/MisspelledTerm.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/NumericFilter.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/Page.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/SearchOptions.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/SearchResult.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/SortBy.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/SpellCheckOptions.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/SummaryOptions.java
- redisearch/src/main/java/io/github/dengliming/redismodule/redisearch/search/Tags.java
- redisearch/src/test/java/io/github/dengliming/redismodule/redisearch/AbstractTest.java
- redisearch/src/test/java/io/github/dengliming/redismodule/redisearch/AggregationTest.java
- redisearch/src/test/java/io/github/dengliming/redismodule/redisearch/RediSearchTest.java
- redisgears/pom.xml
- redisgears/src/main/java/io/github/dengliming/redismodule/redisgears/RedisGears.java
- redisgears/src/main/java/io/github/dengliming/redismodule/redisgears/client/RedisGearsClient.java
- redisgears/src/main/java/io/github/dengliming/redismodule/redisgears/model/ClusterInfo.java
- redisgears/src/main/java/io/github/dengliming/redismodule/redisgears/protocol/Keywords.java
- redisgears/src/main/java/io/github/dengliming/redismodule/redisgears/protocol/RedisCommands.java
- redisgears/src/main/java/io/github/dengliming/redismodule/redisgears/protocol/decoder/ClusterInfoDecoder.java
- redisgears/src/test/java/io/github/dengliming/redismodule/redisgears/AbstractTest.java
- redisgears/src/test/java/io/github/dengliming/redismodule/redisgears/RedisGearsTest.java
- redisgraph/pom.xml
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/RedisGraph.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/RedisGraphBatch.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/client/RedisGraphClient.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/enums/ColumnType.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/enums/ScalarType.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/Edge.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/GraphEntity.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/Header.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/Node.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/Path.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/Point.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/Property.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/Record.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/ResultSet.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/SlowLogItem.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/model/Statistics.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/protocol/Keywords.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/protocol/RedisCommands.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/protocol/decoder/ResultSetDecoder.java
- redisgraph/src/main/java/io/github/dengliming/redismodule/redisgraph/protocol/decoder/SlowLogItemDecoder.java
- redisgraph/src/test/java/io/github/dengliming/redismodule/redisgraph/AbstractTest.java
- redisgraph/src/test/java/io/github/dengliming/redismodule/redisgraph/RedisGraphTest.java
- redisjson/pom.xml
- redisjson/src/main/java/io/github/dengliming/redismodule/redisjson/RedisJSON.java
- redisjson/src/main/java/io/github/dengliming/redismodule/redisjson/RedisJSONBatch.java
- redisjson/src/main/java/io/github/dengliming/redismodule/redisjson/args/GetArgs.java
- redisjson/src/main/java/io/github/dengliming/redismodule/redisjson/args/SetArgs.java
- redisjson/src/main/java/io/github/dengliming/redismodule/redisjson/client/RedisJSONClient.java
- redisjson/src/main/java/io/github/dengliming/redismodule/redisjson/protocol/Keywords.java
- redisjson/src/main/java/io/github/dengliming/redismodule/redisjson/protocol/RedisCommands.java
- redisjson/src/main/java/io/github/dengliming/redismodule/redisjson/utils/GsonUtils.java
- redisjson/src/test/java/io/github/dengliming/redismodule/redisjson/AbstractTest.java
- redisjson/src/test/java/io/github/dengliming/redismodule/redisjson/RedisJSONTest.java
- redistimeseries/pom.xml
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/Aggregation.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/Align.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/DuplicatePolicy.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/GroupByOptions.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/Label.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/RangeOptions.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/RedisTimeSeries.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/Reducer.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/Sample.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/TimeSeries.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/TimeSeriesOptions.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/client/RedisTimeSeriesClient.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/protocol/Keywords.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/protocol/RedisCommands.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/protocol/decoder/LabelDecoder.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/protocol/decoder/TimeSeriesDecoder.java
- redistimeseries/src/main/java/io/github/dengliming/redismodule/redistimeseries/protocol/decoder/ValueDecoder.java
- redistimeseries/src/test/java/io/github/dengliming/redismodule/redistimeseries/AbstractTest.java
- redistimeseries/src/test/java/io/github/dengliming/redismodule/redistimeseries/RedisTimeSeriesTest.java
Codecov Report
@@ Coverage Diff @@
## master #52 +/- ##
=========================================
Coverage 62.95% 62.95%
Complexity 722 722
=========================================
Files 136 136
Lines 2659 2659
Branches 201 201
=========================================
Hits 1674 1674
Misses 871 871
Partials 114 114
Continue to review full report at Codecov.
|
* Check License Header * revert
No description provided.