From abcf26b9383ad31871f018a1150205aca45dda50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jegors=20=C4=8Cemisovs?= Date: Mon, 10 Jan 2022 19:49:24 +0200 Subject: [PATCH 01/47] Added templates --- .github/ISSUE_TEMPLATE/bug-issue.md | 46 +++++++ .github/ISSUE_TEMPLATE/feature-request.md | 23 ++++ .idea/gradle.xml | 1 + .idea/misc.xml | 2 +- .../graph/BreadthFirstSearchSpec.groovy | 2 - .../graph/DijkstrasAlgorithmSpec.groovy | 2 - .../lv/id/jc/algorithm/graph/GraphSpec.groovy | 1 - .../graph/SearchAlgorithmSpec.groovy | 15 +-- .../graph/DijkstrasAlgorithmTest.java | 113 ++++++++++++++++++ docs/spock-reports/aggregated_report.json | 2 +- docs/spock-reports/index.html | 12 +- ...lgorithm.graph.BreadthFirstSearchSpec.html | 4 +- ...lgorithm.graph.DijkstrasAlgorithmSpec.html | 4 +- .../lv.id.jc.algorithm.graph.GraphSpec.html | 4 +- ...c.algorithm.graph.SearchAlgorithmSpec.html | 40 ++++++- 15 files changed, 241 insertions(+), 30 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug-issue.md create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md create mode 100644 algorithm/src/test/java/lv/id/jc/algorithm/graph/DijkstrasAlgorithmTest.java diff --git a/.github/ISSUE_TEMPLATE/bug-issue.md b/.github/ISSUE_TEMPLATE/bug-issue.md new file mode 100644 index 0000000..ab645cc --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-issue.md @@ -0,0 +1,46 @@ +--- +name: Bug Issue +about: Use this template for reporting a bug +labels: 'type:bug' + +--- + +Please make sure that this is a bug. As per our +[GitHub Policy](https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md), +we only address code/doc bugs, performance issues, feature requests and +build/installation issues on GitHub. tag:bug_template + +**System information** +- Have I written custom code (as opposed to using a stock example script provided in TensorFlow): +- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): +- Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: +- TensorFlow installed from (source or binary): +- TensorFlow version (use command below): +- Python version: +- Bazel version (if compiling from source): +- GCC/Compiler version (if compiling from source): +- CUDA/cuDNN version: +- GPU model and memory: + +You can collect some of this information using our environment capture +[script](https://github.com/tensorflow/tensorflow/tree/master/tools/tf_env_collect.sh) +You can also obtain the TensorFlow version with: +1. TF 1.0: `python -c "import tensorflow as tf; print(tf.GIT_VERSION, tf.VERSION)"` +2. TF 2.0: `python -c "import tensorflow as tf; print(tf.version.GIT_VERSION, tf.version.VERSION)"` + +**Describe the current behavior** + +**Describe the expected behavior** + +**[Contributing](https://www.tensorflow.org/community/contribute)** + +- Do you want to contribute a PR? (yes/no): +- Briefly describe your candidate solution(if contributing): + +**Standalone code to reproduce the issue** +Provide a reproducible test case that is the bare minimum necessary to generate +the problem. If possible, please share a link to Colab/Jupyter/any notebook. + +**Other info / logs** Include any logs or source code that would be helpful to +diagnose the problem. If including tracebacks, please include the full +traceback. Large logs and files should be attached. diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 0000000..ee4c61b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,23 @@ +--- +name: Feature Request +about: Use this template for raising a feature request +labels: 'type:feature' + +--- + +Please make sure that this is a feature request. As per our [GitHub Policy](https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md), we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:feature_template + + +**System information** +- TensorFlow version (you are using): +- Are you willing to contribute it (Yes/No): + + + +**Describe the feature and the current behavior/state.** + +**Will this change the current api? How?** + +**Who will benefit with this feature?** + +**Any Other info.** diff --git a/.idea/gradle.xml b/.idea/gradle.xml index 2f05086..2041773 100644 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -8,6 +8,7 @@