This is an automated email from the ASF dual-hosted git repository. leerho pushed a commit to branch minor_cleanup in repository https://gitbox.apache.org/repos/asf/datasketches-characterization.git
commit 9f49595ddc529437fbbd70d0be9a3b81fcaca885 Author: Lee Rhodes <[email protected]> AuthorDate: Sun Aug 24 15:15:31 2025 -0700 minor cleanup --- pom.xml | 1 + .../characterization/DoubleFlipFlopStream.java | 19 +++++++++++++++++++ src/notebooks/README.md | 19 +++++++++++++++++++ src/notebooks/qf_probability_sum.py | 17 +++++++++++++++++ 4 files changed, 56 insertions(+) diff --git a/pom.xml b/pom.xml index 55a40dc..58d14e2 100644 --- a/pom.xml +++ b/pom.xml @@ -289,6 +289,7 @@ under the License. <!-- rat uses .gitignore for excludes by default --> <exclude>**/*.yaml</exclude> <exclude>**/*.yml</exclude> + <exclude>**/*.ipynb</exclude> <exclude>**/.*</exclude> <exclude>**/go.mod</exclude> <exclude>**/go.sum</exclude> diff --git a/src/main/java/org/apache/datasketches/characterization/DoubleFlipFlopStream.java b/src/main/java/org/apache/datasketches/characterization/DoubleFlipFlopStream.java index 9019b5d..d11f21c 100644 --- a/src/main/java/org/apache/datasketches/characterization/DoubleFlipFlopStream.java +++ b/src/main/java/org/apache/datasketches/characterization/DoubleFlipFlopStream.java @@ -1,3 +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. + */ + package org.apache.datasketches.characterization; import org.testng.annotations.Test; diff --git a/src/notebooks/README.md b/src/notebooks/README.md index 74851e5..38a4b0c 100644 --- a/src/notebooks/README.md +++ b/src/notebooks/README.md @@ -1,3 +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. +--> + # Quotient Filter Profiles Plotting This folder contains code for plotting quotient filter profiles. diff --git a/src/notebooks/qf_probability_sum.py b/src/notebooks/qf_probability_sum.py index 9a4e6a3..0f8ccf9 100644 --- a/src/notebooks/qf_probability_sum.py +++ b/src/notebooks/qf_probability_sum.py @@ -1,3 +1,20 @@ +# 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. + import numpy as np from scipy.stats import binom as binom_dist --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
