Unnamed: 0
int64
0
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
5
112
repo_url
stringlengths
34
141
action
stringclasses
3 values
title
stringlengths
1
757
labels
stringlengths
4
664
body
stringlengths
3
261k
index
stringclasses
10 values
text_combine
stringlengths
96
261k
label
stringclasses
2 values
text
stringlengths
96
232k
binary_label
int64
0
1
396,515
27,121,567,414
IssuesEvent
2023-02-15 23:30:24
VoskhodXIV/webservice
https://api.github.com/repos/VoskhodXIV/webservice
opened
[FEAT] Error-handling and helper functions
documentation enhancement good first issue
## Custom error handlers Have custom error handlers for various HTTP error codes and sequelize database errors. ## Helper functions Have custom helper functions to de-clutter the controller logic. ### References [sydrawat01/rest-api](https://github.com/sydrawat01/rest-api/)
1.0
[FEAT] Error-handling and helper functions - ## Custom error handlers Have custom error handlers for various HTTP error codes and sequelize database errors. ## Helper functions Have custom helper functions to de-clutter the controller logic. ### References [sydrawat01/rest-api](https://github.com/sydrawat01/rest-api/)
non_defect
error handling and helper functions custom error handlers have custom error handlers for various http error codes and sequelize database errors helper functions have custom helper functions to de clutter the controller logic references
0
109,652
11,647,188,032
IssuesEvent
2020-03-01 13:50:31
scikit-learn/scikit-learn
https://api.github.com/repos/scikit-learn/scikit-learn
closed
Add formula for binary balanced accuracy
Documentation Easy good first issue
I think it would be nice to add the formula for binary balanced accuracy. It's in the text right now, but maybe adding the formula would be nice as well. The text [says](https://scikit-learn.org/dev/modules/model_evaluation.html#balanced-accuracy-score) > In the binary case, balanced accuracy is equal to the arithmetic mean of sensitivity (true positive rate) and specificity (true negative rate), or the area under the ROC curve with binary predictions rather than scores. It should be something like ```latex $$\text{balanced_accuracy} = \frac{1}{2}\left( \frac{TP}{TP + FN} + \frac{TN}{TN + FP}\right )$$ ``` I think.
1.0
Add formula for binary balanced accuracy - I think it would be nice to add the formula for binary balanced accuracy. It's in the text right now, but maybe adding the formula would be nice as well. The text [says](https://scikit-learn.org/dev/modules/model_evaluation.html#balanced-accuracy-score) > In the binary case, balanced accuracy is equal to the arithmetic mean of sensitivity (true positive rate) and specificity (true negative rate), or the area under the ROC curve with binary predictions rather than scores. It should be something like ```latex $$\text{balanced_accuracy} = \frac{1}{2}\left( \frac{TP}{TP + FN} + \frac{TN}{TN + FP}\right )$$ ``` I think.
non_defect
add formula for binary balanced accuracy i think it would be nice to add the formula for binary balanced accuracy it s in the text right now but maybe adding the formula would be nice as well the text in the binary case balanced accuracy is equal to the arithmetic mean of sensitivity true positive rate and specificity true negative rate or the area under the roc curve with binary predictions rather than scores it should be something like latex text balanced accuracy frac left frac tp tp fn frac tn tn fp right i think
0
21,225
3,476,369,909
IssuesEvent
2015-12-26 20:21:55
troessner/reek
https://api.github.com/repos/troessner/reek
closed
Bug in our context building for non-instance methods
defect
#724 uncovered a bug in our context building in regards to non-instance methods. The following spec illustrates this bug: ```Ruby it "properly recognizes singleton_methods correctly" do src = <<-EOS class Car class << self def drive; end end def self.start; end end EOS syntax_tree = Reek::Source::SourceCode.from(src).syntax_tree context_tree = Reek::ContextBuilder.new(syntax_tree).send(:context_tree) class_node = context_tree.children.first drive_method = class_node.children.first start_method = class_node.children.last expect(start_method.class).to eq(Reek::Context::SingletonMethodContext) expect(drive_method.class).to eq(Reek::Context::SingletonMethodContext) end ``` Both methods should be recognized as SingletonMethod, but only the first one is: ``` Failures: 1) Reek::ContextBuilder#initialize properly recognizes singleton_methods correctly Failure/Error: expect(drive_method.class).to eq(Reek::Context::SingletonMethodContext) expected: Reek::Context::SingletonMethodContext got: Reek::Context::MethodContext (compared using ==) ``` I thought we had fix this bug a looooong time ago but apparently not.
1.0
Bug in our context building for non-instance methods - #724 uncovered a bug in our context building in regards to non-instance methods. The following spec illustrates this bug: ```Ruby it "properly recognizes singleton_methods correctly" do src = <<-EOS class Car class << self def drive; end end def self.start; end end EOS syntax_tree = Reek::Source::SourceCode.from(src).syntax_tree context_tree = Reek::ContextBuilder.new(syntax_tree).send(:context_tree) class_node = context_tree.children.first drive_method = class_node.children.first start_method = class_node.children.last expect(start_method.class).to eq(Reek::Context::SingletonMethodContext) expect(drive_method.class).to eq(Reek::Context::SingletonMethodContext) end ``` Both methods should be recognized as SingletonMethod, but only the first one is: ``` Failures: 1) Reek::ContextBuilder#initialize properly recognizes singleton_methods correctly Failure/Error: expect(drive_method.class).to eq(Reek::Context::SingletonMethodContext) expected: Reek::Context::SingletonMethodContext got: Reek::Context::MethodContext (compared using ==) ``` I thought we had fix this bug a looooong time ago but apparently not.
defect
bug in our context building for non instance methods uncovered a bug in our context building in regards to non instance methods the following spec illustrates this bug ruby it properly recognizes singleton methods correctly do src eos class car class self def drive end end def self start end end eos syntax tree reek source sourcecode from src syntax tree context tree reek contextbuilder new syntax tree send context tree class node context tree children first drive method class node children first start method class node children last expect start method class to eq reek context singletonmethodcontext expect drive method class to eq reek context singletonmethodcontext end both methods should be recognized as singletonmethod but only the first one is failures reek contextbuilder initialize properly recognizes singleton methods correctly failure error expect drive method class to eq reek context singletonmethodcontext expected reek context singletonmethodcontext got reek context methodcontext compared using i thought we had fix this bug a looooong time ago but apparently not
1
19,863
3,266,011,602
IssuesEvent
2015-10-22 18:45:29
souliss/souliss
https://api.github.com/repos/souliss/souliss
closed
SetIPAddress doesn't assign a proper vNet Supernode
bug Priority-Medium Type-Defect wontfix
Original [issue 83](https://code.google.com/p/souliss/issues/detail?id=83) created by fazioa on 2014-08-26T08:50:27.000Z: More information at this link https://code.google.com/p/souliss/source/detail?r=1d45d9eee1be81e85fda00e769fa60eeb768f268
1.0
SetIPAddress doesn't assign a proper vNet Supernode - Original [issue 83](https://code.google.com/p/souliss/issues/detail?id=83) created by fazioa on 2014-08-26T08:50:27.000Z: More information at this link https://code.google.com/p/souliss/source/detail?r=1d45d9eee1be81e85fda00e769fa60eeb768f268
defect
setipaddress doesn t assign a proper vnet supernode original created by fazioa on more information at this link
1
268,664
20,358,911,702
IssuesEvent
2022-02-20 11:44:01
vortexntnu/Vortex-CV
https://api.github.com/repos/vortexntnu/Vortex-CV
closed
[Commenting functions]
documentation
**Time estimate:** 2 hours **Deadline:** 02.feb **Description of task:** Code needs commenting so others can understand what happens, when to call a function and so on
1.0
[Commenting functions] - **Time estimate:** 2 hours **Deadline:** 02.feb **Description of task:** Code needs commenting so others can understand what happens, when to call a function and so on
non_defect
time estimate hours deadline feb description of task code needs commenting so others can understand what happens when to call a function and so on
0
159,374
12,474,548,338
IssuesEvent
2020-05-29 09:51:12
aliasrobotics/RVD
https://api.github.com/repos/aliasrobotics/RVD
opened
Using xml., /opt/ros_noetic_ws/src/xacro/test/test_xacro.py:1243
bandit bug static analysis testing triage
```yaml { "id": 1, "title": "Using xml., /opt/ros_noetic_ws/src/xacro/test/test_xacro.py:1243", "type": "bug", "description": "HIGH confidence of MEDIUM severity bug. Using xml.dom.minidom.parse to parse untrusted XML data is known to be vulnerable to XML attacks. Replace xml.dom.minidom.parse with its defusedxml equivalent function or make sure defusedxml.defuse_stdlib() is called at /opt/ros_noetic_ws/src/xacro/test/test_xacro.py:1243 See links for more info on the bug.", "cwe": "None", "cve": "None", "keywords": [ "bandit", "bug", "static analysis", "testing", "triage", "bug" ], "system": "", "vendor": null, "severity": { "rvss-score": 0, "rvss-vector": "", "severity-description": "", "cvss-score": 0, "cvss-vector": "" }, "links": "", "flaw": { "phase": "testing", "specificity": "subject-specific", "architectural-location": "application-specific", "application": "N/A", "subsystem": "N/A", "package": "N/A", "languages": "None", "date-detected": "2020-05-29 (09:50)", "detected-by": "Alias Robotics", "detected-by-method": "testing static", "date-reported": "2020-05-29 (09:50)", "reported-by": "Alias Robotics", "reported-by-relationship": "automatic", "issue": "", "reproducibility": "always", "trace": "/opt/ros_noetic_ws/src/xacro/test/test_xacro.py:1243", "reproduction": "See artifacts below (if available)", "reproduction-image": "" }, "exploitation": { "description": "", "exploitation-image": "", "exploitation-vector": "" }, "mitigation": { "description": "", "pull-request": "", "date-mitigation": "" } } ```
1.0
Using xml., /opt/ros_noetic_ws/src/xacro/test/test_xacro.py:1243 - ```yaml { "id": 1, "title": "Using xml., /opt/ros_noetic_ws/src/xacro/test/test_xacro.py:1243", "type": "bug", "description": "HIGH confidence of MEDIUM severity bug. Using xml.dom.minidom.parse to parse untrusted XML data is known to be vulnerable to XML attacks. Replace xml.dom.minidom.parse with its defusedxml equivalent function or make sure defusedxml.defuse_stdlib() is called at /opt/ros_noetic_ws/src/xacro/test/test_xacro.py:1243 See links for more info on the bug.", "cwe": "None", "cve": "None", "keywords": [ "bandit", "bug", "static analysis", "testing", "triage", "bug" ], "system": "", "vendor": null, "severity": { "rvss-score": 0, "rvss-vector": "", "severity-description": "", "cvss-score": 0, "cvss-vector": "" }, "links": "", "flaw": { "phase": "testing", "specificity": "subject-specific", "architectural-location": "application-specific", "application": "N/A", "subsystem": "N/A", "package": "N/A", "languages": "None", "date-detected": "2020-05-29 (09:50)", "detected-by": "Alias Robotics", "detected-by-method": "testing static", "date-reported": "2020-05-29 (09:50)", "reported-by": "Alias Robotics", "reported-by-relationship": "automatic", "issue": "", "reproducibility": "always", "trace": "/opt/ros_noetic_ws/src/xacro/test/test_xacro.py:1243", "reproduction": "See artifacts below (if available)", "reproduction-image": "" }, "exploitation": { "description": "", "exploitation-image": "", "exploitation-vector": "" }, "mitigation": { "description": "", "pull-request": "", "date-mitigation": "" } } ```
non_defect
using xml opt ros noetic ws src xacro test test xacro py yaml id title using xml opt ros noetic ws src xacro test test xacro py type bug description high confidence of medium severity bug using xml dom minidom parse to parse untrusted xml data is known to be vulnerable to xml attacks replace xml dom minidom parse with its defusedxml equivalent function or make sure defusedxml defuse stdlib is called at opt ros noetic ws src xacro test test xacro py see links for more info on the bug cwe none cve none keywords bandit bug static analysis testing triage bug system vendor null severity rvss score rvss vector severity description cvss score cvss vector links flaw phase testing specificity subject specific architectural location application specific application n a subsystem n a package n a languages none date detected detected by alias robotics detected by method testing static date reported reported by alias robotics reported by relationship automatic issue reproducibility always trace opt ros noetic ws src xacro test test xacro py reproduction see artifacts below if available reproduction image exploitation description exploitation image exploitation vector mitigation description pull request date mitigation
0
78,178
27,358,147,947
IssuesEvent
2023-02-27 14:14:17
primefaces/primefaces
https://api.github.com/repos/primefaces/primefaces
closed
ComponentTraversalUtils: Revised code break when primefaces extensions are used
:lady_beetle: defect
### Describe the bug dear @Rapster this PR https://github.com/primefaces/primefaces/pull/9779 breaks my application. After this PR, i am getting the following error: ``` java.lang.NoSuchMethodError: org.primefaces.util.ComponentTraversalUtils.closestForm(Ljavax/faces/context/FacesContext;Ljavax/faces/component/UIComponent;)Ljavax/faces/component/UIForm; at org.primefaces.extensions.component.timer.TimerRenderer.encodeScript(TimerRenderer.java:94) at org.primefaces.extensions.component.timer.TimerRenderer.encodeEnd(TimerRenderer.java:75) at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:595) at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:286) at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:90) at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:566) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1647) at javax.faces.render.Renderer.encodeChildren(Renderer.java:152) at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:566) at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:278) at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:90) at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:566) at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:278) at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:90) at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:566) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1647) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1650) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1650) at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:468) at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:170) at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:132) at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:132) at org.omnifaces.viewhandler.OmniViewHandler.renderView(OmniViewHandler.java:151) at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:102) ``` It looks like that your revisions affect some primefaces extensions, namely at least the timer. This error goes back to your change of the method ComponentTraversalUtils.closestForm where the argument context was dropped. Would be great if you could do the needed adaptations also in the affected PF extensions code. Many thanks in advance. ### Reproducer _No response_ ### Expected behavior _No response_ ### PrimeFaces edition None ### PrimeFaces version 13.0.0-SNAPSHOT ### Theme _No response_ ### JSF implementation Mojarra ### JSF version 2.3 ### Java version 8 ### Browser(s) _No response_
1.0
ComponentTraversalUtils: Revised code break when primefaces extensions are used - ### Describe the bug dear @Rapster this PR https://github.com/primefaces/primefaces/pull/9779 breaks my application. After this PR, i am getting the following error: ``` java.lang.NoSuchMethodError: org.primefaces.util.ComponentTraversalUtils.closestForm(Ljavax/faces/context/FacesContext;Ljavax/faces/component/UIComponent;)Ljavax/faces/component/UIForm; at org.primefaces.extensions.component.timer.TimerRenderer.encodeScript(TimerRenderer.java:94) at org.primefaces.extensions.component.timer.TimerRenderer.encodeEnd(TimerRenderer.java:75) at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:595) at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:286) at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:90) at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:566) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1647) at javax.faces.render.Renderer.encodeChildren(Renderer.java:152) at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:566) at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:278) at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:90) at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:566) at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:278) at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:90) at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:566) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1647) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1650) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1650) at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:468) at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:170) at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:132) at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:132) at org.omnifaces.viewhandler.OmniViewHandler.renderView(OmniViewHandler.java:151) at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:102) ``` It looks like that your revisions affect some primefaces extensions, namely at least the timer. This error goes back to your change of the method ComponentTraversalUtils.closestForm where the argument context was dropped. Would be great if you could do the needed adaptations also in the affected PF extensions code. Many thanks in advance. ### Reproducer _No response_ ### Expected behavior _No response_ ### PrimeFaces edition None ### PrimeFaces version 13.0.0-SNAPSHOT ### Theme _No response_ ### JSF implementation Mojarra ### JSF version 2.3 ### Java version 8 ### Browser(s) _No response_
defect
componenttraversalutils revised code break when primefaces extensions are used describe the bug dear rapster this pr breaks my application after this pr i am getting the following error java lang nosuchmethoderror org primefaces util componenttraversalutils closestform ljavax faces context facescontext ljavax faces component uicomponent ljavax faces component uiform at org primefaces extensions component timer timerrenderer encodescript timerrenderer java at org primefaces extensions component timer timerrenderer encodeend timerrenderer java at javax faces component uicomponentbase encodeend uicomponentbase java at com sun faces renderkit html basic htmlbasicrenderer encoderecursive htmlbasicrenderer java at com sun faces renderkit html basic grouprenderer encodechildren grouprenderer java at javax faces component uicomponentbase encodechildren uicomponentbase java at javax faces component uicomponent encodeall uicomponent java at javax faces render renderer encodechildren renderer java at javax faces component uicomponentbase encodechildren uicomponentbase java at com sun faces renderkit html basic htmlbasicrenderer encoderecursive htmlbasicrenderer java at com sun faces renderkit html basic grouprenderer encodechildren grouprenderer java at javax faces component uicomponentbase encodechildren uicomponentbase java at com sun faces renderkit html basic htmlbasicrenderer encoderecursive htmlbasicrenderer java at com sun faces renderkit html basic grouprenderer encodechildren grouprenderer java at javax faces component uicomponentbase encodechildren uicomponentbase java at javax faces component uicomponent encodeall uicomponent java at javax faces component uicomponent encodeall uicomponent java at javax faces component uicomponent encodeall uicomponent java at com sun faces application view faceletviewhandlingstrategy renderview faceletviewhandlingstrategy java at com sun faces application view multiviewhandler renderview multiviewhandler java at javax faces application viewhandlerwrapper renderview viewhandlerwrapper java at javax faces application viewhandlerwrapper renderview viewhandlerwrapper java at org omnifaces viewhandler omniviewhandler renderview omniviewhandler java at com sun faces lifecycle renderresponsephase execute renderresponsephase java it looks like that your revisions affect some primefaces extensions namely at least the timer this error goes back to your change of the method componenttraversalutils closestform where the argument context was dropped would be great if you could do the needed adaptations also in the affected pf extensions code many thanks in advance reproducer no response expected behavior no response primefaces edition none primefaces version snapshot theme no response jsf implementation mojarra jsf version java version browser s no response
1
163,671
25,856,163,682
IssuesEvent
2022-12-13 13:55:36
decidim/decidim
https://api.github.com/repos/decidim/decidim
opened
HERE Maps static map size
contract: redesign
If you use HERE maps, currently, a small static map is generated: <img width="811" alt="CleanShot 2022-12-13 at 14 49 54@2x" src="https://user-images.githubusercontent.com/24740/207345569-b9b47136-0a3a-41e4-9d13-34dd201037cb.png"> (https://www.decidim.barcelona/assemblies/barribesosmaresme/f/3229/meetings/5765) In the new design, this static map is slightly bigger but as we are using the same call, the map is pixelated: <img width="1001" alt="CleanShot 2022-12-13 at 14 54 07@2x" src="https://user-images.githubusercontent.com/24740/207347884-283fcf07-5018-4843-bfd5-bf467913b7a1.png"> The call to the map should be changed (or made dynamic?) to adapt to the new size. https://github.com/decidim/decidim/blob/db91cf387557bfccee917e744303b25d06c691c4/decidim-generators/lib/decidim/generators/app_templates/initializer.rb#L49 https://developer.here.com/documentation/map-image/dev_guide/topics/display-options.html
1.0
HERE Maps static map size - If you use HERE maps, currently, a small static map is generated: <img width="811" alt="CleanShot 2022-12-13 at 14 49 54@2x" src="https://user-images.githubusercontent.com/24740/207345569-b9b47136-0a3a-41e4-9d13-34dd201037cb.png"> (https://www.decidim.barcelona/assemblies/barribesosmaresme/f/3229/meetings/5765) In the new design, this static map is slightly bigger but as we are using the same call, the map is pixelated: <img width="1001" alt="CleanShot 2022-12-13 at 14 54 07@2x" src="https://user-images.githubusercontent.com/24740/207347884-283fcf07-5018-4843-bfd5-bf467913b7a1.png"> The call to the map should be changed (or made dynamic?) to adapt to the new size. https://github.com/decidim/decidim/blob/db91cf387557bfccee917e744303b25d06c691c4/decidim-generators/lib/decidim/generators/app_templates/initializer.rb#L49 https://developer.here.com/documentation/map-image/dev_guide/topics/display-options.html
non_defect
here maps static map size if you use here maps currently a small static map is generated img width alt cleanshot at src in the new design this static map is slightly bigger but as we are using the same call the map is pixelated img width alt cleanshot at src the call to the map should be changed or made dynamic to adapt to the new size
0
329,050
24,207,074,413
IssuesEvent
2022-09-25 11:40:17
ADOdb/ADOdb
https://api.github.com/repos/ADOdb/ADOdb
opened
Revise and possibly automate offline documentation build process
meta documentation
Offline documentation has not been built for a long time (most recent one goes back to 2020-01-26). Following recent discussion with @mnewnham the build process is currently quite complex, involving a local copy of the https://adodb.org wiki (updated using Dokuwiki sync plugin), which is converted to static HTML files using the SiteExport plugin. These files are cleaned up using a PHP script, then manually zipped and uploaded to SourceForge. This could probably be simplified, e.g. by directly exporting the wiki from adodb.org (without the local instance). I tried with the following commands: ```bash cd /tmp # wget command copied from Admin | SiteExport page (under Start Process) wget --max-redirect=191 --output-document=siteexport.zip --post-data="id=index&addParams=1&depth=0&depthType=1.0&do=siteexport&ens=index&exportLinkedPages=1&renderer=&template=dokuwiki" https://adodb.org/dokuwiki/doku.php?id=doku.php unzip siteexport.zip -d documentation-base php /path/to/adodb/scripts/fix-static-docs.php zip -r documentation.zip documentation ``` Seems to work AFAICT, maybe you want to test and confirm that the output matches what you get with the current process
1.0
Revise and possibly automate offline documentation build process - Offline documentation has not been built for a long time (most recent one goes back to 2020-01-26). Following recent discussion with @mnewnham the build process is currently quite complex, involving a local copy of the https://adodb.org wiki (updated using Dokuwiki sync plugin), which is converted to static HTML files using the SiteExport plugin. These files are cleaned up using a PHP script, then manually zipped and uploaded to SourceForge. This could probably be simplified, e.g. by directly exporting the wiki from adodb.org (without the local instance). I tried with the following commands: ```bash cd /tmp # wget command copied from Admin | SiteExport page (under Start Process) wget --max-redirect=191 --output-document=siteexport.zip --post-data="id=index&addParams=1&depth=0&depthType=1.0&do=siteexport&ens=index&exportLinkedPages=1&renderer=&template=dokuwiki" https://adodb.org/dokuwiki/doku.php?id=doku.php unzip siteexport.zip -d documentation-base php /path/to/adodb/scripts/fix-static-docs.php zip -r documentation.zip documentation ``` Seems to work AFAICT, maybe you want to test and confirm that the output matches what you get with the current process
non_defect
revise and possibly automate offline documentation build process offline documentation has not been built for a long time most recent one goes back to following recent discussion with mnewnham the build process is currently quite complex involving a local copy of the wiki updated using dokuwiki sync plugin which is converted to static html files using the siteexport plugin these files are cleaned up using a php script then manually zipped and uploaded to sourceforge this could probably be simplified e g by directly exporting the wiki from adodb org without the local instance i tried with the following commands bash cd tmp wget command copied from admin siteexport page under start process wget max redirect output document siteexport zip post data id index addparams depth depthtype do siteexport ens index exportlinkedpages renderer template dokuwiki unzip siteexport zip d documentation base php path to adodb scripts fix static docs php zip r documentation zip documentation seems to work afaict maybe you want to test and confirm that the output matches what you get with the current process
0
12,778
2,717,415,784
IssuesEvent
2015-04-11 07:57:53
codenameone/CodenameOne
https://api.github.com/repos/codenameone/CodenameOne
closed
White space in permission string in j2me manifest
invalid Priority-Medium Type-Defect
Original [issue 451](https://code.google.com/p/codenameone/issues/detail?id=451) created by codenameone on 2012-12-24T19:49:23.000Z: When building for j2me the jar's manifest permissions value contains a white space which breaks the permission string (the javax.microedition.io.Connector.http etc string) <b>What steps will reproduce the problem?</b> 1. build an app that uses network for j2me <b>2.</b> <b>3.</b> <b>What is the expected output? What do you see instead?</b> manifest value string of keys should not be split, permission value is split <b>What version of the product are you using? On what operating system?</b> eclipse, win7, cn1 20121021
1.0
White space in permission string in j2me manifest - Original [issue 451](https://code.google.com/p/codenameone/issues/detail?id=451) created by codenameone on 2012-12-24T19:49:23.000Z: When building for j2me the jar's manifest permissions value contains a white space which breaks the permission string (the javax.microedition.io.Connector.http etc string) <b>What steps will reproduce the problem?</b> 1. build an app that uses network for j2me <b>2.</b> <b>3.</b> <b>What is the expected output? What do you see instead?</b> manifest value string of keys should not be split, permission value is split <b>What version of the product are you using? On what operating system?</b> eclipse, win7, cn1 20121021
defect
white space in permission string in manifest original created by codenameone on when building for the jar s manifest permissions value contains a white space which breaks the permission string the javax microedition io connector http etc string what steps will reproduce the problem build an app that uses network for what is the expected output what do you see instead manifest value string of keys should not be split permission value is split what version of the product are you using on what operating system eclipse
1
32,294
6,759,163,605
IssuesEvent
2017-10-24 16:12:36
BOINC/boinc
https://api.github.com/repos/BOINC/boinc
closed
BOINC Manager Crash - Quickly alternate clicks on tray icon
C: Manager P: Minor T: Defect
**Reported by JacobKlein on 30 Dec 43661007 21:55 UTC** I went to open the BOINC window, but instead of double-left-clicking the tray icon, I accidentally also included a right-click in the mix. Then BOINC Manager crashed. Steps to reproduce: - Open BOINC Manager (It doesn't matter if the window is open or not, I believe) - On the BOINC system tray icon, quickly right-click-then-immediately-left-click - Do that action a few times quickly, and BOINC Manager should crash. (Stacktrace was removed by Christian Beer for brevity) Migrated-From: http://boinc.berkeley.edu/trac/ticket/1328
1.0
BOINC Manager Crash - Quickly alternate clicks on tray icon - **Reported by JacobKlein on 30 Dec 43661007 21:55 UTC** I went to open the BOINC window, but instead of double-left-clicking the tray icon, I accidentally also included a right-click in the mix. Then BOINC Manager crashed. Steps to reproduce: - Open BOINC Manager (It doesn't matter if the window is open or not, I believe) - On the BOINC system tray icon, quickly right-click-then-immediately-left-click - Do that action a few times quickly, and BOINC Manager should crash. (Stacktrace was removed by Christian Beer for brevity) Migrated-From: http://boinc.berkeley.edu/trac/ticket/1328
defect
boinc manager crash quickly alternate clicks on tray icon reported by jacobklein on dec utc i went to open the boinc window but instead of double left clicking the tray icon i accidentally also included a right click in the mix then boinc manager crashed steps to reproduce open boinc manager it doesn t matter if the window is open or not i believe on the boinc system tray icon quickly right click then immediately left click do that action a few times quickly and boinc manager should crash stacktrace was removed by christian beer for brevity migrated from
1
82,064
31,895,760,266
IssuesEvent
2023-09-18 01:25:31
microsoft/TypeScript
https://api.github.com/repos/microsoft/TypeScript
closed
Docs in base interface overriding docs in object typed with extended version of the same interface
Not a Defect
### 🔎 Search Terms Closest issue I found: https://github.com/Microsoft/TypeScript/issues/12031 Also searched: "interface docs overriding", "interface", "extended interface", "extended interface docs", "interface shadowing", "interface shadowing implementor" ### 🕗 Version & Regression Information - I was unable to test this on prior versions because this bug appeared on the current version of Typescript I'm using. I didn't have the opportunity to test on other versions. Using `4.9.5`. ### ⏯ Playground Link https://www.typescriptlang.org/play?#code/PTAEDpNBnALBDATgUwCagC4E8AOzqgCWAdqAPbHKgBmhANspOAFAkbKLXwDGVAgqADezUKNDAAVBNDcU8DIQrlqoeKBTQyAV0S9QE4CLGzk85AC5QACkGhU8tQF9Lt+xniX4xLKEcBKUABeAD5QAAVEMgBbQmhkAB4ANzJCVGCAbiNRSWktHDcqMhUvUGQAD1iFYgBzdXxtXSoDLNA8gssbIlQAGjsHXxcuy2gMRBJq3rcPVW9fAJDwyJi4pJS0zMdmZhAIKBIZsgxYDhp6KiZWYnZOHn4wui0CcvZiVAIBYTFxKVUZMjI6DJHhhoqAosgjmR0M0vtxgdEALIQ2BQjrzUIRaKxBLJVIZZibZjcCgjVT2HDXSx8e6PIJCFo5IEjUEmMx2Mhw8FXeSKUgw4xydgdVz9fxBDFLbHgDQAxLIKx+boMn5w5lRVr5NmoDlaLnuBRKfmiNpmYVdSai9GLLFxaX1OhyhVK2HwqJIyGoNHi63LRgyh3yvwEzLbMCPcbkHRk+AUjjMeDk67gVnsTpTSwAIm1+GIAHIMKAAO5kRAAawzc0yCZjSZNqdsqUzAEYMxb3JmRvRAdnoHmC8WyxX-FXExxk673SjUAqQzsUXLEOQFzMfEVMMcwcioQR4AAjMhy0AAPRm6Cw2hgKK0dHQ5Tw3ALIJgyCoRyoqpB6u1nOQ3INxCYUBdy0AsKDoHw3yIK4OC4PRv11X99V5S8yELaAgA ### 💻 Code ```ts // ... shared types in one file... interface A { /** creation of a resource */ create: ({ data }: { data: any }) => Promise<void>; /** update of an existing resource */ update: ({ id, data }: { id: string, data: any }) => Promise<void>; } // ... in another file ... interface APlus extends A { /** a cool custom method */ customMethod: () => Promise<void>; } const adapter: APlus = { /** custom create documentation */ create: ({ data }) => Promise.resolve(), /** custom update documentation */ update: ({ id, data }) => Promise.resolve(), customMethod: () => Promise.resolve() }; // using our adapter adapter.create({ data: "doesn't work" }); adapter.update({ id: "1", data: "still doesn't work" }); adapter.customMethod(); // hover over any of the methods above ^ and you should expect to see the custom documentation in intellisense... but only the interface documentation shows ``` ### 🙁 Actual behavior Intellisense JSDoc shows: | Method | Doc | |--------|--------| | create | creation of a resource | | update | update of an existing resource | | customMethod | a cool custom method | ### 🙂 Expected behavior Intellisense JSDoc should show: | Method | Doc | |--------|--------| | create | custom create documentation | | update | custom update documentation | | customMethod | a cool custom method | 1. Use the documentation in the closest type 2. Fallback up the extends chain for documentation if it does not exist in the current type ### Additional information about the issue VSCode version dump: Version: 1.82.1 (Universal) Commit: 6509174151d557a81c9d0b5f8a5a1e9274db5585 Date: 2023-09-08T08:49:32.930Z (1 wk ago) Electron: 25.8.0 ElectronBuildId: 23503258 Chromium: 114.0.5735.289 Node.js: 18.15.0 V8: 11.4.183.29-electron.0 OS: Darwin x64 22.6.0
1.0
Docs in base interface overriding docs in object typed with extended version of the same interface - ### 🔎 Search Terms Closest issue I found: https://github.com/Microsoft/TypeScript/issues/12031 Also searched: "interface docs overriding", "interface", "extended interface", "extended interface docs", "interface shadowing", "interface shadowing implementor" ### 🕗 Version & Regression Information - I was unable to test this on prior versions because this bug appeared on the current version of Typescript I'm using. I didn't have the opportunity to test on other versions. Using `4.9.5`. ### ⏯ Playground Link https://www.typescriptlang.org/play?#code/PTAEDpNBnALBDATgUwCagC4E8AOzqgCWAdqAPbHKgBmhANspOAFAkbKLXwDGVAgqADezUKNDAAVBNDcU8DIQrlqoeKBTQyAV0S9QE4CLGzk85AC5QACkGhU8tQF9Lt+xniX4xLKEcBKUABeAD5QAAVEMgBbQmhkAB4ANzJCVGCAbiNRSWktHDcqMhUvUGQAD1iFYgBzdXxtXSoDLNA8gssbIlQAGjsHXxcuy2gMRBJq3rcPVW9fAJDwyJi4pJS0zMdmZhAIKBIZsgxYDhp6KiZWYnZOHn4wui0CcvZiVAIBYTFxKVUZMjI6DJHhhoqAosgjmR0M0vtxgdEALIQ2BQjrzUIRaKxBLJVIZZibZjcCgjVT2HDXSx8e6PIJCFo5IEjUEmMx2Mhw8FXeSKUgw4xydgdVz9fxBDFLbHgDQAxLIKx+boMn5w5lRVr5NmoDlaLnuBRKfmiNpmYVdSai9GLLFxaX1OhyhVK2HwqJIyGoNHi63LRgyh3yvwEzLbMCPcbkHRk+AUjjMeDk67gVnsTpTSwAIm1+GIAHIMKAAO5kRAAawzc0yCZjSZNqdsqUzAEYMxb3JmRvRAdnoHmC8WyxX-FXExxk673SjUAqQzsUXLEOQFzMfEVMMcwcioQR4AAjMhy0AAPRm6Cw2hgKK0dHQ5Tw3ALIJgyCoRyoqpB6u1nOQ3INxCYUBdy0AsKDoHw3yIK4OC4PRv11X99V5S8yELaAgA ### 💻 Code ```ts // ... shared types in one file... interface A { /** creation of a resource */ create: ({ data }: { data: any }) => Promise<void>; /** update of an existing resource */ update: ({ id, data }: { id: string, data: any }) => Promise<void>; } // ... in another file ... interface APlus extends A { /** a cool custom method */ customMethod: () => Promise<void>; } const adapter: APlus = { /** custom create documentation */ create: ({ data }) => Promise.resolve(), /** custom update documentation */ update: ({ id, data }) => Promise.resolve(), customMethod: () => Promise.resolve() }; // using our adapter adapter.create({ data: "doesn't work" }); adapter.update({ id: "1", data: "still doesn't work" }); adapter.customMethod(); // hover over any of the methods above ^ and you should expect to see the custom documentation in intellisense... but only the interface documentation shows ``` ### 🙁 Actual behavior Intellisense JSDoc shows: | Method | Doc | |--------|--------| | create | creation of a resource | | update | update of an existing resource | | customMethod | a cool custom method | ### 🙂 Expected behavior Intellisense JSDoc should show: | Method | Doc | |--------|--------| | create | custom create documentation | | update | custom update documentation | | customMethod | a cool custom method | 1. Use the documentation in the closest type 2. Fallback up the extends chain for documentation if it does not exist in the current type ### Additional information about the issue VSCode version dump: Version: 1.82.1 (Universal) Commit: 6509174151d557a81c9d0b5f8a5a1e9274db5585 Date: 2023-09-08T08:49:32.930Z (1 wk ago) Electron: 25.8.0 ElectronBuildId: 23503258 Chromium: 114.0.5735.289 Node.js: 18.15.0 V8: 11.4.183.29-electron.0 OS: Darwin x64 22.6.0
defect
docs in base interface overriding docs in object typed with extended version of the same interface 🔎 search terms closest issue i found also searched interface docs overriding interface extended interface extended interface docs interface shadowing interface shadowing implementor 🕗 version regression information i was unable to test this on prior versions because this bug appeared on the current version of typescript i m using i didn t have the opportunity to test on other versions using ⏯ playground link 💻 code ts shared types in one file interface a creation of a resource create data data any promise update of an existing resource update id data id string data any promise in another file interface aplus extends a a cool custom method custommethod promise const adapter aplus custom create documentation create data promise resolve custom update documentation update id data promise resolve custommethod promise resolve using our adapter adapter create data doesn t work adapter update id data still doesn t work adapter custommethod hover over any of the methods above and you should expect to see the custom documentation in intellisense but only the interface documentation shows 🙁 actual behavior intellisense jsdoc shows method doc create creation of a resource update update of an existing resource custommethod a cool custom method 🙂 expected behavior intellisense jsdoc should show method doc create custom create documentation update custom update documentation custommethod a cool custom method use the documentation in the closest type fallback up the extends chain for documentation if it does not exist in the current type additional information about the issue vscode version dump version universal commit date wk ago electron electronbuildid chromium node js electron os darwin
1
267,891
28,537,295,227
IssuesEvent
2023-04-20 01:05:55
Hi-Fi/remotesikulilibrary
https://api.github.com/repos/Hi-Fi/remotesikulilibrary
closed
CVE-2017-7658 (High) detected in jetty-server-7.6.3.v20120416.jar, jetty-http-7.6.3.v20120416.jar - autoclosed
Mend: dependency security vulnerability
## CVE-2017-7658 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>jetty-server-7.6.3.v20120416.jar</b>, <b>jetty-http-7.6.3.v20120416.jar</b></p></summary> <p> <details><summary><b>jetty-server-7.6.3.v20120416.jar</b></p></summary> <p>The core jetty server artifact.</p> <p>Library home page: <a href="http://www.eclipse.org/jetty">http://www.eclipse.org/jetty</a></p> <p>Path to dependency file: remotesikulilibrary/pom.xml</p> <p>Path to vulnerable library: /root/.m2/repository/org/eclipse/jetty/jetty-server/7.6.3.v20120416/jetty-server-7.6.3.v20120416.jar</p> <p> Dependency Hierarchy: - jrobotremoteserver-3.0.jar (Root Library) - jetty-servlet-7.6.3.v20120416.jar - jetty-security-7.6.3.v20120416.jar - :x: **jetty-server-7.6.3.v20120416.jar** (Vulnerable Library) </details> <details><summary><b>jetty-http-7.6.3.v20120416.jar</b></p></summary> <p>Administrative parent pom for Jetty modules</p> <p>Library home page: <a href="http://www.eclipse.org/jetty">http://www.eclipse.org/jetty</a></p> <p>Path to dependency file: remotesikulilibrary/pom.xml</p> <p>Path to vulnerable library: /root/.m2/repository/org/eclipse/jetty/jetty-http/7.6.3.v20120416/jetty-http-7.6.3.v20120416.jar</p> <p> Dependency Hierarchy: - jrobotremoteserver-3.0.jar (Root Library) - jetty-servlet-7.6.3.v20120416.jar - jetty-security-7.6.3.v20120416.jar - jetty-server-7.6.3.v20120416.jar - :x: **jetty-http-7.6.3.v20120416.jar** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/Hi-Fi/remotesikulilibrary/commit/8d8753ec3a9b63366b607fac3f3b5a9fdd1d3097">8d8753ec3a9b63366b607fac3f3b5a9fdd1d3097</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In Eclipse Jetty Server, versions 9.2.x and older, 9.3.x (all non HTTP/1.x configurations), and 9.4.x (all HTTP/1.x configurations), when presented with two content-lengths headers, Jetty ignored the second. When presented with a content-length and a chunked encoding header, the content-length was ignored (as per RFC 2616). If an intermediary decided on the shorter length, but still passed on the longer body, then body content could be interpreted by Jetty as a pipelined request. If the intermediary was imposing authorization, the fake pipelined request would bypass that authorization. <p>Publish Date: 2018-06-26 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-7658>CVE-2017-7658</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>9.8</b>)</summary> <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: 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-7658">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-7658</a></p> <p>Release Date: 2018-06-26</p> <p>Fix Resolution: org.eclipse.jetty:jetty-server:9.4.11.v20180605,9.3.24.v20180605,9.2.25.v20180606;org.eclipse.jetty.aggregate:jetty-client:9.4.11.v20180605,9.3.24.v20180605,9.2.25.v20180606;org.eclipse.jetty:jetty-http:9.4.11.v20180605,9.3.24.v20180605,9.2.25.v20180606</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-2017-7658 (High) detected in jetty-server-7.6.3.v20120416.jar, jetty-http-7.6.3.v20120416.jar - autoclosed - ## CVE-2017-7658 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>jetty-server-7.6.3.v20120416.jar</b>, <b>jetty-http-7.6.3.v20120416.jar</b></p></summary> <p> <details><summary><b>jetty-server-7.6.3.v20120416.jar</b></p></summary> <p>The core jetty server artifact.</p> <p>Library home page: <a href="http://www.eclipse.org/jetty">http://www.eclipse.org/jetty</a></p> <p>Path to dependency file: remotesikulilibrary/pom.xml</p> <p>Path to vulnerable library: /root/.m2/repository/org/eclipse/jetty/jetty-server/7.6.3.v20120416/jetty-server-7.6.3.v20120416.jar</p> <p> Dependency Hierarchy: - jrobotremoteserver-3.0.jar (Root Library) - jetty-servlet-7.6.3.v20120416.jar - jetty-security-7.6.3.v20120416.jar - :x: **jetty-server-7.6.3.v20120416.jar** (Vulnerable Library) </details> <details><summary><b>jetty-http-7.6.3.v20120416.jar</b></p></summary> <p>Administrative parent pom for Jetty modules</p> <p>Library home page: <a href="http://www.eclipse.org/jetty">http://www.eclipse.org/jetty</a></p> <p>Path to dependency file: remotesikulilibrary/pom.xml</p> <p>Path to vulnerable library: /root/.m2/repository/org/eclipse/jetty/jetty-http/7.6.3.v20120416/jetty-http-7.6.3.v20120416.jar</p> <p> Dependency Hierarchy: - jrobotremoteserver-3.0.jar (Root Library) - jetty-servlet-7.6.3.v20120416.jar - jetty-security-7.6.3.v20120416.jar - jetty-server-7.6.3.v20120416.jar - :x: **jetty-http-7.6.3.v20120416.jar** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/Hi-Fi/remotesikulilibrary/commit/8d8753ec3a9b63366b607fac3f3b5a9fdd1d3097">8d8753ec3a9b63366b607fac3f3b5a9fdd1d3097</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In Eclipse Jetty Server, versions 9.2.x and older, 9.3.x (all non HTTP/1.x configurations), and 9.4.x (all HTTP/1.x configurations), when presented with two content-lengths headers, Jetty ignored the second. When presented with a content-length and a chunked encoding header, the content-length was ignored (as per RFC 2616). If an intermediary decided on the shorter length, but still passed on the longer body, then body content could be interpreted by Jetty as a pipelined request. If the intermediary was imposing authorization, the fake pipelined request would bypass that authorization. <p>Publish Date: 2018-06-26 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-7658>CVE-2017-7658</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>9.8</b>)</summary> <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: 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-7658">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-7658</a></p> <p>Release Date: 2018-06-26</p> <p>Fix Resolution: org.eclipse.jetty:jetty-server:9.4.11.v20180605,9.3.24.v20180605,9.2.25.v20180606;org.eclipse.jetty.aggregate:jetty-client:9.4.11.v20180605,9.3.24.v20180605,9.2.25.v20180606;org.eclipse.jetty:jetty-http:9.4.11.v20180605,9.3.24.v20180605,9.2.25.v20180606</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_defect
cve high detected in jetty server jar jetty http jar autoclosed cve high severity vulnerability vulnerable libraries jetty server jar jetty http jar jetty server jar the core jetty server artifact library home page a href path to dependency file remotesikulilibrary pom xml path to vulnerable library root repository org eclipse jetty jetty server jetty server jar dependency hierarchy jrobotremoteserver jar root library jetty servlet jar jetty security jar x jetty server jar vulnerable library jetty http jar administrative parent pom for jetty modules library home page a href path to dependency file remotesikulilibrary pom xml path to vulnerable library root repository org eclipse jetty jetty http jetty http jar dependency hierarchy jrobotremoteserver jar root library jetty servlet jar jetty security jar jetty server jar x jetty http jar vulnerable library found in head commit a href vulnerability details in eclipse jetty server versions x and older x all non http x configurations and x all http x configurations when presented with two content lengths headers jetty ignored the second when presented with a content length and a chunked encoding header the content length was ignored as per rfc if an intermediary decided on the shorter length but still passed on the longer body then body content could be interpreted by jetty as a pipelined request if the intermediary was imposing authorization the fake pipelined request would bypass that authorization 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 high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org eclipse jetty jetty server org eclipse jetty aggregate jetty client org eclipse jetty jetty http step up your open source security game with whitesource
0
32,932
6,971,136,000
IssuesEvent
2017-12-11 12:57:31
primefaces/primefaces
https://api.github.com/repos/primefaces/primefaces
opened
ExceptionHandler: onexception isn't called with jquery 3.2.1
defect
the script is correctly passed to $.globalEval but not executed correctly...
1.0
ExceptionHandler: onexception isn't called with jquery 3.2.1 - the script is correctly passed to $.globalEval but not executed correctly...
defect
exceptionhandler onexception isn t called with jquery the script is correctly passed to globaleval but not executed correctly
1
10,116
2,618,937,058
IssuesEvent
2015-03-03 00:02:29
chrsmith/open-ig
https://api.github.com/repos/chrsmith/open-ig
closed
sound overflow error
auto-migrated OpSys-Linux Priority-Medium Sound Type-Defect
``` Game version: 0.95.152 Operating System: Linux x64 Java runtime version: 1.7.0_51 Installed using the Launcher? yes Game language (en, hu, de): hu What steps will reproduce the problem? 1. Play a battle with lot of units OR press the 'Add ship' button on the fleetscreen continously. What is the expected output? What do you see instead? Nothing expected. Instead it throws a crash message. No harm done, the game continoues. Please provide any additional information below. Please upload any save before and/or after the problem happened. Please attach the open-ig.log file found in the application's directory. Crash log attached. ``` Original issue reported on code.google.com by `kli...@gmail.com` on 17 Jan 2014 at 11:31 Attachments: * [open-ig.log](https://storage.googleapis.com/google-code-attachments/open-ig/issue-806/comment-0/open-ig.log)
1.0
sound overflow error - ``` Game version: 0.95.152 Operating System: Linux x64 Java runtime version: 1.7.0_51 Installed using the Launcher? yes Game language (en, hu, de): hu What steps will reproduce the problem? 1. Play a battle with lot of units OR press the 'Add ship' button on the fleetscreen continously. What is the expected output? What do you see instead? Nothing expected. Instead it throws a crash message. No harm done, the game continoues. Please provide any additional information below. Please upload any save before and/or after the problem happened. Please attach the open-ig.log file found in the application's directory. Crash log attached. ``` Original issue reported on code.google.com by `kli...@gmail.com` on 17 Jan 2014 at 11:31 Attachments: * [open-ig.log](https://storage.googleapis.com/google-code-attachments/open-ig/issue-806/comment-0/open-ig.log)
defect
sound overflow error game version operating system linux java runtime version installed using the launcher yes game language en hu de hu what steps will reproduce the problem play a battle with lot of units or press the add ship button on the fleetscreen continously what is the expected output what do you see instead nothing expected instead it throws a crash message no harm done the game continoues please provide any additional information below please upload any save before and or after the problem happened please attach the open ig log file found in the application s directory crash log attached original issue reported on code google com by kli gmail com on jan at attachments
1
47,809
13,066,240,859
IssuesEvent
2020-07-30 21:16:59
icecube-trac/tix2
https://api.github.com/repos/icecube-trac/tix2
closed
[DOMLauncher] FIXME: PMTResponseSimulatorTests: the 0.4 distance (Trac #1203)
Migrated from Trac combo simulation defect
```text private/test/PMTResponseSimulatorTests.cxx: //FIXME: The 0.4 distance is to silence the buildbots. This needs to be investigated. ``` Migrated from https://code.icecube.wisc.edu/ticket/1203 ```json { "status": "closed", "changetime": "2019-02-13T14:13:35", "description": "{{{\nprivate/test/PMTResponseSimulatorTests.cxx:\t//FIXME: The 0.4 distance is to silence the buildbots. This needs to be investigated.\n}}}", "reporter": "david.schultz", "cc": "", "resolution": "wontfix", "_ts": "1550067215093672", "component": "combo simulation", "summary": "[DOMLauncher] FIXME: PMTResponseSimulatorTests: the 0.4 distance", "priority": "normal", "keywords": "", "time": "2015-08-19T19:05:49", "milestone": "", "owner": "cweaver", "type": "defect" } ```
1.0
[DOMLauncher] FIXME: PMTResponseSimulatorTests: the 0.4 distance (Trac #1203) - ```text private/test/PMTResponseSimulatorTests.cxx: //FIXME: The 0.4 distance is to silence the buildbots. This needs to be investigated. ``` Migrated from https://code.icecube.wisc.edu/ticket/1203 ```json { "status": "closed", "changetime": "2019-02-13T14:13:35", "description": "{{{\nprivate/test/PMTResponseSimulatorTests.cxx:\t//FIXME: The 0.4 distance is to silence the buildbots. This needs to be investigated.\n}}}", "reporter": "david.schultz", "cc": "", "resolution": "wontfix", "_ts": "1550067215093672", "component": "combo simulation", "summary": "[DOMLauncher] FIXME: PMTResponseSimulatorTests: the 0.4 distance", "priority": "normal", "keywords": "", "time": "2015-08-19T19:05:49", "milestone": "", "owner": "cweaver", "type": "defect" } ```
defect
fixme pmtresponsesimulatortests the distance trac text private test pmtresponsesimulatortests cxx fixme the distance is to silence the buildbots this needs to be investigated migrated from json status closed changetime description nprivate test pmtresponsesimulatortests cxx t fixme the distance is to silence the buildbots this needs to be investigated n reporter david schultz cc resolution wontfix ts component combo simulation summary fixme pmtresponsesimulatortests the distance priority normal keywords time milestone owner cweaver type defect
1
6,328
2,610,240,621
IssuesEvent
2015-02-26 19:16:42
chrsmith/jsjsj122
https://api.github.com/repos/chrsmith/jsjsj122
opened
台州割包茎手术哪家效果好
auto-migrated Priority-Medium Type-Defect
``` 台州割包茎手术哪家效果好【台州五洲生殖医院】24小时健康 咨询热线:0576-88066933-(扣扣800080609)-(微信号tzwzszyy)医院地址:台 州市椒江区枫南路229号(枫南大转盘旁)乘车线路:乘坐104、1 08、118、198及椒江一金清公交车直达枫南小区,乘坐107、105、 109、112、901、 902公交车到星星广场下车,步行即可到院。 诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,�� �精,无精。包皮包茎,精索静脉曲张,淋病等。 台州五洲生殖医院是台州最大的男科医院,权威专家在线免�� �咨询,拥有专业完善的男科检查治疗设备,严格按照国家标� ��收费。尖端医疗设备,与世界同步。权威专家,成就专业典 范。人性化服务,一切以患者为中心。 看男科就选台州五洲生殖医院,专业男科为男人。 ``` ----- Original issue reported on code.google.com by `poweragr...@gmail.com` on 31 May 2014 at 12:02
1.0
台州割包茎手术哪家效果好 - ``` 台州割包茎手术哪家效果好【台州五洲生殖医院】24小时健康 咨询热线:0576-88066933-(扣扣800080609)-(微信号tzwzszyy)医院地址:台 州市椒江区枫南路229号(枫南大转盘旁)乘车线路:乘坐104、1 08、118、198及椒江一金清公交车直达枫南小区,乘坐107、105、 109、112、901、 902公交车到星星广场下车,步行即可到院。 诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,�� �精,无精。包皮包茎,精索静脉曲张,淋病等。 台州五洲生殖医院是台州最大的男科医院,权威专家在线免�� �咨询,拥有专业完善的男科检查治疗设备,严格按照国家标� ��收费。尖端医疗设备,与世界同步。权威专家,成就专业典 范。人性化服务,一切以患者为中心。 看男科就选台州五洲生殖医院,专业男科为男人。 ``` ----- Original issue reported on code.google.com by `poweragr...@gmail.com` on 31 May 2014 at 12:02
defect
台州割包茎手术哪家效果好 台州割包茎手术哪家效果好【台州五洲生殖医院】 咨询热线 微信号tzwzszyy 医院地址 台 (枫南大转盘旁)乘车线路 、 、 、 , 、 、 、 、 、 ,步行即可到院。 诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,�� �精,无精。包皮包茎,精索静脉曲张,淋病等。 台州五洲生殖医院是台州最大的男科医院,权威专家在线免�� �咨询,拥有专业完善的男科检查治疗设备,严格按照国家标� ��收费。尖端医疗设备,与世界同步。权威专家,成就专业典 范。人性化服务,一切以患者为中心。 看男科就选台州五洲生殖医院,专业男科为男人。 original issue reported on code google com by poweragr gmail com on may at
1
71,808
23,810,668,204
IssuesEvent
2022-09-04 18:07:58
zed-industries/feedback
https://api.github.com/repos/zed-industries/feedback
closed
Zed is unresponsive after computer sleeps after a collaboration session
defect mac
### Check for existing issues - [X] Completed ### Describe the bug After ending a collaboration session, the window displayed "Your connection to the remote project has been lost." Instead of immediately closing out of this window, I walked away and allowed my computer to go to sleep overnight. When I woke the computer up (the next day Zed was unresponsive and and displayed an infinitely spinning beach ball. This is particularly bad because all instances of Zed are unresponsive and you must force quit the application. If you had anything unsaved in another instance, it is lost. I don't entirely know if the collaboration session window still being open when my computer went to sleep is the issue, but I've not experienced Zed being unresponsive in any other case of having it open while the computer goes into and out of sleep mode. There's probably nothing useful in the log, but I've attached it regardless, just in case. ### To reproduce - ### Expected behavior - ### Environment Zed 0.53.1 – /Applications/Zed.app macOS 12.4 architecture x86_64 ### If applicable, add mockups / screenshots to help explain present your vision of the feature _No response_ ### If applicable, attach your `~/Library/Logs/Zed/Zed.log` file to this issue [Zed.log](https://github.com/zed-industries/feedback/files/9485174/Zed.log)
1.0
Zed is unresponsive after computer sleeps after a collaboration session - ### Check for existing issues - [X] Completed ### Describe the bug After ending a collaboration session, the window displayed "Your connection to the remote project has been lost." Instead of immediately closing out of this window, I walked away and allowed my computer to go to sleep overnight. When I woke the computer up (the next day Zed was unresponsive and and displayed an infinitely spinning beach ball. This is particularly bad because all instances of Zed are unresponsive and you must force quit the application. If you had anything unsaved in another instance, it is lost. I don't entirely know if the collaboration session window still being open when my computer went to sleep is the issue, but I've not experienced Zed being unresponsive in any other case of having it open while the computer goes into and out of sleep mode. There's probably nothing useful in the log, but I've attached it regardless, just in case. ### To reproduce - ### Expected behavior - ### Environment Zed 0.53.1 – /Applications/Zed.app macOS 12.4 architecture x86_64 ### If applicable, add mockups / screenshots to help explain present your vision of the feature _No response_ ### If applicable, attach your `~/Library/Logs/Zed/Zed.log` file to this issue [Zed.log](https://github.com/zed-industries/feedback/files/9485174/Zed.log)
defect
zed is unresponsive after computer sleeps after a collaboration session check for existing issues completed describe the bug after ending a collaboration session the window displayed your connection to the remote project has been lost instead of immediately closing out of this window i walked away and allowed my computer to go to sleep overnight when i woke the computer up the next day zed was unresponsive and and displayed an infinitely spinning beach ball this is particularly bad because all instances of zed are unresponsive and you must force quit the application if you had anything unsaved in another instance it is lost i don t entirely know if the collaboration session window still being open when my computer went to sleep is the issue but i ve not experienced zed being unresponsive in any other case of having it open while the computer goes into and out of sleep mode there s probably nothing useful in the log but i ve attached it regardless just in case to reproduce expected behavior environment zed – applications zed app macos architecture if applicable add mockups screenshots to help explain present your vision of the feature no response if applicable attach your library logs zed zed log file to this issue
1
181,689
6,663,362,132
IssuesEvent
2017-10-02 16:07:13
Rsl1122/Plan-PlayerAnalytics
https://api.github.com/repos/Rsl1122/Plan-PlayerAnalytics
reopened
Database errors
Bug Priority: HIGH server: 1.8 status: Possibly Fixed
Plan 4.0.0 MySQL ``` main.java.com.djrapitops.plan.systems.processing.player.NameProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Column 'user_id' cannot be null sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.NicknamesTable.saveUserName(NicknamesTable.java:157) main.java.com.djrapitops.plan.systems.processing.player.NameProcessor.process(NameProcessor.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.NickChangeActionProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Column 'user_id' cannot be null sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.ActionsTable.insertAction(ActionsTable.java:86) main.java.com.djrapitops.plan.systems.processing.NickChangeActionProcessor.process(NickChangeActionProcessor.java:51) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.NickChangeActionProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Column 'user_id' cannot be null sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.ActionsTable.insertAction(ActionsTable.java:86) main.java.com.djrapitops.plan.systems.processing.NickChangeActionProcessor.process(NickChangeActionProcessor.java:51) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.player.NameProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Column 'user_id' cannot be null sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.NicknamesTable.saveUserName(NicknamesTable.java:157) main.java.com.djrapitops.plan.systems.processing.player.NameProcessor.process(NameProcessor.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.cache.DataCache Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Column 'user_id' cannot be null sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.SessionsTable.saveSessionInformation(SessionsTable.java:116) main.java.com.djrapitops.plan.database.tables.SessionsTable.saveSession(SessionsTable.java:85) main.java.com.djrapitops.plan.systems.cache.SessionCache.endSession(SessionCache.java:43) main.java.com.djrapitops.plan.systems.processing.player.EndSessionProcessor.process(EndSessionProcessor.java:28) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.player.FirstLeaveProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Column 'user_id' cannot be null sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.ActionsTable.insertAction(ActionsTable.java:86) main.java.com.djrapitops.plan.systems.processing.player.FirstLeaveProcessor.process(FirstLeaveProcessor.java:35) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry 'fa4699f6-3a53-37a6-92e3-0e0161da82ac' for key 'uuid' sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.UsersTable.registerUser(UsersTable.java:172) main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor.process(RegisterProcessor.java:50) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.NickChangeActionProcessor Caught com.mysql.jdbc.MysqlDataTruncation: Data truncation: Data too long for column 'additional_info' at row 1 com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3971) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.ActionsTable.insertAction(ActionsTable.java:86) main.java.com.djrapitops.plan.systems.processing.NickChangeActionProcessor.process(NickChangeActionProcessor.java:51) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry 'e451bfa8-f45b-36d2-bdd6-84ab68f1063b' for key 'uuid' sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.UsersTable.registerUser(UsersTable.java:172) main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor.process(RegisterProcessor.java:50) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry '324215ba-4542-3317-99bf-736b711d5e06' for key 'uuid' sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.UsersTable.registerUser(UsersTable.java:172) main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor.process(RegisterProcessor.java:50) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry '87486a61-c5ce-35a3-88c8-590138e415d8' for key 'uuid' sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.UsersTable.registerUser(UsersTable.java:172) main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor.process(RegisterProcessor.java:50) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry '3bd5b601-cb20-34d9-ae2a-d659362d249f' for key 'uuid' sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.UsersTable.registerUser(UsersTable.java:172) main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor.process(RegisterProcessor.java:50) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry 'f61fefbd-a9c3-3a30-9207-6f88985dd3dc' for key 'uuid' sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.UsersTable.registerUser(UsersTable.java:172) main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor.process(RegisterProcessor.java:50) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry '7b9f8fff-2cf8-3f7e-8f46-c0d5130222e4' for key 'uuid' sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.UsersTable.registerUser(UsersTable.java:172) main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor.process(RegisterProcessor.java:50) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ```
1.0
Database errors - Plan 4.0.0 MySQL ``` main.java.com.djrapitops.plan.systems.processing.player.NameProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Column 'user_id' cannot be null sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.NicknamesTable.saveUserName(NicknamesTable.java:157) main.java.com.djrapitops.plan.systems.processing.player.NameProcessor.process(NameProcessor.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.NickChangeActionProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Column 'user_id' cannot be null sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.ActionsTable.insertAction(ActionsTable.java:86) main.java.com.djrapitops.plan.systems.processing.NickChangeActionProcessor.process(NickChangeActionProcessor.java:51) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.NickChangeActionProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Column 'user_id' cannot be null sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.ActionsTable.insertAction(ActionsTable.java:86) main.java.com.djrapitops.plan.systems.processing.NickChangeActionProcessor.process(NickChangeActionProcessor.java:51) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.player.NameProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Column 'user_id' cannot be null sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.NicknamesTable.saveUserName(NicknamesTable.java:157) main.java.com.djrapitops.plan.systems.processing.player.NameProcessor.process(NameProcessor.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.cache.DataCache Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Column 'user_id' cannot be null sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.SessionsTable.saveSessionInformation(SessionsTable.java:116) main.java.com.djrapitops.plan.database.tables.SessionsTable.saveSession(SessionsTable.java:85) main.java.com.djrapitops.plan.systems.cache.SessionCache.endSession(SessionCache.java:43) main.java.com.djrapitops.plan.systems.processing.player.EndSessionProcessor.process(EndSessionProcessor.java:28) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.player.FirstLeaveProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Column 'user_id' cannot be null sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.ActionsTable.insertAction(ActionsTable.java:86) main.java.com.djrapitops.plan.systems.processing.player.FirstLeaveProcessor.process(FirstLeaveProcessor.java:35) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry 'fa4699f6-3a53-37a6-92e3-0e0161da82ac' for key 'uuid' sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.UsersTable.registerUser(UsersTable.java:172) main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor.process(RegisterProcessor.java:50) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.NickChangeActionProcessor Caught com.mysql.jdbc.MysqlDataTruncation: Data truncation: Data too long for column 'additional_info' at row 1 com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3971) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.ActionsTable.insertAction(ActionsTable.java:86) main.java.com.djrapitops.plan.systems.processing.NickChangeActionProcessor.process(NickChangeActionProcessor.java:51) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry 'e451bfa8-f45b-36d2-bdd6-84ab68f1063b' for key 'uuid' sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.UsersTable.registerUser(UsersTable.java:172) main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor.process(RegisterProcessor.java:50) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry '324215ba-4542-3317-99bf-736b711d5e06' for key 'uuid' sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.UsersTable.registerUser(UsersTable.java:172) main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor.process(RegisterProcessor.java:50) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry '87486a61-c5ce-35a3-88c8-590138e415d8' for key 'uuid' sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.UsersTable.registerUser(UsersTable.java:172) main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor.process(RegisterProcessor.java:50) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry '3bd5b601-cb20-34d9-ae2a-d659362d249f' for key 'uuid' sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.UsersTable.registerUser(UsersTable.java:172) main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor.process(RegisterProcessor.java:50) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry 'f61fefbd-a9c3-3a30-9207-6f88985dd3dc' for key 'uuid' sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.UsersTable.registerUser(UsersTable.java:172) main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor.process(RegisterProcessor.java:50) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ``` ---- ``` main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor Caught com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry '7b9f8fff-2cf8-3f7e-8f46-c0d5130222e4' for key 'uuid' sun.reflect.GeneratedConstructorAccessor300.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) java.lang.reflect.Constructor.newInstance(Constructor.java:423) com.mysql.jdbc.Util.handleNewInstance(Util.java:425) com.mysql.jdbc.Util.getInstance(Util.java:408) com.mysql.jdbc.SQLError.createSQLException(SQLError.java:935) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909) com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527) com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680) com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2487) com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) org.apache.commons.dbcp2.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:198) main.java.com.djrapitops.plan.database.tables.UsersTable.registerUser(UsersTable.java:172) main.java.com.djrapitops.plan.systems.processing.player.RegisterProcessor.process(RegisterProcessor.java:50) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:55) main.java.com.djrapitops.plan.systems.queue.ProcessConsumer.consume(ProcessingQueue.java:40) main.java.com.djrapitops.plan.systems.queue.Consumer.run(Consumer.java:35) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:37) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:71) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) java.lang.Thread.run(Thread.java:748) ```
non_defect
database errors plan mysql main java com djrapitops plan systems processing player nameprocessor caught com mysql jdbc exceptions mysqlintegrityconstraintviolationexception column user id cannot be null sun reflect nativeconstructoraccessorimpl native method sun reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java sun reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java java lang reflect constructor newinstance constructor java com mysql jdbc util handlenewinstance util java com mysql jdbc util getinstance util java com mysql jdbc sqlerror createsqlexception sqlerror java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio sendcommand mysqlio java com mysql jdbc mysqlio sqlquerydirect mysqlio java com mysql jdbc connectionimpl execsql connectionimpl java com mysql jdbc preparedstatement executeinternal preparedstatement java com mysql jdbc preparedstatement execute preparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java main java com djrapitops plan database tables nicknamestable saveusername nicknamestable java main java com djrapitops plan systems processing player nameprocessor process nameprocessor java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue consumer run consumer java com djrapitops plugin task runnablefactory run runnablefactory java org bukkit craftbukkit scheduler crafttask run crafttask java org bukkit craftbukkit scheduler craftasynctask run craftasynctask java java util concurrent threadpoolexecutor runworker threadpoolexecutor java java util concurrent threadpoolexecutor worker run threadpoolexecutor java java lang thread run thread java main java com djrapitops plan systems processing nickchangeactionprocessor caught com mysql jdbc exceptions mysqlintegrityconstraintviolationexception column user id cannot be null sun reflect nativeconstructoraccessorimpl native method sun reflect nativeconstructoraccessorimpl newinstance nativeconstructoraccessorimpl java sun reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java java lang reflect constructor newinstance constructor java com mysql jdbc util handlenewinstance util java com mysql jdbc util getinstance util java com mysql jdbc sqlerror createsqlexception sqlerror java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio sendcommand mysqlio java com mysql jdbc mysqlio sqlquerydirect mysqlio java com mysql jdbc connectionimpl execsql connectionimpl java com mysql jdbc preparedstatement executeinternal preparedstatement java com mysql jdbc preparedstatement execute preparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java main java com djrapitops plan database tables actionstable insertaction actionstable java main java com djrapitops plan systems processing nickchangeactionprocessor process nickchangeactionprocessor java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue consumer run consumer java com djrapitops plugin task runnablefactory run runnablefactory java org bukkit craftbukkit scheduler crafttask run crafttask java org bukkit craftbukkit scheduler craftasynctask run craftasynctask java java util concurrent threadpoolexecutor runworker threadpoolexecutor java java util concurrent threadpoolexecutor worker run threadpoolexecutor java java lang thread run thread java main java com djrapitops plan systems processing nickchangeactionprocessor caught com mysql jdbc exceptions mysqlintegrityconstraintviolationexception column user id cannot be null sun reflect newinstance unknown source sun reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java java lang reflect constructor newinstance constructor java com mysql jdbc util handlenewinstance util java com mysql jdbc util getinstance util java com mysql jdbc sqlerror createsqlexception sqlerror java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio sendcommand mysqlio java com mysql jdbc mysqlio sqlquerydirect mysqlio java com mysql jdbc connectionimpl execsql connectionimpl java com mysql jdbc preparedstatement executeinternal preparedstatement java com mysql jdbc preparedstatement execute preparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java main java com djrapitops plan database tables actionstable insertaction actionstable java main java com djrapitops plan systems processing nickchangeactionprocessor process nickchangeactionprocessor java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue consumer run consumer java com djrapitops plugin task runnablefactory run runnablefactory java org bukkit craftbukkit scheduler crafttask run crafttask java org bukkit craftbukkit scheduler craftasynctask run craftasynctask java java util concurrent threadpoolexecutor runworker threadpoolexecutor java java util concurrent threadpoolexecutor worker run threadpoolexecutor java java lang thread run thread java main java com djrapitops plan systems processing player nameprocessor caught com mysql jdbc exceptions mysqlintegrityconstraintviolationexception column user id cannot be null sun reflect newinstance unknown source sun reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java java lang reflect constructor newinstance constructor java com mysql jdbc util handlenewinstance util java com mysql jdbc util getinstance util java com mysql jdbc sqlerror createsqlexception sqlerror java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio sendcommand mysqlio java com mysql jdbc mysqlio sqlquerydirect mysqlio java com mysql jdbc connectionimpl execsql connectionimpl java com mysql jdbc preparedstatement executeinternal preparedstatement java com mysql jdbc preparedstatement execute preparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java main java com djrapitops plan database tables nicknamestable saveusername nicknamestable java main java com djrapitops plan systems processing player nameprocessor process nameprocessor java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue consumer run consumer java com djrapitops plugin task runnablefactory run runnablefactory java org bukkit craftbukkit scheduler crafttask run crafttask java org bukkit craftbukkit scheduler craftasynctask run craftasynctask java java util concurrent threadpoolexecutor runworker threadpoolexecutor java java util concurrent threadpoolexecutor worker run threadpoolexecutor java java lang thread run thread java main java com djrapitops plan systems cache datacache caught com mysql jdbc exceptions mysqlintegrityconstraintviolationexception column user id cannot be null sun reflect newinstance unknown source sun reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java java lang reflect constructor newinstance constructor java com mysql jdbc util handlenewinstance util java com mysql jdbc util getinstance util java com mysql jdbc sqlerror createsqlexception sqlerror java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio sendcommand mysqlio java com mysql jdbc mysqlio sqlquerydirect mysqlio java com mysql jdbc connectionimpl execsql connectionimpl java com mysql jdbc preparedstatement executeinternal preparedstatement java com mysql jdbc preparedstatement execute preparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java main java com djrapitops plan database tables sessionstable savesessioninformation sessionstable java main java com djrapitops plan database tables sessionstable savesession sessionstable java main java com djrapitops plan systems cache sessioncache endsession sessioncache java main java com djrapitops plan systems processing player endsessionprocessor process endsessionprocessor java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue consumer run consumer java com djrapitops plugin task runnablefactory run runnablefactory java org bukkit craftbukkit scheduler crafttask run crafttask java org bukkit craftbukkit scheduler craftasynctask run craftasynctask java java util concurrent threadpoolexecutor runworker threadpoolexecutor java java util concurrent threadpoolexecutor worker run threadpoolexecutor java java lang thread run thread java main java com djrapitops plan systems processing player firstleaveprocessor caught com mysql jdbc exceptions mysqlintegrityconstraintviolationexception column user id cannot be null sun reflect newinstance unknown source sun reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java java lang reflect constructor newinstance constructor java com mysql jdbc util handlenewinstance util java com mysql jdbc util getinstance util java com mysql jdbc sqlerror createsqlexception sqlerror java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio sendcommand mysqlio java com mysql jdbc mysqlio sqlquerydirect mysqlio java com mysql jdbc connectionimpl execsql connectionimpl java com mysql jdbc preparedstatement executeinternal preparedstatement java com mysql jdbc preparedstatement execute preparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java main java com djrapitops plan database tables actionstable insertaction actionstable java main java com djrapitops plan systems processing player firstleaveprocessor process firstleaveprocessor java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue consumer run consumer java com djrapitops plugin task runnablefactory run runnablefactory java org bukkit craftbukkit scheduler crafttask run crafttask java org bukkit craftbukkit scheduler craftasynctask run craftasynctask java java util concurrent threadpoolexecutor runworker threadpoolexecutor java java util concurrent threadpoolexecutor worker run threadpoolexecutor java java lang thread run thread java main java com djrapitops plan systems processing player registerprocessor caught com mysql jdbc exceptions mysqlintegrityconstraintviolationexception duplicate entry for key uuid sun reflect newinstance unknown source sun reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java java lang reflect constructor newinstance constructor java com mysql jdbc util handlenewinstance util java com mysql jdbc util getinstance util java com mysql jdbc sqlerror createsqlexception sqlerror java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio sendcommand mysqlio java com mysql jdbc mysqlio sqlquerydirect mysqlio java com mysql jdbc connectionimpl execsql connectionimpl java com mysql jdbc preparedstatement executeinternal preparedstatement java com mysql jdbc preparedstatement execute preparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java main java com djrapitops plan database tables userstable registeruser userstable java main java com djrapitops plan systems processing player registerprocessor process registerprocessor java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue consumer run consumer java com djrapitops plugin task runnablefactory run runnablefactory java org bukkit craftbukkit scheduler crafttask run crafttask java org bukkit craftbukkit scheduler craftasynctask run craftasynctask java java util concurrent threadpoolexecutor runworker threadpoolexecutor java java util concurrent threadpoolexecutor worker run threadpoolexecutor java java lang thread run thread java main java com djrapitops plan systems processing nickchangeactionprocessor caught com mysql jdbc mysqldatatruncation data truncation data too long for column additional info at row com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio sendcommand mysqlio java com mysql jdbc mysqlio sqlquerydirect mysqlio java com mysql jdbc connectionimpl execsql connectionimpl java com mysql jdbc preparedstatement executeinternal preparedstatement java com mysql jdbc preparedstatement execute preparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java main java com djrapitops plan database tables actionstable insertaction actionstable java main java com djrapitops plan systems processing nickchangeactionprocessor process nickchangeactionprocessor java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue consumer run consumer java com djrapitops plugin task runnablefactory run runnablefactory java org bukkit craftbukkit scheduler crafttask run crafttask java org bukkit craftbukkit scheduler craftasynctask run craftasynctask java java util concurrent threadpoolexecutor runworker threadpoolexecutor java java util concurrent threadpoolexecutor worker run threadpoolexecutor java java lang thread run thread java main java com djrapitops plan systems processing player registerprocessor caught com mysql jdbc exceptions mysqlintegrityconstraintviolationexception duplicate entry for key uuid sun reflect newinstance unknown source sun reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java java lang reflect constructor newinstance constructor java com mysql jdbc util handlenewinstance util java com mysql jdbc util getinstance util java com mysql jdbc sqlerror createsqlexception sqlerror java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio sendcommand mysqlio java com mysql jdbc mysqlio sqlquerydirect mysqlio java com mysql jdbc connectionimpl execsql connectionimpl java com mysql jdbc preparedstatement executeinternal preparedstatement java com mysql jdbc preparedstatement execute preparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java main java com djrapitops plan database tables userstable registeruser userstable java main java com djrapitops plan systems processing player registerprocessor process registerprocessor java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue consumer run consumer java com djrapitops plugin task runnablefactory run runnablefactory java org bukkit craftbukkit scheduler crafttask run crafttask java org bukkit craftbukkit scheduler craftasynctask run craftasynctask java java util concurrent threadpoolexecutor runworker threadpoolexecutor java java util concurrent threadpoolexecutor worker run threadpoolexecutor java java lang thread run thread java main java com djrapitops plan systems processing player registerprocessor caught com mysql jdbc exceptions mysqlintegrityconstraintviolationexception duplicate entry for key uuid sun reflect newinstance unknown source sun reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java java lang reflect constructor newinstance constructor java com mysql jdbc util handlenewinstance util java com mysql jdbc util getinstance util java com mysql jdbc sqlerror createsqlexception sqlerror java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio sendcommand mysqlio java com mysql jdbc mysqlio sqlquerydirect mysqlio java com mysql jdbc connectionimpl execsql connectionimpl java com mysql jdbc preparedstatement executeinternal preparedstatement java com mysql jdbc preparedstatement execute preparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java main java com djrapitops plan database tables userstable registeruser userstable java main java com djrapitops plan systems processing player registerprocessor process registerprocessor java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue consumer run consumer java com djrapitops plugin task runnablefactory run runnablefactory java org bukkit craftbukkit scheduler crafttask run crafttask java org bukkit craftbukkit scheduler craftasynctask run craftasynctask java java util concurrent threadpoolexecutor runworker threadpoolexecutor java java util concurrent threadpoolexecutor worker run threadpoolexecutor java java lang thread run thread java main java com djrapitops plan systems processing player registerprocessor caught com mysql jdbc exceptions mysqlintegrityconstraintviolationexception duplicate entry for key uuid sun reflect newinstance unknown source sun reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java java lang reflect constructor newinstance constructor java com mysql jdbc util handlenewinstance util java com mysql jdbc util getinstance util java com mysql jdbc sqlerror createsqlexception sqlerror java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio sendcommand mysqlio java com mysql jdbc mysqlio sqlquerydirect mysqlio java com mysql jdbc connectionimpl execsql connectionimpl java com mysql jdbc preparedstatement executeinternal preparedstatement java com mysql jdbc preparedstatement execute preparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java main java com djrapitops plan database tables userstable registeruser userstable java main java com djrapitops plan systems processing player registerprocessor process registerprocessor java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue consumer run consumer java com djrapitops plugin task runnablefactory run runnablefactory java org bukkit craftbukkit scheduler crafttask run crafttask java org bukkit craftbukkit scheduler craftasynctask run craftasynctask java java util concurrent threadpoolexecutor runworker threadpoolexecutor java java util concurrent threadpoolexecutor worker run threadpoolexecutor java java lang thread run thread java main java com djrapitops plan systems processing player registerprocessor caught com mysql jdbc exceptions mysqlintegrityconstraintviolationexception duplicate entry for key uuid sun reflect newinstance unknown source sun reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java java lang reflect constructor newinstance constructor java com mysql jdbc util handlenewinstance util java com mysql jdbc util getinstance util java com mysql jdbc sqlerror createsqlexception sqlerror java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio sendcommand mysqlio java com mysql jdbc mysqlio sqlquerydirect mysqlio java com mysql jdbc connectionimpl execsql connectionimpl java com mysql jdbc preparedstatement executeinternal preparedstatement java com mysql jdbc preparedstatement execute preparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java main java com djrapitops plan database tables userstable registeruser userstable java main java com djrapitops plan systems processing player registerprocessor process registerprocessor java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue consumer run consumer java com djrapitops plugin task runnablefactory run runnablefactory java org bukkit craftbukkit scheduler crafttask run crafttask java org bukkit craftbukkit scheduler craftasynctask run craftasynctask java java util concurrent threadpoolexecutor runworker threadpoolexecutor java java util concurrent threadpoolexecutor worker run threadpoolexecutor java java lang thread run thread java main java com djrapitops plan systems processing player registerprocessor caught com mysql jdbc exceptions mysqlintegrityconstraintviolationexception duplicate entry for key uuid sun reflect newinstance unknown source sun reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java java lang reflect constructor newinstance constructor java com mysql jdbc util handlenewinstance util java com mysql jdbc util getinstance util java com mysql jdbc sqlerror createsqlexception sqlerror java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio sendcommand mysqlio java com mysql jdbc mysqlio sqlquerydirect mysqlio java com mysql jdbc connectionimpl execsql connectionimpl java com mysql jdbc preparedstatement executeinternal preparedstatement java com mysql jdbc preparedstatement execute preparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java main java com djrapitops plan database tables userstable registeruser userstable java main java com djrapitops plan systems processing player registerprocessor process registerprocessor java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue consumer run consumer java com djrapitops plugin task runnablefactory run runnablefactory java org bukkit craftbukkit scheduler crafttask run crafttask java org bukkit craftbukkit scheduler craftasynctask run craftasynctask java java util concurrent threadpoolexecutor runworker threadpoolexecutor java java util concurrent threadpoolexecutor worker run threadpoolexecutor java java lang thread run thread java main java com djrapitops plan systems processing player registerprocessor caught com mysql jdbc exceptions mysqlintegrityconstraintviolationexception duplicate entry for key uuid sun reflect newinstance unknown source sun reflect delegatingconstructoraccessorimpl newinstance delegatingconstructoraccessorimpl java java lang reflect constructor newinstance constructor java com mysql jdbc util handlenewinstance util java com mysql jdbc util getinstance util java com mysql jdbc sqlerror createsqlexception sqlerror java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio checkerrorpacket mysqlio java com mysql jdbc mysqlio sendcommand mysqlio java com mysql jdbc mysqlio sqlquerydirect mysqlio java com mysql jdbc connectionimpl execsql connectionimpl java com mysql jdbc preparedstatement executeinternal preparedstatement java com mysql jdbc preparedstatement execute preparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java org apache commons delegatingpreparedstatement execute delegatingpreparedstatement java main java com djrapitops plan database tables userstable registeruser userstable java main java com djrapitops plan systems processing player registerprocessor process registerprocessor java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue processconsumer consume processingqueue java main java com djrapitops plan systems queue consumer run consumer java com djrapitops plugin task runnablefactory run runnablefactory java org bukkit craftbukkit scheduler crafttask run crafttask java org bukkit craftbukkit scheduler craftasynctask run craftasynctask java java util concurrent threadpoolexecutor runworker threadpoolexecutor java java util concurrent threadpoolexecutor worker run threadpoolexecutor java java lang thread run thread java
0
23,711
3,851,865,978
IssuesEvent
2016-04-06 05:28:07
GPF/imame4all
https://api.github.com/repos/GPF/imame4all
closed
How do I run the MAME rom for Pretty Soldier Sailor Moon on my iPhone through MAME4iOS?
auto-migrated Priority-Medium Type-Defect
``` What version of the product are you using? On what operating system? I am on 4.1 iOS for my iPhone 4. I downloaded MAMEiOS4Reloaded and love it but I am trying to run a particular ROM but I am having trouble with it. I tried downloading it from several places and tried different versions but it just won't work. The MAME rom I am trying to run is, Pretty Soldier Sailor Moon on my iPhone through MAME4iOS. I understand that the ROM requires two part that need to be downloaded, Pretty Soldier Sailor Moon (95/03/22) and Pretty Soldier Sailor Moon (95/03/22B). I tried adding both to the ROM folder in my iPhone but when I try to load the rom it says "The selected game is missing one or more required ROM or CHD images. Please select a different game." I don't know how I can put both files together or tell it to load both. Please let me know! Thanks, Felax ``` Original issue reported on code.google.com by `Test3o...@gmail.com` on 30 May 2012 at 3:56
1.0
How do I run the MAME rom for Pretty Soldier Sailor Moon on my iPhone through MAME4iOS? - ``` What version of the product are you using? On what operating system? I am on 4.1 iOS for my iPhone 4. I downloaded MAMEiOS4Reloaded and love it but I am trying to run a particular ROM but I am having trouble with it. I tried downloading it from several places and tried different versions but it just won't work. The MAME rom I am trying to run is, Pretty Soldier Sailor Moon on my iPhone through MAME4iOS. I understand that the ROM requires two part that need to be downloaded, Pretty Soldier Sailor Moon (95/03/22) and Pretty Soldier Sailor Moon (95/03/22B). I tried adding both to the ROM folder in my iPhone but when I try to load the rom it says "The selected game is missing one or more required ROM or CHD images. Please select a different game." I don't know how I can put both files together or tell it to load both. Please let me know! Thanks, Felax ``` Original issue reported on code.google.com by `Test3o...@gmail.com` on 30 May 2012 at 3:56
defect
how do i run the mame rom for pretty soldier sailor moon on my iphone through what version of the product are you using on what operating system i am on ios for my iphone i downloaded and love it but i am trying to run a particular rom but i am having trouble with it i tried downloading it from several places and tried different versions but it just won t work the mame rom i am trying to run is pretty soldier sailor moon on my iphone through i understand that the rom requires two part that need to be downloaded pretty soldier sailor moon and pretty soldier sailor moon i tried adding both to the rom folder in my iphone but when i try to load the rom it says the selected game is missing one or more required rom or chd images please select a different game i don t know how i can put both files together or tell it to load both please let me know thanks felax original issue reported on code google com by gmail com on may at
1
81,091
30,706,721,087
IssuesEvent
2023-07-27 06:51:14
vector-im/element-x-android
https://api.github.com/repos/vector-im/element-x-android
closed
The edit history does not follow the same format as on deskop.
T-Defect
### Steps to reproduce 1. send a message 2. edit the message 3. Open the edit history for the message 4. observe that it just lists the entire versions of the messages, and does not indicate what has changed with colors in each version. ### Outcome #### What did you expect? I expect the edits to show what has changed in a color coded format the same as on the desktop. #### What happened instead? It just showed each version of the entire string of text with none of the change indicators. ### Your phone model Google Pixel 6 ### Operating system version Android v13 ### Application version and app store Element X v1.6.3 [40106032] (G-f5f4d4a3), Matrix SDK v1.6.3 (f5f4d4a3, Crypto (Rust SDK v0.6.0, Vodozemac 0.4.0) ### Homeserver matrix.org ### Will you send logs? No ### Are you willing to provide a PR? No
1.0
The edit history does not follow the same format as on deskop. - ### Steps to reproduce 1. send a message 2. edit the message 3. Open the edit history for the message 4. observe that it just lists the entire versions of the messages, and does not indicate what has changed with colors in each version. ### Outcome #### What did you expect? I expect the edits to show what has changed in a color coded format the same as on the desktop. #### What happened instead? It just showed each version of the entire string of text with none of the change indicators. ### Your phone model Google Pixel 6 ### Operating system version Android v13 ### Application version and app store Element X v1.6.3 [40106032] (G-f5f4d4a3), Matrix SDK v1.6.3 (f5f4d4a3, Crypto (Rust SDK v0.6.0, Vodozemac 0.4.0) ### Homeserver matrix.org ### Will you send logs? No ### Are you willing to provide a PR? No
defect
the edit history does not follow the same format as on deskop steps to reproduce send a message edit the message open the edit history for the message observe that it just lists the entire versions of the messages and does not indicate what has changed with colors in each version outcome what did you expect i expect the edits to show what has changed in a color coded format the same as on the desktop what happened instead it just showed each version of the entire string of text with none of the change indicators your phone model google pixel operating system version android application version and app store element x g matrix sdk crypto rust sdk vodozemac homeserver matrix org will you send logs no are you willing to provide a pr no
1
57,932
16,174,161,531
IssuesEvent
2021-05-03 01:27:31
atulraut/atclib
https://api.github.com/repos/atulraut/atclib
closed
Open Issue atclib/denis/r-sol/ch-05/05-06/getline
Priority-Medium Type-Defect auto-migrated
``` "The C Prgramming Language" by Denise Ritchie. Exercise 5-6: Rewrite the appropriate programs from earlier chapters and exercises with pointers instead of array indexing. Good possibilities include getline, atoi, itoa, and their variants reverse, and strindex and getop. Needs to implement below function. 1] int readlines (char *lineptr[], int nlines); 2] void writelines (char *lineptr[], int nlines); 3] void qsort (char *lineptr[], int left, int right); ``` Original issue reported on code.google.com by `atulrau...@gmail.com` on 3 Apr 2012 at 7:39
1.0
Open Issue atclib/denis/r-sol/ch-05/05-06/getline - ``` "The C Prgramming Language" by Denise Ritchie. Exercise 5-6: Rewrite the appropriate programs from earlier chapters and exercises with pointers instead of array indexing. Good possibilities include getline, atoi, itoa, and their variants reverse, and strindex and getop. Needs to implement below function. 1] int readlines (char *lineptr[], int nlines); 2] void writelines (char *lineptr[], int nlines); 3] void qsort (char *lineptr[], int left, int right); ``` Original issue reported on code.google.com by `atulrau...@gmail.com` on 3 Apr 2012 at 7:39
defect
open issue atclib denis r sol ch getline the c prgramming language by denise ritchie exercise rewrite the appropriate programs from earlier chapters and exercises with pointers instead of array indexing good possibilities include getline atoi itoa and their variants reverse and strindex and getop needs to implement below function int readlines char lineptr int nlines void writelines char lineptr int nlines void qsort char lineptr int left int right original issue reported on code google com by atulrau gmail com on apr at
1
46,925
13,056,002,941
IssuesEvent
2020-07-30 03:21:37
icecube-trac/tix2
https://api.github.com/repos/icecube-trac/tix2
opened
icetray-start does not detect download failures (Trac #2144)
Incomplete Migration Migrated from Trac cvmfs defect
Migrated from https://code.icecube.wisc.edu/ticket/2144 ```json { "status": "closed", "changetime": "2019-02-13T14:15:23", "description": "There are several reasons icetray start can fail to download a user-specified tarball, such as networking issues or the current host OS not matching any tarball which currently exists for the specified meta-project. Currently, this leads to a rather confusing and uninformative error:\n\n\ticetray-start: line 164: /env-shell.sh: No such file or directory\n\n(This happens because the attempt to extract the build directory name from the tarball has silently failed, leaving that variable empty.) I think that some actual error handling, such as \n\n{{{\n145a146,149\n> \t\tif [ ! -e `basename $TARBALL` ]; then\n> \t\t\techo \"Failed to download $TARBALL\" 1>&2\n> \t\t\texit 1\n> \t\tfi\n}}}\n\nwould help greatly, as the user will then see (for example):\n\n\tFailed to download http://icecube:skua@convey.icecube.wisc.edu/data/user/tcarver/icerec/V05-02-00_rc0/build/icerec.candidates.V05-02-00_rc0.r159939.RHEL_7_x86_64.tar.gz\n\nwhich makes it clear that either the network or the target URL should be investigated. (In this example the tarball only has a RHEL_6 version, and now the user has the information to see the OS mismatch.)", "reporter": "cweaver", "cc": "", "resolution": "fixed", "_ts": "1550067323910946", "component": "cvmfs", "summary": "icetray-start does not detect download failures", "priority": "normal", "keywords": "", "time": "2018-04-11T19:45:56", "milestone": "", "owner": "david.schultz", "type": "defect" } ```
1.0
icetray-start does not detect download failures (Trac #2144) - Migrated from https://code.icecube.wisc.edu/ticket/2144 ```json { "status": "closed", "changetime": "2019-02-13T14:15:23", "description": "There are several reasons icetray start can fail to download a user-specified tarball, such as networking issues or the current host OS not matching any tarball which currently exists for the specified meta-project. Currently, this leads to a rather confusing and uninformative error:\n\n\ticetray-start: line 164: /env-shell.sh: No such file or directory\n\n(This happens because the attempt to extract the build directory name from the tarball has silently failed, leaving that variable empty.) I think that some actual error handling, such as \n\n{{{\n145a146,149\n> \t\tif [ ! -e `basename $TARBALL` ]; then\n> \t\t\techo \"Failed to download $TARBALL\" 1>&2\n> \t\t\texit 1\n> \t\tfi\n}}}\n\nwould help greatly, as the user will then see (for example):\n\n\tFailed to download http://icecube:skua@convey.icecube.wisc.edu/data/user/tcarver/icerec/V05-02-00_rc0/build/icerec.candidates.V05-02-00_rc0.r159939.RHEL_7_x86_64.tar.gz\n\nwhich makes it clear that either the network or the target URL should be investigated. (In this example the tarball only has a RHEL_6 version, and now the user has the information to see the OS mismatch.)", "reporter": "cweaver", "cc": "", "resolution": "fixed", "_ts": "1550067323910946", "component": "cvmfs", "summary": "icetray-start does not detect download failures", "priority": "normal", "keywords": "", "time": "2018-04-11T19:45:56", "milestone": "", "owner": "david.schultz", "type": "defect" } ```
defect
icetray start does not detect download failures trac migrated from json status closed changetime description there are several reasons icetray start can fail to download a user specified tarball such as networking issues or the current host os not matching any tarball which currently exists for the specified meta project currently this leads to a rather confusing and uninformative error n n ticetray start line env shell sh no such file or directory n n this happens because the attempt to extract the build directory name from the tarball has silently failed leaving that variable empty i think that some actual error handling such as n n n t tif then n t t techo failed to download tarball n t t texit n t tfi n n nwould help greatly as the user will then see for example n n tfailed to download makes it clear that either the network or the target url should be investigated in this example the tarball only has a rhel version and now the user has the information to see the os mismatch reporter cweaver cc resolution fixed ts component cvmfs summary icetray start does not detect download failures priority normal keywords time milestone owner david schultz type defect
1
71,558
30,913,442,691
IssuesEvent
2023-08-05 01:58:18
Zahlungsmittel/Zahlungsmittel
https://api.github.com/repos/Zahlungsmittel/Zahlungsmittel
opened
[CLOSED] Revert "deliver a decay block every time"
bug service: backend imported
<a href="https://github.com/Elweyn"><img src="https://avatars.githubusercontent.com/u/33051975?v=4" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [Elweyn](https://github.com/Elweyn)** _Friday Oct 15, 2021 at 10:02 GMT_ _Originally opened as https://github.com/gradido/gradido/pull/990_ ---- Reverts gradido/gradido#988 ---- _**[Elweyn](https://github.com/Elweyn)** included the following code: https://github.com/gradido/gradido/pull/990/commits_
1.0
[CLOSED] Revert "deliver a decay block every time" - <a href="https://github.com/Elweyn"><img src="https://avatars.githubusercontent.com/u/33051975?v=4" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [Elweyn](https://github.com/Elweyn)** _Friday Oct 15, 2021 at 10:02 GMT_ _Originally opened as https://github.com/gradido/gradido/pull/990_ ---- Reverts gradido/gradido#988 ---- _**[Elweyn](https://github.com/Elweyn)** included the following code: https://github.com/gradido/gradido/pull/990/commits_
non_defect
revert deliver a decay block every time issue by friday oct at gmt originally opened as reverts gradido gradido included the following code
0
49,360
13,186,636,864
IssuesEvent
2020-08-13 00:49:40
icecube-trac/tix3
https://api.github.com/repos/icecube-trac/tix3
opened
[NoiseEngine] example script and python module are broken (Trac #1230)
Incomplete Migration Migrated from Trac combo reconstruction defect
<details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/1230">https://code.icecube.wisc.edu/ticket/1230</a>, reported by kkrings and owned by mjl5147</em></summary> <p> ```json { "status": "closed", "changetime": "2019-02-13T14:11:57", "description": "Example script `../resources/scripts/example.py` is broken because `I3IsolatedHitsCutModule` does not exist anymore (should probably be replaced by STTools). The same is true for `../python/NoiseEngine.py`. Moreover, the import statements should be checked because some modules are missing and other are not needed. In general, more test scripts are needed.", "reporter": "kkrings", "cc": "", "resolution": "fixed", "_ts": "1550067117911749", "component": "combo reconstruction", "summary": "[NoiseEngine] example script and python module are broken", "priority": "blocker", "keywords": "", "time": "2015-08-19T21:50:50", "milestone": "", "owner": "mjl5147", "type": "defect" } ``` </p> </details>
1.0
[NoiseEngine] example script and python module are broken (Trac #1230) - <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/1230">https://code.icecube.wisc.edu/ticket/1230</a>, reported by kkrings and owned by mjl5147</em></summary> <p> ```json { "status": "closed", "changetime": "2019-02-13T14:11:57", "description": "Example script `../resources/scripts/example.py` is broken because `I3IsolatedHitsCutModule` does not exist anymore (should probably be replaced by STTools). The same is true for `../python/NoiseEngine.py`. Moreover, the import statements should be checked because some modules are missing and other are not needed. In general, more test scripts are needed.", "reporter": "kkrings", "cc": "", "resolution": "fixed", "_ts": "1550067117911749", "component": "combo reconstruction", "summary": "[NoiseEngine] example script and python module are broken", "priority": "blocker", "keywords": "", "time": "2015-08-19T21:50:50", "milestone": "", "owner": "mjl5147", "type": "defect" } ``` </p> </details>
defect
example script and python module are broken trac migrated from json status closed changetime description example script resources scripts example py is broken because does not exist anymore should probably be replaced by sttools the same is true for python noiseengine py moreover the import statements should be checked because some modules are missing and other are not needed in general more test scripts are needed reporter kkrings cc resolution fixed ts component combo reconstruction summary example script and python module are broken priority blocker keywords time milestone owner type defect
1
14,577
2,829,609,333
IssuesEvent
2015-05-23 02:05:30
awesomebing1/fuzzdb
https://api.github.com/repos/awesomebing1/fuzzdb
closed
http://www.rf-dimension.com/forum/entry.php?70656-Football%28Chicago-Bears-vs-Green-Bay-Packers%29-Live-Streaming
auto-migrated Priority-Medium Type-Defect
``` What steps will reproduce the problem? 1. 2. 3. http://www.rf-dimension.com/forum/entry.php?70656-Football%28Chicago-Bears-vs-Gr een-Bay-Packers%29-Live-Streaming http://www.rf-dimension.com/forum/entry.php?70656-Football%28Chicago-Bears-vs-Gr een-Bay-Packers%29-Live-Streaming What is the expected output? What do you see instead? What version of the product are you using? On what operating system? Please provide any additional information below. ``` Original issue reported on code.google.com by `sabujhos...@gmail.com` on 9 Nov 2014 at 2:47
1.0
http://www.rf-dimension.com/forum/entry.php?70656-Football%28Chicago-Bears-vs-Green-Bay-Packers%29-Live-Streaming - ``` What steps will reproduce the problem? 1. 2. 3. http://www.rf-dimension.com/forum/entry.php?70656-Football%28Chicago-Bears-vs-Gr een-Bay-Packers%29-Live-Streaming http://www.rf-dimension.com/forum/entry.php?70656-Football%28Chicago-Bears-vs-Gr een-Bay-Packers%29-Live-Streaming What is the expected output? What do you see instead? What version of the product are you using? On what operating system? Please provide any additional information below. ``` Original issue reported on code.google.com by `sabujhos...@gmail.com` on 9 Nov 2014 at 2:47
defect
what steps will reproduce the problem een bay packers live streaming een bay packers live streaming what is the expected output what do you see instead what version of the product are you using on what operating system please provide any additional information below original issue reported on code google com by sabujhos gmail com on nov at
1
25,854
4,474,208,285
IssuesEvent
2016-08-26 08:32:13
primefaces/primeng
https://api.github.com/repos/primefaces/primeng
closed
DataTable Single Mode Selection doesn't unselect
defect
From [http://www.primefaces.org/primeng/#/datatableselection]: "In single mode, a row is selected on click event of a row. If the row is already selected then the row gets unselected." Instead, clicking on a selected row simply fires another onRowSelect event. This behavior can be seen in the Showcase example at the link above.
1.0
DataTable Single Mode Selection doesn't unselect - From [http://www.primefaces.org/primeng/#/datatableselection]: "In single mode, a row is selected on click event of a row. If the row is already selected then the row gets unselected." Instead, clicking on a selected row simply fires another onRowSelect event. This behavior can be seen in the Showcase example at the link above.
defect
datatable single mode selection doesn t unselect from in single mode a row is selected on click event of a row if the row is already selected then the row gets unselected instead clicking on a selected row simply fires another onrowselect event this behavior can be seen in the showcase example at the link above
1
28,810
5,382,530,568
IssuesEvent
2017-02-24 01:56:30
nci-ats/fs-middlelayer-api
https://api.github.com/repos/nci-ats/fs-middlelayer-api
opened
Add fallback for env var PORT
Defect Subtask
lauraGgit commented 8 hours ago Add a note in the readme that PORT env must be set, or set a default port.
1.0
Add fallback for env var PORT - lauraGgit commented 8 hours ago Add a note in the readme that PORT env must be set, or set a default port.
defect
add fallback for env var port lauraggit commented hours ago add a note in the readme that port env must be set or set a default port
1
72,970
24,390,691,610
IssuesEvent
2022-10-04 15:00:58
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
closed
Image replies look weird in bubble layout
T-Defect S-Minor A-Timeline A-Media A-Replies X-Needs-Design A-Appearance A-Message-Bubbles O-Uncommon
### Steps to reproduce 1. Enable bubble layout 2. Reply to something with an image ### Outcome #### What did you expect? The gradient should not encompass the entire reply body, and I guess the image should be right-aligned since the whole bubble is right-aligned? Or the top right corner of the image should be rounded. #### What happened instead? ![Screenshot 2022-03-28 at 11-28-28 Element Test room](https://user-images.githubusercontent.com/48614497/160433144-7e5a1c8a-2651-4339-92ec-783a6c349a68.png) ### Operating system NixOS unstable ### Browser information Firefox 98.0.1 ### URL for webapp develop.element.io ### Application version Element version: 14f46a8ca994-react-8baf06c3fff6-js-bdc3da1fac3c Olm version: 3.2.8 ### Homeserver Synapse 1.55.0 ### Will you send logs? No
1.0
Image replies look weird in bubble layout - ### Steps to reproduce 1. Enable bubble layout 2. Reply to something with an image ### Outcome #### What did you expect? The gradient should not encompass the entire reply body, and I guess the image should be right-aligned since the whole bubble is right-aligned? Or the top right corner of the image should be rounded. #### What happened instead? ![Screenshot 2022-03-28 at 11-28-28 Element Test room](https://user-images.githubusercontent.com/48614497/160433144-7e5a1c8a-2651-4339-92ec-783a6c349a68.png) ### Operating system NixOS unstable ### Browser information Firefox 98.0.1 ### URL for webapp develop.element.io ### Application version Element version: 14f46a8ca994-react-8baf06c3fff6-js-bdc3da1fac3c Olm version: 3.2.8 ### Homeserver Synapse 1.55.0 ### Will you send logs? No
defect
image replies look weird in bubble layout steps to reproduce enable bubble layout reply to something with an image outcome what did you expect the gradient should not encompass the entire reply body and i guess the image should be right aligned since the whole bubble is right aligned or the top right corner of the image should be rounded what happened instead operating system nixos unstable browser information firefox url for webapp develop element io application version element version react js olm version homeserver synapse will you send logs no
1
128,631
10,545,551,060
IssuesEvent
2019-10-02 19:24:01
paritytech/substrate
https://api.github.com/repos/paritytech/substrate
closed
Updating hyper to 0.12.35 breaks the `api::http::tests::request_write_body_invalid_call` test
F4-tests 🎯
Apparently the behaviour of the sender has changed in latest versions of hyper. Unfortunately it's not documented in the CHANGELOG, which stopped at 0.12.33. Pragmatically speaking, we call `send_data` on the `Body`, then call `poll_ready` on that same `Body`, and it produces a "channel closed" error. I personally hate hyper and think we should replace it with something else, but the straight-forward solution is to figure out why that happens.
1.0
Updating hyper to 0.12.35 breaks the `api::http::tests::request_write_body_invalid_call` test - Apparently the behaviour of the sender has changed in latest versions of hyper. Unfortunately it's not documented in the CHANGELOG, which stopped at 0.12.33. Pragmatically speaking, we call `send_data` on the `Body`, then call `poll_ready` on that same `Body`, and it produces a "channel closed" error. I personally hate hyper and think we should replace it with something else, but the straight-forward solution is to figure out why that happens.
non_defect
updating hyper to breaks the api http tests request write body invalid call test apparently the behaviour of the sender has changed in latest versions of hyper unfortunately it s not documented in the changelog which stopped at pragmatically speaking we call send data on the body then call poll ready on that same body and it produces a channel closed error i personally hate hyper and think we should replace it with something else but the straight forward solution is to figure out why that happens
0
34,131
9,292,490,258
IssuesEvent
2019-03-22 03:23:21
moby/moby
https://api.github.com/repos/moby/moby
closed
Incorrect caching with LCOW and multi-stage build
area/builder area/lcow kind/experimental platform/windows
**Description** When I copy from files from one stage to another, this step is being incorrectly cached when running a linux container in Windows container mode (LCOW). If I switch to linux containers, the cache is correctly invalidated. **Steps to reproduce the issue:** 1. Switch to windows containers mode 2. Clone ``https://github.com/davidpendraykalibrate/DockerTest`` 3. Change directory into DockerTest 3. Run ``make build`` 4. Change "test2" to "test3" in ProjectPath/Program.cs 5. Run ``make build`` again **Describe the results you received:** Step 10/10 says "Using cache" **Describe the results you expected:** Step 10/10 should not say "Using cache" (because step 6 and step 7 did not use cache) **Additional information you deem important (e.g. issue happens only occasionally):** **Output of `docker version`:** ``` Client: Version: 18.05.0-ce API version: 1.37 Go version: go1.9.5 Git commit: f150324 Built: Wed May 9 22:12:05 2018 OS/Arch: windows/amd64 Experimental: false Orchestrator: swarm Server: Engine: Version: 18.05.0-ce API version: 1.37 (minimum version 1.24) Go version: go1.10.1 Git commit: f150324 Built: Wed May 9 22:29:00 2018 OS/Arch: windows/amd64 Experimental: true ``` **Output of `docker info`:** ``` Containers: 0 Running: 0 Paused: 0 Stopped: 0 Images: 79 Server Version: 18.05.0-ce Storage Driver: windowsfilter (windows) lcow (linux) Windows: LCOW: Logging Driver: json-file Plugins: Volume: local Network: ics l2bridge l2tunnel nat null overlay transparent Log: awslogs etwlogs fluentd gelf json-file logentries splunk syslog Swarm: inactive Default Isolation: hyperv Kernel Version: 10.0 17134 (17134.1.amd64fre.rs4_release.180410-1804) Operating System: Windows 10 Pro Version 1803 (OS Build 17134.48) OSType: windows Architecture: x86_64 CPUs: 4 Total Memory: 15.88GiB Name: NBMAN1887 ID: K3EC:JPHI:ZBJ2:PQW7:TTKH:ZAJU:S464:HSK3:OXMC:NAQU:DKPA:HXJL Docker Root Dir: C:\ProgramData\Docker Debug Mode (client): false Debug Mode (server): true File Descriptors: -1 Goroutines: 24 System Time: 2018-05-29T12:13:33.1765784+01:00 EventsListeners: 1 Registry: https://index.docker.io/v1/ Labels: Experimental: true Insecure Registries: 127.0.0.0/8 Live Restore Enabled: false ``` **Additional environment details (AWS, VirtualBox, physical, etc.):**
1.0
Incorrect caching with LCOW and multi-stage build - **Description** When I copy from files from one stage to another, this step is being incorrectly cached when running a linux container in Windows container mode (LCOW). If I switch to linux containers, the cache is correctly invalidated. **Steps to reproduce the issue:** 1. Switch to windows containers mode 2. Clone ``https://github.com/davidpendraykalibrate/DockerTest`` 3. Change directory into DockerTest 3. Run ``make build`` 4. Change "test2" to "test3" in ProjectPath/Program.cs 5. Run ``make build`` again **Describe the results you received:** Step 10/10 says "Using cache" **Describe the results you expected:** Step 10/10 should not say "Using cache" (because step 6 and step 7 did not use cache) **Additional information you deem important (e.g. issue happens only occasionally):** **Output of `docker version`:** ``` Client: Version: 18.05.0-ce API version: 1.37 Go version: go1.9.5 Git commit: f150324 Built: Wed May 9 22:12:05 2018 OS/Arch: windows/amd64 Experimental: false Orchestrator: swarm Server: Engine: Version: 18.05.0-ce API version: 1.37 (minimum version 1.24) Go version: go1.10.1 Git commit: f150324 Built: Wed May 9 22:29:00 2018 OS/Arch: windows/amd64 Experimental: true ``` **Output of `docker info`:** ``` Containers: 0 Running: 0 Paused: 0 Stopped: 0 Images: 79 Server Version: 18.05.0-ce Storage Driver: windowsfilter (windows) lcow (linux) Windows: LCOW: Logging Driver: json-file Plugins: Volume: local Network: ics l2bridge l2tunnel nat null overlay transparent Log: awslogs etwlogs fluentd gelf json-file logentries splunk syslog Swarm: inactive Default Isolation: hyperv Kernel Version: 10.0 17134 (17134.1.amd64fre.rs4_release.180410-1804) Operating System: Windows 10 Pro Version 1803 (OS Build 17134.48) OSType: windows Architecture: x86_64 CPUs: 4 Total Memory: 15.88GiB Name: NBMAN1887 ID: K3EC:JPHI:ZBJ2:PQW7:TTKH:ZAJU:S464:HSK3:OXMC:NAQU:DKPA:HXJL Docker Root Dir: C:\ProgramData\Docker Debug Mode (client): false Debug Mode (server): true File Descriptors: -1 Goroutines: 24 System Time: 2018-05-29T12:13:33.1765784+01:00 EventsListeners: 1 Registry: https://index.docker.io/v1/ Labels: Experimental: true Insecure Registries: 127.0.0.0/8 Live Restore Enabled: false ``` **Additional environment details (AWS, VirtualBox, physical, etc.):**
non_defect
incorrect caching with lcow and multi stage build description when i copy from files from one stage to another this step is being incorrectly cached when running a linux container in windows container mode lcow if i switch to linux containers the cache is correctly invalidated steps to reproduce the issue switch to windows containers mode clone change directory into dockertest run make build change to in projectpath program cs run make build again describe the results you received step says using cache describe the results you expected step should not say using cache because step and step did not use cache additional information you deem important e g issue happens only occasionally output of docker version client version ce api version go version git commit built wed may os arch windows experimental false orchestrator swarm server engine version ce api version minimum version go version git commit built wed may os arch windows experimental true output of docker info containers running paused stopped images server version ce storage driver windowsfilter windows lcow linux windows lcow logging driver json file plugins volume local network ics nat null overlay transparent log awslogs etwlogs fluentd gelf json file logentries splunk syslog swarm inactive default isolation hyperv kernel version release operating system windows pro version os build ostype windows architecture cpus total memory name id jphi ttkh zaju oxmc naqu dkpa hxjl docker root dir c programdata docker debug mode client false debug mode server true file descriptors goroutines system time eventslisteners registry labels experimental true insecure registries live restore enabled false additional environment details aws virtualbox physical etc
0
34,412
7,451,205,488
IssuesEvent
2018-03-29 01:31:39
kerdokullamae/test_koik_issued
https://api.github.com/repos/kerdokullamae/test_koik_issued
closed
isik/org. andmete lehel KY-sakil on pealkiri liigne
C: AIS P: normal R: fixed T: defect
**Reported by aadikaljuvee on 13 Mar 2013 09:17 UTC** 1) Organisatsioon="Siseministeerium" puhul avad andmete lehe: http://rahvusarhiiv.tietotest.ee/et/person/view/110000009095/?name_first_letter=S&name_prefix_range_from=sindi+linnar&name_prefix_range_to=soomusrongide+diviisi+i 2) liigud sakile "Seotud kirjeldusüksused". Seal on saki nime järel ka samanimeline pealkiri "Seotud kirjeldusüksused", mis on liigne ja tuleks ära kaotada. 3) Seotud kirjeldusüksuste tabelis on viimane veerg "Roll". Praegu on see tühi, aga peaks olema "arhiivimoodustaja arhiiv" või lihtsalt "arhiivimoodustaja" (see on seose roll ka ky juures).
1.0
isik/org. andmete lehel KY-sakil on pealkiri liigne - **Reported by aadikaljuvee on 13 Mar 2013 09:17 UTC** 1) Organisatsioon="Siseministeerium" puhul avad andmete lehe: http://rahvusarhiiv.tietotest.ee/et/person/view/110000009095/?name_first_letter=S&name_prefix_range_from=sindi+linnar&name_prefix_range_to=soomusrongide+diviisi+i 2) liigud sakile "Seotud kirjeldusüksused". Seal on saki nime järel ka samanimeline pealkiri "Seotud kirjeldusüksused", mis on liigne ja tuleks ära kaotada. 3) Seotud kirjeldusüksuste tabelis on viimane veerg "Roll". Praegu on see tühi, aga peaks olema "arhiivimoodustaja arhiiv" või lihtsalt "arhiivimoodustaja" (see on seose roll ka ky juures).
defect
isik org andmete lehel ky sakil on pealkiri liigne reported by aadikaljuvee on mar utc organisatsioon siseministeerium puhul avad andmete lehe liigud sakile seotud kirjeldusüksused seal on saki nime järel ka samanimeline pealkiri seotud kirjeldusüksused mis on liigne ja tuleks ära kaotada seotud kirjeldusüksuste tabelis on viimane veerg roll praegu on see tühi aga peaks olema arhiivimoodustaja arhiiv või lihtsalt arhiivimoodustaja see on seose roll ka ky juures
1
76,425
3,488,078,938
IssuesEvent
2016-01-02 16:21:06
SuperTux/supertux
https://api.github.com/repos/SuperTux/supertux
closed
0.4.0 RELEASE TODO LIST
category:meta priority:urgent
__TENTATIVE RELEASE DATE: December 20, 2015__ In this issue, I will gather tasks that need to be done before (or on the day of) the release of 0.4.0): - [x] Update SuperTux credits - [x] Include Jacob "maths22" Burroughs ("packaging, nightly builds"), Karkus (development, SuperTux editor, other things) and Hume (development, level editing) - [x] Update list of translators in credits - [x] Add people we might have forgotten during previous rounds (if there are any) - [x] Integrate changes to submodules (xref SuperTux/tinygettext#1, SuperTux/squirrel#1) - [x] Update localization files from Transifex - [x] Add "Thank you" announcement stating that localizers can take it easy now (apologize for string changes after string freeze) - [x] Update add-ons that need updating (including those with changed strings which were updated in the source files. - [x] Create language add-ons for all supported languages. - [x] Run through Coverity to make sure that intermittent changes didn't break the build - [x] Update readme.md to reflect recent changes (still talks about abandoning the forest world etc.) - [x] Create release notes, update `NEWS.md` for 0.4.0 - [x] *git tag* the release as 0.4.0, create a new branch containing 0.4.0 code, main development will continue on the master branch. - [x] Compile packages for major operating systems (Linux, Windows, Mac OS X) (@maths22) - [x] Create release announcement covering most important commits since 0.3.5a (also include release notes). - [x] PR / Social Media coverage, including: - [x] Twitter (@supertux_team) - [x] FreeGameDev.org - [x] Mailing list - [x] Notify people depending on the release about it. This includes: - [x] Homebrew Games https://github.com/Homebrew/homebrew-games - [x] Android port https://github.com/pelya/commandergenius - [x] Arch Linux: https://www.archlinux.org/packages/community/x86_64/supertux/ (Flag out of date when released, CC: @svenstaro) - [x] Debian (CC: @Vincent-C) - [x] Fedora (CC: @amigadave) - [x] PortableApps.com guys in order to create a new version of Portable SuperTux - [x] Softonic.com http://supertux.softonic.com/ **Edit by @maxteufel, 2015-12-03 16:15 UTC:** Added Arch Linux to list of people to notify **Edit by @maxteufel, 2015-12-03 16:25 UTC:** Added Debian and Fedora to list of people to notify **Edit by @maxteufel, 2015-12-18 19:29 UTC:** `NEWS.md` should be updated **before** tagging *0.4.0*
1.0
0.4.0 RELEASE TODO LIST - __TENTATIVE RELEASE DATE: December 20, 2015__ In this issue, I will gather tasks that need to be done before (or on the day of) the release of 0.4.0): - [x] Update SuperTux credits - [x] Include Jacob "maths22" Burroughs ("packaging, nightly builds"), Karkus (development, SuperTux editor, other things) and Hume (development, level editing) - [x] Update list of translators in credits - [x] Add people we might have forgotten during previous rounds (if there are any) - [x] Integrate changes to submodules (xref SuperTux/tinygettext#1, SuperTux/squirrel#1) - [x] Update localization files from Transifex - [x] Add "Thank you" announcement stating that localizers can take it easy now (apologize for string changes after string freeze) - [x] Update add-ons that need updating (including those with changed strings which were updated in the source files. - [x] Create language add-ons for all supported languages. - [x] Run through Coverity to make sure that intermittent changes didn't break the build - [x] Update readme.md to reflect recent changes (still talks about abandoning the forest world etc.) - [x] Create release notes, update `NEWS.md` for 0.4.0 - [x] *git tag* the release as 0.4.0, create a new branch containing 0.4.0 code, main development will continue on the master branch. - [x] Compile packages for major operating systems (Linux, Windows, Mac OS X) (@maths22) - [x] Create release announcement covering most important commits since 0.3.5a (also include release notes). - [x] PR / Social Media coverage, including: - [x] Twitter (@supertux_team) - [x] FreeGameDev.org - [x] Mailing list - [x] Notify people depending on the release about it. This includes: - [x] Homebrew Games https://github.com/Homebrew/homebrew-games - [x] Android port https://github.com/pelya/commandergenius - [x] Arch Linux: https://www.archlinux.org/packages/community/x86_64/supertux/ (Flag out of date when released, CC: @svenstaro) - [x] Debian (CC: @Vincent-C) - [x] Fedora (CC: @amigadave) - [x] PortableApps.com guys in order to create a new version of Portable SuperTux - [x] Softonic.com http://supertux.softonic.com/ **Edit by @maxteufel, 2015-12-03 16:15 UTC:** Added Arch Linux to list of people to notify **Edit by @maxteufel, 2015-12-03 16:25 UTC:** Added Debian and Fedora to list of people to notify **Edit by @maxteufel, 2015-12-18 19:29 UTC:** `NEWS.md` should be updated **before** tagging *0.4.0*
non_defect
release todo list tentative release date december in this issue i will gather tasks that need to be done before or on the day of the release of update supertux credits include jacob burroughs packaging nightly builds karkus development supertux editor other things and hume development level editing update list of translators in credits add people we might have forgotten during previous rounds if there are any integrate changes to submodules xref supertux tinygettext supertux squirrel update localization files from transifex add thank you announcement stating that localizers can take it easy now apologize for string changes after string freeze update add ons that need updating including those with changed strings which were updated in the source files create language add ons for all supported languages run through coverity to make sure that intermittent changes didn t break the build update readme md to reflect recent changes still talks about abandoning the forest world etc create release notes update news md for git tag the release as create a new branch containing code main development will continue on the master branch compile packages for major operating systems linux windows mac os x create release announcement covering most important commits since also include release notes pr social media coverage including twitter supertux team freegamedev org mailing list notify people depending on the release about it this includes homebrew games android port arch linux flag out of date when released cc svenstaro debian cc vincent c fedora cc amigadave portableapps com guys in order to create a new version of portable supertux softonic com edit by maxteufel utc added arch linux to list of people to notify edit by maxteufel utc added debian and fedora to list of people to notify edit by maxteufel utc news md should be updated before tagging
0
172,988
21,088,966,323
IssuesEvent
2022-04-04 01:04:47
crouchr/learnage
https://api.github.com/repos/crouchr/learnage
opened
CVE-2022-23308 (High) detected in clamav-develclamav-0.98.4
security vulnerability
## CVE-2022-23308 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>clamav-develclamav-0.98.4</b></p></summary> <p> <p>ClamAV Development - FAQ is here: https://github.com/Cisco-Talos/clamav-faq</p> <p>Library home page: <a href=https://github.com/vrtadmin/clamav-devel.git>https://github.com/vrtadmin/clamav-devel.git</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 (1)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/blackrain2020/original-sources-3rd-party/clamav-0.98.4.tar/clamav-0.98.4/win32/3rdparty/libxml2/valid.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> valid.c in libxml2 before 2.9.13 has a use-after-free of ID and IDREF attributes. <p>Publish Date: 2022-02-26 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-23308>CVE-2022-23308</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>7.5</b>)</summary> <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> </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://mail.gnome.org/archives/xml/2022-February/msg00015.html">https://mail.gnome.org/archives/xml/2022-February/msg00015.html</a></p> <p>Release Date: 2022-02-26</p> <p>Fix Resolution: v2.9.13</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-2022-23308 (High) detected in clamav-develclamav-0.98.4 - ## CVE-2022-23308 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>clamav-develclamav-0.98.4</b></p></summary> <p> <p>ClamAV Development - FAQ is here: https://github.com/Cisco-Talos/clamav-faq</p> <p>Library home page: <a href=https://github.com/vrtadmin/clamav-devel.git>https://github.com/vrtadmin/clamav-devel.git</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 (1)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/blackrain2020/original-sources-3rd-party/clamav-0.98.4.tar/clamav-0.98.4/win32/3rdparty/libxml2/valid.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> valid.c in libxml2 before 2.9.13 has a use-after-free of ID and IDREF attributes. <p>Publish Date: 2022-02-26 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-23308>CVE-2022-23308</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>7.5</b>)</summary> <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> </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://mail.gnome.org/archives/xml/2022-February/msg00015.html">https://mail.gnome.org/archives/xml/2022-February/msg00015.html</a></p> <p>Release Date: 2022-02-26</p> <p>Fix Resolution: v2.9.13</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_defect
cve high detected in clamav develclamav cve high severity vulnerability vulnerable library clamav develclamav clamav development faq is here library home page a href found in base branch master vulnerable source files original sources party clamav tar clamav valid c vulnerability details valid c in before has a use after free of id and idref attributes 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 step up your open source security game with whitesource
0
32,539
6,821,701,705
IssuesEvent
2017-11-07 17:33:05
ontop/ontop
https://api.github.com/repos/ontop/ontop
closed
OntoPro does not include the type "^^date" in the query results
status: fixed type: defect
<!-- Do you want to ask a question? Are you looking for support? We have also a mailing list https://groups.google.com/d/forum/ontop4obda Have a look at our guidelines on how to submit a bug report https://github.com/ontop/ontop/wiki/BugReport --> ### Description I'm using OntoPro to perform queries. Normally the result includes the datatype, for example 3^^int or "example"^^string. However, when the result type is a date, it does not appear. Because of this, when I perform a materialization of triples, the dates do not have a specified type, which is causing inconsistencies when I use other reasoners on the ontology. ### Steps to Reproduce 1. Create a test database. For example, a database with a unique table called PERSON with the following colums: ID (NUMBER) NAME (VARCHAR) SURNAME (VARCHAR) BIRTH (DATE) 2. Add a person to the table ;-): ![imagen](https://cloud.githubusercontent.com/assets/11376639/23512126/d7609540-ff5f-11e6-8e81-df969297498f.png) 3. Create the ontology with a Person class and hasBirth, hasId, hasName and hasSurname data properties: ![imagen](https://cloud.githubusercontent.com/assets/11376639/23512211/2b99fca0-ff60-11e6-8631-5663d2f72e0c.png) All the properties have Person as domain. The properties hasName and hasSurname have xsd:string as range. The property hasId has xsd:int as range. The property hasBirth has xsd:date as range. 4. Create the mapping as follows: ![imagen](https://cloud.githubusercontent.com/assets/11376639/23512329/88611e78-ff60-11e6-86e5-783d7087e098.png) 5. Start ontop reasoner and perform the following query: select * where { ?person a :Person ; :hasId ?id ; :hasName ?name ; :hasSurname ?surname ; :hasBirth ?birth . } **Expected behavior:** Each result must be paired with their type: "1"^^xsd:int "skomlaebri"^^xsd:string "theBest"^^xsd:string "1989-03-18"^^date **Actual behavior:** The date appears without the type: ![imagen](https://cloud.githubusercontent.com/assets/11376639/23522679/2cfd904c-ff84-11e6-865a-58efc1c58611.png) ### Versions Ontop OBDA Protege Plugin 1.18.0 Protege 5.0.0
1.0
OntoPro does not include the type "^^date" in the query results - <!-- Do you want to ask a question? Are you looking for support? We have also a mailing list https://groups.google.com/d/forum/ontop4obda Have a look at our guidelines on how to submit a bug report https://github.com/ontop/ontop/wiki/BugReport --> ### Description I'm using OntoPro to perform queries. Normally the result includes the datatype, for example 3^^int or "example"^^string. However, when the result type is a date, it does not appear. Because of this, when I perform a materialization of triples, the dates do not have a specified type, which is causing inconsistencies when I use other reasoners on the ontology. ### Steps to Reproduce 1. Create a test database. For example, a database with a unique table called PERSON with the following colums: ID (NUMBER) NAME (VARCHAR) SURNAME (VARCHAR) BIRTH (DATE) 2. Add a person to the table ;-): ![imagen](https://cloud.githubusercontent.com/assets/11376639/23512126/d7609540-ff5f-11e6-8e81-df969297498f.png) 3. Create the ontology with a Person class and hasBirth, hasId, hasName and hasSurname data properties: ![imagen](https://cloud.githubusercontent.com/assets/11376639/23512211/2b99fca0-ff60-11e6-8631-5663d2f72e0c.png) All the properties have Person as domain. The properties hasName and hasSurname have xsd:string as range. The property hasId has xsd:int as range. The property hasBirth has xsd:date as range. 4. Create the mapping as follows: ![imagen](https://cloud.githubusercontent.com/assets/11376639/23512329/88611e78-ff60-11e6-86e5-783d7087e098.png) 5. Start ontop reasoner and perform the following query: select * where { ?person a :Person ; :hasId ?id ; :hasName ?name ; :hasSurname ?surname ; :hasBirth ?birth . } **Expected behavior:** Each result must be paired with their type: "1"^^xsd:int "skomlaebri"^^xsd:string "theBest"^^xsd:string "1989-03-18"^^date **Actual behavior:** The date appears without the type: ![imagen](https://cloud.githubusercontent.com/assets/11376639/23522679/2cfd904c-ff84-11e6-865a-58efc1c58611.png) ### Versions Ontop OBDA Protege Plugin 1.18.0 Protege 5.0.0
defect
ontopro does not include the type date in the query results do you want to ask a question are you looking for support we have also a mailing list have a look at our guidelines on how to submit a bug report description i m using ontopro to perform queries normally the result includes the datatype for example int or example string however when the result type is a date it does not appear because of this when i perform a materialization of triples the dates do not have a specified type which is causing inconsistencies when i use other reasoners on the ontology steps to reproduce create a test database for example a database with a unique table called person with the following colums id number name varchar surname varchar birth date add a person to the table create the ontology with a person class and hasbirth hasid hasname and hassurname data properties all the properties have person as domain the properties hasname and hassurname have xsd string as range the property hasid has xsd int as range the property hasbirth has xsd date as range create the mapping as follows start ontop reasoner and perform the following query select where person a person hasid id hasname name hassurname surname hasbirth birth expected behavior each result must be paired with their type xsd int skomlaebri xsd string thebest xsd string date actual behavior the date appears without the type versions ontop obda protege plugin protege
1
57,620
15,883,817,948
IssuesEvent
2021-04-09 17:56:50
snowplow/snowplow-javascript-tracker
https://api.github.com/repos/snowplow/snowplow-javascript-tracker
closed
Discover cause of "cuckoo events"
category:help_wanted priority:low status:need_triage type:defect
We have had a couple of clients who have reported valid Snowplow events generated on a different website (i.e. not one in their network) landing on their collector. Let's call these stray events from an unrelated third-party ["cuckoo events"](http://www.bbc.co.uk/nature/28038684). My original thinking was that there was some kind of conflict between perhaps two different trackers running on the site (e.g. one tracker is embedded in an ad unit). But from talking to these users, this doesn't seem likely. My new theory is around local storage. Conceivably the cuckoo's event gets written to local storage, then the browser switches to a new website and this new website is also running Snowplow, sees the event in local storage and sends it to the wrong collector. In theory this shouldn't happen - local storage is meant to be sandboxed to the domain... Cuckoo events are very rare, but frustrating for users when they happen.
1.0
Discover cause of "cuckoo events" - We have had a couple of clients who have reported valid Snowplow events generated on a different website (i.e. not one in their network) landing on their collector. Let's call these stray events from an unrelated third-party ["cuckoo events"](http://www.bbc.co.uk/nature/28038684). My original thinking was that there was some kind of conflict between perhaps two different trackers running on the site (e.g. one tracker is embedded in an ad unit). But from talking to these users, this doesn't seem likely. My new theory is around local storage. Conceivably the cuckoo's event gets written to local storage, then the browser switches to a new website and this new website is also running Snowplow, sees the event in local storage and sends it to the wrong collector. In theory this shouldn't happen - local storage is meant to be sandboxed to the domain... Cuckoo events are very rare, but frustrating for users when they happen.
defect
discover cause of cuckoo events we have had a couple of clients who have reported valid snowplow events generated on a different website i e not one in their network landing on their collector let s call these stray events from an unrelated third party my original thinking was that there was some kind of conflict between perhaps two different trackers running on the site e g one tracker is embedded in an ad unit but from talking to these users this doesn t seem likely my new theory is around local storage conceivably the cuckoo s event gets written to local storage then the browser switches to a new website and this new website is also running snowplow sees the event in local storage and sends it to the wrong collector in theory this shouldn t happen local storage is meant to be sandboxed to the domain cuckoo events are very rare but frustrating for users when they happen
1
54,825
13,941,146,253
IssuesEvent
2020-10-22 18:57:55
ba-st/Sagan
https://api.github.com/repos/ba-st/Sagan
opened
Tests don't drop tables and conflicts sometimes when different suites uses same tables
Type: Defect
Say one test uses 2 tables (X with a fk to Y). If you run a second test that uses Y, glorp will try to recreate it (drop it and create it again), but as the constrain of the fk in table X still exists in the db, the drop fails. One solution is that the tearDown of the tests explicitly drop the tables, so the repositories needs to have a protocol to do it.
1.0
Tests don't drop tables and conflicts sometimes when different suites uses same tables - Say one test uses 2 tables (X with a fk to Y). If you run a second test that uses Y, glorp will try to recreate it (drop it and create it again), but as the constrain of the fk in table X still exists in the db, the drop fails. One solution is that the tearDown of the tests explicitly drop the tables, so the repositories needs to have a protocol to do it.
defect
tests don t drop tables and conflicts sometimes when different suites uses same tables say one test uses tables x with a fk to y if you run a second test that uses y glorp will try to recreate it drop it and create it again but as the constrain of the fk in table x still exists in the db the drop fails one solution is that the teardown of the tests explicitly drop the tables so the repositories needs to have a protocol to do it
1
731,251
25,207,673,087
IssuesEvent
2022-11-13 21:43:46
YunoHost/issues
https://api.github.com/repos/YunoHost/issues
closed
NAT-PMP support
:birthday: feature :link: Network :deciduous_tree: mid/long term Priority: low
###### Original Redmine Issue: [37](https://dev.yunohost.org/issues/37) Author Name: **Anonymous** --- For those who don't have UPnP working, fall back to NAT-PMP (or vice versa). `libnatpmp` to the rescue.
1.0
NAT-PMP support - ###### Original Redmine Issue: [37](https://dev.yunohost.org/issues/37) Author Name: **Anonymous** --- For those who don't have UPnP working, fall back to NAT-PMP (or vice versa). `libnatpmp` to the rescue.
non_defect
nat pmp support original redmine issue author name anonymous for those who don t have upnp working fall back to nat pmp or vice versa libnatpmp to the rescue
0
80,528
3,563,552,243
IssuesEvent
2016-01-25 04:47:33
bcroden/QuizDeck-Server
https://api.github.com/repos/bcroden/QuizDeck-Server
opened
Create REST endpoint for user login
feature priority: high
Need to expose a REST endpoint which will accept a username and password. Needs to return a [JWT](https://jwt.io/) with a timeout. Future requests will include this JWT in the Bearer header.
1.0
Create REST endpoint for user login - Need to expose a REST endpoint which will accept a username and password. Needs to return a [JWT](https://jwt.io/) with a timeout. Future requests will include this JWT in the Bearer header.
non_defect
create rest endpoint for user login need to expose a rest endpoint which will accept a username and password needs to return a with a timeout future requests will include this jwt in the bearer header
0
16,433
2,895,001,375
IssuesEvent
2015-06-16 05:48:52
Mellanox/libvma
https://api.github.com/repos/Mellanox/libvma
closed
VMA ERROR when running on alias to VLAN interface
bug Priority-Medium Type-Defect
``` What steps will reproduce the problem? 1. bring up VLAN interface (e.g. eth0.10) with IP (e.g. 192.168.1.100) 2. bring up alias on previously created VLAN (e.g. eth0.10:2) with IP (e.g. 192.168.1.200) 3. run application with VMA (e.g. LD_PRELOAD=libvma.so iperf -u -c 192.168.1.1) > What is the expected output? VMA INFO : --------------------------------------------------------------------------- VMA INFO : VMA_VERSION: 6.7.2-0 Release built on 2014-08-21-15:28:25 VMA INFO : Cmd Line: iperf -u -c 192.168.1.1 VMA INFO : OFED Version: MLNX_OFED_LINUX-2.3-1.0.1: VMA INFO : Log Level 3 [VMA_TRACELEVEL] VMA INFO : --------------------------------------------------------------------------- ------------------------------------------------------------ Client connecting to 192.168.1.1, UDP port 5001 Sending 1470 byte datagrams UDP buffer size: 4.00 MByte (default) > What do you see instead? VMA INFO : --------------------------------------------------------------------------- VMA INFO : VMA_VERSION: 6.7.2-0 Release built on 2014-08-21-15:28:25 VMA INFO : Cmd Line: iperf -u -c 192.168.1.1 VMA INFO : OFED Version: MLNX_OFED_LINUX-2.3-1.0.1: VMA INFO : Log Level 3 [VMA_TRACELEVEL] VMA INFO : --------------------------------------------------------------------------- VMA ERROR : utils:229:priv_read_file() ERROR while opening file /sys/class/net/eth0.10/device/resource ------------------------------------------------------------ Client connecting to 192.168.1.1, UDP port 5001 Sending 1470 byte datagrams UDP buffer size: 4.00 MByte (default) > What version of the product are you using? On what operating system? MLNX_OFED_LINUX-2.3-1.0.1-ubuntu12.04-x86_64 Ubuntu 12.04 amd64 Kernel 3.13.0-36-generic > Please provide any additional information below. If bind software to aliased address it crashed: VMA ERROR : utils:229:priv_read_file() ERROR while opening file /sys/class/net/eth0.10/device/resource VMA PANIC : ring[0x7f8c68040630]:170:create_resources() ibv_create_comp_channel for tx failed. m_p_tx_comp_event_channel = (nil) (errno=9 Bad file descriptor) ``` Original issue reported on code.google.com by `a...@expcapital.com` on 8 Oct 2014 at 6:54
1.0
VMA ERROR when running on alias to VLAN interface - ``` What steps will reproduce the problem? 1. bring up VLAN interface (e.g. eth0.10) with IP (e.g. 192.168.1.100) 2. bring up alias on previously created VLAN (e.g. eth0.10:2) with IP (e.g. 192.168.1.200) 3. run application with VMA (e.g. LD_PRELOAD=libvma.so iperf -u -c 192.168.1.1) > What is the expected output? VMA INFO : --------------------------------------------------------------------------- VMA INFO : VMA_VERSION: 6.7.2-0 Release built on 2014-08-21-15:28:25 VMA INFO : Cmd Line: iperf -u -c 192.168.1.1 VMA INFO : OFED Version: MLNX_OFED_LINUX-2.3-1.0.1: VMA INFO : Log Level 3 [VMA_TRACELEVEL] VMA INFO : --------------------------------------------------------------------------- ------------------------------------------------------------ Client connecting to 192.168.1.1, UDP port 5001 Sending 1470 byte datagrams UDP buffer size: 4.00 MByte (default) > What do you see instead? VMA INFO : --------------------------------------------------------------------------- VMA INFO : VMA_VERSION: 6.7.2-0 Release built on 2014-08-21-15:28:25 VMA INFO : Cmd Line: iperf -u -c 192.168.1.1 VMA INFO : OFED Version: MLNX_OFED_LINUX-2.3-1.0.1: VMA INFO : Log Level 3 [VMA_TRACELEVEL] VMA INFO : --------------------------------------------------------------------------- VMA ERROR : utils:229:priv_read_file() ERROR while opening file /sys/class/net/eth0.10/device/resource ------------------------------------------------------------ Client connecting to 192.168.1.1, UDP port 5001 Sending 1470 byte datagrams UDP buffer size: 4.00 MByte (default) > What version of the product are you using? On what operating system? MLNX_OFED_LINUX-2.3-1.0.1-ubuntu12.04-x86_64 Ubuntu 12.04 amd64 Kernel 3.13.0-36-generic > Please provide any additional information below. If bind software to aliased address it crashed: VMA ERROR : utils:229:priv_read_file() ERROR while opening file /sys/class/net/eth0.10/device/resource VMA PANIC : ring[0x7f8c68040630]:170:create_resources() ibv_create_comp_channel for tx failed. m_p_tx_comp_event_channel = (nil) (errno=9 Bad file descriptor) ``` Original issue reported on code.google.com by `a...@expcapital.com` on 8 Oct 2014 at 6:54
defect
vma error when running on alias to vlan interface what steps will reproduce the problem bring up vlan interface e g with ip e g bring up alias on previously created vlan e g with ip e g run application with vma e g ld preload libvma so iperf u c what is the expected output vma info vma info vma version release built on vma info cmd line iperf u c vma info ofed version mlnx ofed linux vma info log level vma info client connecting to udp port sending byte datagrams udp buffer size mbyte default what do you see instead vma info vma info vma version release built on vma info cmd line iperf u c vma info ofed version mlnx ofed linux vma info log level vma info vma error utils priv read file error while opening file sys class net device resource client connecting to udp port sending byte datagrams udp buffer size mbyte default what version of the product are you using on what operating system mlnx ofed linux ubuntu kernel generic please provide any additional information below if bind software to aliased address it crashed vma error utils priv read file error while opening file sys class net device resource vma panic ring create resources ibv create comp channel for tx failed m p tx comp event channel nil errno bad file descriptor original issue reported on code google com by a expcapital com on oct at
1
211,254
7,199,648,419
IssuesEvent
2018-02-05 16:32:21
ACME-Climate/ParallelIO
https://api.github.com/repos/ACME-Climate/ParallelIO
closed
Merging acme_develop to master
High Priority
This issue is to keep track of merging acme_develop to master. The acme_develop branch has several fixes, required to run E3SM with PIO2, and enhancements.
1.0
Merging acme_develop to master - This issue is to keep track of merging acme_develop to master. The acme_develop branch has several fixes, required to run E3SM with PIO2, and enhancements.
non_defect
merging acme develop to master this issue is to keep track of merging acme develop to master the acme develop branch has several fixes required to run with and enhancements
0
358,722
10,631,723,964
IssuesEvent
2019-10-15 08:57:10
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
Service Changed indication not being sent in some cases
area: Bluetooth bug priority: medium
**Describe the bug** Service Changed data is not being persisted so in some cases a subscribed peer will not receive an indication if the GATT database changes due to a device firmware update. **To Reproduce** 1. bonded device is disconnected 2. reboot with a new firmware containing GATT database changes 3. stored database hash does not match calculated database hash 4. new database hash is stored 5. reboot 6. stored database hash matches calculated database hash 7. bonded device reconnects and does not receive any SC Indication This only affects older devices that do not support robust caching feature, or when CONFIG_BT_GATT_CACHING=n. **Expected behavior** Reconnected peer should always receive an SC indication if the GATT database has changed since its last connection. **Describe the solution you'd like** - Store SC data in a new structure similar to existing CF data: ``` struct gatt_sc_cfg { u8_t id; bt_addr_le_t peer; u8_t data[4]; }; #define SC_CFG_MAX (CONFIG_BT_MAX_PAIRED + CONFIG_BT_MAX_CONN) static struct gatt_sc_cfg sc_cfg[SC_CFG_MAX] = {}; ``` - Create a new "bt/sc/..." setting to store that SC data (similar to "bt/cf/..." setting) - Persist SC data when changes occur (db hash changed after reboot, reg/unreg gatt service) **Describe alternatives you've considered** We could merge SC and CF data in a single struct / setting, but setting format would then depend on CONFIG_BT_GATT_CACHING parameter which could make things tricky.
1.0
Service Changed indication not being sent in some cases - **Describe the bug** Service Changed data is not being persisted so in some cases a subscribed peer will not receive an indication if the GATT database changes due to a device firmware update. **To Reproduce** 1. bonded device is disconnected 2. reboot with a new firmware containing GATT database changes 3. stored database hash does not match calculated database hash 4. new database hash is stored 5. reboot 6. stored database hash matches calculated database hash 7. bonded device reconnects and does not receive any SC Indication This only affects older devices that do not support robust caching feature, or when CONFIG_BT_GATT_CACHING=n. **Expected behavior** Reconnected peer should always receive an SC indication if the GATT database has changed since its last connection. **Describe the solution you'd like** - Store SC data in a new structure similar to existing CF data: ``` struct gatt_sc_cfg { u8_t id; bt_addr_le_t peer; u8_t data[4]; }; #define SC_CFG_MAX (CONFIG_BT_MAX_PAIRED + CONFIG_BT_MAX_CONN) static struct gatt_sc_cfg sc_cfg[SC_CFG_MAX] = {}; ``` - Create a new "bt/sc/..." setting to store that SC data (similar to "bt/cf/..." setting) - Persist SC data when changes occur (db hash changed after reboot, reg/unreg gatt service) **Describe alternatives you've considered** We could merge SC and CF data in a single struct / setting, but setting format would then depend on CONFIG_BT_GATT_CACHING parameter which could make things tricky.
non_defect
service changed indication not being sent in some cases describe the bug service changed data is not being persisted so in some cases a subscribed peer will not receive an indication if the gatt database changes due to a device firmware update to reproduce bonded device is disconnected reboot with a new firmware containing gatt database changes stored database hash does not match calculated database hash new database hash is stored reboot stored database hash matches calculated database hash bonded device reconnects and does not receive any sc indication this only affects older devices that do not support robust caching feature or when config bt gatt caching n expected behavior reconnected peer should always receive an sc indication if the gatt database has changed since its last connection describe the solution you d like store sc data in a new structure similar to existing cf data struct gatt sc cfg t id bt addr le t peer t data define sc cfg max config bt max paired config bt max conn static struct gatt sc cfg sc cfg create a new bt sc setting to store that sc data similar to bt cf setting persist sc data when changes occur db hash changed after reboot reg unreg gatt service describe alternatives you ve considered we could merge sc and cf data in a single struct setting but setting format would then depend on config bt gatt caching parameter which could make things tricky
0
29,149
5,556,515,688
IssuesEvent
2017-03-24 09:24:21
hazelcast/hazelcast
https://api.github.com/repos/hazelcast/hazelcast
closed
Incorrect entry cost values in management center for HD maps
Team: Core Team: Integration Type: Defect
![image](https://cloud.githubusercontent.com/assets/2887123/23949990/22575228-0992-11e7-973a-de0127196c15.png) No problem in main screen but Map Memory Table shows wrong values.
1.0
Incorrect entry cost values in management center for HD maps - ![image](https://cloud.githubusercontent.com/assets/2887123/23949990/22575228-0992-11e7-973a-de0127196c15.png) No problem in main screen but Map Memory Table shows wrong values.
defect
incorrect entry cost values in management center for hd maps no problem in main screen but map memory table shows wrong values
1
47,388
13,056,159,286
IssuesEvent
2020-07-30 03:50:26
icecube-trac/tix2
https://api.github.com/repos/icecube-trac/tix2
closed
icerec/trunk dox on software.icecube.wisc.edu are "403 Forbidden" (Trac #474)
Migrated from Trac combo reconstruction defect
On http://software.icecube.wisc.edu/ there is a link to IceRec "nightly builds": http://software.icecube.wisc.edu/icerec_trunk/ which results in "403 - Forbidden". I am assigning this now to dladieu, but I could equally well imagine that this is actually the job of the icerec metaproject coordinator, which would be Meike de With these days. Migrated from https://code.icecube.wisc.edu/ticket/474 ```json { "status": "closed", "changetime": "2014-10-03T18:27:09", "description": "On http://software.icecube.wisc.edu/ there is a link to IceRec \"nightly builds\": http://software.icecube.wisc.edu/icerec_trunk/ which results in \"403 - Forbidden\".\n\nI am assigning this now to dladieu, but I could equally well imagine that this is actually the job of the icerec metaproject coordinator, which would be Meike de With these days.", "reporter": "boersma", "cc": "meike.dewith", "resolution": "fixed", "_ts": "1412360829211490", "component": "combo reconstruction", "summary": "icerec/trunk dox on software.icecube.wisc.edu are \"403 Forbidden\"", "priority": "minor", "keywords": "icerec documentation doxygen", "time": "2013-11-26T10:42:01", "milestone": "", "owner": "nega", "type": "defect" } ```
1.0
icerec/trunk dox on software.icecube.wisc.edu are "403 Forbidden" (Trac #474) - On http://software.icecube.wisc.edu/ there is a link to IceRec "nightly builds": http://software.icecube.wisc.edu/icerec_trunk/ which results in "403 - Forbidden". I am assigning this now to dladieu, but I could equally well imagine that this is actually the job of the icerec metaproject coordinator, which would be Meike de With these days. Migrated from https://code.icecube.wisc.edu/ticket/474 ```json { "status": "closed", "changetime": "2014-10-03T18:27:09", "description": "On http://software.icecube.wisc.edu/ there is a link to IceRec \"nightly builds\": http://software.icecube.wisc.edu/icerec_trunk/ which results in \"403 - Forbidden\".\n\nI am assigning this now to dladieu, but I could equally well imagine that this is actually the job of the icerec metaproject coordinator, which would be Meike de With these days.", "reporter": "boersma", "cc": "meike.dewith", "resolution": "fixed", "_ts": "1412360829211490", "component": "combo reconstruction", "summary": "icerec/trunk dox on software.icecube.wisc.edu are \"403 Forbidden\"", "priority": "minor", "keywords": "icerec documentation doxygen", "time": "2013-11-26T10:42:01", "milestone": "", "owner": "nega", "type": "defect" } ```
defect
icerec trunk dox on software icecube wisc edu are forbidden trac on there is a link to icerec nightly builds which results in forbidden i am assigning this now to dladieu but i could equally well imagine that this is actually the job of the icerec metaproject coordinator which would be meike de with these days migrated from json status closed changetime description on there is a link to icerec nightly builds which results in forbidden n ni am assigning this now to dladieu but i could equally well imagine that this is actually the job of the icerec metaproject coordinator which would be meike de with these days reporter boersma cc meike dewith resolution fixed ts component combo reconstruction summary icerec trunk dox on software icecube wisc edu are forbidden priority minor keywords icerec documentation doxygen time milestone owner nega type defect
1
327,583
9,977,887,731
IssuesEvent
2019-07-09 18:26:31
VandyHacks/vaken
https://api.github.com/repos/VandyHacks/vaken
closed
Add SRI integrity attributes to frontend
Priority: Low Topic: Security Type: Enhancement
https://www.npmjs.com/package/webpack-subresource-integrity Why this matters: https://www.troyhunt.com/the-javascript-supply-chain-paradox-sri-csp-and-trust-in-third-party-libraries/ Why this matters for us: if our goal is wide adoption, any pro-security moves we make have a higher benefit/cost ratio than we're used to. We should set good standards.
1.0
Add SRI integrity attributes to frontend - https://www.npmjs.com/package/webpack-subresource-integrity Why this matters: https://www.troyhunt.com/the-javascript-supply-chain-paradox-sri-csp-and-trust-in-third-party-libraries/ Why this matters for us: if our goal is wide adoption, any pro-security moves we make have a higher benefit/cost ratio than we're used to. We should set good standards.
non_defect
add sri integrity attributes to frontend why this matters why this matters for us if our goal is wide adoption any pro security moves we make have a higher benefit cost ratio than we re used to we should set good standards
0
261,370
22,741,183,123
IssuesEvent
2022-07-07 04:04:14
ntop/ntopng
https://api.github.com/repos/ntop/ntopng
closed
Category filter shows original name of 'custom category' in 'app' tab under Setting>Applications and Categories
bug Ready to Test
<!-- Security Issues: - Please disclose security related issues privately to https://www.ntop.org/support/need-help-2/contact-us/ Pre-Submit Checklist: (check applicable sources for existing issues) - [Github Issues](https://github.com/ntop/ntopng/issues?q=is%3Aissue+label%3Abug+) - [FAQs](https://www.ntop.org/support/documentation/faq/) --> **Environment**: * OS name: RHEL * OS version: 7.9 * Architecture: x86_64 * ntopng version/revision: 5.3.220705 **What happened**: In the 'app' tab under Setting>Applications and Categories, the 'Category' filter still shows the original name of the user custom category. ![categoryFilter](https://user-images.githubusercontent.com/50309519/177259532-6674082d-f9ed-45b3-b456-1de5fc943701.PNG) **What did you expect to happen?** I expect the 'Category' filter to show the new name 'i.e. corp cloud' instead of the original name. **How did you reproduce it?** Anytime and restart of ntopng doesn't help. **Debug Information**: <!-- Paste debug information below: - Copy the service log from "systemctl status ntopng" or "journalctl -u ntopng". - Grab a screenshot from the GUI demonstrating the issue. - Provide a PCAP when this is required to reproduce the issue. ⚠ Please remove sensitive/private information from logs and pictures. -->
1.0
Category filter shows original name of 'custom category' in 'app' tab under Setting>Applications and Categories - <!-- Security Issues: - Please disclose security related issues privately to https://www.ntop.org/support/need-help-2/contact-us/ Pre-Submit Checklist: (check applicable sources for existing issues) - [Github Issues](https://github.com/ntop/ntopng/issues?q=is%3Aissue+label%3Abug+) - [FAQs](https://www.ntop.org/support/documentation/faq/) --> **Environment**: * OS name: RHEL * OS version: 7.9 * Architecture: x86_64 * ntopng version/revision: 5.3.220705 **What happened**: In the 'app' tab under Setting>Applications and Categories, the 'Category' filter still shows the original name of the user custom category. ![categoryFilter](https://user-images.githubusercontent.com/50309519/177259532-6674082d-f9ed-45b3-b456-1de5fc943701.PNG) **What did you expect to happen?** I expect the 'Category' filter to show the new name 'i.e. corp cloud' instead of the original name. **How did you reproduce it?** Anytime and restart of ntopng doesn't help. **Debug Information**: <!-- Paste debug information below: - Copy the service log from "systemctl status ntopng" or "journalctl -u ntopng". - Grab a screenshot from the GUI demonstrating the issue. - Provide a PCAP when this is required to reproduce the issue. ⚠ Please remove sensitive/private information from logs and pictures. -->
non_defect
category filter shows original name of custom category in app tab under setting applications and categories security issues please disclose security related issues privately to pre submit checklist check applicable sources for existing issues environment os name rhel os version architecture ntopng version revision what happened in the app tab under setting applications and categories the category filter still shows the original name of the user custom category what did you expect to happen i expect the category filter to show the new name i e corp cloud instead of the original name how did you reproduce it anytime and restart of ntopng doesn t help debug information paste debug information below copy the service log from systemctl status ntopng or journalctl u ntopng grab a screenshot from the gui demonstrating the issue provide a pcap when this is required to reproduce the issue ⚠ please remove sensitive private information from logs and pictures
0
29,573
5,724,019,066
IssuesEvent
2017-04-20 13:41:26
bancika/diy-layout-creator
https://api.github.com/repos/bancika/diy-layout-creator
closed
Trace widths and pad sizes rounded up/down when exported
auto-migrated Priority-Medium Type-Defect
``` What steps will reproduce the problem? 1. Add a pad with size = 0.08 inches and hole 0.02 inches. 2. Export the trace mask (PDF reveals the problem better). What is the expected output? What do you see instead? I would expect my pads to be 0.08" with 0.02" holes, but they are 0.085" with 0.025" holes. If I set pads to 0.075/0.015 or 0.085/0.025 I get the right result but there appears to be some weird rounding going on because I can not hit 0.080/0.020 and other precise values. It seems to only output tens plus 0.05. If I use something like 0.078/0.018 it is rounded down to 0.075/0.015. If I use 0.096/0.036 I get 0.095/0.035. Trace widths also get rounded, but seem to allow for increments of 0.05 which is at least a little better (but really not very good if you are trying to create accurate precise boards). What version of the product are you using? On what operating system? 3.23.0 Windows 7 Professional x64 Please provide any additional information below. This happens on both of my two PCs which are running the same version of DIYLC. ``` Original issue reported on code.google.com by `gordtran...@gmail.com` on 14 Jan 2013 at 7:48 Attachments: - [log-Mon Jan 14 13.46.39 EST 2013.log](https://storage.googleapis.com/google-code-attachments/diy-layout-creator/issue-199/comment-0/log-Mon Jan 14 13.46.39 EST 2013.log)
1.0
Trace widths and pad sizes rounded up/down when exported - ``` What steps will reproduce the problem? 1. Add a pad with size = 0.08 inches and hole 0.02 inches. 2. Export the trace mask (PDF reveals the problem better). What is the expected output? What do you see instead? I would expect my pads to be 0.08" with 0.02" holes, but they are 0.085" with 0.025" holes. If I set pads to 0.075/0.015 or 0.085/0.025 I get the right result but there appears to be some weird rounding going on because I can not hit 0.080/0.020 and other precise values. It seems to only output tens plus 0.05. If I use something like 0.078/0.018 it is rounded down to 0.075/0.015. If I use 0.096/0.036 I get 0.095/0.035. Trace widths also get rounded, but seem to allow for increments of 0.05 which is at least a little better (but really not very good if you are trying to create accurate precise boards). What version of the product are you using? On what operating system? 3.23.0 Windows 7 Professional x64 Please provide any additional information below. This happens on both of my two PCs which are running the same version of DIYLC. ``` Original issue reported on code.google.com by `gordtran...@gmail.com` on 14 Jan 2013 at 7:48 Attachments: - [log-Mon Jan 14 13.46.39 EST 2013.log](https://storage.googleapis.com/google-code-attachments/diy-layout-creator/issue-199/comment-0/log-Mon Jan 14 13.46.39 EST 2013.log)
defect
trace widths and pad sizes rounded up down when exported what steps will reproduce the problem add a pad with size inches and hole inches export the trace mask pdf reveals the problem better what is the expected output what do you see instead i would expect my pads to be with holes but they are with holes if i set pads to or i get the right result but there appears to be some weird rounding going on because i can not hit and other precise values it seems to only output tens plus if i use something like it is rounded down to if i use i get trace widths also get rounded but seem to allow for increments of which is at least a little better but really not very good if you are trying to create accurate precise boards what version of the product are you using on what operating system windows professional please provide any additional information below this happens on both of my two pcs which are running the same version of diylc original issue reported on code google com by gordtran gmail com on jan at attachments jan est log
1
49,362
13,186,638,878
IssuesEvent
2020-08-13 00:50:04
icecube-trac/tix3
https://api.github.com/repos/icecube-trac/tix3
opened
[coinc-twc] example scrip does not work + missing documentation (Trac #1234)
Incomplete Migration Migrated from Trac combo reconstruction defect
<details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/1234">https://code.icecube.wisc.edu/ticket/1234</a>, reported by tpalczewski and owned by sderidder</em></summary> <p> ```json { "status": "closed", "changetime": "2019-02-13T14:11:57", "description": "1) example testCoincTWC.py does *not* work. \n\nLoading libflat-ntuple....................................FATAL (I3Tray): Failed to load library (<type 'exceptions.RuntimeError'>): dlopen() dynamic loading error: /home/tpalczewski/code-sprint/IceRec-V5/build/lib/libflat-ntuple.so: cannot open shared object file: No such file or directory (I3Tray.py:36 in load)\nTraceback (most recent call last):\n File \"testCoincTWC.py\", line 15, in <module>\n load(\"libflat-ntuple\")\n File \"/home/tpalczewski/code-sprint/IceRec-V5/build/lib/I3Tray.py\", line 36, in load\n % (sys.exc_info()[0], sys.exc_info()[1]), \"I3Tray\")\n File \"/home/tpalczewski/code-sprint/IceRec-V5/build/lib/icecube/icetray/i3logging.py\", line 150, in log_fatal\n raise RuntimeError(message + \" (in \" + tb[2] + \")\")\nRuntimeError: Failed to load library (<type 'exceptions.RuntimeError'>): dlopen() dynamic loading error: /home/tpalczewski/code-sprint/IceRec-V5/build/lib/libflat-ntuple.so: cannot open shared object file: No such file or directory (in load)\n\nscript tries to use the deprecated libflat-ntuple library. \n\nIn addition tests should be placed in the resources/test directory. \n\n2) BTW the resources/scripts directory is empty. \n\n3) Please convert RELEASE_NOTES to .rst format. \n", "reporter": "tpalczewski", "cc": "Sam.DeRidder@UGent.be", "resolution": "fixed", "_ts": "1550067117911749", "component": "combo reconstruction", "summary": "[coinc-twc] example scrip does not work + missing documentation", "priority": "blocker", "keywords": "", "time": "2015-08-20T06:51:30", "milestone": "", "owner": "sderidder", "type": "defect" } ``` </p> </details>
1.0
[coinc-twc] example scrip does not work + missing documentation (Trac #1234) - <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/1234">https://code.icecube.wisc.edu/ticket/1234</a>, reported by tpalczewski and owned by sderidder</em></summary> <p> ```json { "status": "closed", "changetime": "2019-02-13T14:11:57", "description": "1) example testCoincTWC.py does *not* work. \n\nLoading libflat-ntuple....................................FATAL (I3Tray): Failed to load library (<type 'exceptions.RuntimeError'>): dlopen() dynamic loading error: /home/tpalczewski/code-sprint/IceRec-V5/build/lib/libflat-ntuple.so: cannot open shared object file: No such file or directory (I3Tray.py:36 in load)\nTraceback (most recent call last):\n File \"testCoincTWC.py\", line 15, in <module>\n load(\"libflat-ntuple\")\n File \"/home/tpalczewski/code-sprint/IceRec-V5/build/lib/I3Tray.py\", line 36, in load\n % (sys.exc_info()[0], sys.exc_info()[1]), \"I3Tray\")\n File \"/home/tpalczewski/code-sprint/IceRec-V5/build/lib/icecube/icetray/i3logging.py\", line 150, in log_fatal\n raise RuntimeError(message + \" (in \" + tb[2] + \")\")\nRuntimeError: Failed to load library (<type 'exceptions.RuntimeError'>): dlopen() dynamic loading error: /home/tpalczewski/code-sprint/IceRec-V5/build/lib/libflat-ntuple.so: cannot open shared object file: No such file or directory (in load)\n\nscript tries to use the deprecated libflat-ntuple library. \n\nIn addition tests should be placed in the resources/test directory. \n\n2) BTW the resources/scripts directory is empty. \n\n3) Please convert RELEASE_NOTES to .rst format. \n", "reporter": "tpalczewski", "cc": "Sam.DeRidder@UGent.be", "resolution": "fixed", "_ts": "1550067117911749", "component": "combo reconstruction", "summary": "[coinc-twc] example scrip does not work + missing documentation", "priority": "blocker", "keywords": "", "time": "2015-08-20T06:51:30", "milestone": "", "owner": "sderidder", "type": "defect" } ``` </p> </details>
defect
example scrip does not work missing documentation trac migrated from json status closed changetime description example testcoinctwc py does not work n nloading libflat ntuple fatal failed to load library dlopen dynamic loading error home tpalczewski code sprint icerec build lib libflat ntuple so cannot open shared object file no such file or directory py in load ntraceback most recent call last n file testcoinctwc py line in n load libflat ntuple n file home tpalczewski code sprint icerec build lib py line in load n sys exc info sys exc info n file home tpalczewski code sprint icerec build lib icecube icetray py line in log fatal n raise runtimeerror message in tb nruntimeerror failed to load library dlopen dynamic loading error home tpalczewski code sprint icerec build lib libflat ntuple so cannot open shared object file no such file or directory in load n nscript tries to use the deprecated libflat ntuple library n nin addition tests should be placed in the resources test directory n btw the resources scripts directory is empty n please convert release notes to rst format n reporter tpalczewski cc sam deridder ugent be resolution fixed ts component combo reconstruction summary example scrip does not work missing documentation priority blocker keywords time milestone owner sderidder type defect
1
501,831
14,534,805,157
IssuesEvent
2020-12-15 03:57:40
UCSBCarpentry/R-markdown
https://api.github.com/repos/UCSBCarpentry/R-markdown
closed
LESSON-WIDE: Add "checkpoints" where learners should knit their document (content/formatting)
priority
to 1) see the syntax they added & 2) check for errors (content)
1.0
LESSON-WIDE: Add "checkpoints" where learners should knit their document (content/formatting) - to 1) see the syntax they added & 2) check for errors (content)
non_defect
lesson wide add checkpoints where learners should knit their document content formatting to see the syntax they added check for errors content
0
11,448
2,651,558,015
IssuesEvent
2015-03-16 12:27:56
douglasdrumond/cloaked-computing-machine
https://api.github.com/repos/douglasdrumond/cloaked-computing-machine
opened
[CLOSED] Garbled characters in filenames with diacritics
auto-migrated Priority-Medium Type-Defect
<a href="https://github.com/GoogleCodeExporter"><img src="https://avatars.githubusercontent.com/u/9614759?v=3" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [GoogleCodeExporter](https://github.com/GoogleCodeExporter)** _Monday Mar 16, 2015 at 09:15 GMT_ _Originally opened as https://github.com/douglasdrumond/macvim/issues/23_ ---- ``` Found this in my mailbox. Posting this here so I don't forget it. ------- Hello! I have got a file called "rejstřík.txt" - not sure if the diacritics gets through Google Groups, that is "rejst" + latin small letter r with caron (0x159) + latin small letter i with acute (0xed) + "k.txt". When I save this file in MacVim, I get the message that file "rejstrˇk.txt" has been written - the caron from the "r" gets shifted a character to the right and the "i" with acute is missing altogether. Otherwise I have no trouble with national characters at all. Another interesting thing just popped up: When I create a new document with accented characters in name in MacVim (:new Příšera.txt), the save message stays correct, but the name as shown in Finder is different (wrong). There is definitely a bug somewhere, but I do not know what else to report. I can supply the character codes or screenshots or whatever is needed. ------- I did some more googling on this. I believe the problem is that os x' file system always stores filenames as decomposed utf8 ( http:// developer.apple.com/qa/qa2001/qa1235.html , http://mail.python.org/ pipermail/python-list/2003-February/189641.html , found via http:// boodebr.org/main/python/all-about-python-and-unicode ), which surprises vim. ------- There is an interesting debate around the same issue on the Mac FUSE project page: http://code.google.com/p/macfuse/issues/detail?id=139 (this is not really related because we can assume we're dealing with HFS+ most of the time. macfuse can't do that.) ``` Original issue reported on code.google.com by `nicotha...@gmail.com` on 12 Oct 2007 at 8:21
1.0
[CLOSED] Garbled characters in filenames with diacritics - <a href="https://github.com/GoogleCodeExporter"><img src="https://avatars.githubusercontent.com/u/9614759?v=3" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [GoogleCodeExporter](https://github.com/GoogleCodeExporter)** _Monday Mar 16, 2015 at 09:15 GMT_ _Originally opened as https://github.com/douglasdrumond/macvim/issues/23_ ---- ``` Found this in my mailbox. Posting this here so I don't forget it. ------- Hello! I have got a file called "rejstřík.txt" - not sure if the diacritics gets through Google Groups, that is "rejst" + latin small letter r with caron (0x159) + latin small letter i with acute (0xed) + "k.txt". When I save this file in MacVim, I get the message that file "rejstrˇk.txt" has been written - the caron from the "r" gets shifted a character to the right and the "i" with acute is missing altogether. Otherwise I have no trouble with national characters at all. Another interesting thing just popped up: When I create a new document with accented characters in name in MacVim (:new Příšera.txt), the save message stays correct, but the name as shown in Finder is different (wrong). There is definitely a bug somewhere, but I do not know what else to report. I can supply the character codes or screenshots or whatever is needed. ------- I did some more googling on this. I believe the problem is that os x' file system always stores filenames as decomposed utf8 ( http:// developer.apple.com/qa/qa2001/qa1235.html , http://mail.python.org/ pipermail/python-list/2003-February/189641.html , found via http:// boodebr.org/main/python/all-about-python-and-unicode ), which surprises vim. ------- There is an interesting debate around the same issue on the Mac FUSE project page: http://code.google.com/p/macfuse/issues/detail?id=139 (this is not really related because we can assume we're dealing with HFS+ most of the time. macfuse can't do that.) ``` Original issue reported on code.google.com by `nicotha...@gmail.com` on 12 Oct 2007 at 8:21
defect
garbled characters in filenames with diacritics issue by monday mar at gmt originally opened as found this in my mailbox posting this here so i don t forget it hello i have got a file called rejstřík txt not sure if the diacritics gets through google groups that is rejst latin small letter r with caron latin small letter i with acute k txt when i save this file in macvim i get the message that file rejstrˇk txt has been written the caron from the r gets shifted a character to the right and the i with acute is missing altogether otherwise i have no trouble with national characters at all another interesting thing just popped up when i create a new document with accented characters in name in macvim new příšera txt the save message stays correct but the name as shown in finder is different wrong there is definitely a bug somewhere but i do not know what else to report i can supply the character codes or screenshots or whatever is needed i did some more googling on this i believe the problem is that os x file system always stores filenames as decomposed http developer apple com qa html pipermail python list february html found via http boodebr org main python all about python and unicode which surprises vim there is an interesting debate around the same issue on the mac fuse project page this is not really related because we can assume we re dealing with hfs most of the time macfuse can t do that original issue reported on code google com by nicotha gmail com on oct at
1
729,909
25,150,436,592
IssuesEvent
2022-11-10 09:36:28
coverlet-coverage/coverlet
https://api.github.com/repos/coverlet-coverage/coverlet
closed
New parameter ExcludeAssembliesWithoutSources to control automatic assembly exclusion
feature-request Priority:1
## Problem Coverlet automatically excludes third-party assemblies from the coverage analysis, since they are usually not interesting to the user. The heuristic for determining if an assembly is a third-party dependency is if any of its source documents does not have a corresponding source file. (Ref: https://github.com/coverlet-coverage/coverlet/blob/3ae19761876f2ac809c227ca3563495e28993b59/src/coverlet.core/Helpers/InstrumentationHelper.cs#L125-L129) C# source generators and some F# constructs add source documents to firsrt-party assemblies, causing them to be excluded by this heuristic, and compiler bugs may also trigger this. See e.g. #1084 #1145 #1100 #1297 The C# source generators are handled by identifying them using a best practice that the document names should end in ".g.cs", and similar logic can be added for the other issues. But the source generator naming is but a best practice and not all projects will follow it, and new compiler issues will likely turn up in the future, so this heuristic will continue to cause issues. ## Suggested solution Add a new parameter `ExcludeAssembliesWithoutSources` with the values `MissingAny`, `MissingAll` and `None`. `MissingAny` is the current behaviour, but `MissingAll` would be the new default behaviour to avoid these and future issues with generators. `None` would be a new setting to never filter on source files, for those rare cases where it may not make sense. Explicit include/exclude settings would override any filtering from this parameter. Changing the default to include an assembly in the coverage if at least one source document exist may cause some third-party documents to be included, if the same file name exists in the project being analysed with coverlet (pointed out by @daveMueller). Users affected by this can then either change the setting to `MissingAny` to revert to the old behaviour, or explicitly exclude those assemblies. Coverlet should still have a heuristic to ignore generated source files according to conventions, but now to avoid logging those cases. (Edit: change parameter name in feature description to `ExcludeAssembliesWithoutSources`)
1.0
New parameter ExcludeAssembliesWithoutSources to control automatic assembly exclusion - ## Problem Coverlet automatically excludes third-party assemblies from the coverage analysis, since they are usually not interesting to the user. The heuristic for determining if an assembly is a third-party dependency is if any of its source documents does not have a corresponding source file. (Ref: https://github.com/coverlet-coverage/coverlet/blob/3ae19761876f2ac809c227ca3563495e28993b59/src/coverlet.core/Helpers/InstrumentationHelper.cs#L125-L129) C# source generators and some F# constructs add source documents to firsrt-party assemblies, causing them to be excluded by this heuristic, and compiler bugs may also trigger this. See e.g. #1084 #1145 #1100 #1297 The C# source generators are handled by identifying them using a best practice that the document names should end in ".g.cs", and similar logic can be added for the other issues. But the source generator naming is but a best practice and not all projects will follow it, and new compiler issues will likely turn up in the future, so this heuristic will continue to cause issues. ## Suggested solution Add a new parameter `ExcludeAssembliesWithoutSources` with the values `MissingAny`, `MissingAll` and `None`. `MissingAny` is the current behaviour, but `MissingAll` would be the new default behaviour to avoid these and future issues with generators. `None` would be a new setting to never filter on source files, for those rare cases where it may not make sense. Explicit include/exclude settings would override any filtering from this parameter. Changing the default to include an assembly in the coverage if at least one source document exist may cause some third-party documents to be included, if the same file name exists in the project being analysed with coverlet (pointed out by @daveMueller). Users affected by this can then either change the setting to `MissingAny` to revert to the old behaviour, or explicitly exclude those assemblies. Coverlet should still have a heuristic to ignore generated source files according to conventions, but now to avoid logging those cases. (Edit: change parameter name in feature description to `ExcludeAssembliesWithoutSources`)
non_defect
new parameter excludeassemblieswithoutsources to control automatic assembly exclusion problem coverlet automatically excludes third party assemblies from the coverage analysis since they are usually not interesting to the user the heuristic for determining if an assembly is a third party dependency is if any of its source documents does not have a corresponding source file ref c source generators and some f constructs add source documents to firsrt party assemblies causing them to be excluded by this heuristic and compiler bugs may also trigger this see e g the c source generators are handled by identifying them using a best practice that the document names should end in g cs and similar logic can be added for the other issues but the source generator naming is but a best practice and not all projects will follow it and new compiler issues will likely turn up in the future so this heuristic will continue to cause issues suggested solution add a new parameter excludeassemblieswithoutsources with the values missingany missingall and none missingany is the current behaviour but missingall would be the new default behaviour to avoid these and future issues with generators none would be a new setting to never filter on source files for those rare cases where it may not make sense explicit include exclude settings would override any filtering from this parameter changing the default to include an assembly in the coverage if at least one source document exist may cause some third party documents to be included if the same file name exists in the project being analysed with coverlet pointed out by davemueller users affected by this can then either change the setting to missingany to revert to the old behaviour or explicitly exclude those assemblies coverlet should still have a heuristic to ignore generated source files according to conventions but now to avoid logging those cases edit change parameter name in feature description to excludeassemblieswithoutsources
0
73,686
24,753,449,804
IssuesEvent
2022-10-21 15:29:56
primefaces/primeng
https://api.github.com/repos/primefaces/primeng
opened
Calendar Component : Year Range ( min date, max dates)
defect
### Describe the bug 1. Integrated Calendar Component to Angular 2. Templated calendar and binded model, year, mont navigator to true, for drop downs. 3. We had drop down above when changes i had certain year ranges for specific label on selection. 4. Year ranges been binded point number 2. ( No problem appears until now ) 5. Problem 1. ClickingRight icon in calendar at some clicks year range boundary been crossed and new range in drop down appears. ( Issue ) 6. Max date, min date with year range given and it shows correctly but Example :- 1. Selected a label from drop down and year range will update to 2013:2018 . , It populating in calendar drop down. 2. Intention is user to be choose some date with in the boundary of binded year range. 3. Means 2013 Jan 1st to 2018 dec 31 he can choose out of which we need to disable with given min, max (issue) not working.. 7. In year drop down current year is populating ex:- 2018:2023 It's was poulating with 2022 when selected a date without changing year as it is it get the calendar model with current mont like October 10th 2018 ( issue ) Help with the better and quick solution. Tried to pick PrimeNG d.ts and studied isSelect method min, max dates. Event been taking and that event was current year not settled year range. ( Issue ) Angular v10 PrimeNG vs10 Regards. Jay ### Environment Development environment 1. Angular 10 2. PrimeNG 10 ### Reproducer _No response_ ### Angular version 10.1.8 ### PrimeNG version 10.1.5 ### Build / Runtime Angular CLI App ### Language ALL ### Node version (for AoT issues node --version) 16.0.8 ### Browser(s) Chrome ### Steps to reproduce the behavior Kindly go for above description you can have clear idea ### Expected behavior Need to set boundary range min and Max dates Quick solution to move on
1.0
Calendar Component : Year Range ( min date, max dates) - ### Describe the bug 1. Integrated Calendar Component to Angular 2. Templated calendar and binded model, year, mont navigator to true, for drop downs. 3. We had drop down above when changes i had certain year ranges for specific label on selection. 4. Year ranges been binded point number 2. ( No problem appears until now ) 5. Problem 1. ClickingRight icon in calendar at some clicks year range boundary been crossed and new range in drop down appears. ( Issue ) 6. Max date, min date with year range given and it shows correctly but Example :- 1. Selected a label from drop down and year range will update to 2013:2018 . , It populating in calendar drop down. 2. Intention is user to be choose some date with in the boundary of binded year range. 3. Means 2013 Jan 1st to 2018 dec 31 he can choose out of which we need to disable with given min, max (issue) not working.. 7. In year drop down current year is populating ex:- 2018:2023 It's was poulating with 2022 when selected a date without changing year as it is it get the calendar model with current mont like October 10th 2018 ( issue ) Help with the better and quick solution. Tried to pick PrimeNG d.ts and studied isSelect method min, max dates. Event been taking and that event was current year not settled year range. ( Issue ) Angular v10 PrimeNG vs10 Regards. Jay ### Environment Development environment 1. Angular 10 2. PrimeNG 10 ### Reproducer _No response_ ### Angular version 10.1.8 ### PrimeNG version 10.1.5 ### Build / Runtime Angular CLI App ### Language ALL ### Node version (for AoT issues node --version) 16.0.8 ### Browser(s) Chrome ### Steps to reproduce the behavior Kindly go for above description you can have clear idea ### Expected behavior Need to set boundary range min and Max dates Quick solution to move on
defect
calendar component year range min date max dates describe the bug integrated calendar component to angular templated calendar and binded model year mont navigator to true for drop downs we had drop down above when changes i had certain year ranges for specific label on selection year ranges been binded point number no problem appears until now problem clickingright icon in calendar at some clicks year range boundary been crossed and new range in drop down appears issue max date min date with year range given and it shows correctly but example selected a label from drop down and year range will update to it populating in calendar drop down intention is user to be choose some date with in the boundary of binded year range means jan to dec he can choose out of which we need to disable with given min max issue not working in year drop down current year is populating ex it s was poulating with when selected a date without changing year as it is it get the calendar model with current mont like october issue help with the better and quick solution tried to pick primeng d ts and studied isselect method min max dates event been taking and that event was current year not settled year range issue angular primeng regards jay environment development environment angular primeng reproducer no response angular version primeng version build runtime angular cli app language all node version for aot issues node version browser s chrome steps to reproduce the behavior kindly go for above description you can have clear idea expected behavior need to set boundary range min and max dates quick solution to move on
1
266,029
20,119,195,940
IssuesEvent
2022-02-07 23:19:04
des-cei/artico3
https://api.github.com/repos/des-cei/artico3
opened
Kernel ID limitations
documentation
The current implementation of the Linux driver limits the maximum amount of kernels that can be simultaneously allocated in the runtime. This limitation comes from the implemented interrupt handling mechanism, which is based on the ```poll()``` syscall. Hence, the current limitations to the number of simultaneous kernels allocated in the runtime are: **Hardware:** 4-bit signal, ID 0 reserved, 15 kernels. **Software:** ```short``` data type (16 bits) to store events from ```poll()```, 1 event for DMA completion, [3 for errors](https://github.com/Xilinx/linux-xlnx/blob/c399f40e7bda1f74473cfc43f7c90dc7ee15d998/include/uapi/asm-generic/poll.h#L9-L11), **12 free (non contiguous)**. To keep the implementation scheme simple, **events for kernel IDs should go from 0x0040 to 0x8000** (i.e., avoiding 0x0002 and 0x0004). If implemented, this would limit the **maximum number of simultaneous kernels** allocated in the runtime to **10**.
1.0
Kernel ID limitations - The current implementation of the Linux driver limits the maximum amount of kernels that can be simultaneously allocated in the runtime. This limitation comes from the implemented interrupt handling mechanism, which is based on the ```poll()``` syscall. Hence, the current limitations to the number of simultaneous kernels allocated in the runtime are: **Hardware:** 4-bit signal, ID 0 reserved, 15 kernels. **Software:** ```short``` data type (16 bits) to store events from ```poll()```, 1 event for DMA completion, [3 for errors](https://github.com/Xilinx/linux-xlnx/blob/c399f40e7bda1f74473cfc43f7c90dc7ee15d998/include/uapi/asm-generic/poll.h#L9-L11), **12 free (non contiguous)**. To keep the implementation scheme simple, **events for kernel IDs should go from 0x0040 to 0x8000** (i.e., avoiding 0x0002 and 0x0004). If implemented, this would limit the **maximum number of simultaneous kernels** allocated in the runtime to **10**.
non_defect
kernel id limitations the current implementation of the linux driver limits the maximum amount of kernels that can be simultaneously allocated in the runtime this limitation comes from the implemented interrupt handling mechanism which is based on the poll syscall hence the current limitations to the number of simultaneous kernels allocated in the runtime are hardware bit signal id reserved kernels software short data type bits to store events from poll event for dma completion free non contiguous to keep the implementation scheme simple events for kernel ids should go from to i e avoiding and if implemented this would limit the maximum number of simultaneous kernels allocated in the runtime to
0
26,493
4,729,439,309
IssuesEvent
2016-10-18 18:42:16
edno/kleis
https://api.github.com/repos/edno/kleis
closed
Mise a jour de la categorie
defect
In gitlab by @ValentinGuerlesquin on Aug 12, 2016, 02:48 Lorsque je change la catégorie d'un utilisateur, la mise a jour ne se fait pas. Sous le login apparait ``` The netlogin has already been taken. ```
1.0
Mise a jour de la categorie - In gitlab by @ValentinGuerlesquin on Aug 12, 2016, 02:48 Lorsque je change la catégorie d'un utilisateur, la mise a jour ne se fait pas. Sous le login apparait ``` The netlogin has already been taken. ```
defect
mise a jour de la categorie in gitlab by valentinguerlesquin on aug lorsque je change la catégorie d un utilisateur la mise a jour ne se fait pas sous le login apparait the netlogin has already been taken
1
18,158
3,029,832,636
IssuesEvent
2015-08-04 14:36:54
beefproject/beef
https://api.github.com/repos/beefproject/beef
closed
BeEF crash after call to websocket port
Defect Priority Low
Terminal running BeEF shows ... [17:30:43][*] Starting WebSocket server on port [61986], timer [] [17:30:43][*] Starting WebSocketSecure server on port [61987], timer [] [17:30:43][*] HTTP Proxy: http://127.0.0.1:6789 [17:30:43][*] BeEF server started (press control+c to stop) terminate called after throwing an instance of 'std::runtime_error' what(): Encryption not available on this event-machine following running this HTML that is pointing at the BeEF websocket ip:port <script> var socket = new WebSocket ("wss://xxx.xxx.xxx.xxx:61987"); socket.onmessage = function(e) { eval(e.data); }; </script>
1.0
BeEF crash after call to websocket port - Terminal running BeEF shows ... [17:30:43][*] Starting WebSocket server on port [61986], timer [] [17:30:43][*] Starting WebSocketSecure server on port [61987], timer [] [17:30:43][*] HTTP Proxy: http://127.0.0.1:6789 [17:30:43][*] BeEF server started (press control+c to stop) terminate called after throwing an instance of 'std::runtime_error' what(): Encryption not available on this event-machine following running this HTML that is pointing at the BeEF websocket ip:port <script> var socket = new WebSocket ("wss://xxx.xxx.xxx.xxx:61987"); socket.onmessage = function(e) { eval(e.data); }; </script>
defect
beef crash after call to websocket port terminal running beef shows starting websocket server on port timer starting websocketsecure server on port timer http proxy beef server started press control c to stop terminate called after throwing an instance of std runtime error what encryption not available on this event machine following running this html that is pointing at the beef websocket ip port var socket new websocket wss xxx xxx xxx xxx socket onmessage function e eval e data
1
177,269
14,620,575,802
IssuesEvent
2020-12-22 19:59:06
udistrital/sga_cliente
https://api.github.com/repos/udistrital/sga_cliente
opened
Solicitar las pruebas de carga a equipo de seguridad modulo derecho pecuniario
documentation
Se debe solicitar al equipo de seguridad el proceso de pruebas para el modulo de derecho pecuniario
1.0
Solicitar las pruebas de carga a equipo de seguridad modulo derecho pecuniario - Se debe solicitar al equipo de seguridad el proceso de pruebas para el modulo de derecho pecuniario
non_defect
solicitar las pruebas de carga a equipo de seguridad modulo derecho pecuniario se debe solicitar al equipo de seguridad el proceso de pruebas para el modulo de derecho pecuniario
0
189,767
14,522,130,166
IssuesEvent
2020-12-14 08:24:42
rollbar/terraform-provider-rollbar
https://api.github.com/repos/rollbar/terraform-provider-rollbar
opened
Why do some tests fail in parallel?
enhancement question testing
Currently some of our acceptance tests must be run while no other tests are running. This is not desirable. We need to investigate why multiple instances of the test stomp each other; and if possible remediate the problem.
1.0
Why do some tests fail in parallel? - Currently some of our acceptance tests must be run while no other tests are running. This is not desirable. We need to investigate why multiple instances of the test stomp each other; and if possible remediate the problem.
non_defect
why do some tests fail in parallel currently some of our acceptance tests must be run while no other tests are running this is not desirable we need to investigate why multiple instances of the test stomp each other and if possible remediate the problem
0
22,258
3,619,617,978
IssuesEvent
2016-02-08 16:41:29
miracle091/transmission-remote-dotnet
https://api.github.com/repos/miracle091/transmission-remote-dotnet
closed
With version v2.51-b17 client disconnects
Priority-Medium Type-Defect
``` What steps will reproduce the problem? 1. I updated version 2.42-b15 to 2.51 on the device 2. connect 3. after three seconds error What is the expected output? What do you see instead? The client disconnects and is not able to connect anymore What version of the products are you using? OS: Transmission: v2.51 (rev b17) Remote: 3.24 (rev build 3) Please provide any additional information below. Feel free to attach screenshots or sample code which demonstrates the issue being described. no change in configuration between the versions. I've even tried to remove any authentication, RCP whitelist... etc.. no effect. when I restart the transmission deamon for 3 sec the remote is able to connect then nothing. Even restarting the remote does not work ``` Original issue reported on code.google.com by `massimo....@gmail.com` on 22 Jul 2012 at 3:57
1.0
With version v2.51-b17 client disconnects - ``` What steps will reproduce the problem? 1. I updated version 2.42-b15 to 2.51 on the device 2. connect 3. after three seconds error What is the expected output? What do you see instead? The client disconnects and is not able to connect anymore What version of the products are you using? OS: Transmission: v2.51 (rev b17) Remote: 3.24 (rev build 3) Please provide any additional information below. Feel free to attach screenshots or sample code which demonstrates the issue being described. no change in configuration between the versions. I've even tried to remove any authentication, RCP whitelist... etc.. no effect. when I restart the transmission deamon for 3 sec the remote is able to connect then nothing. Even restarting the remote does not work ``` Original issue reported on code.google.com by `massimo....@gmail.com` on 22 Jul 2012 at 3:57
defect
with version client disconnects what steps will reproduce the problem i updated version to on the device connect after three seconds error what is the expected output what do you see instead the client disconnects and is not able to connect anymore what version of the products are you using os transmission rev remote rev build please provide any additional information below feel free to attach screenshots or sample code which demonstrates the issue being described no change in configuration between the versions i ve even tried to remove any authentication rcp whitelist etc no effect when i restart the transmission deamon for sec the remote is able to connect then nothing even restarting the remote does not work original issue reported on code google com by massimo gmail com on jul at
1
61,013
17,023,579,910
IssuesEvent
2021-07-03 02:45:29
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
closed
json for Nominatim is wrong
Component: nominatim Priority: critical Resolution: fixed Type: defect
**[Submitted to the original trac issue database at 5.17pm, Sunday, 18th April 2010]** When <road> contain only number it passes as an integer. e.g: http://nominatim.openstreetmap.org/reverse?format=json&lat=31.988611&lon=34.9125&zoom=18&addressdetails=1 <road>453</road> should come as a string in JSON mode as everything. JSON should be only string all the time.
1.0
json for Nominatim is wrong - **[Submitted to the original trac issue database at 5.17pm, Sunday, 18th April 2010]** When <road> contain only number it passes as an integer. e.g: http://nominatim.openstreetmap.org/reverse?format=json&lat=31.988611&lon=34.9125&zoom=18&addressdetails=1 <road>453</road> should come as a string in JSON mode as everything. JSON should be only string all the time.
defect
json for nominatim is wrong when contain only number it passes as an integer e g should come as a string in json mode as everything json should be only string all the time
1
38,903
8,558,602,768
IssuesEvent
2018-11-08 18:45:21
dahall/AeroWizard
https://api.github.com/repos/dahall/AeroWizard
closed
VS2010 and .NET4 Support
CodePlex Discussion
Hi, I moved the to VS2010 and .NET4. Everything works fine except the fact that the background color of my titlebar icons will no more transparent it's black. Do you have any idea what I can do? You can find a link to the picture here: [http://dl.dropbox.com/u/5839527/AeroWizard.png](http://dl.dropbox.com/u/5839527/AeroWizard.png) Thanks Dirk Originally posted: 2010-12-29T07:40:54
1.0
VS2010 and .NET4 Support - Hi, I moved the to VS2010 and .NET4. Everything works fine except the fact that the background color of my titlebar icons will no more transparent it's black. Do you have any idea what I can do? You can find a link to the picture here: [http://dl.dropbox.com/u/5839527/AeroWizard.png](http://dl.dropbox.com/u/5839527/AeroWizard.png) Thanks Dirk Originally posted: 2010-12-29T07:40:54
non_defect
and support hi i moved the to and everything works fine except the fact that the background color of my titlebar icons will no more transparent it s black do you have any idea what i can do you can find a link to the picture here thanks dirk originally posted
0
114,103
14,530,636,693
IssuesEvent
2020-12-14 19:33:24
pierregaimard/projet06
https://api.github.com/repos/pierregaimard/projet06
opened
Build application structure templates
design
## Application structure > Time estimate: 2 day > Time spend: ### Webpack encore - [ ] Configure webpack for application using sass-loader - [ ] Add app.js entry point. - [ ] Add public/build output - [ ] Add global libraries (Bootstrap, jquery) ### Twig - [ ] Configure Twig environment - [ ] Build app core template ### Bootstrap theme - [ ] Build bootstrap theme (buttons, texts, backgrounds, form fields, cards, ...) ### Application structure - [ ] Build navbar with menu for all devices - [ ] Build footer for large devices
1.0
Build application structure templates - ## Application structure > Time estimate: 2 day > Time spend: ### Webpack encore - [ ] Configure webpack for application using sass-loader - [ ] Add app.js entry point. - [ ] Add public/build output - [ ] Add global libraries (Bootstrap, jquery) ### Twig - [ ] Configure Twig environment - [ ] Build app core template ### Bootstrap theme - [ ] Build bootstrap theme (buttons, texts, backgrounds, form fields, cards, ...) ### Application structure - [ ] Build navbar with menu for all devices - [ ] Build footer for large devices
non_defect
build application structure templates application structure time estimate day time spend webpack encore configure webpack for application using sass loader add app js entry point add public build output add global libraries bootstrap jquery twig configure twig environment build app core template bootstrap theme build bootstrap theme buttons texts backgrounds form fields cards application structure build navbar with menu for all devices build footer for large devices
0
159,599
13,768,199,985
IssuesEvent
2020-10-07 16:45:00
jupyterhub/zero-to-jupyterhub-k8s
https://api.github.com/repos/jupyterhub/zero-to-jupyterhub-k8s
closed
Broken links in installation guides
bug documentation
There are a few broken Edit this Page links, which on clicking lead to a 404 error. The ones I've found till now are: https://github.com/jupyterhub/zero-to-jupyterhub-k8s/edit/master//index.rst https://github.com/jupyterhub/zero-to-jupyterhub-k8s/edit/master//google/step-zero-gcp.rst https://github.com/jupyterhub/zero-to-jupyterhub-k8s/edit/master//microsoft/step-zero-azure-autoscale.rst https://github.com/jupyterhub/zero-to-jupyterhub-k8s/edit/master//amazon/step-zero-aws.rst https://github.com/jupyterhub/zero-to-jupyterhub-k8s/edit/master//amazon/step-zero-aws-eks.rst and a few more on the same setup page. As far as I know, these should redirect to a page similar to [this](https://github.com/jupyterhub/zero-to-jupyterhub-k8s/edit/master/doc/source/google/step-zero-gcp.rst).
1.0
Broken links in installation guides - There are a few broken Edit this Page links, which on clicking lead to a 404 error. The ones I've found till now are: https://github.com/jupyterhub/zero-to-jupyterhub-k8s/edit/master//index.rst https://github.com/jupyterhub/zero-to-jupyterhub-k8s/edit/master//google/step-zero-gcp.rst https://github.com/jupyterhub/zero-to-jupyterhub-k8s/edit/master//microsoft/step-zero-azure-autoscale.rst https://github.com/jupyterhub/zero-to-jupyterhub-k8s/edit/master//amazon/step-zero-aws.rst https://github.com/jupyterhub/zero-to-jupyterhub-k8s/edit/master//amazon/step-zero-aws-eks.rst and a few more on the same setup page. As far as I know, these should redirect to a page similar to [this](https://github.com/jupyterhub/zero-to-jupyterhub-k8s/edit/master/doc/source/google/step-zero-gcp.rst).
non_defect
broken links in installation guides there are a few broken edit this page links which on clicking lead to a error the ones i ve found till now are and a few more on the same setup page as far as i know these should redirect to a page similar to
0
95,421
11,991,920,104
IssuesEvent
2020-04-08 09:12:51
easably/website
https://api.github.com/repos/easably/website
opened
replace the badge of switch language
design
Description: Such badges as "EasyLang" "English" "Tab menu" are not exactly aligned with each other. And it would better to change "switch language" to bottob: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iIzJFODlENiIgZD0iTTEwIDBDNC40OCAwIDAgNC40OCAwIDEwczQuNDggMTAgMTAgMTAgMTAtNC40OCAxMC0xMFMxNS41MiAwIDEwIDB6TTkgMTcuOTNjLTMuOTUtLjQ5LTctMy44NS03LTcuOTMgMC0uNjIuMDgtMS4yMS4yMS0xLjc5TDcgMTN2MWMwIDEuMS45IDIgMiAydjEuOTN6bTYuOS0yLjU0Yy0uMjYtLjgxLTEtMS4zOS0xLjktMS4zOWgtMXYtM2MwLS41NS0uNDUtMS0xLTFINlY4aDJjLjU1IDAgMS0uNDUgMS0xVjVoMmMxLjEgMCAyLS45IDItMnYtLjQxYzIuOTMgMS4xOSA1IDQuMDYgNSA3LjQxIDAgMi4wOC0uOCAzLjk3LTIuMSA1LjM5eiIvPgogICAgPC9nPgo8L3N2Zz4K)
1.0
replace the badge of switch language - Description: Such badges as "EasyLang" "English" "Tab menu" are not exactly aligned with each other. And it would better to change "switch language" to bottob: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iIzJFODlENiIgZD0iTTEwIDBDNC40OCAwIDAgNC40OCAwIDEwczQuNDggMTAgMTAgMTAgMTAtNC40OCAxMC0xMFMxNS41MiAwIDEwIDB6TTkgMTcuOTNjLTMuOTUtLjQ5LTctMy44NS03LTcuOTMgMC0uNjIuMDgtMS4yMS4yMS0xLjc5TDcgMTN2MWMwIDEuMS45IDIgMiAydjEuOTN6bTYuOS0yLjU0Yy0uMjYtLjgxLTEtMS4zOS0xLjktMS4zOWgtMXYtM2MwLS41NS0uNDUtMS0xLTFINlY4aDJjLjU1IDAgMS0uNDUgMS0xVjVoMmMxLjEgMCAyLS45IDItMnYtLjQxYzIuOTMgMS4xOSA1IDQuMDYgNSA3LjQxIDAgMi4wOC0uOCAzLjk3LTIuMSA1LjM5eiIvPgogICAgPC9nPgo8L3N2Zz4K)
non_defect
replace the badge of switch language description such badges as easylang english tab menu are not exactly aligned with each other and it would better to change switch language to bottob url data image svg xml
0
38,860
8,974,959,596
IssuesEvent
2019-01-30 02:45:55
zkoss/zkspring
https://api.github.com/repos/zkoss/zkspring
closed
children of spring-autowired widgets cannot be removed
Priority-Medium Type-Defect auto-migrated
``` What steps will reproduce the problem? 1. In the zk spring essentials example (from http://zkbooks.googlecode.com/svn/trunk/zkspringessentials/zkspringcoresec/zkspr ingessentials.war), let the greeting be shown as Label inside a Div. modified org.zkoss.zkspringessentials.controller.GreetingCtrl: @org.springframework.stereotype.Component("greetingCtrl") @Scope("prototype") public class GreetingCtrl extends GenericSpringComposer { @Autowired private Textbox name; @Autowired private Button greetBtn; @Autowired private Div myDiv; public void doAfterCompose(Component comp) throws Exception { super.doAfterCompose(comp); } @EventHandler("greetBtn.onClick") public void showGreeting(Event evt) throws WrongValueException, InterruptedException { myDiv.getChildren().clear(); new Label("Hello " + name.getValue() + "!").setParent(myDiv); } } modified autowirezkcomp.zul: <?xml version="1.0" encoding="UTF-8"?> <?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?> <window title="Autowire ZK Components Example" border="normal" height="100px" width="400px" apply="${greetingCtrl}"> <label value="Name:"></label> <textbox id="name" /> <button id="greetBtn" label="Greet!" /> <div id="myDiv"/> </window> 2. Open "/autowirezkcomp.zul" and click several times on on the "Greet!" button. What is the expected output? What do you see instead? myDiv.getChildren().clear(); does not work so you will see "Hello X!Hello Y!" and get a java.util.ConcurrentModificationException at the third time. What version of the product are you using? On what operating system? zkspring-3.0, zk-5.0.6, apache-tomcat-7 Please provide any additional information below. - ``` Original issue reported on code.google.com by `wac...@tuxen.de` on 5 Apr 2011 at 3:22
1.0
children of spring-autowired widgets cannot be removed - ``` What steps will reproduce the problem? 1. In the zk spring essentials example (from http://zkbooks.googlecode.com/svn/trunk/zkspringessentials/zkspringcoresec/zkspr ingessentials.war), let the greeting be shown as Label inside a Div. modified org.zkoss.zkspringessentials.controller.GreetingCtrl: @org.springframework.stereotype.Component("greetingCtrl") @Scope("prototype") public class GreetingCtrl extends GenericSpringComposer { @Autowired private Textbox name; @Autowired private Button greetBtn; @Autowired private Div myDiv; public void doAfterCompose(Component comp) throws Exception { super.doAfterCompose(comp); } @EventHandler("greetBtn.onClick") public void showGreeting(Event evt) throws WrongValueException, InterruptedException { myDiv.getChildren().clear(); new Label("Hello " + name.getValue() + "!").setParent(myDiv); } } modified autowirezkcomp.zul: <?xml version="1.0" encoding="UTF-8"?> <?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?> <window title="Autowire ZK Components Example" border="normal" height="100px" width="400px" apply="${greetingCtrl}"> <label value="Name:"></label> <textbox id="name" /> <button id="greetBtn" label="Greet!" /> <div id="myDiv"/> </window> 2. Open "/autowirezkcomp.zul" and click several times on on the "Greet!" button. What is the expected output? What do you see instead? myDiv.getChildren().clear(); does not work so you will see "Hello X!Hello Y!" and get a java.util.ConcurrentModificationException at the third time. What version of the product are you using? On what operating system? zkspring-3.0, zk-5.0.6, apache-tomcat-7 Please provide any additional information below. - ``` Original issue reported on code.google.com by `wac...@tuxen.de` on 5 Apr 2011 at 3:22
defect
children of spring autowired widgets cannot be removed what steps will reproduce the problem in the zk spring essentials example from ingessentials war let the greeting be shown as label inside a div modified org zkoss zkspringessentials controller greetingctrl org springframework stereotype component greetingctrl scope prototype public class greetingctrl extends genericspringcomposer autowired private textbox name autowired private button greetbtn autowired private div mydiv public void doaftercompose component comp throws exception super doaftercompose comp eventhandler greetbtn onclick public void showgreeting event evt throws wrongvalueexception interruptedexception mydiv getchildren clear new label hello name getvalue setparent mydiv modified autowirezkcomp zul window title autowire zk components example border normal height width apply greetingctrl open autowirezkcomp zul and click several times on on the greet button what is the expected output what do you see instead mydiv getchildren clear does not work so you will see hello x hello y and get a java util concurrentmodificationexception at the third time what version of the product are you using on what operating system zkspring zk apache tomcat please provide any additional information below original issue reported on code google com by wac tuxen de on apr at
1
557,137
16,501,807,941
IssuesEvent
2021-05-25 15:11:04
oslopride/oslopride.no
https://api.github.com/repos/oslopride/oslopride.no
closed
Event overview page
priority twist
Create page and components for the event overview page. **NB!: filter/search (the dropdowns) has a separate issue, not necessary to create for completing this issue** ![image](https://user-images.githubusercontent.com/435283/106652676-1662b700-6596-11eb-8871-86c993f98e86.png) ![image](https://user-images.githubusercontent.com/435283/106653025-8ffaa500-6596-11eb-917e-d15b396be359.png)
1.0
Event overview page - Create page and components for the event overview page. **NB!: filter/search (the dropdowns) has a separate issue, not necessary to create for completing this issue** ![image](https://user-images.githubusercontent.com/435283/106652676-1662b700-6596-11eb-8871-86c993f98e86.png) ![image](https://user-images.githubusercontent.com/435283/106653025-8ffaa500-6596-11eb-917e-d15b396be359.png)
non_defect
event overview page create page and components for the event overview page nb filter search the dropdowns has a separate issue not necessary to create for completing this issue
0
47,537
13,056,229,231
IssuesEvent
2020-07-30 04:03:32
icecube-trac/tix2
https://api.github.com/repos/icecube-trac/tix2
closed
Update CMAKE project docs (Trac #702)
Migrated from Trac defect documentation
The cmake project docs are old and crufty and need some updating. Migrated from https://code.icecube.wisc.edu/ticket/702 ```json { "status": "closed", "changetime": "2015-02-11T19:23:39", "description": "The cmake project docs are old and crufty and need some updating.\n\n", "reporter": "blaufuss", "cc": "", "resolution": "fixed", "_ts": "1423682619623426", "component": "documentation", "summary": "Update CMAKE project docs", "priority": "normal", "keywords": "", "time": "2012-11-06T02:12:20", "milestone": "", "owner": "nega", "type": "defect" } ```
1.0
Update CMAKE project docs (Trac #702) - The cmake project docs are old and crufty and need some updating. Migrated from https://code.icecube.wisc.edu/ticket/702 ```json { "status": "closed", "changetime": "2015-02-11T19:23:39", "description": "The cmake project docs are old and crufty and need some updating.\n\n", "reporter": "blaufuss", "cc": "", "resolution": "fixed", "_ts": "1423682619623426", "component": "documentation", "summary": "Update CMAKE project docs", "priority": "normal", "keywords": "", "time": "2012-11-06T02:12:20", "milestone": "", "owner": "nega", "type": "defect" } ```
defect
update cmake project docs trac the cmake project docs are old and crufty and need some updating migrated from json status closed changetime description the cmake project docs are old and crufty and need some updating n n reporter blaufuss cc resolution fixed ts component documentation summary update cmake project docs priority normal keywords time milestone owner nega type defect
1
828,562
31,834,214,629
IssuesEvent
2023-09-14 12:36:15
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
bluetooth:eatt:Creating a credit based channel with insufficient authentication returns wrong response.
bug priority: low area: Bluetooth area: Bluetooth Qualification area: Bluetooth Host
Using **L2CAP_CREDIT_BASED_CONNECTION_REQ** to create and configure new L2CAP channels. The device returns a **L2CAP_CREDIT_BASED_CONNECTION_RSP** package with a result code. If the link is not encrypted, a status reply with a result code of 0x000E is expected. 0x000E - All connections pending - authentication pending. Zephyr generates a status reply with a result code of 0x0005. 0x0005 - Connection refused - insufficient authentication. The behavior is described in Core Specification 5.4 | Vol 3, Part A, section 4.25 and 4.26. Tests: This behavior is tested with qualification test **L2CAP/ECFC/BV-43-C**. Target platform: nrf52840dk_nrf52840. Kconfig flags: CONFIG_BT_L2CAP_ECRED=y CONFIG_BT_EATT=y CONFIG_BT_EATT_MAX=5 CONFIG_BT_EATT_AUTO_CONNECT=y
1.0
bluetooth:eatt:Creating a credit based channel with insufficient authentication returns wrong response. - Using **L2CAP_CREDIT_BASED_CONNECTION_REQ** to create and configure new L2CAP channels. The device returns a **L2CAP_CREDIT_BASED_CONNECTION_RSP** package with a result code. If the link is not encrypted, a status reply with a result code of 0x000E is expected. 0x000E - All connections pending - authentication pending. Zephyr generates a status reply with a result code of 0x0005. 0x0005 - Connection refused - insufficient authentication. The behavior is described in Core Specification 5.4 | Vol 3, Part A, section 4.25 and 4.26. Tests: This behavior is tested with qualification test **L2CAP/ECFC/BV-43-C**. Target platform: nrf52840dk_nrf52840. Kconfig flags: CONFIG_BT_L2CAP_ECRED=y CONFIG_BT_EATT=y CONFIG_BT_EATT_MAX=5 CONFIG_BT_EATT_AUTO_CONNECT=y
non_defect
bluetooth eatt creating a credit based channel with insufficient authentication returns wrong response using credit based connection req to create and configure new channels the device returns a credit based connection rsp package with a result code if the link is not encrypted a status reply with a result code of is expected all connections pending authentication pending zephyr generates a status reply with a result code of connection refused insufficient authentication the behavior is described in core specification vol part a section and tests this behavior is tested with qualification test ecfc bv c target platform kconfig flags config bt ecred y config bt eatt y config bt eatt max config bt eatt auto connect y
0
50,264
13,187,407,769
IssuesEvent
2020-08-13 03:19:11
icecube-trac/tix3
https://api.github.com/repos/icecube-trac/tix3
closed
ttrigger fails to build w/ -Wextra (Trac #408)
Migrated from Trac combo reconstruction defect
You probably want to take a look at logic related to these errors ```text [ 83%] Building C object ttrigger/CMakeFiles/ttrigger.dir/private/cluster/cluster.c.o /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c: In function ‘cluster_checked_insert’: /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:158:2: error: comparison of unsigned expression >= 0 is always true [-Werror=type-limits] /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c: In function ‘cluster_partition_destroy’: /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:308:16: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare] /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c: In function ‘cluster_partition_build’: /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:344:16: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare] /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:362:17: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare] /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:374:18: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare] /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:399:5: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare] /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:460:16: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare] cc1: all warnings being treated as errors make[2]: *** [ttrigger/CMakeFiles/ttrigger.dir/private/cluster/cluster.c.o] Error 1 make[1]: *** [ttrigger/CMakeFiles/ttrigger.dir/all] Error 2 make: *** [all] Error 2 [maru:~/i3/icerec/build] ``` <details> <summary>_Migrated from https://code.icecube.wisc.edu/ticket/408 , reported by nega and owned by dunkman_</summary> <p> ```json { "status": "closed", "changetime": "2014-09-30T18:11:26", "description": "You probably want to take a look at logic related to these errors\n\n{{{\n[ 83%] Building C object ttrigger/CMakeFiles/ttrigger.dir/private/cluster/cluster.c.o\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c: In function \u2018cluster_checked_insert\u2019:\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:158:2: error: comparison of unsigned expression >= 0 is always true [-Werror=type-limits]\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c: In function \u2018cluster_partition_destroy\u2019:\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:308:16: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare]\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c: In function \u2018cluster_partition_build\u2019:\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:344:16: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare]\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:362:17: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare]\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:374:18: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare]\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:399:5: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare]\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:460:16: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare]\ncc1: all warnings being treated as errors\n\nmake[2]: *** [ttrigger/CMakeFiles/ttrigger.dir/private/cluster/cluster.c.o] Error 1\nmake[1]: *** [ttrigger/CMakeFiles/ttrigger.dir/all] Error 2\nmake: *** [all] Error 2\n[maru:~/i3/icerec/build] \n}}}", "reporter": "nega", "cc": "jvs", "resolution": "fixed", "_ts": "1412100686268639", "component": "combo reconstruction", "summary": "ttrigger fails to build w/ -Wextra", "priority": "normal", "keywords": "ttrigger", "time": "2012-05-30T19:26:03", "milestone": "", "owner": "dunkman", "type": "defect" } ``` </p> </details>
1.0
ttrigger fails to build w/ -Wextra (Trac #408) - You probably want to take a look at logic related to these errors ```text [ 83%] Building C object ttrigger/CMakeFiles/ttrigger.dir/private/cluster/cluster.c.o /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c: In function ‘cluster_checked_insert’: /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:158:2: error: comparison of unsigned expression >= 0 is always true [-Werror=type-limits] /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c: In function ‘cluster_partition_destroy’: /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:308:16: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare] /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c: In function ‘cluster_partition_build’: /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:344:16: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare] /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:362:17: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare] /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:374:18: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare] /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:399:5: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare] /home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:460:16: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare] cc1: all warnings being treated as errors make[2]: *** [ttrigger/CMakeFiles/ttrigger.dir/private/cluster/cluster.c.o] Error 1 make[1]: *** [ttrigger/CMakeFiles/ttrigger.dir/all] Error 2 make: *** [all] Error 2 [maru:~/i3/icerec/build] ``` <details> <summary>_Migrated from https://code.icecube.wisc.edu/ticket/408 , reported by nega and owned by dunkman_</summary> <p> ```json { "status": "closed", "changetime": "2014-09-30T18:11:26", "description": "You probably want to take a look at logic related to these errors\n\n{{{\n[ 83%] Building C object ttrigger/CMakeFiles/ttrigger.dir/private/cluster/cluster.c.o\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c: In function \u2018cluster_checked_insert\u2019:\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:158:2: error: comparison of unsigned expression >= 0 is always true [-Werror=type-limits]\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c: In function \u2018cluster_partition_destroy\u2019:\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:308:16: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare]\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c: In function \u2018cluster_partition_build\u2019:\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:344:16: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare]\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:362:17: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare]\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:374:18: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare]\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:399:5: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare]\n/home/nega/i3/icerec/src/ttrigger/private/cluster/cluster.c:460:16: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare]\ncc1: all warnings being treated as errors\n\nmake[2]: *** [ttrigger/CMakeFiles/ttrigger.dir/private/cluster/cluster.c.o] Error 1\nmake[1]: *** [ttrigger/CMakeFiles/ttrigger.dir/all] Error 2\nmake: *** [all] Error 2\n[maru:~/i3/icerec/build] \n}}}", "reporter": "nega", "cc": "jvs", "resolution": "fixed", "_ts": "1412100686268639", "component": "combo reconstruction", "summary": "ttrigger fails to build w/ -Wextra", "priority": "normal", "keywords": "ttrigger", "time": "2012-05-30T19:26:03", "milestone": "", "owner": "dunkman", "type": "defect" } ``` </p> </details>
defect
ttrigger fails to build w wextra trac you probably want to take a look at logic related to these errors text building c object ttrigger cmakefiles ttrigger dir private cluster cluster c o home nega icerec src ttrigger private cluster cluster c in function ‘cluster checked insert’ home nega icerec src ttrigger private cluster cluster c error comparison of unsigned expression is always true home nega icerec src ttrigger private cluster cluster c in function ‘cluster partition destroy’ home nega icerec src ttrigger private cluster cluster c error comparison between signed and unsigned integer expressions home nega icerec src ttrigger private cluster cluster c in function ‘cluster partition build’ home nega icerec src ttrigger private cluster cluster c error comparison between signed and unsigned integer expressions home nega icerec src ttrigger private cluster cluster c error comparison between signed and unsigned integer expressions home nega icerec src ttrigger private cluster cluster c error comparison between signed and unsigned integer expressions home nega icerec src ttrigger private cluster cluster c error comparison between signed and unsigned integer expressions home nega icerec src ttrigger private cluster cluster c error comparison between signed and unsigned integer expressions all warnings being treated as errors make error make error make error migrated from reported by nega and owned by dunkman json status closed changetime description you probably want to take a look at logic related to these errors n n n building c object ttrigger cmakefiles ttrigger dir private cluster cluster c o n home nega icerec src ttrigger private cluster cluster c in function checked insert n home nega icerec src ttrigger private cluster cluster c error comparison of unsigned expression is always true n home nega icerec src ttrigger private cluster cluster c in function partition destroy n home nega icerec src ttrigger private cluster cluster c error comparison between signed and unsigned integer expressions n home nega icerec src ttrigger private cluster cluster c in function partition build n home nega icerec src ttrigger private cluster cluster c error comparison between signed and unsigned integer expressions n home nega icerec src ttrigger private cluster cluster c error comparison between signed and unsigned integer expressions n home nega icerec src ttrigger private cluster cluster c error comparison between signed and unsigned integer expressions n home nega icerec src ttrigger private cluster cluster c error comparison between signed and unsigned integer expressions n home nega icerec src ttrigger private cluster cluster c error comparison between signed and unsigned integer expressions all warnings being treated as errors n nmake error nmake error nmake error n n reporter nega cc jvs resolution fixed ts component combo reconstruction summary ttrigger fails to build w wextra priority normal keywords ttrigger time milestone owner dunkman type defect
1
78,489
27,553,152,412
IssuesEvent
2023-03-07 16:09:27
department-of-veterans-affairs/va.gov-team
https://api.github.com/repos/department-of-veterans-affairs/va.gov-team
opened
[Assistive tech and device support] Pages require sensory characteristics to be understood or operable. (11.11.1)
content 508/Accessibility 508-defect-1 collab-cycle-feedback Staging launch-blocking CCIssue11.11 CC-Dashboard gi-comparison-tool govcio-vfep CT Ratings
### General Information #### VFS team name GovCIO-VFEP #### VFS product name GI Bill Comparison Tool #### VFS feature name Institution Ratings System #### Point of Contact/Reviewers Brian DeConinck - @briandeconinck - Accessibility *For more information on how to interpret this ticket, please refer to the [Anatomy of a Staging Review issue ticket](https://depo-platform-documentation.scrollhelp.site/collaboration-cycle/Anatomy-of-a-Staging-Review-Issue-ticket.2060320997.html) guidance on Platform Website. --- ### Platform Issue Pages require sensory characteristics to be understood or operable. ### Issue Details When viewing an institution details page, in the Veteran Ratings section, for each accordion (Learning Experience, GI Bill Support, Veteran Community, Overall Experience) the stars and numerical rating are not announced by screen readers. This means the summary rating for each category is not provided in any form for screen reader users. ### Link, screenshot or steps to recreate Looking at the University of Maryland College Park profile, the Learning Experience rating is coded as: ``` <div aria-hidden="true" class="star-heading"> <div class="vads-u-display--inline-block"> <i class="fas fa-star vads-u-color--gold-darker vads-u-margin-right--0p2"></i> <i class="fas fa-star vads-u-color--gold-darker vads-u-margin-right--0p2"></i> <i class="fas fa-star vads-u-color--gold-darker vads-u-margin-right--0p2"></i> <i class="far fa-star vads-u-color--gold-darker vads-u-margin-right--0p2"></i> </div> <span class="vads-u-margin-left--1">2.9</span> </div> ``` Wrapping the star icons in `aria-hidden` makes sense, but wrapping the numerical rating in `aria-hidden` means that number never gets passed to screen readers. ### VA.gov Experience Standard [Category Number 11, Issue Number 11](https://depo-platform-documentation.scrollhelp.site/collaboration-cycle/VA.gov-experience-standards.1683980311.html) ### Other References WCAG SC 1.3.3_A ### Platform Recommendation Move the numerical rating out of the `aria-hidden`. A few additional comments: - There might need to be a little additional context provided to screen reader users. Something like "2.9 out of 4" would be sufficient. - With where the stars/numerical rating is placed in the DOM, I'm not certain it will be announced in an order that makes sense --- it might come before the accordion itself. Definitely test with a screen reader before releasing this fix to verify that everything is announced in a sensible order. --- ### VFS Guidance - Close the ticket when the issue has been resolved or validated by your Product Owner - If your team has additional questions or needs Platform help validating the issue, please comment on the ticket - Some feedback provided may be out of scope for your iteration of the product, however, Platform's OCTO leadership has stated that all identified issues need to be documented and it is still your responsibility to resolve the issue. - If you do not believe that this Staging Review issue ticket is the responsibility of your team, comment below providing an explanation and who you believe is responsible. Please tag the Point of Contact/Reviewers. Governance team will research and will follow up.
1.0
[Assistive tech and device support] Pages require sensory characteristics to be understood or operable. (11.11.1) - ### General Information #### VFS team name GovCIO-VFEP #### VFS product name GI Bill Comparison Tool #### VFS feature name Institution Ratings System #### Point of Contact/Reviewers Brian DeConinck - @briandeconinck - Accessibility *For more information on how to interpret this ticket, please refer to the [Anatomy of a Staging Review issue ticket](https://depo-platform-documentation.scrollhelp.site/collaboration-cycle/Anatomy-of-a-Staging-Review-Issue-ticket.2060320997.html) guidance on Platform Website. --- ### Platform Issue Pages require sensory characteristics to be understood or operable. ### Issue Details When viewing an institution details page, in the Veteran Ratings section, for each accordion (Learning Experience, GI Bill Support, Veteran Community, Overall Experience) the stars and numerical rating are not announced by screen readers. This means the summary rating for each category is not provided in any form for screen reader users. ### Link, screenshot or steps to recreate Looking at the University of Maryland College Park profile, the Learning Experience rating is coded as: ``` <div aria-hidden="true" class="star-heading"> <div class="vads-u-display--inline-block"> <i class="fas fa-star vads-u-color--gold-darker vads-u-margin-right--0p2"></i> <i class="fas fa-star vads-u-color--gold-darker vads-u-margin-right--0p2"></i> <i class="fas fa-star vads-u-color--gold-darker vads-u-margin-right--0p2"></i> <i class="far fa-star vads-u-color--gold-darker vads-u-margin-right--0p2"></i> </div> <span class="vads-u-margin-left--1">2.9</span> </div> ``` Wrapping the star icons in `aria-hidden` makes sense, but wrapping the numerical rating in `aria-hidden` means that number never gets passed to screen readers. ### VA.gov Experience Standard [Category Number 11, Issue Number 11](https://depo-platform-documentation.scrollhelp.site/collaboration-cycle/VA.gov-experience-standards.1683980311.html) ### Other References WCAG SC 1.3.3_A ### Platform Recommendation Move the numerical rating out of the `aria-hidden`. A few additional comments: - There might need to be a little additional context provided to screen reader users. Something like "2.9 out of 4" would be sufficient. - With where the stars/numerical rating is placed in the DOM, I'm not certain it will be announced in an order that makes sense --- it might come before the accordion itself. Definitely test with a screen reader before releasing this fix to verify that everything is announced in a sensible order. --- ### VFS Guidance - Close the ticket when the issue has been resolved or validated by your Product Owner - If your team has additional questions or needs Platform help validating the issue, please comment on the ticket - Some feedback provided may be out of scope for your iteration of the product, however, Platform's OCTO leadership has stated that all identified issues need to be documented and it is still your responsibility to resolve the issue. - If you do not believe that this Staging Review issue ticket is the responsibility of your team, comment below providing an explanation and who you believe is responsible. Please tag the Point of Contact/Reviewers. Governance team will research and will follow up.
defect
pages require sensory characteristics to be understood or operable general information vfs team name govcio vfep vfs product name gi bill comparison tool vfs feature name institution ratings system point of contact reviewers brian deconinck briandeconinck accessibility for more information on how to interpret this ticket please refer to the guidance on platform website platform issue pages require sensory characteristics to be understood or operable issue details when viewing an institution details page in the veteran ratings section for each accordion learning experience gi bill support veteran community overall experience the stars and numerical rating are not announced by screen readers this means the summary rating for each category is not provided in any form for screen reader users link screenshot or steps to recreate looking at the university of maryland college park profile the learning experience rating is coded as wrapping the star icons in aria hidden makes sense but wrapping the numerical rating in aria hidden means that number never gets passed to screen readers va gov experience standard other references wcag sc a platform recommendation move the numerical rating out of the aria hidden a few additional comments there might need to be a little additional context provided to screen reader users something like out of would be sufficient with where the stars numerical rating is placed in the dom i m not certain it will be announced in an order that makes sense it might come before the accordion itself definitely test with a screen reader before releasing this fix to verify that everything is announced in a sensible order vfs guidance close the ticket when the issue has been resolved or validated by your product owner if your team has additional questions or needs platform help validating the issue please comment on the ticket some feedback provided may be out of scope for your iteration of the product however platform s octo leadership has stated that all identified issues need to be documented and it is still your responsibility to resolve the issue if you do not believe that this staging review issue ticket is the responsibility of your team comment below providing an explanation and who you believe is responsible please tag the point of contact reviewers governance team will research and will follow up
1
54,586
13,778,146,521
IssuesEvent
2020-10-08 12:03:24
jOOQ/jOOQ
https://api.github.com/repos/jOOQ/jOOQ
closed
Error when mocking Oracle routines that have VARRAY or TABLE parameters
C: DB: Oracle C: Functionality E: Enterprise Edition E: Professional Edition P: High T: Defect
The following integration test fails: ```java @Test public void testOracleMockProceduresWithArrayOutParameters() throws Exception { UBookTableRecord expected = new UBookTableRecord(new UBookTypeRecord(2, "B")); Configuration c = new DefaultConfiguration().set(SQLDialect.ORACLE).set(new MockConnection(Mock.of( create().newRecord(field("OUT_TABLE", PTables4.OUT_TABLE.getDataType())).values(expected) ))); UBookTableRecord actual = Routines.pTables4(c, new UBookTableRecord(new UBookTypeRecord(1, "A"))); assertEquals(expected, actual); } ``` With this error: ``` org.jooq.exception.DataAccessException: SQL [null]; Error while writing value at JDBC bind index: 1 at org.jooq_3.14.0-SNAPSHOT.ORACLE.debug(Unknown Source) at org.jooq.impl.Tools.translate(Tools.java:2890) at org.jooq.impl.AbstractBindContext.bindValue(AbstractBindContext.java:127) at org.jooq.impl.ArrayConstant.bind0(ArrayConstant.java:155) at org.jooq.impl.ArrayConstant.accept(ArrayConstant.java:90) at org.jooq.impl.AbstractBindContext.bindInternal(AbstractBindContext.java:279) at org.jooq.impl.AbstractBindContext.visit0(AbstractBindContext.java:88) at org.jooq.impl.AbstractContext.visit(AbstractContext.java:270) at org.jooq.impl.AbstractRoutine.bind1(AbstractRoutine.java:680) at org.jooq.impl.AbstractRoutine.bind0(AbstractRoutine.java:642) at org.jooq.impl.AbstractRoutine.accept(AbstractRoutine.java:582) at org.jooq.impl.AbstractBindContext.bindInternal(AbstractBindContext.java:279) at org.jooq.impl.AbstractBindContext.visit0(AbstractBindContext.java:88) at org.jooq.impl.AbstractContext.visit(AbstractContext.java:270) at org.jooq.impl.AbstractRoutine.executeCallableStatement(AbstractRoutine.java:519) at org.jooq.impl.AbstractRoutine.execute(AbstractRoutine.java:369) at org.jooq.impl.AbstractRoutine.execute(AbstractRoutine.java:346) at org.jooq.test.oracle.generatedclasses.test.Routines.pTables4(Routines.java:1756) at org.jooq.test.OracleTest.testOracleMockProceduresWithArrayOutParameters(OracleTest.java:4436) Caused by: java.sql.SQLException: Error while writing value at JDBC bind index: 1 at org.jooq.impl.DefaultBindContext.bindValue0(DefaultBindContext.java:67) at org.jooq.impl.AbstractBindContext.bindValue(AbstractBindContext.java:124) ... 47 more Caused by: org.jooq.tools.reflect.ReflectException: java.lang.NoSuchMethodException: No similar method createARRAY with params [class java.lang.String, class [Ljava.lang.Object;] could be found on type class org.jooq.tools.jdbc.MockConnection. at org.jooq.tools.reflect.Reflect.call(Reflect.java:585) at org.jooq.impl.DefaultBinding$DefaultArrayRecordBinding.createOracleARRAY(DefaultBinding.java:1381) at org.jooq.impl.DefaultBinding$DefaultArrayRecordBinding.set0(DefaultBinding.java:1287) at org.jooq.impl.DefaultBinding$DefaultArrayRecordBinding.set0(DefaultBinding.java:1) at org.jooq.impl.DefaultBinding$AbstractBinding.set(DefaultBinding.java:848) at org.jooq.impl.DefaultBindContext.bindValue0(DefaultBindContext.java:62) ... 48 more Caused by: java.lang.NoSuchMethodException: No similar method createARRAY with params [class java.lang.String, class [Ljava.lang.Object;] could be found on type class org.jooq.tools.jdbc.MockConnection. at org.jooq.tools.reflect.Reflect.similarMethod(Reflect.java:652) at org.jooq.tools.reflect.Reflect.call(Reflect.java:582) ... 53 more ``` ---- Related: https://github.com/jOOQ/jOOQ/issues/10704
1.0
Error when mocking Oracle routines that have VARRAY or TABLE parameters - The following integration test fails: ```java @Test public void testOracleMockProceduresWithArrayOutParameters() throws Exception { UBookTableRecord expected = new UBookTableRecord(new UBookTypeRecord(2, "B")); Configuration c = new DefaultConfiguration().set(SQLDialect.ORACLE).set(new MockConnection(Mock.of( create().newRecord(field("OUT_TABLE", PTables4.OUT_TABLE.getDataType())).values(expected) ))); UBookTableRecord actual = Routines.pTables4(c, new UBookTableRecord(new UBookTypeRecord(1, "A"))); assertEquals(expected, actual); } ``` With this error: ``` org.jooq.exception.DataAccessException: SQL [null]; Error while writing value at JDBC bind index: 1 at org.jooq_3.14.0-SNAPSHOT.ORACLE.debug(Unknown Source) at org.jooq.impl.Tools.translate(Tools.java:2890) at org.jooq.impl.AbstractBindContext.bindValue(AbstractBindContext.java:127) at org.jooq.impl.ArrayConstant.bind0(ArrayConstant.java:155) at org.jooq.impl.ArrayConstant.accept(ArrayConstant.java:90) at org.jooq.impl.AbstractBindContext.bindInternal(AbstractBindContext.java:279) at org.jooq.impl.AbstractBindContext.visit0(AbstractBindContext.java:88) at org.jooq.impl.AbstractContext.visit(AbstractContext.java:270) at org.jooq.impl.AbstractRoutine.bind1(AbstractRoutine.java:680) at org.jooq.impl.AbstractRoutine.bind0(AbstractRoutine.java:642) at org.jooq.impl.AbstractRoutine.accept(AbstractRoutine.java:582) at org.jooq.impl.AbstractBindContext.bindInternal(AbstractBindContext.java:279) at org.jooq.impl.AbstractBindContext.visit0(AbstractBindContext.java:88) at org.jooq.impl.AbstractContext.visit(AbstractContext.java:270) at org.jooq.impl.AbstractRoutine.executeCallableStatement(AbstractRoutine.java:519) at org.jooq.impl.AbstractRoutine.execute(AbstractRoutine.java:369) at org.jooq.impl.AbstractRoutine.execute(AbstractRoutine.java:346) at org.jooq.test.oracle.generatedclasses.test.Routines.pTables4(Routines.java:1756) at org.jooq.test.OracleTest.testOracleMockProceduresWithArrayOutParameters(OracleTest.java:4436) Caused by: java.sql.SQLException: Error while writing value at JDBC bind index: 1 at org.jooq.impl.DefaultBindContext.bindValue0(DefaultBindContext.java:67) at org.jooq.impl.AbstractBindContext.bindValue(AbstractBindContext.java:124) ... 47 more Caused by: org.jooq.tools.reflect.ReflectException: java.lang.NoSuchMethodException: No similar method createARRAY with params [class java.lang.String, class [Ljava.lang.Object;] could be found on type class org.jooq.tools.jdbc.MockConnection. at org.jooq.tools.reflect.Reflect.call(Reflect.java:585) at org.jooq.impl.DefaultBinding$DefaultArrayRecordBinding.createOracleARRAY(DefaultBinding.java:1381) at org.jooq.impl.DefaultBinding$DefaultArrayRecordBinding.set0(DefaultBinding.java:1287) at org.jooq.impl.DefaultBinding$DefaultArrayRecordBinding.set0(DefaultBinding.java:1) at org.jooq.impl.DefaultBinding$AbstractBinding.set(DefaultBinding.java:848) at org.jooq.impl.DefaultBindContext.bindValue0(DefaultBindContext.java:62) ... 48 more Caused by: java.lang.NoSuchMethodException: No similar method createARRAY with params [class java.lang.String, class [Ljava.lang.Object;] could be found on type class org.jooq.tools.jdbc.MockConnection. at org.jooq.tools.reflect.Reflect.similarMethod(Reflect.java:652) at org.jooq.tools.reflect.Reflect.call(Reflect.java:582) ... 53 more ``` ---- Related: https://github.com/jOOQ/jOOQ/issues/10704
defect
error when mocking oracle routines that have varray or table parameters the following integration test fails java test public void testoraclemockprocedureswitharrayoutparameters throws exception ubooktablerecord expected new ubooktablerecord new ubooktyperecord b configuration c new defaultconfiguration set sqldialect oracle set new mockconnection mock of create newrecord field out table out table getdatatype values expected ubooktablerecord actual routines c new ubooktablerecord new ubooktyperecord a assertequals expected actual with this error org jooq exception dataaccessexception sql error while writing value at jdbc bind index at org jooq snapshot oracle debug unknown source at org jooq impl tools translate tools java at org jooq impl abstractbindcontext bindvalue abstractbindcontext java at org jooq impl arrayconstant arrayconstant java at org jooq impl arrayconstant accept arrayconstant java at org jooq impl abstractbindcontext bindinternal abstractbindcontext java at org jooq impl abstractbindcontext abstractbindcontext java at org jooq impl abstractcontext visit abstractcontext java at org jooq impl abstractroutine abstractroutine java at org jooq impl abstractroutine abstractroutine java at org jooq impl abstractroutine accept abstractroutine java at org jooq impl abstractbindcontext bindinternal abstractbindcontext java at org jooq impl abstractbindcontext abstractbindcontext java at org jooq impl abstractcontext visit abstractcontext java at org jooq impl abstractroutine executecallablestatement abstractroutine java at org jooq impl abstractroutine execute abstractroutine java at org jooq impl abstractroutine execute abstractroutine java at org jooq test oracle generatedclasses test routines routines java at org jooq test oracletest testoraclemockprocedureswitharrayoutparameters oracletest java caused by java sql sqlexception error while writing value at jdbc bind index at org jooq impl defaultbindcontext defaultbindcontext java at org jooq impl abstractbindcontext bindvalue abstractbindcontext java more caused by org jooq tools reflect reflectexception java lang nosuchmethodexception no similar method createarray with params could be found on type class org jooq tools jdbc mockconnection at org jooq tools reflect reflect call reflect java at org jooq impl defaultbinding defaultarrayrecordbinding createoraclearray defaultbinding java at org jooq impl defaultbinding defaultarrayrecordbinding defaultbinding java at org jooq impl defaultbinding defaultarrayrecordbinding defaultbinding java at org jooq impl defaultbinding abstractbinding set defaultbinding java at org jooq impl defaultbindcontext defaultbindcontext java more caused by java lang nosuchmethodexception no similar method createarray with params could be found on type class org jooq tools jdbc mockconnection at org jooq tools reflect reflect similarmethod reflect java at org jooq tools reflect reflect call reflect java more related
1
650,136
21,336,019,623
IssuesEvent
2022-04-18 14:39:45
kubernetes/website
https://api.github.com/repos/kubernetes/website
closed
Dockershim deprecation: Private registries support with Containerd
kind/feature sig/node priority/important-longterm language/en triage/accepted
**This is a Feature Request** For the dockershim deprecation migration guide this https://kubernetes.io/docs/concepts/containers/images/#configuring-nodes-to-authenticate-to-a-private-registry needs to be updated for other runtimes. **Why is this needed** As dockershim is deprecated, migration guides are needed (see #104878). KEP: https://github.com/kubernetes/enhancements/issues/2221 /sig node
1.0
Dockershim deprecation: Private registries support with Containerd - **This is a Feature Request** For the dockershim deprecation migration guide this https://kubernetes.io/docs/concepts/containers/images/#configuring-nodes-to-authenticate-to-a-private-registry needs to be updated for other runtimes. **Why is this needed** As dockershim is deprecated, migration guides are needed (see #104878). KEP: https://github.com/kubernetes/enhancements/issues/2221 /sig node
non_defect
dockershim deprecation private registries support with containerd this is a feature request for the dockershim deprecation migration guide this needs to be updated for other runtimes why is this needed as dockershim is deprecated migration guides are needed see kep sig node
0
393,402
26,990,500,537
IssuesEvent
2023-02-09 19:29:07
Arquisoft/lomap_en3b
https://api.github.com/repos/Arquisoft/lomap_en3b
opened
System scope: Technical Context
documentation
Documentation about the **technical context** section of Arc42 regarding lomap.
1.0
System scope: Technical Context - Documentation about the **technical context** section of Arc42 regarding lomap.
non_defect
system scope technical context documentation about the technical context section of regarding lomap
0
68,810
21,913,187,794
IssuesEvent
2022-05-21 11:43:58
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
opened
No button tooltips in fullscreen 1:1 call
T-Defect
### Steps to reproduce 1. video call 2. (the other person screen shares) 3. try to find the "hide sidebar" button ### Outcome #### What did you expect? tooltips when hovering over buttons like outside fullscreen #### What happened instead? no tooltips ### Operating system windows, arch ### Application version 1.10.12, nightly 220520 ### How did you install the app? _No response_ ### Homeserver _No response_ ### Will you send logs? No
1.0
No button tooltips in fullscreen 1:1 call - ### Steps to reproduce 1. video call 2. (the other person screen shares) 3. try to find the "hide sidebar" button ### Outcome #### What did you expect? tooltips when hovering over buttons like outside fullscreen #### What happened instead? no tooltips ### Operating system windows, arch ### Application version 1.10.12, nightly 220520 ### How did you install the app? _No response_ ### Homeserver _No response_ ### Will you send logs? No
defect
no button tooltips in fullscreen call steps to reproduce video call the other person screen shares try to find the hide sidebar button outcome what did you expect tooltips when hovering over buttons like outside fullscreen what happened instead no tooltips operating system windows arch application version nightly how did you install the app no response homeserver no response will you send logs no
1
42,045
10,866,815,378
IssuesEvent
2019-11-14 22:08:26
teambit/bit
https://api.github.com/repos/teambit/bit
closed
importing compiler missing dependencies
area/build area/import priority/critical type/bug
### Describe the bug Using the master to import babel compiler result missing dependencies ### Steps to Reproduce 1. `bit import bit.envs/compilers/babel -c` 1. open `.bit/components/compilers/babel/bit.envs/7.0.3/package.json` 1. there are missing dependencies master (b663d5bf83ffaedc64b70a42809953d1b6573898) deps: ``` "dependencies": { "@babel/plugin-proposal-class-properties": "7.3.4", "@babel/plugin-proposal-export-default-from": "^7.2.0", "@babel/plugin-proposal-export-namespace-from": "^7.2.0", "@babel/preset-env": "^7.3.4" }, ``` production ``` "dependencies": { "@babel/core": "^7.7.2", "@babel/plugin-proposal-class-properties": "7.3.4", "@babel/plugin-proposal-export-default-from": "^7.2.0", "@babel/plugin-proposal-export-namespace-from": "^7.2.0", "@babel/preset-env": "^7.3.4" }, ``` also, component dependencies like: `@bit/bit.envs.internal.babel-base-compiler` aren't exists in the master ### Expected Behavior Have all the dependencies ### Specifications - Bit version: master (b663d5bf83ffaedc64b70a42809953d1b6573898) - Node version: v10.16.0 - npm / yarn version: 6.11.3 - Platform: darwin - Bit compiler (include version): bit.envs/compilers/babel@7.0.3 - Bit tester (include version): none ### Additional context Add any other context about the problem here.
1.0
importing compiler missing dependencies - ### Describe the bug Using the master to import babel compiler result missing dependencies ### Steps to Reproduce 1. `bit import bit.envs/compilers/babel -c` 1. open `.bit/components/compilers/babel/bit.envs/7.0.3/package.json` 1. there are missing dependencies master (b663d5bf83ffaedc64b70a42809953d1b6573898) deps: ``` "dependencies": { "@babel/plugin-proposal-class-properties": "7.3.4", "@babel/plugin-proposal-export-default-from": "^7.2.0", "@babel/plugin-proposal-export-namespace-from": "^7.2.0", "@babel/preset-env": "^7.3.4" }, ``` production ``` "dependencies": { "@babel/core": "^7.7.2", "@babel/plugin-proposal-class-properties": "7.3.4", "@babel/plugin-proposal-export-default-from": "^7.2.0", "@babel/plugin-proposal-export-namespace-from": "^7.2.0", "@babel/preset-env": "^7.3.4" }, ``` also, component dependencies like: `@bit/bit.envs.internal.babel-base-compiler` aren't exists in the master ### Expected Behavior Have all the dependencies ### Specifications - Bit version: master (b663d5bf83ffaedc64b70a42809953d1b6573898) - Node version: v10.16.0 - npm / yarn version: 6.11.3 - Platform: darwin - Bit compiler (include version): bit.envs/compilers/babel@7.0.3 - Bit tester (include version): none ### Additional context Add any other context about the problem here.
non_defect
importing compiler missing dependencies describe the bug using the master to import babel compiler result missing dependencies steps to reproduce bit import bit envs compilers babel c open bit components compilers babel bit envs package json there are missing dependencies master deps dependencies babel plugin proposal class properties babel plugin proposal export default from babel plugin proposal export namespace from babel preset env production dependencies babel core babel plugin proposal class properties babel plugin proposal export default from babel plugin proposal export namespace from babel preset env also component dependencies like bit bit envs internal babel base compiler aren t exists in the master expected behavior have all the dependencies specifications bit version master node version npm yarn version platform darwin bit compiler include version bit envs compilers babel bit tester include version none additional context add any other context about the problem here
0
57,548
15,838,645,108
IssuesEvent
2021-04-06 22:56:08
jOOQ/jOOQ
https://api.github.com/repos/jOOQ/jOOQ
opened
DDLDatabase issue with array type
T: Defect
### Expected behavior Having a column definition in a DDLDatabase script like `previous_names VARCHAR(255)[] DEFAULT NULL,` I would expect a `VARCHAR` array to be generated. ### Actual behavior It generates: ``` public final TableField<HotelRecord, Object[]> PREVIOUS_NAMES = createField(DSL.name("previous_names"), SQLDataType.OTHER.getArrayDataType(), this, ""); ``` Probably this is because H2 does not support it? Although that seem to be added: https://github.com/h2database/h2database/issues/1390, but I'm not sure that is released yet, and probably won't be soon. Would there be any workarounds for this? ### Steps to reproduce the problem - If the problem relates to code generation, please post your code generation configuration I'm using `org.jooq.meta.extensions.ddl.DDLDatabase`. ### Versions - jOOQ: - Java: - Database (include vendor): - OS: - JDBC Driver (include name if inofficial driver):
1.0
DDLDatabase issue with array type - ### Expected behavior Having a column definition in a DDLDatabase script like `previous_names VARCHAR(255)[] DEFAULT NULL,` I would expect a `VARCHAR` array to be generated. ### Actual behavior It generates: ``` public final TableField<HotelRecord, Object[]> PREVIOUS_NAMES = createField(DSL.name("previous_names"), SQLDataType.OTHER.getArrayDataType(), this, ""); ``` Probably this is because H2 does not support it? Although that seem to be added: https://github.com/h2database/h2database/issues/1390, but I'm not sure that is released yet, and probably won't be soon. Would there be any workarounds for this? ### Steps to reproduce the problem - If the problem relates to code generation, please post your code generation configuration I'm using `org.jooq.meta.extensions.ddl.DDLDatabase`. ### Versions - jOOQ: - Java: - Database (include vendor): - OS: - JDBC Driver (include name if inofficial driver):
defect
ddldatabase issue with array type expected behavior having a column definition in a ddldatabase script like previous names varchar default null i would expect a varchar array to be generated actual behavior it generates public final tablefield previous names createfield dsl name previous names sqldatatype other getarraydatatype this probably this is because does not support it although that seem to be added but i m not sure that is released yet and probably won t be soon would there be any workarounds for this steps to reproduce the problem if the problem relates to code generation please post your code generation configuration i m using org jooq meta extensions ddl ddldatabase versions jooq java database include vendor os jdbc driver include name if inofficial driver
1
33,433
4,833,747,773
IssuesEvent
2016-11-08 12:07:01
handsontable/handsontable
https://api.github.com/repos/handsontable/handsontable
closed
Cell Comments: z-Index and position Bootstrap Modal
Plugin: comments Priority: normal Status: Merged (ready for release) Tested Type: Bug
When handsontable is used in Bootstrap Modal, comment box is not showing. If we increase the z-index, it shows. Also if we scroll down comment box is not showing at the correct position.
1.0
Cell Comments: z-Index and position Bootstrap Modal - When handsontable is used in Bootstrap Modal, comment box is not showing. If we increase the z-index, it shows. Also if we scroll down comment box is not showing at the correct position.
non_defect
cell comments z index and position bootstrap modal when handsontable is used in bootstrap modal comment box is not showing if we increase the z index it shows also if we scroll down comment box is not showing at the correct position
0
80,847
30,560,829,215
IssuesEvent
2023-07-20 14:30:35
vector-im/element-call
https://api.github.com/repos/vector-im/element-call
opened
Rejoining a call sometimes triggers an error saying 'The operation was aborted'
T-Defect S-Major O-Occasional
### Steps to reproduce 1. Be in a call 2. Exit the call to the main menu 3. Click on the call in your recents list to try to rejoin it ### Outcome #### What did you expect? I should get back to the lobby screen without any errors #### What happened instead? Instead of the lobby, I get an error screen: 'The operation was aborted'. This happens 50% of the time. ### Operating system NixOS unstable ### Browser information Firefox 115.0.0 ### URL for webapp element-call-livekit.netlify.app ### Will you send logs? Yes
1.0
Rejoining a call sometimes triggers an error saying 'The operation was aborted' - ### Steps to reproduce 1. Be in a call 2. Exit the call to the main menu 3. Click on the call in your recents list to try to rejoin it ### Outcome #### What did you expect? I should get back to the lobby screen without any errors #### What happened instead? Instead of the lobby, I get an error screen: 'The operation was aborted'. This happens 50% of the time. ### Operating system NixOS unstable ### Browser information Firefox 115.0.0 ### URL for webapp element-call-livekit.netlify.app ### Will you send logs? Yes
defect
rejoining a call sometimes triggers an error saying the operation was aborted steps to reproduce be in a call exit the call to the main menu click on the call in your recents list to try to rejoin it outcome what did you expect i should get back to the lobby screen without any errors what happened instead instead of the lobby i get an error screen the operation was aborted this happens of the time operating system nixos unstable browser information firefox url for webapp element call livekit netlify app will you send logs yes
1
4,650
2,610,137,500
IssuesEvent
2015-02-26 18:43:26
chrsmith/hedgewars
https://api.github.com/repos/chrsmith/hedgewars
closed
double load a save to see a crash
auto-migrated Priority-Low Type-Defect
``` What steps will reproduce the problem? 1. play a game (tried with quickgame) and generate a save 2. load it once, do something and then exit 3. load it again, the engine window will hang What is the expected output? What do you see instead? it should not hang, but resume from the last time it was loaded ``` ----- Original issue reported on code.google.com by `vittorio...@gmail.com` on 25 Sep 2010 at 1:13 * Merged into: #64
1.0
double load a save to see a crash - ``` What steps will reproduce the problem? 1. play a game (tried with quickgame) and generate a save 2. load it once, do something and then exit 3. load it again, the engine window will hang What is the expected output? What do you see instead? it should not hang, but resume from the last time it was loaded ``` ----- Original issue reported on code.google.com by `vittorio...@gmail.com` on 25 Sep 2010 at 1:13 * Merged into: #64
defect
double load a save to see a crash what steps will reproduce the problem play a game tried with quickgame and generate a save load it once do something and then exit load it again the engine window will hang what is the expected output what do you see instead it should not hang but resume from the last time it was loaded original issue reported on code google com by vittorio gmail com on sep at merged into
1
528,275
15,363,242,333
IssuesEvent
2021-03-01 20:32:26
jazkarta/jazkarta.com
https://api.github.com/repos/jazkarta/jazkarta.com
closed
https://jazkarta.com/@@syndication-controlpanel gives a traceback
low priority
Traceback (innermost last): Module ZPublisher.Publish, line 138, in publish Module ZPublisher.mapply, line 77, in mapply Module ZPublisher.Publish, line 48, in call_object Module plone.z3cform.layout, line 66, in __call__ Module plone.z3cform.layout, line 50, in update Module Products.CMFPlone.controlpanel.browser.syndication, line 51, in update Module plone.z3cform.fieldsets.extensible, line 59, in update Module plone.z3cform.patch, line 30, in GroupForm_update Module z3c.form.group, line 132, in update Module z3c.form.form, line 129, in updateWidgets Module plone.app.registry.browser.controlpanel, line 50, in getContent Module plone.registry.registry, line 78, in forInterface KeyError: 'Interface `Products.CMFPlone.interfaces.syndication.ISiteSyndicationSettings` defines a field `render_body`, for which there is no record.'
1.0
https://jazkarta.com/@@syndication-controlpanel gives a traceback - Traceback (innermost last): Module ZPublisher.Publish, line 138, in publish Module ZPublisher.mapply, line 77, in mapply Module ZPublisher.Publish, line 48, in call_object Module plone.z3cform.layout, line 66, in __call__ Module plone.z3cform.layout, line 50, in update Module Products.CMFPlone.controlpanel.browser.syndication, line 51, in update Module plone.z3cform.fieldsets.extensible, line 59, in update Module plone.z3cform.patch, line 30, in GroupForm_update Module z3c.form.group, line 132, in update Module z3c.form.form, line 129, in updateWidgets Module plone.app.registry.browser.controlpanel, line 50, in getContent Module plone.registry.registry, line 78, in forInterface KeyError: 'Interface `Products.CMFPlone.interfaces.syndication.ISiteSyndicationSettings` defines a field `render_body`, for which there is no record.'
non_defect
gives a traceback traceback innermost last module zpublisher publish line in publish module zpublisher mapply line in mapply module zpublisher publish line in call object module plone layout line in call module plone layout line in update module products cmfplone controlpanel browser syndication line in update module plone fieldsets extensible line in update module plone patch line in groupform update module form group line in update module form form line in updatewidgets module plone app registry browser controlpanel line in getcontent module plone registry registry line in forinterface keyerror interface products cmfplone interfaces syndication isitesyndicationsettings defines a field render body for which there is no record
0
727,456
25,036,074,229
IssuesEvent
2022-11-04 16:07:39
planetary-social/scuttlego
https://api.github.com/repos/planetary-social/scuttlego
closed
Properly handle error cases when registering aliases
enhancement priority/high
We want to return a predefined error when an alias is already taken.
1.0
Properly handle error cases when registering aliases - We want to return a predefined error when an alias is already taken.
non_defect
properly handle error cases when registering aliases we want to return a predefined error when an alias is already taken
0
76,559
26,489,979,057
IssuesEvent
2023-01-17 21:37:31
DiffSK/configobj
https://api.github.com/repos/DiffSK/configobj
closed
validate package scoping causes incorrect package namespacing
defect
I believe that I have found a bug in the `configobj`/`validate` interaction. I am not entirely sure if this code is causing a user-facing issue, but I am fairly certain that the code below is not behaving as intended. https://github.com/DiffSK/configobj/blob/master/src/configobj/__init__.py#L2177 excerpt: ``` python if not preserve_errors or isinstance(cause, self._vdtMissingValue): ``` The import of validate ([__init__.py#L2142](https://github.com/DiffSK/configobj/blob/master/src/configobj/__init__.py#L2142)) is relative, and the resulting classes are namespaced within configobj: `<class 'configobj.validate.VdtMissingValue'>` - causing the above test to fallthrough. This is causing additional problems when I attempt to raise `VdtMissingDefinition` (PR https://github.com/DiffSK/configobj/pull/127) from configobj, as the resulting `preserve_errors` dictionary contains exceptions with differing namespaces, forcing awkward imports from external code which would like to test entry error types.
1.0
validate package scoping causes incorrect package namespacing - I believe that I have found a bug in the `configobj`/`validate` interaction. I am not entirely sure if this code is causing a user-facing issue, but I am fairly certain that the code below is not behaving as intended. https://github.com/DiffSK/configobj/blob/master/src/configobj/__init__.py#L2177 excerpt: ``` python if not preserve_errors or isinstance(cause, self._vdtMissingValue): ``` The import of validate ([__init__.py#L2142](https://github.com/DiffSK/configobj/blob/master/src/configobj/__init__.py#L2142)) is relative, and the resulting classes are namespaced within configobj: `<class 'configobj.validate.VdtMissingValue'>` - causing the above test to fallthrough. This is causing additional problems when I attempt to raise `VdtMissingDefinition` (PR https://github.com/DiffSK/configobj/pull/127) from configobj, as the resulting `preserve_errors` dictionary contains exceptions with differing namespaces, forcing awkward imports from external code which would like to test entry error types.
defect
validate package scoping causes incorrect package namespacing i believe that i have found a bug in the configobj validate interaction i am not entirely sure if this code is causing a user facing issue but i am fairly certain that the code below is not behaving as intended excerpt python if not preserve errors or isinstance cause self vdtmissingvalue the import of validate is relative and the resulting classes are namespaced within configobj causing the above test to fallthrough this is causing additional problems when i attempt to raise vdtmissingdefinition pr from configobj as the resulting preserve errors dictionary contains exceptions with differing namespaces forcing awkward imports from external code which would like to test entry error types
1
35,039
7,527,108,260
IssuesEvent
2018-04-13 15:56:50
stevespringett/dependency-track
https://api.github.com/repos/stevespringett/dependency-track
closed
Previous dependencies are not removed from project
defect pending release
I'm submitting dependency-check xml reports from a CI build for a multimodule project. As discussed on the OWASP slack, old dependencies are not removed, so each subproject is added once for each build (as their hash changes). Also for upgraded dependencies (jackson 2.9.4 -> 2.9.5), both versions exist in the project. Expected behaviour: Should remove old dependencies from project Future requirement: CI builds will create a lot of versions of the same component ( example-module 1.2.0) because CI will submit a new version (new hash) every time. These should either be grouped under the same component name / version, or it should be possible to set some kind of component/policy or per-component-policy (overwrite previous versions with same purl or similar).
1.0
Previous dependencies are not removed from project - I'm submitting dependency-check xml reports from a CI build for a multimodule project. As discussed on the OWASP slack, old dependencies are not removed, so each subproject is added once for each build (as their hash changes). Also for upgraded dependencies (jackson 2.9.4 -> 2.9.5), both versions exist in the project. Expected behaviour: Should remove old dependencies from project Future requirement: CI builds will create a lot of versions of the same component ( example-module 1.2.0) because CI will submit a new version (new hash) every time. These should either be grouped under the same component name / version, or it should be possible to set some kind of component/policy or per-component-policy (overwrite previous versions with same purl or similar).
defect
previous dependencies are not removed from project i m submitting dependency check xml reports from a ci build for a multimodule project as discussed on the owasp slack old dependencies are not removed so each subproject is added once for each build as their hash changes also for upgraded dependencies jackson both versions exist in the project expected behaviour should remove old dependencies from project future requirement ci builds will create a lot of versions of the same component example module because ci will submit a new version new hash every time these should either be grouped under the same component name version or it should be possible to set some kind of component policy or per component policy overwrite previous versions with same purl or similar
1
76,715
7,543,820,142
IssuesEvent
2018-04-17 16:31:59
infiniteautomation/ma-core-public
https://api.github.com/repos/infiniteautomation/ma-core-public
closed
Persistent TCP - Don't purge un-published point values
Ready for Testing
Devise a way to avoid purging data that has yet to be published.
1.0
Persistent TCP - Don't purge un-published point values - Devise a way to avoid purging data that has yet to be published.
non_defect
persistent tcp don t purge un published point values devise a way to avoid purging data that has yet to be published
0
100,954
8,761,473,286
IssuesEvent
2018-12-16 17:45:11
KyungjeCho/ddib_backend
https://api.github.com/repos/KyungjeCho/ddib_backend
closed
wishlist DELETE API
enhancement wait_test
wishlist DELETE API 구현 METHOD : POST PARAMS : iid HEADERS : Authorization URL : server-name/api/wishlist/delete RETURN : { success : boolean } - [x] add api & implement - [x] Update README.md file - [x] local test - [x] upload to server - [x] aws test
1.0
wishlist DELETE API - wishlist DELETE API 구현 METHOD : POST PARAMS : iid HEADERS : Authorization URL : server-name/api/wishlist/delete RETURN : { success : boolean } - [x] add api & implement - [x] Update README.md file - [x] local test - [x] upload to server - [x] aws test
non_defect
wishlist delete api wishlist delete api 구현 method post params iid headers authorization url server name api wishlist delete return success boolean add api implement update readme md file local test upload to server aws test
0
51,054
13,188,067,373
IssuesEvent
2020-08-13 05:27:39
icecube-trac/tix3
https://api.github.com/repos/icecube-trac/tix3
closed
[vuvuzela] Handling new hardware we don't want to simulate (Trac #1895)
Migrated from Trac combo simulation defect
For IceACT DOMs in the new 2016 GCD file there are no vuvuzela parameters. Running the test generates the following error. RuntimeError: DOM 00-01 has no Vuvuzela parameters in GCD file! If you want to simply use the default values, enable SimulateNewDOMs. (in I3MCPESeriesMapConstPtr Vuvuzela::GetNoiseHits(const I3Calibration&, double, double)) I don't to set SimulateNewDOMs to True, since I don't want to simulate noise for this hardware at all. There are multiple ways to handle this. This might block 2016 production, though perhaps it doesn't for other reasons. Need Mike and Juan Carlos to look into this. For now that log_fatal was changed to a log_debug. This is just a temporary bandaid though. <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/1895">https://code.icecube.wisc.edu/ticket/1895</a>, reported by olivas and owned by mjl5147</em></summary> <p> ```json { "status": "closed", "changetime": "2019-02-13T14:13:24", "description": "For IceACT DOMs in the new 2016 GCD file there are no vuvuzela parameters. Running the test generates the following error.\n\nRuntimeError: DOM 00-01 has no Vuvuzela parameters in GCD file! If you want to simply use the default values, enable SimulateNewDOMs. (in I3MCPESeriesMapConstPtr Vuvuzela::GetNoiseHits(const I3Calibration&, double, double))\n\nI don't to set SimulateNewDOMs to True, since I don't want to simulate noise for this hardware at all. There are multiple ways to handle this. This might block 2016 production, though perhaps it doesn't for other reasons. Need Mike and Juan Carlos to look into this.\n\nFor now that log_fatal was changed to a log_debug. This is just a temporary bandaid though.\n", "reporter": "olivas", "cc": "juancarlos", "resolution": "fixed", "_ts": "1550067204154158", "component": "combo simulation", "summary": "[vuvuzela] Handling new hardware we don't want to simulate", "priority": "blocker", "keywords": "", "time": "2016-10-13T20:48:57", "milestone": "", "owner": "mjl5147", "type": "defect" } ``` </p> </details>
1.0
[vuvuzela] Handling new hardware we don't want to simulate (Trac #1895) - For IceACT DOMs in the new 2016 GCD file there are no vuvuzela parameters. Running the test generates the following error. RuntimeError: DOM 00-01 has no Vuvuzela parameters in GCD file! If you want to simply use the default values, enable SimulateNewDOMs. (in I3MCPESeriesMapConstPtr Vuvuzela::GetNoiseHits(const I3Calibration&, double, double)) I don't to set SimulateNewDOMs to True, since I don't want to simulate noise for this hardware at all. There are multiple ways to handle this. This might block 2016 production, though perhaps it doesn't for other reasons. Need Mike and Juan Carlos to look into this. For now that log_fatal was changed to a log_debug. This is just a temporary bandaid though. <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/1895">https://code.icecube.wisc.edu/ticket/1895</a>, reported by olivas and owned by mjl5147</em></summary> <p> ```json { "status": "closed", "changetime": "2019-02-13T14:13:24", "description": "For IceACT DOMs in the new 2016 GCD file there are no vuvuzela parameters. Running the test generates the following error.\n\nRuntimeError: DOM 00-01 has no Vuvuzela parameters in GCD file! If you want to simply use the default values, enable SimulateNewDOMs. (in I3MCPESeriesMapConstPtr Vuvuzela::GetNoiseHits(const I3Calibration&, double, double))\n\nI don't to set SimulateNewDOMs to True, since I don't want to simulate noise for this hardware at all. There are multiple ways to handle this. This might block 2016 production, though perhaps it doesn't for other reasons. Need Mike and Juan Carlos to look into this.\n\nFor now that log_fatal was changed to a log_debug. This is just a temporary bandaid though.\n", "reporter": "olivas", "cc": "juancarlos", "resolution": "fixed", "_ts": "1550067204154158", "component": "combo simulation", "summary": "[vuvuzela] Handling new hardware we don't want to simulate", "priority": "blocker", "keywords": "", "time": "2016-10-13T20:48:57", "milestone": "", "owner": "mjl5147", "type": "defect" } ``` </p> </details>
defect
handling new hardware we don t want to simulate trac for iceact doms in the new gcd file there are no vuvuzela parameters running the test generates the following error runtimeerror dom has no vuvuzela parameters in gcd file if you want to simply use the default values enable simulatenewdoms in vuvuzela getnoisehits const double double i don t to set simulatenewdoms to true since i don t want to simulate noise for this hardware at all there are multiple ways to handle this this might block production though perhaps it doesn t for other reasons need mike and juan carlos to look into this for now that log fatal was changed to a log debug this is just a temporary bandaid though migrated from json status closed changetime description for iceact doms in the new gcd file there are no vuvuzela parameters running the test generates the following error n nruntimeerror dom has no vuvuzela parameters in gcd file if you want to simply use the default values enable simulatenewdoms in vuvuzela getnoisehits const double double n ni don t to set simulatenewdoms to true since i don t want to simulate noise for this hardware at all there are multiple ways to handle this this might block production though perhaps it doesn t for other reasons need mike and juan carlos to look into this n nfor now that log fatal was changed to a log debug this is just a temporary bandaid though n reporter olivas cc juancarlos resolution fixed ts component combo simulation summary handling new hardware we don t want to simulate priority blocker keywords time milestone owner type defect
1
39,104
8,580,118,039
IssuesEvent
2018-11-13 11:01:32
galtspace/galtproject-contracts
https://api.github.com/repos/galtspace/galtproject-contracts
closed
Contract library for Bentley Ottman algorithm
codetree-epic
Sources: - [Bentley Ottman javascript implemetation](https://github.com/ggolikov/bentley-ottman/) - [Bentley Ottman python implemetation](https://github.com/splichte/lsi) - [Bentley Ottman wiki](https://ru.wikipedia.org/wiki/%D0%90%D0%BB%D0%B3%D0%BE%D1%80%D0%B8%D1%82%D0%BC_%D0%91%D0%B5%D0%BD%D1%82%D0%BB%D0%B8_%E2%80%94_%D0%9E%D1%82%D1%82%D0%BC%D0%B0%D0%BD%D0%BD%D0%B0) - [Sweep-line algorithms, an video example](https://www.youtube.com/watch?v=phrSBwaBs7o) - [Red-black tree implementation in Solidity for Bentley Ottman implemetation](https://github.com/AtlantPlatform/rbt-solidity) - [Weiler-Atherton video tutorial](https://www.youtube.com/watch?v=LCMyWFxeuro) - [Weiler-Atherton rust implemetation](https://github.com/lempiy/Weiler-Atherton-Clipping) - [Explain Weiler-Atherton polygon clipping algorithm on ques10](http://www.ques10.com/p/22055/explain-weiler-atherton-polygon-clipping-algorit-2/) - [Student's research about Weiler-Atherton](https://www.cg.tuwien.ac.at/research/publications/2014/WINKLER-2013-AMO/WINKLER-2013-AMO-Thesis.pdf) - [Princeton University Algorithms course](https://www.coursera.org/learn/algorithms-part1/home/welcome) - http://www.ams.sunysb.edu/~jsbm/courses/345/13/bentley-ottmann.pdf - https://bl.ocks.org/1wheel/464141fe9b940153e636
1.0
Contract library for Bentley Ottman algorithm - Sources: - [Bentley Ottman javascript implemetation](https://github.com/ggolikov/bentley-ottman/) - [Bentley Ottman python implemetation](https://github.com/splichte/lsi) - [Bentley Ottman wiki](https://ru.wikipedia.org/wiki/%D0%90%D0%BB%D0%B3%D0%BE%D1%80%D0%B8%D1%82%D0%BC_%D0%91%D0%B5%D0%BD%D1%82%D0%BB%D0%B8_%E2%80%94_%D0%9E%D1%82%D1%82%D0%BC%D0%B0%D0%BD%D0%BD%D0%B0) - [Sweep-line algorithms, an video example](https://www.youtube.com/watch?v=phrSBwaBs7o) - [Red-black tree implementation in Solidity for Bentley Ottman implemetation](https://github.com/AtlantPlatform/rbt-solidity) - [Weiler-Atherton video tutorial](https://www.youtube.com/watch?v=LCMyWFxeuro) - [Weiler-Atherton rust implemetation](https://github.com/lempiy/Weiler-Atherton-Clipping) - [Explain Weiler-Atherton polygon clipping algorithm on ques10](http://www.ques10.com/p/22055/explain-weiler-atherton-polygon-clipping-algorit-2/) - [Student's research about Weiler-Atherton](https://www.cg.tuwien.ac.at/research/publications/2014/WINKLER-2013-AMO/WINKLER-2013-AMO-Thesis.pdf) - [Princeton University Algorithms course](https://www.coursera.org/learn/algorithms-part1/home/welcome) - http://www.ams.sunysb.edu/~jsbm/courses/345/13/bentley-ottmann.pdf - https://bl.ocks.org/1wheel/464141fe9b940153e636
non_defect
contract library for bentley ottman algorithm sources
0
276,630
8,603,332,307
IssuesEvent
2018-11-16 16:32:16
bedita/web
https://api.github.com/repos/bedita/web
opened
Image preview on panel for images
Priority - Normal feature
When panel is open, images should show image preview (use thumbnailer)
1.0
Image preview on panel for images - When panel is open, images should show image preview (use thumbnailer)
non_defect
image preview on panel for images when panel is open images should show image preview use thumbnailer
0
63,645
17,840,168,689
IssuesEvent
2021-09-03 09:02:44
martinrotter/rssguard
https://api.github.com/repos/martinrotter/rssguard
closed
[BUG]: 4.x fails to fetch feeds with socks proxy
Type-Defect
### Brief description of the issue Rssguard fails to fetch any feeds when using a proxy but, it does seem to get the feed meta data ok. ### How to reproduce the bug? Try to fetch new feeds on one or all feeds. Rssguard fails to fetch any feeds. ### What was the expected result? New feeds should be updated when you fetch them. ### What actually happened? Rssguard fails to fetch any feeds. ### Other information Log: https://pastebin.com/WMwdcB3L ### Operating system and version * OS: 4.0.0 * RSS Guard version: Debian
1.0
[BUG]: 4.x fails to fetch feeds with socks proxy - ### Brief description of the issue Rssguard fails to fetch any feeds when using a proxy but, it does seem to get the feed meta data ok. ### How to reproduce the bug? Try to fetch new feeds on one or all feeds. Rssguard fails to fetch any feeds. ### What was the expected result? New feeds should be updated when you fetch them. ### What actually happened? Rssguard fails to fetch any feeds. ### Other information Log: https://pastebin.com/WMwdcB3L ### Operating system and version * OS: 4.0.0 * RSS Guard version: Debian
defect
x fails to fetch feeds with socks proxy brief description of the issue rssguard fails to fetch any feeds when using a proxy but it does seem to get the feed meta data ok how to reproduce the bug try to fetch new feeds on one or all feeds rssguard fails to fetch any feeds what was the expected result new feeds should be updated when you fetch them what actually happened rssguard fails to fetch any feeds other information log operating system and version os rss guard version debian
1
688,794
23,596,349,341
IssuesEvent
2022-08-23 19:38:32
GoogleChrome/lighthouse
https://api.github.com/repos/GoogleChrome/lighthouse
closed
PSI Lighthouse now returns cached versions when running subsequent requests.
question needs-priority
### FAQ - [ ] Yes, my issue is not about [variability](https://github.com/GoogleChrome/lighthouse/blob/master/docs/variability.md) or [throttling](https://github.com/GoogleChrome/lighthouse/blob/master/docs/throttling.md). - [X] Yes, my issue is not about a specific accessibility audit (file with [axe-core](https://github.com/dequelabs/axe-core) instead). ### URL https://tekton.com ### What happened? Hello, I'm not sure where the best place is to report this issue, so please let me know! I've noticed this past week, the PSI API (including pagespeed.web.dev) will now return cached results for subsequent requests for insights of the same URL. This is a hindrance when running multiple PSI requests for the same URL in hopes of using the median score due to [perf score variability](https://github.com/GoogleChrome/lighthouse/blob/master/docs/variability.md?rgh-link-date=2022-07-22T16%3A19%3A31Z) as noted on Google's Lighthouse reports. Any help would be great. Thank you. ### What did you expect? It would be great if subsequent requests did not return cached results for statistical reasons. ### What have you tried? I've tried waiting a few minutes before running the tests again and it seems to work. But this is not an ideal workaround. ### How were you running Lighthouse? CLI, PageSpeed Insights ### Lighthouse Version 9.6.2 ### Chrome Version _No response_ ### Node Version 16.15.1 ### OS Mac ### Relevant log output _No response_
1.0
PSI Lighthouse now returns cached versions when running subsequent requests. - ### FAQ - [ ] Yes, my issue is not about [variability](https://github.com/GoogleChrome/lighthouse/blob/master/docs/variability.md) or [throttling](https://github.com/GoogleChrome/lighthouse/blob/master/docs/throttling.md). - [X] Yes, my issue is not about a specific accessibility audit (file with [axe-core](https://github.com/dequelabs/axe-core) instead). ### URL https://tekton.com ### What happened? Hello, I'm not sure where the best place is to report this issue, so please let me know! I've noticed this past week, the PSI API (including pagespeed.web.dev) will now return cached results for subsequent requests for insights of the same URL. This is a hindrance when running multiple PSI requests for the same URL in hopes of using the median score due to [perf score variability](https://github.com/GoogleChrome/lighthouse/blob/master/docs/variability.md?rgh-link-date=2022-07-22T16%3A19%3A31Z) as noted on Google's Lighthouse reports. Any help would be great. Thank you. ### What did you expect? It would be great if subsequent requests did not return cached results for statistical reasons. ### What have you tried? I've tried waiting a few minutes before running the tests again and it seems to work. But this is not an ideal workaround. ### How were you running Lighthouse? CLI, PageSpeed Insights ### Lighthouse Version 9.6.2 ### Chrome Version _No response_ ### Node Version 16.15.1 ### OS Mac ### Relevant log output _No response_
non_defect
psi lighthouse now returns cached versions when running subsequent requests faq yes my issue is not about or yes my issue is not about a specific accessibility audit file with instead url what happened hello i m not sure where the best place is to report this issue so please let me know i ve noticed this past week the psi api including pagespeed web dev will now return cached results for subsequent requests for insights of the same url this is a hindrance when running multiple psi requests for the same url in hopes of using the median score due to as noted on google s lighthouse reports any help would be great thank you what did you expect it would be great if subsequent requests did not return cached results for statistical reasons what have you tried i ve tried waiting a few minutes before running the tests again and it seems to work but this is not an ideal workaround how were you running lighthouse cli pagespeed insights lighthouse version chrome version no response node version os mac relevant log output no response
0
412,407
27,857,279,971
IssuesEvent
2023-03-21 00:44:39
serai-dex/serai
https://api.github.com/repos/serai-dex/serai
closed
rustdocs improperly utilized
documentation improvement
- I personally left comments without periods. This does not carry to rustdocs. - We extensively use features, yet those aren't currently included under the generated rustdocs. - Multiple items aren't documented at all. - No library-level documentation. Primary targets for this is FROST and the other cryptography libraries, yet also the Monero lib (potentially worth being under #102).
1.0
rustdocs improperly utilized - - I personally left comments without periods. This does not carry to rustdocs. - We extensively use features, yet those aren't currently included under the generated rustdocs. - Multiple items aren't documented at all. - No library-level documentation. Primary targets for this is FROST and the other cryptography libraries, yet also the Monero lib (potentially worth being under #102).
non_defect
rustdocs improperly utilized i personally left comments without periods this does not carry to rustdocs we extensively use features yet those aren t currently included under the generated rustdocs multiple items aren t documented at all no library level documentation primary targets for this is frost and the other cryptography libraries yet also the monero lib potentially worth being under
0
66,740
20,612,999,889
IssuesEvent
2022-03-07 10:28:03
jOOQ/jOOQ
https://api.github.com/repos/jOOQ/jOOQ
closed
SQLite's JSON operators don't retain boolean three-valued logic
T: Defect C: Functionality C: DB: SQLite P: Medium E: All Editions
The SQLite boolean in JSON emulation does not maintain three-valued logic correctly. For example, this query is being generated in a test: ```sql select ( select coalesce( json_group_array(json_array(json(case when v0 then 'true' else 'false' end))), json_array() ) from ( select null as v0 union all select 1 as a ) as t ) ``` When it should be this: ```sql select ( select coalesce( json_group_array(json_array(json(case when v0 then 'true' when not v0 then 'false' -- keep NULL values as NULL end))), json_array() ) from ( select null as v0 union all select 1 as a ) as t ) ```
1.0
SQLite's JSON operators don't retain boolean three-valued logic - The SQLite boolean in JSON emulation does not maintain three-valued logic correctly. For example, this query is being generated in a test: ```sql select ( select coalesce( json_group_array(json_array(json(case when v0 then 'true' else 'false' end))), json_array() ) from ( select null as v0 union all select 1 as a ) as t ) ``` When it should be this: ```sql select ( select coalesce( json_group_array(json_array(json(case when v0 then 'true' when not v0 then 'false' -- keep NULL values as NULL end))), json_array() ) from ( select null as v0 union all select 1 as a ) as t ) ```
defect
sqlite s json operators don t retain boolean three valued logic the sqlite boolean in json emulation does not maintain three valued logic correctly for example this query is being generated in a test sql select select coalesce json group array json array json case when then true else false end json array from select null as union all select as a as t when it should be this sql select select coalesce json group array json array json case when then true when not then false keep null values as null end json array from select null as union all select as a as t
1
12,921
8,038,355,272
IssuesEvent
2018-07-30 15:10:50
AnotherCodeArtist/SCDP
https://api.github.com/repos/AnotherCodeArtist/SCDP
reopened
Install Hadoop on Kubernetes
AP2 high performance database
A major part of the SDPG will be Hadoop and its relevant Plugins. All required nodes should be rolled out on the local cloud using kubernetes
True
Install Hadoop on Kubernetes - A major part of the SDPG will be Hadoop and its relevant Plugins. All required nodes should be rolled out on the local cloud using kubernetes
non_defect
install hadoop on kubernetes a major part of the sdpg will be hadoop and its relevant plugins all required nodes should be rolled out on the local cloud using kubernetes
0
59,354
17,023,096,223
IssuesEvent
2021-07-03 00:21:48
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
closed
applet fixes
Component: admin Priority: major Resolution: fixed Type: defect
**[Submitted to the original trac issue database at 8.36pm, Tuesday, 17th January 2006]** remove html arrow buttons from edit window make applet have a clear tool for dragging rather than using shift add a warning to not believe landsat
1.0
applet fixes - **[Submitted to the original trac issue database at 8.36pm, Tuesday, 17th January 2006]** remove html arrow buttons from edit window make applet have a clear tool for dragging rather than using shift add a warning to not believe landsat
defect
applet fixes remove html arrow buttons from edit window make applet have a clear tool for dragging rather than using shift add a warning to not believe landsat
1
373,309
26,048,901,077
IssuesEvent
2022-12-22 16:43:12
gatling/gatling
https://api.github.com/repos/gatling/gatling
closed
Documentation: Can't scroll with Up/Down Arrow Keys
Documentation Type - Feature
On all pages in Internet (Main page of Gatling too ;)) it's posibble to scroll up and down by Arrow Keys. In [Gatling Documentation]( https://gatling.io/docs/gatling/) this isn't working and this can be frustrating :/ Can you fix this please :)
1.0
Documentation: Can't scroll with Up/Down Arrow Keys - On all pages in Internet (Main page of Gatling too ;)) it's posibble to scroll up and down by Arrow Keys. In [Gatling Documentation]( https://gatling.io/docs/gatling/) this isn't working and this can be frustrating :/ Can you fix this please :)
non_defect
documentation can t scroll with up down arrow keys on all pages in internet main page of gatling too it s posibble to scroll up and down by arrow keys in this isn t working and this can be frustrating can you fix this please
0
1,908
2,603,973,240
IssuesEvent
2015-02-24 19:00:49
chrsmith/nishazi6
https://api.github.com/repos/chrsmith/nishazi6
opened
沈阳龟头有颗粒是怎么回事
auto-migrated Priority-Medium Type-Defect
``` 沈阳龟头有颗粒是怎么回事〓沈陽軍區政治部醫院性病〓TEL�� �024-31023308〓成立于1946年,68年專注于性傳播疾病的研究和治� ��。位于沈陽市沈河區二緯路32號。是一所與新中國同建立共� ��煌的歷史悠久、設備精良、技術權威、專家云集,是預防、 保健、醫療、科研康復為一體的綜合性醫院。是國家首批公�� �甲等部隊醫院、全國首批醫療規范定點單位,是第四軍醫大� ��、東南大學等知名高等院校的教學醫院。曾被中國人民解放 軍空軍后勤部衛生部評為衛生工作先進單位,先后兩次榮立�� �體二等功。 ``` ----- Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 8:05
1.0
沈阳龟头有颗粒是怎么回事 - ``` 沈阳龟头有颗粒是怎么回事〓沈陽軍區政治部醫院性病〓TEL�� �024-31023308〓成立于1946年,68年專注于性傳播疾病的研究和治� ��。位于沈陽市沈河區二緯路32號。是一所與新中國同建立共� ��煌的歷史悠久、設備精良、技術權威、專家云集,是預防、 保健、醫療、科研康復為一體的綜合性醫院。是國家首批公�� �甲等部隊醫院、全國首批醫療規范定點單位,是第四軍醫大� ��、東南大學等知名高等院校的教學醫院。曾被中國人民解放 軍空軍后勤部衛生部評為衛生工作先進單位,先后兩次榮立�� �體二等功。 ``` ----- Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 8:05
defect
沈阳龟头有颗粒是怎么回事 沈阳龟头有颗粒是怎么回事〓沈陽軍區政治部醫院性病〓tel�� � 〓 , � ��。 。是一所與新中國同建立共� ��煌的歷史悠久、設備精良、技術權威、專家云集,是預防、 保健、醫療、科研康復為一體的綜合性醫院。是國家首批公�� �甲等部隊醫院、全國首批醫療規范定點單位,是第四軍醫大� ��、東南大學等知名高等院校的教學醫院。曾被中國人民解放 軍空軍后勤部衛生部評為衛生工作先進單位,先后兩次榮立�� �體二等功。 original issue reported on code google com by gmail com on jun at
1
95,232
16,074,462,292
IssuesEvent
2021-04-25 04:23:20
samq-ghdemo/JS-Demo
https://api.github.com/repos/samq-ghdemo/JS-Demo
closed
CVE-2019-16776 (High) detected in npm-3.10.10.tgz - autoclosed
security vulnerability
## CVE-2019-16776 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>npm-3.10.10.tgz</b></p></summary> <p>a package manager for JavaScript</p> <p>Library home page: <a href="https://registry.npmjs.org/npm/-/npm-3.10.10.tgz">https://registry.npmjs.org/npm/-/npm-3.10.10.tgz</a></p> <p>Path to dependency file: JS-Demo/package.json</p> <p>Path to vulnerable library: JS-Demo/node_modules/npm/package.json</p> <p> Dependency Hierarchy: - grunt-npm-install-0.3.1.tgz (Root Library) - :x: **npm-3.10.10.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/samq-ghdemo/JS-Demo/commit/46781df511f58c350408cb5158290290709b373c">46781df511f58c350408cb5158290290709b373c</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Versions of the npm CLI prior to 6.13.3 are vulnerable to an Arbitrary File Write. It fails to prevent access to folders outside of the intended node_modules folder through the bin field. A properly constructed entry in the package.json bin field would allow a package publisher to modify and/or gain access to arbitrary files on a user's system when the package is installed. This behavior is still possible through install scripts. This vulnerability bypasses a user using the --ignore-scripts install option. <p>Publish Date: 2019-12-13 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-16776>CVE-2019-16776</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>8.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - 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://blog.npmjs.org/post/189618601100/binary-planting-with-the-npm-cli">https://blog.npmjs.org/post/189618601100/binary-planting-with-the-npm-cli</a></p> <p>Release Date: 2019-12-13</p> <p>Fix Resolution: npm - 6.13.3;yarn - 1.21.1</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"npm","packageVersion":"3.10.10","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"grunt-npm-install:0.3.1;npm:3.10.10","isMinimumFixVersionAvailable":true,"minimumFixVersion":"npm - 6.13.3;yarn - 1.21.1"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2019-16776","vulnerabilityDetails":"Versions of the npm CLI prior to 6.13.3 are vulnerable to an Arbitrary File Write. It fails to prevent access to folders outside of the intended node_modules folder through the bin field. A properly constructed entry in the package.json bin field would allow a package publisher to modify and/or gain access to arbitrary files on a user\u0027s system when the package is installed. This behavior is still possible through install scripts. This vulnerability bypasses a user using the --ignore-scripts install option.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-16776","cvss3Severity":"high","cvss3Score":"8.1","cvss3Metrics":{"A":"None","AC":"Low","PR":"Low","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> -->
True
CVE-2019-16776 (High) detected in npm-3.10.10.tgz - autoclosed - ## CVE-2019-16776 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>npm-3.10.10.tgz</b></p></summary> <p>a package manager for JavaScript</p> <p>Library home page: <a href="https://registry.npmjs.org/npm/-/npm-3.10.10.tgz">https://registry.npmjs.org/npm/-/npm-3.10.10.tgz</a></p> <p>Path to dependency file: JS-Demo/package.json</p> <p>Path to vulnerable library: JS-Demo/node_modules/npm/package.json</p> <p> Dependency Hierarchy: - grunt-npm-install-0.3.1.tgz (Root Library) - :x: **npm-3.10.10.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/samq-ghdemo/JS-Demo/commit/46781df511f58c350408cb5158290290709b373c">46781df511f58c350408cb5158290290709b373c</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Versions of the npm CLI prior to 6.13.3 are vulnerable to an Arbitrary File Write. It fails to prevent access to folders outside of the intended node_modules folder through the bin field. A properly constructed entry in the package.json bin field would allow a package publisher to modify and/or gain access to arbitrary files on a user's system when the package is installed. This behavior is still possible through install scripts. This vulnerability bypasses a user using the --ignore-scripts install option. <p>Publish Date: 2019-12-13 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-16776>CVE-2019-16776</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>8.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - 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://blog.npmjs.org/post/189618601100/binary-planting-with-the-npm-cli">https://blog.npmjs.org/post/189618601100/binary-planting-with-the-npm-cli</a></p> <p>Release Date: 2019-12-13</p> <p>Fix Resolution: npm - 6.13.3;yarn - 1.21.1</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"npm","packageVersion":"3.10.10","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"grunt-npm-install:0.3.1;npm:3.10.10","isMinimumFixVersionAvailable":true,"minimumFixVersion":"npm - 6.13.3;yarn - 1.21.1"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2019-16776","vulnerabilityDetails":"Versions of the npm CLI prior to 6.13.3 are vulnerable to an Arbitrary File Write. It fails to prevent access to folders outside of the intended node_modules folder through the bin field. A properly constructed entry in the package.json bin field would allow a package publisher to modify and/or gain access to arbitrary files on a user\u0027s system when the package is installed. This behavior is still possible through install scripts. This vulnerability bypasses a user using the --ignore-scripts install option.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-16776","cvss3Severity":"high","cvss3Score":"8.1","cvss3Metrics":{"A":"None","AC":"Low","PR":"Low","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> -->
non_defect
cve high detected in npm tgz autoclosed cve high severity vulnerability vulnerable library npm tgz a package manager for javascript library home page a href path to dependency file js demo package json path to vulnerable library js demo node modules npm package json dependency hierarchy grunt npm install tgz root library x npm tgz vulnerable library found in head commit a href found in base branch master vulnerability details versions of the npm cli prior to are vulnerable to an arbitrary file write it fails to prevent access to folders outside of the intended node modules folder through the bin field a properly constructed entry in the package json bin field would allow a package publisher to modify and or gain access to arbitrary files on a user s system when the package is installed this behavior is still possible through install scripts this vulnerability bypasses a user using the ignore scripts install option publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution npm yarn isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree grunt npm install npm isminimumfixversionavailable true minimumfixversion npm yarn basebranches vulnerabilityidentifier cve vulnerabilitydetails versions of the npm cli prior to are vulnerable to an arbitrary file write it fails to prevent access to folders outside of the intended node modules folder through the bin field a properly constructed entry in the package json bin field would allow a package publisher to modify and or gain access to arbitrary files on a user system when the package is installed this behavior is still possible through install scripts this vulnerability bypasses a user using the ignore scripts install option vulnerabilityurl
0
67,426
16,977,056,341
IssuesEvent
2021-06-30 01:37:53
ironmansoftware/issues
https://api.github.com/repos/ironmansoftware/issues
closed
New-UDLoginPage colors not working
Fixed in Nightly Build PowerShell Universal bug completed
> New-PSULoginPage: in the Universal Version 2.0.3 the Colors for the LoginPage in the Example not working, Title, Image and Copyrighty working. Example Code: ``` $LoginPage = @{ PrimaryColor = '#5c2751' Title = 'DBATools Web Portal' Copyright = 'DBATools 2020' HeaderFontColor = 'white' HeaderColor = '#4bc0d9' SecondaryColor = '#6457a6' SecondaryFontColor = 'white' Image = 'http://localhost:5000/images/dbatools.png' } New-PSULoginPage @LoginPage ``` Version: 2.0.3
1.0
New-UDLoginPage colors not working - > New-PSULoginPage: in the Universal Version 2.0.3 the Colors for the LoginPage in the Example not working, Title, Image and Copyrighty working. Example Code: ``` $LoginPage = @{ PrimaryColor = '#5c2751' Title = 'DBATools Web Portal' Copyright = 'DBATools 2020' HeaderFontColor = 'white' HeaderColor = '#4bc0d9' SecondaryColor = '#6457a6' SecondaryFontColor = 'white' Image = 'http://localhost:5000/images/dbatools.png' } New-PSULoginPage @LoginPage ``` Version: 2.0.3
non_defect
new udloginpage colors not working new psuloginpage in the universal version the colors for the loginpage in the example not working title image and copyrighty working example code loginpage primarycolor title dbatools web portal copyright dbatools headerfontcolor white headercolor secondarycolor secondaryfontcolor white image new psuloginpage loginpage version
0
54,611
30,275,548,360
IssuesEvent
2023-07-07 19:15:26
chapel-lang/chapel
https://api.github.com/repos/chapel-lang/chapel
opened
Custom types should be able to opt-in and opt-out of bulk transfer
area: Libraries / Modules type: Feature Request type: Performance area: Language
Chapel arrays support bulk transfer. One of the checks before that can happen is whether the element type supports bulk transfer. The current check for records rely on POD-ness, which may be a little bit too strict. The recent example is the `c_array` type which we are special casing as it is a standard library type (https://github.com/chapel-lang/chapel/pull/22670). A more general solution to this problem can be useful in user code.
True
Custom types should be able to opt-in and opt-out of bulk transfer - Chapel arrays support bulk transfer. One of the checks before that can happen is whether the element type supports bulk transfer. The current check for records rely on POD-ness, which may be a little bit too strict. The recent example is the `c_array` type which we are special casing as it is a standard library type (https://github.com/chapel-lang/chapel/pull/22670). A more general solution to this problem can be useful in user code.
non_defect
custom types should be able to opt in and opt out of bulk transfer chapel arrays support bulk transfer one of the checks before that can happen is whether the element type supports bulk transfer the current check for records rely on pod ness which may be a little bit too strict the recent example is the c array type which we are special casing as it is a standard library type a more general solution to this problem can be useful in user code
0
40,899
10,217,683,080
IssuesEvent
2019-08-15 14:14:28
Rise-Vision/rise-vision-apps
https://api.github.com/repos/Rise-Vision/rise-vision-apps
closed
[Image Component] Font size and color of text in the empty state #1
visual defect
**Defect:** When there are no images in the Image Component, the font size for this text here should be 14px and have a color value of #020620: ![image5](https://user-images.githubusercontent.com/1440943/62786910-2ffe6d80-ba89-11e9-93fa-845265014128.jpg)
1.0
[Image Component] Font size and color of text in the empty state #1 - **Defect:** When there are no images in the Image Component, the font size for this text here should be 14px and have a color value of #020620: ![image5](https://user-images.githubusercontent.com/1440943/62786910-2ffe6d80-ba89-11e9-93fa-845265014128.jpg)
defect
font size and color of text in the empty state defect when there are no images in the image component the font size for this text here should be and have a color value of
1
10,983
2,622,856,544
IssuesEvent
2015-03-04 08:08:04
max99x/dict-lookup-chrome-ext
https://api.github.com/repos/max99x/dict-lookup-chrome-ext
opened
need definitions for foreign words!
auto-migrated Priority-Medium Type-Defect
``` I want the option to see all the entries for a word on en.wiktionary.org, not just the English-language definition. This would help me read foreign websites, see etymology connections, etc. ``` Original issue reported on code.google.com by `alexo...@gmail.com` on 2 Dec 2014 at 7:36
1.0
need definitions for foreign words! - ``` I want the option to see all the entries for a word on en.wiktionary.org, not just the English-language definition. This would help me read foreign websites, see etymology connections, etc. ``` Original issue reported on code.google.com by `alexo...@gmail.com` on 2 Dec 2014 at 7:36
defect
need definitions for foreign words i want the option to see all the entries for a word on en wiktionary org not just the english language definition this would help me read foreign websites see etymology connections etc original issue reported on code google com by alexo gmail com on dec at
1