Unnamed: 0
int64
1
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
7
112
repo_url
stringlengths
36
141
action
stringclasses
3 values
title
stringlengths
3
438
labels
stringlengths
4
308
body
stringlengths
7
254k
index
stringclasses
7 values
text_combine
stringlengths
96
254k
label
stringclasses
2 values
text
stringlengths
96
246k
binary_label
int64
0
1
3,395
13,162,893,359
IssuesEvent
2020-08-10 22:44:09
MDAnalysis/mdanalysis
https://api.github.com/repos/MDAnalysis/mdanalysis
opened
replace deprecated imp with importlib
maintainability upstream
## Expected behavior ## <!-- A clear and concise description of what you want to do and what you think should happen. (Code to reproduce the behavior can be added below). --> No deprecation warnings for standard library imports. ## Actual behavior ## chemlib and H5MD raise > DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses (This is due to the mock in #2723 and #2787.) ## Code to reproduce the behavior ## Run `pytest` with visible warnings. ## Current version of MDAnalysis ## - Which version are you using? (run `python -c "import MDAnalysis as mda; print(mda.__version__)"`) current dev - Which version of Python (`python -V`)? 3.7 - Which operating system? macOS
True
replace deprecated imp with importlib - ## Expected behavior ## <!-- A clear and concise description of what you want to do and what you think should happen. (Code to reproduce the behavior can be added below). --> No deprecation warnings for standard library imports. ## Actual behavior ## chemlib and H5MD raise > DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses (This is due to the mock in #2723 and #2787.) ## Code to reproduce the behavior ## Run `pytest` with visible warnings. ## Current version of MDAnalysis ## - Which version are you using? (run `python -c "import MDAnalysis as mda; print(mda.__version__)"`) current dev - Which version of Python (`python -V`)? 3.7 - Which operating system? macOS
main
replace deprecated imp with importlib expected behavior no deprecation warnings for standard library imports actual behavior chemlib and raise deprecationwarning the imp module is deprecated in favour of importlib see the module s documentation for alternative uses this is due to the mock in and code to reproduce the behavior run pytest with visible warnings current version of mdanalysis which version are you using run python c import mdanalysis as mda print mda version current dev which version of python python v which operating system macos
1
53,049
13,260,847,360
IssuesEvent
2020-08-20 18:51:44
icecube-trac/tix4
https://api.github.com/repos/icecube-trac/tix4
closed
libarchive review (Trac #630)
Migrated from Trac defect tools/ports
<details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/630">https://code.icecube.wisc.edu/projects/icecube/ticket/630</a>, reported by negaand owned by olivas</em></summary> <p> ```json { "status": "closed", "changetime": "2014-11-23T03:37:57", "_ts": "1416713877165085", "description": "", "reporter": "nega", "cc": "", "resolution": "fixed", "time": "2011-05-11T20:38:22", "component": "tools/ports", "summary": "libarchive review", "priority": "normal", "keywords": "libarchive", "milestone": "", "owner": "olivas", "type": "defect" } ``` </p> </details>
1.0
libarchive review (Trac #630) - <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/630">https://code.icecube.wisc.edu/projects/icecube/ticket/630</a>, reported by negaand owned by olivas</em></summary> <p> ```json { "status": "closed", "changetime": "2014-11-23T03:37:57", "_ts": "1416713877165085", "description": "", "reporter": "nega", "cc": "", "resolution": "fixed", "time": "2011-05-11T20:38:22", "component": "tools/ports", "summary": "libarchive review", "priority": "normal", "keywords": "libarchive", "milestone": "", "owner": "olivas", "type": "defect" } ``` </p> </details>
non_main
libarchive review trac migrated from json status closed changetime ts description reporter nega cc resolution fixed time component tools ports summary libarchive review priority normal keywords libarchive milestone owner olivas type defect
0
3,750
15,781,973,831
IssuesEvent
2021-04-01 12:10:05
svengreb/tmpl
https://api.github.com/repos/svengreb/tmpl
closed
Dependency handling with lockfiles
context-techstack context-workflow scope-compatibility scope-maintainability scope-stability target-base type-task
The usage of dependency lockfiles like [`package-lock.json`][npm-docs-v7-lockfile] or [`yarn.lock`][yarn-docs-lock] has always been a controversial topic where opinions go in different directions. On one side many project maintainers tend to argue that is helps to achieve deterministic build results, but on the side it might also hide problems when any later versions of a used dependency, or its transitive dependencies, is not compatible with the own project anymore. I‘ve investigated a lot of time into research again to finally find a solution that works for my projects. In short, the result is to go with the rule that is also used by many large-scale projects: Do **not use lockfiles for multi-consumer projects like libraries** but **only for single-consumer projects like applications**. Therefore the currently committed `yarn.lock` file will be removed since this makes no sense for a repository template anyway. See the sections below for some more details about how to decide to use a lockfile or not. ### When to use lockfiles The clear advantage of lockfiles are reproducible builds and the persistence of a running project state. They ensure that a project artifact can be rebuild at anytime using the exact same dependencies, resulting in the exact same artifact, even when the project was not updated in years. This applies to projects that are focused on building a **end-to-end experience like applications and other end-user products**. These are the advantages listed in the official npm documentation about `package-lock.json` files: > - Describe a single representation of a dependency tree such that teammates, deployments, and continuous integration are guaranteed to install exactly the same dependencies. > - Provide a facility for users to "time-travel" to previous states of node_modules without having to commit the directory itself. > - Facilitate greater visibility of tree changes through readable source control diffs. > - Optimize the installation process by allowing npm to skip repeated metadata resolutions for previously-installed packages. > - As of npm `v7`, lockfiles include enough information to gain a complete picture of the package tree, reducing the need to read package.json files, and allowing for significant performance improvements. Like mentioned, npm `v7` comes with a lot of advantages and the [team recommends to commit the file into project repositories][npm-blog-v7_keep_lock]: - the lockfile has enough information to describe the precise package tree all by itself. - the lockfile maps the packages to their information by their relative location to the root (instead of their name). - the npm CLI uses `yarn.lock` lockfiles if available, as a source of package metadata and resolution guidance when there is missing information, knowing that the `package-lock.json` is the authoritative definition. - `yarn.lock` lockfiles cannot completely replace npm’s lockfile since the current implementation doesn’t have enough information needed for the complete npm functionality. - the npm CLI uses a “hidden lockfile“ placed inside the `node_module` directory that helps to avoid repeated package tree reading. Another points is that in end-user projects dependencies in `package.json` files are pinned often instead of using [SemVer range selectors][npm-webapp-semver] like `^` (latest minor-only) or `~` (latest patch only). In such cases a lockfile helps to keep control about transitive dependencies and persist projects states in time. ### When to avoid lockfiles Even though [the _Yarn_ team published a blog post in 2016][yarn-blog-lockfiles] that states to always commit the `yarn.lock` file, regardless of the project type, this advice was not adopted by every project and some “real-world scenarios“ often showed that this decision was justified. There are [blog posts that summarize when not to use a lockfile][devto-gajus-stop_lockfile] where even [Yarn maintainers reply with comments that claim the opposite][devto-gajus-stop_lockfile-comment-yarn_maintainer], but over the time more and more projects went away from using lockfiles. One argument is that [lockfiles are important to enure that library contributors in 10 years still know what was the last confirmed set of packages which worked as expected][tw-arcanis-1164229994165559299-comment-19], but this can almost be ignored in a ecosystem like Node that changes almost every day. Another important point is to mention that the usage of [lockfiles were also a attack surface to inject malicious dependencies][snyk-blog-lockfile]. Due to the large size of lockfiles, it is also often a challenge for project maintainers to review and validate a lockfile in pull requests are so they are often [ignored and blindly trusted][tw-bcrypt-1208950722097598465]. The community is still not of one opinion and I guess this will never change, but [learning about the experience of well-known maintainers][gh-sindresorhus/ama-479#c-310661514] and [popular projects][gh-airbnb/javascript-2409] is often a good way to find the own decision. In conclusion, the usage of lockfiles in a non-end-user project can be well summarized with [“just postponing the inevitable breakage“][tw-renovatebot-1163789817492230144]: <p align="center"><img src="https://user-images.githubusercontent.com/13448100/113289644-c3388680-92f0-11eb-9a0b-d710c78edb92.png" width="350" /></p> [devto-gajus-stop_lockfile]: https://dev.to/gajus/stop-using-package-lock-json-or-yarn-lock-3ddi [devto-gajus-stop_lockfile-comment-yarn_maintainer]: https://dev.to/arcanis/comment/fo33 [gh-airbnb/javascript-2409]: https://github.com/airbnb/javascript/issues/2409 [gh-sindresorhus/ama-479#c-310661514]: https://github.com/sindresorhus/ama/issues/479#issuecomment-310661514 [npm-blog-v7_keep_lock]: https://blog.npmjs.org/post/621733939456933888/npm-v7-series-why-keep-package-lockjson.html [npm-docs-v7-lockfile]: https://docs.npmjs.com/cli/v7/configuring-npm/package-lock-json [npm-webapp-semver]: https://semver.npmjs.com [snyk-blog-lockfile]: https://snyk.io/blog/why-npm-lockfiles-can-be-a-security-blindspot-for-injecting-malicious-modules [tw-arcanis-1164229994165559299-comment-19]: https://twitter.com/arcanis/status/1164229994165559299?s=19 [tw-bcrypt-1208950722097598465]: https://twitter.com/bcrypt/status/1208950722097598465 [tw-renovatebot-1163789817492230144]: https://twitter.com/renovatebot/status/1163789817492230144 [yarn-blog-lockfiles]: https://classic.yarnpkg.com/blog/2016/11/24/lockfiles-for-all [yarn-docs-lock]: https://classic.yarnpkg.com/en/docs/yarn-lock
True
Dependency handling with lockfiles - The usage of dependency lockfiles like [`package-lock.json`][npm-docs-v7-lockfile] or [`yarn.lock`][yarn-docs-lock] has always been a controversial topic where opinions go in different directions. On one side many project maintainers tend to argue that is helps to achieve deterministic build results, but on the side it might also hide problems when any later versions of a used dependency, or its transitive dependencies, is not compatible with the own project anymore. I‘ve investigated a lot of time into research again to finally find a solution that works for my projects. In short, the result is to go with the rule that is also used by many large-scale projects: Do **not use lockfiles for multi-consumer projects like libraries** but **only for single-consumer projects like applications**. Therefore the currently committed `yarn.lock` file will be removed since this makes no sense for a repository template anyway. See the sections below for some more details about how to decide to use a lockfile or not. ### When to use lockfiles The clear advantage of lockfiles are reproducible builds and the persistence of a running project state. They ensure that a project artifact can be rebuild at anytime using the exact same dependencies, resulting in the exact same artifact, even when the project was not updated in years. This applies to projects that are focused on building a **end-to-end experience like applications and other end-user products**. These are the advantages listed in the official npm documentation about `package-lock.json` files: > - Describe a single representation of a dependency tree such that teammates, deployments, and continuous integration are guaranteed to install exactly the same dependencies. > - Provide a facility for users to "time-travel" to previous states of node_modules without having to commit the directory itself. > - Facilitate greater visibility of tree changes through readable source control diffs. > - Optimize the installation process by allowing npm to skip repeated metadata resolutions for previously-installed packages. > - As of npm `v7`, lockfiles include enough information to gain a complete picture of the package tree, reducing the need to read package.json files, and allowing for significant performance improvements. Like mentioned, npm `v7` comes with a lot of advantages and the [team recommends to commit the file into project repositories][npm-blog-v7_keep_lock]: - the lockfile has enough information to describe the precise package tree all by itself. - the lockfile maps the packages to their information by their relative location to the root (instead of their name). - the npm CLI uses `yarn.lock` lockfiles if available, as a source of package metadata and resolution guidance when there is missing information, knowing that the `package-lock.json` is the authoritative definition. - `yarn.lock` lockfiles cannot completely replace npm’s lockfile since the current implementation doesn’t have enough information needed for the complete npm functionality. - the npm CLI uses a “hidden lockfile“ placed inside the `node_module` directory that helps to avoid repeated package tree reading. Another points is that in end-user projects dependencies in `package.json` files are pinned often instead of using [SemVer range selectors][npm-webapp-semver] like `^` (latest minor-only) or `~` (latest patch only). In such cases a lockfile helps to keep control about transitive dependencies and persist projects states in time. ### When to avoid lockfiles Even though [the _Yarn_ team published a blog post in 2016][yarn-blog-lockfiles] that states to always commit the `yarn.lock` file, regardless of the project type, this advice was not adopted by every project and some “real-world scenarios“ often showed that this decision was justified. There are [blog posts that summarize when not to use a lockfile][devto-gajus-stop_lockfile] where even [Yarn maintainers reply with comments that claim the opposite][devto-gajus-stop_lockfile-comment-yarn_maintainer], but over the time more and more projects went away from using lockfiles. One argument is that [lockfiles are important to enure that library contributors in 10 years still know what was the last confirmed set of packages which worked as expected][tw-arcanis-1164229994165559299-comment-19], but this can almost be ignored in a ecosystem like Node that changes almost every day. Another important point is to mention that the usage of [lockfiles were also a attack surface to inject malicious dependencies][snyk-blog-lockfile]. Due to the large size of lockfiles, it is also often a challenge for project maintainers to review and validate a lockfile in pull requests are so they are often [ignored and blindly trusted][tw-bcrypt-1208950722097598465]. The community is still not of one opinion and I guess this will never change, but [learning about the experience of well-known maintainers][gh-sindresorhus/ama-479#c-310661514] and [popular projects][gh-airbnb/javascript-2409] is often a good way to find the own decision. In conclusion, the usage of lockfiles in a non-end-user project can be well summarized with [“just postponing the inevitable breakage“][tw-renovatebot-1163789817492230144]: <p align="center"><img src="https://user-images.githubusercontent.com/13448100/113289644-c3388680-92f0-11eb-9a0b-d710c78edb92.png" width="350" /></p> [devto-gajus-stop_lockfile]: https://dev.to/gajus/stop-using-package-lock-json-or-yarn-lock-3ddi [devto-gajus-stop_lockfile-comment-yarn_maintainer]: https://dev.to/arcanis/comment/fo33 [gh-airbnb/javascript-2409]: https://github.com/airbnb/javascript/issues/2409 [gh-sindresorhus/ama-479#c-310661514]: https://github.com/sindresorhus/ama/issues/479#issuecomment-310661514 [npm-blog-v7_keep_lock]: https://blog.npmjs.org/post/621733939456933888/npm-v7-series-why-keep-package-lockjson.html [npm-docs-v7-lockfile]: https://docs.npmjs.com/cli/v7/configuring-npm/package-lock-json [npm-webapp-semver]: https://semver.npmjs.com [snyk-blog-lockfile]: https://snyk.io/blog/why-npm-lockfiles-can-be-a-security-blindspot-for-injecting-malicious-modules [tw-arcanis-1164229994165559299-comment-19]: https://twitter.com/arcanis/status/1164229994165559299?s=19 [tw-bcrypt-1208950722097598465]: https://twitter.com/bcrypt/status/1208950722097598465 [tw-renovatebot-1163789817492230144]: https://twitter.com/renovatebot/status/1163789817492230144 [yarn-blog-lockfiles]: https://classic.yarnpkg.com/blog/2016/11/24/lockfiles-for-all [yarn-docs-lock]: https://classic.yarnpkg.com/en/docs/yarn-lock
main
dependency handling with lockfiles the usage of dependency lockfiles like or has always been a controversial topic where opinions go in different directions on one side many project maintainers tend to argue that is helps to achieve deterministic build results but on the side it might also hide problems when any later versions of a used dependency or its transitive dependencies is not compatible with the own project anymore i‘ve investigated a lot of time into research again to finally find a solution that works for my projects in short the result is to go with the rule that is also used by many large scale projects do not use lockfiles for multi consumer projects like libraries but only for single consumer projects like applications therefore the currently committed yarn lock file will be removed since this makes no sense for a repository template anyway see the sections below for some more details about how to decide to use a lockfile or not when to use lockfiles the clear advantage of lockfiles are reproducible builds and the persistence of a running project state they ensure that a project artifact can be rebuild at anytime using the exact same dependencies resulting in the exact same artifact even when the project was not updated in years this applies to projects that are focused on building a end to end experience like applications and other end user products these are the advantages listed in the official npm documentation about package lock json files describe a single representation of a dependency tree such that teammates deployments and continuous integration are guaranteed to install exactly the same dependencies provide a facility for users to time travel to previous states of node modules without having to commit the directory itself facilitate greater visibility of tree changes through readable source control diffs optimize the installation process by allowing npm to skip repeated metadata resolutions for previously installed packages as of npm lockfiles include enough information to gain a complete picture of the package tree reducing the need to read package json files and allowing for significant performance improvements like mentioned npm comes with a lot of advantages and the the lockfile has enough information to describe the precise package tree all by itself the lockfile maps the packages to their information by their relative location to the root instead of their name the npm cli uses yarn lock lockfiles if available as a source of package metadata and resolution guidance when there is missing information knowing that the package lock json is the authoritative definition yarn lock lockfiles cannot completely replace npm’s lockfile since the current implementation doesn’t have enough information needed for the complete npm functionality the npm cli uses a “hidden lockfile“ placed inside the node module directory that helps to avoid repeated package tree reading another points is that in end user projects dependencies in package json files are pinned often instead of using like latest minor only or latest patch only in such cases a lockfile helps to keep control about transitive dependencies and persist projects states in time when to avoid lockfiles even though that states to always commit the yarn lock file regardless of the project type this advice was not adopted by every project and some “real world scenarios“ often showed that this decision was justified there are where even but over the time more and more projects went away from using lockfiles one argument is that but this can almost be ignored in a ecosystem like node that changes almost every day another important point is to mention that the usage of due to the large size of lockfiles it is also often a challenge for project maintainers to review and validate a lockfile in pull requests are so they are often the community is still not of one opinion and i guess this will never change but and is often a good way to find the own decision in conclusion the usage of lockfiles in a non end user project can be well summarized with
1
5,124
26,124,966,957
IssuesEvent
2022-12-28 17:11:43
hamcrest/JavaHamcrest
https://api.github.com/repos/hamcrest/JavaHamcrest
closed
Use @SafeVarargs annotation instad of multiple fixed-arity factory methods that overload varargs method
abi change maintainability
The overloaded methods were written to reduce compile warnings in client code. The @SafeVarargs annotation that was introduced in Java 7 suppresses them altogether. This will change the ABI, but code will still be source compatible.
True
Use @SafeVarargs annotation instad of multiple fixed-arity factory methods that overload varargs method - The overloaded methods were written to reduce compile warnings in client code. The @SafeVarargs annotation that was introduced in Java 7 suppresses them altogether. This will change the ABI, but code will still be source compatible.
main
use safevarargs annotation instad of multiple fixed arity factory methods that overload varargs method the overloaded methods were written to reduce compile warnings in client code the safevarargs annotation that was introduced in java suppresses them altogether this will change the abi but code will still be source compatible
1
308,954
26,640,337,390
IssuesEvent
2023-01-25 03:45:17
EddieHubCommunity/LinkFree
https://api.github.com/repos/EddieHubCommunity/LinkFree
closed
New Testimonial for Eddie Jaoude
testimonial
### Name eddiejaoude ### Title A true Eddlian ### Description Eddie, the founder of the EddieHub community, is a true leader in the tech industry. He founded the successful LinkFree project and served as an incredible mentor to those around him. He has a unique ability to share his knowledge and experience in an approachable and impactful way. His guidance and support have significantly and positively impacted my career. I highly recommend Eddie as a mentor, leader, and community builder. He is an asset to any organization or project.
1.0
New Testimonial for Eddie Jaoude - ### Name eddiejaoude ### Title A true Eddlian ### Description Eddie, the founder of the EddieHub community, is a true leader in the tech industry. He founded the successful LinkFree project and served as an incredible mentor to those around him. He has a unique ability to share his knowledge and experience in an approachable and impactful way. His guidance and support have significantly and positively impacted my career. I highly recommend Eddie as a mentor, leader, and community builder. He is an asset to any organization or project.
non_main
new testimonial for eddie jaoude name eddiejaoude title a true eddlian description eddie the founder of the eddiehub community is a true leader in the tech industry he founded the successful linkfree project and served as an incredible mentor to those around him he has a unique ability to share his knowledge and experience in an approachable and impactful way his guidance and support have significantly and positively impacted my career i highly recommend eddie as a mentor leader and community builder he is an asset to any organization or project
0
755,421
26,428,761,560
IssuesEvent
2023-01-14 14:43:27
apache/netbeans
https://api.github.com/repos/apache/netbeans
closed
"Extract source name from .class and use it to locate proper source" (#5152) breaks java source editing
kind:bug priority:critical Regression
### Body Steps to reproduce: 1. Create a clone of the JNA repository. In a directory of your choosing run `git clone https://github.com/java-native-access/jna.git` 2. In your NetBeans Source Tree go to the last commit before your merge: `git checkout c07ee007fd18` 3. Ensure directory is clean: `git clean -f -x -d` 4. Build: `ant` 5. Run tryme: `ant tryme` 6. Open the JNA NetBeans project from the folder you cloned in step 1. 7. Open test file NativeLibraryTest.java (Package com.sun.jna), go to line 91, right click on `disposeAll`, choose Navigate -> Goto Source 8. Observe, that you are taken to the Method `disposeAll` in `NativeLibrary.java` 9. Close NetBeans 10. Checkout your merge commit: `git checkout 2a9e190afaf799bd0c126f0ffc6c70c9f0f9a305` 11. Build: `ant` 12. Run tryme: `ant tryme` 13. Repeat Step 7 14. Observe, that you are **not** taken to the source, but an exception is reported: ``` java.lang.NullPointerException at org.netbeans.api.java.source.SourceUtils$Match.apply(SourceUtils.java:686) at org.netbeans.api.java.source.SourceUtils.findMatchingChild(SourceUtils.java:631) at org.netbeans.api.java.source.SourceUtils.findSourceForBinary(SourceUtils.java:614) at org.netbeans.api.java.source.SourceUtils.getFile(SourceUtils.java:582) at org.netbeans.api.java.source.ui.ElementOpen.getOpenInfo(ElementOpen.java:444) at org.netbeans.api.java.source.ui.ElementOpen.open(ElementOpen.java:125) at org.netbeans.api.java.source.ui.ElementOpen.open(ElementOpen.java:120) at org.netbeans.modules.editor.java.GoToSupport$7.open(GoToSupport.java:1263) at org.netbeans.modules.editor.java.GoToSupport.performGoToImpl(GoToSupport.java:285) at org.netbeans.modules.editor.java.GoToSupport.access$100(GoToSupport.java:125) at org.netbeans.modules.editor.java.GoToSupport$3.run(GoToSupport.java:224) at org.netbeans.modules.progress.ui.RunOffEDTImpl$1.run(RunOffEDTImpl.java:146) at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418) at org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45) at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278) at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033) Caused: org.openide.util.RequestProcessor$SlowItem at org.openide.util.RequestProcessor.post(RequestProcessor.java:395) at org.netbeans.modules.progress.ui.RunOffEDTImpl.runOffEventDispatchThreadImpl(RunOffEDTImpl.java:140) at org.netbeans.modules.progress.ui.RunOffEDTImpl.runOffEventDispatchThread(RunOffEDTImpl.java:83) at org.netbeans.api.progress.BaseProgressUtils.runOffEventDispatchThread(BaseProgressUtils.java:90) at org.netbeans.api.progress.ProgressUtils.runOffEventDispatchThread(ProgressUtils.java:68) at org.netbeans.modules.editor.java.GoToSupport.performGoTo(GoToSupport.java:221) at org.netbeans.modules.editor.java.GoToSupport.goTo(GoToSupport.java:389) at org.netbeans.modules.editor.java.JavaKit$JavaGoToSourceAction.actionPerformed(JavaKit.java:731) at org.netbeans.editor.BaseAction.actionPerformed(BaseAction.java:322) at org.netbeans.spi.editor.AbstractEditorAction.actionPerformed(AbstractEditorAction.java:445) at org.netbeans.modules.editor.lib2.actions.PresenterUpdater.actionPerformed(PresenterUpdater.java:385) at java.desktop/javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1967) at java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2308) at java.desktop/javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:405) at java.desktop/javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:262) at java.desktop/javax.swing.AbstractButton.doClick(AbstractButton.java:369) at java.desktop/javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1020) at java.desktop/javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1064) at java.desktop/java.awt.Component.processMouseEvent(Component.java:6635) at java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3342) at java.desktop/java.awt.Component.processEvent(Component.java:6400) at java.desktop/java.awt.Container.processEvent(Container.java:2263) at java.desktop/java.awt.Component.dispatchEventImpl(Component.java:5011) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2321) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4843) at java.desktop/java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4918) at java.desktop/java.awt.LightweightDispatcher.processMouseEvent(Container.java:4547) at java.desktop/java.awt.LightweightDispatcher.dispatchEvent(Container.java:4488) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2307) at java.desktop/java.awt.Window.dispatchEventImpl(Window.java:2772) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4843) at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:772) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:721) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:715) at java.base/java.security.AccessController.doPrivileged(Native Method) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:85) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:95) at java.desktop/java.awt.EventQueue$5.run(EventQueue.java:745) at java.desktop/java.awt.EventQueue$5.run(EventQueue.java:743) at java.base/java.security.AccessController.doPrivileged(Native Method) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:85) at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:742) at org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136) at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124) at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:113) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:109) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101) [catch] at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:90) ``` ### Committer - [X] I acknowledge that I am a maintainer/committer in the Apache NetBeans project.
1.0
"Extract source name from .class and use it to locate proper source" (#5152) breaks java source editing - ### Body Steps to reproduce: 1. Create a clone of the JNA repository. In a directory of your choosing run `git clone https://github.com/java-native-access/jna.git` 2. In your NetBeans Source Tree go to the last commit before your merge: `git checkout c07ee007fd18` 3. Ensure directory is clean: `git clean -f -x -d` 4. Build: `ant` 5. Run tryme: `ant tryme` 6. Open the JNA NetBeans project from the folder you cloned in step 1. 7. Open test file NativeLibraryTest.java (Package com.sun.jna), go to line 91, right click on `disposeAll`, choose Navigate -> Goto Source 8. Observe, that you are taken to the Method `disposeAll` in `NativeLibrary.java` 9. Close NetBeans 10. Checkout your merge commit: `git checkout 2a9e190afaf799bd0c126f0ffc6c70c9f0f9a305` 11. Build: `ant` 12. Run tryme: `ant tryme` 13. Repeat Step 7 14. Observe, that you are **not** taken to the source, but an exception is reported: ``` java.lang.NullPointerException at org.netbeans.api.java.source.SourceUtils$Match.apply(SourceUtils.java:686) at org.netbeans.api.java.source.SourceUtils.findMatchingChild(SourceUtils.java:631) at org.netbeans.api.java.source.SourceUtils.findSourceForBinary(SourceUtils.java:614) at org.netbeans.api.java.source.SourceUtils.getFile(SourceUtils.java:582) at org.netbeans.api.java.source.ui.ElementOpen.getOpenInfo(ElementOpen.java:444) at org.netbeans.api.java.source.ui.ElementOpen.open(ElementOpen.java:125) at org.netbeans.api.java.source.ui.ElementOpen.open(ElementOpen.java:120) at org.netbeans.modules.editor.java.GoToSupport$7.open(GoToSupport.java:1263) at org.netbeans.modules.editor.java.GoToSupport.performGoToImpl(GoToSupport.java:285) at org.netbeans.modules.editor.java.GoToSupport.access$100(GoToSupport.java:125) at org.netbeans.modules.editor.java.GoToSupport$3.run(GoToSupport.java:224) at org.netbeans.modules.progress.ui.RunOffEDTImpl$1.run(RunOffEDTImpl.java:146) at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418) at org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45) at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278) at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033) Caused: org.openide.util.RequestProcessor$SlowItem at org.openide.util.RequestProcessor.post(RequestProcessor.java:395) at org.netbeans.modules.progress.ui.RunOffEDTImpl.runOffEventDispatchThreadImpl(RunOffEDTImpl.java:140) at org.netbeans.modules.progress.ui.RunOffEDTImpl.runOffEventDispatchThread(RunOffEDTImpl.java:83) at org.netbeans.api.progress.BaseProgressUtils.runOffEventDispatchThread(BaseProgressUtils.java:90) at org.netbeans.api.progress.ProgressUtils.runOffEventDispatchThread(ProgressUtils.java:68) at org.netbeans.modules.editor.java.GoToSupport.performGoTo(GoToSupport.java:221) at org.netbeans.modules.editor.java.GoToSupport.goTo(GoToSupport.java:389) at org.netbeans.modules.editor.java.JavaKit$JavaGoToSourceAction.actionPerformed(JavaKit.java:731) at org.netbeans.editor.BaseAction.actionPerformed(BaseAction.java:322) at org.netbeans.spi.editor.AbstractEditorAction.actionPerformed(AbstractEditorAction.java:445) at org.netbeans.modules.editor.lib2.actions.PresenterUpdater.actionPerformed(PresenterUpdater.java:385) at java.desktop/javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1967) at java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2308) at java.desktop/javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:405) at java.desktop/javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:262) at java.desktop/javax.swing.AbstractButton.doClick(AbstractButton.java:369) at java.desktop/javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1020) at java.desktop/javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1064) at java.desktop/java.awt.Component.processMouseEvent(Component.java:6635) at java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3342) at java.desktop/java.awt.Component.processEvent(Component.java:6400) at java.desktop/java.awt.Container.processEvent(Container.java:2263) at java.desktop/java.awt.Component.dispatchEventImpl(Component.java:5011) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2321) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4843) at java.desktop/java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4918) at java.desktop/java.awt.LightweightDispatcher.processMouseEvent(Container.java:4547) at java.desktop/java.awt.LightweightDispatcher.dispatchEvent(Container.java:4488) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2307) at java.desktop/java.awt.Window.dispatchEventImpl(Window.java:2772) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4843) at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:772) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:721) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:715) at java.base/java.security.AccessController.doPrivileged(Native Method) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:85) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:95) at java.desktop/java.awt.EventQueue$5.run(EventQueue.java:745) at java.desktop/java.awt.EventQueue$5.run(EventQueue.java:743) at java.base/java.security.AccessController.doPrivileged(Native Method) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:85) at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:742) at org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136) at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124) at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:113) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:109) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101) [catch] at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:90) ``` ### Committer - [X] I acknowledge that I am a maintainer/committer in the Apache NetBeans project.
non_main
extract source name from class and use it to locate proper source breaks java source editing body steps to reproduce create a clone of the jna repository in a directory of your choosing run git clone in your netbeans source tree go to the last commit before your merge git checkout ensure directory is clean git clean f x d build ant run tryme ant tryme open the jna netbeans project from the folder you cloned in step open test file nativelibrarytest java package com sun jna go to line right click on disposeall choose navigate goto source observe that you are taken to the method disposeall in nativelibrary java close netbeans checkout your merge commit git checkout build ant run tryme ant tryme repeat step observe that you are not taken to the source but an exception is reported java lang nullpointerexception at org netbeans api java source sourceutils match apply sourceutils java at org netbeans api java source sourceutils findmatchingchild sourceutils java at org netbeans api java source sourceutils findsourceforbinary sourceutils java at org netbeans api java source sourceutils getfile sourceutils java at org netbeans api java source ui elementopen getopeninfo elementopen java at org netbeans api java source ui elementopen open elementopen java at org netbeans api java source ui elementopen open elementopen java at org netbeans modules editor java gotosupport open gotosupport java at org netbeans modules editor java gotosupport performgotoimpl gotosupport java at org netbeans modules editor java gotosupport access gotosupport java at org netbeans modules editor java gotosupport run gotosupport java at org netbeans modules progress ui runoffedtimpl run runoffedtimpl java at org openide util requestprocessor task run requestprocessor java at org netbeans modules openide util globallookup execute globallookup java at org openide util lookup lookups executewith lookups java at org openide util requestprocessor processor run requestprocessor java caused org openide util requestprocessor slowitem at org openide util requestprocessor post requestprocessor java at org netbeans modules progress ui runoffedtimpl runoffeventdispatchthreadimpl runoffedtimpl java at org netbeans modules progress ui runoffedtimpl runoffeventdispatchthread runoffedtimpl java at org netbeans api progress baseprogressutils runoffeventdispatchthread baseprogressutils java at org netbeans api progress progressutils runoffeventdispatchthread progressutils java at org netbeans modules editor java gotosupport performgoto gotosupport java at org netbeans modules editor java gotosupport goto gotosupport java at org netbeans modules editor java javakit javagotosourceaction actionperformed javakit java at org netbeans editor baseaction actionperformed baseaction java at org netbeans spi editor abstracteditoraction actionperformed abstracteditoraction java at org netbeans modules editor actions presenterupdater actionperformed presenterupdater java at java desktop javax swing abstractbutton fireactionperformed abstractbutton java at java desktop javax swing abstractbutton handler actionperformed abstractbutton java at java desktop javax swing defaultbuttonmodel fireactionperformed defaultbuttonmodel java at java desktop javax swing defaultbuttonmodel setpressed defaultbuttonmodel java at java desktop javax swing abstractbutton doclick abstractbutton java at java desktop javax swing plaf basic basicmenuitemui doclick basicmenuitemui java at java desktop javax swing plaf basic basicmenuitemui handler mousereleased basicmenuitemui java at java desktop java awt component processmouseevent component java at java desktop javax swing jcomponent processmouseevent jcomponent java at java desktop java awt component processevent component java at java desktop java awt container processevent container java at java desktop java awt component dispatcheventimpl component java at java desktop java awt container dispatcheventimpl container java at java desktop java awt component dispatchevent component java at java desktop java awt lightweightdispatcher retargetmouseevent container java at java desktop java awt lightweightdispatcher processmouseevent container java at java desktop java awt lightweightdispatcher dispatchevent container java at java desktop java awt container dispatcheventimpl container java at java desktop java awt window dispatcheventimpl window java at java desktop java awt component dispatchevent component java at java desktop java awt eventqueue dispatcheventimpl eventqueue java at java desktop java awt eventqueue run eventqueue java at java desktop java awt eventqueue run eventqueue java at java base java security accesscontroller doprivileged native method at java base java security protectiondomain javasecurityaccessimpl dointersectionprivilege protectiondomain java at java base java security protectiondomain javasecurityaccessimpl dointersectionprivilege protectiondomain java at java desktop java awt eventqueue run eventqueue java at java desktop java awt eventqueue run eventqueue java at java base java security accesscontroller doprivileged native method at java base java security protectiondomain javasecurityaccessimpl dointersectionprivilege protectiondomain java at java desktop java awt eventqueue dispatchevent eventqueue java at org netbeans core timableeventqueue dispatchevent timableeventqueue java at java desktop java awt eventdispatchthread pumponeeventforfilters eventdispatchthread java at java desktop java awt eventdispatchthread pumpeventsforfilter eventdispatchthread java at java desktop java awt eventdispatchthread pumpeventsforhierarchy eventdispatchthread java at java desktop java awt eventdispatchthread pumpevents eventdispatchthread java at java desktop java awt eventdispatchthread pumpevents eventdispatchthread java at java desktop java awt eventdispatchthread run eventdispatchthread java committer i acknowledge that i am a maintainer committer in the apache netbeans project
0
205,802
16,009,975,705
IssuesEvent
2021-04-20 09:20:00
CS-SI/eodag
https://api.github.com/repos/CS-SI/eodag
opened
Clean up the docstring of the main methods/classes
documentation
* [ ] Remove doctests when they make the method's docstring more difficult to understand * [ ] Remove old *versionadded* or *versionchanged* directives, they are not useful for the users and we have the changelog to trace those changes * [ ] Update the description and type of the parameters when need be
1.0
Clean up the docstring of the main methods/classes - * [ ] Remove doctests when they make the method's docstring more difficult to understand * [ ] Remove old *versionadded* or *versionchanged* directives, they are not useful for the users and we have the changelog to trace those changes * [ ] Update the description and type of the parameters when need be
non_main
clean up the docstring of the main methods classes remove doctests when they make the method s docstring more difficult to understand remove old versionadded or versionchanged directives they are not useful for the users and we have the changelog to trace those changes update the description and type of the parameters when need be
0
2,249
7,925,254,195
IssuesEvent
2018-07-05 19:56:42
fgm/filog
https://api.github.com/repos/fgm/filog
closed
Sometimes log object itself is the message
maintainer needs more info
I've no idea why, but sometimes I bump into logs where the message is the log document itself, like so: ```json { "_id": "PPP2whQ6gdC9Tfry2", "level": 3, "message": "{ level: 3,\n context: \n { message_details: { error: 'Updating subscription failed' },\n browser: \n { platform: 'Linux armv8l',\n product: 'Gecko',\n userAgent: 'Mozilla/5.0 (Linux; Android 8.0.0; SM-G950F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Mobile Safari/537.36',\n performance: {} },\n routing: { location: [Object] },\n meteor: { platform: 'client', user: [Object] },\n timestamp: { log: 1530510424060 } } }", "context": { "message_details": { "error": "Updating subscription failed" }, "browser": { "platform": "Linux armv8l", "product": "Gecko", "userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G950F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Mobile Safari/537.36", "performance": {} }, "routing": { "location": { ... ``` Is this by design or perhaps a bug? FiLog version 0.1.17.
True
Sometimes log object itself is the message - I've no idea why, but sometimes I bump into logs where the message is the log document itself, like so: ```json { "_id": "PPP2whQ6gdC9Tfry2", "level": 3, "message": "{ level: 3,\n context: \n { message_details: { error: 'Updating subscription failed' },\n browser: \n { platform: 'Linux armv8l',\n product: 'Gecko',\n userAgent: 'Mozilla/5.0 (Linux; Android 8.0.0; SM-G950F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Mobile Safari/537.36',\n performance: {} },\n routing: { location: [Object] },\n meteor: { platform: 'client', user: [Object] },\n timestamp: { log: 1530510424060 } } }", "context": { "message_details": { "error": "Updating subscription failed" }, "browser": { "platform": "Linux armv8l", "product": "Gecko", "userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G950F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Mobile Safari/537.36", "performance": {} }, "routing": { "location": { ... ``` Is this by design or perhaps a bug? FiLog version 0.1.17.
main
sometimes log object itself is the message i ve no idea why but sometimes i bump into logs where the message is the log document itself like so json id level message level n context n message details error updating subscription failed n browser n platform linux n product gecko n useragent mozilla linux android sm build applewebkit khtml like gecko chrome mobile safari n performance n routing location n meteor platform client user n timestamp log context message details error updating subscription failed browser platform linux product gecko useragent mozilla linux android sm build applewebkit khtml like gecko chrome mobile safari performance routing location is this by design or perhaps a bug filog version
1
56,101
14,929,856,380
IssuesEvent
2021-01-25 01:04:22
AeroScripts/QuestieDev
https://api.github.com/repos/AeroScripts/QuestieDev
closed
Map target issues
Type - Defect
<!-- READ THIS FIRST Hello, thanks for taking the time to report a bug! Before you proceed, please verify that you're running the latest version of Questie. The easiest way to do this is via the Twitch client, but you can also download the latest version here: https://www.curseforge.com/wow/addons/questie Questie is one of the most popular Classic WoW addons, with over 22M downloads. However, like almost all WoW addons, it's built and maintained by a team of volunteers. The current Questie team is: * @AeroScripts / Aero#1357 (Discord) * @BreakBB / TheCrux#1702 (Discord) * @drejjmit / Drejjmit#8241 (Discord) * @Dyaxler / Dyaxler#0086 (Discord) * @gogo1951 / Gogo#0298 (Discord) If you'd like to help, please consider making a donation. You can do so here: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=aero1861%40gmail%2ecom&lc=CA&item_name=Questie%20Devs&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted You can also help as a tester, developer or translator, please join the Questie Discord here https://discord.gg/fYcQfv7 --> ## Bug description <!-- Explain in detail what the bug is and how you encountered it. If possible explain how it can be reproduced. --> quest targets on map and available new quests don’t show up on main map or minimap. They stopped showing up mid game. Did EVERYTHING to get addon to work. Only thing shows on map is where finished quests can be turn in at. ## Screenshots <!-- If you can, add a screenshot to help explaining the bug. Simply drag and drop the image in this input field, no need to upload it to any other image platform. --> ## Questie version <!-- Which version of Questie are you using? You can find it by: - 1. Hovering over the Questie Minimap Icon - 2. looking at your Questie.toc file (open it with any text editor). It looks something like this: "v5.9.0" or "## Version: 5.9.0". --> 6.4.2
1.0
Map target issues - <!-- READ THIS FIRST Hello, thanks for taking the time to report a bug! Before you proceed, please verify that you're running the latest version of Questie. The easiest way to do this is via the Twitch client, but you can also download the latest version here: https://www.curseforge.com/wow/addons/questie Questie is one of the most popular Classic WoW addons, with over 22M downloads. However, like almost all WoW addons, it's built and maintained by a team of volunteers. The current Questie team is: * @AeroScripts / Aero#1357 (Discord) * @BreakBB / TheCrux#1702 (Discord) * @drejjmit / Drejjmit#8241 (Discord) * @Dyaxler / Dyaxler#0086 (Discord) * @gogo1951 / Gogo#0298 (Discord) If you'd like to help, please consider making a donation. You can do so here: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=aero1861%40gmail%2ecom&lc=CA&item_name=Questie%20Devs&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted You can also help as a tester, developer or translator, please join the Questie Discord here https://discord.gg/fYcQfv7 --> ## Bug description <!-- Explain in detail what the bug is and how you encountered it. If possible explain how it can be reproduced. --> quest targets on map and available new quests don’t show up on main map or minimap. They stopped showing up mid game. Did EVERYTHING to get addon to work. Only thing shows on map is where finished quests can be turn in at. ## Screenshots <!-- If you can, add a screenshot to help explaining the bug. Simply drag and drop the image in this input field, no need to upload it to any other image platform. --> ## Questie version <!-- Which version of Questie are you using? You can find it by: - 1. Hovering over the Questie Minimap Icon - 2. looking at your Questie.toc file (open it with any text editor). It looks something like this: "v5.9.0" or "## Version: 5.9.0". --> 6.4.2
non_main
map target issues read this first hello thanks for taking the time to report a bug before you proceed please verify that you re running the latest version of questie the easiest way to do this is via the twitch client but you can also download the latest version here questie is one of the most popular classic wow addons with over downloads however like almost all wow addons it s built and maintained by a team of volunteers the current questie team is aeroscripts aero discord breakbb thecrux discord drejjmit drejjmit discord dyaxler dyaxler discord gogo discord if you d like to help please consider making a donation you can do so here you can also help as a tester developer or translator please join the questie discord here bug description quest targets on map and available new quests don’t show up on main map or minimap they stopped showing up mid game did everything to get addon to work only thing shows on map is where finished quests can be turn in at screenshots questie version which version of questie are you using you can find it by hovering over the questie minimap icon looking at your questie toc file open it with any text editor it looks something like this or version
0
2,766
9,873,342,138
IssuesEvent
2019-06-22 13:38:58
arcticicestudio/snowsaw
https://api.github.com/repos/arcticicestudio/snowsaw
closed
Initial repository clean up for Go rewrite
context-workflow scope-maintainability status-in-review type-task
<p align="center"><img src="https://user-images.githubusercontent.com/7836623/59963238-8838da80-94f0-11e9-8857-4322932bdb9c.png" width="20%" /></p> > Epic: #33 > Blocks #34 #35 #36 #37 #38 #39 #42 #43 #44 #45 #46 #47 #48 In order to start the [Go project rewrite][gh-33] from scratch the current repository structure and files should be reset to a clean state to remove all references to the previous implementations, documentations and project structure/layout. <p align="center"><img src="https://user-images.githubusercontent.com/7836623/59963372-8cfe8e00-94f2-11e9-85e2-b140a889d26e.png" width="12%" /></p> Starting from a „fresh“ state allows to build the project up with the correct structure and design pattern as if there were leftovers from the previous repository data resulting in mixed files and folders. This ticket **must be resolved first before all other tickets** also bound to the epic #33! See the [corresponding milestone][mst] for more details about the implementation/resolve order. #### Tasks - [x] [`.idea/`][tree-idea] — Delete the whole folder, the files are scoped for _Pycharm Community Edition_ and will be replaced with the correct files for _IntelliJ Ultimate Edition_ with the [official Go plugin][jb-go] ([Goland][]) later on. - [x] [`assets/`][tree-ast] — Delete the whole folder, all assets will be redesigned and added again later on. - [x] [`bin/`][tree-bin] — Delete the whole folder, the script is part of the Python implementation and represented the entry point of the app. - [x] [`snowsaw/`][tree-lib] — Delete the whole folder, includes the main Python app and API implementations. - [x] [`.editorconfig`][tree-ec] — Delete the file, it will be recreated in #38 to match the new project layout and latest _Arctic Ice Studio_ style guides. - [x] [`.gitignore`][tree-ignore] — Delete the file, it will be recreated in #35 to match the new project layout and latest _Arctic Ice Studio_ project design standards/guidelines. - [x] [`CHANGELOG.md`][tree-cl] — Delete the file, it will be recreated later on to match the new project layout and latest _Arctic Ice Studio_ project design standards/guidelines. - [x] [`README.md`][tree-rdm] — Delete the file, it will be recreated later on to match the new project layout and latest _Arctic Ice Studio_ project design standards/guidelines including the new project assets (logo, repository hero etc.). [gh-33]: https://github.com/arcticicestudio/snowsaw/issues/33 [mst]: https://github.com/arcticicestudio/snowsaw/milestone/5 [jb-go]: https://plugins.jetbrains.com/plugin/9568-go [goland]: https://www.jetbrains.com/go [tree-idea]: https://github.com/arcticicestudio/snowsaw/tree/bc54e5136be27f8037de5bbc2f046f37eb036274/.idea [tree-ast]: https://github.com/arcticicestudio/snowsaw/tree/bc54e5136be27f8037de5bbc2f046f37eb036274/assets [tree-bin]: https://github.com/arcticicestudio/snowsaw/tree/bc54e5136be27f8037de5bbc2f046f37eb036274/bin [tree-lib]: https://github.com/arcticicestudio/snowsaw/tree/bc54e5136be27f8037de5bbc2f046f37eb036274/snowsaw [tree-ec]: https://github.com/arcticicestudio/snowsaw/blob/bc54e5136be27f8037de5bbc2f046f37eb036274/.editorconfig [tree-ignore]: https://github.com/arcticicestudio/snowsaw/blob/bc54e5136be27f8037de5bbc2f046f37eb036274/.gitignore [tree-rdm]: https://github.com/arcticicestudio/snowsaw/blob/bc54e5136be27f8037de5bbc2f046f37eb036274/README.md [tree-cl]: https://github.com/arcticicestudio/snowsaw/blob/bc54e5136be27f8037de5bbc2f046f37eb036274/CHANGELOG.md <!-- +-------------------+ + SVG Image Sources + +-------------------+ bulb: <svg viewBox="0 0 480.362 480" xmlns="http://www.w3.org/2000/svg"><path d="M216.29 192.18c0 57.437-46.563 104-104 104s-104-46.563-104-104 46.562-104 104-104 104 46.562 104 104zm0 0" fill="#81a1c1"/><path d="M472.29 248.18c0 88.367-71.634 160-160 160-88.364 0-160-71.633-160-160 0-88.364 71.636-160 160-160 88.366 0 160 71.636 160 160zm0 0" fill="#88c0d0"/><path d="M464.29 416.18c0 8.84-7.165 16-16 16-8.837 0-16-7.16-16-16 0-8.836 7.163-16 16-16 8.835 0 16 7.164 16 16zm-232-360c0 13.257-10.747 24-24 24-13.255 0-24-10.743-24-24 0-13.254 10.745-24 24-24 13.253 0 24 10.746 24 24zm0 0" fill="#8fbcbb"/><path d="M288.29 392.18c0 44.183-35.817 80-80 80-44.185 0-80-35.817-80-80 0-44.18 35.815-80 80-80 44.183 0 80 35.82 80 80zm0 0" fill="#5e81ac"/><path d="M312.29 80.18a166.62 166.62 0 0 0-112 43.074c-35.376-45.32-99.317-56.5-147.966-25.863C3.672 128.023-13.883 190.516 11.7 242.004c25.582 51.484 85.992 75.238 139.79 54.969a162.495 162.495 0 0 0 8.386 21.77c-32.719 21.538-47.246 62.116-35.637 99.527 11.61 37.406 46.559 62.632 85.719 61.867 39.164-.766 73.098-27.336 83.238-65.172 61.907 7.133 122.672-20.598 157.852-72.035 35.176-51.438 38.98-118.125 9.879-173.23-29.102-55.106-86.32-89.567-148.637-89.52zm-296 112c-.067-41.29 26.32-77.977 65.483-91.051 39.165-13.074 82.301.406 107.051 33.453A166.664 166.664 0 0 0 144.29 248.18a169.092 169.092 0 0 0 3.352 33.129 95.734 95.734 0 0 1-89.371-9.645 95.732 95.732 0 0 1-41.98-79.484zm192 272c-39.767 0-72-32.235-72-72 0-39.762 32.233-72 72-72 39.765 0 72 32.238 72 72-.044 39.746-32.255 71.957-72 72zm104-64a151.506 151.506 0 0 1-16.353-1c.184-2.313.352-4.637.352-7a88.003 88.003 0 0 0-39.387-73.348A88.005 88.005 0 0 0 174 311.141a148.554 148.554 0 0 1-9.375-26.856 152.984 152.984 0 0 1-4.336-36.105c0-83.946 68.055-152 152-152 83.95 0 152 68.054 152 152 0 83.949-68.05 152-152 152zm0 0" fill="#4c566a"/><path d="M72.29 360.18a8 8 0 0 0-16 0c0 13.257-10.747 24-24 24a8 8 0 0 0 0 16c13.253 0 24 10.746 24 24a8 8 0 0 0 16 0c0-13.254 10.745-24 24-24a8 8 0 0 0 0-16c-13.255 0-24-10.743-24-24zm-8 40.25a39.876 39.876 0 0 0-8.247-8.25 39.857 39.857 0 0 0 8.246-8.246 39.876 39.876 0 0 0 8.25 8.246 39.894 39.894 0 0 0-8.25 8.25zm328-328.25a8 8 0 0 0 16 0c0-13.254 10.745-24 24-24a8 8 0 0 0 0-16c-13.255 0-24-10.743-24-24a8 8 0 0 0-16 0c0 13.257-10.747 24-24 24a8 8 0 0 0 0 16c13.253 0 24 10.746 24 24zm8-40.246a39.876 39.876 0 0 0 8.25 8.246 39.894 39.894 0 0 0-8.25 8.25 39.876 39.876 0 0 0-8.247-8.25 39.857 39.857 0 0 0 8.246-8.246zm16 216.246c-13.255 0-24-10.743-24-24a8 8 0 0 0-16 0c0 13.257-10.747 24-24 24a8 8 0 0 0 0 16c13.253 0 24 10.746 24 24a8 8 0 0 0 16 0c0-13.254 10.745-24 24-24a8 8 0 0 0 0-16zm-32 16.25a39.876 39.876 0 0 0-8.247-8.25 39.857 39.857 0 0 0 8.246-8.246 39.876 39.876 0 0 0 8.25 8.246 39.894 39.894 0 0 0-8.25 8.25zm-56-80.25a8 8 0 0 0-8-8c-13.255 0-24-10.743-24-24a8 8 0 0 0-16 0c0 13.257-10.747 24-24 24a8 8 0 0 0 0 16c13.253 0 24 10.746 24 24a8 8 0 0 0 16 0c0-13.254 10.745-24 24-24a8 8 0 0 0 8-8zm-40 8.25a39.876 39.876 0 0 0-8.247-8.25 39.857 39.857 0 0 0 8.246-8.246 39.876 39.876 0 0 0 8.25 8.246 39.894 39.894 0 0 0-8.25 8.25zm-192 135.75h16v16h-16zm-80 112h16v16h-16zm456-24c0-13.254-10.747-24-24-24-13.255 0-24 10.746-24 24 0 13.257 10.745 24 24 24 13.253 0 24-10.743 24-24zm-32 0a8 8 0 1 1 16 0 8 8 0 0 1-16 0zm-200-360c0-17.672-14.33-32-32-32-17.673 0-32 14.328-32 32 0 17.675 14.327 32 32 32 17.67 0 32-14.325 32-32zm-48 0c0-8.836 7.163-16 16-16 8.835 0 16 7.164 16 16 0 8.84-7.165 16-16 16-8.837 0-16-7.16-16-16zm96-16h16v16h-16zm32 296h16v16h-16zm48 104h16v16h-16zm-272-232h16v16h-16zm-64 .722l16-1.441c-.04-.383-3.2-38.457 17.878-61.602a59.631 59.631 0 0 1 46.121-17.68v-16a74.876 74.876 0 0 0-57.96 22.915c-25.825 28.289-22.177 71.969-22.04 73.808zm288-96.722v16c4 0 97.241 1.707 112.089 113.058l15.855-2.113C431.488 113.637 321.402 112.18 320.29 112.18zm0 0" fill="#4c566a"/></svg> shine: <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 311.2 311.2"><path d="M115.321 148s93.6-1.2 93.6 100c0-101.6 93.6-100 93.6-100s-93.6 1.2-93.6-100c-.4 101.2-93.6 100-93.6 100z" fill="#81a1c1"/><path d="M219.321 98.8c-6.4-13.2-10.4-29.6-10.4-50.8 0 98-87.6 100-93.2 100 2.8 0 22.8.4 43.2 10.4 21.6-6.4 49.2-22 60.4-59.6z" fill="#88c0d0"/><path d="M9.321 234.8s66.8-.8 66.8 71.6c0-72.4 66.8-71.6 66.8-71.6s-66.8.8-66.8-71.6c0 72.4-66.8 71.6-66.8 71.6z" fill="#81a1c1"/><path d="M85.321 202.8c-5.6-10-9.2-22.8-9.2-39.6 0 70-62.4 71.6-66.4 71.6 2 0 18.8.4 34.8 9.6 14.8-5.2 33.2-16.4 40.8-41.6z" fill="#88c0d0"/><path d="M53.721 62.4s53.2-.8 53.2 57.2c0-58 53.2-57.2 53.2-57.2s-53.2.8-53.2-57.2c0 57.6-53.2 57.2-53.2 57.2z" fill="#81a1c1"/><path d="M115.721 38.8c-5.2-8-8.4-19.2-8.4-33.6 0 56-50 57.2-53.2 57.2 1.6 0 16.4.4 29.6 8.8 11.6-4 25.6-12.8 32-32.4z" fill="#88c0d0"/><path d="M214.121 48c0-2.8-2.4-5.2-5.2-5.2-2.8 0-5.2 2.4-5.2 5.2-.4 91.6-79.2 94.8-88 94.8-1.2 0-2.4.4-3.2 1.2-.8.4-1.2.8-1.6 1.6-.8 1.6-.8 3.6 0 5.2s2.8 2.8 4.4 2.8h.4c9.2 0 87.6 3.2 87.6 94.8 0 2.8 2.4 5.2 5.2 5.2 2.8 0 5.2-2.4 5.2-5.2 0-91.6 78.8-94.8 87.6-94.8 2 0 3.6-1.2 4.8-2.8.8-1.6.8-3.6-.4-5.2-.8-1.6-2.8-2.4-4.4-2.8-8.4 0-87.2-3.2-87.2-94.8zm-5.6 161.2c-11.6-38-40-54.4-62.4-61.2 22.4-7.2 50.8-23.6 62.4-61.2 11.6 38 40 54.4 62.4 61.2-22.4 7.2-50.4 23.6-62.4 61.2zm-96-89.6c0-50 42.8-52 48-52h.4c2.8 0 5.2-2.4 5.2-5.2s-2.4-5.2-5.2-5.2c-4.8 0-48-1.6-48-52 0-2.8-2.4-5.2-5.2-5.2s-5.2 2.4-5.2 5.2c0 50-42.8 52-48 52h-.4c-2.8.4-4.8 2.4-4.8 5.2s2.4 5.2 5.2 5.2c4.8 0 48 1.6 48 52 0 2.8 2.4 5.2 5.2 5.2 2.4 0 4.8-2.4 4.8-5.2zm-34.4-57.2c11.2-4.8 22.4-13.6 28.8-28.4 6.4 15.2 18 23.6 28.8 28.4-11.2 4.8-22.4 13.6-28.8 28.4-6.4-15.6-18-24-28.8-28.4zm66 167.2h-1.2c-6.4 0-61.2-2.4-61.2-66 0-2.8-2.4-5.2-5.2-5.2s-5.2 2.4-5.2 5.2c0 64-54.8 66-61.2 66h-1.2c-2.4.4-4.4 2.8-4.4 5.2 0 2.8 2.4 5.2 5.2 5.2 6.4 0 61.2 2 61.2 66 0 2.8 2.4 5.2 5.2 5.2s5.2-2.4 5.2-5.2c0-64 54.8-66 61.2-66 2.8 0 5.2-2.4 5.2-5.2.4-2.8-1.2-4.8-3.6-5.2zm-68 44c-8.4-22.4-25.2-33.6-39.6-38.8 14.8-5.6 31.2-16.4 39.6-38.8 8.4 22.4 25.2 33.6 39.6 38.8-14.4 5.2-31.2 16.4-39.6 38.8z" fill="#4c566a"/></svg> -->
True
Initial repository clean up for Go rewrite - <p align="center"><img src="https://user-images.githubusercontent.com/7836623/59963238-8838da80-94f0-11e9-8857-4322932bdb9c.png" width="20%" /></p> > Epic: #33 > Blocks #34 #35 #36 #37 #38 #39 #42 #43 #44 #45 #46 #47 #48 In order to start the [Go project rewrite][gh-33] from scratch the current repository structure and files should be reset to a clean state to remove all references to the previous implementations, documentations and project structure/layout. <p align="center"><img src="https://user-images.githubusercontent.com/7836623/59963372-8cfe8e00-94f2-11e9-85e2-b140a889d26e.png" width="12%" /></p> Starting from a „fresh“ state allows to build the project up with the correct structure and design pattern as if there were leftovers from the previous repository data resulting in mixed files and folders. This ticket **must be resolved first before all other tickets** also bound to the epic #33! See the [corresponding milestone][mst] for more details about the implementation/resolve order. #### Tasks - [x] [`.idea/`][tree-idea] — Delete the whole folder, the files are scoped for _Pycharm Community Edition_ and will be replaced with the correct files for _IntelliJ Ultimate Edition_ with the [official Go plugin][jb-go] ([Goland][]) later on. - [x] [`assets/`][tree-ast] — Delete the whole folder, all assets will be redesigned and added again later on. - [x] [`bin/`][tree-bin] — Delete the whole folder, the script is part of the Python implementation and represented the entry point of the app. - [x] [`snowsaw/`][tree-lib] — Delete the whole folder, includes the main Python app and API implementations. - [x] [`.editorconfig`][tree-ec] — Delete the file, it will be recreated in #38 to match the new project layout and latest _Arctic Ice Studio_ style guides. - [x] [`.gitignore`][tree-ignore] — Delete the file, it will be recreated in #35 to match the new project layout and latest _Arctic Ice Studio_ project design standards/guidelines. - [x] [`CHANGELOG.md`][tree-cl] — Delete the file, it will be recreated later on to match the new project layout and latest _Arctic Ice Studio_ project design standards/guidelines. - [x] [`README.md`][tree-rdm] — Delete the file, it will be recreated later on to match the new project layout and latest _Arctic Ice Studio_ project design standards/guidelines including the new project assets (logo, repository hero etc.). [gh-33]: https://github.com/arcticicestudio/snowsaw/issues/33 [mst]: https://github.com/arcticicestudio/snowsaw/milestone/5 [jb-go]: https://plugins.jetbrains.com/plugin/9568-go [goland]: https://www.jetbrains.com/go [tree-idea]: https://github.com/arcticicestudio/snowsaw/tree/bc54e5136be27f8037de5bbc2f046f37eb036274/.idea [tree-ast]: https://github.com/arcticicestudio/snowsaw/tree/bc54e5136be27f8037de5bbc2f046f37eb036274/assets [tree-bin]: https://github.com/arcticicestudio/snowsaw/tree/bc54e5136be27f8037de5bbc2f046f37eb036274/bin [tree-lib]: https://github.com/arcticicestudio/snowsaw/tree/bc54e5136be27f8037de5bbc2f046f37eb036274/snowsaw [tree-ec]: https://github.com/arcticicestudio/snowsaw/blob/bc54e5136be27f8037de5bbc2f046f37eb036274/.editorconfig [tree-ignore]: https://github.com/arcticicestudio/snowsaw/blob/bc54e5136be27f8037de5bbc2f046f37eb036274/.gitignore [tree-rdm]: https://github.com/arcticicestudio/snowsaw/blob/bc54e5136be27f8037de5bbc2f046f37eb036274/README.md [tree-cl]: https://github.com/arcticicestudio/snowsaw/blob/bc54e5136be27f8037de5bbc2f046f37eb036274/CHANGELOG.md <!-- +-------------------+ + SVG Image Sources + +-------------------+ bulb: <svg viewBox="0 0 480.362 480" xmlns="http://www.w3.org/2000/svg"><path d="M216.29 192.18c0 57.437-46.563 104-104 104s-104-46.563-104-104 46.562-104 104-104 104 46.562 104 104zm0 0" fill="#81a1c1"/><path d="M472.29 248.18c0 88.367-71.634 160-160 160-88.364 0-160-71.633-160-160 0-88.364 71.636-160 160-160 88.366 0 160 71.636 160 160zm0 0" fill="#88c0d0"/><path d="M464.29 416.18c0 8.84-7.165 16-16 16-8.837 0-16-7.16-16-16 0-8.836 7.163-16 16-16 8.835 0 16 7.164 16 16zm-232-360c0 13.257-10.747 24-24 24-13.255 0-24-10.743-24-24 0-13.254 10.745-24 24-24 13.253 0 24 10.746 24 24zm0 0" fill="#8fbcbb"/><path d="M288.29 392.18c0 44.183-35.817 80-80 80-44.185 0-80-35.817-80-80 0-44.18 35.815-80 80-80 44.183 0 80 35.82 80 80zm0 0" fill="#5e81ac"/><path d="M312.29 80.18a166.62 166.62 0 0 0-112 43.074c-35.376-45.32-99.317-56.5-147.966-25.863C3.672 128.023-13.883 190.516 11.7 242.004c25.582 51.484 85.992 75.238 139.79 54.969a162.495 162.495 0 0 0 8.386 21.77c-32.719 21.538-47.246 62.116-35.637 99.527 11.61 37.406 46.559 62.632 85.719 61.867 39.164-.766 73.098-27.336 83.238-65.172 61.907 7.133 122.672-20.598 157.852-72.035 35.176-51.438 38.98-118.125 9.879-173.23-29.102-55.106-86.32-89.567-148.637-89.52zm-296 112c-.067-41.29 26.32-77.977 65.483-91.051 39.165-13.074 82.301.406 107.051 33.453A166.664 166.664 0 0 0 144.29 248.18a169.092 169.092 0 0 0 3.352 33.129 95.734 95.734 0 0 1-89.371-9.645 95.732 95.732 0 0 1-41.98-79.484zm192 272c-39.767 0-72-32.235-72-72 0-39.762 32.233-72 72-72 39.765 0 72 32.238 72 72-.044 39.746-32.255 71.957-72 72zm104-64a151.506 151.506 0 0 1-16.353-1c.184-2.313.352-4.637.352-7a88.003 88.003 0 0 0-39.387-73.348A88.005 88.005 0 0 0 174 311.141a148.554 148.554 0 0 1-9.375-26.856 152.984 152.984 0 0 1-4.336-36.105c0-83.946 68.055-152 152-152 83.95 0 152 68.054 152 152 0 83.949-68.05 152-152 152zm0 0" fill="#4c566a"/><path d="M72.29 360.18a8 8 0 0 0-16 0c0 13.257-10.747 24-24 24a8 8 0 0 0 0 16c13.253 0 24 10.746 24 24a8 8 0 0 0 16 0c0-13.254 10.745-24 24-24a8 8 0 0 0 0-16c-13.255 0-24-10.743-24-24zm-8 40.25a39.876 39.876 0 0 0-8.247-8.25 39.857 39.857 0 0 0 8.246-8.246 39.876 39.876 0 0 0 8.25 8.246 39.894 39.894 0 0 0-8.25 8.25zm328-328.25a8 8 0 0 0 16 0c0-13.254 10.745-24 24-24a8 8 0 0 0 0-16c-13.255 0-24-10.743-24-24a8 8 0 0 0-16 0c0 13.257-10.747 24-24 24a8 8 0 0 0 0 16c13.253 0 24 10.746 24 24zm8-40.246a39.876 39.876 0 0 0 8.25 8.246 39.894 39.894 0 0 0-8.25 8.25 39.876 39.876 0 0 0-8.247-8.25 39.857 39.857 0 0 0 8.246-8.246zm16 216.246c-13.255 0-24-10.743-24-24a8 8 0 0 0-16 0c0 13.257-10.747 24-24 24a8 8 0 0 0 0 16c13.253 0 24 10.746 24 24a8 8 0 0 0 16 0c0-13.254 10.745-24 24-24a8 8 0 0 0 0-16zm-32 16.25a39.876 39.876 0 0 0-8.247-8.25 39.857 39.857 0 0 0 8.246-8.246 39.876 39.876 0 0 0 8.25 8.246 39.894 39.894 0 0 0-8.25 8.25zm-56-80.25a8 8 0 0 0-8-8c-13.255 0-24-10.743-24-24a8 8 0 0 0-16 0c0 13.257-10.747 24-24 24a8 8 0 0 0 0 16c13.253 0 24 10.746 24 24a8 8 0 0 0 16 0c0-13.254 10.745-24 24-24a8 8 0 0 0 8-8zm-40 8.25a39.876 39.876 0 0 0-8.247-8.25 39.857 39.857 0 0 0 8.246-8.246 39.876 39.876 0 0 0 8.25 8.246 39.894 39.894 0 0 0-8.25 8.25zm-192 135.75h16v16h-16zm-80 112h16v16h-16zm456-24c0-13.254-10.747-24-24-24-13.255 0-24 10.746-24 24 0 13.257 10.745 24 24 24 13.253 0 24-10.743 24-24zm-32 0a8 8 0 1 1 16 0 8 8 0 0 1-16 0zm-200-360c0-17.672-14.33-32-32-32-17.673 0-32 14.328-32 32 0 17.675 14.327 32 32 32 17.67 0 32-14.325 32-32zm-48 0c0-8.836 7.163-16 16-16 8.835 0 16 7.164 16 16 0 8.84-7.165 16-16 16-8.837 0-16-7.16-16-16zm96-16h16v16h-16zm32 296h16v16h-16zm48 104h16v16h-16zm-272-232h16v16h-16zm-64 .722l16-1.441c-.04-.383-3.2-38.457 17.878-61.602a59.631 59.631 0 0 1 46.121-17.68v-16a74.876 74.876 0 0 0-57.96 22.915c-25.825 28.289-22.177 71.969-22.04 73.808zm288-96.722v16c4 0 97.241 1.707 112.089 113.058l15.855-2.113C431.488 113.637 321.402 112.18 320.29 112.18zm0 0" fill="#4c566a"/></svg> shine: <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 311.2 311.2"><path d="M115.321 148s93.6-1.2 93.6 100c0-101.6 93.6-100 93.6-100s-93.6 1.2-93.6-100c-.4 101.2-93.6 100-93.6 100z" fill="#81a1c1"/><path d="M219.321 98.8c-6.4-13.2-10.4-29.6-10.4-50.8 0 98-87.6 100-93.2 100 2.8 0 22.8.4 43.2 10.4 21.6-6.4 49.2-22 60.4-59.6z" fill="#88c0d0"/><path d="M9.321 234.8s66.8-.8 66.8 71.6c0-72.4 66.8-71.6 66.8-71.6s-66.8.8-66.8-71.6c0 72.4-66.8 71.6-66.8 71.6z" fill="#81a1c1"/><path d="M85.321 202.8c-5.6-10-9.2-22.8-9.2-39.6 0 70-62.4 71.6-66.4 71.6 2 0 18.8.4 34.8 9.6 14.8-5.2 33.2-16.4 40.8-41.6z" fill="#88c0d0"/><path d="M53.721 62.4s53.2-.8 53.2 57.2c0-58 53.2-57.2 53.2-57.2s-53.2.8-53.2-57.2c0 57.6-53.2 57.2-53.2 57.2z" fill="#81a1c1"/><path d="M115.721 38.8c-5.2-8-8.4-19.2-8.4-33.6 0 56-50 57.2-53.2 57.2 1.6 0 16.4.4 29.6 8.8 11.6-4 25.6-12.8 32-32.4z" fill="#88c0d0"/><path d="M214.121 48c0-2.8-2.4-5.2-5.2-5.2-2.8 0-5.2 2.4-5.2 5.2-.4 91.6-79.2 94.8-88 94.8-1.2 0-2.4.4-3.2 1.2-.8.4-1.2.8-1.6 1.6-.8 1.6-.8 3.6 0 5.2s2.8 2.8 4.4 2.8h.4c9.2 0 87.6 3.2 87.6 94.8 0 2.8 2.4 5.2 5.2 5.2 2.8 0 5.2-2.4 5.2-5.2 0-91.6 78.8-94.8 87.6-94.8 2 0 3.6-1.2 4.8-2.8.8-1.6.8-3.6-.4-5.2-.8-1.6-2.8-2.4-4.4-2.8-8.4 0-87.2-3.2-87.2-94.8zm-5.6 161.2c-11.6-38-40-54.4-62.4-61.2 22.4-7.2 50.8-23.6 62.4-61.2 11.6 38 40 54.4 62.4 61.2-22.4 7.2-50.4 23.6-62.4 61.2zm-96-89.6c0-50 42.8-52 48-52h.4c2.8 0 5.2-2.4 5.2-5.2s-2.4-5.2-5.2-5.2c-4.8 0-48-1.6-48-52 0-2.8-2.4-5.2-5.2-5.2s-5.2 2.4-5.2 5.2c0 50-42.8 52-48 52h-.4c-2.8.4-4.8 2.4-4.8 5.2s2.4 5.2 5.2 5.2c4.8 0 48 1.6 48 52 0 2.8 2.4 5.2 5.2 5.2 2.4 0 4.8-2.4 4.8-5.2zm-34.4-57.2c11.2-4.8 22.4-13.6 28.8-28.4 6.4 15.2 18 23.6 28.8 28.4-11.2 4.8-22.4 13.6-28.8 28.4-6.4-15.6-18-24-28.8-28.4zm66 167.2h-1.2c-6.4 0-61.2-2.4-61.2-66 0-2.8-2.4-5.2-5.2-5.2s-5.2 2.4-5.2 5.2c0 64-54.8 66-61.2 66h-1.2c-2.4.4-4.4 2.8-4.4 5.2 0 2.8 2.4 5.2 5.2 5.2 6.4 0 61.2 2 61.2 66 0 2.8 2.4 5.2 5.2 5.2s5.2-2.4 5.2-5.2c0-64 54.8-66 61.2-66 2.8 0 5.2-2.4 5.2-5.2.4-2.8-1.2-4.8-3.6-5.2zm-68 44c-8.4-22.4-25.2-33.6-39.6-38.8 14.8-5.6 31.2-16.4 39.6-38.8 8.4 22.4 25.2 33.6 39.6 38.8-14.4 5.2-31.2 16.4-39.6 38.8z" fill="#4c566a"/></svg> -->
main
initial repository clean up for go rewrite epic blocks in order to start the from scratch the current repository structure and files should be reset to a clean state to remove all references to the previous implementations documentations and project structure layout starting from a „fresh“ state allows to build the project up with the correct structure and design pattern as if there were leftovers from the previous repository data resulting in mixed files and folders this ticket must be resolved first before all other tickets also bound to the epic see the for more details about the implementation resolve order tasks — delete the whole folder the files are scoped for pycharm community edition and will be replaced with the correct files for intellij ultimate edition with the later on — delete the whole folder all assets will be redesigned and added again later on — delete the whole folder the script is part of the python implementation and represented the entry point of the app — delete the whole folder includes the main python app and api implementations — delete the file it will be recreated in to match the new project layout and latest arctic ice studio style guides — delete the file it will be recreated in to match the new project layout and latest arctic ice studio project design standards guidelines — delete the file it will be recreated later on to match the new project layout and latest arctic ice studio project design standards guidelines — delete the file it will be recreated later on to match the new project layout and latest arctic ice studio project design standards guidelines including the new project assets logo repository hero etc svg image sources bulb shine
1
2,365
8,443,959,017
IssuesEvent
2018-10-18 17:00:25
citrusframework/citrus
https://api.github.com/repos/citrusframework/citrus
opened
update vertx-core because of vulnerabilities
Prio: Medium READY Type: Maintainance
Github reported vulnerabilities in `io.vertx:vertx-core`. Fixed version is `3.5.4` or later.
True
update vertx-core because of vulnerabilities - Github reported vulnerabilities in `io.vertx:vertx-core`. Fixed version is `3.5.4` or later.
main
update vertx core because of vulnerabilities github reported vulnerabilities in io vertx vertx core fixed version is or later
1
176,686
21,435,751,690
IssuesEvent
2022-04-24 01:02:19
BrianMcDonaldWS/deck.gl
https://api.github.com/repos/BrianMcDonaldWS/deck.gl
closed
WS-2019-0332 (Medium) detected in handlebars-4.1.0.tgz - autoclosed
security vulnerability
## WS-2019-0332 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>handlebars-4.1.0.tgz</b></p></summary> <p>Handlebars provides the power necessary to let you build semantic templates effectively with no frustration</p> <p>Library home page: <a href="https://registry.npmjs.org/handlebars/-/handlebars-4.1.0.tgz">https://registry.npmjs.org/handlebars/-/handlebars-4.1.0.tgz</a></p> <p>Path to dependency file: deck.gl/package.json</p> <p>Path to vulnerable library: deck.gl/node_modules/nyc/node_modules/handlebars/package.json</p> <p> Dependency Hierarchy: - ocular-dev-tools-0.1.8.tgz (Root Library) - nyc-13.3.0.tgz - istanbul-reports-2.1.1.tgz - :x: **handlebars-4.1.0.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/BrianMcDonaldWS/deck.gl/commit/67e433f207a0fc9c0fb2b8f7a2906f254c8c4b87">67e433f207a0fc9c0fb2b8f7a2906f254c8c4b87</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Arbitrary Code Execution vulnerability found in handlebars before 4.5.3. Lookup helper fails to validate templates. Attack may submit templates that execute arbitrary JavaScript in the system.It is due to an incomplete fix for a WS-2019-0331. <p>Publish Date: 2019-11-17 <p>URL: <a href=https://github.com/wycats/handlebars.js/commit/198887808780bbef9dba67a8af68ece091d5baa7>WS-2019-0332</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 2 Score Details (<b>5.0</b>)</summary> <p> Base Score Metrics not available</p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.npmjs.com/advisories/1324">https://www.npmjs.com/advisories/1324</a></p> <p>Release Date: 2019-12-05</p> <p>Fix Resolution: handlebars - 4.5.3</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"handlebars","packageVersion":"4.1.0","isTransitiveDependency":true,"dependencyTree":"ocular-dev-tools:0.1.8;nyc:13.3.0;istanbul-reports:2.1.1;handlebars:4.1.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"handlebars - 4.5.3"}],"vulnerabilityIdentifier":"WS-2019-0332","vulnerabilityDetails":"Arbitrary Code Execution vulnerability found in handlebars before 4.5.3. Lookup helper fails to validate templates. Attack may submit templates that execute arbitrary JavaScript in the system.It is due to an incomplete fix for a WS-2019-0331.","vulnerabilityUrl":"https://github.com/wycats/handlebars.js/commit/198887808780bbef9dba67a8af68ece091d5baa7","cvss2Severity":"medium","cvss2Score":"5.0","extraData":{}}</REMEDIATE> -->
True
WS-2019-0332 (Medium) detected in handlebars-4.1.0.tgz - autoclosed - ## WS-2019-0332 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>handlebars-4.1.0.tgz</b></p></summary> <p>Handlebars provides the power necessary to let you build semantic templates effectively with no frustration</p> <p>Library home page: <a href="https://registry.npmjs.org/handlebars/-/handlebars-4.1.0.tgz">https://registry.npmjs.org/handlebars/-/handlebars-4.1.0.tgz</a></p> <p>Path to dependency file: deck.gl/package.json</p> <p>Path to vulnerable library: deck.gl/node_modules/nyc/node_modules/handlebars/package.json</p> <p> Dependency Hierarchy: - ocular-dev-tools-0.1.8.tgz (Root Library) - nyc-13.3.0.tgz - istanbul-reports-2.1.1.tgz - :x: **handlebars-4.1.0.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/BrianMcDonaldWS/deck.gl/commit/67e433f207a0fc9c0fb2b8f7a2906f254c8c4b87">67e433f207a0fc9c0fb2b8f7a2906f254c8c4b87</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Arbitrary Code Execution vulnerability found in handlebars before 4.5.3. Lookup helper fails to validate templates. Attack may submit templates that execute arbitrary JavaScript in the system.It is due to an incomplete fix for a WS-2019-0331. <p>Publish Date: 2019-11-17 <p>URL: <a href=https://github.com/wycats/handlebars.js/commit/198887808780bbef9dba67a8af68ece091d5baa7>WS-2019-0332</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 2 Score Details (<b>5.0</b>)</summary> <p> Base Score Metrics not available</p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.npmjs.com/advisories/1324">https://www.npmjs.com/advisories/1324</a></p> <p>Release Date: 2019-12-05</p> <p>Fix Resolution: handlebars - 4.5.3</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"handlebars","packageVersion":"4.1.0","isTransitiveDependency":true,"dependencyTree":"ocular-dev-tools:0.1.8;nyc:13.3.0;istanbul-reports:2.1.1;handlebars:4.1.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"handlebars - 4.5.3"}],"vulnerabilityIdentifier":"WS-2019-0332","vulnerabilityDetails":"Arbitrary Code Execution vulnerability found in handlebars before 4.5.3. Lookup helper fails to validate templates. Attack may submit templates that execute arbitrary JavaScript in the system.It is due to an incomplete fix for a WS-2019-0331.","vulnerabilityUrl":"https://github.com/wycats/handlebars.js/commit/198887808780bbef9dba67a8af68ece091d5baa7","cvss2Severity":"medium","cvss2Score":"5.0","extraData":{}}</REMEDIATE> -->
non_main
ws medium detected in handlebars tgz autoclosed ws medium severity vulnerability vulnerable library handlebars tgz handlebars provides the power necessary to let you build semantic templates effectively with no frustration library home page a href path to dependency file deck gl package json path to vulnerable library deck gl node modules nyc node modules handlebars package json dependency hierarchy ocular dev tools tgz root library nyc tgz istanbul reports tgz x handlebars tgz vulnerable library found in head commit a href vulnerability details arbitrary code execution vulnerability found in handlebars before lookup helper fails to validate templates attack may submit templates that execute arbitrary javascript in the system it is due to an incomplete fix for a ws publish date url a href cvss score details base score metrics not available suggested fix type upgrade version origin a href release date fix resolution handlebars isopenpronvulnerability false ispackagebased true isdefaultbranch true packages vulnerabilityidentifier ws vulnerabilitydetails arbitrary code execution vulnerability found in handlebars before lookup helper fails to validate templates attack may submit templates that execute arbitrary javascript in the system it is due to an incomplete fix for a ws vulnerabilityurl
0
4,515
23,471,911,978
IssuesEvent
2022-08-16 23:10:12
amranidev/laracombee
https://api.github.com/repos/amranidev/laracombee
closed
Will update this package soon.
Maintainer Announcement
I know it's been a while since I update this library, I thought the API and Laravel stack won't change that much, but I was wrong 😁 I will start maintaining this project again, feel free to reachout to me if you want to contribute or if you have any question. Cheers guys 👍
True
Will update this package soon. - I know it's been a while since I update this library, I thought the API and Laravel stack won't change that much, but I was wrong 😁 I will start maintaining this project again, feel free to reachout to me if you want to contribute or if you have any question. Cheers guys 👍
main
will update this package soon i know it s been a while since i update this library i thought the api and laravel stack won t change that much but i was wrong 😁 i will start maintaining this project again feel free to reachout to me if you want to contribute or if you have any question cheers guys 👍
1
40,299
20,750,728,109
IssuesEvent
2022-03-15 07:10:30
apache/incubator-mxnet
https://api.github.com/repos/apache/incubator-mxnet
closed
Mxnet fails to properly parallelize with a ryzen CPU.
Windows Performance Pending Requester Info
## Description With a Rysen 7 2700 CPU, the libmxnet DLL fails to properly parallelize. At any one time, it's using only one core of CPU and no more, while in an exclusive CPU configuration ## Environment info (Required) ----------Python Info---------- ('Version :', '2.7.15') ('Compiler :', 'MSC v.1500 32 bit (Intel)') ('Build :', ('v2.7.15:ca079a3ea3', 'Apr 30 2018 16:22:17')) ('Arch :', ('32bit', 'WindowsPE')) ------------Pip Info----------- ('Version :', '18.1') ('Directory :', 'C:\\Python27\\lib\\site-packages\\pip') ----------MXNet Info----------- No MXNet installed. ----------System Info---------- ('Platform :', 'Windows-10-10.0.17134') ('system :', 'Windows') ('node :', 'DESKTOP-33G95HI') ('release :', '10') ('version :', '10.0.17134') ----------Hardware Info---------- ('machine :', 'AMD64') ('processor :', 'AMD64 Family 23 Model 8 Stepping 2, AuthenticAMD') Name AMD Ryzen 7 2700 Eight-Core Processor ----------Network Test---------- Setting timeout: 10 Timing for MXNet: https://github.com/apache/incubator-mxnet, DNS: 0.0060 sec, LOAD: 1.1130 sec. Timing for PYPI: https://pypi.python.org/pypi/pip, DNS: 0.0350 sec, LOAD: 0.6090 sec. Error open FashionMNIST: https://apache-mxnet.s3-accelerate.dualstack.amazonaws.com/gluon/dataset/fashion-mnist/train-labels-idx1-ubyte.gz, <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:726)>, DNS finished in 0.039999961853 sec. Timing for Conda: https://repo.continuum.io/pkgs/free/, DNS: 0.0360 sec, LOAD: 0.2240 sec. Timing for Gluon Tutorial(en): http://gluon.mxnet.io, DNS: 0.0750 sec, LOAD: 0.6050 sec. Timing for Gluon Tutorial(cn): https://zh.gluon.ai, DNS: 0.0400 sec, LOAD: 0.4570 sec. Package used (Python/R/Scala/Julia): Python ## Error Message: N/A ## Minimum reproducible example I'm using Deap Learning Studio, I detail the problem [here](https://superuser.com/questions/1451208/deep-learning-studio-only-handling-5-images-per-second) ## Steps to reproduce Train on the neural net Observe Cpu cycles with Process Hacker 2 or similar of the python executable using the most memory. ## What have you tried to solve it? 1. Gosh, I wish I knew what was going on inside the DLL. I've tried finicking with the neural net...
True
Mxnet fails to properly parallelize with a ryzen CPU. - ## Description With a Rysen 7 2700 CPU, the libmxnet DLL fails to properly parallelize. At any one time, it's using only one core of CPU and no more, while in an exclusive CPU configuration ## Environment info (Required) ----------Python Info---------- ('Version :', '2.7.15') ('Compiler :', 'MSC v.1500 32 bit (Intel)') ('Build :', ('v2.7.15:ca079a3ea3', 'Apr 30 2018 16:22:17')) ('Arch :', ('32bit', 'WindowsPE')) ------------Pip Info----------- ('Version :', '18.1') ('Directory :', 'C:\\Python27\\lib\\site-packages\\pip') ----------MXNet Info----------- No MXNet installed. ----------System Info---------- ('Platform :', 'Windows-10-10.0.17134') ('system :', 'Windows') ('node :', 'DESKTOP-33G95HI') ('release :', '10') ('version :', '10.0.17134') ----------Hardware Info---------- ('machine :', 'AMD64') ('processor :', 'AMD64 Family 23 Model 8 Stepping 2, AuthenticAMD') Name AMD Ryzen 7 2700 Eight-Core Processor ----------Network Test---------- Setting timeout: 10 Timing for MXNet: https://github.com/apache/incubator-mxnet, DNS: 0.0060 sec, LOAD: 1.1130 sec. Timing for PYPI: https://pypi.python.org/pypi/pip, DNS: 0.0350 sec, LOAD: 0.6090 sec. Error open FashionMNIST: https://apache-mxnet.s3-accelerate.dualstack.amazonaws.com/gluon/dataset/fashion-mnist/train-labels-idx1-ubyte.gz, <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:726)>, DNS finished in 0.039999961853 sec. Timing for Conda: https://repo.continuum.io/pkgs/free/, DNS: 0.0360 sec, LOAD: 0.2240 sec. Timing for Gluon Tutorial(en): http://gluon.mxnet.io, DNS: 0.0750 sec, LOAD: 0.6050 sec. Timing for Gluon Tutorial(cn): https://zh.gluon.ai, DNS: 0.0400 sec, LOAD: 0.4570 sec. Package used (Python/R/Scala/Julia): Python ## Error Message: N/A ## Minimum reproducible example I'm using Deap Learning Studio, I detail the problem [here](https://superuser.com/questions/1451208/deep-learning-studio-only-handling-5-images-per-second) ## Steps to reproduce Train on the neural net Observe Cpu cycles with Process Hacker 2 or similar of the python executable using the most memory. ## What have you tried to solve it? 1. Gosh, I wish I knew what was going on inside the DLL. I've tried finicking with the neural net...
non_main
mxnet fails to properly parallelize with a ryzen cpu description with a rysen cpu the libmxnet dll fails to properly parallelize at any one time it s using only one core of cpu and no more while in an exclusive cpu configuration environment info required python info version compiler msc v bit intel build apr arch windowspe pip info version directory c lib site packages pip mxnet info no mxnet installed system info platform windows system windows node desktop release version hardware info machine processor family model stepping authenticamd name amd ryzen eight core processor network test setting timeout timing for mxnet dns sec load sec timing for pypi dns sec load sec error open fashionmnist dns finished in sec timing for conda dns sec load sec timing for gluon tutorial en dns sec load sec timing for gluon tutorial cn dns sec load sec package used python r scala julia python error message n a minimum reproducible example i m using deap learning studio i detail the problem steps to reproduce train on the neural net observe cpu cycles with process hacker or similar of the python executable using the most memory what have you tried to solve it gosh i wish i knew what was going on inside the dll i ve tried finicking with the neural net
0
441,534
12,719,465,567
IssuesEvent
2020-06-24 09:19:52
teamforus/me
https://api.github.com/repos/teamforus/me
closed
Product vouchers: App displays wrong organisation name
Difficulty: Easy Priority: Should have Scope: Small Topic: iOS native Type: Bug
## Main asssignee: @ ## Context/goal: Me-app displays name of the organization who granted the budget vouchers instead of the provider who offered this product. ## Task - Display name of the provider instead of the organisation who provided the fund See image below, provider name is Upper but it says Gemeente Berkellenad ![IMG_0043](https://user-images.githubusercontent.com/38419514/83851563-db606900-a712-11ea-8e5c-6e3b2aa4afed.jpg)
1.0
Product vouchers: App displays wrong organisation name - ## Main asssignee: @ ## Context/goal: Me-app displays name of the organization who granted the budget vouchers instead of the provider who offered this product. ## Task - Display name of the provider instead of the organisation who provided the fund See image below, provider name is Upper but it says Gemeente Berkellenad ![IMG_0043](https://user-images.githubusercontent.com/38419514/83851563-db606900-a712-11ea-8e5c-6e3b2aa4afed.jpg)
non_main
product vouchers app displays wrong organisation name main asssignee context goal me app displays name of the organization who granted the budget vouchers instead of the provider who offered this product task display name of the provider instead of the organisation who provided the fund see image below provider name is upper but it says gemeente berkellenad
0
363,014
25,404,110,228
IssuesEvent
2022-11-22 14:11:09
cloudflare/cloudflare-docs
https://api.github.com/repos/cloudflare/cloudflare-docs
closed
[Wrangler] Document `wrangler delete`
documentation content:new
### Which Cloudflare product(s) does this pertain to? Workers ### Subject Matter wrangler delete ### Content Location https://developers.cloudflare.com/workers/wrangler/commands/ ### Additional information I'll do it
1.0
[Wrangler] Document `wrangler delete` - ### Which Cloudflare product(s) does this pertain to? Workers ### Subject Matter wrangler delete ### Content Location https://developers.cloudflare.com/workers/wrangler/commands/ ### Additional information I'll do it
non_main
document wrangler delete which cloudflare product s does this pertain to workers subject matter wrangler delete content location additional information i ll do it
0
2,113
7,188,790,236
IssuesEvent
2018-02-02 11:27:19
opencaching/opencaching-pl
https://api.github.com/repos/opencaching/opencaching-pl
opened
How to manage DB updates
Component_DataBase Component_Docs Maintainability Server_Administration Server_DB_Contents Type_Enhancement
opencaching-pl project, though the code is automatically updated, requires user intervention to update the database. Several strategies have been suggested here: https://github.com/opencaching/opencaching-pl/issues/1381#issuecomment-361564652 1. apply changes in the code - done automatically at merge to master branch in repo _(requires error handling and rollback and manual intervention in case of failure)_ 2. apply db changes by admin - done manually before or after merge (depends on request) _(certain changes are tricky to coordinate)_ 3. feature freeze, then apply db changes by admin - done semi-automatically (see below) 4. a combination of the above. Given the heterogeneous nature of various nodes and database server versions and some very fine details between them, the potential for errors, and the existing differences between node database structurers still to be solved, I suggest the third option. --- When a DB change is pending - first create a file with a predefined name and location. For example: `/__update.README`. This file to be used both as flag and it's contents provide instructions for admins what is required to do. Especially what sqlAlter to run and when, before or after `git pull`. - create and merge a pull request with the above - the automatic update script will ignore applying future updates, based on the existance of this file. It will notify by email the admin that manual intervention is necessary. - admin performs the required tasks which may include database update, running `git pull` to sync further updates, changing configuration directives. These action having the potential to break the site if not performed in a single maintenance session. - end maintenance session and remove special file. An alternate combination of the above might include automatically applying database updates that may silently fail (such as adding an index or dropping a column no longer used). --- Implementing this would mean: - [ ] add maintenance mode flag to the website (all operations are halted during maintenance mode) - [ ] add special file flag handling to update script - [ ] add notification sending to update script - [ ] write general instructions for developers and inform them - [ ] write general instructions for admins and inform them - [ ] publish changes - [ ] each admin implements the new update script and takes notice of the maintenance updates procedures Future updates will be applied automatically, unless admin intervention is required. I'll try to assemble a proposal this sunday.
True
How to manage DB updates - opencaching-pl project, though the code is automatically updated, requires user intervention to update the database. Several strategies have been suggested here: https://github.com/opencaching/opencaching-pl/issues/1381#issuecomment-361564652 1. apply changes in the code - done automatically at merge to master branch in repo _(requires error handling and rollback and manual intervention in case of failure)_ 2. apply db changes by admin - done manually before or after merge (depends on request) _(certain changes are tricky to coordinate)_ 3. feature freeze, then apply db changes by admin - done semi-automatically (see below) 4. a combination of the above. Given the heterogeneous nature of various nodes and database server versions and some very fine details between them, the potential for errors, and the existing differences between node database structurers still to be solved, I suggest the third option. --- When a DB change is pending - first create a file with a predefined name and location. For example: `/__update.README`. This file to be used both as flag and it's contents provide instructions for admins what is required to do. Especially what sqlAlter to run and when, before or after `git pull`. - create and merge a pull request with the above - the automatic update script will ignore applying future updates, based on the existance of this file. It will notify by email the admin that manual intervention is necessary. - admin performs the required tasks which may include database update, running `git pull` to sync further updates, changing configuration directives. These action having the potential to break the site if not performed in a single maintenance session. - end maintenance session and remove special file. An alternate combination of the above might include automatically applying database updates that may silently fail (such as adding an index or dropping a column no longer used). --- Implementing this would mean: - [ ] add maintenance mode flag to the website (all operations are halted during maintenance mode) - [ ] add special file flag handling to update script - [ ] add notification sending to update script - [ ] write general instructions for developers and inform them - [ ] write general instructions for admins and inform them - [ ] publish changes - [ ] each admin implements the new update script and takes notice of the maintenance updates procedures Future updates will be applied automatically, unless admin intervention is required. I'll try to assemble a proposal this sunday.
main
how to manage db updates opencaching pl project though the code is automatically updated requires user intervention to update the database several strategies have been suggested here apply changes in the code done automatically at merge to master branch in repo requires error handling and rollback and manual intervention in case of failure apply db changes by admin done manually before or after merge depends on request certain changes are tricky to coordinate feature freeze then apply db changes by admin done semi automatically see below a combination of the above given the heterogeneous nature of various nodes and database server versions and some very fine details between them the potential for errors and the existing differences between node database structurers still to be solved i suggest the third option when a db change is pending first create a file with a predefined name and location for example update readme this file to be used both as flag and it s contents provide instructions for admins what is required to do especially what sqlalter to run and when before or after git pull create and merge a pull request with the above the automatic update script will ignore applying future updates based on the existance of this file it will notify by email the admin that manual intervention is necessary admin performs the required tasks which may include database update running git pull to sync further updates changing configuration directives these action having the potential to break the site if not performed in a single maintenance session end maintenance session and remove special file an alternate combination of the above might include automatically applying database updates that may silently fail such as adding an index or dropping a column no longer used implementing this would mean add maintenance mode flag to the website all operations are halted during maintenance mode add special file flag handling to update script add notification sending to update script write general instructions for developers and inform them write general instructions for admins and inform them publish changes each admin implements the new update script and takes notice of the maintenance updates procedures future updates will be applied automatically unless admin intervention is required i ll try to assemble a proposal this sunday
1
2,298
8,221,956,551
IssuesEvent
2018-09-06 05:11:51
TravisSpark/spark-website
https://api.github.com/repos/TravisSpark/spark-website
closed
AFITC Removal, 29 August
good first issue maintainence
### Checklist - [X] Searched for, and did not find, duplicate [issue](https://github.com/TravisSpark/spark-website/issues) - [X] Indicated whether the issue is a bug or a feature - [X] Focused on one specific bug/feature - [X] Gave a concise and relevant name - [X] Created clear and concise description - [X] Outlined which components are affected - [X] Assigned issue to project, appropriate contributors, and relevant labels <!-- Edit as Appropriate --> ### Issue Type: Feature <!-- Pick one --> ### Description The Air Force Information Technology & Cyberpower (AFITC) Conference is over on the 29th of August. Event needs to be removed from list of events ### Affected Components ```data/events.yml```
True
AFITC Removal, 29 August - ### Checklist - [X] Searched for, and did not find, duplicate [issue](https://github.com/TravisSpark/spark-website/issues) - [X] Indicated whether the issue is a bug or a feature - [X] Focused on one specific bug/feature - [X] Gave a concise and relevant name - [X] Created clear and concise description - [X] Outlined which components are affected - [X] Assigned issue to project, appropriate contributors, and relevant labels <!-- Edit as Appropriate --> ### Issue Type: Feature <!-- Pick one --> ### Description The Air Force Information Technology & Cyberpower (AFITC) Conference is over on the 29th of August. Event needs to be removed from list of events ### Affected Components ```data/events.yml```
main
afitc removal august checklist searched for and did not find duplicate indicated whether the issue is a bug or a feature focused on one specific bug feature gave a concise and relevant name created clear and concise description outlined which components are affected assigned issue to project appropriate contributors and relevant labels issue type feature description the air force information technology cyberpower afitc conference is over on the of august event needs to be removed from list of events affected components data events yml
1
397,699
27,174,214,467
IssuesEvent
2023-02-17 22:47:38
sentenz/guide
https://api.github.com/repos/sentenz/guide
closed
Refactor article about `software development environment` with ChatGPT
documentation refactor solved
# Software Development Environment The Software Development Environment (SDE) refers to the overall set of tools, resources, and infrastructure that are used to develop, test, and deploy software applications. This includes hardware, software, development tools, source code management systems, testing frameworks, and production servers. The SDE is designed to support the entire software development process, from requirement gathering to deployment, and is a crucial component of software development projects. An SDE can consist of various components, such as integrated development environments (IDEs), version control systems, testing tools, and deployment platforms. SDE aims to provide a stable, secure, and efficient environment for software development and deployment, while also enabling developers to work efficiently and effectively. - [1. Category](#1-category) - [1.1. Development Environment](#11-development-environment) - [1.2. Test Environment](#12-test-environment) - [1.3. Staging Environment](#13-staging-environment) - [1.4. Integration Environment](#14-integration-environment) - [1.5. Continuous Environment](#15-continuous-environment) - [1.6. Production Environment](#16-production-environment) - [2. Best Practice](#2-best-practice) - [3. References](#3-references) ## 1. Category ### 1.1. Development Environment This environment is used for developing, testing and debugging software applications. It provides the necessary resources for developers to write code and create new features. ### 1.2. Test Environment The test environment is used to validate the software application and to identify any issues that may arise during the testing process. This environment simulates the actual production environment to provide accurate testing results. ### 1.3. Staging Environment The staging environment is a replica of the production environment, used to test and validate software applications before they are deployed to production. This environment is used to identify any issues or bugs before they impact the live production environment. ### 1.4. Integration Environment The integration environment is used to integrate different components of software applications, such as APIs, databases, and servers. This environment is used to test and validate the integration of different systems before deployment to production. ### 1.5. Continuous Environment The continuous environment is an automated environment that supports the [Continuous Pipelines](../about/continuous-pipelines.md) , as integration and delivery of software applications. This environment is used to automate the build, test, analysis, security, and deployment process, reducing the time and effort required to bring new features and updates to production. It allows teams to quickly identify and resolve issues, delivering high-quality software applications to end-users. ### 1.6. Production Environment The production environment is the live environment where software applications are deployed and made available to the end-users. This environment is monitored closely to ensure the software is functioning correctly and meeting the performance and availability requirements of the business. ## 2. Best Practice Best practices, to create a robust and efficient SDE that ensures high-quality software development and deployment. - DevOps > In DevOps methodology, the software development environment (SDE) typically involves the following stages: > > - Development > > This is the stage where software developers write and test code, debug issues, and create new features. Developers use integrated development environments (IDEs) and version control systems to manage their code. > > - Continuous Integration > > This stage involves the automation of build and test processes. Code changes are integrated into a single repository, and automatic tests are run to validate the changes. > > - Continuous Deployment > > In this stage, code changes are automatically deployed to the testing environment, where they are tested and validated. > > - Staging > > This stage involves the testing of software applications in a controlled environment that mimics the production environment. This stage helps to identify any issues or bugs before they impact the live production environment. > > - Production > > This is the final stage where software applications are deployed and made available to end-users. This stage is monitored closely to ensure the software is functioning correctly and meeting performance and availability requirements. > > - Continuous Monitoring > > This stage involves the continuous monitoring of the production environment to identify and resolve any issues. This stage also involves collecting and analyzing data to improve the software development process. - Standardization > The standardization of processes, tools, and coding conventions across the development team is important to ensure consistency and efficiency. This also allows developers to easily understand each other's code and collaborate more effectively. - Version Control > Version control is essential to track changes made to the codebase and allows developers to collaborate without the risk of losing work. This helps to ensure that the codebase is consistent and accurate. - Monitoring and Logging > [Monitoring and logging](../about/monitoring-and-logging.md) are important for detecting and identifying issues in the software environment. This helps to identify performance issues, system failures, and other issues that may affect the end-users. - Security > Security is critical to protect the software and data from unauthorized access or malicious attacks. This includes implementing secure coding practices, regularly reviewing and updating security protocols, and conducting penetration testing. ## 3. References - Codebots [SDE](https://codebots.com/app-development/what-are-environments-in-software-development-a-guide-to-the-development-beta-and-production-environments) article. - Oroinc [environments types](https://doc.oroinc.com/cloud/environments/) article.
1.0
Refactor article about `software development environment` with ChatGPT - # Software Development Environment The Software Development Environment (SDE) refers to the overall set of tools, resources, and infrastructure that are used to develop, test, and deploy software applications. This includes hardware, software, development tools, source code management systems, testing frameworks, and production servers. The SDE is designed to support the entire software development process, from requirement gathering to deployment, and is a crucial component of software development projects. An SDE can consist of various components, such as integrated development environments (IDEs), version control systems, testing tools, and deployment platforms. SDE aims to provide a stable, secure, and efficient environment for software development and deployment, while also enabling developers to work efficiently and effectively. - [1. Category](#1-category) - [1.1. Development Environment](#11-development-environment) - [1.2. Test Environment](#12-test-environment) - [1.3. Staging Environment](#13-staging-environment) - [1.4. Integration Environment](#14-integration-environment) - [1.5. Continuous Environment](#15-continuous-environment) - [1.6. Production Environment](#16-production-environment) - [2. Best Practice](#2-best-practice) - [3. References](#3-references) ## 1. Category ### 1.1. Development Environment This environment is used for developing, testing and debugging software applications. It provides the necessary resources for developers to write code and create new features. ### 1.2. Test Environment The test environment is used to validate the software application and to identify any issues that may arise during the testing process. This environment simulates the actual production environment to provide accurate testing results. ### 1.3. Staging Environment The staging environment is a replica of the production environment, used to test and validate software applications before they are deployed to production. This environment is used to identify any issues or bugs before they impact the live production environment. ### 1.4. Integration Environment The integration environment is used to integrate different components of software applications, such as APIs, databases, and servers. This environment is used to test and validate the integration of different systems before deployment to production. ### 1.5. Continuous Environment The continuous environment is an automated environment that supports the [Continuous Pipelines](../about/continuous-pipelines.md) , as integration and delivery of software applications. This environment is used to automate the build, test, analysis, security, and deployment process, reducing the time and effort required to bring new features and updates to production. It allows teams to quickly identify and resolve issues, delivering high-quality software applications to end-users. ### 1.6. Production Environment The production environment is the live environment where software applications are deployed and made available to the end-users. This environment is monitored closely to ensure the software is functioning correctly and meeting the performance and availability requirements of the business. ## 2. Best Practice Best practices, to create a robust and efficient SDE that ensures high-quality software development and deployment. - DevOps > In DevOps methodology, the software development environment (SDE) typically involves the following stages: > > - Development > > This is the stage where software developers write and test code, debug issues, and create new features. Developers use integrated development environments (IDEs) and version control systems to manage their code. > > - Continuous Integration > > This stage involves the automation of build and test processes. Code changes are integrated into a single repository, and automatic tests are run to validate the changes. > > - Continuous Deployment > > In this stage, code changes are automatically deployed to the testing environment, where they are tested and validated. > > - Staging > > This stage involves the testing of software applications in a controlled environment that mimics the production environment. This stage helps to identify any issues or bugs before they impact the live production environment. > > - Production > > This is the final stage where software applications are deployed and made available to end-users. This stage is monitored closely to ensure the software is functioning correctly and meeting performance and availability requirements. > > - Continuous Monitoring > > This stage involves the continuous monitoring of the production environment to identify and resolve any issues. This stage also involves collecting and analyzing data to improve the software development process. - Standardization > The standardization of processes, tools, and coding conventions across the development team is important to ensure consistency and efficiency. This also allows developers to easily understand each other's code and collaborate more effectively. - Version Control > Version control is essential to track changes made to the codebase and allows developers to collaborate without the risk of losing work. This helps to ensure that the codebase is consistent and accurate. - Monitoring and Logging > [Monitoring and logging](../about/monitoring-and-logging.md) are important for detecting and identifying issues in the software environment. This helps to identify performance issues, system failures, and other issues that may affect the end-users. - Security > Security is critical to protect the software and data from unauthorized access or malicious attacks. This includes implementing secure coding practices, regularly reviewing and updating security protocols, and conducting penetration testing. ## 3. References - Codebots [SDE](https://codebots.com/app-development/what-are-environments-in-software-development-a-guide-to-the-development-beta-and-production-environments) article. - Oroinc [environments types](https://doc.oroinc.com/cloud/environments/) article.
non_main
refactor article about software development environment with chatgpt software development environment the software development environment sde refers to the overall set of tools resources and infrastructure that are used to develop test and deploy software applications this includes hardware software development tools source code management systems testing frameworks and production servers the sde is designed to support the entire software development process from requirement gathering to deployment and is a crucial component of software development projects an sde can consist of various components such as integrated development environments ides version control systems testing tools and deployment platforms sde aims to provide a stable secure and efficient environment for software development and deployment while also enabling developers to work efficiently and effectively category development environment test environment staging environment integration environment continuous environment production environment best practice references category development environment this environment is used for developing testing and debugging software applications it provides the necessary resources for developers to write code and create new features test environment the test environment is used to validate the software application and to identify any issues that may arise during the testing process this environment simulates the actual production environment to provide accurate testing results staging environment the staging environment is a replica of the production environment used to test and validate software applications before they are deployed to production this environment is used to identify any issues or bugs before they impact the live production environment integration environment the integration environment is used to integrate different components of software applications such as apis databases and servers this environment is used to test and validate the integration of different systems before deployment to production continuous environment the continuous environment is an automated environment that supports the about continuous pipelines md as integration and delivery of software applications this environment is used to automate the build test analysis security and deployment process reducing the time and effort required to bring new features and updates to production it allows teams to quickly identify and resolve issues delivering high quality software applications to end users production environment the production environment is the live environment where software applications are deployed and made available to the end users this environment is monitored closely to ensure the software is functioning correctly and meeting the performance and availability requirements of the business best practice best practices to create a robust and efficient sde that ensures high quality software development and deployment devops in devops methodology the software development environment sde typically involves the following stages development this is the stage where software developers write and test code debug issues and create new features developers use integrated development environments ides and version control systems to manage their code continuous integration this stage involves the automation of build and test processes code changes are integrated into a single repository and automatic tests are run to validate the changes continuous deployment in this stage code changes are automatically deployed to the testing environment where they are tested and validated staging this stage involves the testing of software applications in a controlled environment that mimics the production environment this stage helps to identify any issues or bugs before they impact the live production environment production this is the final stage where software applications are deployed and made available to end users this stage is monitored closely to ensure the software is functioning correctly and meeting performance and availability requirements continuous monitoring this stage involves the continuous monitoring of the production environment to identify and resolve any issues this stage also involves collecting and analyzing data to improve the software development process standardization the standardization of processes tools and coding conventions across the development team is important to ensure consistency and efficiency this also allows developers to easily understand each other s code and collaborate more effectively version control version control is essential to track changes made to the codebase and allows developers to collaborate without the risk of losing work this helps to ensure that the codebase is consistent and accurate monitoring and logging about monitoring and logging md are important for detecting and identifying issues in the software environment this helps to identify performance issues system failures and other issues that may affect the end users security security is critical to protect the software and data from unauthorized access or malicious attacks this includes implementing secure coding practices regularly reviewing and updating security protocols and conducting penetration testing references codebots article oroinc article
0
777,068
27,267,351,983
IssuesEvent
2023-02-22 19:09:35
bcgov/entity
https://api.github.com/repos/bcgov/entity
closed
PPR Serial Number Search - More Details on Search Algorithm
enhancement Priority2 Assets
From Client Usability Testing: Would be beneficial to include an explanation of the search algorithm for Serial Number Search. Is it looking at the last 6 digits of the Serial Number as is done on the legacy application?
1.0
PPR Serial Number Search - More Details on Search Algorithm - From Client Usability Testing: Would be beneficial to include an explanation of the search algorithm for Serial Number Search. Is it looking at the last 6 digits of the Serial Number as is done on the legacy application?
non_main
ppr serial number search more details on search algorithm from client usability testing would be beneficial to include an explanation of the search algorithm for serial number search is it looking at the last digits of the serial number as is done on the legacy application
0
253,928
27,337,653,248
IssuesEvent
2023-02-26 12:18:30
DEV-REPO-URIEL/snyk_labs
https://api.github.com/repos/DEV-REPO-URIEL/snyk_labs
opened
st-0.2.4.tgz: 5 vulnerabilities (highest severity is: 7.5)
security vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>st-0.2.4.tgz</b></p></summary> <p>A module for serving static files. Does etags, caching, etc.</p> <p>Library home page: <a href="https://registry.npmjs.org/st/-/st-0.2.4.tgz">https://registry.npmjs.org/st/-/st-0.2.4.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/st/package.json</p> <p> <p>Found in HEAD commit: <a href="https://github.com/DEV-REPO-URIEL/snyk_labs/commit/b94749f79646419242a649dba6fa9446ebf84293">b94749f79646419242a649dba6fa9446ebf84293</a></p></details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (st version) | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | ------------- | --- | | [CVE-2016-10539](https://www.mend.io/vulnerability-database/CVE-2016-10539) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | negotiator-0.2.8.tgz | Transitive | 1.1.0 | &#9989; | | [CVE-2017-16138](https://www.mend.io/vulnerability-database/CVE-2017-16138) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | mime-1.2.11.tgz | Transitive | 1.2.1 | &#9989; | | [WS-2019-0153](https://github.com/JacksonGL/NPM-Vuln-PoC/tree/master/directory-traversal/yjmyjmyjm) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | st-0.2.4.tgz | Direct | 1.2.2 | &#9989; | | [CVE-2014-3744](https://www.mend.io/vulnerability-database/CVE-2014-3744) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | st-0.2.4.tgz | Direct | 0.2.5 | &#9989; | | [CVE-2017-16224](https://www.mend.io/vulnerability-database/CVE-2017-16224) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | st-0.2.4.tgz | Direct | 1.2.2 | &#9989; | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2016-10539</summary> ### Vulnerable Library - <b>negotiator-0.2.8.tgz</b></p> <p>HTTP content negotiation</p> <p>Library home page: <a href="https://registry.npmjs.org/negotiator/-/negotiator-0.2.8.tgz">https://registry.npmjs.org/negotiator/-/negotiator-0.2.8.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/st/node_modules/negotiator/package.json</p> <p> Dependency Hierarchy: - st-0.2.4.tgz (Root Library) - :x: **negotiator-0.2.8.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/DEV-REPO-URIEL/snyk_labs/commit/b94749f79646419242a649dba6fa9446ebf84293">b94749f79646419242a649dba6fa9446ebf84293</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> negotiator is an HTTP content negotiator for Node.js and is used by many modules and frameworks including Express and Koa. The header for "Accept-Language", when parsed by negotiator 0.6.0 and earlier is vulnerable to Regular Expression Denial of Service via a specially crafted string. <p>Publish Date: 2018-05-31 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2016-10539>CVE-2016-10539</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.npmjs.com/advisories/106">https://www.npmjs.com/advisories/106</a></p> <p>Release Date: 2018-05-31</p> <p>Fix Resolution (negotiator): 0.6.1</p> <p>Direct dependency fix Resolution (st): 1.1.0</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2017-16138</summary> ### Vulnerable Library - <b>mime-1.2.11.tgz</b></p> <p>A comprehensive library for mime-type mapping</p> <p>Library home page: <a href="https://registry.npmjs.org/mime/-/mime-1.2.11.tgz">https://registry.npmjs.org/mime/-/mime-1.2.11.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/st/node_modules/mime/package.json</p> <p> Dependency Hierarchy: - st-0.2.4.tgz (Root Library) - :x: **mime-1.2.11.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/DEV-REPO-URIEL/snyk_labs/commit/b94749f79646419242a649dba6fa9446ebf84293">b94749f79646419242a649dba6fa9446ebf84293</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> The mime module < 1.4.1, 2.0.1, 2.0.2 is vulnerable to regular expression denial of service when a mime lookup is performed on untrusted user input. <p>Publish Date: 2018-06-07 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2017-16138>CVE-2017-16138</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-16138">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-16138</a></p> <p>Release Date: 2018-06-07</p> <p>Fix Resolution (mime): 1.4.1</p> <p>Direct dependency fix Resolution (st): 1.2.1</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> WS-2019-0153</summary> ### Vulnerable Library - <b>st-0.2.4.tgz</b></p> <p>A module for serving static files. Does etags, caching, etc.</p> <p>Library home page: <a href="https://registry.npmjs.org/st/-/st-0.2.4.tgz">https://registry.npmjs.org/st/-/st-0.2.4.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/st/package.json</p> <p> Dependency Hierarchy: - :x: **st-0.2.4.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/DEV-REPO-URIEL/snyk_labs/commit/b94749f79646419242a649dba6fa9446ebf84293">b94749f79646419242a649dba6fa9446ebf84293</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> yjmyjmyjm all versions has Directory Traversal vulnerability when resolving relative file paths <p>Publish Date: 2017-10-13 <p>URL: <a href=https://github.com/JacksonGL/NPM-Vuln-PoC/tree/master/directory-traversal/yjmyjmyjm>WS-2019-0153</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/WS-2019-0153">https://nvd.nist.gov/vuln/detail/WS-2019-0153</a></p> <p>Release Date: 2017-10-13</p> <p>Fix Resolution: 1.2.2</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2014-3744</summary> ### Vulnerable Library - <b>st-0.2.4.tgz</b></p> <p>A module for serving static files. Does etags, caching, etc.</p> <p>Library home page: <a href="https://registry.npmjs.org/st/-/st-0.2.4.tgz">https://registry.npmjs.org/st/-/st-0.2.4.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/st/package.json</p> <p> Dependency Hierarchy: - :x: **st-0.2.4.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/DEV-REPO-URIEL/snyk_labs/commit/b94749f79646419242a649dba6fa9446ebf84293">b94749f79646419242a649dba6fa9446ebf84293</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> Directory traversal vulnerability in the st module before 0.2.5 for Node.js allows remote attackers to read arbitrary files via a %2e%2e (encoded dot dot) in an unspecified path. <p>Publish Date: 2017-10-23 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2014-3744>CVE-2014-3744</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2014-3744">https://nvd.nist.gov/vuln/detail/CVE-2014-3744</a></p> <p>Release Date: 2017-10-23</p> <p>Fix Resolution: 0.2.5</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2017-16224</summary> ### Vulnerable Library - <b>st-0.2.4.tgz</b></p> <p>A module for serving static files. Does etags, caching, etc.</p> <p>Library home page: <a href="https://registry.npmjs.org/st/-/st-0.2.4.tgz">https://registry.npmjs.org/st/-/st-0.2.4.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/st/package.json</p> <p> Dependency Hierarchy: - :x: **st-0.2.4.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/DEV-REPO-URIEL/snyk_labs/commit/b94749f79646419242a649dba6fa9446ebf84293">b94749f79646419242a649dba6fa9446ebf84293</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> st is a module for serving static files. An attacker is able to craft a request that results in an HTTP 301 (redirect) to an entirely different domain. A request for: http://some.server.com//nodesecurity.org/%2e%2e would result in a 301 to //nodesecurity.org/%2e%2e which most browsers treat as a proper redirect as // is translated into the current schema being used. Mitigating factor: In order for this to work, st must be serving from the root of a server (/) rather than the typical sub directory (/static/) and the redirect URL will end with some form of URL encoded .. ("%2e%2e", "%2e.", ".%2e"). <p>Publish Date: 2018-06-07 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2017-16224>CVE-2017-16224</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>6.1</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-16224">http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-16224</a></p> <p>Release Date: 2018-06-07</p> <p>Fix Resolution: 1.2.2</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details> *** <p>:rescue_worker_helmet: Automatic Remediation is available for this issue.</p>
True
st-0.2.4.tgz: 5 vulnerabilities (highest severity is: 7.5) - <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>st-0.2.4.tgz</b></p></summary> <p>A module for serving static files. Does etags, caching, etc.</p> <p>Library home page: <a href="https://registry.npmjs.org/st/-/st-0.2.4.tgz">https://registry.npmjs.org/st/-/st-0.2.4.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/st/package.json</p> <p> <p>Found in HEAD commit: <a href="https://github.com/DEV-REPO-URIEL/snyk_labs/commit/b94749f79646419242a649dba6fa9446ebf84293">b94749f79646419242a649dba6fa9446ebf84293</a></p></details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (st version) | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | ------------- | --- | | [CVE-2016-10539](https://www.mend.io/vulnerability-database/CVE-2016-10539) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | negotiator-0.2.8.tgz | Transitive | 1.1.0 | &#9989; | | [CVE-2017-16138](https://www.mend.io/vulnerability-database/CVE-2017-16138) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | mime-1.2.11.tgz | Transitive | 1.2.1 | &#9989; | | [WS-2019-0153](https://github.com/JacksonGL/NPM-Vuln-PoC/tree/master/directory-traversal/yjmyjmyjm) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | st-0.2.4.tgz | Direct | 1.2.2 | &#9989; | | [CVE-2014-3744](https://www.mend.io/vulnerability-database/CVE-2014-3744) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | st-0.2.4.tgz | Direct | 0.2.5 | &#9989; | | [CVE-2017-16224](https://www.mend.io/vulnerability-database/CVE-2017-16224) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | st-0.2.4.tgz | Direct | 1.2.2 | &#9989; | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2016-10539</summary> ### Vulnerable Library - <b>negotiator-0.2.8.tgz</b></p> <p>HTTP content negotiation</p> <p>Library home page: <a href="https://registry.npmjs.org/negotiator/-/negotiator-0.2.8.tgz">https://registry.npmjs.org/negotiator/-/negotiator-0.2.8.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/st/node_modules/negotiator/package.json</p> <p> Dependency Hierarchy: - st-0.2.4.tgz (Root Library) - :x: **negotiator-0.2.8.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/DEV-REPO-URIEL/snyk_labs/commit/b94749f79646419242a649dba6fa9446ebf84293">b94749f79646419242a649dba6fa9446ebf84293</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> negotiator is an HTTP content negotiator for Node.js and is used by many modules and frameworks including Express and Koa. The header for "Accept-Language", when parsed by negotiator 0.6.0 and earlier is vulnerable to Regular Expression Denial of Service via a specially crafted string. <p>Publish Date: 2018-05-31 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2016-10539>CVE-2016-10539</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.npmjs.com/advisories/106">https://www.npmjs.com/advisories/106</a></p> <p>Release Date: 2018-05-31</p> <p>Fix Resolution (negotiator): 0.6.1</p> <p>Direct dependency fix Resolution (st): 1.1.0</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2017-16138</summary> ### Vulnerable Library - <b>mime-1.2.11.tgz</b></p> <p>A comprehensive library for mime-type mapping</p> <p>Library home page: <a href="https://registry.npmjs.org/mime/-/mime-1.2.11.tgz">https://registry.npmjs.org/mime/-/mime-1.2.11.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/st/node_modules/mime/package.json</p> <p> Dependency Hierarchy: - st-0.2.4.tgz (Root Library) - :x: **mime-1.2.11.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/DEV-REPO-URIEL/snyk_labs/commit/b94749f79646419242a649dba6fa9446ebf84293">b94749f79646419242a649dba6fa9446ebf84293</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> The mime module < 1.4.1, 2.0.1, 2.0.2 is vulnerable to regular expression denial of service when a mime lookup is performed on untrusted user input. <p>Publish Date: 2018-06-07 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2017-16138>CVE-2017-16138</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-16138">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-16138</a></p> <p>Release Date: 2018-06-07</p> <p>Fix Resolution (mime): 1.4.1</p> <p>Direct dependency fix Resolution (st): 1.2.1</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> WS-2019-0153</summary> ### Vulnerable Library - <b>st-0.2.4.tgz</b></p> <p>A module for serving static files. Does etags, caching, etc.</p> <p>Library home page: <a href="https://registry.npmjs.org/st/-/st-0.2.4.tgz">https://registry.npmjs.org/st/-/st-0.2.4.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/st/package.json</p> <p> Dependency Hierarchy: - :x: **st-0.2.4.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/DEV-REPO-URIEL/snyk_labs/commit/b94749f79646419242a649dba6fa9446ebf84293">b94749f79646419242a649dba6fa9446ebf84293</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> yjmyjmyjm all versions has Directory Traversal vulnerability when resolving relative file paths <p>Publish Date: 2017-10-13 <p>URL: <a href=https://github.com/JacksonGL/NPM-Vuln-PoC/tree/master/directory-traversal/yjmyjmyjm>WS-2019-0153</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/WS-2019-0153">https://nvd.nist.gov/vuln/detail/WS-2019-0153</a></p> <p>Release Date: 2017-10-13</p> <p>Fix Resolution: 1.2.2</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2014-3744</summary> ### Vulnerable Library - <b>st-0.2.4.tgz</b></p> <p>A module for serving static files. Does etags, caching, etc.</p> <p>Library home page: <a href="https://registry.npmjs.org/st/-/st-0.2.4.tgz">https://registry.npmjs.org/st/-/st-0.2.4.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/st/package.json</p> <p> Dependency Hierarchy: - :x: **st-0.2.4.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/DEV-REPO-URIEL/snyk_labs/commit/b94749f79646419242a649dba6fa9446ebf84293">b94749f79646419242a649dba6fa9446ebf84293</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> Directory traversal vulnerability in the st module before 0.2.5 for Node.js allows remote attackers to read arbitrary files via a %2e%2e (encoded dot dot) in an unspecified path. <p>Publish Date: 2017-10-23 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2014-3744>CVE-2014-3744</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2014-3744">https://nvd.nist.gov/vuln/detail/CVE-2014-3744</a></p> <p>Release Date: 2017-10-23</p> <p>Fix Resolution: 0.2.5</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2017-16224</summary> ### Vulnerable Library - <b>st-0.2.4.tgz</b></p> <p>A module for serving static files. Does etags, caching, etc.</p> <p>Library home page: <a href="https://registry.npmjs.org/st/-/st-0.2.4.tgz">https://registry.npmjs.org/st/-/st-0.2.4.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/st/package.json</p> <p> Dependency Hierarchy: - :x: **st-0.2.4.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/DEV-REPO-URIEL/snyk_labs/commit/b94749f79646419242a649dba6fa9446ebf84293">b94749f79646419242a649dba6fa9446ebf84293</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> st is a module for serving static files. An attacker is able to craft a request that results in an HTTP 301 (redirect) to an entirely different domain. A request for: http://some.server.com//nodesecurity.org/%2e%2e would result in a 301 to //nodesecurity.org/%2e%2e which most browsers treat as a proper redirect as // is translated into the current schema being used. Mitigating factor: In order for this to work, st must be serving from the root of a server (/) rather than the typical sub directory (/static/) and the redirect URL will end with some form of URL encoded .. ("%2e%2e", "%2e.", ".%2e"). <p>Publish Date: 2018-06-07 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2017-16224>CVE-2017-16224</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>6.1</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-16224">http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-16224</a></p> <p>Release Date: 2018-06-07</p> <p>Fix Resolution: 1.2.2</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details> *** <p>:rescue_worker_helmet: Automatic Remediation is available for this issue.</p>
non_main
st tgz vulnerabilities highest severity is vulnerable library st tgz a module for serving static files does etags caching etc library home page a href path to dependency file package json path to vulnerable library node modules st package json found in head commit a href vulnerabilities cve severity cvss dependency type fixed in st version remediation available high negotiator tgz transitive high mime tgz transitive high st tgz direct high st tgz direct medium st tgz direct details cve vulnerable library negotiator tgz http content negotiation library home page a href path to dependency file package json path to vulnerable library node modules st node modules negotiator package json dependency hierarchy st tgz root library x negotiator tgz vulnerable library found in head commit a href found in base branch main vulnerability details negotiator is an http content negotiator for node js and is used by many modules and frameworks including express and koa the header for accept language when parsed by negotiator and earlier is vulnerable to regular expression denial of service via a specially crafted string publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution negotiator direct dependency fix resolution st rescue worker helmet automatic remediation is available for this issue cve vulnerable library mime tgz a comprehensive library for mime type mapping library home page a href path to dependency file package json path to vulnerable library node modules st node modules mime package json dependency hierarchy st tgz root library x mime tgz vulnerable library found in head commit a href found in base branch main vulnerability details the mime module is vulnerable to regular expression denial of service when a mime lookup is performed on untrusted user input publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution mime direct dependency fix resolution st rescue worker helmet automatic remediation is available for this issue ws vulnerable library st tgz a module for serving static files does etags caching etc library home page a href path to dependency file package json path to vulnerable library node modules st package json dependency hierarchy x st tgz vulnerable library found in head commit a href found in base branch main vulnerability details yjmyjmyjm all versions has directory traversal vulnerability when resolving relative file paths publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution rescue worker helmet automatic remediation is available for this issue cve vulnerable library st tgz a module for serving static files does etags caching etc library home page a href path to dependency file package json path to vulnerable library node modules st package json dependency hierarchy x st tgz vulnerable library found in head commit a href found in base branch main vulnerability details directory traversal vulnerability in the st module before for node js allows remote attackers to read arbitrary files via a encoded dot dot in an unspecified path publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution rescue worker helmet automatic remediation is available for this issue cve vulnerable library st tgz a module for serving static files does etags caching etc library home page a href path to dependency file package json path to vulnerable library node modules st package json dependency hierarchy x st tgz vulnerable library found in head commit a href found in base branch main vulnerability details st is a module for serving static files an attacker is able to craft a request that results in an http redirect to an entirely different domain a request for would result in a to nodesecurity org which most browsers treat as a proper redirect as is translated into the current schema being used mitigating factor in order for this to work st must be serving from the root of a server rather than the typical sub directory static and the redirect url will end with some form of url encoded publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution rescue worker helmet automatic remediation is available for this issue rescue worker helmet automatic remediation is available for this issue
0
873
4,539,032,656
IssuesEvent
2016-09-09 09:23:59
KazDragon/telnetpp
https://api.github.com/repos/KazDragon/telnetpp
closed
Add Sanitizers to test suite
Continuous Integration in progress Maintainability
Three sanitizers should be available and be used: * address * undefined behaviour * thread
True
Add Sanitizers to test suite - Three sanitizers should be available and be used: * address * undefined behaviour * thread
main
add sanitizers to test suite three sanitizers should be available and be used address undefined behaviour thread
1
9,667
13,731,275,820
IssuesEvent
2020-10-05 00:16:25
Psychoanalytic-Electronic-Publishing/PEP-Web-User-Interface
https://api.github.com/repos/Psychoanalytic-Electronic-Publishing/PEP-Web-User-Interface
opened
Results Description Field
Important missing requirement
Missing from section 2.3.2 of the requirements, but shown in all the examples, is the description of the search results at the top of the Results pane. For example, it says "Results 1-30 of 204 for your search on Tuckett and Fonagy". My mistake in not listing it explicitly. However, there's an even more important aspect of this descriptive line for the new PEP-Web. That is, when a user enters a smartsearch, it's not always clear what it's doing. This descriptive line is where we can explain. I have taken steps to provide this information to the client in the next server update. There's a new field in ResponseInfo called "description", where, currently, the server will provide information about the search. I have added messages for smartsearch, but I have not added any for other searches. I am still thinking about how to improve the informational value of that text, but I want to get the smartsearch part in as soon as possible, because it also helps as I test Smartsearch to see what the query interpretation actually was. (Also, making this important, was the initial feedback from the board, that came up: the search is really "blind" without some interpretational feedback.) Can you please provide a field like the one you see in the two figures in Section 2.3.2 and put whatever is in ResponseInfo["description"] there? (If that field is missing or None, then just leave blank in those specific cases--the next push will only have them for smartsearches). I will use the client to help develop these messages and make them consistent.) I would appreciate it if we could get this in before the pending client preview release (I will hold it till we can, or I will hold off any preview release until 10/19 when Preview Release 4 is ready). I want to get search working "fully as expected" and producing similar results to the current PEP-Web) before we preview release to the board. (@adistasio - Note I prefixed your Releases in the project plan with the word Preview so as not to overload the Release word which we use for product release requirements in the spec.) Thanks.
1.0
Results Description Field - Missing from section 2.3.2 of the requirements, but shown in all the examples, is the description of the search results at the top of the Results pane. For example, it says "Results 1-30 of 204 for your search on Tuckett and Fonagy". My mistake in not listing it explicitly. However, there's an even more important aspect of this descriptive line for the new PEP-Web. That is, when a user enters a smartsearch, it's not always clear what it's doing. This descriptive line is where we can explain. I have taken steps to provide this information to the client in the next server update. There's a new field in ResponseInfo called "description", where, currently, the server will provide information about the search. I have added messages for smartsearch, but I have not added any for other searches. I am still thinking about how to improve the informational value of that text, but I want to get the smartsearch part in as soon as possible, because it also helps as I test Smartsearch to see what the query interpretation actually was. (Also, making this important, was the initial feedback from the board, that came up: the search is really "blind" without some interpretational feedback.) Can you please provide a field like the one you see in the two figures in Section 2.3.2 and put whatever is in ResponseInfo["description"] there? (If that field is missing or None, then just leave blank in those specific cases--the next push will only have them for smartsearches). I will use the client to help develop these messages and make them consistent.) I would appreciate it if we could get this in before the pending client preview release (I will hold it till we can, or I will hold off any preview release until 10/19 when Preview Release 4 is ready). I want to get search working "fully as expected" and producing similar results to the current PEP-Web) before we preview release to the board. (@adistasio - Note I prefixed your Releases in the project plan with the word Preview so as not to overload the Release word which we use for product release requirements in the spec.) Thanks.
non_main
results description field missing from section of the requirements but shown in all the examples is the description of the search results at the top of the results pane for example it says results of for your search on tuckett and fonagy my mistake in not listing it explicitly however there s an even more important aspect of this descriptive line for the new pep web that is when a user enters a smartsearch it s not always clear what it s doing this descriptive line is where we can explain i have taken steps to provide this information to the client in the next server update there s a new field in responseinfo called description where currently the server will provide information about the search i have added messages for smartsearch but i have not added any for other searches i am still thinking about how to improve the informational value of that text but i want to get the smartsearch part in as soon as possible because it also helps as i test smartsearch to see what the query interpretation actually was also making this important was the initial feedback from the board that came up the search is really blind without some interpretational feedback can you please provide a field like the one you see in the two figures in section and put whatever is in responseinfo there if that field is missing or none then just leave blank in those specific cases the next push will only have them for smartsearches i will use the client to help develop these messages and make them consistent i would appreciate it if we could get this in before the pending client preview release i will hold it till we can or i will hold off any preview release until when preview release is ready i want to get search working fully as expected and producing similar results to the current pep web before we preview release to the board adistasio note i prefixed your releases in the project plan with the word preview so as not to overload the release word which we use for product release requirements in the spec thanks
0
4,719
24,342,579,446
IssuesEvent
2022-10-01 22:24:27
beekama/NutritionApp
https://api.github.com/repos/beekama/NutritionApp
closed
Document ExtendedBarChart Magic Numbers
maintainability
ExtendeBarChart has some unclear variable names in Line 65-68, where magic numbers 1 & 3 are used without explanation, make 1 and 3 variables with a name indicating their function. While you're on that fix the Array definition warning.
True
Document ExtendedBarChart Magic Numbers - ExtendeBarChart has some unclear variable names in Line 65-68, where magic numbers 1 & 3 are used without explanation, make 1 and 3 variables with a name indicating their function. While you're on that fix the Array definition warning.
main
document extendedbarchart magic numbers extendebarchart has some unclear variable names in line where magic numbers are used without explanation make and variables with a name indicating their function while you re on that fix the array definition warning
1
4,657
24,097,359,853
IssuesEvent
2022-09-19 20:03:33
aws/aws-sam-cli
https://api.github.com/repos/aws/aws-sam-cli
closed
samcli/lib/package/s3_uploader.py on_progress writes progress to stderr causing issues with CD/CD
area/package maintainer/need-followup
<!-- Make sure we don't have an existing Issue that reports the bug you are seeing (both open and closed). If you do find an existing Issue, re-open or add a comment to that Issue instead of creating a new one. --> ### Description When doing a sam deploy I am getting issues as information is being written to the stderr when uploading sam deployments to s3. Surely if you want to change the font colour there is a better way of doing this. Most CI/CD systems will flag if anything is written to the stderr stream and I would prefer not to redirect as this will mask any real issues. ### Steps to reproduce sam deploy with s3 bucket configured ### Observed result Upload progress written to stderr ### Expected result Upload progress written to a stdout ### Additional environment details (Ex: Windows, Mac, Amazon Linux etc) 1. OS: windows 10 2. `sam --version`: 0.40.0
True
samcli/lib/package/s3_uploader.py on_progress writes progress to stderr causing issues with CD/CD - <!-- Make sure we don't have an existing Issue that reports the bug you are seeing (both open and closed). If you do find an existing Issue, re-open or add a comment to that Issue instead of creating a new one. --> ### Description When doing a sam deploy I am getting issues as information is being written to the stderr when uploading sam deployments to s3. Surely if you want to change the font colour there is a better way of doing this. Most CI/CD systems will flag if anything is written to the stderr stream and I would prefer not to redirect as this will mask any real issues. ### Steps to reproduce sam deploy with s3 bucket configured ### Observed result Upload progress written to stderr ### Expected result Upload progress written to a stdout ### Additional environment details (Ex: Windows, Mac, Amazon Linux etc) 1. OS: windows 10 2. `sam --version`: 0.40.0
main
samcli lib package uploader py on progress writes progress to stderr causing issues with cd cd make sure we don t have an existing issue that reports the bug you are seeing both open and closed if you do find an existing issue re open or add a comment to that issue instead of creating a new one description when doing a sam deploy i am getting issues as information is being written to the stderr when uploading sam deployments to surely if you want to change the font colour there is a better way of doing this most ci cd systems will flag if anything is written to the stderr stream and i would prefer not to redirect as this will mask any real issues steps to reproduce sam deploy with bucket configured observed result upload progress written to stderr expected result upload progress written to a stdout additional environment details ex windows mac amazon linux etc os windows sam version
1
248,580
21,042,032,320
IssuesEvent
2022-03-31 13:10:01
nrwl/nx
https://api.github.com/repos/nrwl/nx
closed
Don't error on "targetDependencies" "self" in nx.json
type: feature blocked: retry with latest scope: core
<!-- Please do your best to fill out all of the sections below! --> <!-- Use this issue type for concrete suggestions, otherwise, open a discussion type issue instead. --> - [] I'd be willing to implement this feature ([contributing guide](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md)) ## Description <!-- What is the behavior that you would like to see introduced? --> Currently, we have libs that lint and test depend on the codegen target that lives in those projects. We have to make sure to add "dependsOn" in each of these libs to make sure "codegen" is run before lint and test. We would like to instead be able to do this in `nx.json`, but currently nx throws an error if "targetDependencies" is "self" and the project doesn't contain that target. ## Motivation <!-- Why do you believe this behavior would be beneficial? --> Easier maintainability for depends on targets for "self". ## Suggested Implementation <!-- How do you imagine this might work? --> Don't throw an error if the "targetDependencies" "self" is not a target in the project. ``` ... "targetDependencies": { "build": [ { "target": "build", "projects": "dependencies" }, { "target": "codegen", "projects": "dependencies" }, { "target": "codegen", "projects": "self" // < THROWS IF NOT TARGET IN CURRENT PROJECT } ], ... ``` ## Alternate Implementations <!-- How else do you imagine this might work? --> A new target like "self-optional" or something to indicate to not throw if the target is not there.
1.0
Don't error on "targetDependencies" "self" in nx.json - <!-- Please do your best to fill out all of the sections below! --> <!-- Use this issue type for concrete suggestions, otherwise, open a discussion type issue instead. --> - [] I'd be willing to implement this feature ([contributing guide](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md)) ## Description <!-- What is the behavior that you would like to see introduced? --> Currently, we have libs that lint and test depend on the codegen target that lives in those projects. We have to make sure to add "dependsOn" in each of these libs to make sure "codegen" is run before lint and test. We would like to instead be able to do this in `nx.json`, but currently nx throws an error if "targetDependencies" is "self" and the project doesn't contain that target. ## Motivation <!-- Why do you believe this behavior would be beneficial? --> Easier maintainability for depends on targets for "self". ## Suggested Implementation <!-- How do you imagine this might work? --> Don't throw an error if the "targetDependencies" "self" is not a target in the project. ``` ... "targetDependencies": { "build": [ { "target": "build", "projects": "dependencies" }, { "target": "codegen", "projects": "dependencies" }, { "target": "codegen", "projects": "self" // < THROWS IF NOT TARGET IN CURRENT PROJECT } ], ... ``` ## Alternate Implementations <!-- How else do you imagine this might work? --> A new target like "self-optional" or something to indicate to not throw if the target is not there.
non_main
don t error on targetdependencies self in nx json i d be willing to implement this feature description currently we have libs that lint and test depend on the codegen target that lives in those projects we have to make sure to add dependson in each of these libs to make sure codegen is run before lint and test we would like to instead be able to do this in nx json but currently nx throws an error if targetdependencies is self and the project doesn t contain that target motivation easier maintainability for depends on targets for self suggested implementation don t throw an error if the targetdependencies self is not a target in the project targetdependencies build target build projects dependencies target codegen projects dependencies target codegen projects self throws if not target in current project alternate implementations a new target like self optional or something to indicate to not throw if the target is not there
0
772,251
27,113,383,218
IssuesEvent
2023-02-15 16:47:07
renovatebot/renovate
https://api.github.com/repos/renovatebot/renovate
closed
Bitbucket Cloud reviewers should use uuid in addition to username
type:feature priority-4-low platform:bitbucket status:ready
### What would you like Renovate to be able to do? BitBucket [no longer exposes the username](https://developer.atlassian.com/cloud/bitbucket/bitbucket-api-changes-gdpr/) field so its harder to configure reviewers in Renovate because you have to ask each developer what their username is. Please consider allowing `uuid`'s to be used in additional to the existing username support to be specified as reviewers because those values can be looked up from the BitBucket API. ### If you have any ideas on how this should be implemented, please tell us here. `addReviewers` could parse the reviewer field and if it's a UUID it could map it to the `uuid` field instead of the user `username` field. https://github.com/renovatebot/renovate/blob/6453c3833f229c8556487549c5f481b8133e8852/lib/modules/platform/bitbucket/index.ts#L593-L605 [BitBucket API reference](https://developer.atlassian.com/cloud/bitbucket/rest/api-group-pullrequests/#api-repositories-workspace-repo-slug-pullrequests-post) ``` { "title": "My Title", "source": { "branch": { "name": "my-feature-branch" } }, "reviewers": [ { "uuid": "{504c3b62-8120-4f0c-a7bc-87800b9d6f70}" } ] } ``` ### Is this a feature you are interested in implementing yourself? Maybe
1.0
Bitbucket Cloud reviewers should use uuid in addition to username - ### What would you like Renovate to be able to do? BitBucket [no longer exposes the username](https://developer.atlassian.com/cloud/bitbucket/bitbucket-api-changes-gdpr/) field so its harder to configure reviewers in Renovate because you have to ask each developer what their username is. Please consider allowing `uuid`'s to be used in additional to the existing username support to be specified as reviewers because those values can be looked up from the BitBucket API. ### If you have any ideas on how this should be implemented, please tell us here. `addReviewers` could parse the reviewer field and if it's a UUID it could map it to the `uuid` field instead of the user `username` field. https://github.com/renovatebot/renovate/blob/6453c3833f229c8556487549c5f481b8133e8852/lib/modules/platform/bitbucket/index.ts#L593-L605 [BitBucket API reference](https://developer.atlassian.com/cloud/bitbucket/rest/api-group-pullrequests/#api-repositories-workspace-repo-slug-pullrequests-post) ``` { "title": "My Title", "source": { "branch": { "name": "my-feature-branch" } }, "reviewers": [ { "uuid": "{504c3b62-8120-4f0c-a7bc-87800b9d6f70}" } ] } ``` ### Is this a feature you are interested in implementing yourself? Maybe
non_main
bitbucket cloud reviewers should use uuid in addition to username what would you like renovate to be able to do bitbucket field so its harder to configure reviewers in renovate because you have to ask each developer what their username is please consider allowing uuid s to be used in additional to the existing username support to be specified as reviewers because those values can be looked up from the bitbucket api if you have any ideas on how this should be implemented please tell us here addreviewers could parse the reviewer field and if it s a uuid it could map it to the uuid field instead of the user username field title my title source branch name my feature branch reviewers uuid is this a feature you are interested in implementing yourself maybe
0
37
2,585,557,203
IssuesEvent
2015-02-17 00:54:31
spyder-ide/spyder
https://api.github.com/repos/spyder-ide/spyder
opened
Spyder Dev Tools: Signal Tracer
1 star enhancement imported Maintainability
_From [techtonik@gmail.com](https://code.google.com/u/techtonik@gmail.com/) on 2011-12-13T06:40:11Z_ What steps will reproduce the problem? 1. No way to debug how Qt signals really behave in Spyder 2. No way trace signals as they are fired in real-time What is the expected output? What do you see instead? While inspecting Spyder signals, static analysis (i.e. looking at the code) is time consuming and therefore doesn't always end successfully. It will be much more convenient to have a development widget that will serve as entrypoint for debugging signals and handlers. I'm looking for something that will help me to track signals at run-time (dynamically) by listing all available signals, and help other people understand what's going on (intuitive visualization) by tracking in real-time when fired and handled. This widget/API should allow: - get the list of all signals - get the list of all subscribes given signal name - receive notification when a new subscriber appears (and vanishes) - receive notification when a new signal type appears (and removes) - receive notification when a signal fires, in which order subscribers are called Questions: - Does Qt/PySide provide some useful API? - Can subscriber cancel signal processing by further subscribers? _Original issue: http://code.google.com/p/spyderlib/issues/detail?id=881_
True
Spyder Dev Tools: Signal Tracer - _From [techtonik@gmail.com](https://code.google.com/u/techtonik@gmail.com/) on 2011-12-13T06:40:11Z_ What steps will reproduce the problem? 1. No way to debug how Qt signals really behave in Spyder 2. No way trace signals as they are fired in real-time What is the expected output? What do you see instead? While inspecting Spyder signals, static analysis (i.e. looking at the code) is time consuming and therefore doesn't always end successfully. It will be much more convenient to have a development widget that will serve as entrypoint for debugging signals and handlers. I'm looking for something that will help me to track signals at run-time (dynamically) by listing all available signals, and help other people understand what's going on (intuitive visualization) by tracking in real-time when fired and handled. This widget/API should allow: - get the list of all signals - get the list of all subscribes given signal name - receive notification when a new subscriber appears (and vanishes) - receive notification when a new signal type appears (and removes) - receive notification when a signal fires, in which order subscribers are called Questions: - Does Qt/PySide provide some useful API? - Can subscriber cancel signal processing by further subscribers? _Original issue: http://code.google.com/p/spyderlib/issues/detail?id=881_
main
spyder dev tools signal tracer from on what steps will reproduce the problem no way to debug how qt signals really behave in spyder no way trace signals as they are fired in real time what is the expected output what do you see instead while inspecting spyder signals static analysis i e looking at the code is time consuming and therefore doesn t always end successfully it will be much more convenient to have a development widget that will serve as entrypoint for debugging signals and handlers i m looking for something that will help me to track signals at run time dynamically by listing all available signals and help other people understand what s going on intuitive visualization by tracking in real time when fired and handled this widget api should allow get the list of all signals get the list of all subscribes given signal name receive notification when a new subscriber appears and vanishes receive notification when a new signal type appears and removes receive notification when a signal fires in which order subscribers are called questions does qt pyside provide some useful api can subscriber cancel signal processing by further subscribers original issue
1
4,755
24,511,018,014
IssuesEvent
2022-10-10 21:29:26
centerofci/mathesar
https://api.github.com/repos/centerofci/mathesar
closed
Frontend is not updated to handle the API changes wrt record POST endpoint
type: bug work: frontend status: ready restricted: maintainers
## Description There seems to be a change with the record POST endpoint which returns additional properties i.e. ``` {"count":1,"grouping":null,"preview_data":null,"results":[{"5":279,"6":null,"7":null,"8":null}]} ``` Previously, this endpoint only returned the newly created row. The frontend is not updated to handle this change, and currently breaks: * Creating a new record. - Newly created record values are not displayed. * Updating a record - fails entirely.
True
Frontend is not updated to handle the API changes wrt record POST endpoint - ## Description There seems to be a change with the record POST endpoint which returns additional properties i.e. ``` {"count":1,"grouping":null,"preview_data":null,"results":[{"5":279,"6":null,"7":null,"8":null}]} ``` Previously, this endpoint only returned the newly created row. The frontend is not updated to handle this change, and currently breaks: * Creating a new record. - Newly created record values are not displayed. * Updating a record - fails entirely.
main
frontend is not updated to handle the api changes wrt record post endpoint description there seems to be a change with the record post endpoint which returns additional properties i e count grouping null preview data null results previously this endpoint only returned the newly created row the frontend is not updated to handle this change and currently breaks creating a new record newly created record values are not displayed updating a record fails entirely
1
3,277
12,507,392,040
IssuesEvent
2020-06-02 14:03:37
coq-community/manifesto
https://api.github.com/repos/coq-community/manifesto
closed
Change maintainer of project Stalmarck
change-maintainer
**Project name and URL:** https://github.com/coq-community/stalmarck **Current maintainer:** @herbelin **Status:** maintained **New maintainer:** looking for a volunteer @herbelin is currently maintaining this project (and also [qarith-stern-brocot](https://github.com/coq-community/qarith-stern-brocot) and [bertrand](https://github.com/coq-community/bertrand)), but because he's also the one taking care of all the remaining coq-contribs, he'd gladly accept if someone else wanted to take over this package (or one of the other two I suppose). Cf. https://github.com/coq-community/stalmarck/pull/12#issuecomment-636029984.
True
Change maintainer of project Stalmarck - **Project name and URL:** https://github.com/coq-community/stalmarck **Current maintainer:** @herbelin **Status:** maintained **New maintainer:** looking for a volunteer @herbelin is currently maintaining this project (and also [qarith-stern-brocot](https://github.com/coq-community/qarith-stern-brocot) and [bertrand](https://github.com/coq-community/bertrand)), but because he's also the one taking care of all the remaining coq-contribs, he'd gladly accept if someone else wanted to take over this package (or one of the other two I suppose). Cf. https://github.com/coq-community/stalmarck/pull/12#issuecomment-636029984.
main
change maintainer of project stalmarck project name and url current maintainer herbelin status maintained new maintainer looking for a volunteer herbelin is currently maintaining this project and also and but because he s also the one taking care of all the remaining coq contribs he d gladly accept if someone else wanted to take over this package or one of the other two i suppose cf
1
4,464
23,267,936,727
IssuesEvent
2022-08-04 19:22:24
MarcusWolschon/osmeditor4android
https://api.github.com/repos/MarcusWolschon/osmeditor4android
closed
PropertyEditor refactoring
Task Maintainability Performance
- [ ] simplify instantiation: don't pass tags and relation id etc, as we have access to in-memory instances now contrary to when it was original conceived - [ ] separate activity and fragment so that the fragment can be used stand alone - [ ] add https://github.com/MarcusWolschon/osmeditor4android/issues/512 - [ ] fix https://github.com/MarcusWolschon/osmeditor4android/issues/479
True
PropertyEditor refactoring - - [ ] simplify instantiation: don't pass tags and relation id etc, as we have access to in-memory instances now contrary to when it was original conceived - [ ] separate activity and fragment so that the fragment can be used stand alone - [ ] add https://github.com/MarcusWolschon/osmeditor4android/issues/512 - [ ] fix https://github.com/MarcusWolschon/osmeditor4android/issues/479
main
propertyeditor refactoring simplify instantiation don t pass tags and relation id etc as we have access to in memory instances now contrary to when it was original conceived separate activity and fragment so that the fragment can be used stand alone add fix
1
2,044
6,894,247,416
IssuesEvent
2017-11-23 09:16:37
cucumber/aruba
https://api.github.com/repos/cucumber/aruba
opened
Remove redundant edge-case scenarios
needs feedback by community needs feedback by maintainer type: user experience
## Summary Let's improve Aruba's cucumber features as a source for documentation by reducing the number of edge case scenarios. ## Expected Behavior Aruba's documentation summarizes clearly the use of its methods and cucumber steps ## Current Behavior Several feature files list endless edge cases, for example, running an external script with ruby, python, bash, zsh, with alternative step wording. ## Possible Solution Some combination of the following: * Change the wording of introductions of the feature files to more clearly serve as documentation. * Remove superfluous scenarios * Move testing of technical edge cases to the spec suite. ## Context & Motivation I want to make Aruba's documentation better and clearer, and reduce the time our tests take to run at the same time.
True
Remove redundant edge-case scenarios - ## Summary Let's improve Aruba's cucumber features as a source for documentation by reducing the number of edge case scenarios. ## Expected Behavior Aruba's documentation summarizes clearly the use of its methods and cucumber steps ## Current Behavior Several feature files list endless edge cases, for example, running an external script with ruby, python, bash, zsh, with alternative step wording. ## Possible Solution Some combination of the following: * Change the wording of introductions of the feature files to more clearly serve as documentation. * Remove superfluous scenarios * Move testing of technical edge cases to the spec suite. ## Context & Motivation I want to make Aruba's documentation better and clearer, and reduce the time our tests take to run at the same time.
main
remove redundant edge case scenarios summary let s improve aruba s cucumber features as a source for documentation by reducing the number of edge case scenarios expected behavior aruba s documentation summarizes clearly the use of its methods and cucumber steps current behavior several feature files list endless edge cases for example running an external script with ruby python bash zsh with alternative step wording possible solution some combination of the following change the wording of introductions of the feature files to more clearly serve as documentation remove superfluous scenarios move testing of technical edge cases to the spec suite context motivation i want to make aruba s documentation better and clearer and reduce the time our tests take to run at the same time
1
41,665
10,562,908,789
IssuesEvent
2019-10-04 19:32:31
hazelcast/hazelcast
https://api.github.com/repos/hazelcast/hazelcast
closed
Setting an Exception in an IAtomicReference causes it to be thrown when getting it
Internal breaking change Module: IAtomicReference Source: Community Team: Core Type: Defect
I'm using an Hazelcast **IAtomicReference** to store a **reference to an Exception** object. When I try to get the stored **Exception**, it is **thrown** rather than returned. Is it a **desired behaviour** (I couldn't find any mention to it in the documentation) **or** is it a **defect**? ```Java @Test(expected=RuntimeException.class) public void testExceptionInAtomicReference { Config config = new Config(); HazelcastInstance hz = Hazelcast.newHazelcastInstance(config); Exception e = new RuntimeException("my exception"); IAtomicReference<Exception> ref = hz.getAtomicReference("excRef"); ref.set(e); Exception exception = ref.get(); // <--- This throws the exception stored rather than returning it } ```
1.0
Setting an Exception in an IAtomicReference causes it to be thrown when getting it - I'm using an Hazelcast **IAtomicReference** to store a **reference to an Exception** object. When I try to get the stored **Exception**, it is **thrown** rather than returned. Is it a **desired behaviour** (I couldn't find any mention to it in the documentation) **or** is it a **defect**? ```Java @Test(expected=RuntimeException.class) public void testExceptionInAtomicReference { Config config = new Config(); HazelcastInstance hz = Hazelcast.newHazelcastInstance(config); Exception e = new RuntimeException("my exception"); IAtomicReference<Exception> ref = hz.getAtomicReference("excRef"); ref.set(e); Exception exception = ref.get(); // <--- This throws the exception stored rather than returning it } ```
non_main
setting an exception in an iatomicreference causes it to be thrown when getting it i m using an hazelcast iatomicreference to store a reference to an exception object when i try to get the stored exception it is thrown rather than returned is it a desired behaviour i couldn t find any mention to it in the documentation or is it a defect java test expected runtimeexception class public void testexceptioninatomicreference config config new config hazelcastinstance hz hazelcast newhazelcastinstance config exception e new runtimeexception my exception iatomicreference ref hz getatomicreference excref ref set e exception exception ref get this throws the exception stored rather than returning it
0
111,331
4,468,583,076
IssuesEvent
2016-08-25 09:54:11
NSusoev/eval-service-quality
https://api.github.com/repos/NSusoev/eval-service-quality
closed
Исправить ошибки в алгоритме расчета агрегированных оценок
area: back-end priority: high type: bug
2016-07-28 00:52:29.216 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : COLLECTION AFTER SORTING = [LinguisticTerm[id = 5, name = очень высокое, weight = 0.008], LinguisticTerm[id = 5, name = очень высокое, weight = 0.008], LinguisticTerm[id = 5, name = очень высокое, weight = 0.008], LinguisticTerm[id = 5, name = очень высокое, weight = 0.008], LinguisticTerm[id = 1, name = очень низкое, weight = 1.0], LinguisticTerm[id = 1, name = очень низкое, weight = 1.0], LinguisticTerm[id = 1, name = очень низкое, weight = 1.0]] 2016-07-28 00:52:29.216 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : ENTER 2016-07-28 00:52:29.216 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : IMPORTANCE MARKS WITH GENERATED WEIGHTS[ LinguisticTerm[id = 5, name = очень высокое, weight = 0.008] ] = [LinguisticTerm[id = 5, name = очень высокое, weight = 0.008], LinguisticTerm[id = 5, name = очень высокое, weight = 0.008], LinguisticTerm[id = 5, name = очень высокое, weight = 0.008], LinguisticTerm[id = 5, name = очень высокое, weight = 0.008], LinguisticTerm[id = 1, name = очень низкое, weight = 1.0], LinguisticTerm[id = 1, name = очень низкое, weight = 1.0], LinguisticTerm[id = 1, name = очень низкое, weight = 1.0]] 2016-07-28 00:52:29.216 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : EXIT 2016-07-28 00:52:29.216 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : ENTER 2016-07-28 00:52:29.216 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : ENTER 2016-07-28 00:52:29.216 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : SUM WEIGHT = 3.032 2016-07-28 00:52:29.216 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.008 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.0026385225 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 8.702251E-4 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 2.8701354E-4 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 1.0 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.3298153 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.108778134 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : IMPORTANCE MARKS WITH NORMALIZED WEIGHTS = [LinguisticTerm[id = 5, name = очень высокое, weight = 9.466145E-5], LinguisticTerm[id = 5, name = очень высокое, weight = 9.466145E-5], LinguisticTerm[id = 5, name = очень высокое, weight = 9.466145E-5], LinguisticTerm[id = 5, name = очень высокое, weight = 9.466145E-5], LinguisticTerm[id = 1, name = очень низкое, weight = 0.03587669], LinguisticTerm[id = 1, name = очень низкое, weight = 0.03587669], LinguisticTerm[id = 1, name = очень низкое, weight = 0.03587669]] 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : EXIT 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : ENTER 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : ENTER 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : SUM WEIGHT = 0.07203737 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 9.466145E-5 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.0013140604 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.018241372 2016-07-28 00:52:29.218 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.03587669 2016-07-28 00:52:29.218 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.4980289 2016-07-28 00:52:29.218 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : IMPORTANCE MARKS WITH NORMALIZED WEIGHTS = [LinguisticTerm[id = 5, name = очень высокое, weight = 0.25322098], LinguisticTerm[id = 5, name = очень высокое, weight = 0.25322098], LinguisticTerm[id = 5, name = очень высокое, weight = 0.25322098], LinguisticTerm[id = 1, name = очень низкое, weight = 6.91348], LinguisticTerm[id = 1, name = очень низкое, weight = 6.91348]] 2016-07-28 00:52:29.218 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : EXIT 2016-07-28 00:52:29.220 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : ENTER 2016-07-28 00:52:29.220 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : ENTER 2016-07-28 00:52:29.220 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : SUM WEIGHT = 7.419922 2016-07-28 00:52:29.220 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.25322098 2016-07-28 00:52:29.220 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.034127176 2016-07-28 00:52:29.220 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 6.91348 2016-07-28 00:52:29.220 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : IMPORTANCE MARKS WITH NORMALIZED WEIGHTS = [LinguisticTerm[id = 5, name = очень высокое, weight = 0.0045993985], LinguisticTerm[id = 5, name = очень высокое, weight = 0.0045993985], LinguisticTerm[id = 1, name = очень низкое, weight = 0.93174565]] 2016-07-28 00:52:29.220 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : EXIT
1.0
Исправить ошибки в алгоритме расчета агрегированных оценок - 2016-07-28 00:52:29.216 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : COLLECTION AFTER SORTING = [LinguisticTerm[id = 5, name = очень высокое, weight = 0.008], LinguisticTerm[id = 5, name = очень высокое, weight = 0.008], LinguisticTerm[id = 5, name = очень высокое, weight = 0.008], LinguisticTerm[id = 5, name = очень высокое, weight = 0.008], LinguisticTerm[id = 1, name = очень низкое, weight = 1.0], LinguisticTerm[id = 1, name = очень низкое, weight = 1.0], LinguisticTerm[id = 1, name = очень низкое, weight = 1.0]] 2016-07-28 00:52:29.216 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : ENTER 2016-07-28 00:52:29.216 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : IMPORTANCE MARKS WITH GENERATED WEIGHTS[ LinguisticTerm[id = 5, name = очень высокое, weight = 0.008] ] = [LinguisticTerm[id = 5, name = очень высокое, weight = 0.008], LinguisticTerm[id = 5, name = очень высокое, weight = 0.008], LinguisticTerm[id = 5, name = очень высокое, weight = 0.008], LinguisticTerm[id = 5, name = очень высокое, weight = 0.008], LinguisticTerm[id = 1, name = очень низкое, weight = 1.0], LinguisticTerm[id = 1, name = очень низкое, weight = 1.0], LinguisticTerm[id = 1, name = очень низкое, weight = 1.0]] 2016-07-28 00:52:29.216 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : EXIT 2016-07-28 00:52:29.216 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : ENTER 2016-07-28 00:52:29.216 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : ENTER 2016-07-28 00:52:29.216 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : SUM WEIGHT = 3.032 2016-07-28 00:52:29.216 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.008 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.0026385225 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 8.702251E-4 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 2.8701354E-4 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 1.0 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.3298153 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.108778134 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : IMPORTANCE MARKS WITH NORMALIZED WEIGHTS = [LinguisticTerm[id = 5, name = очень высокое, weight = 9.466145E-5], LinguisticTerm[id = 5, name = очень высокое, weight = 9.466145E-5], LinguisticTerm[id = 5, name = очень высокое, weight = 9.466145E-5], LinguisticTerm[id = 5, name = очень высокое, weight = 9.466145E-5], LinguisticTerm[id = 1, name = очень низкое, weight = 0.03587669], LinguisticTerm[id = 1, name = очень низкое, weight = 0.03587669], LinguisticTerm[id = 1, name = очень низкое, weight = 0.03587669]] 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : EXIT 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : ENTER 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : ENTER 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : SUM WEIGHT = 0.07203737 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 9.466145E-5 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.0013140604 2016-07-28 00:52:29.217 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.018241372 2016-07-28 00:52:29.218 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.03587669 2016-07-28 00:52:29.218 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.4980289 2016-07-28 00:52:29.218 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : IMPORTANCE MARKS WITH NORMALIZED WEIGHTS = [LinguisticTerm[id = 5, name = очень высокое, weight = 0.25322098], LinguisticTerm[id = 5, name = очень высокое, weight = 0.25322098], LinguisticTerm[id = 5, name = очень высокое, weight = 0.25322098], LinguisticTerm[id = 1, name = очень низкое, weight = 6.91348], LinguisticTerm[id = 1, name = очень низкое, weight = 6.91348]] 2016-07-28 00:52:29.218 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : EXIT 2016-07-28 00:52:29.220 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : ENTER 2016-07-28 00:52:29.220 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : ENTER 2016-07-28 00:52:29.220 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : SUM WEIGHT = 7.419922 2016-07-28 00:52:29.220 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.25322098 2016-07-28 00:52:29.220 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 0.034127176 2016-07-28 00:52:29.220 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : WEIGHT = 6.91348 2016-07-28 00:52:29.220 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : IMPORTANCE MARKS WITH NORMALIZED WEIGHTS = [LinguisticTerm[id = 5, name = очень высокое, weight = 0.0045993985], LinguisticTerm[id = 5, name = очень высокое, weight = 0.0045993985], LinguisticTerm[id = 1, name = очень низкое, weight = 0.93174565]] 2016-07-28 00:52:29.220 DEBUG 52174 --- [nio-8080-exec-1] esq.core.service.ESQCalculator : EXIT
non_main
исправить ошибки в алгоритме расчета агрегированных оценок debug esq core service esqcalculator collection after sorting linguisticterm linguisticterm linguisticterm linguisticterm linguisticterm linguisticterm debug esq core service esqcalculator enter debug esq core service esqcalculator importance marks with generated weights linguisticterm linguisticterm linguisticterm linguisticterm linguisticterm linguisticterm debug esq core service esqcalculator exit debug esq core service esqcalculator enter debug esq core service esqcalculator enter debug esq core service esqcalculator sum weight debug esq core service esqcalculator weight debug esq core service esqcalculator weight debug esq core service esqcalculator weight debug esq core service esqcalculator weight debug esq core service esqcalculator weight debug esq core service esqcalculator weight debug esq core service esqcalculator weight debug esq core service esqcalculator importance marks with normalized weights linguisticterm linguisticterm linguisticterm linguisticterm linguisticterm linguisticterm debug esq core service esqcalculator exit debug esq core service esqcalculator enter debug esq core service esqcalculator enter debug esq core service esqcalculator sum weight debug esq core service esqcalculator weight debug esq core service esqcalculator weight debug esq core service esqcalculator weight debug esq core service esqcalculator weight debug esq core service esqcalculator weight debug esq core service esqcalculator importance marks with normalized weights linguisticterm linguisticterm linguisticterm linguisticterm debug esq core service esqcalculator exit debug esq core service esqcalculator enter debug esq core service esqcalculator enter debug esq core service esqcalculator sum weight debug esq core service esqcalculator weight debug esq core service esqcalculator weight debug esq core service esqcalculator weight debug esq core service esqcalculator importance marks with normalized weights linguisticterm linguisticterm debug esq core service esqcalculator exit
0
5,203
26,450,064,113
IssuesEvent
2023-01-16 10:30:04
Pandora-IsoMemo/plotr
https://api.github.com/repos/Pandora-IsoMemo/plotr
closed
Create wiki with installation instruction
Support: IT maintainance
Move and update installation instructions from - https://github.com/Pandora-IsoMemo/drat/issues/7 to a new created wiki of this app
True
Create wiki with installation instruction - Move and update installation instructions from - https://github.com/Pandora-IsoMemo/drat/issues/7 to a new created wiki of this app
main
create wiki with installation instruction move and update installation instructions from to a new created wiki of this app
1
4,624
23,947,427,261
IssuesEvent
2022-09-12 08:36:57
MetaCell/cloud-harness
https://api.github.com/repos/MetaCell/cloud-harness
closed
Refactor database options design
maintainance
Looking at methods like: https://github.com/MetaCell/cloud-harness/blob/faac12751780b23f138fd8d9a8b69ae50584b1e6/libraries/cloudharness-common/cloudharness/applications.py#L36 I don't think the current strategy to manage the different databases supported is easily maintainable. (If we are to add support for a new database we will have to be changing the aforementioned method as well (adding another if)) I would suggest to refactor it to use something like the [strategy design pattern](https://sourcemaking.com/design_patterns/strategy) instead.
True
Refactor database options design - Looking at methods like: https://github.com/MetaCell/cloud-harness/blob/faac12751780b23f138fd8d9a8b69ae50584b1e6/libraries/cloudharness-common/cloudharness/applications.py#L36 I don't think the current strategy to manage the different databases supported is easily maintainable. (If we are to add support for a new database we will have to be changing the aforementioned method as well (adding another if)) I would suggest to refactor it to use something like the [strategy design pattern](https://sourcemaking.com/design_patterns/strategy) instead.
main
refactor database options design looking at methods like i don t think the current strategy to manage the different databases supported is easily maintainable if we are to add support for a new database we will have to be changing the aforementioned method as well adding another if i would suggest to refactor it to use something like the instead
1
5,807
3,287,596,243
IssuesEvent
2015-10-29 11:14:06
joomla/joomla-cms
https://api.github.com/repos/joomla/joomla-cms
closed
Problem with breadcrumb in articles inside category
No Code Attached Yet
## Steps to reproduce the issue 1. Make a Joomla fresh install 2. Create a category "test" 3. Create one article inside that category "article 1" 4. Create a Menu item to list/blog the "test" category 5. Go to the default breadcrumbs module "advanced" tab and disable caching 6. Go to system configuration and turn on system caching "Conservative" 7. Go to frontend and select the "Test" menu item and then the "article 1" 8. You can see the breadcrumb is ok (no caching yet) 9. Refresh the page. You can see the breadcumb is NOT ok (from com_content cache) ## Expected result Breadcrumb should be ok ## Atual result Breadcrumb is not ok ## System information Joomla 3.4.4 ## Additional comments If you disable the cache in system configuration is ok, so the problem is related with reading the breadcrumbs from cache. If you dump the getPathway() function when reading from cache you can see the problem.
1.0
Problem with breadcrumb in articles inside category - ## Steps to reproduce the issue 1. Make a Joomla fresh install 2. Create a category "test" 3. Create one article inside that category "article 1" 4. Create a Menu item to list/blog the "test" category 5. Go to the default breadcrumbs module "advanced" tab and disable caching 6. Go to system configuration and turn on system caching "Conservative" 7. Go to frontend and select the "Test" menu item and then the "article 1" 8. You can see the breadcrumb is ok (no caching yet) 9. Refresh the page. You can see the breadcumb is NOT ok (from com_content cache) ## Expected result Breadcrumb should be ok ## Atual result Breadcrumb is not ok ## System information Joomla 3.4.4 ## Additional comments If you disable the cache in system configuration is ok, so the problem is related with reading the breadcrumbs from cache. If you dump the getPathway() function when reading from cache you can see the problem.
non_main
problem with breadcrumb in articles inside category steps to reproduce the issue make a joomla fresh install create a category test create one article inside that category article create a menu item to list blog the test category go to the default breadcrumbs module advanced tab and disable caching go to system configuration and turn on system caching conservative go to frontend and select the test menu item and then the article you can see the breadcrumb is ok no caching yet refresh the page you can see the breadcumb is not ok from com content cache expected result breadcrumb should be ok atual result breadcrumb is not ok system information joomla additional comments if you disable the cache in system configuration is ok so the problem is related with reading the breadcrumbs from cache if you dump the getpathway function when reading from cache you can see the problem
0
1,427
6,203,335,043
IssuesEvent
2017-07-06 11:35:57
WhitestormJS/whs.js
https://api.github.com/repos/WhitestormJS/whs.js
closed
Migrating to Rollup + Webpack
ENHANCEMENT MAINTAINANCE
The current workflow is relying on webpack-only configuration. I'd like to move the build process of `whs` and `modules/` directory to Rollup as it is [better for libraries](https://medium.com/webpack/webpack-and-rollup-the-same-but-different-a41ad427058c) ###### Version: - [x] v2.x.x - [ ] v1.x.x ###### Issue type: - [ ] Bug - [x] Proposal/Enhancement - [ ] Question - [ ] Discussion ------ <details> <summary> <b>Tested on: </b> </summary> ###### Desktop - [ ] Chrome - [ ] Chrome Canary - [ ] Chrome dev-channel - [ ] Firefox - [ ] Opera - [ ] Microsoft IE - [ ] Microsoft Edge ###### Android - [ ] Chrome - [ ] Firefox - [ ] Opera ###### IOS - [ ] Chrome - [ ] Firefox - [ ] Opera </details>
True
Migrating to Rollup + Webpack - The current workflow is relying on webpack-only configuration. I'd like to move the build process of `whs` and `modules/` directory to Rollup as it is [better for libraries](https://medium.com/webpack/webpack-and-rollup-the-same-but-different-a41ad427058c) ###### Version: - [x] v2.x.x - [ ] v1.x.x ###### Issue type: - [ ] Bug - [x] Proposal/Enhancement - [ ] Question - [ ] Discussion ------ <details> <summary> <b>Tested on: </b> </summary> ###### Desktop - [ ] Chrome - [ ] Chrome Canary - [ ] Chrome dev-channel - [ ] Firefox - [ ] Opera - [ ] Microsoft IE - [ ] Microsoft Edge ###### Android - [ ] Chrome - [ ] Firefox - [ ] Opera ###### IOS - [ ] Chrome - [ ] Firefox - [ ] Opera </details>
main
migrating to rollup webpack the current workflow is relying on webpack only configuration i d like to move the build process of whs and modules directory to rollup as it is version x x x x issue type bug proposal enhancement question discussion tested on desktop chrome chrome canary chrome dev channel firefox opera microsoft ie microsoft edge android chrome firefox opera ios chrome firefox opera
1
3,595
14,529,576,416
IssuesEvent
2020-12-14 18:00:30
carbon-design-system/carbon
https://api.github.com/repos/carbon-design-system/carbon
closed
[Large loading component]: Loading has different size to defined on carbondesignsystem website
component: loading status: waiting for maintainer response 💬 type: bug 🐛
## [Large loading component]: Loading has different size to defined on carbondesignsystem website ## What package(s) are you using? - [X] `carbon-components` - [ ] `carbon-components-react` ## Detailed description The Carbon Design Website Defines the .bx--loading class as having a width/height of 88px/5.5rem. The value defined for .bx--loading in the file packages/components/src/components/loading/_vars.scss is 10.5rem It looks like the ultimate displayed spinner is the correct size as there is a padding of 40px (which times 2) reduces the spinner size down to 88px. However, it does not explain the discrepancy between the .bx-loading class value defined on the website and the value for the same class used in the code.
True
[Large loading component]: Loading has different size to defined on carbondesignsystem website - ## [Large loading component]: Loading has different size to defined on carbondesignsystem website ## What package(s) are you using? - [X] `carbon-components` - [ ] `carbon-components-react` ## Detailed description The Carbon Design Website Defines the .bx--loading class as having a width/height of 88px/5.5rem. The value defined for .bx--loading in the file packages/components/src/components/loading/_vars.scss is 10.5rem It looks like the ultimate displayed spinner is the correct size as there is a padding of 40px (which times 2) reduces the spinner size down to 88px. However, it does not explain the discrepancy between the .bx-loading class value defined on the website and the value for the same class used in the code.
main
loading has different size to defined on carbondesignsystem website loading has different size to defined on carbondesignsystem website what package s are you using carbon components carbon components react detailed description the carbon design website defines the bx loading class as having a width height of the value defined for bx loading in the file packages components src components loading vars scss is it looks like the ultimate displayed spinner is the correct size as there is a padding of which times reduces the spinner size down to however it does not explain the discrepancy between the bx loading class value defined on the website and the value for the same class used in the code
1
2,466
8,639,902,482
IssuesEvent
2018-11-23 22:32:32
F5OEO/rpitx
https://api.github.com/repos/F5OEO/rpitx
closed
Does not seem to Tx
V1 related (not maintained)
Raspberry pi B+ with wire attached to appropriate gpio pin. Receiving with RTL-SDR and HDSDR under windows, tuned to 107Mhz (an unused FM station, low, low power FM Tx is legal in the US). I cannot observe any Tx from the pi with the RTL-SDR, using either: sox imperial_march.wav imp.wav rate 48000 channels 1 pifm imp.wav imp.ft sudo rpitx -m RF -i imp.ft -f 107000 or convert -depth 8 Picture.jpg picture.rgb ./pisstv picture.rgb picture.ft sudo ./rpitx -m RF -i picture.ft -f 107000 Both commands return, almost immediately (less than 1 second delay) with: rpitx Version 0.1 compiled Dec 9 2015 (F5OEO Evariste) running on Model Pi B+ Model Pi 1 END OF PiTx I have attempted with and without the patch from Issue #1. The pifm project, on the same pi works perfectly with the antenna attached to a different GPIO pin, as required by the pifm project.
True
Does not seem to Tx - Raspberry pi B+ with wire attached to appropriate gpio pin. Receiving with RTL-SDR and HDSDR under windows, tuned to 107Mhz (an unused FM station, low, low power FM Tx is legal in the US). I cannot observe any Tx from the pi with the RTL-SDR, using either: sox imperial_march.wav imp.wav rate 48000 channels 1 pifm imp.wav imp.ft sudo rpitx -m RF -i imp.ft -f 107000 or convert -depth 8 Picture.jpg picture.rgb ./pisstv picture.rgb picture.ft sudo ./rpitx -m RF -i picture.ft -f 107000 Both commands return, almost immediately (less than 1 second delay) with: rpitx Version 0.1 compiled Dec 9 2015 (F5OEO Evariste) running on Model Pi B+ Model Pi 1 END OF PiTx I have attempted with and without the patch from Issue #1. The pifm project, on the same pi works perfectly with the antenna attached to a different GPIO pin, as required by the pifm project.
main
does not seem to tx raspberry pi b with wire attached to appropriate gpio pin receiving with rtl sdr and hdsdr under windows tuned to an unused fm station low low power fm tx is legal in the us i cannot observe any tx from the pi with the rtl sdr using either sox imperial march wav imp wav rate channels pifm imp wav imp ft sudo rpitx m rf i imp ft f or convert depth picture jpg picture rgb pisstv picture rgb picture ft sudo rpitx m rf i picture ft f both commands return almost immediately less than second delay with rpitx version compiled dec evariste running on model pi b model pi end of pitx i have attempted with and without the patch from issue the pifm project on the same pi works perfectly with the antenna attached to a different gpio pin as required by the pifm project
1
139,159
12,838,538,178
IssuesEvent
2020-07-07 17:39:02
dnnsoftware/Dnn.Platform
https://api.github.com/repos/dnnsoftware/Dnn.Platform
closed
Links in repository readme should be updated to the dnncommunity.org site
Effort: Low Priority: Medium Status: Ready for Development Type: Documentation
There are a couple links on the readme that should be updated to point to the new community site forums and blog, etc.
1.0
Links in repository readme should be updated to the dnncommunity.org site - There are a couple links on the readme that should be updated to point to the new community site forums and blog, etc.
non_main
links in repository readme should be updated to the dnncommunity org site there are a couple links on the readme that should be updated to point to the new community site forums and blog etc
0
43,096
11,464,349,001
IssuesEvent
2020-02-07 17:52:21
zfsonlinux/zfs
https://api.github.com/repos/zfsonlinux/zfs
reopened
`zfs send -p | zfs receive -F` destroys all other snapshots
Component: Send/Recv Type: Defect Type: Documentation
From the man page of zfs receive: > When a snapshot replication package stream that is generated by using the `zfs send -R` command is received, any snapshots that do not exist on the sending location are destroyed by using the zfs destroy -d command. I never used `-R`, but I did add `-p` to the send command (`zfs send -p -I ...`) because I wanted to transfer the properties along with the snapshots. But then the receive side (with `-F`) behaved as if I was sending a replication stream: it deleted all snapshots that didn't exist on the sending side. This was not expected at all. Is this a bug in send, receive, or in the documentation? Edit: if this is the expected behavior, I'll submit a PR to make it clearer in the man pages.
1.0
`zfs send -p | zfs receive -F` destroys all other snapshots - From the man page of zfs receive: > When a snapshot replication package stream that is generated by using the `zfs send -R` command is received, any snapshots that do not exist on the sending location are destroyed by using the zfs destroy -d command. I never used `-R`, but I did add `-p` to the send command (`zfs send -p -I ...`) because I wanted to transfer the properties along with the snapshots. But then the receive side (with `-F`) behaved as if I was sending a replication stream: it deleted all snapshots that didn't exist on the sending side. This was not expected at all. Is this a bug in send, receive, or in the documentation? Edit: if this is the expected behavior, I'll submit a PR to make it clearer in the man pages.
non_main
zfs send p zfs receive f destroys all other snapshots from the man page of zfs receive when a snapshot replication package stream that is generated by using the zfs send r command is received any snapshots that do not exist on the sending location are destroyed by using the zfs destroy d command i never used r but i did add p to the send command zfs send p i because i wanted to transfer the properties along with the snapshots but then the receive side with f behaved as if i was sending a replication stream it deleted all snapshots that didn t exist on the sending side this was not expected at all is this a bug in send receive or in the documentation edit if this is the expected behavior i ll submit a pr to make it clearer in the man pages
0
25,481
12,627,128,416
IssuesEvent
2020-06-14 19:55:02
tensorflow/tensorflow
https://api.github.com/repos/tensorflow/tensorflow
closed
Something wrong with "predict_on_batch"
TF 2.2 comp:keras stalled stat:awaiting response type:performance
<em> Performance with predict_on_batch when using not determined input size is not good enough on tf.2.2.0. In my experiments with TensorFlow version 2.1 the prediction speed is for flexible input the same as fixed input, but for tf.2.2 prediction, speed is dramatically lower. Moreover, about 10 days ago, when I used nightly build the performance was good. </em> **System information** - OS Platform: Linux Ubuntu 20.04 - TensorFlow installed from: pip - TensorFlow version: 2.2 nightly. v1.12.1-31119-gce72f093cb 2.2.0-dev20200504 - Python version: 3.6 - CUDA/cuDNN version: 10.1/7.6.5 - GPU model and memory: GTX1080 TI, 11Gb **Describe the current behavior** **for v2.1.0-rc2-17-ge5bf8de 2.1.0** - **_Fixed input_** ``` from tensorflow.keras.applications.resnet50 import ResNet50 from tqdm import tqdm import numpy as np net = ResNet50(input_shape=(None, 224, 3), weights=None, include_top=False) for n in tqdm(range(1000)): a = net.predict_on_batch(np.random.randn(1, 224, 224, 3)) output: 100%|██████████| 1000/1000 [00:13<00:00, 74.74it/s] ``` - **_Flexible input_** ``` from tensorflow.keras.applications.resnet50 import ResNet50 from tqdm import tqdm import numpy as np net = ResNet50(input_shape=(None, 224, 3), weights=None, include_top=False) for n in tqdm(range(1000)): a = net.predict_on_batch(np.random.randn(1, np.random.randint(112, 224), 224, 3)) output: 100%|██████████| 1000/1000 [00:14<00:00, 68.15it/s] ``` **for tf.2.2 nightly build (v1.12.1-31119-gce72f093cb 2.2.0-dev20200504)** - **_Fixed input_** ``` from tensorflow.keras.applications.resnet50 import ResNet50 from tqdm import tqdm import numpy as np net = ResNet50(input_shape=(None, 224, 3), weights=None, include_top=False) for n in tqdm(range(1000)): a = net.predict_on_batch(np.random.randn(1, 224, 224, 3)) output: 100%|██████████| 1000/1000 [00:26<00:00, 38.24it/s] ``` - **_Flexible input_** ``` from tensorflow.keras.applications.resnet50 import ResNet50 from tqdm import tqdm import numpy as np net = ResNet50(input_shape=(None, 224, 3), weights=None, include_top=False) for n in tqdm(range(1000)): a = net.predict_on_batch(np.random.randn(1, np.random.randint(112, 224), 224, 3)) output: 1%| | 6/1000 [00:47<2:07:54, 7.72s/it] ``` upd: for current stable version: v2.2.0-rc1-34-ge6e5d6df2a 2.2.0-rc2 result is same: - **_Flexible input_** ``` from tensorflow.keras.applications.resnet50 import ResNet50 from tqdm import tqdm import numpy as np net = ResNet50(input_shape=(None, 224, 3), weights=None, include_top=False) for n in tqdm(range(1000)): a = net.predict_on_batch(np.random.randn(1, np.random.randint(112, 224), 224, 3)) output: 0%| | 4/1000 [00:31<2:12:39, 7.99s/it] ```
True
Something wrong with "predict_on_batch" - <em> Performance with predict_on_batch when using not determined input size is not good enough on tf.2.2.0. In my experiments with TensorFlow version 2.1 the prediction speed is for flexible input the same as fixed input, but for tf.2.2 prediction, speed is dramatically lower. Moreover, about 10 days ago, when I used nightly build the performance was good. </em> **System information** - OS Platform: Linux Ubuntu 20.04 - TensorFlow installed from: pip - TensorFlow version: 2.2 nightly. v1.12.1-31119-gce72f093cb 2.2.0-dev20200504 - Python version: 3.6 - CUDA/cuDNN version: 10.1/7.6.5 - GPU model and memory: GTX1080 TI, 11Gb **Describe the current behavior** **for v2.1.0-rc2-17-ge5bf8de 2.1.0** - **_Fixed input_** ``` from tensorflow.keras.applications.resnet50 import ResNet50 from tqdm import tqdm import numpy as np net = ResNet50(input_shape=(None, 224, 3), weights=None, include_top=False) for n in tqdm(range(1000)): a = net.predict_on_batch(np.random.randn(1, 224, 224, 3)) output: 100%|██████████| 1000/1000 [00:13<00:00, 74.74it/s] ``` - **_Flexible input_** ``` from tensorflow.keras.applications.resnet50 import ResNet50 from tqdm import tqdm import numpy as np net = ResNet50(input_shape=(None, 224, 3), weights=None, include_top=False) for n in tqdm(range(1000)): a = net.predict_on_batch(np.random.randn(1, np.random.randint(112, 224), 224, 3)) output: 100%|██████████| 1000/1000 [00:14<00:00, 68.15it/s] ``` **for tf.2.2 nightly build (v1.12.1-31119-gce72f093cb 2.2.0-dev20200504)** - **_Fixed input_** ``` from tensorflow.keras.applications.resnet50 import ResNet50 from tqdm import tqdm import numpy as np net = ResNet50(input_shape=(None, 224, 3), weights=None, include_top=False) for n in tqdm(range(1000)): a = net.predict_on_batch(np.random.randn(1, 224, 224, 3)) output: 100%|██████████| 1000/1000 [00:26<00:00, 38.24it/s] ``` - **_Flexible input_** ``` from tensorflow.keras.applications.resnet50 import ResNet50 from tqdm import tqdm import numpy as np net = ResNet50(input_shape=(None, 224, 3), weights=None, include_top=False) for n in tqdm(range(1000)): a = net.predict_on_batch(np.random.randn(1, np.random.randint(112, 224), 224, 3)) output: 1%| | 6/1000 [00:47<2:07:54, 7.72s/it] ``` upd: for current stable version: v2.2.0-rc1-34-ge6e5d6df2a 2.2.0-rc2 result is same: - **_Flexible input_** ``` from tensorflow.keras.applications.resnet50 import ResNet50 from tqdm import tqdm import numpy as np net = ResNet50(input_shape=(None, 224, 3), weights=None, include_top=False) for n in tqdm(range(1000)): a = net.predict_on_batch(np.random.randn(1, np.random.randint(112, 224), 224, 3)) output: 0%| | 4/1000 [00:31<2:12:39, 7.99s/it] ```
non_main
something wrong with predict on batch performance with predict on batch when using not determined input size is not good enough on tf in my experiments with tensorflow version the prediction speed is for flexible input the same as fixed input but for tf prediction speed is dramatically lower moreover about days ago when i used nightly build the performance was good system information os platform linux ubuntu tensorflow installed from pip tensorflow version nightly python version cuda cudnn version gpu model and memory ti describe the current behavior for fixed input from tensorflow keras applications import from tqdm import tqdm import numpy as np net input shape none weights none include top false for n in tqdm range a net predict on batch np random randn output ██████████ flexible input from tensorflow keras applications import from tqdm import tqdm import numpy as np net input shape none weights none include top false for n in tqdm range a net predict on batch np random randn np random randint output ██████████ for tf nightly build fixed input from tensorflow keras applications import from tqdm import tqdm import numpy as np net input shape none weights none include top false for n in tqdm range a net predict on batch np random randn output ██████████ flexible input from tensorflow keras applications import from tqdm import tqdm import numpy as np net input shape none weights none include top false for n in tqdm range a net predict on batch np random randn np random randint output upd for current stable version result is same flexible input from tensorflow keras applications import from tqdm import tqdm import numpy as np net input shape none weights none include top false for n in tqdm range a net predict on batch np random randn np random randint output
0
50,425
7,603,623,484
IssuesEvent
2018-04-29 16:24:49
golang/go
https://api.github.com/repos/golang/go
closed
cmd/compile: improve the help message of go tool compile -d ssa/help
Documentation NeedsFix
I noticed it was somewhat difficult to read the ssa/help output: ``` $ go tool compile -d ssa/help compile: GcFlag -d=ssa/<phase>/<flag>[=<value>]|[:<function_name>] <phase> is one of: check, all, build, intrinsics, early_phielim, early_copyelim early_deadcode, short_circuit, decompose_user, opt, zero_arg_cse opt_deadcode, generic_cse, phiopt, nilcheckelim, prove, loopbce decompose_builtin, dec, late_opt, generic_deadcode, check_bce writebarrier, fuse, dse, insert_resched_checks, tighten, lower lowered_cse, lowered_deadcode, checkLower, late_phielim, late_copyelim phi_tighten, late_deadcode, critical, likelyadjust, layout, schedule late_nilcheck, flagalloc, regalloc, stackframe, trim <flag> is one of on, off, debug, mem, time, test, stats, dump <value> defaults to 1 <function_name> is required for "dump", specifies name of function to dump after <phase> Except for dump, output is directed to standard out; dump appears in a file. Phase "all" supports flags "time", "mem", and "dump". Phases "intrinsics" supports flags "on", "off", and "debug". Interpretation of the "debug" value depends on the phase. Dump files are named <phase>__<function_name>_<seq>.dump. ``` With a few tweaks here and there it looks more pleasing to the eye: ``` $ go tool compile -d ssa/help compile: usage: -d=ssa/<phase>/<flag>[=<value>|<function_name>] <phase> is one of: check, all, build, intrinsics, early_phielim, early_copyelim, early_deadcode short_circuit, decompose_user, opt, zero_arg_cse, opt_deadcode, generic_cse phiopt, nilcheckelim, prove, loopbce, decompose_builtin, dec, late_opt generic_deadcode, check_bce, writebarrier, fuse, dse, insert_resched_checks tighten, lower, lowered_cse, lowered_deadcode, checkLower, late_phielim late_copyelim, phi_tighten, late_deadcode, critical, likelyadjust, layout schedule, late_nilcheck, flagalloc, regalloc, stackframe, trim <flag> is one of on, off, debug, mem, time, test, stats, dump. Phase all supports flags time, mem, and dump. Phase intrinsics supports flags on, off, and debug. <value> defaults to 1. <function_name> is required for dump, specifies name of function to dump after <phase>. Except for dump, output is directed to standard out; dump appears in a file. Dump files are named <phase>__<function_name>_<seq>.dump. ```
1.0
cmd/compile: improve the help message of go tool compile -d ssa/help - I noticed it was somewhat difficult to read the ssa/help output: ``` $ go tool compile -d ssa/help compile: GcFlag -d=ssa/<phase>/<flag>[=<value>]|[:<function_name>] <phase> is one of: check, all, build, intrinsics, early_phielim, early_copyelim early_deadcode, short_circuit, decompose_user, opt, zero_arg_cse opt_deadcode, generic_cse, phiopt, nilcheckelim, prove, loopbce decompose_builtin, dec, late_opt, generic_deadcode, check_bce writebarrier, fuse, dse, insert_resched_checks, tighten, lower lowered_cse, lowered_deadcode, checkLower, late_phielim, late_copyelim phi_tighten, late_deadcode, critical, likelyadjust, layout, schedule late_nilcheck, flagalloc, regalloc, stackframe, trim <flag> is one of on, off, debug, mem, time, test, stats, dump <value> defaults to 1 <function_name> is required for "dump", specifies name of function to dump after <phase> Except for dump, output is directed to standard out; dump appears in a file. Phase "all" supports flags "time", "mem", and "dump". Phases "intrinsics" supports flags "on", "off", and "debug". Interpretation of the "debug" value depends on the phase. Dump files are named <phase>__<function_name>_<seq>.dump. ``` With a few tweaks here and there it looks more pleasing to the eye: ``` $ go tool compile -d ssa/help compile: usage: -d=ssa/<phase>/<flag>[=<value>|<function_name>] <phase> is one of: check, all, build, intrinsics, early_phielim, early_copyelim, early_deadcode short_circuit, decompose_user, opt, zero_arg_cse, opt_deadcode, generic_cse phiopt, nilcheckelim, prove, loopbce, decompose_builtin, dec, late_opt generic_deadcode, check_bce, writebarrier, fuse, dse, insert_resched_checks tighten, lower, lowered_cse, lowered_deadcode, checkLower, late_phielim late_copyelim, phi_tighten, late_deadcode, critical, likelyadjust, layout schedule, late_nilcheck, flagalloc, regalloc, stackframe, trim <flag> is one of on, off, debug, mem, time, test, stats, dump. Phase all supports flags time, mem, and dump. Phase intrinsics supports flags on, off, and debug. <value> defaults to 1. <function_name> is required for dump, specifies name of function to dump after <phase>. Except for dump, output is directed to standard out; dump appears in a file. Dump files are named <phase>__<function_name>_<seq>.dump. ```
non_main
cmd compile improve the help message of go tool compile d ssa help i noticed it was somewhat difficult to read the ssa help output go tool compile d ssa help compile gcflag d ssa is one of check all build intrinsics early phielim early copyelim early deadcode short circuit decompose user opt zero arg cse opt deadcode generic cse phiopt nilcheckelim prove loopbce decompose builtin dec late opt generic deadcode check bce writebarrier fuse dse insert resched checks tighten lower lowered cse lowered deadcode checklower late phielim late copyelim phi tighten late deadcode critical likelyadjust layout schedule late nilcheck flagalloc regalloc stackframe trim is one of on off debug mem time test stats dump defaults to is required for dump specifies name of function to dump after except for dump output is directed to standard out dump appears in a file phase all supports flags time mem and dump phases intrinsics supports flags on off and debug interpretation of the debug value depends on the phase dump files are named dump with a few tweaks here and there it looks more pleasing to the eye go tool compile d ssa help compile usage d ssa is one of check all build intrinsics early phielim early copyelim early deadcode short circuit decompose user opt zero arg cse opt deadcode generic cse phiopt nilcheckelim prove loopbce decompose builtin dec late opt generic deadcode check bce writebarrier fuse dse insert resched checks tighten lower lowered cse lowered deadcode checklower late phielim late copyelim phi tighten late deadcode critical likelyadjust layout schedule late nilcheck flagalloc regalloc stackframe trim is one of on off debug mem time test stats dump phase all supports flags time mem and dump phase intrinsics supports flags on off and debug defaults to is required for dump specifies name of function to dump after except for dump output is directed to standard out dump appears in a file dump files are named dump
0
327,404
24,133,937,850
IssuesEvent
2022-09-21 09:41:33
geosolutions-it/MapStore2
https://api.github.com/repos/geosolutions-it/MapStore2
opened
Complete the documentation and tests for Graticule and Scale of the print-lib
Documentation javascript
The documentation for the Graticule and the Scale of the print-lib is missing. See #7595 for Graticule and #7773 for Scale. Once the documentation is complete, test the two plugins locally on mapstore.
1.0
Complete the documentation and tests for Graticule and Scale of the print-lib - The documentation for the Graticule and the Scale of the print-lib is missing. See #7595 for Graticule and #7773 for Scale. Once the documentation is complete, test the two plugins locally on mapstore.
non_main
complete the documentation and tests for graticule and scale of the print lib the documentation for the graticule and the scale of the print lib is missing see for graticule and for scale once the documentation is complete test the two plugins locally on mapstore
0
1,569
6,572,329,831
IssuesEvent
2017-09-11 01:26:29
ansible/ansible-modules-extras
https://api.github.com/repos/ansible/ansible-modules-extras
closed
Rename osx_defaults module to macos_defaults
affects_2.3 feature_idea waiting_on_maintainer
##### ISSUE TYPE Feature Idea ##### COMPONENT NAME osx_defaults ##### ANSIBLE VERSION 2+ ##### SUMMARY Apple rebranded "OS X" as "macOS", the osx_defaults should follow suit to avoid confusion especially further down the line, i.e. rename the module "macos_defaults".
True
Rename osx_defaults module to macos_defaults - ##### ISSUE TYPE Feature Idea ##### COMPONENT NAME osx_defaults ##### ANSIBLE VERSION 2+ ##### SUMMARY Apple rebranded "OS X" as "macOS", the osx_defaults should follow suit to avoid confusion especially further down the line, i.e. rename the module "macos_defaults".
main
rename osx defaults module to macos defaults issue type feature idea component name osx defaults ansible version summary apple rebranded os x as macos the osx defaults should follow suit to avoid confusion especially further down the line i e rename the module macos defaults
1
4,471
23,317,515,704
IssuesEvent
2022-08-08 13:43:48
TCLP-UoC/Glossary
https://api.github.com/repos/TCLP-UoC/Glossary
closed
User story 2 - Notification of an update
Story KnowlO Trade Consume Maintain
As a knowledge owner/standard form owner, I want to know when a term was published and last updated, so that I can ensure my organisation provides the most up-to-date version of the term.
True
User story 2 - Notification of an update - As a knowledge owner/standard form owner, I want to know when a term was published and last updated, so that I can ensure my organisation provides the most up-to-date version of the term.
main
user story notification of an update as a knowledge owner standard form owner i want to know when a term was published and last updated so that i can ensure my organisation provides the most up to date version of the term
1
446,904
12,879,527,504
IssuesEvent
2020-07-11 22:50:47
clsid2/mpc-hc
https://api.github.com/repos/clsid2/mpc-hc
closed
Gestures for MPC on tablets&touch screens
enhancement help wanted low priority wontfix
Hello all, adding gestures as input to control various features of mpc, would that be possible? example: horizontal slide: forward or rev vertical: volume+/- double-tap on the left of the screen in the 1/4 of mpc size: prev file double-tap on the right 4/4: next file It would be super useful in fullscreen mode on touch enabled devices. ty
1.0
Gestures for MPC on tablets&touch screens - Hello all, adding gestures as input to control various features of mpc, would that be possible? example: horizontal slide: forward or rev vertical: volume+/- double-tap on the left of the screen in the 1/4 of mpc size: prev file double-tap on the right 4/4: next file It would be super useful in fullscreen mode on touch enabled devices. ty
non_main
gestures for mpc on tablets touch screens hello all adding gestures as input to control various features of mpc would that be possible example horizontal slide forward or rev vertical volume double tap on the left of the screen in the of mpc size prev file double tap on the right next file it would be super useful in fullscreen mode on touch enabled devices ty
0
83,511
10,330,538,121
IssuesEvent
2019-09-02 14:55:21
re1/jacq-javaee
https://api.github.com/repos/re1/jacq-javaee
opened
Deploy source documentation
documentation
Deploying the source documentation online allows for referencing from Confluence and therefore improves the overall technical documentation. [GitHub Pages](https://pages.github.com/) could be used to deploy a generated docs folder. Another approach avoiding misleading commits of documentation is the use of Git hooks to build documentation automatically. A static page host providing tools for building documentation independently might also be a good idea.
1.0
Deploy source documentation - Deploying the source documentation online allows for referencing from Confluence and therefore improves the overall technical documentation. [GitHub Pages](https://pages.github.com/) could be used to deploy a generated docs folder. Another approach avoiding misleading commits of documentation is the use of Git hooks to build documentation automatically. A static page host providing tools for building documentation independently might also be a good idea.
non_main
deploy source documentation deploying the source documentation online allows for referencing from confluence and therefore improves the overall technical documentation could be used to deploy a generated docs folder another approach avoiding misleading commits of documentation is the use of git hooks to build documentation automatically a static page host providing tools for building documentation independently might also be a good idea
0
117,365
17,469,468,586
IssuesEvent
2021-08-06 23:09:25
AlexRogalskiy/quotes
https://api.github.com/repos/AlexRogalskiy/quotes
opened
CVE-2020-11023 (Medium) detected in jquery-1.9.1.js, jquery-1.8.1.min.js
security vulnerability
## CVE-2020-11023 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>jquery-1.9.1.js</b>, <b>jquery-1.8.1.min.js</b></p></summary> <p> <details><summary><b>jquery-1.9.1.js</b></p></summary> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.js</a></p> <p>Path to dependency file: quotes/node_modules/tinygradient/bower_components/tinycolor/index.html</p> <p>Path to vulnerable library: /node_modules/tinygradient/bower_components/tinycolor/demo/jquery-1.9.1.js</p> <p> Dependency Hierarchy: - :x: **jquery-1.9.1.js** (Vulnerable Library) </details> <details><summary><b>jquery-1.8.1.min.js</b></p></summary> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.1/jquery.min.js</a></p> <p>Path to dependency file: quotes/node_modules/redeyed/examples/browser/index.html</p> <p>Path to vulnerable library: /node_modules/redeyed/examples/browser/index.html</p> <p> Dependency Hierarchy: - :x: **jquery-1.8.1.min.js** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/AlexRogalskiy/quotes/commit/5ebabdb071650a3b223cba22df10d37102829e74">5ebabdb071650a3b223cba22df10d37102829e74</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In jQuery versions greater than or equal to 1.0.3 and before 3.5.0, passing HTML containing <option> elements from untrusted sources - even after sanitizing it - to one of jQuery's DOM manipulation methods (i.e. .html(), .append(), and others) may execute untrusted code. This problem is patched in jQuery 3.5.0. <p>Publish Date: 2020-04-29 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11023>CVE-2020-11023</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/jquery/jquery/security/advisories/GHSA-jpcq-cgw6-v4j6,https://github.com/rails/jquery-rails/blob/master/CHANGELOG.md#440">https://github.com/jquery/jquery/security/advisories/GHSA-jpcq-cgw6-v4j6,https://github.com/rails/jquery-rails/blob/master/CHANGELOG.md#440</a></p> <p>Release Date: 2020-04-29</p> <p>Fix Resolution: jquery - 3.5.0;jquery-rails - 4.4.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2020-11023 (Medium) detected in jquery-1.9.1.js, jquery-1.8.1.min.js - ## CVE-2020-11023 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>jquery-1.9.1.js</b>, <b>jquery-1.8.1.min.js</b></p></summary> <p> <details><summary><b>jquery-1.9.1.js</b></p></summary> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.js</a></p> <p>Path to dependency file: quotes/node_modules/tinygradient/bower_components/tinycolor/index.html</p> <p>Path to vulnerable library: /node_modules/tinygradient/bower_components/tinycolor/demo/jquery-1.9.1.js</p> <p> Dependency Hierarchy: - :x: **jquery-1.9.1.js** (Vulnerable Library) </details> <details><summary><b>jquery-1.8.1.min.js</b></p></summary> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.1/jquery.min.js</a></p> <p>Path to dependency file: quotes/node_modules/redeyed/examples/browser/index.html</p> <p>Path to vulnerable library: /node_modules/redeyed/examples/browser/index.html</p> <p> Dependency Hierarchy: - :x: **jquery-1.8.1.min.js** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/AlexRogalskiy/quotes/commit/5ebabdb071650a3b223cba22df10d37102829e74">5ebabdb071650a3b223cba22df10d37102829e74</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In jQuery versions greater than or equal to 1.0.3 and before 3.5.0, passing HTML containing <option> elements from untrusted sources - even after sanitizing it - to one of jQuery's DOM manipulation methods (i.e. .html(), .append(), and others) may execute untrusted code. This problem is patched in jQuery 3.5.0. <p>Publish Date: 2020-04-29 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11023>CVE-2020-11023</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/jquery/jquery/security/advisories/GHSA-jpcq-cgw6-v4j6,https://github.com/rails/jquery-rails/blob/master/CHANGELOG.md#440">https://github.com/jquery/jquery/security/advisories/GHSA-jpcq-cgw6-v4j6,https://github.com/rails/jquery-rails/blob/master/CHANGELOG.md#440</a></p> <p>Release Date: 2020-04-29</p> <p>Fix Resolution: jquery - 3.5.0;jquery-rails - 4.4.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_main
cve medium detected in jquery js jquery min js cve medium severity vulnerability vulnerable libraries jquery js jquery min js jquery js javascript library for dom operations library home page a href path to dependency file quotes node modules tinygradient bower components tinycolor index html path to vulnerable library node modules tinygradient bower components tinycolor demo jquery js dependency hierarchy x jquery js vulnerable library jquery min js javascript library for dom operations library home page a href path to dependency file quotes node modules redeyed examples browser index html path to vulnerable library node modules redeyed examples browser index html dependency hierarchy x jquery min js vulnerable library found in head commit a href found in base branch master vulnerability details in jquery versions greater than or equal to and before passing html containing elements from untrusted sources even after sanitizing it to one of jquery s dom manipulation methods i e html append and others may execute untrusted code this problem is patched in jquery publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution jquery jquery rails step up your open source security game with whitesource
0
5,354
26,965,669,558
IssuesEvent
2023-02-08 22:07:09
pulp/pulp-oci-images
https://api.github.com/repos/pulp/pulp-oci-images
closed
Replace https images with a variable for https
Maintainability
Publishing separate images for https is a lot of work & maintenance. Using https should be determined by an environment variable instead.
True
Replace https images with a variable for https - Publishing separate images for https is a lot of work & maintenance. Using https should be determined by an environment variable instead.
main
replace https images with a variable for https publishing separate images for https is a lot of work maintenance using https should be determined by an environment variable instead
1
492
3,785,482,361
IssuesEvent
2016-03-20 14:59:45
duckduckgo/zeroclickinfo-spice
https://api.github.com/repos/duckduckgo/zeroclickinfo-spice
opened
ExpandURL: API Gone offline? Need replacement!
Maintainer Input Requested
It looks like http://longurl.org is offline -- For now I've turned of this IA. We need to determine if the API is offline permanently and if so, find an alternative or remove the Instant Answer until we have an API. ------ IA Page: http://duck.co/ia/view/expand_url [Maintainer](http://docs.duckduckhack.com/maintaining/guidelines.html): @adman
True
ExpandURL: API Gone offline? Need replacement! - It looks like http://longurl.org is offline -- For now I've turned of this IA. We need to determine if the API is offline permanently and if so, find an alternative or remove the Instant Answer until we have an API. ------ IA Page: http://duck.co/ia/view/expand_url [Maintainer](http://docs.duckduckhack.com/maintaining/guidelines.html): @adman
main
expandurl api gone offline need replacement it looks like is offline for now i ve turned of this ia we need to determine if the api is offline permanently and if so find an alternative or remove the instant answer until we have an api ia page adman
1
270,035
23,486,126,299
IssuesEvent
2022-08-17 14:32:55
apache/shardingsphere
https://api.github.com/repos/apache/shardingsphere
closed
use env to manage the container in transaction IT
in: test
now there are some duplicated code for container management in transaction IT module. this should be managed by integration-test env module
1.0
use env to manage the container in transaction IT - now there are some duplicated code for container management in transaction IT module. this should be managed by integration-test env module
non_main
use env to manage the container in transaction it now there are some duplicated code for container management in transaction it module this should be managed by integration test env module
0
1,042
4,846,787,800
IssuesEvent
2016-11-10 13:01:44
ansible/ansible-modules-core
https://api.github.com/repos/ansible/ansible-modules-core
closed
Missing documentation for "profile" option of "rds" Amazon module.
affects_2.3 aws cloud docs_report waiting_on_maintainer
##### ISSUE TYPE - Documentation Report ##### COMPONENT NAME ansible-modules-core/cloud/amazon/rds.py ##### ANSIBLE VERSION all? ##### CONFIGURATION n/a ##### SUMMARY The documentation for "profile" option (and probably other options) is not shown in the current documentation of [RDS Amazon module](http://docs.ansible.com/ansible/rds_module.html). Probably related to missing `extends_documentation_fragment: aws` and/or `extends_documentation_fragment: ec2` in [cloud/amazon/rds.py](https://github.com/ansible/ansible-modules-core/blob/devel/cloud/amazon/rds.py#L223-L227)?
True
Missing documentation for "profile" option of "rds" Amazon module. - ##### ISSUE TYPE - Documentation Report ##### COMPONENT NAME ansible-modules-core/cloud/amazon/rds.py ##### ANSIBLE VERSION all? ##### CONFIGURATION n/a ##### SUMMARY The documentation for "profile" option (and probably other options) is not shown in the current documentation of [RDS Amazon module](http://docs.ansible.com/ansible/rds_module.html). Probably related to missing `extends_documentation_fragment: aws` and/or `extends_documentation_fragment: ec2` in [cloud/amazon/rds.py](https://github.com/ansible/ansible-modules-core/blob/devel/cloud/amazon/rds.py#L223-L227)?
main
missing documentation for profile option of rds amazon module issue type documentation report component name ansible modules core cloud amazon rds py ansible version all configuration n a summary the documentation for profile option and probably other options is not shown in the current documentation of probably related to missing extends documentation fragment aws and or extends documentation fragment in
1
4,483
23,360,468,344
IssuesEvent
2022-08-10 11:13:53
chocolatey-community/chocolatey-package-requests
https://api.github.com/repos/chocolatey-community/chocolatey-package-requests
closed
RFP - antidupl
Status: Available For Maintainer(s)
## Checklist - [X] The package I am requesting does not already exist on https://chocolatey.org/packages; - [X] There is no open issue for this package; - [x] The issue title starts with 'RFP - '; - [X] The download URL is public and not locked behind a paywall / login; ## Package Details Software project URL : https://github.com/ermig1979/AntiDupl Direct download URL for the software / installer : https://github.com/ermig1979/AntiDupl/releases/download/v2.3.10/AntiDupl.NET-2.3.10.exe Software summary / short description: A program to search similar and defect pictures on the disk <!-- ## Package Expectations Here you can make suggestions on what you would expect the package to do outside of 'installing' - eg. adding icons to the desktop -->
True
RFP - antidupl - ## Checklist - [X] The package I am requesting does not already exist on https://chocolatey.org/packages; - [X] There is no open issue for this package; - [x] The issue title starts with 'RFP - '; - [X] The download URL is public and not locked behind a paywall / login; ## Package Details Software project URL : https://github.com/ermig1979/AntiDupl Direct download URL for the software / installer : https://github.com/ermig1979/AntiDupl/releases/download/v2.3.10/AntiDupl.NET-2.3.10.exe Software summary / short description: A program to search similar and defect pictures on the disk <!-- ## Package Expectations Here you can make suggestions on what you would expect the package to do outside of 'installing' - eg. adding icons to the desktop -->
main
rfp antidupl checklist the package i am requesting does not already exist on there is no open issue for this package the issue title starts with rfp the download url is public and not locked behind a paywall login package details software project url direct download url for the software installer software summary short description a program to search similar and defect pictures on the disk package expectations here you can make suggestions on what you would expect the package to do outside of installing eg adding icons to the desktop
1
4,257
21,154,345,424
IssuesEvent
2022-04-07 00:21:27
tModLoader/tModLoader
https://api.github.com/repos/tModLoader/tModLoader
opened
Generation Passes modernization
Improvement Requestor-TML Maintainers
Similarly to #2139, this is a proposal for modernization of everything related to generation layers. ## Current Design First, have a look at the common usage of the current (1.3) TML's generation pass designs: ```cs public class WorldGenSystem : ModSystem { // ... public override void ModifyWorldGenTasks(List<GenPass> tasks, ref float totalWeight) { int index = tasks.FindLastIndex(x => x.Name == "Settle Liquids Again"); if (index != -1) { tasks.Insert(index + 1, new PassLegacy("ModularTools:Sulfur", (progress, configuration) => { progress.Message = "Crystallizing sulfur"; foreach (Point poolLocation in Hooking.PoolLocations) { if (poolLocation.Y > WorldGen.lavaLine) { WorldUtils.Gen(poolLocation, new Shapes.Circle(10), new GenerateSulfurAction()); } } })); } } } ``` (Taken from Itorius' ModularTools) ## Why do anything? These are the 'problems' that the following design will attempt to solve: - The current usage & design involve boilerplate (like meddling with `ModSystem`s) and leave too much in the hands of API users. For example: caching generation pass instances, writing layer insertion code defensively, etc. The former has likely never been done right, and the lack of the latter in mods has been a common pain for many years -- a ton of mods that add tooltips, which use the same design, have had many cases of conflicts with mods that remove or modify vanilla tooltips. - The act of 'generating' anything is not generalized. This means that dealing with different vanilla generations is done through separate hooks that can be considered hardcode - `ModifyWorldGenTasks`, `ModifyHardmodeTasks`, with people having asked for `ModifyAltarTasks`, and with support for modifying meteor spawning also nowhere to be found. - The previous problem also extends with the fact that the API does not support creation of custom generations by mods. Some content mods add custom meteors, and it's nothing crazy for addons to want to be able to add to them or modify them. ## Proposal **Everything past this point may be incomplete and poorly written, somewhat of a sketch.** The suggested solution for the first problem is nothing unexpected by now - like with interface layers, we somewhat copy the design of player layers from #1047. The latter two problems are solvable by making generations be instanced, and perhaps having generation types use the type system. Here's a short, non-final summary of suggested changes: Generation Passes: - Make the `GenPass` (or a derivative) class a self-sufficient `ModType`, with `ModSystem.ModifyInterfaceLayers` hooks removed in favor of automatic registration. - Make generation pass orders determined at load-time using topological sorting & anchors (all the required code is already there.) - Create readonly static fields with wrappers of vanilla generation passes, exactly like within the `Terraria.DrawStructures.PlayerDrawLayers` class. `PassLegacy` class, or its constructor, would be turned `internal`. - Replace removal & reordering of generation passes with hiding instead. The design from the aforementioned PR, where reordering would be done with hiding the original layer and adding a wrapper layer at the same position, seems to be working well. Generation Types: - Create a `WorldGeneration` class, which will be a container for default visibility settings of generation passes. - Create static `Default`, `Hardmode`, `AltarSmash` `Meteor` default generations as static readonly fields / properties on `WorldGeneration`, or `WorldGenerations` class. Whatever sounds best? - Create methods for running world generations with `WorldGeneration` instances, invoking hooks for toggling genpasses' appearance on them. ## New usage sketch Each genpass will be able to go into its own file, and enable themselves for initializing world generations. Types deriving from `WorldGeneration` will be able to modify their own default lists of enabled generation passes. Hooks (supposedly in ModSystems) will allow people will be the last to modify already defined visibility of genpasses on world generations. ```cs public sealed class SulfurOreGenerationPass : GenPass { public override Position GetDefaultPosition() => new AfterParent(GenerationPasses.SettleLiquidsAgain); public override bool GetDefaultVisibility(WorldGeneration generation) => generation == WorldGeneration.Default; protected override void ApplyPass(GenerationProgress progress, GameConfiguration configuration) { progress.Message = "Crystallizing sulfur"; foreach (Point poolLocation in Hooking.PoolLocations) { if (poolLocation.Y > WorldGen.lavaLine) { WorldUtils.Gen(poolLocation, new Shapes.Circle(10), new GenerateSulfurAction()); } } } } ```
True
Generation Passes modernization - Similarly to #2139, this is a proposal for modernization of everything related to generation layers. ## Current Design First, have a look at the common usage of the current (1.3) TML's generation pass designs: ```cs public class WorldGenSystem : ModSystem { // ... public override void ModifyWorldGenTasks(List<GenPass> tasks, ref float totalWeight) { int index = tasks.FindLastIndex(x => x.Name == "Settle Liquids Again"); if (index != -1) { tasks.Insert(index + 1, new PassLegacy("ModularTools:Sulfur", (progress, configuration) => { progress.Message = "Crystallizing sulfur"; foreach (Point poolLocation in Hooking.PoolLocations) { if (poolLocation.Y > WorldGen.lavaLine) { WorldUtils.Gen(poolLocation, new Shapes.Circle(10), new GenerateSulfurAction()); } } })); } } } ``` (Taken from Itorius' ModularTools) ## Why do anything? These are the 'problems' that the following design will attempt to solve: - The current usage & design involve boilerplate (like meddling with `ModSystem`s) and leave too much in the hands of API users. For example: caching generation pass instances, writing layer insertion code defensively, etc. The former has likely never been done right, and the lack of the latter in mods has been a common pain for many years -- a ton of mods that add tooltips, which use the same design, have had many cases of conflicts with mods that remove or modify vanilla tooltips. - The act of 'generating' anything is not generalized. This means that dealing with different vanilla generations is done through separate hooks that can be considered hardcode - `ModifyWorldGenTasks`, `ModifyHardmodeTasks`, with people having asked for `ModifyAltarTasks`, and with support for modifying meteor spawning also nowhere to be found. - The previous problem also extends with the fact that the API does not support creation of custom generations by mods. Some content mods add custom meteors, and it's nothing crazy for addons to want to be able to add to them or modify them. ## Proposal **Everything past this point may be incomplete and poorly written, somewhat of a sketch.** The suggested solution for the first problem is nothing unexpected by now - like with interface layers, we somewhat copy the design of player layers from #1047. The latter two problems are solvable by making generations be instanced, and perhaps having generation types use the type system. Here's a short, non-final summary of suggested changes: Generation Passes: - Make the `GenPass` (or a derivative) class a self-sufficient `ModType`, with `ModSystem.ModifyInterfaceLayers` hooks removed in favor of automatic registration. - Make generation pass orders determined at load-time using topological sorting & anchors (all the required code is already there.) - Create readonly static fields with wrappers of vanilla generation passes, exactly like within the `Terraria.DrawStructures.PlayerDrawLayers` class. `PassLegacy` class, or its constructor, would be turned `internal`. - Replace removal & reordering of generation passes with hiding instead. The design from the aforementioned PR, where reordering would be done with hiding the original layer and adding a wrapper layer at the same position, seems to be working well. Generation Types: - Create a `WorldGeneration` class, which will be a container for default visibility settings of generation passes. - Create static `Default`, `Hardmode`, `AltarSmash` `Meteor` default generations as static readonly fields / properties on `WorldGeneration`, or `WorldGenerations` class. Whatever sounds best? - Create methods for running world generations with `WorldGeneration` instances, invoking hooks for toggling genpasses' appearance on them. ## New usage sketch Each genpass will be able to go into its own file, and enable themselves for initializing world generations. Types deriving from `WorldGeneration` will be able to modify their own default lists of enabled generation passes. Hooks (supposedly in ModSystems) will allow people will be the last to modify already defined visibility of genpasses on world generations. ```cs public sealed class SulfurOreGenerationPass : GenPass { public override Position GetDefaultPosition() => new AfterParent(GenerationPasses.SettleLiquidsAgain); public override bool GetDefaultVisibility(WorldGeneration generation) => generation == WorldGeneration.Default; protected override void ApplyPass(GenerationProgress progress, GameConfiguration configuration) { progress.Message = "Crystallizing sulfur"; foreach (Point poolLocation in Hooking.PoolLocations) { if (poolLocation.Y > WorldGen.lavaLine) { WorldUtils.Gen(poolLocation, new Shapes.Circle(10), new GenerateSulfurAction()); } } } } ```
main
generation passes modernization similarly to this is a proposal for modernization of everything related to generation layers current design first have a look at the common usage of the current tml s generation pass designs cs public class worldgensystem modsystem public override void modifyworldgentasks list tasks ref float totalweight int index tasks findlastindex x x name settle liquids again if index tasks insert index new passlegacy modulartools sulfur progress configuration progress message crystallizing sulfur foreach point poollocation in hooking poollocations if poollocation y worldgen lavaline worldutils gen poollocation new shapes circle new generatesulfuraction taken from itorius modulartools why do anything these are the problems that the following design will attempt to solve the current usage design involve boilerplate like meddling with modsystem s and leave too much in the hands of api users for example caching generation pass instances writing layer insertion code defensively etc the former has likely never been done right and the lack of the latter in mods has been a common pain for many years a ton of mods that add tooltips which use the same design have had many cases of conflicts with mods that remove or modify vanilla tooltips the act of generating anything is not generalized this means that dealing with different vanilla generations is done through separate hooks that can be considered hardcode modifyworldgentasks modifyhardmodetasks with people having asked for modifyaltartasks and with support for modifying meteor spawning also nowhere to be found the previous problem also extends with the fact that the api does not support creation of custom generations by mods some content mods add custom meteors and it s nothing crazy for addons to want to be able to add to them or modify them proposal everything past this point may be incomplete and poorly written somewhat of a sketch the suggested solution for the first problem is nothing unexpected by now like with interface layers we somewhat copy the design of player layers from the latter two problems are solvable by making generations be instanced and perhaps having generation types use the type system here s a short non final summary of suggested changes generation passes make the genpass or a derivative class a self sufficient modtype with modsystem modifyinterfacelayers hooks removed in favor of automatic registration make generation pass orders determined at load time using topological sorting anchors all the required code is already there create readonly static fields with wrappers of vanilla generation passes exactly like within the terraria drawstructures playerdrawlayers class passlegacy class or its constructor would be turned internal replace removal reordering of generation passes with hiding instead the design from the aforementioned pr where reordering would be done with hiding the original layer and adding a wrapper layer at the same position seems to be working well generation types create a worldgeneration class which will be a container for default visibility settings of generation passes create static default hardmode altarsmash meteor default generations as static readonly fields properties on worldgeneration or worldgenerations class whatever sounds best create methods for running world generations with worldgeneration instances invoking hooks for toggling genpasses appearance on them new usage sketch each genpass will be able to go into its own file and enable themselves for initializing world generations types deriving from worldgeneration will be able to modify their own default lists of enabled generation passes hooks supposedly in modsystems will allow people will be the last to modify already defined visibility of genpasses on world generations cs public sealed class sulfuroregenerationpass genpass public override position getdefaultposition new afterparent generationpasses settleliquidsagain public override bool getdefaultvisibility worldgeneration generation generation worldgeneration default protected override void applypass generationprogress progress gameconfiguration configuration progress message crystallizing sulfur foreach point poollocation in hooking poollocations if poollocation y worldgen lavaline worldutils gen poollocation new shapes circle new generatesulfuraction
1
4,835
24,928,573,649
IssuesEvent
2022-10-31 09:40:24
pypiserver/pypiserver
https://api.github.com/repos/pypiserver/pypiserver
closed
Reboot project CI/CD
type.Maintainance
# What Reboot the CI/CD to get the project a little bit up to speed and resume publishing new features. ## DOD This is an approximate list of things I think would be nice to set up to be fully operational, of course not all is a must but would be great to have. All suggestions are very welcome. - Deployments and feature releases - [x] ~Set up a clear and low-effort versioning & release strategy~ (see #405) - [x] Ensure new versions are published to [PyPi repository](https://pypi.org/project/pypiserver/) - [x] Ensure new versions are published to [Docker Hub](https://hub.docker.com/r/pypiserver/pypiserver) - Testing and Validation: - [x] Make sure CI/CD tests and linting steps are reliable for the main supported Python version (3.7) - [x] Make sure CI/CD tests and linting steps are reliable for other supported Python versions (>3.7 and <3.7)
True
Reboot project CI/CD - # What Reboot the CI/CD to get the project a little bit up to speed and resume publishing new features. ## DOD This is an approximate list of things I think would be nice to set up to be fully operational, of course not all is a must but would be great to have. All suggestions are very welcome. - Deployments and feature releases - [x] ~Set up a clear and low-effort versioning & release strategy~ (see #405) - [x] Ensure new versions are published to [PyPi repository](https://pypi.org/project/pypiserver/) - [x] Ensure new versions are published to [Docker Hub](https://hub.docker.com/r/pypiserver/pypiserver) - Testing and Validation: - [x] Make sure CI/CD tests and linting steps are reliable for the main supported Python version (3.7) - [x] Make sure CI/CD tests and linting steps are reliable for other supported Python versions (>3.7 and <3.7)
main
reboot project ci cd what reboot the ci cd to get the project a little bit up to speed and resume publishing new features dod this is an approximate list of things i think would be nice to set up to be fully operational of course not all is a must but would be great to have all suggestions are very welcome deployments and feature releases set up a clear and low effort versioning release strategy see ensure new versions are published to ensure new versions are published to testing and validation make sure ci cd tests and linting steps are reliable for the main supported python version make sure ci cd tests and linting steps are reliable for other supported python versions and
1
49,028
7,469,922,159
IssuesEvent
2018-04-03 01:43:05
dgraph-io/badger
https://api.github.com/repos/dgraph-io/badger
closed
Badger Writes Should Return an Error if DB is Closed
documentation help wanted low-pri
Currently, writes to a closed database result in a panic: ``` panic: send on closed channel goroutine 412 [running]: github.com/capsule8/reactive8/vendor/github.com/dgraph-io/badger.(*DB).sendToWriteCh(0xc42036a600, 0xc420bed2b0, 0x2, 0x2, 0xc420293bb8, 0x10, 0x89 /go/src/github.com/capsule8/reactive8/vendor/github.com/dgraph-io/badger/db.go:589 +0x168 github.com/capsule8/reactive8/vendor/github.com/dgraph-io/badger.(*DB).batchSet(0xc42036a600, 0xc420bed2b0, 0x2, 0x2, 0x4, 0x8) /go/src/github.com/capsule8/reactive8/vendor/github.com/dgraph-io/badger/db.go:659 +0x4d github.com/capsule8/reactive8/vendor/github.com/dgraph-io/badger.(*Txn).Commit(0xc420be3440, 0x0, 0x0, 0x0) /go/src/github.com/capsule8/reactive8/vendor/github.com/dgraph-io/badger/transaction.go:500 +0x847 github.com/capsule8/reactive8/vendor/github.com/dgraph-io/badger.(*DB).Update(0xc42036a600, 0xc420293d70, 0x0, 0x0) /go/src/github.com/capsule8/reactive8/vendor/github.com/dgraph-io/badger/transaction.go:568 +0xd3 ``` Ideally, writes to a closed DB should probably return an exported error named `ErrBadgerClosed` or something similar.
1.0
Badger Writes Should Return an Error if DB is Closed - Currently, writes to a closed database result in a panic: ``` panic: send on closed channel goroutine 412 [running]: github.com/capsule8/reactive8/vendor/github.com/dgraph-io/badger.(*DB).sendToWriteCh(0xc42036a600, 0xc420bed2b0, 0x2, 0x2, 0xc420293bb8, 0x10, 0x89 /go/src/github.com/capsule8/reactive8/vendor/github.com/dgraph-io/badger/db.go:589 +0x168 github.com/capsule8/reactive8/vendor/github.com/dgraph-io/badger.(*DB).batchSet(0xc42036a600, 0xc420bed2b0, 0x2, 0x2, 0x4, 0x8) /go/src/github.com/capsule8/reactive8/vendor/github.com/dgraph-io/badger/db.go:659 +0x4d github.com/capsule8/reactive8/vendor/github.com/dgraph-io/badger.(*Txn).Commit(0xc420be3440, 0x0, 0x0, 0x0) /go/src/github.com/capsule8/reactive8/vendor/github.com/dgraph-io/badger/transaction.go:500 +0x847 github.com/capsule8/reactive8/vendor/github.com/dgraph-io/badger.(*DB).Update(0xc42036a600, 0xc420293d70, 0x0, 0x0) /go/src/github.com/capsule8/reactive8/vendor/github.com/dgraph-io/badger/transaction.go:568 +0xd3 ``` Ideally, writes to a closed DB should probably return an exported error named `ErrBadgerClosed` or something similar.
non_main
badger writes should return an error if db is closed currently writes to a closed database result in a panic panic send on closed channel goroutine github com vendor github com dgraph io badger db sendtowritech go src github com vendor github com dgraph io badger db go github com vendor github com dgraph io badger db batchset go src github com vendor github com dgraph io badger db go github com vendor github com dgraph io badger txn commit go src github com vendor github com dgraph io badger transaction go github com vendor github com dgraph io badger db update go src github com vendor github com dgraph io badger transaction go ideally writes to a closed db should probably return an exported error named errbadgerclosed or something similar
0
5,780
30,631,531,366
IssuesEvent
2023-07-24 14:50:04
jupyter-naas/awesome-notebooks
https://api.github.com/repos/jupyter-naas/awesome-notebooks
closed
Pandas - Format URL as clickable link on column
templates maintainer
This notebook will show how to format a URL as a clickable link on a column of a Pandas DataFrame. This is usefull for organizations to quickly access to a website from a DataFrame.
True
Pandas - Format URL as clickable link on column - This notebook will show how to format a URL as a clickable link on a column of a Pandas DataFrame. This is usefull for organizations to quickly access to a website from a DataFrame.
main
pandas format url as clickable link on column this notebook will show how to format a url as a clickable link on a column of a pandas dataframe this is usefull for organizations to quickly access to a website from a dataframe
1
20,651
3,830,327,271
IssuesEvent
2016-03-31 14:15:17
hioa-cs/IncludeOS
https://api.github.com/repos/hioa-cs/IncludeOS
opened
Porting disk-creation to Mac
OS X Test VirtualBox
All of the disk tests use gnu/posix programs to automate creation of disk images and filesystems. This means the tests can't be run automatically on OSX. The tests need to be ported in a simple manner so as not to introduce too much difference between the tests. Additionally, the disks that aren't linked into the service image will have to be added to VirtualBox using its image-creation API.
1.0
Porting disk-creation to Mac - All of the disk tests use gnu/posix programs to automate creation of disk images and filesystems. This means the tests can't be run automatically on OSX. The tests need to be ported in a simple manner so as not to introduce too much difference between the tests. Additionally, the disks that aren't linked into the service image will have to be added to VirtualBox using its image-creation API.
non_main
porting disk creation to mac all of the disk tests use gnu posix programs to automate creation of disk images and filesystems this means the tests can t be run automatically on osx the tests need to be ported in a simple manner so as not to introduce too much difference between the tests additionally the disks that aren t linked into the service image will have to be added to virtualbox using its image creation api
0
3,002
11,042,477,527
IssuesEvent
2019-12-09 09:15:02
expo/expo-cli
https://api.github.com/repos/expo/expo-cli
closed
Zip end of central directory signature not found
needs response from maintainer
# READ THIS FIRST, PLEASE! We're looking to keep questions on our forums and bug reports on the GitHub repo -- please choose whichever you feel is more appropriate for your issue: - Post in our community forums (log in with your Expo developer account): https://forums.expo.io/c/help - File a bug on the Expo CLI repo (for bugs related to the Expo CLI tools): https://github.com/expo/expo-cli/issues/new - File a bug on the main Expo repo (for other bugs): https://github.com/expo/expo/issues/new - Request a feature on Canny: https://expo.canny.io/feature-requests Thanks for reporting the issue you found with Expo CLI! # Required format for issues Please make our job easier by filling this template out to completion. ## Description Getting error when running `expo upload:ios` from command line. ## Expected Behavior This should work without error and upload the app the to the app store. ## Observed Behavior Getting the following error message ``` > Failed to upload the standalone app to the app store. > Zip end of central directory signature not found > Error: Zip end of central directory signature not found > at _callee2$ (/expo-cli@2.16.1/src/commands/upload/utils.js:54:11) > at tryCatch (/Users/lm/.nvm/versions/node/v8.11.2/lib/node_modules/expo-cli/node_modules/regenerator-runtime/runtime.js:62:40) > at Generator.invoke [as _invoke] (/Users/lm/.nvm/versions/node/v8.11.2/lib/node_modules/expo-cli/node_modules/regenerator-runtime/runtime.js:296:22) > at Generator.prototype.(anonymous function) [as next] (/Users/lm/.nvm/versions/node/v8.11.2/lib/node_modules/expo-cli/node_modules/regenerator-runtime/runtime.js:114:21) > at step (/Users/lm/.nvm/versions/node/v8.11.2/lib/node_modules/expo-cli/node_modules/babel-runtime/helpers/asyncToGenerator.js:17:30) > at /Users/lm/.nvm/versions/node/v8.11.2/lib/node_modules/expo-cli/node_modules/babel-runtime/helpers/asyncToGenerator.js:28:13 > at <anonymous> > at process._tickCallback (internal/process/next_tick.js:188:7) ``` This happens after a login to app store: ``` [00:13:18]: [DevCenter] App 'xxx.app' already exists, nothing to do on the Dev Center [00:13:22]: App 'xxx.app' already exists (xxx), nothing to do on App Store Connect Uploading the app to Testflight, hold tight... [00:13:24]: Login to App Store Connect (xxx@gmail.com) [00:13:27]: Login successful Failed to upload the standalone app to the app store. Zip end of central directory signature not found Set EXPO_DEBUG=true in your env to view the stack trace. ``` ## Environment Expo CLI 2.16.1 environment info: System: OS: macOS 10.14.4 Shell: 5.3 - /bin/zsh Binaries: Node: 8.11.2 - ~/.nvm/versions/node/v8.11.2/bin/node Yarn: 1.12.3 - /usr/local/bin/yarn npm: 6.7.0 - ~/.nvm/versions/node/v8.11.2/bin/npm Watchman: 4.9.0 - /usr/local/bin/watchman IDEs: Android Studio: 3.3 AI-182.5107.16.33.5264788 Xcode: 10.1/10B61 - /usr/bin/xcodebuild npmPackages: expo: ^31.0.6 => 31.0.6 react: 16.5.0 => 16.5.0 react-native: https://github.com/expo/react-native/archive/sdk-31.0.1.tar.gz => 0.57.1 react-navigation: 3.9.1 => 3.9.1 npmGlobalPackages: expo-cli: 2.16.1 ## Reproducible Demo Please provide a minimized reproducible demonstration of the problem you're reporting. Issues that come with minimal repro's are resolved much more quickly than issues where a maintainer has to reproduce themselves.
True
Zip end of central directory signature not found - # READ THIS FIRST, PLEASE! We're looking to keep questions on our forums and bug reports on the GitHub repo -- please choose whichever you feel is more appropriate for your issue: - Post in our community forums (log in with your Expo developer account): https://forums.expo.io/c/help - File a bug on the Expo CLI repo (for bugs related to the Expo CLI tools): https://github.com/expo/expo-cli/issues/new - File a bug on the main Expo repo (for other bugs): https://github.com/expo/expo/issues/new - Request a feature on Canny: https://expo.canny.io/feature-requests Thanks for reporting the issue you found with Expo CLI! # Required format for issues Please make our job easier by filling this template out to completion. ## Description Getting error when running `expo upload:ios` from command line. ## Expected Behavior This should work without error and upload the app the to the app store. ## Observed Behavior Getting the following error message ``` > Failed to upload the standalone app to the app store. > Zip end of central directory signature not found > Error: Zip end of central directory signature not found > at _callee2$ (/expo-cli@2.16.1/src/commands/upload/utils.js:54:11) > at tryCatch (/Users/lm/.nvm/versions/node/v8.11.2/lib/node_modules/expo-cli/node_modules/regenerator-runtime/runtime.js:62:40) > at Generator.invoke [as _invoke] (/Users/lm/.nvm/versions/node/v8.11.2/lib/node_modules/expo-cli/node_modules/regenerator-runtime/runtime.js:296:22) > at Generator.prototype.(anonymous function) [as next] (/Users/lm/.nvm/versions/node/v8.11.2/lib/node_modules/expo-cli/node_modules/regenerator-runtime/runtime.js:114:21) > at step (/Users/lm/.nvm/versions/node/v8.11.2/lib/node_modules/expo-cli/node_modules/babel-runtime/helpers/asyncToGenerator.js:17:30) > at /Users/lm/.nvm/versions/node/v8.11.2/lib/node_modules/expo-cli/node_modules/babel-runtime/helpers/asyncToGenerator.js:28:13 > at <anonymous> > at process._tickCallback (internal/process/next_tick.js:188:7) ``` This happens after a login to app store: ``` [00:13:18]: [DevCenter] App 'xxx.app' already exists, nothing to do on the Dev Center [00:13:22]: App 'xxx.app' already exists (xxx), nothing to do on App Store Connect Uploading the app to Testflight, hold tight... [00:13:24]: Login to App Store Connect (xxx@gmail.com) [00:13:27]: Login successful Failed to upload the standalone app to the app store. Zip end of central directory signature not found Set EXPO_DEBUG=true in your env to view the stack trace. ``` ## Environment Expo CLI 2.16.1 environment info: System: OS: macOS 10.14.4 Shell: 5.3 - /bin/zsh Binaries: Node: 8.11.2 - ~/.nvm/versions/node/v8.11.2/bin/node Yarn: 1.12.3 - /usr/local/bin/yarn npm: 6.7.0 - ~/.nvm/versions/node/v8.11.2/bin/npm Watchman: 4.9.0 - /usr/local/bin/watchman IDEs: Android Studio: 3.3 AI-182.5107.16.33.5264788 Xcode: 10.1/10B61 - /usr/bin/xcodebuild npmPackages: expo: ^31.0.6 => 31.0.6 react: 16.5.0 => 16.5.0 react-native: https://github.com/expo/react-native/archive/sdk-31.0.1.tar.gz => 0.57.1 react-navigation: 3.9.1 => 3.9.1 npmGlobalPackages: expo-cli: 2.16.1 ## Reproducible Demo Please provide a minimized reproducible demonstration of the problem you're reporting. Issues that come with minimal repro's are resolved much more quickly than issues where a maintainer has to reproduce themselves.
main
zip end of central directory signature not found read this first please we re looking to keep questions on our forums and bug reports on the github repo please choose whichever you feel is more appropriate for your issue post in our community forums log in with your expo developer account file a bug on the expo cli repo for bugs related to the expo cli tools file a bug on the main expo repo for other bugs request a feature on canny thanks for reporting the issue you found with expo cli required format for issues please make our job easier by filling this template out to completion description getting error when running expo upload ios from command line expected behavior this should work without error and upload the app the to the app store observed behavior getting the following error message failed to upload the standalone app to the app store zip end of central directory signature not found error zip end of central directory signature not found at expo cli src commands upload utils js at trycatch users lm nvm versions node lib node modules expo cli node modules regenerator runtime runtime js at generator invoke users lm nvm versions node lib node modules expo cli node modules regenerator runtime runtime js at generator prototype anonymous function users lm nvm versions node lib node modules expo cli node modules regenerator runtime runtime js at step users lm nvm versions node lib node modules expo cli node modules babel runtime helpers asynctogenerator js at users lm nvm versions node lib node modules expo cli node modules babel runtime helpers asynctogenerator js at at process tickcallback internal process next tick js this happens after a login to app store app xxx app already exists nothing to do on the dev center app xxx app already exists xxx nothing to do on app store connect uploading the app to testflight hold tight login to app store connect xxx gmail com login successful failed to upload the standalone app to the app store zip end of central directory signature not found set expo debug true in your env to view the stack trace environment expo cli environment info system os macos shell bin zsh binaries node nvm versions node bin node yarn usr local bin yarn npm nvm versions node bin npm watchman usr local bin watchman ides android studio ai xcode usr bin xcodebuild npmpackages expo react react native react navigation npmglobalpackages expo cli reproducible demo please provide a minimized reproducible demonstration of the problem you re reporting issues that come with minimal repro s are resolved much more quickly than issues where a maintainer has to reproduce themselves
1
6,065
2,582,811,371
IssuesEvent
2015-02-15 17:46:51
SoylentNews/slashcode
https://api.github.com/repos/SoylentNews/slashcode
closed
Add mod ban info to admin user info
Feature Request Priority: High
add the mod ban date field to the user info admins see when looking at a user page. This field should allow the admin to adjust the date to shorten the ban or to remove it. Or you could come up with a differnt UI if it seems better.
1.0
Add mod ban info to admin user info - add the mod ban date field to the user info admins see when looking at a user page. This field should allow the admin to adjust the date to shorten the ban or to remove it. Or you could come up with a differnt UI if it seems better.
non_main
add mod ban info to admin user info add the mod ban date field to the user info admins see when looking at a user page this field should allow the admin to adjust the date to shorten the ban or to remove it or you could come up with a differnt ui if it seems better
0
90,983
18,283,276,421
IssuesEvent
2021-10-05 07:25:59
Regalis11/Barotrauma
https://api.github.com/repos/Regalis11/Barotrauma
closed
Buggy abandoned outpost (ID taken by ...)
Bug Code Crash
- [yes] I have searched the issue tracker to check if the issue has already been reported. **Description** I got an error when entering an abandoned outpost, its generation is weird and it's missing some walls. ![image](https://user-images.githubusercontent.com/55637865/132111341-e930ae89-703f-49a4-894e-561c08ef9b75.png) **Steps To Reproduce** use save attached **Version** windows v0.15.1.0 unstable **Additional information** [stfu.zip](https://github.com/Regalis11/Barotrauma/files/7110700/stfu.zip)
1.0
Buggy abandoned outpost (ID taken by ...) - - [yes] I have searched the issue tracker to check if the issue has already been reported. **Description** I got an error when entering an abandoned outpost, its generation is weird and it's missing some walls. ![image](https://user-images.githubusercontent.com/55637865/132111341-e930ae89-703f-49a4-894e-561c08ef9b75.png) **Steps To Reproduce** use save attached **Version** windows v0.15.1.0 unstable **Additional information** [stfu.zip](https://github.com/Regalis11/Barotrauma/files/7110700/stfu.zip)
non_main
buggy abandoned outpost id taken by i have searched the issue tracker to check if the issue has already been reported description i got an error when entering an abandoned outpost its generation is weird and it s missing some walls steps to reproduce use save attached version windows unstable additional information
0
5,013
25,759,611,025
IssuesEvent
2022-12-08 19:16:36
aws/aws-sam-cli
https://api.github.com/repos/aws/aws-sam-cli
closed
sam build and dotnet lambda package-ci produce different templates
platform/windows stage/needs-investigation maintainer/need-response
### Description sam build and dotnet lambda package-ci produce different templates ### Steps to reproduce 1. Create AWS Serverless App (C#) with Visual Studio 2019 AWS Toolkit. 2. Make sure you can successfully publish it from Visual Studio using 'publish AWS lambda" 3. Attempt to run it locally using sam local invoke. 4. Attempt to run it locally using sam local start-lambda and aws lambda invoke. 5. Run sam build and use the template generated to run sam local invoke or sam local start-lambda ### Observed result Both #3 and #4 fail with an error: Could not find the specified handler assembly with the file name 'SmapiLrdService.MS.Serverless, Culture=neutral, PublicKeyToken=null'. The assembly should be located in the root of your uploaded .zip file. #5 succeeds ### Expected result Since this "Hello World" lambda can be deployed successfully from Visual Studio AWS Toolkit serverless project, I would expect SAM CLI to work as well. ### Additional environment details (Ex: Windows, Mac, Amazon Linux etc) 1. OS: Windows 2. `sam --version`: 0.17.0 The problem: dotnet lambda package-ci output run by Visual Studio 2019 AWS Toolkit has the same binaries, but slightly different template format from one produced by sam build. It would be beneficial for the teams to get together and resolve the issue. `Add --debug flag to command you are running`
True
sam build and dotnet lambda package-ci produce different templates - ### Description sam build and dotnet lambda package-ci produce different templates ### Steps to reproduce 1. Create AWS Serverless App (C#) with Visual Studio 2019 AWS Toolkit. 2. Make sure you can successfully publish it from Visual Studio using 'publish AWS lambda" 3. Attempt to run it locally using sam local invoke. 4. Attempt to run it locally using sam local start-lambda and aws lambda invoke. 5. Run sam build and use the template generated to run sam local invoke or sam local start-lambda ### Observed result Both #3 and #4 fail with an error: Could not find the specified handler assembly with the file name 'SmapiLrdService.MS.Serverless, Culture=neutral, PublicKeyToken=null'. The assembly should be located in the root of your uploaded .zip file. #5 succeeds ### Expected result Since this "Hello World" lambda can be deployed successfully from Visual Studio AWS Toolkit serverless project, I would expect SAM CLI to work as well. ### Additional environment details (Ex: Windows, Mac, Amazon Linux etc) 1. OS: Windows 2. `sam --version`: 0.17.0 The problem: dotnet lambda package-ci output run by Visual Studio 2019 AWS Toolkit has the same binaries, but slightly different template format from one produced by sam build. It would be beneficial for the teams to get together and resolve the issue. `Add --debug flag to command you are running`
main
sam build and dotnet lambda package ci produce different templates description sam build and dotnet lambda package ci produce different templates steps to reproduce create aws serverless app c with visual studio aws toolkit make sure you can successfully publish it from visual studio using publish aws lambda attempt to run it locally using sam local invoke attempt to run it locally using sam local start lambda and aws lambda invoke run sam build and use the template generated to run sam local invoke or sam local start lambda observed result both and fail with an error could not find the specified handler assembly with the file name smapilrdservice ms serverless culture neutral publickeytoken null the assembly should be located in the root of your uploaded zip file succeeds expected result since this hello world lambda can be deployed successfully from visual studio aws toolkit serverless project i would expect sam cli to work as well additional environment details ex windows mac amazon linux etc os windows sam version the problem dotnet lambda package ci output run by visual studio aws toolkit has the same binaries but slightly different template format from one produced by sam build it would be beneficial for the teams to get together and resolve the issue add debug flag to command you are running
1
1,419
6,187,961,124
IssuesEvent
2017-07-04 08:58:39
ocaml/opam-repository
https://api.github.com/repos/ocaml/opam-repository
closed
Alpine 3.3 broken with latest conf-which update
depext needs maintainer action
#9568 adds a depext under Alpine for the `which` package. That package does not exist under Alpine 3.3. Does depext support OS version constraints by any chance? If not, is Alpine 3.3 considered new enough to be supported? If this is fixable I'd be happy to make a PR.
True
Alpine 3.3 broken with latest conf-which update - #9568 adds a depext under Alpine for the `which` package. That package does not exist under Alpine 3.3. Does depext support OS version constraints by any chance? If not, is Alpine 3.3 considered new enough to be supported? If this is fixable I'd be happy to make a PR.
main
alpine broken with latest conf which update adds a depext under alpine for the which package that package does not exist under alpine does depext support os version constraints by any chance if not is alpine considered new enough to be supported if this is fixable i d be happy to make a pr
1
17,414
11,995,503,888
IssuesEvent
2020-04-08 15:18:17
solo-io/service-mesh-hub
https://api.github.com/repos/solo-io/service-mesh-hub
opened
Expose controller-runtime metrics for multicluster managers
Area: Usability
The controller-runtime manager by default emits a slew of metrics as can be seen [here](https://pkg.go.dev/sigs.k8s.io/controller-runtime/pkg/manager?tab=doc#Options). Unfortunately these metrics do not scale well for our multi cluster use case. Each cluster requires its own manager, and each manager requires a unique bind port to emit metrics. Therefore we need to come up with a way to allocate non-overlapping bind ports, and then aggregate those metrics in a user-friendly way for both us and our users. The first step of this would definitely be exposing the local manager on 9091
True
Expose controller-runtime metrics for multicluster managers - The controller-runtime manager by default emits a slew of metrics as can be seen [here](https://pkg.go.dev/sigs.k8s.io/controller-runtime/pkg/manager?tab=doc#Options). Unfortunately these metrics do not scale well for our multi cluster use case. Each cluster requires its own manager, and each manager requires a unique bind port to emit metrics. Therefore we need to come up with a way to allocate non-overlapping bind ports, and then aggregate those metrics in a user-friendly way for both us and our users. The first step of this would definitely be exposing the local manager on 9091
non_main
expose controller runtime metrics for multicluster managers the controller runtime manager by default emits a slew of metrics as can be seen unfortunately these metrics do not scale well for our multi cluster use case each cluster requires its own manager and each manager requires a unique bind port to emit metrics therefore we need to come up with a way to allocate non overlapping bind ports and then aggregate those metrics in a user friendly way for both us and our users the first step of this would definitely be exposing the local manager on
0
1,121
4,989,605,802
IssuesEvent
2016-12-08 12:28:56
ansible/ansible-modules-core
https://api.github.com/repos/ansible/ansible-modules-core
closed
docker_container does not allow to disable container logging via log_driver
affects_2.2 bug_report cloud docker waiting_on_maintainer
##### ISSUE TYPE - Bug Report ##### COMPONENT NAME docker_container ##### ANSIBLE VERSION ``` ansible 2.2.0 (devel 28feba2fb3) last updated 2016/09/14 12:25:32 (GMT +200) lib/ansible/modules/core: (detached HEAD ae6992bf8c) last updated 2016/09/14 12:25:32 (GMT +200) lib/ansible/modules/extras: (detached HEAD afd0b23836) last updated 2016/09/14 12:25:32 (GMT +200) ``` ##### CONFIGURATION N/A ##### OS / ENVIRONMENT N/A ##### SUMMARY It is not possible to disable container logging, although 'none' is a valid option for docker run. > none Disables any logging for the container. docker logs won’t be available with this driver. > Source: https://docs.docker.com/engine/admin/logging/overview/ ##### STEPS TO REPRODUCE ``` docker_container: [...] log_driver: none ``` ##### EXPECTED RESULTS Container with disabled logging started. ##### ACTUAL RESULTS ``` FAILED! => {"changed": false, "failed": true, "msg": "value of log_driver must be one of: json-file,syslog,journald,gelf,fluentd,awslogs,splunk, got: none"} ```
True
docker_container does not allow to disable container logging via log_driver - ##### ISSUE TYPE - Bug Report ##### COMPONENT NAME docker_container ##### ANSIBLE VERSION ``` ansible 2.2.0 (devel 28feba2fb3) last updated 2016/09/14 12:25:32 (GMT +200) lib/ansible/modules/core: (detached HEAD ae6992bf8c) last updated 2016/09/14 12:25:32 (GMT +200) lib/ansible/modules/extras: (detached HEAD afd0b23836) last updated 2016/09/14 12:25:32 (GMT +200) ``` ##### CONFIGURATION N/A ##### OS / ENVIRONMENT N/A ##### SUMMARY It is not possible to disable container logging, although 'none' is a valid option for docker run. > none Disables any logging for the container. docker logs won’t be available with this driver. > Source: https://docs.docker.com/engine/admin/logging/overview/ ##### STEPS TO REPRODUCE ``` docker_container: [...] log_driver: none ``` ##### EXPECTED RESULTS Container with disabled logging started. ##### ACTUAL RESULTS ``` FAILED! => {"changed": false, "failed": true, "msg": "value of log_driver must be one of: json-file,syslog,journald,gelf,fluentd,awslogs,splunk, got: none"} ```
main
docker container does not allow to disable container logging via log driver issue type bug report component name docker container ansible version ansible devel last updated gmt lib ansible modules core detached head last updated gmt lib ansible modules extras detached head last updated gmt configuration n a os environment n a summary it is not possible to disable container logging although none is a valid option for docker run none disables any logging for the container docker logs won’t be available with this driver source steps to reproduce docker container log driver none expected results container with disabled logging started actual results failed changed false failed true msg value of log driver must be one of json file syslog journald gelf fluentd awslogs splunk got none
1
35,100
6,412,910,234
IssuesEvent
2017-08-08 05:41:01
georgringer/news
https://api.github.com/repos/georgringer/news
closed
Documentation: Import realurl unique aliases for import of tt_news
Documentation Needs feedback from author t3dd
Would be nice to see a migration guide for Realurls unique aliases when importing from tt_news. ``` # Zwischentabelle erstellen CREATE TABLE tx_realurl_uniqalias_migration LIKE tx_realurl_uniqalias; # kopieren INSERT INTO tx_realurl_uniqalias_migration SELECT * FROM tx_realurl_uniqalias WHERE tablename='tt_news'; # Korrigieren UPDATE tx_realurl_uniqalias_migration SET value_id = (SELECT tx_news_domain_model_news.uid FROM `tx_news_domain_model_news` WHERE tx_news_domain_model_news.import_id=tx_realurl_uniqalias_migration.value_id),tablename='tx_news_domain_model_news' WHERE tablename='tt_news'; # Kaputte aliase entfernen (News, die nicht importiert wurden) DELETE FROM tx_realurl_uniqalias_migration WHERE tablename='tx_news_domain_model_news' AND value_id=0; # Zurückspielen INSERT INTO tx_realurl_uniqalias (tstamp,tablename,field_id,value_alias,value_id,lang,expire) SELECT tstamp,tablename,field_id,value_alias,value_id,lang,expire FROM tx_realurl_uniqalias_migration ``` Gruß Christoph
1.0
Documentation: Import realurl unique aliases for import of tt_news - Would be nice to see a migration guide for Realurls unique aliases when importing from tt_news. ``` # Zwischentabelle erstellen CREATE TABLE tx_realurl_uniqalias_migration LIKE tx_realurl_uniqalias; # kopieren INSERT INTO tx_realurl_uniqalias_migration SELECT * FROM tx_realurl_uniqalias WHERE tablename='tt_news'; # Korrigieren UPDATE tx_realurl_uniqalias_migration SET value_id = (SELECT tx_news_domain_model_news.uid FROM `tx_news_domain_model_news` WHERE tx_news_domain_model_news.import_id=tx_realurl_uniqalias_migration.value_id),tablename='tx_news_domain_model_news' WHERE tablename='tt_news'; # Kaputte aliase entfernen (News, die nicht importiert wurden) DELETE FROM tx_realurl_uniqalias_migration WHERE tablename='tx_news_domain_model_news' AND value_id=0; # Zurückspielen INSERT INTO tx_realurl_uniqalias (tstamp,tablename,field_id,value_alias,value_id,lang,expire) SELECT tstamp,tablename,field_id,value_alias,value_id,lang,expire FROM tx_realurl_uniqalias_migration ``` Gruß Christoph
non_main
documentation import realurl unique aliases for import of tt news would be nice to see a migration guide for realurls unique aliases when importing from tt news zwischentabelle erstellen create table tx realurl uniqalias migration like tx realurl uniqalias kopieren insert into tx realurl uniqalias migration select from tx realurl uniqalias where tablename tt news korrigieren update tx realurl uniqalias migration set value id select tx news domain model news uid from tx news domain model news where tx news domain model news import id tx realurl uniqalias migration value id tablename tx news domain model news where tablename tt news kaputte aliase entfernen news die nicht importiert wurden delete from tx realurl uniqalias migration where tablename tx news domain model news and value id zurückspielen insert into tx realurl uniqalias tstamp tablename field id value alias value id lang expire select tstamp tablename field id value alias value id lang expire from tx realurl uniqalias migration gruß christoph
0
5,230
26,534,834,814
IssuesEvent
2023-01-19 14:58:44
mozilla/foundation.mozilla.org
https://api.github.com/repos/mozilla/foundation.mozilla.org
closed
Update GitHub templates to include 'needs grooming' label by default
engineering maintain
This is a follow-up ticket from [Create a GitHub action to add 'needs grooming' label to any ticket added to the repo #9708 ](https://github.com/mozilla/foundation.mozilla.org/issues/9708) The requirement is to update the following GitHub templates to include the label 'needs grooming' by default: - Design to Dev Handoff - Bug report - Code cleanup - Implementation issue - Feature request - Design to Dev Handoff - Other issue
True
Update GitHub templates to include 'needs grooming' label by default - This is a follow-up ticket from [Create a GitHub action to add 'needs grooming' label to any ticket added to the repo #9708 ](https://github.com/mozilla/foundation.mozilla.org/issues/9708) The requirement is to update the following GitHub templates to include the label 'needs grooming' by default: - Design to Dev Handoff - Bug report - Code cleanup - Implementation issue - Feature request - Design to Dev Handoff - Other issue
main
update github templates to include needs grooming label by default this is a follow up ticket from create a github action to add needs grooming label to any ticket added to the repo the requirement is to update the following github templates to include the label needs grooming by default design to dev handoff bug report code cleanup implementation issue feature request design to dev handoff other issue
1
3,777
15,892,224,400
IssuesEvent
2021-04-10 22:52:49
precice/tutorials
https://api.github.com/repos/precice/tutorials
closed
Create generic clean script
maintainability
As part of the [tutorial restructuring](https://github.com/orgs/precice/projects/5), we also want to change how cleaning works. Currently, every tutorial case has its own `Allclean` script located at the root of the case. This leads to a lot of code duplication. What we could do instead: * Solver-specific cleaning scripts under `tools`: ``` - clean-openfoam.sh - clean-calculix.sh - ... ``` * A `clean.sh` per case, which calls the necessary solver-specific cleaning script. Maybe we need to pass the participant's name as an argument for this. * Cleaning of preCICE-specific things (run folder, log files) could also be outsources to a `tools/clean-precice`.
True
Create generic clean script - As part of the [tutorial restructuring](https://github.com/orgs/precice/projects/5), we also want to change how cleaning works. Currently, every tutorial case has its own `Allclean` script located at the root of the case. This leads to a lot of code duplication. What we could do instead: * Solver-specific cleaning scripts under `tools`: ``` - clean-openfoam.sh - clean-calculix.sh - ... ``` * A `clean.sh` per case, which calls the necessary solver-specific cleaning script. Maybe we need to pass the participant's name as an argument for this. * Cleaning of preCICE-specific things (run folder, log files) could also be outsources to a `tools/clean-precice`.
main
create generic clean script as part of the we also want to change how cleaning works currently every tutorial case has its own allclean script located at the root of the case this leads to a lot of code duplication what we could do instead solver specific cleaning scripts under tools clean openfoam sh clean calculix sh a clean sh per case which calls the necessary solver specific cleaning script maybe we need to pass the participant s name as an argument for this cleaning of precice specific things run folder log files could also be outsources to a tools clean precice
1
3,473
13,312,468,102
IssuesEvent
2020-08-26 09:46:43
digitalpardoe/isyncit
https://api.github.com/repos/digitalpardoe/isyncit
closed
Browse Device Menu Item
Improvement No Longer Maintained
Again, more functionality like the Apple bluetooth menu bar item. This time a "Browse Device" option.
True
Browse Device Menu Item - Again, more functionality like the Apple bluetooth menu bar item. This time a "Browse Device" option.
main
browse device menu item again more functionality like the apple bluetooth menu bar item this time a browse device option
1
5,388
27,078,663,182
IssuesEvent
2023-02-14 12:29:43
grafana/k6-docs
https://api.github.com/repos/grafana/k6-docs
closed
Document "too many time series" performance insight.
Type: needsMaintainerHelp
Surfaced in #1018 , it seems the `too many time series` perf insight is missing. The basic structure already exists: ``` ## Too many time series - **Happens when:** - **What it might indicate:** - **Recommendations:** <Link to the "Cloud options" dropped tag option> ```
True
Document "too many time series" performance insight. - Surfaced in #1018 , it seems the `too many time series` perf insight is missing. The basic structure already exists: ``` ## Too many time series - **Happens when:** - **What it might indicate:** - **Recommendations:** <Link to the "Cloud options" dropped tag option> ```
main
document too many time series performance insight surfaced in it seems the too many time series perf insight is missing the basic structure already exists too many time series happens when what it might indicate recommendations
1
84
2,607,911,299
IssuesEvent
2015-02-26 00:18:13
mranney/node_pcap
https://api.github.com/repos/mranney/node_pcap
opened
Do you have a project using this library? Tell us about it!
maintainance
We would like to have several examples of projects using this library to do cool things with packet capture data for the readme. If you are an author, contributor or fan of such a library please tell us about it! :smiley_cat:
True
Do you have a project using this library? Tell us about it! - We would like to have several examples of projects using this library to do cool things with packet capture data for the readme. If you are an author, contributor or fan of such a library please tell us about it! :smiley_cat:
main
do you have a project using this library tell us about it we would like to have several examples of projects using this library to do cool things with packet capture data for the readme if you are an author contributor or fan of such a library please tell us about it smiley cat
1
49,495
13,187,220,595
IssuesEvent
2020-08-13 02:43:50
icecube-trac/tix3
https://api.github.com/repos/icecube-trac/tix3
opened
[topsimulator] has a number of #warnings (Trac #1529)
Incomplete Migration Migrated from Trac combo simulation defect
<details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/1529">https://code.icecube.wisc.edu/ticket/1529</a>, reported by kjmeagher and owned by jgonzalez</em></summary> <p> ```json { "status": "closed", "changetime": "2019-02-13T14:13:35", "description": "These look like TODOs", "reporter": "kjmeagher", "cc": "", "resolution": "fixed", "_ts": "1550067215093672", "component": "combo simulation", "summary": "[topsimulator] has a number of #warnings", "priority": "normal", "keywords": "", "time": "2016-01-26T10:20:59", "milestone": "", "owner": "jgonzalez", "type": "defect" } ``` </p> </details>
1.0
[topsimulator] has a number of #warnings (Trac #1529) - <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/1529">https://code.icecube.wisc.edu/ticket/1529</a>, reported by kjmeagher and owned by jgonzalez</em></summary> <p> ```json { "status": "closed", "changetime": "2019-02-13T14:13:35", "description": "These look like TODOs", "reporter": "kjmeagher", "cc": "", "resolution": "fixed", "_ts": "1550067215093672", "component": "combo simulation", "summary": "[topsimulator] has a number of #warnings", "priority": "normal", "keywords": "", "time": "2016-01-26T10:20:59", "milestone": "", "owner": "jgonzalez", "type": "defect" } ``` </p> </details>
non_main
has a number of warnings trac migrated from json status closed changetime description these look like todos reporter kjmeagher cc resolution fixed ts component combo simulation summary has a number of warnings priority normal keywords time milestone owner jgonzalez type defect
0
585,439
17,497,424,664
IssuesEvent
2021-08-10 03:44:38
craftercms/craftercms
https://api.github.com/repos/craftercms/craftercms
closed
[search] Error occurs while searching aggregations with data field ending with _mvs
bug priority: medium
## Describe the bug Adding the following object to an item's XML file, searching with ES causes an error about fielddata is disabled: ``` <document_o> <item> <fileType_mvs>html</fileType_mvs> </item> </document_o> ``` See the error below. ## To Reproduce Steps to reproduce the behavior: 1. Open an item XML file 2. Add the following field ``` <document_o> <item> <fileType_mvs>html</fileType_mvs> </item> </document_o> ``` 3. Commit then search with ES: ``` { "aggs": { "filetype": { "terms": { "field": "document_o.item.fileType_mvs" } } } } ``` 4. See error as following ## Expected behavior There should be no error and user should be able to aggregation with data field ## Screenshots ## Logs ``` {"error":{"root_cause":[{"type":"illegal_argument_exception","reason":"Fielddata is disabled on text fields by default. Set fielddata=true on [document_o.item.fileType_mvs] in order to load fielddata in memory by uninverting the inverted index. Note that this can however use significant memory. Alternatively use a keyword field instead."}],"type":"search_phase_execution_exception","reason":"all shards failed","phase":"query","grouped":true,"failed_shards":[{"shard":0,"index":"mis-preview_v1","node":"3OpXr7BsRKelixiGA4SppA","reason":{"type":"illegal_argument_exception","reason":"Fielddata is disabled on text fields by default. Set fielddata=true on [document_o.item.fileType_mvs] in order to load fielddata in memory by uninverting the inverted index. Note that this can however use significant memory. Alternatively use a keyword field instead."}}],"caused_by":{"type":"illegal_argument_exception","reason":"Fielddata is disabled on text fields by default. Set fielddata=true on [document_o.item.fileType_mvs] in order to load fielddata in memory by uninverting the inverted index. Note that this can however use significant memory. Alternatively use a keyword field instead.","caused_by":{"type":"illegal_argument_exception","reason":"Fielddata is disabled on text fields by default. Set fielddata=true on [document_o.item.fileType_mvs] in order to load fielddata in memory by uninverting the inverted index. Note that this can however use significant memory. Alternatively use a keyword field instead."}}},"status":400} ``` ## Specs ### Version 3.1.x ### OS Ubuntu ### Browser Any ## Additional context Mapping can be updated manually with: ``` curl -X PUT "localhost:9201/test-authoring_v1/_mapping/_doc?pretty" -H 'Content-Type: application/json' -d' { "properties": { "document_o.item.fileType_mvs": { "type": "text", "fielddata": true } } } ' ``` `_mvs` is missing from mapping: https://github.com/craftercms/search/blob/support/3.1.x/crafter-search-elasticsearch/src/main/resources/crafter/elasticsearch/default-mapping.json
1.0
[search] Error occurs while searching aggregations with data field ending with _mvs - ## Describe the bug Adding the following object to an item's XML file, searching with ES causes an error about fielddata is disabled: ``` <document_o> <item> <fileType_mvs>html</fileType_mvs> </item> </document_o> ``` See the error below. ## To Reproduce Steps to reproduce the behavior: 1. Open an item XML file 2. Add the following field ``` <document_o> <item> <fileType_mvs>html</fileType_mvs> </item> </document_o> ``` 3. Commit then search with ES: ``` { "aggs": { "filetype": { "terms": { "field": "document_o.item.fileType_mvs" } } } } ``` 4. See error as following ## Expected behavior There should be no error and user should be able to aggregation with data field ## Screenshots ## Logs ``` {"error":{"root_cause":[{"type":"illegal_argument_exception","reason":"Fielddata is disabled on text fields by default. Set fielddata=true on [document_o.item.fileType_mvs] in order to load fielddata in memory by uninverting the inverted index. Note that this can however use significant memory. Alternatively use a keyword field instead."}],"type":"search_phase_execution_exception","reason":"all shards failed","phase":"query","grouped":true,"failed_shards":[{"shard":0,"index":"mis-preview_v1","node":"3OpXr7BsRKelixiGA4SppA","reason":{"type":"illegal_argument_exception","reason":"Fielddata is disabled on text fields by default. Set fielddata=true on [document_o.item.fileType_mvs] in order to load fielddata in memory by uninverting the inverted index. Note that this can however use significant memory. Alternatively use a keyword field instead."}}],"caused_by":{"type":"illegal_argument_exception","reason":"Fielddata is disabled on text fields by default. Set fielddata=true on [document_o.item.fileType_mvs] in order to load fielddata in memory by uninverting the inverted index. Note that this can however use significant memory. Alternatively use a keyword field instead.","caused_by":{"type":"illegal_argument_exception","reason":"Fielddata is disabled on text fields by default. Set fielddata=true on [document_o.item.fileType_mvs] in order to load fielddata in memory by uninverting the inverted index. Note that this can however use significant memory. Alternatively use a keyword field instead."}}},"status":400} ``` ## Specs ### Version 3.1.x ### OS Ubuntu ### Browser Any ## Additional context Mapping can be updated manually with: ``` curl -X PUT "localhost:9201/test-authoring_v1/_mapping/_doc?pretty" -H 'Content-Type: application/json' -d' { "properties": { "document_o.item.fileType_mvs": { "type": "text", "fielddata": true } } } ' ``` `_mvs` is missing from mapping: https://github.com/craftercms/search/blob/support/3.1.x/crafter-search-elasticsearch/src/main/resources/crafter/elasticsearch/default-mapping.json
non_main
error occurs while searching aggregations with data field ending with mvs describe the bug adding the following object to an item s xml file searching with es causes an error about fielddata is disabled html see the error below to reproduce steps to reproduce the behavior open an item xml file add the following field html commit then search with es aggs filetype terms field document o item filetype mvs see error as following expected behavior there should be no error and user should be able to aggregation with data field screenshots logs error root cause in order to load fielddata in memory by uninverting the inverted index note that this can however use significant memory alternatively use a keyword field instead type search phase execution exception reason all shards failed phase query grouped true failed shards in order to load fielddata in memory by uninverting the inverted index note that this can however use significant memory alternatively use a keyword field instead caused by type illegal argument exception reason fielddata is disabled on text fields by default set fielddata true on in order to load fielddata in memory by uninverting the inverted index note that this can however use significant memory alternatively use a keyword field instead caused by type illegal argument exception reason fielddata is disabled on text fields by default set fielddata true on in order to load fielddata in memory by uninverting the inverted index note that this can however use significant memory alternatively use a keyword field instead status specs version x os ubuntu browser any additional context mapping can be updated manually with curl x put localhost test authoring mapping doc pretty h content type application json d properties document o item filetype mvs type text fielddata true mvs is missing from mapping
0
5,433
27,243,126,751
IssuesEvent
2023-02-21 22:27:12
simplesamlphp/simplesamlphp
https://api.github.com/repos/simplesamlphp/simplesamlphp
opened
Move custom error- and exception-handler to class
maintainability
**Is your feature request related to a problem? Please describe.** Currently the custom handlers are functions defined in `public/_include.php` which makes it hard, if not impossible, to unit-test them. **Describe the solution you'd like** I think we should move them to (a) separate class(es) somewhere within the `SimpleSAML\Error\` namespace. **Describe alternatives you've considered** Leave things as is.. Didn't like the idea, so I opened this issue ;)
True
Move custom error- and exception-handler to class - **Is your feature request related to a problem? Please describe.** Currently the custom handlers are functions defined in `public/_include.php` which makes it hard, if not impossible, to unit-test them. **Describe the solution you'd like** I think we should move them to (a) separate class(es) somewhere within the `SimpleSAML\Error\` namespace. **Describe alternatives you've considered** Leave things as is.. Didn't like the idea, so I opened this issue ;)
main
move custom error and exception handler to class is your feature request related to a problem please describe currently the custom handlers are functions defined in public include php which makes it hard if not impossible to unit test them describe the solution you d like i think we should move them to a separate class es somewhere within the simplesaml error namespace describe alternatives you ve considered leave things as is didn t like the idea so i opened this issue
1
32,361
13,795,086,070
IssuesEvent
2020-10-09 17:23:34
MicrosoftDocs/azure-docs
https://api.github.com/repos/MicrosoftDocs/azure-docs
closed
Missing info for Azure setup
Pri2 assigned-to-author cloud-services/svc doc-enhancement triaged
1. Had to add co-administrator under Access control (IAM) | Classic administrators Used my user. 2. Checking on your account, you may have to elevate your Global Admin access within your tenant in order to be able to deploy a resource. Please see how to do so in the link below: https://docs.microsoft.com/en-us/azure/role-based-access-control/elevate-access-global-admin Under ‘Azure Active Directory’ | Properties | Access management for Azure resources Had to change to Yes 3. I also had trouble with the VM Tier. Be sure your 'Cloud Service' and 'Storage Account' use the same Location and that that Location supports your VM Tier/Size. --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: 8cc8f1b2-fa7a-6772-e534-9f91b37106e7 * Version Independent ID: e9309449-36ab-f570-8d04-121b1158a507 * Content: [Get started with Azure Cloud Services and ASP.NET](https://docs.microsoft.com/en-us/azure/cloud-services/cloud-services-dotnet-get-started#feedback) * Content Source: [articles/cloud-services/cloud-services-dotnet-get-started.md](https://github.com/Microsoft/azure-docs/blob/master/articles/cloud-services/cloud-services-dotnet-get-started.md) * Service: **cloud-services** * GitHub Login: @tgore03 * Microsoft Alias: **tagore**
1.0
Missing info for Azure setup - 1. Had to add co-administrator under Access control (IAM) | Classic administrators Used my user. 2. Checking on your account, you may have to elevate your Global Admin access within your tenant in order to be able to deploy a resource. Please see how to do so in the link below: https://docs.microsoft.com/en-us/azure/role-based-access-control/elevate-access-global-admin Under ‘Azure Active Directory’ | Properties | Access management for Azure resources Had to change to Yes 3. I also had trouble with the VM Tier. Be sure your 'Cloud Service' and 'Storage Account' use the same Location and that that Location supports your VM Tier/Size. --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: 8cc8f1b2-fa7a-6772-e534-9f91b37106e7 * Version Independent ID: e9309449-36ab-f570-8d04-121b1158a507 * Content: [Get started with Azure Cloud Services and ASP.NET](https://docs.microsoft.com/en-us/azure/cloud-services/cloud-services-dotnet-get-started#feedback) * Content Source: [articles/cloud-services/cloud-services-dotnet-get-started.md](https://github.com/Microsoft/azure-docs/blob/master/articles/cloud-services/cloud-services-dotnet-get-started.md) * Service: **cloud-services** * GitHub Login: @tgore03 * Microsoft Alias: **tagore**
non_main
missing info for azure setup had to add co administrator under access control iam classic administrators used my user checking on your account you may have to elevate your global admin access within your tenant in order to be able to deploy a resource please see how to do so in the link below under ‘azure active directory’ properties access management for azure resources had to change to yes i also had trouble with the vm tier be sure your cloud service and storage account use the same location and that that location supports your vm tier size document details ⚠ do not edit this section it is required for docs microsoft com ➟ github issue linking id version independent id content content source service cloud services github login microsoft alias tagore
0
2,255
7,930,499,671
IssuesEvent
2018-07-06 19:06:31
AadityaNair/ProjectNephos
https://api.github.com/repos/AadityaNair/ProjectNephos
opened
[handlers]: Consistent run and execute_command
maintainability
`run` and `execute_command` are two interfaces for each handler. The former is for command-line usage while the latter is used when using programatically. Technically both should perform the same function with `run` calling `execute_command` and parsing/pretty printing it's output. But right now, that is not the case for all of them. Most of the `execute_command` implement the functionality for the orchestration. Either have it consistent or drop it as a common interface.
True
[handlers]: Consistent run and execute_command - `run` and `execute_command` are two interfaces for each handler. The former is for command-line usage while the latter is used when using programatically. Technically both should perform the same function with `run` calling `execute_command` and parsing/pretty printing it's output. But right now, that is not the case for all of them. Most of the `execute_command` implement the functionality for the orchestration. Either have it consistent or drop it as a common interface.
main
consistent run and execute command run and execute command are two interfaces for each handler the former is for command line usage while the latter is used when using programatically technically both should perform the same function with run calling execute command and parsing pretty printing it s output but right now that is not the case for all of them most of the execute command implement the functionality for the orchestration either have it consistent or drop it as a common interface
1
3,760
15,803,092,130
IssuesEvent
2021-04-03 12:50:36
arcticicestudio/styleguide-javascript
https://api.github.com/repos/arcticicestudio/styleguide-javascript
opened
Migrate to "tmpl" template repository
context-techstack context-workflow scope-compatibility scope-dx scope-maintainability scope-quality type-improvement
<p align="center"><img src="https://github.com/svengreb/tmpl/blob/main/assets/images/repository-hero.svg?raw=true"/></p> Migrate the project setup, structure and development workflow [from version 0.9.0][svengreb/tmpl-rl-v0.9.0] of the [“tmpl“ template repository][svengreb/tmpl]. Additionally specific assets like the repository hero image will be replaced and documentations like the _README_ and GitHub issue/PR templates will be adjusted. [svengreb/tmpl]: https://github.com/svengreb/tmpl [svengreb/tmpl-rl-v0.9.0]: https://github.com/svengreb/tmpl/releases/tag/v0.9.0
True
Migrate to "tmpl" template repository - <p align="center"><img src="https://github.com/svengreb/tmpl/blob/main/assets/images/repository-hero.svg?raw=true"/></p> Migrate the project setup, structure and development workflow [from version 0.9.0][svengreb/tmpl-rl-v0.9.0] of the [“tmpl“ template repository][svengreb/tmpl]. Additionally specific assets like the repository hero image will be replaced and documentations like the _README_ and GitHub issue/PR templates will be adjusted. [svengreb/tmpl]: https://github.com/svengreb/tmpl [svengreb/tmpl-rl-v0.9.0]: https://github.com/svengreb/tmpl/releases/tag/v0.9.0
main
migrate to tmpl template repository img src migrate the project setup structure and development workflow of the additionally specific assets like the repository hero image will be replaced and documentations like the readme and github issue pr templates will be adjusted
1
3,024
11,185,168,791
IssuesEvent
2019-12-31 22:56:26
laminas/laminas-http
https://api.github.com/repos/laminas/laminas-http
opened
SetCookie: leading dot in domain
Awaiting Maintainer Response
I have an issue with `SetCookie::isValidForRequest()`. There is an unexpected behavior with cookies, while requesting. The problem is that `SetCookie` for "**.**example.com" do not applying to "www.example.com" or even to "example.com". Due to [RFC6265-4.1.2.3](http://tools.ietf.org/html/rfc6265#section-4.1.2.3) it must pass cookie with domain "**.**example.com" if "www.example.com" or "example.com" is requested. ``` php if ($this->getDomain() && (strrpos($requestDomain, $this->getDomain()) === false)) { return false; } ``` --- I saw that SetCookie refers to [RFC2109](http://www.w3.org/Protocols/rfc2109/rfc2109) but it's too old (1997). ``` Prior to this document (RFC6265), there were at least three descriptions of cookies: the so-called "Netscape cookie specification" [Netscape], RFC 2109 [RFC2109], and RFC 2965 [RFC2965]. However, none of these documents describe how the Cookie and Set-Cookie headers are actually used on the Internet (see [Kri2001] for historical context). In relation to previous IETF specifications of HTTP state management mechanisms, this document requests the following actions: 1. Change the status of [RFC2109] to Historic (it has already been obsoleted by [RFC2965]). 2. Change the status of [RFC2965] to Historic. 3. Indicate that [RFC2965] has been obsoleted by this document. ``` --- In cases: ``` php (strrpos("www.example.com", ".example.com") === false) (strrpos("example.com", ".example.com") === false) ``` must return `false` to prevent method return `false`. --- **Solution** is to use `"." . ltrim($domain, ".")` ``` php if ($this->getDomain()) { if (strrpos(('.' . ltrim($requestDomain, '.')), ('.' . ltrim($this->getDomain(), '.'))) === false) { return false; } } ``` Some tests: ``` php $foo = function($value) { return '.' . ltrim($value, '.'); } ``` | `#` | `$domain` | `$requested` | `$foo($domain)` | `$foo($requested)` | `will apply` | | --: | --: | --: | --: | --: | --- | | `1` | `test.com` | `test.com` | `.test.com` | `.test.com` | `yes` | | `2` | `.test.com` | `test.com` | `.test.com` | `.test.com` | `yes` | | `3` | `www.test.com` | `test.com` | `.www.test.com` | `.test.com` | `no` | | `4` | `.www.test.com` | `test.com` | `.www.test.com` | `.test.com` | `no` | | `5` | `faketest.com` | `test.com` | `.faketest.com` | `.test.com` | `no` | | `6` | `test.com` | `www.test.com` | `.test.com` | `.www.test.com` | `yes` | | `7` | `.test.com` | `www.test.com` | `.test.com` | `.www.test.com` | `yes` | | `8` | `www.test.com` | `www.test.com` | `.www.test.com` | `.www.test.com` | `yes` | | `9` | `.www.test.com` | `www.test.com` | `.www.test.com` | `.www.test.com` | `yes` | | `10` | `faketest.com` | `www.test.com` | `.faketest.com` | `.www.test.com` | `no` | | `11` | `test.com` | `foo.test.com` | `.test.com` | `.foo.test.com` | `yes` | | `12` | `.test.com` | `foo.test.com` | `.test.com` | `.foo.test.com` | `yes` | | `13` | `www.test.com` | `foo.test.com` | `.www.test.com` | `.foo.test.com` | `no` | | `14` | `.www.test.com` | `foo.test.com` | `.www.test.com` | `.foo.test.com` | `no` | | `15` | `faketest.com` | `foo.test.com` | `.faketest.com` | `.foo.test.com` | `no` | --- Originally posted by @lysenkobv at https://github.com/zendframework/zend-http/issues/5
True
SetCookie: leading dot in domain - I have an issue with `SetCookie::isValidForRequest()`. There is an unexpected behavior with cookies, while requesting. The problem is that `SetCookie` for "**.**example.com" do not applying to "www.example.com" or even to "example.com". Due to [RFC6265-4.1.2.3](http://tools.ietf.org/html/rfc6265#section-4.1.2.3) it must pass cookie with domain "**.**example.com" if "www.example.com" or "example.com" is requested. ``` php if ($this->getDomain() && (strrpos($requestDomain, $this->getDomain()) === false)) { return false; } ``` --- I saw that SetCookie refers to [RFC2109](http://www.w3.org/Protocols/rfc2109/rfc2109) but it's too old (1997). ``` Prior to this document (RFC6265), there were at least three descriptions of cookies: the so-called "Netscape cookie specification" [Netscape], RFC 2109 [RFC2109], and RFC 2965 [RFC2965]. However, none of these documents describe how the Cookie and Set-Cookie headers are actually used on the Internet (see [Kri2001] for historical context). In relation to previous IETF specifications of HTTP state management mechanisms, this document requests the following actions: 1. Change the status of [RFC2109] to Historic (it has already been obsoleted by [RFC2965]). 2. Change the status of [RFC2965] to Historic. 3. Indicate that [RFC2965] has been obsoleted by this document. ``` --- In cases: ``` php (strrpos("www.example.com", ".example.com") === false) (strrpos("example.com", ".example.com") === false) ``` must return `false` to prevent method return `false`. --- **Solution** is to use `"." . ltrim($domain, ".")` ``` php if ($this->getDomain()) { if (strrpos(('.' . ltrim($requestDomain, '.')), ('.' . ltrim($this->getDomain(), '.'))) === false) { return false; } } ``` Some tests: ``` php $foo = function($value) { return '.' . ltrim($value, '.'); } ``` | `#` | `$domain` | `$requested` | `$foo($domain)` | `$foo($requested)` | `will apply` | | --: | --: | --: | --: | --: | --- | | `1` | `test.com` | `test.com` | `.test.com` | `.test.com` | `yes` | | `2` | `.test.com` | `test.com` | `.test.com` | `.test.com` | `yes` | | `3` | `www.test.com` | `test.com` | `.www.test.com` | `.test.com` | `no` | | `4` | `.www.test.com` | `test.com` | `.www.test.com` | `.test.com` | `no` | | `5` | `faketest.com` | `test.com` | `.faketest.com` | `.test.com` | `no` | | `6` | `test.com` | `www.test.com` | `.test.com` | `.www.test.com` | `yes` | | `7` | `.test.com` | `www.test.com` | `.test.com` | `.www.test.com` | `yes` | | `8` | `www.test.com` | `www.test.com` | `.www.test.com` | `.www.test.com` | `yes` | | `9` | `.www.test.com` | `www.test.com` | `.www.test.com` | `.www.test.com` | `yes` | | `10` | `faketest.com` | `www.test.com` | `.faketest.com` | `.www.test.com` | `no` | | `11` | `test.com` | `foo.test.com` | `.test.com` | `.foo.test.com` | `yes` | | `12` | `.test.com` | `foo.test.com` | `.test.com` | `.foo.test.com` | `yes` | | `13` | `www.test.com` | `foo.test.com` | `.www.test.com` | `.foo.test.com` | `no` | | `14` | `.www.test.com` | `foo.test.com` | `.www.test.com` | `.foo.test.com` | `no` | | `15` | `faketest.com` | `foo.test.com` | `.faketest.com` | `.foo.test.com` | `no` | --- Originally posted by @lysenkobv at https://github.com/zendframework/zend-http/issues/5
main
setcookie leading dot in domain i have an issue with setcookie isvalidforrequest there is an unexpected behavior with cookies while requesting the problem is that setcookie for example com do not applying to or even to example com due to it must pass cookie with domain example com if or example com is requested php if this getdomain strrpos requestdomain this getdomain false return false i saw that setcookie refers to but it s too old prior to this document there were at least three descriptions of cookies the so called netscape cookie specification rfc and rfc however none of these documents describe how the cookie and set cookie headers are actually used on the internet see for historical context in relation to previous ietf specifications of http state management mechanisms this document requests the following actions change the status of to historic it has already been obsoleted by change the status of to historic indicate that has been obsoleted by this document in cases php strrpos example com false strrpos example com example com false must return false to prevent method return false solution is to use ltrim domain php if this getdomain if strrpos ltrim requestdomain ltrim this getdomain false return false some tests php foo function value return ltrim value domain requested foo domain foo requested will apply test com test com test com test com yes test com test com test com test com yes test com test com no test com test com no faketest com test com faketest com test com no test com test com yes test com test com yes yes yes faketest com faketest com no test com foo test com test com foo test com yes test com foo test com test com foo test com yes foo test com foo test com no foo test com foo test com no faketest com foo test com faketest com foo test com no originally posted by lysenkobv at
1
5,070
25,960,112,080
IssuesEvent
2022-12-18 19:47:07
cran-task-views/Hydrology
https://api.github.com/repos/cran-task-views/Hydrology
closed
Package 'boussinesq' has been archived on CRAN for more than 60 days
maintainer-contacted
Package [boussinesq](https://CRAN.R-project.org/package=boussinesq) is currently listed in CRAN Task View [Hydrology](https://CRAN.R-project.org/view=Hydrology) but the package has actually been archived for more than 60 days on CRAN. Often this indicates that the package is currently not sufficiently actively maintained and should be excluded from the task view. Alternatively, you might also consider reaching out to the authors of the package and encourage (or even help) them to bring the package back to CRAN. In any case, the situation should be resolved in the next four weeks. If the package does not seem to be brought back to CRAN, please exclude it from the task view.
True
Package 'boussinesq' has been archived on CRAN for more than 60 days - Package [boussinesq](https://CRAN.R-project.org/package=boussinesq) is currently listed in CRAN Task View [Hydrology](https://CRAN.R-project.org/view=Hydrology) but the package has actually been archived for more than 60 days on CRAN. Often this indicates that the package is currently not sufficiently actively maintained and should be excluded from the task view. Alternatively, you might also consider reaching out to the authors of the package and encourage (or even help) them to bring the package back to CRAN. In any case, the situation should be resolved in the next four weeks. If the package does not seem to be brought back to CRAN, please exclude it from the task view.
main
package boussinesq has been archived on cran for more than days package is currently listed in cran task view but the package has actually been archived for more than days on cran often this indicates that the package is currently not sufficiently actively maintained and should be excluded from the task view alternatively you might also consider reaching out to the authors of the package and encourage or even help them to bring the package back to cran in any case the situation should be resolved in the next four weeks if the package does not seem to be brought back to cran please exclude it from the task view
1
5,198
26,424,494,533
IssuesEvent
2023-01-14 01:54:49
tgstation/tgstation
https://api.github.com/repos/tgstation/tgstation
closed
Two weird define things I noticed with jobs
Maintainability/Hinders improvements
## Reproduction: Neither of these cause immediate issues but they may in the future (just leaving these here so I don't forget) 1. Chemist uses "Chief Medical Officer" as a department head rather than the define `JOB_CHIEF_MEDICAL_OFFICER` https://github.com/tgstation/tgstation/blob/837c74ffb76a103b736028ec4cc33b884e1f1a0c/code/modules/jobs/job_types/chemist.dm#L5 2. Chaplain and Cargo Technician have `CAN_BE_INTERN` flag set twice https://github.com/tgstation/tgstation/blob/837c74ffb76a103b736028ec4cc33b884e1f1a0c/code/modules/jobs/job_types/chaplain.dm#L35
True
Two weird define things I noticed with jobs - ## Reproduction: Neither of these cause immediate issues but they may in the future (just leaving these here so I don't forget) 1. Chemist uses "Chief Medical Officer" as a department head rather than the define `JOB_CHIEF_MEDICAL_OFFICER` https://github.com/tgstation/tgstation/blob/837c74ffb76a103b736028ec4cc33b884e1f1a0c/code/modules/jobs/job_types/chemist.dm#L5 2. Chaplain and Cargo Technician have `CAN_BE_INTERN` flag set twice https://github.com/tgstation/tgstation/blob/837c74ffb76a103b736028ec4cc33b884e1f1a0c/code/modules/jobs/job_types/chaplain.dm#L35
main
two weird define things i noticed with jobs reproduction neither of these cause immediate issues but they may in the future just leaving these here so i don t forget chemist uses chief medical officer as a department head rather than the define job chief medical officer chaplain and cargo technician have can be intern flag set twice
1
43,706
5,683,701,111
IssuesEvent
2017-04-13 13:24:19
fabric8io/fabric8-ux
https://api.github.com/repos/fabric8io/fabric8-ux
closed
VISUALS (SPECS): IA
visual design
Verification Requirements: Refer to previous visual story: [VISUALS: IA](https://github.com/fabric8io/fabric8-ux/issues/93), then: - Add "Settings" to the top level nav - Figure out reasonable layout - Figure out User icon, Area icon, etc - Add specifications to previous visuals work - Post new visual specs to InVision, review with UX team members - Link to InVision prototypes from this story - Tag story as "Ready for Development"
1.0
VISUALS (SPECS): IA - Verification Requirements: Refer to previous visual story: [VISUALS: IA](https://github.com/fabric8io/fabric8-ux/issues/93), then: - Add "Settings" to the top level nav - Figure out reasonable layout - Figure out User icon, Area icon, etc - Add specifications to previous visuals work - Post new visual specs to InVision, review with UX team members - Link to InVision prototypes from this story - Tag story as "Ready for Development"
non_main
visuals specs ia verification requirements refer to previous visual story then add settings to the top level nav figure out reasonable layout figure out user icon area icon etc add specifications to previous visuals work post new visual specs to invision review with ux team members link to invision prototypes from this story tag story as ready for development
0
331,088
10,060,072,456
IssuesEvent
2019-07-22 17:56:23
geekman9097/Tankery
https://api.github.com/repos/geekman9097/Tankery
closed
Player views (esp gunner) don't always line up with expectation.
Lower Priority bug
If, as in the case of the light hull, the turret is not in the center point of the vehicle, the cunner and commander views still draw from that center pint, rather than the center of the turret. this causes some weird offset when trying to fire the cannon.
1.0
Player views (esp gunner) don't always line up with expectation. - If, as in the case of the light hull, the turret is not in the center point of the vehicle, the cunner and commander views still draw from that center pint, rather than the center of the turret. this causes some weird offset when trying to fire the cannon.
non_main
player views esp gunner don t always line up with expectation if as in the case of the light hull the turret is not in the center point of the vehicle the cunner and commander views still draw from that center pint rather than the center of the turret this causes some weird offset when trying to fire the cannon
0
336,258
24,491,061,610
IssuesEvent
2022-10-10 01:57:33
vamsitadikonda/chat-defender-bot
https://api.github.com/repos/vamsitadikonda/chat-defender-bot
closed
Badges inconsistent
bug documentation
The Lines badge is inconsistent. We also need to add more badges like the commit activity badge, pull requests data and provide badges for the technologies used in the README file.
1.0
Badges inconsistent - The Lines badge is inconsistent. We also need to add more badges like the commit activity badge, pull requests data and provide badges for the technologies used in the README file.
non_main
badges inconsistent the lines badge is inconsistent we also need to add more badges like the commit activity badge pull requests data and provide badges for the technologies used in the readme file
0
267,564
23,306,787,071
IssuesEvent
2022-08-08 02:30:30
apache/pulsar
https://api.github.com/repos/apache/pulsar
closed
Flaky-test: BrokerServiceThrottlingTest.testLookupThrottlingForClientByBroker
flaky-tests lifecycle/stale
<!--- Instructions for reporting a flaky test using this issue template: 1. Replace [test class] in title and body with the test class name 2. Replace [test method] in title and body with the test method that failed. Multiple methods are flaky, remove the content that refers to the test method. 3. Replace "url here" with a url to an example failure. In the Github Actions workflow run logs, you can right click on the line number to copy a link to the line. Example of such url is https://github.com/apache/pulsar/pull/8892/checks?check_run_id=1531075794#step:9:377 . The logs are available for a limited amount of time (usually for a few weeks). 4. Replace "relevant parts of the exception stacktrace here" with the a few lines of the stack trace that shows at leat the exception message and the line of test code where the stacktrace occured. 5. Replace "full exception stacktrace here" with the full exception stacktrace from logs. This section will be hidded by default. 6. Remove all unused fields / content to unclutter the reported issue. Remove this comment too. --> BrokerServiceThrottlingTest is flaky. The testLookupThrottlingForClientByBroker test method fails sporadically. [example failure](https://github.com/apache/pulsar/pull/11681/checks?check_run_id=3359802221#step:10:1118) ``` Error: testLookupThrottlingForClientByBroker(org.apache.pulsar.broker.service.BrokerServiceThrottlingTest) Time elapsed: 2.175 s <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at org.testng.Assert.fail(Assert.java:99) at org.testng.Assert.failNotEquals(Assert.java:1037) at org.testng.Assert.assertTrue(Assert.java:45) at org.testng.Assert.assertTrue(Assert.java:55) at org.apache.pulsar.broker.service.BrokerServiceThrottlingTest.testLookupThrottlingForClientByBroker(BrokerServiceThrottlingTest.java:203) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:132) at org.testng.internal.InvokeMethodRunnable.runOne(InvokeMethodRunnable.java:45) at org.testng.internal.InvokeMethodRunnable.call(InvokeMethodRunnable.java:73) at org.testng.internal.InvokeMethodRunnable.call(InvokeMethodRunnable.java:11) at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) ```
1.0
Flaky-test: BrokerServiceThrottlingTest.testLookupThrottlingForClientByBroker - <!--- Instructions for reporting a flaky test using this issue template: 1. Replace [test class] in title and body with the test class name 2. Replace [test method] in title and body with the test method that failed. Multiple methods are flaky, remove the content that refers to the test method. 3. Replace "url here" with a url to an example failure. In the Github Actions workflow run logs, you can right click on the line number to copy a link to the line. Example of such url is https://github.com/apache/pulsar/pull/8892/checks?check_run_id=1531075794#step:9:377 . The logs are available for a limited amount of time (usually for a few weeks). 4. Replace "relevant parts of the exception stacktrace here" with the a few lines of the stack trace that shows at leat the exception message and the line of test code where the stacktrace occured. 5. Replace "full exception stacktrace here" with the full exception stacktrace from logs. This section will be hidded by default. 6. Remove all unused fields / content to unclutter the reported issue. Remove this comment too. --> BrokerServiceThrottlingTest is flaky. The testLookupThrottlingForClientByBroker test method fails sporadically. [example failure](https://github.com/apache/pulsar/pull/11681/checks?check_run_id=3359802221#step:10:1118) ``` Error: testLookupThrottlingForClientByBroker(org.apache.pulsar.broker.service.BrokerServiceThrottlingTest) Time elapsed: 2.175 s <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at org.testng.Assert.fail(Assert.java:99) at org.testng.Assert.failNotEquals(Assert.java:1037) at org.testng.Assert.assertTrue(Assert.java:45) at org.testng.Assert.assertTrue(Assert.java:55) at org.apache.pulsar.broker.service.BrokerServiceThrottlingTest.testLookupThrottlingForClientByBroker(BrokerServiceThrottlingTest.java:203) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:132) at org.testng.internal.InvokeMethodRunnable.runOne(InvokeMethodRunnable.java:45) at org.testng.internal.InvokeMethodRunnable.call(InvokeMethodRunnable.java:73) at org.testng.internal.InvokeMethodRunnable.call(InvokeMethodRunnable.java:11) at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) ```
non_main
flaky test brokerservicethrottlingtest testlookupthrottlingforclientbybroker instructions for reporting a flaky test using this issue template replace in title and body with the test class name replace in title and body with the test method that failed multiple methods are flaky remove the content that refers to the test method replace url here with a url to an example failure in the github actions workflow run logs you can right click on the line number to copy a link to the line example of such url is the logs are available for a limited amount of time usually for a few weeks replace relevant parts of the exception stacktrace here with the a few lines of the stack trace that shows at leat the exception message and the line of test code where the stacktrace occured replace full exception stacktrace here with the full exception stacktrace from logs this section will be hidded by default remove all unused fields content to unclutter the reported issue remove this comment too brokerservicethrottlingtest is flaky the testlookupthrottlingforclientbybroker test method fails sporadically error testlookupthrottlingforclientbybroker org apache pulsar broker service brokerservicethrottlingtest time elapsed s failure java lang assertionerror expected but found at org testng assert fail assert java at org testng assert failnotequals assert java at org testng assert asserttrue assert java at org testng assert asserttrue assert java at org apache pulsar broker service brokerservicethrottlingtest testlookupthrottlingforclientbybroker brokerservicethrottlingtest java at java base jdk internal reflect nativemethodaccessorimpl native method at java base jdk internal reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at java base jdk internal reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java base java lang reflect method invoke method java at org testng internal methodinvocationhelper invokemethod methodinvocationhelper java at org testng internal invokemethodrunnable runone invokemethodrunnable java at org testng internal invokemethodrunnable call invokemethodrunnable java at org testng internal invokemethodrunnable call invokemethodrunnable java at java base java util concurrent futuretask run futuretask java at java base java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java base java util concurrent threadpoolexecutor worker run threadpoolexecutor java at java base java lang thread run thread java
0
5,064
25,944,496,919
IssuesEvent
2022-12-16 22:20:11
centerofci/mathesar
https://api.github.com/repos/centerofci/mathesar
closed
Messy spacing in table links section of table inspector
type: bug work: frontend status: ready restricted: maintainers
We seem to have lost some margin here: ![image](https://user-images.githubusercontent.com/42411/207872153-9fb17b48-3c5e-4eb6-8788-8a99229fd0b9.png) For comparison, here's Figma: ![image](https://user-images.githubusercontent.com/42411/207872533-fd3a15f8-e62e-4639-8f82-2ff8cb04777b.png) I vaguely recall this UI being properly spaced somewhat recently, so perhaps this is a regression? CC @rajatvijay
True
Messy spacing in table links section of table inspector - We seem to have lost some margin here: ![image](https://user-images.githubusercontent.com/42411/207872153-9fb17b48-3c5e-4eb6-8788-8a99229fd0b9.png) For comparison, here's Figma: ![image](https://user-images.githubusercontent.com/42411/207872533-fd3a15f8-e62e-4639-8f82-2ff8cb04777b.png) I vaguely recall this UI being properly spaced somewhat recently, so perhaps this is a regression? CC @rajatvijay
main
messy spacing in table links section of table inspector we seem to have lost some margin here for comparison here s figma i vaguely recall this ui being properly spaced somewhat recently so perhaps this is a regression cc rajatvijay
1
7,325
24,648,542,428
IssuesEvent
2022-10-17 16:37:34
bcgov/api-services-portal
https://api.github.com/repos/bcgov/api-services-portal
closed
Cypress Test - Verify the activity failure in UI if any activity is failed
automation
- [ ] Find the scenarios to list an activity as failed status - [ ] Create Cypress Test to verify the failed activity in UI and API response 1. Make the access request for invalid profile 1.1 Developer logs in 1.2 Creates an application 1.3 Creates an access request 2. Create API, Product, and Authorization Profiles; Apply Auth Profiles to Product Environments 2.1 Authenticates api owner 2.2 Activates namespace for client credential flow tests 2.3 Get the resource and verify the success code in the response 2.4 Navigate to activity page 2.5 Verify Activity filter foe all the listed activities
1.0
Cypress Test - Verify the activity failure in UI if any activity is failed - - [ ] Find the scenarios to list an activity as failed status - [ ] Create Cypress Test to verify the failed activity in UI and API response 1. Make the access request for invalid profile 1.1 Developer logs in 1.2 Creates an application 1.3 Creates an access request 2. Create API, Product, and Authorization Profiles; Apply Auth Profiles to Product Environments 2.1 Authenticates api owner 2.2 Activates namespace for client credential flow tests 2.3 Get the resource and verify the success code in the response 2.4 Navigate to activity page 2.5 Verify Activity filter foe all the listed activities
non_main
cypress test verify the activity failure in ui if any activity is failed find the scenarios to list an activity as failed status create cypress test to verify the failed activity in ui and api response make the access request for invalid profile developer logs in creates an application creates an access request create api product and authorization profiles apply auth profiles to product environments authenticates api owner activates namespace for client credential flow tests get the resource and verify the success code in the response navigate to activity page verify activity filter foe all the listed activities
0
4,402
22,617,276,814
IssuesEvent
2022-06-30 00:15:48
aws/aws-sam-cli
https://api.github.com/repos/aws/aws-sam-cli
closed
ImportError: cannot import name 'escape' from 'jinja2'
type/bug stage/needs-investigation maintainer/need-followup
### Description: During sam build we faced an issue: ImportError: cannot import name 'escape' from 'jinja2' (/usr/local/lib/python3.7/dist-packages/jinja2/__init__.py) ### Steps to reproduce: sam build ### Additional environment details (Ex: Windows, Mac, Amazon Linux etc) 1. OS: alpine 2. `sam --version`: 1.43.0-py3-none-any 3. AWS region: eu-central-1 $ sam build SAM CLI now collects telemetry to better understand customer needs. You can OPT OUT and disable telemetry collection by setting the environment variable SAM_CLI_TELEMETRY=0 in your shell. Thanks for your help! Learn More: https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-telemetry.html Traceback (most recent call last): File "/usr/local/bin/sam", line 10, in <module> sys.exit(cli()) File "/usr/local/lib/python3.7/dist-packages/click/core.py", line 829, in __call__ return self.main(*args, **kwargs) File "/usr/local/lib/python3.7/dist-packages/click/core.py", line 782, in main rv = self.invoke(ctx) File "/usr/local/lib/python3.7/dist-packages/click/core.py", line 1259, in invoke return _process_result(sub_ctx.command.invoke(sub_ctx)) File "/usr/local/lib/python3.7/dist-packages/click/core.py", line [1066](https://git.wildix.com/Services/business-layer.wildix.com/-/jobs/191307#L1066), in invoke return ctx.invoke(self.callback, **ctx.params) File "/usr/local/lib/python3.7/dist-packages/click/core.py", line 610, in invoke return callback(*args, **kwargs) File "/usr/local/lib/python3.7/dist-packages/click/decorators.py", line 73, in new_func return ctx.invoke(f, obj, *args, **kwargs) File "/usr/local/lib/python3.7/dist-packages/click/core.py", line 610, in invoke return callback(*args, **kwargs) File "/usr/local/lib/python3.7/dist-packages/samcli/lib/telemetry/metric.py", line 166, in wrapped raise exception # pylint: disable=raising-bad-type File "/usr/local/lib/python3.7/dist-packages/samcli/lib/telemetry/metric.py", line 124, in wrapped return_value = func(*args, **kwargs) File "/usr/local/lib/python3.7/dist-packages/samcli/lib/utils/version_checker.py", line 41, in wrapped actual_result = func(*args, **kwargs) File "/usr/local/lib/python3.7/dist-packages/samcli/cli/main.py", line 87, in wrapper return func(*args, **kwargs) File "/usr/local/lib/python3.7/dist-packages/samcli/commands/build/command.py", line 192, in cli build_image, File "/usr/local/lib/python3.7/dist-packages/samcli/commands/build/command.py", line 220, in do_cli from samcli.commands.build.build_context import BuildContext File "/usr/local/lib/python3.7/dist-packages/samcli/commands/build/build_context.py", line 13, in <module> from samcli.lib.providers.sam_api_provider import SamApiProvider File "/usr/local/lib/python3.7/dist-packages/samcli/lib/providers/sam_api_provider.py", line 6, in <module> from samcli.lib.providers.api_collector import ApiCollector File "/usr/local/lib/python3.7/dist-packages/samcli/lib/providers/api_collector.py", line 10, in <module> from samcli.local.apigw.local_apigw_service import Route File "/usr/local/lib/python3.7/dist-packages/samcli/local/apigw/local_apigw_service.py", line 11, in <module> from flask import Flask, request File "/usr/local/lib/python3.7/dist-packages/flask/__init__.py", line 14, in <module> from jinja2 import escape ImportError: cannot import name 'escape' from 'jinja2' (/usr/local/lib/python3.7/dist-packages/jinja2/__init__.py)
True
ImportError: cannot import name 'escape' from 'jinja2' - ### Description: During sam build we faced an issue: ImportError: cannot import name 'escape' from 'jinja2' (/usr/local/lib/python3.7/dist-packages/jinja2/__init__.py) ### Steps to reproduce: sam build ### Additional environment details (Ex: Windows, Mac, Amazon Linux etc) 1. OS: alpine 2. `sam --version`: 1.43.0-py3-none-any 3. AWS region: eu-central-1 $ sam build SAM CLI now collects telemetry to better understand customer needs. You can OPT OUT and disable telemetry collection by setting the environment variable SAM_CLI_TELEMETRY=0 in your shell. Thanks for your help! Learn More: https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-telemetry.html Traceback (most recent call last): File "/usr/local/bin/sam", line 10, in <module> sys.exit(cli()) File "/usr/local/lib/python3.7/dist-packages/click/core.py", line 829, in __call__ return self.main(*args, **kwargs) File "/usr/local/lib/python3.7/dist-packages/click/core.py", line 782, in main rv = self.invoke(ctx) File "/usr/local/lib/python3.7/dist-packages/click/core.py", line 1259, in invoke return _process_result(sub_ctx.command.invoke(sub_ctx)) File "/usr/local/lib/python3.7/dist-packages/click/core.py", line [1066](https://git.wildix.com/Services/business-layer.wildix.com/-/jobs/191307#L1066), in invoke return ctx.invoke(self.callback, **ctx.params) File "/usr/local/lib/python3.7/dist-packages/click/core.py", line 610, in invoke return callback(*args, **kwargs) File "/usr/local/lib/python3.7/dist-packages/click/decorators.py", line 73, in new_func return ctx.invoke(f, obj, *args, **kwargs) File "/usr/local/lib/python3.7/dist-packages/click/core.py", line 610, in invoke return callback(*args, **kwargs) File "/usr/local/lib/python3.7/dist-packages/samcli/lib/telemetry/metric.py", line 166, in wrapped raise exception # pylint: disable=raising-bad-type File "/usr/local/lib/python3.7/dist-packages/samcli/lib/telemetry/metric.py", line 124, in wrapped return_value = func(*args, **kwargs) File "/usr/local/lib/python3.7/dist-packages/samcli/lib/utils/version_checker.py", line 41, in wrapped actual_result = func(*args, **kwargs) File "/usr/local/lib/python3.7/dist-packages/samcli/cli/main.py", line 87, in wrapper return func(*args, **kwargs) File "/usr/local/lib/python3.7/dist-packages/samcli/commands/build/command.py", line 192, in cli build_image, File "/usr/local/lib/python3.7/dist-packages/samcli/commands/build/command.py", line 220, in do_cli from samcli.commands.build.build_context import BuildContext File "/usr/local/lib/python3.7/dist-packages/samcli/commands/build/build_context.py", line 13, in <module> from samcli.lib.providers.sam_api_provider import SamApiProvider File "/usr/local/lib/python3.7/dist-packages/samcli/lib/providers/sam_api_provider.py", line 6, in <module> from samcli.lib.providers.api_collector import ApiCollector File "/usr/local/lib/python3.7/dist-packages/samcli/lib/providers/api_collector.py", line 10, in <module> from samcli.local.apigw.local_apigw_service import Route File "/usr/local/lib/python3.7/dist-packages/samcli/local/apigw/local_apigw_service.py", line 11, in <module> from flask import Flask, request File "/usr/local/lib/python3.7/dist-packages/flask/__init__.py", line 14, in <module> from jinja2 import escape ImportError: cannot import name 'escape' from 'jinja2' (/usr/local/lib/python3.7/dist-packages/jinja2/__init__.py)
main
importerror cannot import name escape from description during sam build we faced an issue importerror cannot import name escape from usr local lib dist packages init py steps to reproduce sam build additional environment details ex windows mac amazon linux etc os alpine sam version none any aws region eu central sam build sam cli now collects telemetry to better understand customer needs you can opt out and disable telemetry collection by setting the environment variable sam cli telemetry in your shell thanks for your help learn more traceback most recent call last file usr local bin sam line in sys exit cli file usr local lib dist packages click core py line in call return self main args kwargs file usr local lib dist packages click core py line in main rv self invoke ctx file usr local lib dist packages click core py line in invoke return process result sub ctx command invoke sub ctx file usr local lib dist packages click core py line in invoke return ctx invoke self callback ctx params file usr local lib dist packages click core py line in invoke return callback args kwargs file usr local lib dist packages click decorators py line in new func return ctx invoke f obj args kwargs file usr local lib dist packages click core py line in invoke return callback args kwargs file usr local lib dist packages samcli lib telemetry metric py line in wrapped raise exception pylint disable raising bad type file usr local lib dist packages samcli lib telemetry metric py line in wrapped return value func args kwargs file usr local lib dist packages samcli lib utils version checker py line in wrapped actual result func args kwargs file usr local lib dist packages samcli cli main py line in wrapper return func args kwargs file usr local lib dist packages samcli commands build command py line in cli build image file usr local lib dist packages samcli commands build command py line in do cli from samcli commands build build context import buildcontext file usr local lib dist packages samcli commands build build context py line in from samcli lib providers sam api provider import samapiprovider file usr local lib dist packages samcli lib providers sam api provider py line in from samcli lib providers api collector import apicollector file usr local lib dist packages samcli lib providers api collector py line in from samcli local apigw local apigw service import route file usr local lib dist packages samcli local apigw local apigw service py line in from flask import flask request file usr local lib dist packages flask init py line in from import escape importerror cannot import name escape from usr local lib dist packages init py
1
81,845
31,767,809,875
IssuesEvent
2023-09-12 09:50:14
hazelcast/hazelcast
https://api.github.com/repos/hazelcast/hazelcast
opened
Should IMap.getAll be retryable by default
Type: Defect Team: Client
Should we have the IMap.getAll codec be `retryable` by default? Currently, the `retryable` flag on the codec is `false`. See the discussion at slack thread [here](https://hazelcast.slack.com/archives/C034YQBTG/p1692193035936409?thread_ts=1692151436.711519&cid=C034YQBTG).
1.0
Should IMap.getAll be retryable by default - Should we have the IMap.getAll codec be `retryable` by default? Currently, the `retryable` flag on the codec is `false`. See the discussion at slack thread [here](https://hazelcast.slack.com/archives/C034YQBTG/p1692193035936409?thread_ts=1692151436.711519&cid=C034YQBTG).
non_main
should imap getall be retryable by default should we have the imap getall codec be retryable by default currently the retryable flag on the codec is false see the discussion at slack thread
0
253,630
27,300,732,923
IssuesEvent
2023-02-24 01:33:20
panasalap/linux-4.19.72_1
https://api.github.com/repos/panasalap/linux-4.19.72_1
closed
CVE-2021-43975 (Medium) detected in linux-yoctov5.4.51 - autoclosed
security vulnerability
## CVE-2021-43975 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-yoctov5.4.51</b></p></summary> <p> <p>Yocto Linux Embedded kernel</p> <p>Library home page: <a href=https://git.yoctoproject.org/git/linux-yocto>https://git.yoctoproject.org/git/linux-yocto</a></p> <p>Found in HEAD commit: <a href="https://github.com/panasalap/linux-4.19.72/commit/c5a08fe8179013aad614165d792bc5b436591df6">c5a08fe8179013aad614165d792bc5b436591df6</a></p> <p>Found in base branch: <b>master</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In the Linux kernel through 5.15.2, hw_atl_utils_fw_rpc_wait in drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.c allows an attacker (who can introduce a crafted device) to trigger an out-of-bounds write via a crafted length value. <p>Publish Date: 2021-11-17 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-43975>CVE-2021-43975</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.7</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: High - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2021-43975">https://www.linuxkernelcves.com/cves/CVE-2021-43975</a></p> <p>Release Date: 2021-11-17</p> <p>Fix Resolution: v5.16-rc2</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2021-43975 (Medium) detected in linux-yoctov5.4.51 - autoclosed - ## CVE-2021-43975 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-yoctov5.4.51</b></p></summary> <p> <p>Yocto Linux Embedded kernel</p> <p>Library home page: <a href=https://git.yoctoproject.org/git/linux-yocto>https://git.yoctoproject.org/git/linux-yocto</a></p> <p>Found in HEAD commit: <a href="https://github.com/panasalap/linux-4.19.72/commit/c5a08fe8179013aad614165d792bc5b436591df6">c5a08fe8179013aad614165d792bc5b436591df6</a></p> <p>Found in base branch: <b>master</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In the Linux kernel through 5.15.2, hw_atl_utils_fw_rpc_wait in drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.c allows an attacker (who can introduce a crafted device) to trigger an out-of-bounds write via a crafted length value. <p>Publish Date: 2021-11-17 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-43975>CVE-2021-43975</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.7</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: High - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2021-43975">https://www.linuxkernelcves.com/cves/CVE-2021-43975</a></p> <p>Release Date: 2021-11-17</p> <p>Fix Resolution: v5.16-rc2</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_main
cve medium detected in linux autoclosed cve medium severity vulnerability vulnerable library linux yocto linux embedded kernel library home page a href found in head commit a href found in base branch master vulnerable source files drivers net ethernet aquantia atlantic hw atl hw atl utils c drivers net ethernet aquantia atlantic hw atl hw atl utils c vulnerability details in the linux kernel through hw atl utils fw rpc wait in drivers net ethernet aquantia atlantic hw atl hw atl utils c allows an attacker who can introduce a crafted device to trigger an out of bounds write via a crafted length value publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required high user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend
0
5,239
26,553,242,181
IssuesEvent
2023-01-20 09:46:43
bazelbuild/intellij
https://api.github.com/repos/bazelbuild/intellij
reopened
Mac support: Bazel plugin doesn't work with C++ std lib and repositories
type: bug product: CLion os: macos lang: c++ awaiting-maintainer
I have checked and bazel binary is set correctly in the settings. #include <iostream> Would not be detected properly by CLion. I have some repositories (both new_Http_repository and new_local_repository, for things like gtest, easylogging and llvm), neither is detected by CLion now. Lots of warnings: Warning:cc target //:type_inference_visitor_test does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:parser_test does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target @easylogging//:main does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:runtime does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:parser does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:classes does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target @llvm//:main does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:shwifty does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:common does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:ast does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target @gtest//:main does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:lexer does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:expression_type_visitor does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:codegen_test does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:type_inference_visitor does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:lexer_test does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:functions does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:jit does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:ast_compare_visitor does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:type does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:codegen does not depend on exactly 1 cc toolchain. Found 0 toolchains. Unfortunately there is no explanation about what this means and how to fix this. I selected the default toolchain. Symbols get properly detected (both std lib and my local repositories) when I use hand crafted cmake, which I use specifically for CLion.
True
Mac support: Bazel plugin doesn't work with C++ std lib and repositories - I have checked and bazel binary is set correctly in the settings. #include <iostream> Would not be detected properly by CLion. I have some repositories (both new_Http_repository and new_local_repository, for things like gtest, easylogging and llvm), neither is detected by CLion now. Lots of warnings: Warning:cc target //:type_inference_visitor_test does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:parser_test does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target @easylogging//:main does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:runtime does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:parser does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:classes does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target @llvm//:main does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:shwifty does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:common does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:ast does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target @gtest//:main does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:lexer does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:expression_type_visitor does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:codegen_test does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:type_inference_visitor does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:lexer_test does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:functions does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:jit does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:ast_compare_visitor does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:type does not depend on exactly 1 cc toolchain. Found 0 toolchains. Warning:cc target //:codegen does not depend on exactly 1 cc toolchain. Found 0 toolchains. Unfortunately there is no explanation about what this means and how to fix this. I selected the default toolchain. Symbols get properly detected (both std lib and my local repositories) when I use hand crafted cmake, which I use specifically for CLion.
main
mac support bazel plugin doesn t work with c std lib and repositories i have checked and bazel binary is set correctly in the settings include would not be detected properly by clion i have some repositories both new http repository and new local repository for things like gtest easylogging and llvm neither is detected by clion now lots of warnings warning cc target type inference visitor test does not depend on exactly cc toolchain found toolchains warning cc target parser test does not depend on exactly cc toolchain found toolchains warning cc target easylogging main does not depend on exactly cc toolchain found toolchains warning cc target runtime does not depend on exactly cc toolchain found toolchains warning cc target parser does not depend on exactly cc toolchain found toolchains warning cc target classes does not depend on exactly cc toolchain found toolchains warning cc target llvm main does not depend on exactly cc toolchain found toolchains warning cc target shwifty does not depend on exactly cc toolchain found toolchains warning cc target common does not depend on exactly cc toolchain found toolchains warning cc target ast does not depend on exactly cc toolchain found toolchains warning cc target gtest main does not depend on exactly cc toolchain found toolchains warning cc target lexer does not depend on exactly cc toolchain found toolchains warning cc target expression type visitor does not depend on exactly cc toolchain found toolchains warning cc target codegen test does not depend on exactly cc toolchain found toolchains warning cc target type inference visitor does not depend on exactly cc toolchain found toolchains warning cc target lexer test does not depend on exactly cc toolchain found toolchains warning cc target functions does not depend on exactly cc toolchain found toolchains warning cc target jit does not depend on exactly cc toolchain found toolchains warning cc target ast compare visitor does not depend on exactly cc toolchain found toolchains warning cc target type does not depend on exactly cc toolchain found toolchains warning cc target codegen does not depend on exactly cc toolchain found toolchains unfortunately there is no explanation about what this means and how to fix this i selected the default toolchain symbols get properly detected both std lib and my local repositories when i use hand crafted cmake which i use specifically for clion
1
3,090
11,741,740,265
IssuesEvent
2020-03-11 22:32:02
alacritty/alacritty
https://api.github.com/repos/alacritty/alacritty
closed
ToggleSimpleFullScreen increases window height by one line each time
A - deps B - bug C - waiting on maintainer H - macos S - winit/glutin
### System OS: macOS 10.14.6 Version: alacritty 0.4.1 (4d9253b) ### Logs Crashes: N/A Font/Terminal size: `alacritty -vv` ``` [2020-01-24 11:24] [INFO] Welcome to Alacritty [2020-01-24 11:24] [INFO] Configuration loaded from "/Users/mks/.alacritty.yml" [2020-01-24 11:24] [DEBUG] Estimated DPR: 2 [2020-01-24 11:24] [DEBUG] Estimated Cell Size: 19 x 38 [2020-01-24 11:24] [DEBUG] Estimated Dimensions: Some((1900.0, 912.0)) [2020-01-24 11:24] [INFO] Device pixel ratio: 2 [2020-01-24 11:24] [INFO] Initializing glyph cache... [2020-01-24 11:24] [INFO] ... finished initializing glyph cache in 0.040985315s [2020-01-24 11:24] [INFO] Estimated DPR correctly, skipping resize [2020-01-24 11:24] [INFO] Cell Size: 19 x 38 [2020-01-24 11:24] [INFO] Padding: 0 x 0 [2020-01-24 11:24] [INFO] Width: 1900, Height: 912 [2020-01-24 11:24] [INFO] PTY Dimensions: Line(24) x Column(100) [2020-01-24 11:24] [INFO] Initialisation complete [2020-01-24 11:24] [INFO] Font size changed to Size(32) with DPR of 2 [2020-01-24 11:24] [DEBUG] Term::resize dimensions unchanged [2020-01-24 11:24] [INFO] Width: 1900, Height: 912 [2020-01-24 11:24] [DEBUG] New num_cols is 202 and num_lines is 56 [2020-01-24 11:24] [INFO] Width: 3840, Height: 2160 [2020-01-24 11:24] [DEBUG] New num_cols is 100 and num_lines is 25 [2020-01-24 11:24] [INFO] Width: 1900, Height: 956 [2020-01-24 11:24] [DEBUG] New num_cols is 202 and num_lines is 56 [2020-01-24 11:24] [INFO] Width: 3840, Height: 2160 [2020-01-24 11:24] [DEBUG] New num_cols is 100 and num_lines is 26 [2020-01-24 11:24] [INFO] Width: 1900, Height: 1000 [2020-01-24 11:24] [DEBUG] New num_cols is 202 and num_lines is 56 [2020-01-24 11:24] [INFO] Width: 3840, Height: 2160 [2020-01-24 11:24] [DEBUG] New num_cols is 100 and num_lines is 27 [2020-01-24 11:24] [INFO] Width: 1900, Height: 1044 ``` Keyboard and bindings: `alacritty --print-events` ``` [2020-01-24 11:26] [INFO] Welcome to Alacritty [2020-01-24 11:26] [INFO] Configuration loaded from "/Users/mks/.alacritty.yml" [2020-01-24 11:26] [DEBUG] Estimated DPR: 2 [2020-01-24 11:26] [DEBUG] Estimated Cell Size: 19 x 38 [2020-01-24 11:26] [DEBUG] Estimated Dimensions: Some((1900.0, 912.0)) [2020-01-24 11:26] [INFO] Device pixel ratio: 2 [2020-01-24 11:26] [INFO] Initializing glyph cache... [2020-01-24 11:26] [INFO] ... finished initializing glyph cache in 0.046240856s [2020-01-24 11:26] [INFO] Estimated DPR correctly, skipping resize [2020-01-24 11:26] [INFO] Cell Size: 19 x 38 [2020-01-24 11:26] [INFO] Padding: 0 x 0 [2020-01-24 11:26] [INFO] Width: 1900, Height: 912 [2020-01-24 11:26] [INFO] PTY Dimensions: Line(24) x Column(100) [2020-01-24 11:26] [INFO] Initialisation complete [2020-01-24 11:26] [INFO] glutin event: NewEvents(Init) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Title("tmux")) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: HiDpiFactorChanged(2.0) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Resized(LogicalSize { width: 950.0, height: 456.0 }) } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawRequested(WindowId(Id(140711681135648))) [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] Font size changed to Size(32) with DPR of 2 [2020-01-24 11:26] [DEBUG] Term::resize dimensions unchanged [2020-01-24 11:26] [INFO] Width: 1900, Height: 912 [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499354953002219 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Focused(true) } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499354982943133 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499354983244148 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499354983377069 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499354995387663 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499354995476728 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499355245081979 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Title("fish")) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499355256468338 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499355260765649 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499355301567211 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499355397109100 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499355569070417 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 55, state: Pressed, virtual_keycode: Some(LWin), modifiers: LOGO }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: DeviceEvent { device_id: DeviceId(DeviceId), event: ModifiersChanged(LOGO) } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499355570517470 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499356434049510 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 36, state: Pressed, virtual_keycode: Some(Return), modifiers: LOGO }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: ReceivedCharacter('\r') } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499356455041841 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Resized(LogicalSize { width: 950.0, height: 456.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Moved(LogicalPosition { x: 485.0, y: 173.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Resized(LogicalSize { width: 1920.0, height: 1080.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Moved(LogicalPosition { x: 0.0, y: 0.0 }) } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawRequested(WindowId(Id(140711681135648))) [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [DEBUG] New num_cols is 202 and num_lines is 56 [2020-01-24 11:26] [INFO] Width: 3840, Height: 2160 [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499356602034168 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: CursorEntered { device_id: DeviceId(DeviceId) } } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: CursorMoved { device_id: DeviceId(DeviceId), position: LogicalPosition { x: 481.5546875, y: 810.30078125 }, modifiers: LOGO } } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 36, state: Released, virtual_keycode: Some(Return), modifiers: LOGO }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499356632431826 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499356632635344 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499356660341096 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499356714734163 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499356959425878 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357427875231 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 36, state: Pressed, virtual_keycode: Some(Return), modifiers: LOGO }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: ReceivedCharacter('\r') } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357431830558 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Resized(LogicalSize { width: 950.0, height: 478.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Moved(LogicalPosition { x: 485.0, y: 151.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Resized(LogicalSize { width: 950.0, height: 478.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Moved(LogicalPosition { x: 485.0, y: 129.0 }) } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawRequested(WindowId(Id(140711681135648))) [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [DEBUG] New num_cols is 100 and num_lines is 25 [2020-01-24 11:26] [INFO] Width: 1900, Height: 956 [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357483179810 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357501850148 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357502030172 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357529115960 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 36, state: Released, virtual_keycode: Some(Return), modifiers: LOGO }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357530359802 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357534379138 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357614019940 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357652820056 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359474104128 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 36, state: Pressed, virtual_keycode: Some(Return), modifiers: LOGO }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: ReceivedCharacter('\r') } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359482586281 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Resized(LogicalSize { width: 950.0, height: 478.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Moved(LogicalPosition { x: 485.0, y: 151.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Resized(LogicalSize { width: 1920.0, height: 1080.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Moved(LogicalPosition { x: 0.0, y: 0.0 }) } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawRequested(WindowId(Id(140711681135648))) [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [DEBUG] New num_cols is 202 and num_lines is 56 [2020-01-24 11:26] [INFO] Width: 3840, Height: 2160 [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359544143864 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: CursorEntered { device_id: DeviceId(DeviceId) } } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: CursorMoved { device_id: DeviceId(DeviceId), position: LogicalPosition { x: 481.5546875, y: 810.30078125 }, modifiers: LOGO } } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359566911209 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 36, state: Released, virtual_keycode: Some(Return), modifiers: LOGO }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359568243951 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359568358003 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359585463396 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359624944922 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359626319640 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359687758900 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359709346467 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359709504409 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499360376229798 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 36, state: Pressed, virtual_keycode: Some(Return), modifiers: LOGO }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: ReceivedCharacter('\r') } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499360403615436 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Resized(LogicalSize { width: 950.0, height: 500.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Moved(LogicalPosition { x: 485.0, y: 129.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Resized(LogicalSize { width: 950.0, height: 500.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Moved(LogicalPosition { x: 485.0, y: 107.0 }) } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawRequested(WindowId(Id(140711681135648))) [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [DEBUG] New num_cols is 100 and num_lines is 26 [2020-01-24 11:26] [INFO] Width: 1900, Height: 1000 [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499360476925206 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 36, state: Released, virtual_keycode: Some(Return), modifiers: LOGO }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499360516136371 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499360516703210 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499360608814236 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499360662643536 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499360835035438 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 55, state: Released, virtual_keycode: Some(LWin), modifiers: (empty) }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: DeviceEvent { device_id: DeviceId(DeviceId), event: ModifiersChanged((empty)) } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499360835367594 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499361141622480 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 59, state: Pressed, virtual_keycode: Some(LControl), modifiers: CTRL }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: DeviceEvent { device_id: DeviceId(DeviceId), event: ModifiersChanged(CTRL) } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499361142041113 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 2, state: Pressed, virtual_keycode: Some(D), modifiers: CTRL }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: ReceivedCharacter('\u{4}') } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499361292082602 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499361292203869 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499361296104269 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Title("Alacritty")) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499361301252184 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Exit) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: LoopDestroyed [2020-01-24 11:26] [INFO] Goodbye ``` ### Description of bug Using the `ToggleSimpleFullScreen` action increases window height by one line each time it's invoked on macOS. It also intermittently shows an extra line in the prompt when in full screen. ![output](https://user-images.githubusercontent.com/54970/73114400-f7a4fb80-3f11-11ea-8371-15adf5d1291d.gif) There’s also a similar bug where if you start in `SimpleFullScreen` and then change back to `Windowed` mode, it doesn’t respect the window dimensions set in the configuration file. Instead it seems to revert to 84 x 32, until you start toggling as described, when the height slowly increases as shown above. ### How to reproduce Add a binding for `ToggleSimpleFullscreen` and set the `startup_mode` for `window` to `Windowed`. Then at launch toggle back and forth via a keybinding (doesn't seem to matter which, but mine was Command+Return).
True
ToggleSimpleFullScreen increases window height by one line each time - ### System OS: macOS 10.14.6 Version: alacritty 0.4.1 (4d9253b) ### Logs Crashes: N/A Font/Terminal size: `alacritty -vv` ``` [2020-01-24 11:24] [INFO] Welcome to Alacritty [2020-01-24 11:24] [INFO] Configuration loaded from "/Users/mks/.alacritty.yml" [2020-01-24 11:24] [DEBUG] Estimated DPR: 2 [2020-01-24 11:24] [DEBUG] Estimated Cell Size: 19 x 38 [2020-01-24 11:24] [DEBUG] Estimated Dimensions: Some((1900.0, 912.0)) [2020-01-24 11:24] [INFO] Device pixel ratio: 2 [2020-01-24 11:24] [INFO] Initializing glyph cache... [2020-01-24 11:24] [INFO] ... finished initializing glyph cache in 0.040985315s [2020-01-24 11:24] [INFO] Estimated DPR correctly, skipping resize [2020-01-24 11:24] [INFO] Cell Size: 19 x 38 [2020-01-24 11:24] [INFO] Padding: 0 x 0 [2020-01-24 11:24] [INFO] Width: 1900, Height: 912 [2020-01-24 11:24] [INFO] PTY Dimensions: Line(24) x Column(100) [2020-01-24 11:24] [INFO] Initialisation complete [2020-01-24 11:24] [INFO] Font size changed to Size(32) with DPR of 2 [2020-01-24 11:24] [DEBUG] Term::resize dimensions unchanged [2020-01-24 11:24] [INFO] Width: 1900, Height: 912 [2020-01-24 11:24] [DEBUG] New num_cols is 202 and num_lines is 56 [2020-01-24 11:24] [INFO] Width: 3840, Height: 2160 [2020-01-24 11:24] [DEBUG] New num_cols is 100 and num_lines is 25 [2020-01-24 11:24] [INFO] Width: 1900, Height: 956 [2020-01-24 11:24] [DEBUG] New num_cols is 202 and num_lines is 56 [2020-01-24 11:24] [INFO] Width: 3840, Height: 2160 [2020-01-24 11:24] [DEBUG] New num_cols is 100 and num_lines is 26 [2020-01-24 11:24] [INFO] Width: 1900, Height: 1000 [2020-01-24 11:24] [DEBUG] New num_cols is 202 and num_lines is 56 [2020-01-24 11:24] [INFO] Width: 3840, Height: 2160 [2020-01-24 11:24] [DEBUG] New num_cols is 100 and num_lines is 27 [2020-01-24 11:24] [INFO] Width: 1900, Height: 1044 ``` Keyboard and bindings: `alacritty --print-events` ``` [2020-01-24 11:26] [INFO] Welcome to Alacritty [2020-01-24 11:26] [INFO] Configuration loaded from "/Users/mks/.alacritty.yml" [2020-01-24 11:26] [DEBUG] Estimated DPR: 2 [2020-01-24 11:26] [DEBUG] Estimated Cell Size: 19 x 38 [2020-01-24 11:26] [DEBUG] Estimated Dimensions: Some((1900.0, 912.0)) [2020-01-24 11:26] [INFO] Device pixel ratio: 2 [2020-01-24 11:26] [INFO] Initializing glyph cache... [2020-01-24 11:26] [INFO] ... finished initializing glyph cache in 0.046240856s [2020-01-24 11:26] [INFO] Estimated DPR correctly, skipping resize [2020-01-24 11:26] [INFO] Cell Size: 19 x 38 [2020-01-24 11:26] [INFO] Padding: 0 x 0 [2020-01-24 11:26] [INFO] Width: 1900, Height: 912 [2020-01-24 11:26] [INFO] PTY Dimensions: Line(24) x Column(100) [2020-01-24 11:26] [INFO] Initialisation complete [2020-01-24 11:26] [INFO] glutin event: NewEvents(Init) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Title("tmux")) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: HiDpiFactorChanged(2.0) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Resized(LogicalSize { width: 950.0, height: 456.0 }) } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawRequested(WindowId(Id(140711681135648))) [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] Font size changed to Size(32) with DPR of 2 [2020-01-24 11:26] [DEBUG] Term::resize dimensions unchanged [2020-01-24 11:26] [INFO] Width: 1900, Height: 912 [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499354953002219 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Focused(true) } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499354982943133 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499354983244148 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499354983377069 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499354995387663 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499354995476728 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499355245081979 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Title("fish")) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499355256468338 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499355260765649 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499355301567211 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499355397109100 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499355569070417 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 55, state: Pressed, virtual_keycode: Some(LWin), modifiers: LOGO }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: DeviceEvent { device_id: DeviceId(DeviceId), event: ModifiersChanged(LOGO) } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499355570517470 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499356434049510 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 36, state: Pressed, virtual_keycode: Some(Return), modifiers: LOGO }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: ReceivedCharacter('\r') } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499356455041841 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Resized(LogicalSize { width: 950.0, height: 456.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Moved(LogicalPosition { x: 485.0, y: 173.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Resized(LogicalSize { width: 1920.0, height: 1080.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Moved(LogicalPosition { x: 0.0, y: 0.0 }) } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawRequested(WindowId(Id(140711681135648))) [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [DEBUG] New num_cols is 202 and num_lines is 56 [2020-01-24 11:26] [INFO] Width: 3840, Height: 2160 [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499356602034168 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: CursorEntered { device_id: DeviceId(DeviceId) } } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: CursorMoved { device_id: DeviceId(DeviceId), position: LogicalPosition { x: 481.5546875, y: 810.30078125 }, modifiers: LOGO } } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 36, state: Released, virtual_keycode: Some(Return), modifiers: LOGO }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499356632431826 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499356632635344 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499356660341096 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499356714734163 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499356959425878 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357427875231 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 36, state: Pressed, virtual_keycode: Some(Return), modifiers: LOGO }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: ReceivedCharacter('\r') } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357431830558 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Resized(LogicalSize { width: 950.0, height: 478.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Moved(LogicalPosition { x: 485.0, y: 151.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Resized(LogicalSize { width: 950.0, height: 478.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Moved(LogicalPosition { x: 485.0, y: 129.0 }) } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawRequested(WindowId(Id(140711681135648))) [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [DEBUG] New num_cols is 100 and num_lines is 25 [2020-01-24 11:26] [INFO] Width: 1900, Height: 956 [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357483179810 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357501850148 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357502030172 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357529115960 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 36, state: Released, virtual_keycode: Some(Return), modifiers: LOGO }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357530359802 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357534379138 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357614019940 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499357652820056 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359474104128 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 36, state: Pressed, virtual_keycode: Some(Return), modifiers: LOGO }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: ReceivedCharacter('\r') } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359482586281 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Resized(LogicalSize { width: 950.0, height: 478.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Moved(LogicalPosition { x: 485.0, y: 151.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Resized(LogicalSize { width: 1920.0, height: 1080.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Moved(LogicalPosition { x: 0.0, y: 0.0 }) } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawRequested(WindowId(Id(140711681135648))) [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [DEBUG] New num_cols is 202 and num_lines is 56 [2020-01-24 11:26] [INFO] Width: 3840, Height: 2160 [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359544143864 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: CursorEntered { device_id: DeviceId(DeviceId) } } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: CursorMoved { device_id: DeviceId(DeviceId), position: LogicalPosition { x: 481.5546875, y: 810.30078125 }, modifiers: LOGO } } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359566911209 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 36, state: Released, virtual_keycode: Some(Return), modifiers: LOGO }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359568243951 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359568358003 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359585463396 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359624944922 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359626319640 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359687758900 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359709346467 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499359709504409 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499360376229798 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 36, state: Pressed, virtual_keycode: Some(Return), modifiers: LOGO }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: ReceivedCharacter('\r') } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499360403615436 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Resized(LogicalSize { width: 950.0, height: 500.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Moved(LogicalPosition { x: 485.0, y: 129.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Resized(LogicalSize { width: 950.0, height: 500.0 }) } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: Moved(LogicalPosition { x: 485.0, y: 107.0 }) } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawRequested(WindowId(Id(140711681135648))) [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [DEBUG] New num_cols is 100 and num_lines is 26 [2020-01-24 11:26] [INFO] Width: 1900, Height: 1000 [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499360476925206 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 36, state: Released, virtual_keycode: Some(Return), modifiers: LOGO }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499360516136371 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499360516703210 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499360608814236 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499360662643536 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499360835035438 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 55, state: Released, virtual_keycode: Some(LWin), modifiers: (empty) }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: DeviceEvent { device_id: DeviceId(DeviceId), event: ModifiersChanged((empty)) } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499360835367594 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499361141622480 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 59, state: Pressed, virtual_keycode: Some(LControl), modifiers: CTRL }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: DeviceEvent { device_id: DeviceId(DeviceId), event: ModifiersChanged(CTRL) } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499361142041113 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: KeyboardInput { device_id: DeviceId(DeviceId), input: KeyboardInput { scancode: 2, state: Pressed, virtual_keycode: Some(D), modifiers: CTRL }, is_synthetic: false } } [2020-01-24 11:26] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140711681135648)), event: ReceivedCharacter('\u{4}') } [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499361292082602 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499361292203869 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499361296104269 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(MouseCursorDirty) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Title("Alacritty")) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(WaitCancelled { start: Instant { t: 499361301252184 }, requested_resume: None }) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Exit) [2020-01-24 11:26] [INFO] glutin event: UserEvent(Wakeup) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: MainEventsCleared [2020-01-24 11:26] [INFO] glutin event: RedrawEventsCleared [2020-01-24 11:26] [INFO] glutin event: NewEvents(Poll) [2020-01-24 11:26] [INFO] glutin event: LoopDestroyed [2020-01-24 11:26] [INFO] Goodbye ``` ### Description of bug Using the `ToggleSimpleFullScreen` action increases window height by one line each time it's invoked on macOS. It also intermittently shows an extra line in the prompt when in full screen. ![output](https://user-images.githubusercontent.com/54970/73114400-f7a4fb80-3f11-11ea-8371-15adf5d1291d.gif) There’s also a similar bug where if you start in `SimpleFullScreen` and then change back to `Windowed` mode, it doesn’t respect the window dimensions set in the configuration file. Instead it seems to revert to 84 x 32, until you start toggling as described, when the height slowly increases as shown above. ### How to reproduce Add a binding for `ToggleSimpleFullscreen` and set the `startup_mode` for `window` to `Windowed`. Then at launch toggle back and forth via a keybinding (doesn't seem to matter which, but mine was Command+Return).
main
togglesimplefullscreen increases window height by one line each time system os macos version alacritty logs crashes n a font terminal size alacritty vv welcome to alacritty configuration loaded from users mks alacritty yml estimated dpr estimated cell size x estimated dimensions some device pixel ratio initializing glyph cache finished initializing glyph cache in estimated dpr correctly skipping resize cell size x padding x width height pty dimensions line x column initialisation complete font size changed to size with dpr of term resize dimensions unchanged width height new num cols is and num lines is width height new num cols is and num lines is width height new num cols is and num lines is width height new num cols is and num lines is width height new num cols is and num lines is width height new num cols is and num lines is width height keyboard and bindings alacritty print events welcome to alacritty configuration loaded from users mks alacritty yml estimated dpr estimated cell size x estimated dimensions some device pixel ratio initializing glyph cache finished initializing glyph cache in estimated dpr correctly skipping resize cell size x padding x width height pty dimensions line x column initialisation complete glutin event newevents init glutin event userevent wakeup glutin event userevent mousecursordirty glutin event userevent mousecursordirty glutin event userevent mousecursordirty glutin event userevent mousecursordirty glutin event userevent wakeup glutin event userevent title tmux glutin event userevent wakeup glutin event userevent mousecursordirty glutin event userevent mousecursordirty glutin event userevent wakeup glutin event userevent wakeup glutin event windowevent window id windowid id event hidpifactorchanged glutin event windowevent window id windowid id event resized logicalsize width height glutin event maineventscleared glutin event redrawrequested windowid id glutin event redraweventscleared font size changed to size with dpr of term resize dimensions unchanged width height glutin event newevents waitcancelled start instant t requested resume none glutin event windowevent window id windowid id event focused true glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event userevent wakeup glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event userevent title fish glutin event userevent wakeup glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event userevent wakeup glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event userevent wakeup glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event windowevent window id windowid id event keyboardinput device id deviceid deviceid input keyboardinput scancode state pressed virtual keycode some lwin modifiers logo is synthetic false glutin event deviceevent device id deviceid deviceid event modifierschanged logo glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event windowevent window id windowid id event keyboardinput device id deviceid deviceid input keyboardinput scancode state pressed virtual keycode some return modifiers logo is synthetic false glutin event windowevent window id windowid id event receivedcharacter r glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event windowevent window id windowid id event resized logicalsize width height glutin event windowevent window id windowid id event moved logicalposition x y glutin event windowevent window id windowid id event resized logicalsize width height glutin event windowevent window id windowid id event moved logicalposition x y glutin event maineventscleared glutin event redrawrequested windowid id glutin event redraweventscleared new num cols is and num lines is width height glutin event newevents waitcancelled start instant t requested resume none glutin event userevent mousecursordirty glutin event userevent mousecursordirty glutin event userevent wakeup glutin event windowevent window id windowid id event cursorentered device id deviceid deviceid glutin event windowevent window id windowid id event cursormoved device id deviceid deviceid position logicalposition x y modifiers logo glutin event windowevent window id windowid id event keyboardinput device id deviceid deviceid input keyboardinput scancode state released virtual keycode some return modifiers logo is synthetic false glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event userevent wakeup glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event windowevent window id windowid id event keyboardinput device id deviceid deviceid input keyboardinput scancode state pressed virtual keycode some return modifiers logo is synthetic false glutin event windowevent window id windowid id event receivedcharacter r glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event windowevent window id windowid id event resized logicalsize width height glutin event windowevent window id windowid id event moved logicalposition x y glutin event windowevent window id windowid id event resized logicalsize width height glutin event windowevent window id windowid id event moved logicalposition x y glutin event maineventscleared glutin event redrawrequested windowid id glutin event redraweventscleared new num cols is and num lines is width height glutin event newevents waitcancelled start instant t requested resume none glutin event userevent mousecursordirty glutin event userevent mousecursordirty glutin event userevent wakeup glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event windowevent window id windowid id event keyboardinput device id deviceid deviceid input keyboardinput scancode state released virtual keycode some return modifiers logo is synthetic false glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event userevent wakeup glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event windowevent window id windowid id event keyboardinput device id deviceid deviceid input keyboardinput scancode state pressed virtual keycode some return modifiers logo is synthetic false glutin event windowevent window id windowid id event receivedcharacter r glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event windowevent window id windowid id event resized logicalsize width height glutin event windowevent window id windowid id event moved logicalposition x y glutin event windowevent window id windowid id event resized logicalsize width height glutin event windowevent window id windowid id event moved logicalposition x y glutin event maineventscleared glutin event redrawrequested windowid id glutin event redraweventscleared new num cols is and num lines is width height glutin event newevents waitcancelled start instant t requested resume none glutin event userevent mousecursordirty glutin event userevent mousecursordirty glutin event userevent wakeup glutin event windowevent window id windowid id event cursorentered device id deviceid deviceid glutin event windowevent window id windowid id event cursormoved device id deviceid deviceid position logicalposition x y modifiers logo glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event windowevent window id windowid id event keyboardinput device id deviceid deviceid input keyboardinput scancode state released virtual keycode some return modifiers logo is synthetic false glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event userevent wakeup glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event userevent wakeup glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event windowevent window id windowid id event keyboardinput device id deviceid deviceid input keyboardinput scancode state pressed virtual keycode some return modifiers logo is synthetic false glutin event windowevent window id windowid id event receivedcharacter r glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event windowevent window id windowid id event resized logicalsize width height glutin event windowevent window id windowid id event moved logicalposition x y glutin event windowevent window id windowid id event resized logicalsize width height glutin event windowevent window id windowid id event moved logicalposition x y glutin event maineventscleared glutin event redrawrequested windowid id glutin event redraweventscleared new num cols is and num lines is width height glutin event newevents waitcancelled start instant t requested resume none glutin event userevent mousecursordirty glutin event userevent mousecursordirty glutin event userevent wakeup glutin event userevent wakeup glutin event windowevent window id windowid id event keyboardinput device id deviceid deviceid input keyboardinput scancode state released virtual keycode some return modifiers logo is synthetic false glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event userevent wakeup glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event windowevent window id windowid id event keyboardinput device id deviceid deviceid input keyboardinput scancode state released virtual keycode some lwin modifiers empty is synthetic false glutin event deviceevent device id deviceid deviceid event modifierschanged empty glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event windowevent window id windowid id event keyboardinput device id deviceid deviceid input keyboardinput scancode state pressed virtual keycode some lcontrol modifiers ctrl is synthetic false glutin event deviceevent device id deviceid deviceid event modifierschanged ctrl glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event windowevent window id windowid id event keyboardinput device id deviceid deviceid input keyboardinput scancode state pressed virtual keycode some d modifiers ctrl is synthetic false glutin event windowevent window id windowid id event receivedcharacter u glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event userevent mousecursordirty glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event userevent wakeup glutin event userevent wakeup glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event userevent mousecursordirty glutin event userevent mousecursordirty glutin event userevent title alacritty glutin event userevent wakeup glutin event maineventscleared glutin event redraweventscleared glutin event newevents waitcancelled start instant t requested resume none glutin event userevent exit glutin event userevent wakeup glutin event maineventscleared glutin event redraweventscleared glutin event newevents poll glutin event maineventscleared glutin event redraweventscleared glutin event newevents poll glutin event maineventscleared glutin event redraweventscleared glutin event newevents poll glutin event maineventscleared glutin event redraweventscleared glutin event newevents poll glutin event maineventscleared glutin event redraweventscleared glutin event newevents poll glutin event maineventscleared glutin event redraweventscleared glutin event newevents poll glutin event maineventscleared glutin event redraweventscleared glutin event newevents poll glutin event maineventscleared glutin event redraweventscleared glutin event newevents poll glutin event maineventscleared glutin event redraweventscleared glutin event newevents poll glutin event maineventscleared glutin event redraweventscleared glutin event newevents poll glutin event loopdestroyed goodbye description of bug using the togglesimplefullscreen action increases window height by one line each time it s invoked on macos it also intermittently shows an extra line in the prompt when in full screen there’s also a similar bug where if you start in simplefullscreen and then change back to windowed mode it doesn’t respect the window dimensions set in the configuration file instead it seems to revert to x until you start toggling as described when the height slowly increases as shown above how to reproduce add a binding for togglesimplefullscreen and set the startup mode for window to windowed then at launch toggle back and forth via a keybinding doesn t seem to matter which but mine was command return
1
178,025
14,658,270,741
IssuesEvent
2020-12-28 17:29:49
balaJS/mp3bot
https://api.github.com/repos/balaJS/mp3bot
opened
Docs
documentation
https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/ `DB Start: sudo systemctl start mongod` `DB status check: sudo systemctl status mongod` `DB stop: sudo systemctl stop mongod` `DB reload: sudo systemctl restart mongod` `DB Shell: mongo`
1.0
Docs - https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/ `DB Start: sudo systemctl start mongod` `DB status check: sudo systemctl status mongod` `DB stop: sudo systemctl stop mongod` `DB reload: sudo systemctl restart mongod` `DB Shell: mongo`
non_main
docs db start sudo systemctl start mongod db status check sudo systemctl status mongod db stop sudo systemctl stop mongod db reload sudo systemctl restart mongod db shell mongo
0
1,868
6,577,492,913
IssuesEvent
2017-09-12 01:17:51
ansible/ansible-modules-core
https://api.github.com/repos/ansible/ansible-modules-core
closed
docker: can't launch container with memory_limit=0
affects_2.0 bug_report cloud docker waiting_on_maintainer
##### ISSUE TYPE - Bug Report ##### COMPONENT NAME docker ##### ANSIBLE VERSION ``` ansible 2.0.1.0 ``` ##### CONFIGURATION default configuration ##### OS / ENVIRONMENT docker-1.10.3 ##### SUMMARY ansible module fails to launch containers with memory_limit=0 ##### STEPS TO REPRODUCE [root@js ~]# ansible -c local -m docker -a 'image=centos memory_limit=0' localhost ##### EXPECTED RESULTS Container launched without memory limit set ##### ACTUAL RESULTS ``` localhost | FAILED! => { "changed": false, "failed": true, "msg": "Could not convert 0 to integer" } ```
True
docker: can't launch container with memory_limit=0 - ##### ISSUE TYPE - Bug Report ##### COMPONENT NAME docker ##### ANSIBLE VERSION ``` ansible 2.0.1.0 ``` ##### CONFIGURATION default configuration ##### OS / ENVIRONMENT docker-1.10.3 ##### SUMMARY ansible module fails to launch containers with memory_limit=0 ##### STEPS TO REPRODUCE [root@js ~]# ansible -c local -m docker -a 'image=centos memory_limit=0' localhost ##### EXPECTED RESULTS Container launched without memory limit set ##### ACTUAL RESULTS ``` localhost | FAILED! => { "changed": false, "failed": true, "msg": "Could not convert 0 to integer" } ```
main
docker can t launch container with memory limit issue type bug report component name docker ansible version ansible configuration default configuration os environment docker summary ansible module fails to launch containers with memory limit steps to reproduce ansible c local m docker a image centos memory limit localhost expected results container launched without memory limit set actual results localhost failed changed false failed true msg could not convert to integer
1
1,141
4,998,883,182
IssuesEvent
2016-12-09 21:20:57
ansible/ansible-modules-core
https://api.github.com/repos/ansible/ansible-modules-core
closed
elasticache misses "Description" parameter
affects_2.1 aws cloud feature_idea waiting_on_maintainer
<!--- Verify first that your issue/request is not already reported in GitHub --> ##### ISSUE TYPE <!--- Pick one below and delete the rest: --> - Feature Idea ##### COMPONENT NAME elasticache ##### ANSIBLE VERSION <!--- Paste verbatim output from “ansible --version” between quotes below --> ``` ansible 2.1.1.0 config file = configured module search path = Default w/o overrides ``` ##### OS / ENVIRONMENT N/A ##### SUMMARY From the AWS Console I can set a "Description" -- via this Ansible module I can't. So I would suggest to add this parameter. ##### STEPS TO REPRODUCE <!--- For bugs, show exactly how to reproduce the problem. For new features, show how the feature would be used. --> <!--- Paste example playbooks or commands between quotes below --> ``` - name: "mgmt::db Create ElastiCache Redis" elasticache: state: present region: "{{ region }}" vpc_id: "{{ mgmt_vpc.id }}" # Name must be <= 20 chars name: "{{ owner }}-ec-{{ env }}-db-red" description: "ElastiCache Redis for Sentry" node_type: "cache.m4.large" num_nodes: 1 # no replicas engine: redis cache_engine_version: "3.2.4" cache_port: 6379 cache_parameter_group: "default.redis3.2" cache_subnet_group: "{{ owner }}-sngrp-{{ env }}-db-redis" security_group_ids: - "{{ mgmt_sg_redis.group_id }}" register: mgmt_ec_redis ``` <!--- You can also paste gist.github.com links for larger files --> ##### EXPECTED RESULTS I expected that the module call would be run without any errors. ##### ACTUAL RESULTS Got the following err msg: <!--- Paste verbatim command output between quotes below --> ``` unsupported parameter for module: description ```
True
elasticache misses "Description" parameter - <!--- Verify first that your issue/request is not already reported in GitHub --> ##### ISSUE TYPE <!--- Pick one below and delete the rest: --> - Feature Idea ##### COMPONENT NAME elasticache ##### ANSIBLE VERSION <!--- Paste verbatim output from “ansible --version” between quotes below --> ``` ansible 2.1.1.0 config file = configured module search path = Default w/o overrides ``` ##### OS / ENVIRONMENT N/A ##### SUMMARY From the AWS Console I can set a "Description" -- via this Ansible module I can't. So I would suggest to add this parameter. ##### STEPS TO REPRODUCE <!--- For bugs, show exactly how to reproduce the problem. For new features, show how the feature would be used. --> <!--- Paste example playbooks or commands between quotes below --> ``` - name: "mgmt::db Create ElastiCache Redis" elasticache: state: present region: "{{ region }}" vpc_id: "{{ mgmt_vpc.id }}" # Name must be <= 20 chars name: "{{ owner }}-ec-{{ env }}-db-red" description: "ElastiCache Redis for Sentry" node_type: "cache.m4.large" num_nodes: 1 # no replicas engine: redis cache_engine_version: "3.2.4" cache_port: 6379 cache_parameter_group: "default.redis3.2" cache_subnet_group: "{{ owner }}-sngrp-{{ env }}-db-redis" security_group_ids: - "{{ mgmt_sg_redis.group_id }}" register: mgmt_ec_redis ``` <!--- You can also paste gist.github.com links for larger files --> ##### EXPECTED RESULTS I expected that the module call would be run without any errors. ##### ACTUAL RESULTS Got the following err msg: <!--- Paste verbatim command output between quotes below --> ``` unsupported parameter for module: description ```
main
elasticache misses description parameter issue type feature idea component name elasticache ansible version ansible config file configured module search path default w o overrides os environment n a summary from the aws console i can set a description via this ansible module i can t so i would suggest to add this parameter steps to reproduce for bugs show exactly how to reproduce the problem for new features show how the feature would be used name mgmt db create elasticache redis elasticache state present region region vpc id mgmt vpc id name must be chars name owner ec env db red description elasticache redis for sentry node type cache large num nodes no replicas engine redis cache engine version cache port cache parameter group default cache subnet group owner sngrp env db redis security group ids mgmt sg redis group id register mgmt ec redis expected results i expected that the module call would be run without any errors actual results got the following err msg unsupported parameter for module description
1
5,711
30,188,940,009
IssuesEvent
2023-07-04 14:00:11
conbench/conbench
https://api.github.com/repos/conbench/conbench
opened
UI: show benchmarks in run: remove api layer indirection, use first-class objects
maintainability
analogous to #968 and #890. https://github.com/conbench/conbench/blob/a60e6af944c10bd272fe649a6f128888afce7b53/conbench/app/runs.py#L121
True
UI: show benchmarks in run: remove api layer indirection, use first-class objects - analogous to #968 and #890. https://github.com/conbench/conbench/blob/a60e6af944c10bd272fe649a6f128888afce7b53/conbench/app/runs.py#L121
main
ui show benchmarks in run remove api layer indirection use first class objects analogous to and
1
280,289
21,216,497,632
IssuesEvent
2022-04-11 07:53:21
appsmithorg/appsmith
https://api.github.com/repos/appsmithorg/appsmith
opened
Docs for #1004 [Bug] No error is shown on navigation if page name is invalid
Documentation User Education Pod
Field | Details -----|----- **POD** | FE Coders Pod **Parent Ticket** | #1004 Engineer | Release Date | Live Date | First Draft | Auto Assign | Priority | Environment |
1.0
Docs for #1004 [Bug] No error is shown on navigation if page name is invalid - Field | Details -----|----- **POD** | FE Coders Pod **Parent Ticket** | #1004 Engineer | Release Date | Live Date | First Draft | Auto Assign | Priority | Environment |
non_main
docs for no error is shown on navigation if page name is invalid field details pod fe coders pod parent ticket engineer release date live date first draft auto assign priority environment
0
426,802
29,660,872,026
IssuesEvent
2023-06-10 06:03:01
kubecub/docs
https://api.github.com/repos/kubecub/docs
closed
Bug reports for links in kubecub docs
kind/documentation triage/unresolved report
## Summary | Status | Count | |---------------|-------| | 🔍 Total | 2045 | | ✅ Successful | 1602 | | ⏳ Timeouts | 128 | | 🔀 Redirected | 0 | | 👻 Excluded | 1 | | ❓ Unknown | 0 | | 🚫 Errors | 314 | ## Errors per input ### Errors in docs/iam/projects/54.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/1.md * [404] [https://github.com/cubxxw/cs-awesome-Block_Chain/blob/master/go-advancend/README.md](https://github.com/cubxxw/cs-awesome-Block_Chain/blob/master/go-advancend/README.md) | Failed: Network error: Not Found * [404] [https://github.com/cubxxw/cs-awesome-Block_Chain/blob/master/Gomd_super/README.md](https://github.com/cubxxw/cs-awesome-Block_Chain/blob/master/Gomd_super/README.md) | Failed: Network error: Not Found * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [ERR] [file:///home/runner/work/docs/docs/docs/iam/projects/0.md](file:///home/runner/work/docs/docs/docs/iam/projects/0.md) | Failed: Cannot find file ### Errors in docs/iam/projects/66.md * [502] [http://nsddd.top/](http://nsddd.top/) | Failed: Network error: Bad Gateway * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/85.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/75.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/15.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [404] [https://github.com/marmotedu/iam/pkg/app](https://github.com/marmotedu/iam/pkg/app) | Failed: Network error: Not Found ### Errors in docs/iam/projects/86.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/2.md * [404] [https://github.com/cubxxw/cs-awesome-Block_Chain/blob/master/Gomd_super/README.md](https://github.com/cubxxw/cs-awesome-Block_Chain/blob/master/Gomd_super/README.md) | Cached: Error (cached) * [404] [https://github.com/cubxxw/cs-awesome-Block_Chain/blob/master/go-advancend/README.md](https://github.com/cubxxw/cs-awesome-Block_Chain/blob/master/go-advancend/README.md) | Cached: Error (cached) * [ERR] [file:///home/runner/work/docs/docs/docs/iam/projects/scripts/install/environment.sh](file:///home/runner/work/docs/docs/docs/iam/projects/scripts/install/environment.sh) | Failed: Cannot find file * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/95.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/20.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/36.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/58.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/61.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/71.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/30.md * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/7.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/8.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [file:///home/runner/work/docs/docs/docs/iam/projects/scripts/make-rules/common.mk](file:///home/runner/work/docs/docs/docs/iam/projects/scripts/make-rules/common.mk) | Failed: Cannot find file ### Errors in docs/iam/projects/81.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/89.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/项目管理从理论到实践.md * [404] [https://docs.github.com/assets/cb-164036/images/help/issues/project_view.png](https://docs.github.com/assets/cb-164036/images/help/issues/project_view.png) | Failed: Network error: Not Found * [404] [https://docs.github.com/assets/cb-105691/images/help/issues/projects_board.png](https://docs.github.com/assets/cb-105691/images/help/issues/projects_board.png) | Failed: Network error: Not Found * [404] [https://docs.github.com/assets/cb-160780/images/help/issues/projects_table.png](https://docs.github.com/assets/cb-160780/images/help/issues/projects_table.png) | Failed: Network error: Not Found * [404] [https://zh.wikipedia.org/w/index.php?title=%E5%8F%AF%E8%A1%8C%E6%80%A7&action=edit&redlink=1](https://zh.wikipedia.org/w/index.php?title=%E5%8F%AF%E8%A1%8C%E6%80%A7&action=edit&redlink=1) | Failed: Network error: Not Found ### Errors in docs/iam/projects/12.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/README.md * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/1.md](file:///home/runner/work/docs/docs/docs/markdown/1.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/92.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/92.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/81.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/81.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/3.md](file:///home/runner/work/docs/docs/docs/markdown/3.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/eth/TOC.md](file:///home/runner/work/docs/docs/docs/eth/TOC.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/mod.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/mod.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/6.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/6.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/17.md](file:///home/runner/work/docs/docs/docs/markdown/17.md) | Failed: Cannot find file * [404] [https://wakatime.com/badge/user/c430b3c6-a2bc-43a2-a24a-0828a17244b4/project/79cf7f10-4f61-42b7-92a8-dfc71cb99f4c.svg](https://wakatime.com/badge/user/c430b3c6-a2bc-43a2-a24a-0828a17244b4/project/79cf7f10-4f61-42b7-92a8-dfc71cb99f4c.svg) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/33.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/33.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/57.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/57.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/83.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/83.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/Go%E8%AF%AD%E8%A8%80%E6%93%8D%E4%BD%9Credis.md](file:///home/runner/work/docs/docs/docs/markdown/Go%E8%AF%AD%E8%A8%80%E6%93%8D%E4%BD%9Credis.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/9.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/9.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/docker/README.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/docker/README.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/Go%E8%AF%AD%E8%A8%80%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E9%98%9F%E5%88%97.md](file:///home/runner/work/docs/docs/docs/markdown/Go%E8%AF%AD%E8%A8%80%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E9%98%9F%E5%88%97.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/8.md](file:///home/runner/work/docs/docs/docs/markdown/8.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/15.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/15.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/95.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/95.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/18.md](file:///home/runner/work/docs/docs/docs/18.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/28.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/28.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/65.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/65.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/21.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/21.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/68.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/68.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/79.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/79.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/70.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/70.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/catalogue.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/catalogue.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/11.md](file:///home/runner/work/docs/docs/docs/markdown/11.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/43.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/43.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/29.md](file:///home/runner/work/docs/docs/docs/markdown/29.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/4.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/4.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/85.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/85.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/74.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/74.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/15.md](file:///home/runner/work/docs/docs/docs/markdown/15.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/16.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/16.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/28.md](file:///home/runner/work/docs/docs/docs/markdown/28.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/14.md](file:///home/runner/work/docs/docs/docs/markdown/14.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/93.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/93.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/48.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/48.md) | Failed: Cannot find file * [404] [https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_issues.svg](https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_issues.svg) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/41.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/41.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/13.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/13.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/31.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/31.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/Go%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84.md](file:///home/runner/work/docs/docs/docs/markdown/Go%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/19.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/19.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/13.md](file:///home/runner/work/docs/docs/docs/markdown/13.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/39.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/39.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/35.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/35.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/2.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/2.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/go-advancend/go_route.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/go-advancend/go_route.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/46.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/46.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/90.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/90.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/eth.md](file:///home/runner/work/docs/docs/docs/markdown/eth.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/6.md](file:///home/runner/work/docs/docs/docs/markdown/6.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/eth/TOC.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/eth/TOC.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/54.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/54.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/%E5%B9%B6%E5%8F%91.md](file:///home/runner/work/docs/docs/docs/markdown/%E5%B9%B6%E5%8F%91.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/file.md](file:///home/runner/work/docs/docs/docs/markdown/file.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/22.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/22.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/32.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/32.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/86.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/86.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/75.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/75.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/2.md](file:///home/runner/work/docs/docs/docs/markdown/2.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/bitwise.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/bitwise.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/14.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/14.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/61.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/61.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/97.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/97.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/24.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/24.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/20.md](file:///home/runner/work/docs/docs/docs/markdown/20.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/47.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/47.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/52.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/52.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/34.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/34.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/25.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/25.md) | Failed: Cannot find file * [404] [https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_timeline.svg](https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_timeline.svg) | Failed: Network error: Not Found * [404] [https://xxw.nsddd.top/s/vmIj](https://xxw.nsddd.top/s/vmIj) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/77.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/77.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/5.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/5.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/89.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/89.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/100.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/100.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/64.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/64.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/4.md](file:///home/runner/work/docs/docs/docs/markdown/4.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/11.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/11.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/53.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/53.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/17.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/17.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/name.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/name.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/99.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/99.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/73.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/73.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/29.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/29.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/README.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/README.md) | Failed: Network error: Not Found * [404] [https://wakatime.com/@3293172751/projects/hngzsvjxqc?start=2022-03-30&end=2022-04-05](https://wakatime.com/@3293172751/projects/hngzsvjxqc?start=2022-03-30&end=2022-04-05) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/84.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/84.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/27.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/27.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/72.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/72.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/82.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/82.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/30.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/30.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/38.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/38.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/3.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/3.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/16.md](file:///home/runner/work/docs/docs/docs/markdown/16.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/87.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/87.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/66.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/66.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/9.md](file:///home/runner/work/docs/docs/docs/markdown/9.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/91.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/91.md) | Failed: Cannot find file * [404] [https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_prs.svg](https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_prs.svg) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/60.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/60.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/67.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/67.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/readme_english.md](file:///home/runner/work/docs/docs/docs/readme_english.md) | Failed: Cannot find file * [404] [https://3293172751.github.io/awesome-docker/markdown](https://3293172751.github.io/awesome-docker/markdown) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/19.md](file:///home/runner/work/docs/docs/docs/markdown/19.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/26.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/26.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/69.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/69.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/50.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/50.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/98.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/98.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/7.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/7.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/26.md](file:///home/runner/work/docs/docs/docs/markdown/26.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/zhenze.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/zhenze.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/78.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/78.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/chan%E5%BA%95%E5%B1%82%E5%88%86%E6%9E%90.md](file:///home/runner/work/docs/docs/docs/markdown/chan%E5%BA%95%E5%B1%82%E5%88%86%E6%9E%90.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/10.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/10.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/20.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/20.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/%E4%B9%9D%E5%9E%8B%E4%BA%BA%E6%A0%BC.md](file:///home/runner/work/docs/docs/docs/markdown/%E4%B9%9D%E5%9E%8B%E4%BA%BA%E6%A0%BC.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/56.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/56.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/Redis%E8%BF%9B%E9%98%B6.md](file:///home/runner/work/docs/docs/docs/markdown/Redis%E8%BF%9B%E9%98%B6.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/go-advancend/go_route.md](file:///home/runner/work/docs/docs/docs/go-advancend/go_route.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/go-air.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/go-air.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/8.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/8.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/40.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/40.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/55.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/55.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/44.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/44.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/go-advancend/README.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/go-advancend/README.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/42.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/42.md) | Failed: Cannot find file * [404] [https://xxw.nsddd.top/s/wRSz](https://xxw.nsddd.top/s/wRSz) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/63.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/63.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/76.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/76.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/51.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/51.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/12.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/12.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/27.md](file:///home/runner/work/docs/docs/docs/markdown/27.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/58.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/58.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/Go%E6%B1%87%E7%BC%96.md](file:///home/runner/work/docs/docs/docs/markdown/Go%E6%B1%87%E7%BC%96.md) | Failed: Cannot find file * [404] [https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_badge.svg](https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_badge.svg) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/1.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/1.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/Redis.md](file:///home/runner/work/docs/docs/docs/markdown/Redis.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/96.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/96.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/59.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/59.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/88.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/88.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/chainbrock-learning/SUMMARY.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/chainbrock-learning/SUMMARY.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/71.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/71.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/go_file.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/go_file.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/37.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/37.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/23.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/23.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/5.md](file:///home/runner/work/docs/docs/docs/markdown/5.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/gofloat.md](file:///home/runner/work/docs/docs/docs/markdown/gofloat.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/62.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/62.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/94.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/94.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/18.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/18.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/80.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/80.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/12.md](file:///home/runner/work/docs/docs/docs/markdown/12.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/36.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/36.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/30.md](file:///home/runner/work/docs/docs/docs/markdown/30.md) | Failed: Cannot find file * [404] [https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_words.svg](https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_words.svg) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/49.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/49.md) | Failed: Cannot find file ### Errors in docs/iam/projects/78.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/3.md * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/72.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/43.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/74.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/63.md * [502] [http://nsddd.top/](http://nsddd.top/) | Failed: Network error: Bad Gateway * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/28.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout ### Errors in docs/iam/projects/70.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/29.md * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/76.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/80.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/83.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/99.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [file:///home/runner/work/docs/docs/docs/iam/projects/100.md](file:///home/runner/work/docs/docs/docs/iam/projects/100.md) | Failed: Cannot find file ### Errors in docs/iam/projects/21.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/47.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/93.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/18.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/97.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/6.md * [ERR] [https://iam.api.marmotedu/users/admin%E3%80%82](https://iam.api.marmotedu/users/admin%E3%80%82) | Failed: Network error: dns error: no record found for Query { name: Name("iam.api.marmotedu.xaapicw3gjmereppnaj1kw40ib.bx.internal.cloudapp.net."), query_type: AAAA, query_class: IN } * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [ERR] [http://xxxx/get_user](http://xxxx/get_user) | Failed: Network error: dns error: no record found for Query { name: Name("xxxx."), query_type: AAAA, query_class: IN } * [ERR] [http://xxxx/getUser](http://xxxx/getUser) | Failed: Network error: dns error: no record found for Query { name: Name("xxxx."), query_type: AAAA, query_class: IN } * [ERR] [https://iam.api.marmotedu.com/users%E3%80%82](https://iam.api.marmotedu.com/users%E3%80%82) | Failed: Network error: dns error: no record found for Query { name: Name("iam.api.marmotedu.com.xaapicw3gjmereppnaj1kw40ib.bx.internal.cloudapp.net."), query_type: AAAA, query_class: IN } * [ERR] [https://iam.api.marmotedu.com/](https://iam.api.marmotedu.com/) | Failed: Network error: dns error: no record found for Query { name: Name("iam.api.marmotedu.com.xaapicw3gjmereppnaj1kw40ib.bx.internal.cloudapp.net."), query_type: AAAA, query_class: IN } * [ERR] [https://iam.api.marmotedu.xn--com,-j96g453e/](https://iam.api.marmotedu.xn--com,-j96g453e/) | Failed: Network error: dns error: proto error: Label contains invalid characters: Err(Errors { disallowed_by_std3_ascii_rules }) * [ERR] [https://marmotedu.com/api%EF%BC%8C%E8%BF%99%E7%A7%8D%E6%96%B9%E5%BC%8F%E9%80%82%E5%90%88](https://marmotedu.com/api%EF%BC%8C%E8%BF%99%E7%A7%8D%E6%96%B9%E5%BC%8F%E9%80%82%E5%90%88) | Failed: Network error: dns error: no record found for Query { name: Name("marmotedu.com.xaapicw3gjmereppnaj1kw40ib.bx.internal.cloudapp.net."), query_type: AAAA, query_class: IN } * [ERR] [https://marmotedu.com/api](https://marmotedu.com/api) | Failed: Network error: dns error: no record found for Query { name: Name("marmotedu.com.xaapicw3gjmereppnaj1kw40ib.bx.internal.cloudapp.net."), query_type: AAAA, query_class: IN } * [ERR] [http://xxxx/get-user](http://xxxx/get-user) | Failed: Network error: dns error: no record found for Query { name: Name("xxxx."), query_type: AAAA, query_class: IN } ### Errors in docs/iam/projects/39.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/24.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/98.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/5.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/27.md * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/67.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [502] [http://nsddd.top/](http://nsddd.top/) | Failed: Network error: Bad Gateway ### Errors in docs/iam/projects/11.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/82.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/45.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/14.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/53.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/59.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/60.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/19.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/40.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/4.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/56.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/62.md * [502] [http://nsddd.top/](http://nsddd.top/) | Failed: Network error: Bad Gateway ### Errors in docs/iam/projects/65.md * [502] [http://nsddd.top/](http://nsddd.top/) | Failed: Network error: Bad Gateway * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/52.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/73.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/49.md * [401] [https://libs.garden/go%E3%80%82%E4%BD%A0%E5%8F%AF%E4%BB%A5%E9%80%9A%E8%BF%87%E4%BB%A5%E4%B8%8B3%E6%AD%A5%E6%9F%A5%E6%89%BE%E9%9C%80%E8%A6%81%E7%9A%84%E5%BC%80%E6%BA%90%E9%A1%B9%E7%9B%AE%EF%BC%9A](https://libs.garden/go%E3%80%82%E4%BD%A0%E5%8F%AF%E4%BB%A5%E9%80%9A%E8%BF%87%E4%BB%A5%E4%B8%8B3%E6%AD%A5%E6%9F%A5%E6%89%BE%E9%9C%80%E8%A6%81%E7%9A%84%E5%BC%80%E6%BA%90%E9%A1%B9%E7%9B%AE%EF%BC%9A) | Failed: Network error: Unauthorized * [401] [https://libs.garden/go/categories](https://libs.garden/go/categories) | Failed: Network error: Unauthorized * [401] [https://libs.garden/go](https://libs.garden/go) | Failed: Network error: Unauthorized * [TIMEOUT] [https://pan.baidu.com/s/1eKKhR1V47qivSWcmy60a7Q?pwd=drkg](https://pan.baidu.com/s/1eKKhR1V47qivSWcmy60a7Q?pwd=drkg) | Timeout * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [401] [https://libs.garden/go%EF%BC%9B](https://libs.garden/go%EF%BC%9B) | Failed: Network error: Unauthorized ### Errors in docs/iam/projects/69.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/17.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/22.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [ERR] [file:///home/runner/work/docs/docs/docs/iam/projects/marmotedu/gopractise-demo/gorm/main.go](file:///home/runner/work/docs/docs/docs/iam/projects/marmotedu/gopractise-demo/gorm/main.go) | Failed: Cannot find file ### Errors in docs/iam/projects/50.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/51.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/48.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/37.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/96.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/32.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout ### Errors in docs/iam/projects/91.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/31.md * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/23.md * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/42.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/33.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout ### Errors in docs/iam/projects/26.md * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/13.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/84.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/46.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/10.md * [ERR] [file:///home/runner/work/docs/docs/docs/iam/projects/iam/scripts/make-rules/swagger.mk](file:///home/runner/work/docs/docs/docs/iam/projects/iam/scripts/make-rules/swagger.mk) | Failed: Cannot find file * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [ERR] [file:///home/runner/work/docs/docs/docs/iam/projects/iam/api/swagger/docs](file:///home/runner/work/docs/docs/docs/iam/projects/iam/api/swagger/docs) | Failed: Cannot find file ### Errors in docs/iam/projects/55.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/44.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/9.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [502] [https://nsddd.top/archives/golangci](https://nsddd.top/archives/golangci) | Failed: Network error: Bad Gateway ### Errors in docs/iam/projects/16.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/77.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/88.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/57.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/41.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/25.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout ### Errors in docs/iam/projects/92.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/64.md * [502] [http://nsddd.top/](http://nsddd.top/) | Failed: Network error: Bad Gateway * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/87.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/94.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/90.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/35.md * [404] [https://kubernetes.io/zh/docs/concepts/overview/working-with-objects/kubernetes-objects/](https://kubernetes.io/zh/docs/concepts/overview/working-with-objects/kubernetes-objects/) | Failed: Network error: Not Found * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/34.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/38.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/79.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/68.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) [Full Github Actions output](https://github.com/kubecub/docs/actions/runs/5227680177?check_suite_focus=true)
1.0
Bug reports for links in kubecub docs - ## Summary | Status | Count | |---------------|-------| | 🔍 Total | 2045 | | ✅ Successful | 1602 | | ⏳ Timeouts | 128 | | 🔀 Redirected | 0 | | 👻 Excluded | 1 | | ❓ Unknown | 0 | | 🚫 Errors | 314 | ## Errors per input ### Errors in docs/iam/projects/54.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/1.md * [404] [https://github.com/cubxxw/cs-awesome-Block_Chain/blob/master/go-advancend/README.md](https://github.com/cubxxw/cs-awesome-Block_Chain/blob/master/go-advancend/README.md) | Failed: Network error: Not Found * [404] [https://github.com/cubxxw/cs-awesome-Block_Chain/blob/master/Gomd_super/README.md](https://github.com/cubxxw/cs-awesome-Block_Chain/blob/master/Gomd_super/README.md) | Failed: Network error: Not Found * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [ERR] [file:///home/runner/work/docs/docs/docs/iam/projects/0.md](file:///home/runner/work/docs/docs/docs/iam/projects/0.md) | Failed: Cannot find file ### Errors in docs/iam/projects/66.md * [502] [http://nsddd.top/](http://nsddd.top/) | Failed: Network error: Bad Gateway * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/85.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/75.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/15.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [404] [https://github.com/marmotedu/iam/pkg/app](https://github.com/marmotedu/iam/pkg/app) | Failed: Network error: Not Found ### Errors in docs/iam/projects/86.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/2.md * [404] [https://github.com/cubxxw/cs-awesome-Block_Chain/blob/master/Gomd_super/README.md](https://github.com/cubxxw/cs-awesome-Block_Chain/blob/master/Gomd_super/README.md) | Cached: Error (cached) * [404] [https://github.com/cubxxw/cs-awesome-Block_Chain/blob/master/go-advancend/README.md](https://github.com/cubxxw/cs-awesome-Block_Chain/blob/master/go-advancend/README.md) | Cached: Error (cached) * [ERR] [file:///home/runner/work/docs/docs/docs/iam/projects/scripts/install/environment.sh](file:///home/runner/work/docs/docs/docs/iam/projects/scripts/install/environment.sh) | Failed: Cannot find file * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/95.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/20.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/36.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/58.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/61.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/71.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/30.md * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/7.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/8.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [file:///home/runner/work/docs/docs/docs/iam/projects/scripts/make-rules/common.mk](file:///home/runner/work/docs/docs/docs/iam/projects/scripts/make-rules/common.mk) | Failed: Cannot find file ### Errors in docs/iam/projects/81.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/89.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/项目管理从理论到实践.md * [404] [https://docs.github.com/assets/cb-164036/images/help/issues/project_view.png](https://docs.github.com/assets/cb-164036/images/help/issues/project_view.png) | Failed: Network error: Not Found * [404] [https://docs.github.com/assets/cb-105691/images/help/issues/projects_board.png](https://docs.github.com/assets/cb-105691/images/help/issues/projects_board.png) | Failed: Network error: Not Found * [404] [https://docs.github.com/assets/cb-160780/images/help/issues/projects_table.png](https://docs.github.com/assets/cb-160780/images/help/issues/projects_table.png) | Failed: Network error: Not Found * [404] [https://zh.wikipedia.org/w/index.php?title=%E5%8F%AF%E8%A1%8C%E6%80%A7&action=edit&redlink=1](https://zh.wikipedia.org/w/index.php?title=%E5%8F%AF%E8%A1%8C%E6%80%A7&action=edit&redlink=1) | Failed: Network error: Not Found ### Errors in docs/iam/projects/12.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/README.md * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/1.md](file:///home/runner/work/docs/docs/docs/markdown/1.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/92.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/92.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/81.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/81.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/3.md](file:///home/runner/work/docs/docs/docs/markdown/3.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/eth/TOC.md](file:///home/runner/work/docs/docs/docs/eth/TOC.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/mod.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/mod.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/6.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/6.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/17.md](file:///home/runner/work/docs/docs/docs/markdown/17.md) | Failed: Cannot find file * [404] [https://wakatime.com/badge/user/c430b3c6-a2bc-43a2-a24a-0828a17244b4/project/79cf7f10-4f61-42b7-92a8-dfc71cb99f4c.svg](https://wakatime.com/badge/user/c430b3c6-a2bc-43a2-a24a-0828a17244b4/project/79cf7f10-4f61-42b7-92a8-dfc71cb99f4c.svg) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/33.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/33.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/57.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/57.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/83.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/83.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/Go%E8%AF%AD%E8%A8%80%E6%93%8D%E4%BD%9Credis.md](file:///home/runner/work/docs/docs/docs/markdown/Go%E8%AF%AD%E8%A8%80%E6%93%8D%E4%BD%9Credis.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/9.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/9.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/docker/README.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/docker/README.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/Go%E8%AF%AD%E8%A8%80%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E9%98%9F%E5%88%97.md](file:///home/runner/work/docs/docs/docs/markdown/Go%E8%AF%AD%E8%A8%80%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E9%98%9F%E5%88%97.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/8.md](file:///home/runner/work/docs/docs/docs/markdown/8.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/15.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/15.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/95.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/95.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/18.md](file:///home/runner/work/docs/docs/docs/18.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/28.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/28.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/65.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/65.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/21.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/21.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/68.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/68.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/79.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/79.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/70.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/70.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/catalogue.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/catalogue.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/11.md](file:///home/runner/work/docs/docs/docs/markdown/11.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/43.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/43.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/29.md](file:///home/runner/work/docs/docs/docs/markdown/29.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/4.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/4.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/85.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/85.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/74.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/74.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/15.md](file:///home/runner/work/docs/docs/docs/markdown/15.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/16.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/16.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/28.md](file:///home/runner/work/docs/docs/docs/markdown/28.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/14.md](file:///home/runner/work/docs/docs/docs/markdown/14.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/93.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/93.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/48.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/48.md) | Failed: Cannot find file * [404] [https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_issues.svg](https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_issues.svg) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/41.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/41.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/13.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/13.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/31.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/31.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/Go%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84.md](file:///home/runner/work/docs/docs/docs/markdown/Go%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/19.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/19.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/13.md](file:///home/runner/work/docs/docs/docs/markdown/13.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/39.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/39.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/35.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/35.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/2.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/2.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/go-advancend/go_route.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/go-advancend/go_route.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/46.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/46.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/90.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/90.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/eth.md](file:///home/runner/work/docs/docs/docs/markdown/eth.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/6.md](file:///home/runner/work/docs/docs/docs/markdown/6.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/eth/TOC.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/eth/TOC.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/54.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/54.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/%E5%B9%B6%E5%8F%91.md](file:///home/runner/work/docs/docs/docs/markdown/%E5%B9%B6%E5%8F%91.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/file.md](file:///home/runner/work/docs/docs/docs/markdown/file.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/22.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/22.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/32.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/32.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/86.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/86.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/75.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/75.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/2.md](file:///home/runner/work/docs/docs/docs/markdown/2.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/bitwise.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/bitwise.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/14.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/14.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/61.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/61.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/97.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/97.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/24.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/24.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/20.md](file:///home/runner/work/docs/docs/docs/markdown/20.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/47.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/47.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/52.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/52.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/34.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/34.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/25.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/25.md) | Failed: Cannot find file * [404] [https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_timeline.svg](https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_timeline.svg) | Failed: Network error: Not Found * [404] [https://xxw.nsddd.top/s/vmIj](https://xxw.nsddd.top/s/vmIj) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/77.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/77.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/5.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/5.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/89.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/89.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/100.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/100.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/64.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/64.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/4.md](file:///home/runner/work/docs/docs/docs/markdown/4.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/11.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/11.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/53.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/53.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/17.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/17.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/name.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/name.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/99.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/99.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/73.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/73.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/29.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/29.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/README.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/README.md) | Failed: Network error: Not Found * [404] [https://wakatime.com/@3293172751/projects/hngzsvjxqc?start=2022-03-30&end=2022-04-05](https://wakatime.com/@3293172751/projects/hngzsvjxqc?start=2022-03-30&end=2022-04-05) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/84.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/84.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/27.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/27.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/72.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/72.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/82.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/82.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/30.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/30.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/38.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/38.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/3.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/3.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/16.md](file:///home/runner/work/docs/docs/docs/markdown/16.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/87.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/87.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/66.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/66.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/9.md](file:///home/runner/work/docs/docs/docs/markdown/9.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/91.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/91.md) | Failed: Cannot find file * [404] [https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_prs.svg](https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_prs.svg) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/60.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/60.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/67.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/67.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/readme_english.md](file:///home/runner/work/docs/docs/docs/readme_english.md) | Failed: Cannot find file * [404] [https://3293172751.github.io/awesome-docker/markdown](https://3293172751.github.io/awesome-docker/markdown) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/19.md](file:///home/runner/work/docs/docs/docs/markdown/19.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/26.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/26.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/69.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/69.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/50.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/50.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/98.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/98.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/7.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/7.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/26.md](file:///home/runner/work/docs/docs/docs/markdown/26.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/zhenze.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/zhenze.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/78.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/78.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/chan%E5%BA%95%E5%B1%82%E5%88%86%E6%9E%90.md](file:///home/runner/work/docs/docs/docs/markdown/chan%E5%BA%95%E5%B1%82%E5%88%86%E6%9E%90.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/10.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/10.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/20.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/20.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/%E4%B9%9D%E5%9E%8B%E4%BA%BA%E6%A0%BC.md](file:///home/runner/work/docs/docs/docs/markdown/%E4%B9%9D%E5%9E%8B%E4%BA%BA%E6%A0%BC.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/56.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/56.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/Redis%E8%BF%9B%E9%98%B6.md](file:///home/runner/work/docs/docs/docs/markdown/Redis%E8%BF%9B%E9%98%B6.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/go-advancend/go_route.md](file:///home/runner/work/docs/docs/docs/go-advancend/go_route.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/go-air.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/go-air.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/8.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/8.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/40.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/40.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/55.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/55.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/44.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/44.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/go-advancend/README.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/go-advancend/README.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/42.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/42.md) | Failed: Cannot find file * [404] [https://xxw.nsddd.top/s/wRSz](https://xxw.nsddd.top/s/wRSz) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/63.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/63.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/76.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/76.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/51.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/51.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/12.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/12.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/27.md](file:///home/runner/work/docs/docs/docs/markdown/27.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/58.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/58.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/Go%E6%B1%87%E7%BC%96.md](file:///home/runner/work/docs/docs/docs/markdown/Go%E6%B1%87%E7%BC%96.md) | Failed: Cannot find file * [404] [https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_badge.svg](https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_badge.svg) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/1.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/1.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/Redis.md](file:///home/runner/work/docs/docs/docs/markdown/Redis.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/96.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/96.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/59.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/59.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/88.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/88.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/chainbrock-learning/SUMMARY.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/chainbrock-learning/SUMMARY.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/71.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/71.md) | Failed: Cannot find file * [404] [https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/go_file.md](https://github.com/cubxxw/awesome-cs-cloudnative-blockchain/blob/master/Gomd_super/go_file.md) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/37.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/37.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/23.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/23.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/5.md](file:///home/runner/work/docs/docs/docs/markdown/5.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/gofloat.md](file:///home/runner/work/docs/docs/docs/markdown/gofloat.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/62.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/62.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/94.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/94.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/18.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/18.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/80.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/80.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/12.md](file:///home/runner/work/docs/docs/docs/markdown/12.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/36.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/36.md) | Failed: Cannot find file * [ERR] [file:///home/runner/work/docs/docs/docs/markdown/30.md](file:///home/runner/work/docs/docs/docs/markdown/30.md) | Failed: Cannot find file * [404] [https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_words.svg](https://images.repography.com/26892425/cubxxw/awesome-cs-cloudnative-blockchain/recent-activity/04864df8cf8f1f104b2b9453e0b47498_words.svg) | Failed: Network error: Not Found * [ERR] [file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/49.md](file:///home/runner/work/docs/docs/docs/Gomd_super/markdown/49.md) | Failed: Cannot find file ### Errors in docs/iam/projects/78.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/3.md * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/72.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/43.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/74.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/63.md * [502] [http://nsddd.top/](http://nsddd.top/) | Failed: Network error: Bad Gateway * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/28.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout ### Errors in docs/iam/projects/70.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/29.md * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/76.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/80.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/83.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/99.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [file:///home/runner/work/docs/docs/docs/iam/projects/100.md](file:///home/runner/work/docs/docs/docs/iam/projects/100.md) | Failed: Cannot find file ### Errors in docs/iam/projects/21.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/47.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/93.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/18.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/97.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/6.md * [ERR] [https://iam.api.marmotedu/users/admin%E3%80%82](https://iam.api.marmotedu/users/admin%E3%80%82) | Failed: Network error: dns error: no record found for Query { name: Name("iam.api.marmotedu.xaapicw3gjmereppnaj1kw40ib.bx.internal.cloudapp.net."), query_type: AAAA, query_class: IN } * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [ERR] [http://xxxx/get_user](http://xxxx/get_user) | Failed: Network error: dns error: no record found for Query { name: Name("xxxx."), query_type: AAAA, query_class: IN } * [ERR] [http://xxxx/getUser](http://xxxx/getUser) | Failed: Network error: dns error: no record found for Query { name: Name("xxxx."), query_type: AAAA, query_class: IN } * [ERR] [https://iam.api.marmotedu.com/users%E3%80%82](https://iam.api.marmotedu.com/users%E3%80%82) | Failed: Network error: dns error: no record found for Query { name: Name("iam.api.marmotedu.com.xaapicw3gjmereppnaj1kw40ib.bx.internal.cloudapp.net."), query_type: AAAA, query_class: IN } * [ERR] [https://iam.api.marmotedu.com/](https://iam.api.marmotedu.com/) | Failed: Network error: dns error: no record found for Query { name: Name("iam.api.marmotedu.com.xaapicw3gjmereppnaj1kw40ib.bx.internal.cloudapp.net."), query_type: AAAA, query_class: IN } * [ERR] [https://iam.api.marmotedu.xn--com,-j96g453e/](https://iam.api.marmotedu.xn--com,-j96g453e/) | Failed: Network error: dns error: proto error: Label contains invalid characters: Err(Errors { disallowed_by_std3_ascii_rules }) * [ERR] [https://marmotedu.com/api%EF%BC%8C%E8%BF%99%E7%A7%8D%E6%96%B9%E5%BC%8F%E9%80%82%E5%90%88](https://marmotedu.com/api%EF%BC%8C%E8%BF%99%E7%A7%8D%E6%96%B9%E5%BC%8F%E9%80%82%E5%90%88) | Failed: Network error: dns error: no record found for Query { name: Name("marmotedu.com.xaapicw3gjmereppnaj1kw40ib.bx.internal.cloudapp.net."), query_type: AAAA, query_class: IN } * [ERR] [https://marmotedu.com/api](https://marmotedu.com/api) | Failed: Network error: dns error: no record found for Query { name: Name("marmotedu.com.xaapicw3gjmereppnaj1kw40ib.bx.internal.cloudapp.net."), query_type: AAAA, query_class: IN } * [ERR] [http://xxxx/get-user](http://xxxx/get-user) | Failed: Network error: dns error: no record found for Query { name: Name("xxxx."), query_type: AAAA, query_class: IN } ### Errors in docs/iam/projects/39.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/24.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/98.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/5.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/27.md * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/67.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [502] [http://nsddd.top/](http://nsddd.top/) | Failed: Network error: Bad Gateway ### Errors in docs/iam/projects/11.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/82.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/45.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/14.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/53.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/59.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/60.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/19.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/40.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/4.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/56.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/62.md * [502] [http://nsddd.top/](http://nsddd.top/) | Failed: Network error: Bad Gateway ### Errors in docs/iam/projects/65.md * [502] [http://nsddd.top/](http://nsddd.top/) | Failed: Network error: Bad Gateway * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/52.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/73.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/49.md * [401] [https://libs.garden/go%E3%80%82%E4%BD%A0%E5%8F%AF%E4%BB%A5%E9%80%9A%E8%BF%87%E4%BB%A5%E4%B8%8B3%E6%AD%A5%E6%9F%A5%E6%89%BE%E9%9C%80%E8%A6%81%E7%9A%84%E5%BC%80%E6%BA%90%E9%A1%B9%E7%9B%AE%EF%BC%9A](https://libs.garden/go%E3%80%82%E4%BD%A0%E5%8F%AF%E4%BB%A5%E9%80%9A%E8%BF%87%E4%BB%A5%E4%B8%8B3%E6%AD%A5%E6%9F%A5%E6%89%BE%E9%9C%80%E8%A6%81%E7%9A%84%E5%BC%80%E6%BA%90%E9%A1%B9%E7%9B%AE%EF%BC%9A) | Failed: Network error: Unauthorized * [401] [https://libs.garden/go/categories](https://libs.garden/go/categories) | Failed: Network error: Unauthorized * [401] [https://libs.garden/go](https://libs.garden/go) | Failed: Network error: Unauthorized * [TIMEOUT] [https://pan.baidu.com/s/1eKKhR1V47qivSWcmy60a7Q?pwd=drkg](https://pan.baidu.com/s/1eKKhR1V47qivSWcmy60a7Q?pwd=drkg) | Timeout * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [401] [https://libs.garden/go%EF%BC%9B](https://libs.garden/go%EF%BC%9B) | Failed: Network error: Unauthorized ### Errors in docs/iam/projects/69.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/17.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/22.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [ERR] [file:///home/runner/work/docs/docs/docs/iam/projects/marmotedu/gopractise-demo/gorm/main.go](file:///home/runner/work/docs/docs/docs/iam/projects/marmotedu/gopractise-demo/gorm/main.go) | Failed: Cannot find file ### Errors in docs/iam/projects/50.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/51.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/48.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/37.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/96.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/32.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout ### Errors in docs/iam/projects/91.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/31.md * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/23.md * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/42.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/33.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout ### Errors in docs/iam/projects/26.md * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/13.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/84.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/46.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/10.md * [ERR] [file:///home/runner/work/docs/docs/docs/iam/projects/iam/scripts/make-rules/swagger.mk](file:///home/runner/work/docs/docs/docs/iam/projects/iam/scripts/make-rules/swagger.mk) | Failed: Cannot find file * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [ERR] [file:///home/runner/work/docs/docs/docs/iam/projects/iam/api/swagger/docs](file:///home/runner/work/docs/docs/docs/iam/projects/iam/api/swagger/docs) | Failed: Cannot find file ### Errors in docs/iam/projects/55.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/44.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/9.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [502] [https://nsddd.top/archives/golangci](https://nsddd.top/archives/golangci) | Failed: Network error: Bad Gateway ### Errors in docs/iam/projects/16.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/77.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/88.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/57.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/41.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/25.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout * [TIMEOUT] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Timeout ### Errors in docs/iam/projects/92.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/64.md * [502] [http://nsddd.top/](http://nsddd.top/) | Failed: Network error: Bad Gateway * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/87.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/94.md * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) ### Errors in docs/iam/projects/90.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/35.md * [404] [https://kubernetes.io/zh/docs/concepts/overview/working-with-objects/kubernetes-objects/](https://kubernetes.io/zh/docs/concepts/overview/working-with-objects/kubernetes-objects/) | Failed: Network error: Not Found * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/34.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/38.md * [TIMEOUT] [http://nsddd.top/](http://nsddd.top/) | Timeout ### Errors in docs/iam/projects/79.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) ### Errors in docs/iam/projects/68.md * [ERR] [https://nsddd.top/archives/contributors](https://nsddd.top/archives/contributors) | Cached: Error (cached) * [ERR] [http://nsddd.top/](http://nsddd.top/) | Cached: Error (cached) [Full Github Actions output](https://github.com/kubecub/docs/actions/runs/5227680177?check_suite_focus=true)
non_main
bug reports for links in kubecub docs summary status count 🔍 total ✅ successful ⏳ timeouts 🔀 redirected 👻 excluded ❓ unknown 🚫 errors errors per input errors in docs iam projects md timeout errors in docs iam projects md failed network error not found failed network error not found timeout file home runner work docs docs docs iam projects md failed cannot find file errors in docs iam projects md failed network error bad gateway cached error cached errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md timeout failed network error not found errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md cached error cached cached error cached file home runner work docs docs docs iam projects scripts install environment sh failed cannot find file timeout errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md timeout errors in docs iam projects md timeout errors in docs iam projects md timeout errors in docs iam projects md timeout errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md timeout timeout errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md cached error cached cached error cached file home runner work docs docs docs iam projects scripts make rules common mk failed cannot find file errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md cached error cached cached error cached errors in docs iam projects 项目管理从理论到实践 md failed network error not found failed network error not found failed network error not found failed network error not found errors in docs iam projects md timeout errors in docs readme md file home runner work docs docs docs markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file file home runner work docs docs docs eth toc md failed cannot find file failed network error not found file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file failed network error not found file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown go af ad bd md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file failed network error not found file home runner work docs docs docs markdown go af ad ae bb md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file failed network error not found file home runner work docs docs docs markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file failed network error not found file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown go ae bb md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file failed network error not found file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown eth md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file failed network error not found file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file file home runner work docs docs docs markdown file md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file failed network error not found file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file failed network error not found failed network error not found file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file failed network error not found file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file failed network error not found failed network error not found file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file failed network error not found file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs readme english md failed cannot find file failed network error not found file home runner work docs docs docs markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file failed network error not found file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown chan ba md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown ba ba bc md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown redis bf md failed cannot find file file home runner work docs docs docs go advancend go route md failed cannot find file failed network error not found file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file failed network error not found file home runner work docs docs docs gomd super markdown md failed cannot find file failed network error not found file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file failed network error not found file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown go bc md failed cannot find file failed network error not found file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown redis md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file failed network error not found file home runner work docs docs docs gomd super markdown md failed cannot find file failed network error not found file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file file home runner work docs docs docs markdown gofloat md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file file home runner work docs docs docs gomd super markdown md failed cannot find file file home runner work docs docs docs markdown md failed cannot find file failed network error not found file home runner work docs docs docs gomd super markdown md failed cannot find file errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md timeout timeout errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md timeout errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md failed network error bad gateway cached error cached errors in docs iam projects md timeout timeout errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md timeout timeout errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md cached error cached cached error cached file home runner work docs docs docs iam projects md failed cannot find file errors in docs iam projects md timeout errors in docs iam projects md timeout errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md timeout errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md failed network error dns error no record found for query name name iam api marmotedu bx internal cloudapp net query type aaaa query class in timeout failed network error dns error no record found for query name name xxxx query type aaaa query class in failed network error dns error no record found for query name name xxxx query type aaaa query class in failed network error dns error no record found for query name name iam api marmotedu com bx internal cloudapp net query type aaaa query class in failed network error dns error no record found for query name name iam api marmotedu com bx internal cloudapp net query type aaaa query class in failed network error dns error proto error label contains invalid characters err errors disallowed by ascii rules failed network error dns error no record found for query name name marmotedu com bx internal cloudapp net query type aaaa query class in failed network error dns error no record found for query name name marmotedu com bx internal cloudapp net query type aaaa query class in failed network error dns error no record found for query name name xxxx query type aaaa query class in errors in docs iam projects md timeout errors in docs iam projects md timeout errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md timeout errors in docs iam projects md timeout timeout errors in docs iam projects md cached error cached failed network error bad gateway errors in docs iam projects md timeout errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md timeout errors in docs iam projects md timeout errors in docs iam projects md timeout errors in docs iam projects md timeout errors in docs iam projects md timeout errors in docs iam projects md timeout errors in docs iam projects md timeout errors in docs iam projects md timeout errors in docs iam projects md timeout errors in docs iam projects md failed network error bad gateway errors in docs iam projects md failed network error bad gateway cached error cached errors in docs iam projects md timeout errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md failed network error unauthorized failed network error unauthorized failed network error unauthorized timeout timeout failed network error unauthorized errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md timeout errors in docs iam projects md timeout file home runner work docs docs docs iam projects marmotedu gopractise demo gorm main go failed cannot find file errors in docs iam projects md timeout errors in docs iam projects md timeout errors in docs iam projects md timeout errors in docs iam projects md timeout errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md timeout timeout errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md timeout timeout errors in docs iam projects md timeout timeout errors in docs iam projects md timeout errors in docs iam projects md timeout timeout errors in docs iam projects md timeout timeout errors in docs iam projects md timeout errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md timeout errors in docs iam projects md file home runner work docs docs docs iam projects iam scripts make rules swagger mk failed cannot find file timeout file home runner work docs docs docs iam projects iam api swagger docs failed cannot find file errors in docs iam projects md timeout errors in docs iam projects md timeout errors in docs iam projects md cached error cached cached error cached failed network error bad gateway errors in docs iam projects md timeout errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md timeout errors in docs iam projects md timeout errors in docs iam projects md timeout timeout errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md failed network error bad gateway cached error cached errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md failed network error not found timeout errors in docs iam projects md timeout errors in docs iam projects md timeout errors in docs iam projects md cached error cached cached error cached errors in docs iam projects md cached error cached cached error cached
0
5,175
26,345,586,765
IssuesEvent
2023-01-10 21:44:25
mozilla/foundation.mozilla.org
https://api.github.com/repos/mozilla/foundation.mozilla.org
opened
Optimize PNGs
engineering maintain needs grooming
Many PNGs in the codebase can be optimized through the `inv npm "run optimize:png"` command. Let's do that. We should also pay attention to Percy flags in the PR in case any image quality gets messed up during the optimization process.
True
Optimize PNGs - Many PNGs in the codebase can be optimized through the `inv npm "run optimize:png"` command. Let's do that. We should also pay attention to Percy flags in the PR in case any image quality gets messed up during the optimization process.
main
optimize pngs many pngs in the codebase can be optimized through the inv npm run optimize png command let s do that we should also pay attention to percy flags in the pr in case any image quality gets messed up during the optimization process
1