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
25,842
4,470,225,603
IssuesEvent
2016-08-25 15:18:30
jccastillo0007/eFacturaT
https://api.github.com/repos/jccastillo0007/eFacturaT
opened
Plataforma-Proveedor
defect
Al registrar un CFDi te pregunta si quieres actualizar el registro del proveedor, y que en caso afirmativo le des click en guardar. No existe el botón guardar en ese escenario/pantalla.
1.0
Plataforma-Proveedor - Al registrar un CFDi te pregunta si quieres actualizar el registro del proveedor, y que en caso afirmativo le des click en guardar. No existe el botón guardar en ese escenario/pantalla.
defect
plataforma proveedor al registrar un cfdi te pregunta si quieres actualizar el registro del proveedor y que en caso afirmativo le des click en guardar no existe el botón guardar en ese escenario pantalla
1
43,349
11,628,463,871
IssuesEvent
2020-02-27 18:23:16
Rise-Vision/rise-vision-apps
https://api.github.com/repos/Rise-Vision/rise-vision-apps
closed
[Text Component] Sentence case of labels
Template Editor visual defect
**Problem:** - Text labels should use sentence case and always end with punctuation or a colon, as per [the style guide](https://docs.google.com/document/d/1JaurbTMAWsHZIauyrENMVdM1shwdzb5BqtKkjSURVoI/edit#bookmark=id.po61rryan695). ![Edit_Presentation___Rise_Vision_Apps](https://user-images.githubusercontent.com/1440943/75376932-e2b7e100-589e-11ea-8734-7aaa942403f9.png) **Solution:** - "Text" should be "Text:". - "Font Size" should be "Font size:"
1.0
[Text Component] Sentence case of labels - **Problem:** - Text labels should use sentence case and always end with punctuation or a colon, as per [the style guide](https://docs.google.com/document/d/1JaurbTMAWsHZIauyrENMVdM1shwdzb5BqtKkjSURVoI/edit#bookmark=id.po61rryan695). ![Edit_Presentation___Rise_Vision_Apps](https://user-images.githubusercontent.com/1440943/75376932-e2b7e100-589e-11ea-8734-7aaa942403f9.png) **Solution:** - "Text" should be "Text:". - "Font Size" should be "Font size:"
defect
sentence case of labels problem text labels should use sentence case and always end with punctuation or a colon as per solution text should be text font size should be font size
1
67,831
21,182,569,501
IssuesEvent
2022-04-08 09:24:02
hazelcast/hazelcast
https://api.github.com/repos/hazelcast/hazelcast
opened
Dynamic Configuration addMapConfig method
Type: Defect Source: Internal
**Describe the bug** I generated the codecs for the [DynamicConfig.addMapConfig](https://github.com/hazelcast/hazelcast-client-protocol/blob/master/protocol-definitions/DynamicConfig.yaml#L699-L887=) using the Go codec generator in [hazelcast-client-protocol](https://github.com/hazelcast/hazelcast-client-protocol). In the method inputs `HotRestartConfig`, `EventJournalConfig` and `MerkleTreeConfig` are defined to be nullable. However, when I try to give null values to them, Hazelcast member returns an error. like the following: ``` panic: invoking: got exception from server: java.lang.NullPointerException: MerkleTreeConfig cannot be null com.hazelcast.internal.util.Preconditions.checkNotNull(Preconditions.java:59) com.hazelcast.config.MapConfig.setMerkleTreeConfig(MapConfig.java:743) com.hazelcast.client.impl.protocol.task.dynamicconfig.AddMapConfigMessageTask.getConfig(AddMapConfigMessageTask.java:66) com.hazelcast.client.impl.protocol.task.dynamicconfig.AbstractAddConfigMessageTask.processMessage(AbstractAddConfigMessageTask.java:71) com.hazelcast.client.impl.protocol.task.AbstractMessageTask.initializeAndProcessMessage(AbstractMessageTask.java:153) com.hazelcast.client.impl.protocol.task.AbstractMessageTask.run(AbstractMessageTask.java:116) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) java.lang.Thread.run(Thread.java:829) com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76) com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102): MerkleTreeConfig cannot be null goroutine 1 [running]: main.main() /home/mty/Whz/hazelcast-enterprise-operator/main.go:304 +0x5eb exit status 2 make: *** [Makefile:162: run] Error 1 ``` The errors for `HotRestartConfig`, `EventJournalConfig` are pretty much the same. I also got an error when setting up the [MapStoreConfigHolder](https://github.com/hazelcast/hazelcast-client-protocol/blob/master/protocol-definitions/custom/Custom.yaml#L209-L251=) field. It has 5 required files. However, when I do not define the `properties` field, which is not a required field, Hazelcast member returns an error: ``` panic: invoking: got exception from server: java.lang.NullPointerException: java.util.concurrent.ConcurrentHashMap.putAll(ConcurrentHashMap.java:1087) java.util.Properties.putAll(Properties.java:1350) com.hazelcast.client.impl.protocol.util.PropertiesUtil.fromMap(PropertiesUtil.java:31) com.hazelcast.client.impl.protocol.task.dynamicconfig.MapStoreConfigHolder.asMapStoreConfig(MapStoreConfigHolder.java:152) com.hazelcast.client.impl.protocol.task.dynamicconfig.AddMapConfigMessageTask.getConfig(AddMapConfigMessageTask.java:76) com.hazelcast.client.impl.protocol.task.dynamicconfig.AbstractAddConfigMessageTask.processMessage(AbstractAddConfigMessageTask.java:71) com.hazelcast.client.impl.protocol.task.AbstractMessageTask.initializeAndProcessMessage(AbstractMessageTask.java:153) com.hazelcast.client.impl.protocol.task.AbstractMessageTask.run(AbstractMessageTask.java:116) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) java.lang.Thread.run(Thread.java:829) com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76) com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102): ``` Also when `mapStoreConfigHolder` is enabled, `className` must also be given even though it is nullable. I am not sure if this one is a problem but just wanted to add. **Expected behavior** Mentioned input fields should work as defined in the client protocol. - `HotRestartConfig`, `EventJournalConfig` and `MerkleTreeConfig` should be nullable. - `properties` field in `MapStoreConfigHolder` should also be nullable. **To Reproduce** Steps to reproduce the behavior: 1. Generate codec for the `DynamicConfig.addMapConfig` method in Go client and use the internal client exposed in https://github.com/hazelcast/hazelcast-go-client/pull/754. 2. Send the request to a Hazelcast member with the mentioned fields. <!-- Add any other context about the problem here. Common details that we're often interested in: - Detailed description of the steps to reproduce your issue - Logs and stack traces, if available - Hazelcast version that you use (e.g. 3.4, also specify whether it is a minor release or the latest snapshot) - If available, integration module versions (e.g. Tomcat, Jetty, Spring, Hibernate). Also, include their detailed configuration information such as web.xml, Hibernate configuration and `context.xml` for Spring - Cluster size, i.e. the number of Hazelcast cluster members - Number of the clients - Version of Java. It is also helpful to mention the JVM parameters - Operating system. If it is Linux, kernel version is helpful - Unit test with the `hazelcast.xml` file. If you could include a unit test which reproduces your issue, we would be grateful -->
1.0
Dynamic Configuration addMapConfig method - **Describe the bug** I generated the codecs for the [DynamicConfig.addMapConfig](https://github.com/hazelcast/hazelcast-client-protocol/blob/master/protocol-definitions/DynamicConfig.yaml#L699-L887=) using the Go codec generator in [hazelcast-client-protocol](https://github.com/hazelcast/hazelcast-client-protocol). In the method inputs `HotRestartConfig`, `EventJournalConfig` and `MerkleTreeConfig` are defined to be nullable. However, when I try to give null values to them, Hazelcast member returns an error. like the following: ``` panic: invoking: got exception from server: java.lang.NullPointerException: MerkleTreeConfig cannot be null com.hazelcast.internal.util.Preconditions.checkNotNull(Preconditions.java:59) com.hazelcast.config.MapConfig.setMerkleTreeConfig(MapConfig.java:743) com.hazelcast.client.impl.protocol.task.dynamicconfig.AddMapConfigMessageTask.getConfig(AddMapConfigMessageTask.java:66) com.hazelcast.client.impl.protocol.task.dynamicconfig.AbstractAddConfigMessageTask.processMessage(AbstractAddConfigMessageTask.java:71) com.hazelcast.client.impl.protocol.task.AbstractMessageTask.initializeAndProcessMessage(AbstractMessageTask.java:153) com.hazelcast.client.impl.protocol.task.AbstractMessageTask.run(AbstractMessageTask.java:116) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) java.lang.Thread.run(Thread.java:829) com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76) com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102): MerkleTreeConfig cannot be null goroutine 1 [running]: main.main() /home/mty/Whz/hazelcast-enterprise-operator/main.go:304 +0x5eb exit status 2 make: *** [Makefile:162: run] Error 1 ``` The errors for `HotRestartConfig`, `EventJournalConfig` are pretty much the same. I also got an error when setting up the [MapStoreConfigHolder](https://github.com/hazelcast/hazelcast-client-protocol/blob/master/protocol-definitions/custom/Custom.yaml#L209-L251=) field. It has 5 required files. However, when I do not define the `properties` field, which is not a required field, Hazelcast member returns an error: ``` panic: invoking: got exception from server: java.lang.NullPointerException: java.util.concurrent.ConcurrentHashMap.putAll(ConcurrentHashMap.java:1087) java.util.Properties.putAll(Properties.java:1350) com.hazelcast.client.impl.protocol.util.PropertiesUtil.fromMap(PropertiesUtil.java:31) com.hazelcast.client.impl.protocol.task.dynamicconfig.MapStoreConfigHolder.asMapStoreConfig(MapStoreConfigHolder.java:152) com.hazelcast.client.impl.protocol.task.dynamicconfig.AddMapConfigMessageTask.getConfig(AddMapConfigMessageTask.java:76) com.hazelcast.client.impl.protocol.task.dynamicconfig.AbstractAddConfigMessageTask.processMessage(AbstractAddConfigMessageTask.java:71) com.hazelcast.client.impl.protocol.task.AbstractMessageTask.initializeAndProcessMessage(AbstractMessageTask.java:153) com.hazelcast.client.impl.protocol.task.AbstractMessageTask.run(AbstractMessageTask.java:116) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) java.lang.Thread.run(Thread.java:829) com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76) com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102): ``` Also when `mapStoreConfigHolder` is enabled, `className` must also be given even though it is nullable. I am not sure if this one is a problem but just wanted to add. **Expected behavior** Mentioned input fields should work as defined in the client protocol. - `HotRestartConfig`, `EventJournalConfig` and `MerkleTreeConfig` should be nullable. - `properties` field in `MapStoreConfigHolder` should also be nullable. **To Reproduce** Steps to reproduce the behavior: 1. Generate codec for the `DynamicConfig.addMapConfig` method in Go client and use the internal client exposed in https://github.com/hazelcast/hazelcast-go-client/pull/754. 2. Send the request to a Hazelcast member with the mentioned fields. <!-- Add any other context about the problem here. Common details that we're often interested in: - Detailed description of the steps to reproduce your issue - Logs and stack traces, if available - Hazelcast version that you use (e.g. 3.4, also specify whether it is a minor release or the latest snapshot) - If available, integration module versions (e.g. Tomcat, Jetty, Spring, Hibernate). Also, include their detailed configuration information such as web.xml, Hibernate configuration and `context.xml` for Spring - Cluster size, i.e. the number of Hazelcast cluster members - Number of the clients - Version of Java. It is also helpful to mention the JVM parameters - Operating system. If it is Linux, kernel version is helpful - Unit test with the `hazelcast.xml` file. If you could include a unit test which reproduces your issue, we would be grateful -->
defect
dynamic configuration addmapconfig method describe the bug i generated the codecs for the using the go codec generator in in the method inputs hotrestartconfig eventjournalconfig and merkletreeconfig are defined to be nullable however when i try to give null values to them hazelcast member returns an error like the following panic invoking got exception from server java lang nullpointerexception merkletreeconfig cannot be null com hazelcast internal util preconditions checknotnull preconditions java com hazelcast config mapconfig setmerkletreeconfig mapconfig java com hazelcast client impl protocol task dynamicconfig addmapconfigmessagetask getconfig addmapconfigmessagetask java com hazelcast client impl protocol task dynamicconfig abstractaddconfigmessagetask processmessage abstractaddconfigmessagetask java com hazelcast client impl protocol task abstractmessagetask initializeandprocessmessage abstractmessagetask java com hazelcast client impl protocol task abstractmessagetask run abstractmessagetask java java util concurrent threadpoolexecutor runworker threadpoolexecutor java java util concurrent threadpoolexecutor worker run threadpoolexecutor java java lang thread run thread java com hazelcast internal util executor hazelcastmanagedthread executerun hazelcastmanagedthread java com hazelcast internal util executor hazelcastmanagedthread run hazelcastmanagedthread java merkletreeconfig cannot be null goroutine main main home mty whz hazelcast enterprise operator main go exit status make error the errors for hotrestartconfig eventjournalconfig are pretty much the same i also got an error when setting up the field it has required files however when i do not define the properties field which is not a required field hazelcast member returns an error panic invoking got exception from server java lang nullpointerexception java util concurrent concurrenthashmap putall concurrenthashmap java java util properties putall properties java com hazelcast client impl protocol util propertiesutil frommap propertiesutil java com hazelcast client impl protocol task dynamicconfig mapstoreconfigholder asmapstoreconfig mapstoreconfigholder java com hazelcast client impl protocol task dynamicconfig addmapconfigmessagetask getconfig addmapconfigmessagetask java com hazelcast client impl protocol task dynamicconfig abstractaddconfigmessagetask processmessage abstractaddconfigmessagetask java com hazelcast client impl protocol task abstractmessagetask initializeandprocessmessage abstractmessagetask java com hazelcast client impl protocol task abstractmessagetask run abstractmessagetask java java util concurrent threadpoolexecutor runworker threadpoolexecutor java java util concurrent threadpoolexecutor worker run threadpoolexecutor java java lang thread run thread java com hazelcast internal util executor hazelcastmanagedthread executerun hazelcastmanagedthread java com hazelcast internal util executor hazelcastmanagedthread run hazelcastmanagedthread java also when mapstoreconfigholder is enabled classname must also be given even though it is nullable i am not sure if this one is a problem but just wanted to add expected behavior mentioned input fields should work as defined in the client protocol hotrestartconfig eventjournalconfig and merkletreeconfig should be nullable properties field in mapstoreconfigholder should also be nullable to reproduce steps to reproduce the behavior generate codec for the dynamicconfig addmapconfig method in go client and use the internal client exposed in send the request to a hazelcast member with the mentioned fields add any other context about the problem here common details that we re often interested in detailed description of the steps to reproduce your issue logs and stack traces if available hazelcast version that you use e g also specify whether it is a minor release or the latest snapshot if available integration module versions e g tomcat jetty spring hibernate also include their detailed configuration information such as web xml hibernate configuration and context xml for spring cluster size i e the number of hazelcast cluster members number of the clients version of java it is also helpful to mention the jvm parameters operating system if it is linux kernel version is helpful unit test with the hazelcast xml file if you could include a unit test which reproduces your issue we would be grateful
1
808,122
30,034,348,882
IssuesEvent
2023-06-27 11:46:54
vergauwenthomas/MetObs_toolkit
https://api.github.com/repos/vergauwenthomas/MetObs_toolkit
closed
Strange unlabled period in Congo data
bug invalid Priority
Fix this problem, there is an empty period in the timeseries that is not labeled as gap I think ![Screenshot from 2023-06-26 16-29-48](https://github.com/vergauwenthomas/MetObs_toolkit/assets/82087298/47890c27-1c32-4df9-a837-c2176cf3ed5b)
1.0
Strange unlabled period in Congo data - Fix this problem, there is an empty period in the timeseries that is not labeled as gap I think ![Screenshot from 2023-06-26 16-29-48](https://github.com/vergauwenthomas/MetObs_toolkit/assets/82087298/47890c27-1c32-4df9-a837-c2176cf3ed5b)
non_defect
strange unlabled period in congo data fix this problem there is an empty period in the timeseries that is not labeled as gap i think
0
54,598
13,781,794,153
IssuesEvent
2020-10-08 16:40:46
department-of-veterans-affairs/va.gov-team
https://api.github.com/repos/department-of-veterans-affairs/va.gov-team
opened
CMS - 508-defect-2 Fast Follow! [COGNITION]: PDF download links MUST follow the established pattern
508-defect-2 508-issue-cognition 508/Accessibility vsa vsa-facilities
# [508-defect-2 Fast Follow!](https://github.com/department-of-veterans-affairs/va.gov-team/blob/master/platform/accessibility/guidance/defect-severity-rubric.md#508-defect-2) **Feedback framework** - **❗️ Must** for if the feedback must be applied - **⚠️ Should** if the feedback is best practice - **✔️ Consider** for suggestions/enhancements ## Point of Contact <!-- If this issue is being opened by a VFS team member, please add a point of contact. Usually this is the same person who enters the issue ticket. --> **VFS Point of Contact:** Jennifer ## User Story or Problem Statement - As a user with cognitive considerations, I to locate the file I downloaded by looking for the name indicated in the download link. - As an assistive tech user, I expect my assistive technology to let me know what kind of file I am downloading and handle it thusly. - As a user with a limited data plan, I want to know the file size of a potential download so I can determine if my current connectivity can support my needs. ## Details <!-- This is a detailed description of the issue. It should include a restatement of the title, and provide more background information. --> Follow on from https://github.com/department-of-veterans-affairs/va.gov-team/issues/5473 At this time, selecting to download `Download Veterans Connect, Issue 6 (PDF)` results in downloading a file named `_files_2019-11_VeteransConnect_Issue7_508.pdf` because the link is coded as `download="/files/2019-11/VeteransConnect_Issue6_508.pdf"`. This creates a confusing experience for people who downloaded "Veterans Connect, Issue 6 (PDF)", making it difficult to locate the file they want. Browsers and assistive technology need to know the type of file and the link is expected to use `type="application/pdf"`. Knowing the file size is helpful for users on limited data plans. The VA design system has an established [download pdf link pattern](https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/152#issuecomment-553127340) (in line to be added to the design system officially): ```diff <a class="file-download-with-icon" target="_blank" href="/files/2020-03/2019-Annual-Report_WEB_508.pdf" + download="2019-Annual-Report_WEB_508.pdf" + type="application/pdf"> <i class="fas fa-download vads-u-margin--0p5" aria-hidden="true" role="img"></i> Download 2019 Annual Report (PDF) </a> ``` ### Endpoints - https://www.va.gov/pittsburgh-health-care/about/ - https://www.va.gov/pittsburgh-health-care/research/safety-security/ - https://www.va.gov/pittsburgh-health-care/research/research-professionals/ - https://www.va.gov/pittsburgh-health-care/university-drive-campus-map/ - https://www.va.gov/pittsburgh-health-care/internships-fellowships/forms/ ## Acceptance Criteria - [ ] Downloaded file name matches the name provided to the user in the download link text - [ ] `type` attribute is included on the download link - [ ] Where possible, include the size of the file to be downloaded ## Definition of done 1. Review and acknowledge feedback. 1. Fix and/or document decisions made. 1. Accessibility specialist will close ticket after reviewing documented decisions / validating fix. ## Environment * Operating System: all * Browser: any * Server destination: production ## Steps to Recreate 1. Enter `https://www.va.gov/pittsburgh-health-care/about/` in browser 2. Download the file 3. Verify the file name does not match the label of the download link 4. Inspect the code 5. Verify that the `type="application/pdf"` is not included 6. Verify that the file size of the PDF is not included ## Solution (if known) The VA design system has an established [download pdf link pattern](https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/152#issuecomment-553127340) (in line to be added to the design system officially): ```diff <a class="file-download-with-icon" target="_blank" href="/files/2020-03/2019-Annual-Report_WEB_508.pdf" + download="2019-Annual-Report_WEB_508.pdf" + type="application/pdf"> <i class="fas fa-download vads-u-margin--0p5" aria-hidden="true" role="img"></i> Download 2019 Annual Report (PDF) </a> ``` ## WCAG or Vendor Guidance (optional) A number of Understandability/Cognition criteria would be relevant here. - An object or plugin *SHOULD* conform to the best practices of the accessibility API of that object or plugin, if available (e.g. the PDF format has an accessibility API). - The design *SHOULD* follow common conventions for design and user interaction, unless there is a compelling (e.g. research-validated) reason to break from convention. - Functionality *SHOULD* be easily discoverable (e.g. a menu that can be revealed only by a finger gesture swiping across the screen from the left to the right would not be easily discoverable). - Users *SHOULD NOT* be required to remember data from one page (or view, or step of a process) to another, unless the fundamental purpose of the content requires them to do so. - The text *SHOULD* be written in the simplest and clearest language possible, appropriate to the content. For reference: https://github.com/department-of-veterans-affairs/va.gov-team/blob/master/platform/accessibility/resources/WCAG-Checklist.md#understandabilitycognition
1.0
CMS - 508-defect-2 Fast Follow! [COGNITION]: PDF download links MUST follow the established pattern - # [508-defect-2 Fast Follow!](https://github.com/department-of-veterans-affairs/va.gov-team/blob/master/platform/accessibility/guidance/defect-severity-rubric.md#508-defect-2) **Feedback framework** - **❗️ Must** for if the feedback must be applied - **⚠️ Should** if the feedback is best practice - **✔️ Consider** for suggestions/enhancements ## Point of Contact <!-- If this issue is being opened by a VFS team member, please add a point of contact. Usually this is the same person who enters the issue ticket. --> **VFS Point of Contact:** Jennifer ## User Story or Problem Statement - As a user with cognitive considerations, I to locate the file I downloaded by looking for the name indicated in the download link. - As an assistive tech user, I expect my assistive technology to let me know what kind of file I am downloading and handle it thusly. - As a user with a limited data plan, I want to know the file size of a potential download so I can determine if my current connectivity can support my needs. ## Details <!-- This is a detailed description of the issue. It should include a restatement of the title, and provide more background information. --> Follow on from https://github.com/department-of-veterans-affairs/va.gov-team/issues/5473 At this time, selecting to download `Download Veterans Connect, Issue 6 (PDF)` results in downloading a file named `_files_2019-11_VeteransConnect_Issue7_508.pdf` because the link is coded as `download="/files/2019-11/VeteransConnect_Issue6_508.pdf"`. This creates a confusing experience for people who downloaded "Veterans Connect, Issue 6 (PDF)", making it difficult to locate the file they want. Browsers and assistive technology need to know the type of file and the link is expected to use `type="application/pdf"`. Knowing the file size is helpful for users on limited data plans. The VA design system has an established [download pdf link pattern](https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/152#issuecomment-553127340) (in line to be added to the design system officially): ```diff <a class="file-download-with-icon" target="_blank" href="/files/2020-03/2019-Annual-Report_WEB_508.pdf" + download="2019-Annual-Report_WEB_508.pdf" + type="application/pdf"> <i class="fas fa-download vads-u-margin--0p5" aria-hidden="true" role="img"></i> Download 2019 Annual Report (PDF) </a> ``` ### Endpoints - https://www.va.gov/pittsburgh-health-care/about/ - https://www.va.gov/pittsburgh-health-care/research/safety-security/ - https://www.va.gov/pittsburgh-health-care/research/research-professionals/ - https://www.va.gov/pittsburgh-health-care/university-drive-campus-map/ - https://www.va.gov/pittsburgh-health-care/internships-fellowships/forms/ ## Acceptance Criteria - [ ] Downloaded file name matches the name provided to the user in the download link text - [ ] `type` attribute is included on the download link - [ ] Where possible, include the size of the file to be downloaded ## Definition of done 1. Review and acknowledge feedback. 1. Fix and/or document decisions made. 1. Accessibility specialist will close ticket after reviewing documented decisions / validating fix. ## Environment * Operating System: all * Browser: any * Server destination: production ## Steps to Recreate 1. Enter `https://www.va.gov/pittsburgh-health-care/about/` in browser 2. Download the file 3. Verify the file name does not match the label of the download link 4. Inspect the code 5. Verify that the `type="application/pdf"` is not included 6. Verify that the file size of the PDF is not included ## Solution (if known) The VA design system has an established [download pdf link pattern](https://github.com/department-of-veterans-affairs/vets-design-system-documentation/issues/152#issuecomment-553127340) (in line to be added to the design system officially): ```diff <a class="file-download-with-icon" target="_blank" href="/files/2020-03/2019-Annual-Report_WEB_508.pdf" + download="2019-Annual-Report_WEB_508.pdf" + type="application/pdf"> <i class="fas fa-download vads-u-margin--0p5" aria-hidden="true" role="img"></i> Download 2019 Annual Report (PDF) </a> ``` ## WCAG or Vendor Guidance (optional) A number of Understandability/Cognition criteria would be relevant here. - An object or plugin *SHOULD* conform to the best practices of the accessibility API of that object or plugin, if available (e.g. the PDF format has an accessibility API). - The design *SHOULD* follow common conventions for design and user interaction, unless there is a compelling (e.g. research-validated) reason to break from convention. - Functionality *SHOULD* be easily discoverable (e.g. a menu that can be revealed only by a finger gesture swiping across the screen from the left to the right would not be easily discoverable). - Users *SHOULD NOT* be required to remember data from one page (or view, or step of a process) to another, unless the fundamental purpose of the content requires them to do so. - The text *SHOULD* be written in the simplest and clearest language possible, appropriate to the content. For reference: https://github.com/department-of-veterans-affairs/va.gov-team/blob/master/platform/accessibility/resources/WCAG-Checklist.md#understandabilitycognition
defect
cms defect fast follow pdf download links must follow the established pattern feedback framework ❗️ must for if the feedback must be applied ⚠️ should if the feedback is best practice ✔️ consider for suggestions enhancements point of contact vfs point of contact jennifer user story or problem statement as a user with cognitive considerations i to locate the file i downloaded by looking for the name indicated in the download link as an assistive tech user i expect my assistive technology to let me know what kind of file i am downloading and handle it thusly as a user with a limited data plan i want to know the file size of a potential download so i can determine if my current connectivity can support my needs details follow on from at this time selecting to download download veterans connect issue pdf results in downloading a file named files veteransconnect pdf because the link is coded as download files veteransconnect pdf this creates a confusing experience for people who downloaded veterans connect issue pdf making it difficult to locate the file they want browsers and assistive technology need to know the type of file and the link is expected to use type application pdf knowing the file size is helpful for users on limited data plans the va design system has an established in line to be added to the design system officially diff a class file download with icon target blank href files annual report web pdf download annual report web pdf type application pdf download annual report pdf endpoints acceptance criteria downloaded file name matches the name provided to the user in the download link text type attribute is included on the download link where possible include the size of the file to be downloaded definition of done review and acknowledge feedback fix and or document decisions made accessibility specialist will close ticket after reviewing documented decisions validating fix environment operating system all browser any server destination production steps to recreate enter in browser download the file verify the file name does not match the label of the download link inspect the code verify that the type application pdf is not included verify that the file size of the pdf is not included solution if known the va design system has an established in line to be added to the design system officially diff a class file download with icon target blank href files annual report web pdf download annual report web pdf type application pdf download annual report pdf wcag or vendor guidance optional a number of understandability cognition criteria would be relevant here an object or plugin should conform to the best practices of the accessibility api of that object or plugin if available e g the pdf format has an accessibility api the design should follow common conventions for design and user interaction unless there is a compelling e g research validated reason to break from convention functionality should be easily discoverable e g a menu that can be revealed only by a finger gesture swiping across the screen from the left to the right would not be easily discoverable users should not be required to remember data from one page or view or step of a process to another unless the fundamental purpose of the content requires them to do so the text should be written in the simplest and clearest language possible appropriate to the content for reference
1
74,649
25,229,957,778
IssuesEvent
2022-11-14 18:57:12
zed-industries/feedback
https://api.github.com/repos/zed-industries/feedback
closed
Programs with large amounts of output in the terminal cause Zed to lag
defect performance terminal
### Check for existing issues - [X] Completed ### Describe the bug Programs with many lines of output causes Zed to lag. After a few moments, performance returns to normal - I'm guessing this is something "catching up?" This actually *might* be a dupe or a known issue - I vaguely recall seeing this mentioned somewhere else, but can't seem to find the source. ### To reproduce 1. Run the following Rust program: ```rust fn main() { for _ in 0..1_000_000 { println!("Hi"); } } ``` 2. Try editing a file and notice the lag, which eventually goes away ### 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 _No response_
1.0
Programs with large amounts of output in the terminal cause Zed to lag - ### Check for existing issues - [X] Completed ### Describe the bug Programs with many lines of output causes Zed to lag. After a few moments, performance returns to normal - I'm guessing this is something "catching up?" This actually *might* be a dupe or a known issue - I vaguely recall seeing this mentioned somewhere else, but can't seem to find the source. ### To reproduce 1. Run the following Rust program: ```rust fn main() { for _ in 0..1_000_000 { println!("Hi"); } } ``` 2. Try editing a file and notice the lag, which eventually goes away ### 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 _No response_
defect
programs with large amounts of output in the terminal cause zed to lag check for existing issues completed describe the bug programs with many lines of output causes zed to lag after a few moments performance returns to normal i m guessing this is something catching up this actually might be a dupe or a known issue i vaguely recall seeing this mentioned somewhere else but can t seem to find the source to reproduce run the following rust program rust fn main for in println hi try editing a file and notice the lag which eventually goes away 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 no response
1
57,904
16,136,182,381
IssuesEvent
2021-04-29 12:09:35
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
closed
Youtube Music links preview incorrectly.
A-URL-Previews T-Defect Z-Backend Z-Synapse
<!-- A picture's worth a thousand words: PLEASE INCLUDE A SCREENSHOT :P --> <!-- This is a bug report template. By following the instructions below and filling out the sections with your information, you will help the us to get all the necessary data to fix your issue. You can also preview your report before submitting it. You may remove sections that aren't relevant to your particular case. Text between <!-- and --​> marks will be invisible in the report. --> ### Description Youtube Music links don't preview correctly. Link in screenshot: https://music.youtube.com/watch?v=_ei5tW0oadA&feature=share ### Steps to reproduce - Paste link - See issue Describe how what happens differs from what you expected. No preview, except for text that says "your browser is outdated" <!-- Please send us logs for your bug report. They're very important for bugs which are hard to reproduce. To do this, create this issue then go to your account settings and click 'Submit Debug Logs' from the Help & About tab --> Logs being sent: yes/no no, this isn't necessary <!-- Include screenshots if possible: you can drag and drop images below. --> ![Capture](https://user-images.githubusercontent.com/47131867/111877715-707bd800-899c-11eb-8981-2262744ba4be.PNG) ### Version information <!-- IMPORTANT: please answer the following questions, to help us narrow down the problem --> - **Platform**: web (in-browser) or desktop? - **OS**: Windows - **Version**: 1.7.23 <!-- check the user settings panel if unsure -->
1.0
Youtube Music links preview incorrectly. - <!-- A picture's worth a thousand words: PLEASE INCLUDE A SCREENSHOT :P --> <!-- This is a bug report template. By following the instructions below and filling out the sections with your information, you will help the us to get all the necessary data to fix your issue. You can also preview your report before submitting it. You may remove sections that aren't relevant to your particular case. Text between <!-- and --​> marks will be invisible in the report. --> ### Description Youtube Music links don't preview correctly. Link in screenshot: https://music.youtube.com/watch?v=_ei5tW0oadA&feature=share ### Steps to reproduce - Paste link - See issue Describe how what happens differs from what you expected. No preview, except for text that says "your browser is outdated" <!-- Please send us logs for your bug report. They're very important for bugs which are hard to reproduce. To do this, create this issue then go to your account settings and click 'Submit Debug Logs' from the Help & About tab --> Logs being sent: yes/no no, this isn't necessary <!-- Include screenshots if possible: you can drag and drop images below. --> ![Capture](https://user-images.githubusercontent.com/47131867/111877715-707bd800-899c-11eb-8981-2262744ba4be.PNG) ### Version information <!-- IMPORTANT: please answer the following questions, to help us narrow down the problem --> - **Platform**: web (in-browser) or desktop? - **OS**: Windows - **Version**: 1.7.23 <!-- check the user settings panel if unsure -->
defect
youtube music links preview incorrectly this is a bug report template by following the instructions below and filling out the sections with your information you will help the us to get all the necessary data to fix your issue you can also preview your report before submitting it you may remove sections that aren t relevant to your particular case text between marks will be invisible in the report description youtube music links don t preview correctly link in screenshot steps to reproduce paste link see issue describe how what happens differs from what you expected no preview except for text that says your browser is outdated please send us logs for your bug report they re very important for bugs which are hard to reproduce to do this create this issue then go to your account settings and click submit debug logs from the help about tab logs being sent yes no no this isn t necessary version information platform web in browser or desktop os windows version
1
164,729
13,959,481,293
IssuesEvent
2020-10-24 16:37:53
chandrasitinjak/tobazone
https://api.github.com/repos/chandrasitinjak/tobazone
closed
Generate Model, Migration, And Controller for Homestays
documentation enhancement
Generate Model, Migration, And Controller for Homestays
1.0
Generate Model, Migration, And Controller for Homestays - Generate Model, Migration, And Controller for Homestays
non_defect
generate model migration and controller for homestays generate model migration and controller for homestays
0
27,665
5,076,927,822
IssuesEvent
2016-12-28 06:54:22
TNGSB/eWallet
https://api.github.com/repos/TNGSB/eWallet
closed
e-Wallet_Mobile App (Loyalty-Loyalty Activation flow for existing user) 21122016 #156
APAC Venture Defect - Medium (Sev-3) Dev Environment
Defect Description : When user click at "My Reward" tab, user are navigated to "Loyalty First Time Activation" flow even tho previously user has made some redemption of the vouchers Test Description : To verify "My reward" page for existing user which already made redemption Note : 1. User has uninstall the app previously. This scenario happen when user re-download and launch the application, by using the same userID and password. 2. Tested in build 9 for Android
1.0
e-Wallet_Mobile App (Loyalty-Loyalty Activation flow for existing user) 21122016 #156 - Defect Description : When user click at "My Reward" tab, user are navigated to "Loyalty First Time Activation" flow even tho previously user has made some redemption of the vouchers Test Description : To verify "My reward" page for existing user which already made redemption Note : 1. User has uninstall the app previously. This scenario happen when user re-download and launch the application, by using the same userID and password. 2. Tested in build 9 for Android
defect
e wallet mobile app loyalty loyalty activation flow for existing user defect description when user click at my reward tab user are navigated to loyalty first time activation flow even tho previously user has made some redemption of the vouchers test description to verify my reward page for existing user which already made redemption note user has uninstall the app previously this scenario happen when user re download and launch the application by using the same userid and password tested in build for android
1
39,587
5,105,419,535
IssuesEvent
2017-01-05 07:18:34
fossasia/loklak_search
https://api.github.com/repos/fossasia/loklak_search
closed
Simplify "Search More" style
design
The "search more" on the bottom introduces a new blue color and has a border element, that we do not find anywhere else on the site. Please simplify the style to go inline with the page design * [ ] Take out the background and border * [ ] Only show the "Show More" in blue (as it is now) and bold * [ ] Also ensure the cursor changes when scrolling over ![screenshot from 2017-01-03 17-38-52](https://cloud.githubusercontent.com/assets/1583873/21615090/4d36383a-d1dc-11e6-81be-3c9b17c3344d.png)
1.0
Simplify "Search More" style - The "search more" on the bottom introduces a new blue color and has a border element, that we do not find anywhere else on the site. Please simplify the style to go inline with the page design * [ ] Take out the background and border * [ ] Only show the "Show More" in blue (as it is now) and bold * [ ] Also ensure the cursor changes when scrolling over ![screenshot from 2017-01-03 17-38-52](https://cloud.githubusercontent.com/assets/1583873/21615090/4d36383a-d1dc-11e6-81be-3c9b17c3344d.png)
non_defect
simplify search more style the search more on the bottom introduces a new blue color and has a border element that we do not find anywhere else on the site please simplify the style to go inline with the page design take out the background and border only show the show more in blue as it is now and bold also ensure the cursor changes when scrolling over
0
84,746
7,931,808,488
IssuesEvent
2018-07-07 05:37:18
rancher/rancher
https://api.github.com/repos/rancher/rancher
closed
After rancher-server upgrade, for clusters created with default k8s(not explicitly set in rke config)kubernetes version on the existing clusters gets upgraded to latest supported version.
kind/bug status/resolved status/to-test version/2.0
**Rancher versions: v2.0.5-rc3 **Steps to Reproduce:** Fresh install of v2.0.2 Create a custom cluster using default Kubernetes version (without setting kubernetes version in rancherKubernetesEngineConfig paramater). Upgrade rancher server to v2.0.5-rc3. Existing cluster's Kubernetes version gets upgraded to v1.10.5 which is latest K8s version supported in 2.0.5 release. Kubernetes version should not get upgraded to v1.10.5 in this case cluster was created with following rancherKubernetesEngineConfig ``` rke_config = {"authentication": {"type": "authnConfig", "strategy": "x509"}, "ignoreDockerVersion": False, "network": {"type": "networkConfig", "plugin": "canal"}, "type": "rancherKubernetesEngineConfig" } ``` ``` cluster = client.create_cluster(name=random_name(), driver="rancherKubernetesEngine", rancherKubernetesEngineConfig=rke_config) ```
1.0
After rancher-server upgrade, for clusters created with default k8s(not explicitly set in rke config)kubernetes version on the existing clusters gets upgraded to latest supported version. - **Rancher versions: v2.0.5-rc3 **Steps to Reproduce:** Fresh install of v2.0.2 Create a custom cluster using default Kubernetes version (without setting kubernetes version in rancherKubernetesEngineConfig paramater). Upgrade rancher server to v2.0.5-rc3. Existing cluster's Kubernetes version gets upgraded to v1.10.5 which is latest K8s version supported in 2.0.5 release. Kubernetes version should not get upgraded to v1.10.5 in this case cluster was created with following rancherKubernetesEngineConfig ``` rke_config = {"authentication": {"type": "authnConfig", "strategy": "x509"}, "ignoreDockerVersion": False, "network": {"type": "networkConfig", "plugin": "canal"}, "type": "rancherKubernetesEngineConfig" } ``` ``` cluster = client.create_cluster(name=random_name(), driver="rancherKubernetesEngine", rancherKubernetesEngineConfig=rke_config) ```
non_defect
after rancher server upgrade for clusters created with default not explicitly set in rke config kubernetes version on the existing clusters gets upgraded to latest supported version rancher versions steps to reproduce fresh install of create a custom cluster using default kubernetes version without setting kubernetes version in rancherkubernetesengineconfig paramater upgrade rancher server to existing cluster s kubernetes version gets upgraded to which is latest version supported in release kubernetes version should not get upgraded to in this case cluster was created with following rancherkubernetesengineconfig rke config authentication type authnconfig strategy ignoredockerversion false network type networkconfig plugin canal type rancherkubernetesengineconfig cluster client create cluster name random name driver rancherkubernetesengine rancherkubernetesengineconfig rke config
0
32,921
6,969,931,929
IssuesEvent
2017-12-11 08:21:15
hazelcast/hazelcast
https://api.github.com/repos/hazelcast/hazelcast
opened
Incorrect lastAccessTime for MultiMap statistics
Team: Core Type: Defect
`LocalMultiMapStatsImpl#getLastAccessTime` breaks the javadoc contract of `LocalMapStats#getLastAccessTime` which says `Returns the last access (read) time of the locally owned entries.`. For MultiMap,`lastAccessTime` is continuously updated with each `MultiMapOperation`.
1.0
Incorrect lastAccessTime for MultiMap statistics - `LocalMultiMapStatsImpl#getLastAccessTime` breaks the javadoc contract of `LocalMapStats#getLastAccessTime` which says `Returns the last access (read) time of the locally owned entries.`. For MultiMap,`lastAccessTime` is continuously updated with each `MultiMapOperation`.
defect
incorrect lastaccesstime for multimap statistics localmultimapstatsimpl getlastaccesstime breaks the javadoc contract of localmapstats getlastaccesstime which says returns the last access read time of the locally owned entries for multimap lastaccesstime is continuously updated with each multimapoperation
1
20,957
16,370,672,950
IssuesEvent
2021-05-15 03:27:11
gama-platform/gama
https://api.github.com/repos/gama-platform/gama
opened
Add all toolbar items of display into Manage output menu
🙅🏻‍♂️ Affects Usability
![image](https://user-images.githubusercontent.com/6105384/118346744-ba7dd600-b567-11eb-820c-e532fd3345e7.png) As in the screenshot, we can see that in the Manage output menu of each display, currently, have only 3 items: pause, refresh, sync. I m looking for the other items as in the toolbar at top of each display (zoom in, zoom out, TAKE SNAPSHOT,..) in case that we hide the toolbar (for better visualization) and want to use these features.
True
Add all toolbar items of display into Manage output menu - ![image](https://user-images.githubusercontent.com/6105384/118346744-ba7dd600-b567-11eb-820c-e532fd3345e7.png) As in the screenshot, we can see that in the Manage output menu of each display, currently, have only 3 items: pause, refresh, sync. I m looking for the other items as in the toolbar at top of each display (zoom in, zoom out, TAKE SNAPSHOT,..) in case that we hide the toolbar (for better visualization) and want to use these features.
non_defect
add all toolbar items of display into manage output menu as in the screenshot we can see that in the manage output menu of each display currently have only items pause refresh sync i m looking for the other items as in the toolbar at top of each display zoom in zoom out take snapshot in case that we hide the toolbar for better visualization and want to use these features
0
12,167
2,685,314,878
IssuesEvent
2015-03-29 22:19:35
IssueMigrationTest/Test5
https://api.github.com/repos/IssueMigrationTest/Test5
closed
Class variable error when inheritance occured accross different files
auto-migrated Priority-Medium Type-Defect
**Issue by jason.mi...@gmail.com** _16 May 2010 at 3:31 GMT_ _Originally opened on Google Code_ ---- ``` Class variable error when inheritance occured accross different files Maybe namespace issue SS Ver: r1451 The following 2 files can't compile when testb.py start with "import testa" and "from testa import aa", but works well with "from testa import *" If we remove the class helper and the helper.enable in aa.__init__(), then they can't compile when testb.py start with "import testa", but works well with "from testa import aa" and "from testa import *" In normal usage scenario, all 3 above "import" cases should work Details: root@ubuntu10-64:~/tools/test# cat testa.py class helper(): flag=0 @staticmethod def enable(): helper.flag=1 class aa(): #class_var1={} class_var2=0 def __init__(self): helper.enable() aa.class_var2=1 print "init a" temp=[1,2] #aa.class_var1.update({'a':bb()}) for i in temp: print i root@ubuntu10-64:~/tools/test# cat testb.py from testa import aa class b(aa): pass instance=b() root@ubuntu10-64:~/tools/test# shedskin testb *** SHED SKIN Python-to-C++ Compiler 0.5 *** Copyright 2005-2010 Mark Dufour; License GNU GPL version 3 (See LICENSE) [iterative type analysis..] ** iterations: 2 templates: 61 [generating c++ code..] *WARNING* testa.py:11: class 'helper' has no method 'enable' root@ubuntu10-64:~/tools/test# make g++ -O0 -pipe -Wno-deprecated -I. -I/usr/local/lib/python2.6/dist- packages/shedskin/lib testa.cpp /usr/local/lib/python2.6/dist- packages/shedskin/lib/builtin.cpp testb.cpp /usr/local/lib/python2.6/dist- packages/shedskin/lib/re.cpp -lgc -lpcre -o testb testa.cpp: In static member function ‘static void* __testa__::helper::enable()’: testa.cpp:19: error: ‘class __shedskin__::class_’ has no member named ‘flag’ testa.cpp: In member function ‘void* __testa__::aa::__init__()’: testa.cpp:37: error: ‘class __shedskin__::class_’ has no member named ‘enable’ make: *** [testb] Error 1 ```
1.0
Class variable error when inheritance occured accross different files - **Issue by jason.mi...@gmail.com** _16 May 2010 at 3:31 GMT_ _Originally opened on Google Code_ ---- ``` Class variable error when inheritance occured accross different files Maybe namespace issue SS Ver: r1451 The following 2 files can't compile when testb.py start with "import testa" and "from testa import aa", but works well with "from testa import *" If we remove the class helper and the helper.enable in aa.__init__(), then they can't compile when testb.py start with "import testa", but works well with "from testa import aa" and "from testa import *" In normal usage scenario, all 3 above "import" cases should work Details: root@ubuntu10-64:~/tools/test# cat testa.py class helper(): flag=0 @staticmethod def enable(): helper.flag=1 class aa(): #class_var1={} class_var2=0 def __init__(self): helper.enable() aa.class_var2=1 print "init a" temp=[1,2] #aa.class_var1.update({'a':bb()}) for i in temp: print i root@ubuntu10-64:~/tools/test# cat testb.py from testa import aa class b(aa): pass instance=b() root@ubuntu10-64:~/tools/test# shedskin testb *** SHED SKIN Python-to-C++ Compiler 0.5 *** Copyright 2005-2010 Mark Dufour; License GNU GPL version 3 (See LICENSE) [iterative type analysis..] ** iterations: 2 templates: 61 [generating c++ code..] *WARNING* testa.py:11: class 'helper' has no method 'enable' root@ubuntu10-64:~/tools/test# make g++ -O0 -pipe -Wno-deprecated -I. -I/usr/local/lib/python2.6/dist- packages/shedskin/lib testa.cpp /usr/local/lib/python2.6/dist- packages/shedskin/lib/builtin.cpp testb.cpp /usr/local/lib/python2.6/dist- packages/shedskin/lib/re.cpp -lgc -lpcre -o testb testa.cpp: In static member function ‘static void* __testa__::helper::enable()’: testa.cpp:19: error: ‘class __shedskin__::class_’ has no member named ‘flag’ testa.cpp: In member function ‘void* __testa__::aa::__init__()’: testa.cpp:37: error: ‘class __shedskin__::class_’ has no member named ‘enable’ make: *** [testb] Error 1 ```
defect
class variable error when inheritance occured accross different files issue by jason mi gmail com may at gmt originally opened on google code class variable error when inheritance occured accross different files maybe namespace issue ss ver the following files can t compile when testb py start with import testa and from testa import aa but works well with from testa import if we remove the class helper and the helper enable in aa init then they can t compile when testb py start with import testa but works well with from testa import aa and from testa import in normal usage scenario all above import cases should work details root tools test cat testa py class helper flag staticmethod def enable helper flag class aa class class def init self helper enable aa class print init a temp aa class update a bb for i in temp print i root tools test cat testb py from testa import aa class b aa pass instance b root tools test shedskin testb shed skin python to c compiler copyright mark dufour license gnu gpl version see license iterations templates warning testa py class helper has no method enable root tools test make g pipe wno deprecated i i usr local lib dist packages shedskin lib testa cpp usr local lib dist packages shedskin lib builtin cpp testb cpp usr local lib dist packages shedskin lib re cpp lgc lpcre o testb testa cpp in static member function ‘static void testa helper enable ’ testa cpp error ‘class shedskin class ’ has no member named ‘flag’ testa cpp in member function ‘void testa aa init ’ testa cpp error ‘class shedskin class ’ has no member named ‘enable’ make error
1
223,769
24,739,455,063
IssuesEvent
2022-10-21 02:54:38
smartpay-co/sdk-php
https://api.github.com/repos/smartpay-co/sdk-php
closed
WS-2020-0003 (High) detected in phpunit/phpunit-5.7.27
security vulnerability
## WS-2020-0003 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>phpunit/phpunit-5.7.27</b></p></summary> <p>The PHP Unit Testing framework.</p> <p> Dependency Hierarchy: - :x: **phpunit/phpunit-5.7.27** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/smartpay-co/sdk-php/commit/d6e9e4b67c2f8759230cc5f2e000898aba42f4f7">d6e9e4b67c2f8759230cc5f2e000898aba42f4f7</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> Some autoupgrade module ZIP archives have been built with phpunit dev dependencies. PHPUnit contains a php script that would allow an attacker to perform RCE on a webserver. <p>Publish Date: 2019-12-10 <p>URL: <a href=https://github.com/PrestaShop/autoupgrade/security/advisories/GHSA-wqq8-mqj9-697f>WS-2020-0003</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://github.com/PrestaShop/autoupgrade/security/advisories/GHSA-wqq8-mqj9-697f">https://github.com/PrestaShop/autoupgrade/security/advisories/GHSA-wqq8-mqj9-697f</a></p> <p>Release Date: 2020-01-09</p> <p>Fix Resolution: 7.5.19,8.5.1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
WS-2020-0003 (High) detected in phpunit/phpunit-5.7.27 - ## WS-2020-0003 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>phpunit/phpunit-5.7.27</b></p></summary> <p>The PHP Unit Testing framework.</p> <p> Dependency Hierarchy: - :x: **phpunit/phpunit-5.7.27** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/smartpay-co/sdk-php/commit/d6e9e4b67c2f8759230cc5f2e000898aba42f4f7">d6e9e4b67c2f8759230cc5f2e000898aba42f4f7</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> Some autoupgrade module ZIP archives have been built with phpunit dev dependencies. PHPUnit contains a php script that would allow an attacker to perform RCE on a webserver. <p>Publish Date: 2019-12-10 <p>URL: <a href=https://github.com/PrestaShop/autoupgrade/security/advisories/GHSA-wqq8-mqj9-697f>WS-2020-0003</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://github.com/PrestaShop/autoupgrade/security/advisories/GHSA-wqq8-mqj9-697f">https://github.com/PrestaShop/autoupgrade/security/advisories/GHSA-wqq8-mqj9-697f</a></p> <p>Release Date: 2020-01-09</p> <p>Fix Resolution: 7.5.19,8.5.1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_defect
ws high detected in phpunit phpunit ws high severity vulnerability vulnerable library phpunit phpunit the php unit testing framework dependency hierarchy x phpunit phpunit vulnerable library found in head commit a href found in base branch master vulnerability details some autoupgrade module zip archives have been built with phpunit dev dependencies phpunit contains a php script that would allow an attacker to perform rce on a webserver 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 step up your open source security game with mend
0
58,261
16,453,997,386
IssuesEvent
2021-05-21 09:54:56
hazelcast/hazelcast-cpp-client
https://api.github.com/repos/hazelcast/hazelcast-cpp-client
closed
cmake build error for Library
Source: Community Type: Defect to-jira
C++ compiler version: g++ (GCC) 4.8.5 20150623 (Red Hat 4.8.5-39) OS version (Windows/Linux/OSX): Linux Centos 7 #### Expected behaviour Expected version 4.1 to build on Linux. Version 4.0 built ok on same machine #### Actual behaviour Building version 4.1 of the library works for us on Windows and OSx but fails on Linux. We get the errors shown below. Note: re the initial cmake warnings - We got the same warnings on the previous successful build of 4.0 - They seem to be red herrings as they refer to the line below but further on in the log it clearly states that the build has found the boost libraries - thread, chrone, date_time and atomic ``` find_package(Boost 1.71 REQUIRED COMPONENTS thread chrono) ``` ``` -- The CXX compiler identification is GNU 4.8.5 -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- GIT_COMMIT_DATE = Thu May 6 14:32:43 2021 +0300 -- GIT_COMMIT_ID = 361fd76d -- Looking for C++ include pthread.h -- Looking for C++ include pthread.h - found -- Looking for pthread_create -- Looking for pthread_create - not found -- Looking for pthread_create in pthreads -- Looking for pthread_create in pthreads - not found -- Looking for pthread_create in pthread -- Looking for pthread_create in pthread - found -- Found Threads: TRUE CMake Warning at /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:896 (message): New Boost version may have incorrect or missing dependencies and imported targets Call Stack (most recent call first): /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:1018 (_Boost_COMPONENT_DEPENDENCIES) /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:1694 (_Boost_MISSING_DEPENDENCIES) CMakeLists.txt:82 (find_package) CMake Warning at /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:896 (message): New Boost version may have incorrect or missing dependencies and imported targets Call Stack (most recent call first): /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:1018 (_Boost_COMPONENT_DEPENDENCIES) /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:1694 (_Boost_MISSING_DEPENDENCIES) CMakeLists.txt:82 (find_package) CMake Warning at /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:896 (message): New Boost version may have incorrect or missing dependencies and imported targets Call Stack (most recent call first): /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:1018 (_Boost_COMPONENT_DEPENDENCIES) /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:1694 (_Boost_MISSING_DEPENDENCIES) CMakeLists.txt:82 (find_package) CMake Warning at /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:896 (message): New Boost version may have incorrect or missing dependencies and imported targets Call Stack (most recent call first): /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:1018 (_Boost_COMPONENT_DEPENDENCIES) /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:1694 (_Boost_MISSING_DEPENDENCIES) CMakeLists.txt:82 (find_package) -- Boost version: 1.71.0 -- Found the following Boost libraries: -- thread -- chrono -- date_time -- atomic -- Performing Test COMPILER_HAS_HIDDEN_VISIBILITY -- Performing Test COMPILER_HAS_HIDDEN_VISIBILITY - Success -- Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY -- Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY - Success -- Performing Test COMPILER_HAS_DEPRECATED_ATTR -- Performing Test COMPILER_HAS_DEPRECATED_ATTR - Success -- Configuration summary: -- CMAKE_BUILD_TYPE = Release -- BUILD_SHARED_LIBS = OFF -- WITH_OPENSSL = OFF -- DISABLE_LOGGING = OFF -- CMAKE_INSTALL_PREFIX = /usr/local -- BUILD_TESTS = OFF -- BUILD_EXAMPLES = OFF -- Configuring done -- Generating done CMake Warning: Manually-specified variables were not used by the project: BUILD_SHARED_LIB BUILD_STATIC_LIB -- Build files have been written to: /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/build 2021/05/11-22:51:46: [INFO] Cmake create build files passed Scanning dependencies of target hazelcast-cpp-client [ 5%] Building CXX object CMakeFiles/hazelcast-cpp-client.dir/hazelcast/generated-sources/src/hazelcast/client/protocol/codec/codecs.cpp.o [ 10%] Building CXX object CMakeFiles/hazelcast-cpp-client.dir/hazelcast/src/hazelcast/client/client_impl.cpp.o [ 15%] Building CXX object CMakeFiles/hazelcast-cpp-client.dir/hazelcast/src/hazelcast/client/cluster.cpp.o [ 21%] Building CXX object CMakeFiles/hazelcast-cpp-client.dir/hazelcast/src/hazelcast/client/config.cpp.o In file included from /usr/include/c++/4.8.2/bits/hashtable.h:35:0, from /usr/include/c++/4.8.2/unordered_set:47, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:19, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/hashtable_policy.h: In instantiation of ‘std::__detail::_Hash_node<_Value, true>::_Hash_node(_Args&& ...) [with _Args = {const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&}; _Value = std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>]’: /usr/include/c++/4.8.2/ext/new_allocator.h:120:4: required from ‘void __gnu_cxx::new_allocator<_Tp>::construct(_Up*, _Args&& ...) [with _Up = std::__detail::_Hash_node<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>, true>; _Args = {const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&}; _Tp = std::__detail::_Hash_node<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>, true>]’ /usr/include/c++/4.8.2/bits/hashtable.h:727:6: required from ‘std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _H1, _H2, _Hash, _RehashPolicy, _Traits>::__node_type* std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _H1, _H2, _Hash, _RehashPolicy, _Traits>::_M_allocate_node(_Args&& ...) [with _Args = {const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&}; _Key = std::basic_string<char>; _Value = std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>; _Alloc = std::allocator<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config> >; _ExtractKey = std::__detail::_Select1st; _Equal = std::equal_to<std::basic_string<char> >; _H1 = std::hash<std::basic_string<char> >; _H2 = std::__detail::_Mod_range_hashing; _Hash = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits<true, false, true>; std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _H1, _H2, _Hash, _RehashPolicy, _Traits>::__node_type = std::__detail::_Hash_node<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>, true>]’ /usr/include/c++/4.8.2/bits/hashtable.h:1260:71: required from ‘std::pair<typename std::__detail::_Hashtable_base<_Key, _Value, _ExtractKey, _Equal, _H1, _H2, _Hash, _Traits>::iterator, bool> std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _H1, _H2, _Hash, _RehashPolicy, _Traits>::_M_emplace(std::true_type, _Args&& ...) [with _Args = {const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&}; _Key = std::basic_string<char>; _Value = std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>; _Alloc = std::allocator<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config> >; _ExtractKey = std::__detail::_Select1st; _Equal = std::equal_to<std::basic_string<char> >; _H1 = std::hash<std::basic_string<char> >; _H2 = std::__detail::_Mod_range_hashing; _Hash = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits<true, false, true>; typename std::__detail::_Hashtable_base<_Key, _Value, _ExtractKey, _Equal, _H1, _H2, _Hash, _Traits>::iterator = std::__detail::_Node_iterator<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>, false, true>; std::true_type = std::integral_constant<bool, true>]’ /usr/include/c++/4.8.2/bits/hashtable.h:665:69: required from ‘std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _H1, _H2, _Hash, _RehashPolicy, _Traits>::__ireturn_type std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _H1, _H2, _Hash, _RehashPolicy, _Traits>::emplace(_Args&& ...) [with _Args = {const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&}; _Key = std::basic_string<char>; _Value = std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>; _Alloc = std::allocator<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config> >; _ExtractKey = std::__detail::_Select1st; _Equal = std::equal_to<std::basic_string<char> >; _H1 = std::hash<std::basic_string<char> >; _H2 = std::__detail::_Mod_range_hashing; _Hash = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits<true, false, true>; std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _H1, _H2, _Hash, _RehashPolicy, _Traits>::__ireturn_type = std::pair<std::__detail::_Node_iterator<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>, false, true>, bool>]’ /usr/include/c++/4.8.2/bits/unordered_map.h:311:54: required from ‘std::pair<typename std::_Hashtable<_Key, std::pair<const _Key, _Tp>, _Alloc, std::__detail::_Select1st, _Pred, _Hash, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<std::__not_<std::__and_<std::__is_fast_hash<_Hash>, std::is_default_constructible<_Hash>, std::is_copy_assignable<_Hash>, std::__detail::__is_noexcept_hash<_Key, _Hash> > >::value, false, true> >::iterator, bool> std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::emplace(_Args&& ...) [with _Args = {const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&}; _Key = std::basic_string<char>; _Tp = hazelcast::client::config::reliable_topic_config; _Hash = std::hash<std::basic_string<char> >; _Pred = std::equal_to<std::basic_string<char> >; _Alloc = std::allocator<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config> >; typename std::_Hashtable<_Key, std::pair<const _Key, _Tp>, _Alloc, std::__detail::_Select1st, _Pred, _Hash, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<std::__not_<std::__and_<std::__is_fast_hash<_Hash>, std::is_default_constructible<_Hash>, std::is_copy_assignable<_Hash>, std::__detail::__is_noexcept_hash<_Key, _Hash> > >::value, false, true> >::iterator = std::__detail::_Node_iterator<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>, false, true>]’ /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:859:65: required from here /usr/include/c++/4.8.2/bits/hashtable_policy.h:177:55: error: no matching function for call to ‘std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>::pair(const std::basic_string<char>&, const std::basic_string<char>&)’ : _M_v(std::forward<_Args>(__args)...), _M_hash_code() { } ^ /usr/include/c++/4.8.2/bits/hashtable_policy.h:177:55: note: candidates are: In file included from /usr/include/c++/4.8.2/bits/stl_algobase.h:64:0, from /usr/include/c++/4.8.2/vector:60, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:18, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/stl_pair.h:206:9: note: template<class ... _Args1, long unsigned int ..._Indexes1, class ... _Args2, long unsigned int ..._Indexes2> std::pair<_T1, _T2>::pair(std::tuple<_Args1 ...>&, std::tuple<_Args2 ...>&, std::_Index_tuple<_Indexes1 ...>, std::_Index_tuple<_Indexes2 ...>) pair(tuple<_Args1...>&, tuple<_Args2...>&, ^ /usr/include/c++/4.8.2/bits/stl_pair.h:206:9: note: template argument deduction/substitution failed: In file included from /usr/include/c++/4.8.2/bits/hashtable.h:35:0, from /usr/include/c++/4.8.2/unordered_set:47, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:19, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/hashtable_policy.h:177:55: note: types ‘std::tuple<_Elements ...>’ and ‘const std::basic_string<char>’ have incompatible cv-qualifiers : _M_v(std::forward<_Args>(__args)...), _M_hash_code() { } ^ In file included from /usr/include/c++/4.8.2/bits/stl_algobase.h:64:0, from /usr/include/c++/4.8.2/vector:60, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:18, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/stl_pair.h:155:9: note: template<class ... _Args1, class ... _Args2> std::pair<_T1, _T2>::pair(std::piecewise_construct_t, std::tuple<_Args1 ...>, std::tuple<_Args2 ...>) pair(piecewise_construct_t, tuple<_Args1...>, tuple<_Args2...>); ^ /usr/include/c++/4.8.2/bits/stl_pair.h:155:9: note: template argument deduction/substitution failed: In file included from /usr/include/c++/4.8.2/bits/hashtable.h:35:0, from /usr/include/c++/4.8.2/unordered_set:47, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:19, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/hashtable_policy.h:177:55: note: cannot convert ‘std::forward<const std::basic_string<char>&>((* & __args#0))’ (type ‘const std::basic_string<char>’) to type ‘std::piecewise_construct_t’ : _M_v(std::forward<_Args>(__args)...), _M_hash_code() { } ^ In file included from /usr/include/c++/4.8.2/bits/stl_algobase.h:64:0, from /usr/include/c++/4.8.2/vector:60, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:18, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/stl_pair.h:150:12: note: template<class _U1, class _U2, class> constexpr std::pair<_T1, _T2>::pair(std::pair<_U1, _U2>&&) constexpr pair(pair<_U1, _U2>&& __p) ^ /usr/include/c++/4.8.2/bits/stl_pair.h:150:12: note: template argument deduction/substitution failed: In file included from /usr/include/c++/4.8.2/bits/hashtable.h:35:0, from /usr/include/c++/4.8.2/unordered_set:47, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:19, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/hashtable_policy.h:177:55: note: types ‘std::pair<_T1, _T2>’ and ‘const std::basic_string<char>’ have incompatible cv-qualifiers : _M_v(std::forward<_Args>(__args)...), _M_hash_code() { } ^ In file included from /usr/include/c++/4.8.2/bits/stl_algobase.h:64:0, from /usr/include/c++/4.8.2/vector:60, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:18, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/stl_pair.h:144:12: note: template<class _U1, class _U2, class> constexpr std::pair<_T1, _T2>::pair(_U1&&, _U2&&) constexpr pair(_U1&& __x, _U2&& __y) ^ /usr/include/c++/4.8.2/bits/stl_pair.h:144:12: note: template argument deduction/substitution failed: /usr/include/c++/4.8.2/bits/stl_pair.h:141:38: error: no type named ‘type’ in ‘struct std::enable_if<false, void>’ template<class _U1, class _U2, class = typename ^ /usr/include/c++/4.8.2/bits/stl_pair.h:138:12: note: template<class _U2, class> constexpr std::pair<_T1, _T2>::pair(const _T1&, _U2&&) constexpr pair(const _T1& __x, _U2&& __y) ^ /usr/include/c++/4.8.2/bits/stl_pair.h:138:12: note: template argument deduction/substitution failed: /usr/include/c++/4.8.2/bits/stl_pair.h:136:27: error: no type named ‘type’ in ‘struct std::enable_if<false, void>’ template<class _U2, class = typename ^ /usr/include/c++/4.8.2/bits/stl_pair.h:133:12: note: template<class _U1, class> constexpr std::pair<_T1, _T2>::pair(_U1&&, const _T2&) constexpr pair(_U1&& __x, const _T2& __y) ^ /usr/include/c++/4.8.2/bits/stl_pair.h:133:12: note: template argument deduction/substitution failed: In file included from /usr/include/c++/4.8.2/bits/hashtable.h:35:0, from /usr/include/c++/4.8.2/unordered_set:47, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:19, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/hashtable_policy.h:177:55: note: cannot convert ‘std::forward<const std::basic_string<char>&>((* & __args#1))’ (type ‘const std::basic_string<char>’) to type ‘const hazelcast::client::config::reliable_topic_config&’ : _M_v(std::forward<_Args>(__args)...), _M_hash_code() { } ^ In file included from /usr/include/c++/4.8.2/bits/stl_algobase.h:64:0, from /usr/include/c++/4.8.2/vector:60, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:18, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/stl_pair.h:128:17: note: constexpr std::pair<_T1, _T2>::pair(std::pair<_T1, _T2>&&) [with _T1 = const std::basic_string<char>; _T2 = hazelcast::client::config::reliable_topic_config] constexpr pair(pair&&) = default; ^ /usr/include/c++/4.8.2/bits/stl_pair.h:128:17: note: candidate expects 1 argument, 2 provided /usr/include/c++/4.8.2/bits/stl_pair.h:127:17: note: constexpr std::pair<_T1, _T2>::pair(const std::pair<_T1, _T2>&) [with _T1 = const std::basic_string<char>; _T2 = hazelcast::client::config::reliable_topic_config] constexpr pair(const pair&) = default; ^ /usr/include/c++/4.8.2/bits/stl_pair.h:127:17: note: candidate expects 1 argument, 2 provided /usr/include/c++/4.8.2/bits/stl_pair.h:124:12: note: template<class _U1, class _U2, class> constexpr std::pair<_T1, _T2>::pair(const std::pair<_U1, _U2>&) constexpr pair(const pair<_U1, _U2>& __p) ^ /usr/include/c++/4.8.2/bits/stl_pair.h:124:12: note: template argument deduction/substitution failed: In file included from /usr/include/c++/4.8.2/bits/hashtable.h:35:0, from /usr/include/c++/4.8.2/unordered_set:47, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:19, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/hashtable_policy.h:177:55: note: ‘const std::basic_string<char>’ is not derived from ‘const std::pair<_T1, _T2>’ : _M_v(std::forward<_Args>(__args)...), _M_hash_code() { } ^ In file included from /usr/include/c++/4.8.2/bits/stl_algobase.h:64:0, from /usr/include/c++/4.8.2/vector:60, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:18, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/stl_pair.h:112:26: note: constexpr std::pair<_T1, _T2>::pair(const _T1&, const _T2&) [with _T1 = const std::basic_string<char>; _T2 = hazelcast::client::config::reliable_topic_config] _GLIBCXX_CONSTEXPR pair(const _T1& __a, const _T2& __b) ^ /usr/include/c++/4.8.2/bits/stl_pair.h:112:26: note: no known conversion for argument 2 from ‘const std::basic_string<char>’ to ‘const hazelcast::client::config::reliable_topic_config&’ /usr/include/c++/4.8.2/bits/stl_pair.h:108:26: note: constexpr std::pair<_T1, _T2>::pair() [with _T1 = const std::basic_string<char>; _T2 = hazelcast::client::config::reliable_topic_config] _GLIBCXX_CONSTEXPR pair() ^ /usr/include/c++/4.8.2/bits/stl_pair.h:108:26: note: candidate expects 0 arguments, 2 provided gmake[2]: *** [CMakeFiles/hazelcast-cpp-client.dir/hazelcast/src/hazelcast/client/config.cpp.o] Error 1 gmake[1]: *** [CMakeFiles/hazelcast-cpp-client.dir/all] Error 2 gmake: *** [all] Error 2 ```
1.0
cmake build error for Library - C++ compiler version: g++ (GCC) 4.8.5 20150623 (Red Hat 4.8.5-39) OS version (Windows/Linux/OSX): Linux Centos 7 #### Expected behaviour Expected version 4.1 to build on Linux. Version 4.0 built ok on same machine #### Actual behaviour Building version 4.1 of the library works for us on Windows and OSx but fails on Linux. We get the errors shown below. Note: re the initial cmake warnings - We got the same warnings on the previous successful build of 4.0 - They seem to be red herrings as they refer to the line below but further on in the log it clearly states that the build has found the boost libraries - thread, chrone, date_time and atomic ``` find_package(Boost 1.71 REQUIRED COMPONENTS thread chrono) ``` ``` -- The CXX compiler identification is GNU 4.8.5 -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- GIT_COMMIT_DATE = Thu May 6 14:32:43 2021 +0300 -- GIT_COMMIT_ID = 361fd76d -- Looking for C++ include pthread.h -- Looking for C++ include pthread.h - found -- Looking for pthread_create -- Looking for pthread_create - not found -- Looking for pthread_create in pthreads -- Looking for pthread_create in pthreads - not found -- Looking for pthread_create in pthread -- Looking for pthread_create in pthread - found -- Found Threads: TRUE CMake Warning at /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:896 (message): New Boost version may have incorrect or missing dependencies and imported targets Call Stack (most recent call first): /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:1018 (_Boost_COMPONENT_DEPENDENCIES) /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:1694 (_Boost_MISSING_DEPENDENCIES) CMakeLists.txt:82 (find_package) CMake Warning at /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:896 (message): New Boost version may have incorrect or missing dependencies and imported targets Call Stack (most recent call first): /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:1018 (_Boost_COMPONENT_DEPENDENCIES) /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:1694 (_Boost_MISSING_DEPENDENCIES) CMakeLists.txt:82 (find_package) CMake Warning at /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:896 (message): New Boost version may have incorrect or missing dependencies and imported targets Call Stack (most recent call first): /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:1018 (_Boost_COMPONENT_DEPENDENCIES) /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:1694 (_Boost_MISSING_DEPENDENCIES) CMakeLists.txt:82 (find_package) CMake Warning at /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:896 (message): New Boost version may have incorrect or missing dependencies and imported targets Call Stack (most recent call first): /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:1018 (_Boost_COMPONENT_DEPENDENCIES) /usr/local/cmake-3.14.1/share/cmake-3.14/Modules/FindBoost.cmake:1694 (_Boost_MISSING_DEPENDENCIES) CMakeLists.txt:82 (find_package) -- Boost version: 1.71.0 -- Found the following Boost libraries: -- thread -- chrono -- date_time -- atomic -- Performing Test COMPILER_HAS_HIDDEN_VISIBILITY -- Performing Test COMPILER_HAS_HIDDEN_VISIBILITY - Success -- Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY -- Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY - Success -- Performing Test COMPILER_HAS_DEPRECATED_ATTR -- Performing Test COMPILER_HAS_DEPRECATED_ATTR - Success -- Configuration summary: -- CMAKE_BUILD_TYPE = Release -- BUILD_SHARED_LIBS = OFF -- WITH_OPENSSL = OFF -- DISABLE_LOGGING = OFF -- CMAKE_INSTALL_PREFIX = /usr/local -- BUILD_TESTS = OFF -- BUILD_EXAMPLES = OFF -- Configuring done -- Generating done CMake Warning: Manually-specified variables were not used by the project: BUILD_SHARED_LIB BUILD_STATIC_LIB -- Build files have been written to: /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/build 2021/05/11-22:51:46: [INFO] Cmake create build files passed Scanning dependencies of target hazelcast-cpp-client [ 5%] Building CXX object CMakeFiles/hazelcast-cpp-client.dir/hazelcast/generated-sources/src/hazelcast/client/protocol/codec/codecs.cpp.o [ 10%] Building CXX object CMakeFiles/hazelcast-cpp-client.dir/hazelcast/src/hazelcast/client/client_impl.cpp.o [ 15%] Building CXX object CMakeFiles/hazelcast-cpp-client.dir/hazelcast/src/hazelcast/client/cluster.cpp.o [ 21%] Building CXX object CMakeFiles/hazelcast-cpp-client.dir/hazelcast/src/hazelcast/client/config.cpp.o In file included from /usr/include/c++/4.8.2/bits/hashtable.h:35:0, from /usr/include/c++/4.8.2/unordered_set:47, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:19, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/hashtable_policy.h: In instantiation of ‘std::__detail::_Hash_node<_Value, true>::_Hash_node(_Args&& ...) [with _Args = {const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&}; _Value = std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>]’: /usr/include/c++/4.8.2/ext/new_allocator.h:120:4: required from ‘void __gnu_cxx::new_allocator<_Tp>::construct(_Up*, _Args&& ...) [with _Up = std::__detail::_Hash_node<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>, true>; _Args = {const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&}; _Tp = std::__detail::_Hash_node<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>, true>]’ /usr/include/c++/4.8.2/bits/hashtable.h:727:6: required from ‘std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _H1, _H2, _Hash, _RehashPolicy, _Traits>::__node_type* std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _H1, _H2, _Hash, _RehashPolicy, _Traits>::_M_allocate_node(_Args&& ...) [with _Args = {const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&}; _Key = std::basic_string<char>; _Value = std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>; _Alloc = std::allocator<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config> >; _ExtractKey = std::__detail::_Select1st; _Equal = std::equal_to<std::basic_string<char> >; _H1 = std::hash<std::basic_string<char> >; _H2 = std::__detail::_Mod_range_hashing; _Hash = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits<true, false, true>; std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _H1, _H2, _Hash, _RehashPolicy, _Traits>::__node_type = std::__detail::_Hash_node<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>, true>]’ /usr/include/c++/4.8.2/bits/hashtable.h:1260:71: required from ‘std::pair<typename std::__detail::_Hashtable_base<_Key, _Value, _ExtractKey, _Equal, _H1, _H2, _Hash, _Traits>::iterator, bool> std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _H1, _H2, _Hash, _RehashPolicy, _Traits>::_M_emplace(std::true_type, _Args&& ...) [with _Args = {const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&}; _Key = std::basic_string<char>; _Value = std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>; _Alloc = std::allocator<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config> >; _ExtractKey = std::__detail::_Select1st; _Equal = std::equal_to<std::basic_string<char> >; _H1 = std::hash<std::basic_string<char> >; _H2 = std::__detail::_Mod_range_hashing; _Hash = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits<true, false, true>; typename std::__detail::_Hashtable_base<_Key, _Value, _ExtractKey, _Equal, _H1, _H2, _Hash, _Traits>::iterator = std::__detail::_Node_iterator<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>, false, true>; std::true_type = std::integral_constant<bool, true>]’ /usr/include/c++/4.8.2/bits/hashtable.h:665:69: required from ‘std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _H1, _H2, _Hash, _RehashPolicy, _Traits>::__ireturn_type std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _H1, _H2, _Hash, _RehashPolicy, _Traits>::emplace(_Args&& ...) [with _Args = {const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&}; _Key = std::basic_string<char>; _Value = std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>; _Alloc = std::allocator<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config> >; _ExtractKey = std::__detail::_Select1st; _Equal = std::equal_to<std::basic_string<char> >; _H1 = std::hash<std::basic_string<char> >; _H2 = std::__detail::_Mod_range_hashing; _Hash = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits<true, false, true>; std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _H1, _H2, _Hash, _RehashPolicy, _Traits>::__ireturn_type = std::pair<std::__detail::_Node_iterator<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>, false, true>, bool>]’ /usr/include/c++/4.8.2/bits/unordered_map.h:311:54: required from ‘std::pair<typename std::_Hashtable<_Key, std::pair<const _Key, _Tp>, _Alloc, std::__detail::_Select1st, _Pred, _Hash, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<std::__not_<std::__and_<std::__is_fast_hash<_Hash>, std::is_default_constructible<_Hash>, std::is_copy_assignable<_Hash>, std::__detail::__is_noexcept_hash<_Key, _Hash> > >::value, false, true> >::iterator, bool> std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::emplace(_Args&& ...) [with _Args = {const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&}; _Key = std::basic_string<char>; _Tp = hazelcast::client::config::reliable_topic_config; _Hash = std::hash<std::basic_string<char> >; _Pred = std::equal_to<std::basic_string<char> >; _Alloc = std::allocator<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config> >; typename std::_Hashtable<_Key, std::pair<const _Key, _Tp>, _Alloc, std::__detail::_Select1st, _Pred, _Hash, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<std::__not_<std::__and_<std::__is_fast_hash<_Hash>, std::is_default_constructible<_Hash>, std::is_copy_assignable<_Hash>, std::__detail::__is_noexcept_hash<_Key, _Hash> > >::value, false, true> >::iterator = std::__detail::_Node_iterator<std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>, false, true>]’ /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:859:65: required from here /usr/include/c++/4.8.2/bits/hashtable_policy.h:177:55: error: no matching function for call to ‘std::pair<const std::basic_string<char>, hazelcast::client::config::reliable_topic_config>::pair(const std::basic_string<char>&, const std::basic_string<char>&)’ : _M_v(std::forward<_Args>(__args)...), _M_hash_code() { } ^ /usr/include/c++/4.8.2/bits/hashtable_policy.h:177:55: note: candidates are: In file included from /usr/include/c++/4.8.2/bits/stl_algobase.h:64:0, from /usr/include/c++/4.8.2/vector:60, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:18, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/stl_pair.h:206:9: note: template<class ... _Args1, long unsigned int ..._Indexes1, class ... _Args2, long unsigned int ..._Indexes2> std::pair<_T1, _T2>::pair(std::tuple<_Args1 ...>&, std::tuple<_Args2 ...>&, std::_Index_tuple<_Indexes1 ...>, std::_Index_tuple<_Indexes2 ...>) pair(tuple<_Args1...>&, tuple<_Args2...>&, ^ /usr/include/c++/4.8.2/bits/stl_pair.h:206:9: note: template argument deduction/substitution failed: In file included from /usr/include/c++/4.8.2/bits/hashtable.h:35:0, from /usr/include/c++/4.8.2/unordered_set:47, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:19, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/hashtable_policy.h:177:55: note: types ‘std::tuple<_Elements ...>’ and ‘const std::basic_string<char>’ have incompatible cv-qualifiers : _M_v(std::forward<_Args>(__args)...), _M_hash_code() { } ^ In file included from /usr/include/c++/4.8.2/bits/stl_algobase.h:64:0, from /usr/include/c++/4.8.2/vector:60, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:18, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/stl_pair.h:155:9: note: template<class ... _Args1, class ... _Args2> std::pair<_T1, _T2>::pair(std::piecewise_construct_t, std::tuple<_Args1 ...>, std::tuple<_Args2 ...>) pair(piecewise_construct_t, tuple<_Args1...>, tuple<_Args2...>); ^ /usr/include/c++/4.8.2/bits/stl_pair.h:155:9: note: template argument deduction/substitution failed: In file included from /usr/include/c++/4.8.2/bits/hashtable.h:35:0, from /usr/include/c++/4.8.2/unordered_set:47, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:19, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/hashtable_policy.h:177:55: note: cannot convert ‘std::forward<const std::basic_string<char>&>((* & __args#0))’ (type ‘const std::basic_string<char>’) to type ‘std::piecewise_construct_t’ : _M_v(std::forward<_Args>(__args)...), _M_hash_code() { } ^ In file included from /usr/include/c++/4.8.2/bits/stl_algobase.h:64:0, from /usr/include/c++/4.8.2/vector:60, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:18, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/stl_pair.h:150:12: note: template<class _U1, class _U2, class> constexpr std::pair<_T1, _T2>::pair(std::pair<_U1, _U2>&&) constexpr pair(pair<_U1, _U2>&& __p) ^ /usr/include/c++/4.8.2/bits/stl_pair.h:150:12: note: template argument deduction/substitution failed: In file included from /usr/include/c++/4.8.2/bits/hashtable.h:35:0, from /usr/include/c++/4.8.2/unordered_set:47, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:19, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/hashtable_policy.h:177:55: note: types ‘std::pair<_T1, _T2>’ and ‘const std::basic_string<char>’ have incompatible cv-qualifiers : _M_v(std::forward<_Args>(__args)...), _M_hash_code() { } ^ In file included from /usr/include/c++/4.8.2/bits/stl_algobase.h:64:0, from /usr/include/c++/4.8.2/vector:60, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:18, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/stl_pair.h:144:12: note: template<class _U1, class _U2, class> constexpr std::pair<_T1, _T2>::pair(_U1&&, _U2&&) constexpr pair(_U1&& __x, _U2&& __y) ^ /usr/include/c++/4.8.2/bits/stl_pair.h:144:12: note: template argument deduction/substitution failed: /usr/include/c++/4.8.2/bits/stl_pair.h:141:38: error: no type named ‘type’ in ‘struct std::enable_if<false, void>’ template<class _U1, class _U2, class = typename ^ /usr/include/c++/4.8.2/bits/stl_pair.h:138:12: note: template<class _U2, class> constexpr std::pair<_T1, _T2>::pair(const _T1&, _U2&&) constexpr pair(const _T1& __x, _U2&& __y) ^ /usr/include/c++/4.8.2/bits/stl_pair.h:138:12: note: template argument deduction/substitution failed: /usr/include/c++/4.8.2/bits/stl_pair.h:136:27: error: no type named ‘type’ in ‘struct std::enable_if<false, void>’ template<class _U2, class = typename ^ /usr/include/c++/4.8.2/bits/stl_pair.h:133:12: note: template<class _U1, class> constexpr std::pair<_T1, _T2>::pair(_U1&&, const _T2&) constexpr pair(_U1&& __x, const _T2& __y) ^ /usr/include/c++/4.8.2/bits/stl_pair.h:133:12: note: template argument deduction/substitution failed: In file included from /usr/include/c++/4.8.2/bits/hashtable.h:35:0, from /usr/include/c++/4.8.2/unordered_set:47, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:19, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/hashtable_policy.h:177:55: note: cannot convert ‘std::forward<const std::basic_string<char>&>((* & __args#1))’ (type ‘const std::basic_string<char>’) to type ‘const hazelcast::client::config::reliable_topic_config&’ : _M_v(std::forward<_Args>(__args)...), _M_hash_code() { } ^ In file included from /usr/include/c++/4.8.2/bits/stl_algobase.h:64:0, from /usr/include/c++/4.8.2/vector:60, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:18, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/stl_pair.h:128:17: note: constexpr std::pair<_T1, _T2>::pair(std::pair<_T1, _T2>&&) [with _T1 = const std::basic_string<char>; _T2 = hazelcast::client::config::reliable_topic_config] constexpr pair(pair&&) = default; ^ /usr/include/c++/4.8.2/bits/stl_pair.h:128:17: note: candidate expects 1 argument, 2 provided /usr/include/c++/4.8.2/bits/stl_pair.h:127:17: note: constexpr std::pair<_T1, _T2>::pair(const std::pair<_T1, _T2>&) [with _T1 = const std::basic_string<char>; _T2 = hazelcast::client::config::reliable_topic_config] constexpr pair(const pair&) = default; ^ /usr/include/c++/4.8.2/bits/stl_pair.h:127:17: note: candidate expects 1 argument, 2 provided /usr/include/c++/4.8.2/bits/stl_pair.h:124:12: note: template<class _U1, class _U2, class> constexpr std::pair<_T1, _T2>::pair(const std::pair<_U1, _U2>&) constexpr pair(const pair<_U1, _U2>& __p) ^ /usr/include/c++/4.8.2/bits/stl_pair.h:124:12: note: template argument deduction/substitution failed: In file included from /usr/include/c++/4.8.2/bits/hashtable.h:35:0, from /usr/include/c++/4.8.2/unordered_set:47, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:19, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/hashtable_policy.h:177:55: note: ‘const std::basic_string<char>’ is not derived from ‘const std::pair<_T1, _T2>’ : _M_v(std::forward<_Args>(__args)...), _M_hash_code() { } ^ In file included from /usr/include/c++/4.8.2/bits/stl_algobase.h:64:0, from /usr/include/c++/4.8.2/vector:60, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/include/hazelcast/client/client_config.h:18, from /home/build/workspace/Hazelcast-Poller-Build-EL7/hazelcast-cpp-client/hazelcast/src/hazelcast/client/config.cpp:34: /usr/include/c++/4.8.2/bits/stl_pair.h:112:26: note: constexpr std::pair<_T1, _T2>::pair(const _T1&, const _T2&) [with _T1 = const std::basic_string<char>; _T2 = hazelcast::client::config::reliable_topic_config] _GLIBCXX_CONSTEXPR pair(const _T1& __a, const _T2& __b) ^ /usr/include/c++/4.8.2/bits/stl_pair.h:112:26: note: no known conversion for argument 2 from ‘const std::basic_string<char>’ to ‘const hazelcast::client::config::reliable_topic_config&’ /usr/include/c++/4.8.2/bits/stl_pair.h:108:26: note: constexpr std::pair<_T1, _T2>::pair() [with _T1 = const std::basic_string<char>; _T2 = hazelcast::client::config::reliable_topic_config] _GLIBCXX_CONSTEXPR pair() ^ /usr/include/c++/4.8.2/bits/stl_pair.h:108:26: note: candidate expects 0 arguments, 2 provided gmake[2]: *** [CMakeFiles/hazelcast-cpp-client.dir/hazelcast/src/hazelcast/client/config.cpp.o] Error 1 gmake[1]: *** [CMakeFiles/hazelcast-cpp-client.dir/all] Error 2 gmake: *** [all] Error 2 ```
defect
cmake build error for library c compiler version g gcc red hat os version windows linux osx linux centos expected behaviour expected version to build on linux version built ok on same machine actual behaviour building version of the library works for us on windows and osx but fails on linux we get the errors shown below note re the initial cmake warnings we got the same warnings on the previous successful build of they seem to be red herrings as they refer to the line below but further on in the log it clearly states that the build has found the boost libraries thread chrone date time and atomic find package boost required components thread chrono the cxx compiler identification is gnu check for working cxx compiler usr bin c check for working cxx compiler usr bin c works detecting cxx compiler abi info detecting cxx compiler abi info done detecting cxx compile features detecting cxx compile features done git commit date thu may git commit id looking for c include pthread h looking for c include pthread h found looking for pthread create looking for pthread create not found looking for pthread create in pthreads looking for pthread create in pthreads not found looking for pthread create in pthread looking for pthread create in pthread found found threads true cmake warning at usr local cmake share cmake modules findboost cmake message new boost version may have incorrect or missing dependencies and imported targets call stack most recent call first usr local cmake share cmake modules findboost cmake boost component dependencies usr local cmake share cmake modules findboost cmake boost missing dependencies cmakelists txt find package cmake warning at usr local cmake share cmake modules findboost cmake message new boost version may have incorrect or missing dependencies and imported targets call stack most recent call first usr local cmake share cmake modules findboost cmake boost component dependencies usr local cmake share cmake modules findboost cmake boost missing dependencies cmakelists txt find package cmake warning at usr local cmake share cmake modules findboost cmake message new boost version may have incorrect or missing dependencies and imported targets call stack most recent call first usr local cmake share cmake modules findboost cmake boost component dependencies usr local cmake share cmake modules findboost cmake boost missing dependencies cmakelists txt find package cmake warning at usr local cmake share cmake modules findboost cmake message new boost version may have incorrect or missing dependencies and imported targets call stack most recent call first usr local cmake share cmake modules findboost cmake boost component dependencies usr local cmake share cmake modules findboost cmake boost missing dependencies cmakelists txt find package boost version found the following boost libraries thread chrono date time atomic performing test compiler has hidden visibility performing test compiler has hidden visibility success performing test compiler has hidden inline visibility performing test compiler has hidden inline visibility success performing test compiler has deprecated attr performing test compiler has deprecated attr success configuration summary cmake build type release build shared libs off with openssl off disable logging off cmake install prefix usr local build tests off build examples off configuring done generating done cmake warning manually specified variables were not used by the project build shared lib build static lib build files have been written to home build workspace hazelcast poller build hazelcast cpp client build cmake create build files passed scanning dependencies of target hazelcast cpp client building cxx object cmakefiles hazelcast cpp client dir hazelcast generated sources src hazelcast client protocol codec codecs cpp o building cxx object cmakefiles hazelcast cpp client dir hazelcast src hazelcast client client impl cpp o building cxx object cmakefiles hazelcast cpp client dir hazelcast src hazelcast client cluster cpp o building cxx object cmakefiles hazelcast cpp client dir hazelcast src hazelcast client config cpp o in file included from usr include c bits hashtable h from usr include c unordered set from home build workspace hazelcast poller build hazelcast cpp client hazelcast include hazelcast client client config h from home build workspace hazelcast poller build hazelcast cpp client hazelcast src hazelcast client config cpp usr include c bits hashtable policy h in instantiation of ‘std detail hash node hash node args ’ usr include c ext new allocator h required from ‘void gnu cxx new allocator construct up args ’ usr include c bits hashtable h required from ‘std hashtable node type std hashtable m allocate node args ’ usr include c bits hashtable h required from ‘std pair iterator bool std hashtable m emplace std true type args ’ usr include c bits hashtable h required from ‘std hashtable ireturn type std hashtable emplace args ’ usr include c bits unordered map h required from ‘std pair alloc std detail pred hash std detail mod range hashing std detail default ranged hash std detail prime rehash policy std detail hashtable traits std is default constructible std is copy assignable std detail is noexcept hash value false true iterator bool std unordered map emplace args ’ home build workspace hazelcast poller build hazelcast cpp client hazelcast src hazelcast client config cpp required from here usr include c bits hashtable policy h error no matching function for call to ‘std pair hazelcast client config reliable topic config pair const std basic string const std basic string ’ m v std forward args m hash code usr include c bits hashtable policy h note candidates are in file included from usr include c bits stl algobase h from usr include c vector from home build workspace hazelcast poller build hazelcast cpp client hazelcast include hazelcast client client config h from home build workspace hazelcast poller build hazelcast cpp client hazelcast src hazelcast client config cpp usr include c bits stl pair h note template std pair pair std tuple std tuple std index tuple std index tuple pair tuple tuple usr include c bits stl pair h note template argument deduction substitution failed in file included from usr include c bits hashtable h from usr include c unordered set from home build workspace hazelcast poller build hazelcast cpp client hazelcast include hazelcast client client config h from home build workspace hazelcast poller build hazelcast cpp client hazelcast src hazelcast client config cpp usr include c bits hashtable policy h note types ‘std tuple ’ and ‘const std basic string ’ have incompatible cv qualifiers m v std forward args m hash code in file included from usr include c bits stl algobase h from usr include c vector from home build workspace hazelcast poller build hazelcast cpp client hazelcast include hazelcast client client config h from home build workspace hazelcast poller build hazelcast cpp client hazelcast src hazelcast client config cpp usr include c bits stl pair h note template std pair pair std piecewise construct t std tuple std tuple pair piecewise construct t tuple tuple usr include c bits stl pair h note template argument deduction substitution failed in file included from usr include c bits hashtable h from usr include c unordered set from home build workspace hazelcast poller build hazelcast cpp client hazelcast include hazelcast client client config h from home build workspace hazelcast poller build hazelcast cpp client hazelcast src hazelcast client config cpp usr include c bits hashtable policy h note cannot convert ‘std forward args ’ type ‘const std basic string ’ to type ‘std piecewise construct t’ m v std forward args m hash code in file included from usr include c bits stl algobase h from usr include c vector from home build workspace hazelcast poller build hazelcast cpp client hazelcast include hazelcast client client config h from home build workspace hazelcast poller build hazelcast cpp client hazelcast src hazelcast client config cpp usr include c bits stl pair h note template constexpr std pair pair std pair constexpr pair pair p usr include c bits stl pair h note template argument deduction substitution failed in file included from usr include c bits hashtable h from usr include c unordered set from home build workspace hazelcast poller build hazelcast cpp client hazelcast include hazelcast client client config h from home build workspace hazelcast poller build hazelcast cpp client hazelcast src hazelcast client config cpp usr include c bits hashtable policy h note types ‘std pair ’ and ‘const std basic string ’ have incompatible cv qualifiers m v std forward args m hash code in file included from usr include c bits stl algobase h from usr include c vector from home build workspace hazelcast poller build hazelcast cpp client hazelcast include hazelcast client client config h from home build workspace hazelcast poller build hazelcast cpp client hazelcast src hazelcast client config cpp usr include c bits stl pair h note template constexpr std pair pair constexpr pair x y usr include c bits stl pair h note template argument deduction substitution failed usr include c bits stl pair h error no type named ‘type’ in ‘struct std enable if ’ template class class class typename usr include c bits stl pair h note template constexpr std pair pair const constexpr pair const x y usr include c bits stl pair h note template argument deduction substitution failed usr include c bits stl pair h error no type named ‘type’ in ‘struct std enable if ’ template class class typename usr include c bits stl pair h note template constexpr std pair pair const constexpr pair x const y usr include c bits stl pair h note template argument deduction substitution failed in file included from usr include c bits hashtable h from usr include c unordered set from home build workspace hazelcast poller build hazelcast cpp client hazelcast include hazelcast client client config h from home build workspace hazelcast poller build hazelcast cpp client hazelcast src hazelcast client config cpp usr include c bits hashtable policy h note cannot convert ‘std forward args ’ type ‘const std basic string ’ to type ‘const hazelcast client config reliable topic config ’ m v std forward args m hash code in file included from usr include c bits stl algobase h from usr include c vector from home build workspace hazelcast poller build hazelcast cpp client hazelcast include hazelcast client client config h from home build workspace hazelcast poller build hazelcast cpp client hazelcast src hazelcast client config cpp usr include c bits stl pair h note constexpr std pair pair std pair constexpr pair pair default usr include c bits stl pair h note candidate expects argument provided usr include c bits stl pair h note constexpr std pair pair const std pair constexpr pair const pair default usr include c bits stl pair h note candidate expects argument provided usr include c bits stl pair h note template constexpr std pair pair const std pair constexpr pair const pair p usr include c bits stl pair h note template argument deduction substitution failed in file included from usr include c bits hashtable h from usr include c unordered set from home build workspace hazelcast poller build hazelcast cpp client hazelcast include hazelcast client client config h from home build workspace hazelcast poller build hazelcast cpp client hazelcast src hazelcast client config cpp usr include c bits hashtable policy h note ‘const std basic string ’ is not derived from ‘const std pair ’ m v std forward args m hash code in file included from usr include c bits stl algobase h from usr include c vector from home build workspace hazelcast poller build hazelcast cpp client hazelcast include hazelcast client client config h from home build workspace hazelcast poller build hazelcast cpp client hazelcast src hazelcast client config cpp usr include c bits stl pair h note constexpr std pair pair const const glibcxx constexpr pair const a const b usr include c bits stl pair h note no known conversion for argument from ‘const std basic string ’ to ‘const hazelcast client config reliable topic config ’ usr include c bits stl pair h note constexpr std pair pair glibcxx constexpr pair usr include c bits stl pair h note candidate expects arguments provided gmake error gmake error gmake error
1
8,654
2,611,534,529
IssuesEvent
2015-02-27 06:04:59
chrsmith/hedgewars
https://api.github.com/repos/chrsmith/hedgewars
opened
Kamikaze and slipping freezer hogs.
auto-migrated Priority-Medium Type-Defect
``` What steps will reproduce the problem? 1. Freeze some hogs and the ground below them in a way they constantly slip. 2. Kamikaze on them What is the expected output? What do you see instead? Kamikaze should go on the straight line on predictable length. Instead I exploded in some weird, unexpected point. What version of the product are you using? On what operating system? .19 on gentoo Please provide any additional information below. Demo http://www.hedgewars.org/node/5611 Imo it would be best to somehow fix the constantly slipping hogs which should fix that issue too but I'm not the expert :) ``` Original issue reported on code.google.com by `ben...@unit22.org` on 15 Dec 2013 at 1:48
1.0
Kamikaze and slipping freezer hogs. - ``` What steps will reproduce the problem? 1. Freeze some hogs and the ground below them in a way they constantly slip. 2. Kamikaze on them What is the expected output? What do you see instead? Kamikaze should go on the straight line on predictable length. Instead I exploded in some weird, unexpected point. What version of the product are you using? On what operating system? .19 on gentoo Please provide any additional information below. Demo http://www.hedgewars.org/node/5611 Imo it would be best to somehow fix the constantly slipping hogs which should fix that issue too but I'm not the expert :) ``` Original issue reported on code.google.com by `ben...@unit22.org` on 15 Dec 2013 at 1:48
defect
kamikaze and slipping freezer hogs what steps will reproduce the problem freeze some hogs and the ground below them in a way they constantly slip kamikaze on them what is the expected output what do you see instead kamikaze should go on the straight line on predictable length instead i exploded in some weird unexpected point what version of the product are you using on what operating system on gentoo please provide any additional information below demo imo it would be best to somehow fix the constantly slipping hogs which should fix that issue too but i m not the expert original issue reported on code google com by ben org on dec at
1
16,217
9,741,584,046
IssuesEvent
2019-06-02 09:59:04
valyala/fasthttp
https://api.github.com/repos/valyala/fasthttp
closed
Any tarpit / purposefully dropping connection for malicious attacks?
question security
Any tarpit / purposefully dropping connection for malicious attacks? I'm looking for fasthttp equivalent of tarpitting / dropping slowloris kind of attacks.
True
Any tarpit / purposefully dropping connection for malicious attacks? - Any tarpit / purposefully dropping connection for malicious attacks? I'm looking for fasthttp equivalent of tarpitting / dropping slowloris kind of attacks.
non_defect
any tarpit purposefully dropping connection for malicious attacks any tarpit purposefully dropping connection for malicious attacks i m looking for fasthttp equivalent of tarpitting dropping slowloris kind of attacks
0
30,917
6,353,689,367
IssuesEvent
2017-07-29 01:24:07
jccastillo0007/eFacturaT
https://api.github.com/repos/jccastillo0007/eFacturaT
opened
Producción - Mensaje de error en conector Navision (SQL Server)
bug defect
DESDE SIEMPRE HEMOS TENIDO ESPORÁDICAMENTE ESTE ERROR. NO SÉ A QUE SE DEBA, QUIZÁS A CONCURRENCIA… QUE SE YO… AHORA ESTAMOS RETOMANDO EL TEMA, Y LOS ESPAÑOLES DICEN QUE ESTÁ DE NUESTRO LADO… COMO LA BEISBOL?? 2017-06-15 02:20:49.0032 ERROR pool-5-thread-1 org.hibernate.util.JDBCExceptionReporter La transacción (Id. de proceso 55) quedó en interbloqueo en bloqueo recursos con otro proceso y fue elegida como sujeto del interbloqueo. Ejecute de nuevo la transacción. ENCONTRÉ ESTA LIGA, SEGURAMENTE HAY MUCHAS MAS… HAY QUE APROVECHA LA MIGRACIÓN PARA ATENDER ESTE PROBLEMA… la segunda liga, la manda el informático de españa... chiaaaa https://social.msdn.microsoft.com/Forums/es-ES/1cb134b7-38bb-44f7-8f54-d70ff421bab2/la-transaccin-id-de-proceso-qued-en-interbloqueo-en-lock-recursos-con-otro-proceso-y-fue?forum=sqlserveres https://www.google.es/url?sa=t&source=web&rct=j&url=https://stackoverflow.com/questions/17907443/error-org-hibernate-util-jdbcexceptionreporter-cannot-load-jdbc-driver-class&ved=0ahUKEwiKuoe6jKnVAhXBVRQKHdJBAIYQFggcMAA&usg=AFQjCNEKCJoRXspaCAAgRDNMKgrQ6sHPEQ
1.0
Producción - Mensaje de error en conector Navision (SQL Server) - DESDE SIEMPRE HEMOS TENIDO ESPORÁDICAMENTE ESTE ERROR. NO SÉ A QUE SE DEBA, QUIZÁS A CONCURRENCIA… QUE SE YO… AHORA ESTAMOS RETOMANDO EL TEMA, Y LOS ESPAÑOLES DICEN QUE ESTÁ DE NUESTRO LADO… COMO LA BEISBOL?? 2017-06-15 02:20:49.0032 ERROR pool-5-thread-1 org.hibernate.util.JDBCExceptionReporter La transacción (Id. de proceso 55) quedó en interbloqueo en bloqueo recursos con otro proceso y fue elegida como sujeto del interbloqueo. Ejecute de nuevo la transacción. ENCONTRÉ ESTA LIGA, SEGURAMENTE HAY MUCHAS MAS… HAY QUE APROVECHA LA MIGRACIÓN PARA ATENDER ESTE PROBLEMA… la segunda liga, la manda el informático de españa... chiaaaa https://social.msdn.microsoft.com/Forums/es-ES/1cb134b7-38bb-44f7-8f54-d70ff421bab2/la-transaccin-id-de-proceso-qued-en-interbloqueo-en-lock-recursos-con-otro-proceso-y-fue?forum=sqlserveres https://www.google.es/url?sa=t&source=web&rct=j&url=https://stackoverflow.com/questions/17907443/error-org-hibernate-util-jdbcexceptionreporter-cannot-load-jdbc-driver-class&ved=0ahUKEwiKuoe6jKnVAhXBVRQKHdJBAIYQFggcMAA&usg=AFQjCNEKCJoRXspaCAAgRDNMKgrQ6sHPEQ
defect
producción mensaje de error en conector navision sql server desde siempre hemos tenido esporádicamente este error no sé a que se deba quizás a concurrencia… que se yo… ahora estamos retomando el tema y los españoles dicen que está de nuestro lado… como la beisbol error pool thread org hibernate util jdbcexceptionreporter la transacción id de proceso quedó en interbloqueo en bloqueo recursos con otro proceso y fue elegida como sujeto del interbloqueo ejecute de nuevo la transacción encontré esta liga seguramente hay muchas mas… hay que aprovecha la migración para atender este problema… la segunda liga la manda el informático de españa chiaaaa
1
60,969
17,023,569,333
IssuesEvent
2021-07-03 02:42:17
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
closed
Potlatch lost Localisation!
Component: potlatch (flash editor) Priority: major Resolution: invalid Type: defect
**[Submitted to the original trac issue database at 7.08pm, Saturday, 27th March 2010]** Today I found that Potlatch lost Russification. See attached file. What's happen?
1.0
Potlatch lost Localisation! - **[Submitted to the original trac issue database at 7.08pm, Saturday, 27th March 2010]** Today I found that Potlatch lost Russification. See attached file. What's happen?
defect
potlatch lost localisation today i found that potlatch lost russification see attached file what s happen
1
733,091
25,287,291,239
IssuesEvent
2022-11-16 20:26:49
brave/brave-browser
https://api.github.com/repos/brave/brave-browser
closed
Brave crashes when removing device from the sync chain
bug crash feature/sync priority/P2 QA/Yes release-notes/exclude regression OS/Desktop
<!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue. PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE. INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED--> ## Description <!--Provide a brief description of the issue--> ## Steps to Reproduce <!--Please add a series of steps to reproduce the issue--> 1. Install 1.47.75 2. launch Brave 3. set up a sync chain 4. joined the sync chain from Android 5. also joined from Profile 2 (same machine) 6. click x tried to remove Android device (or Profile 2) ## Actual result: <!--Please add screenshots if needed--> Brave Crashed Crash Report ID: | 976c0a00-b002-2209-0000-000000000000 <img width="551" alt="image" src="https://user-images.githubusercontent.com/98358127/202223709-3fe977eb-99ba-4208-ab7e-9462dbfc936d.png"> ``` [ 00 ] static void BraveSyncHandler::HandleDeleteDevice(const class base::Value::List & const) ( brave_sync_handler.cc:261 ) [ 01 ] aura::DefaultWindowOcclusionChangeBuilder::~DefaultWindowOcclusionChangeBuilder() ( window_occlusion_change_builder.cc:39 ) [ 02 ] url::Origin::Create(GURL const &) ( origin.cc:62 ) [ 03 ] views::NativeWidgetAura::Close() ( native_widget_aura.cc:634 ) [ 04 ] _tailMerge_esent.dll [ 05 ] _tailMerge_esent.dll [ 06 ] _tailMerge_esent.dll [ 07 ] _tailMerge_esent.dll [ 08 ] views::NativeWidgetAura::Close() ( native_widget_aura.cc:634 ) [ 09 ] _tailMerge_esent.dll [ 10 ] _tailMerge_esent.dll [ 11 ] views::NativeWidgetAura::Close() ( native_widget_aura.cc:634 ) [ 12 ] _tailMerge_esent.dll [ 13 ] _tailMerge_esent.dll [ 14 ] views::NativeWidgetAura::Close() ( native_widget_aura.cc:634 ) [ 15 ] views::NativeWidgetAura::Close() ( native_widget_aura.cc:634 ) [ 16 ] views::NativeWidgetAura::Close() ( native_widget_aura.cc:634 ) [ 17 ] url::Origin::operator<(url::Origin const &) ( origin.cc:256 ) [ 18 ] views::NativeWidgetAura::Close() ( native_widget_aura.cc:634 ) [ 19 ] std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >::compare<std::Cr::basic_string_view<char,std::Cr::char_traits<char> > >(std::Cr::basic_string_view<char,std::Cr::char_traits<char> > const &) ( string:3909 ) [ 20 ] content::`anonymous namespace'::WebUIConfigMapWebUIControllerFactory::UseWebUIForURL(A0xA57CB5C5::BrowserContext *,GURL const &) ( webui_config_map.cc:41 ) [ 21 ] static class std::Cr::__tree_iterator<std::Cr::__value_type<std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,ExtensionFunctionRegistry::FactoryEntry>,std::Cr::__tree_node<std::Cr::__value_type<std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,ExtensionFunctionRegistry::FactoryEntry>,void *> *,long long> std::Cr::__tree<std::Cr::__value_type<std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,ExtensionFunctionRegistry::FactoryEntry>,std::Cr::__map_value_compare<std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,std::Cr::__value_type<std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,ExtensionFunctionRegistry::FactoryEntry>,std::Cr::less<std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> > >,1>,std::Cr::allocator<std::Cr::__value_type<std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,ExtensionFunctionRegistry::FactoryEntry> > >::find<std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> > >(const class std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> > & const) ( __tree:2470 ) [ 22 ] static void base::internal::Invoker<base::internal::BindState<void ((anonymous namespace)::AdblockDOMHandler::*)(const base::Value::List &),base::internal::UnretainedWrapper<(anonymous namespace)::AdblockDOMHandler,base::RawPtrBanDanglingIfSupported> >,void (const base::Value::List &)>::Run(const class base::Value::List & const) ( bind_internal.h:877 ) [ 23 ] views::NativeWidgetAura::Close() ( native_widget_aura.cc:634 ) [ 24 ] static void base::RepeatingCallback<void (CastDeviceEntryView *)>::Run(class CastDeviceEntryView *) ( callback.h:268 ) [ 25 ] content::WebUIImpl::ProcessWebUIMessage(GURL const &,std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> > const &,base::Value::List) ( web_ui_impl.cc:239 ) [ 26 ] content::ChildProcessSecurityPolicyImpl::HasWebUIBindings(int) ( child_process_security_policy_impl.cc:1468 ) [ 27 ] base::EndsWith(base::BasicStringPiece<char,std::Cr::char_traits<char> >,base::BasicStringPiece<char,std::Cr::char_traits<char> >,base::CompareCase) ( string_util.cc:277 ) [ 28 ] content::WebUIImpl::Send(std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> > const &,base::Value::List) ( web_ui_impl.cc:118 ) [ 29 ] _tailMerge_esent.dll [ 30 ] static void allocator_shim::internal::PartitionFree(const struct allocator_shim::AllocatorDispatch *, void *, void *) ( allocator_shim_default_dispatch_to_partition_alloc.cc:441 ) [ 31 ] absl::variant_internal::VisitIndicesSwitch<8>::Run<absl::variant_internal::VariantStateBaseDestructorNontrivial<absl::monostate,bool,int,base::Value::DoubleStorage,std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,std::Cr::vector<unsigned char,std::Cr::allocator<unsigned char> >,base::Value::Dict,base::Value::List>::Destroyer>(absl::variant_internal::VariantStateBaseDestructorNontrivial<absl::monostate,bool,int,base::Value::DoubleStorage,std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,std::Cr::vector<unsigned char,std::Cr::allocator<unsigned char> >,base::Value::Dict,base::Value::List>::Destroyer &&,unsigned __int64) ( variant.h:429 ) [ 32 ] base::Value::List::Append(base::Value &&) ( values.cc:943 ) [ 33 ] absl::variant_internal::VisitIndicesSwitch<8>::Run<absl::variant_internal::VariantStateBaseDestructorNontrivial<absl::monostate,bool,int,base::Value::DoubleStorage,std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,std::Cr::vector<unsigned char,std::Cr::allocator<unsigned char> >,base::Value::Dict,base::Value::List>::Destroyer>(absl::variant_internal::VariantStateBaseDestructorNontrivial<absl::monostate,bool,int,base::Value::DoubleStorage,std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,std::Cr::vector<unsigned char,std::Cr::allocator<unsigned char> >,base::Value::Dict,base::Value::List>::Destroyer &&,unsigned __int64) ( variant.h:429 ) [ 34 ] mojo::StructTraits<mojo_base::mojom::ListValueDataView,base::Value::List>::Read(mojo_base::mojom::ListValueDataView,base::Value::List *) ( values_mojom_traits.cc:42 ) [ 35 ] _tailMerge_esent.dll [ 36 ] content::mojom::WebUIHostStubDispatch::Accept(content::mojom::WebUIHost *,mojo::Message *) ( web_ui.mojom.cc:204 ) [ 37 ] mojo_base::mojom::internal::ListValue_Data::Validate(void const *,mojo::internal::ValidationContext *) ( values.mojom-shared.cc:190 ) [ 38 ] mojo::InterfaceEndpointClient::HandleValidatedMessage(mojo::Message *) ( interface_endpoint_client.cc:930 ) [ 39 ] mojo::internal::ValidateRequestGeneric(mojo::Message *,char const *,base::span<std::Cr::pair<unsigned int,mojo::internal::GenericValidationInfo> const ,-1>) ( generated_code_util.cc:98 ) [ 40 ] _tailMerge_esent.dll [ 41 ] _tailMerge_esent.dll [ 42 ] mojo::InterfaceEndpointClient::HandleIncomingMessage(mojo::Message *) ( interface_endpoint_client.cc:689 ) [ 43 ] _tailMerge_esent.dll ``` ## Expected result: Brave should not crash ## Reproduces how often: <!--[Easily reproduced/Intermittent issue/No steps to reproduce]--> Easily ## Brave version (brave://version info) <!--For installed build, please copy Brave, Revision and OS from brave://version and paste here. If building from source please mention it along with brave://version details--> Brave | 1.47.75 Chromium: 108.0.5359.40 (Official Build) nightly (64-bit) -- | -- Revision | 280b5fcaab3e877562b06cfaf2eb51121e13c3b9-refs/branch-heads/5359@{#689} OS | Windows 11 Version 21H2 (Build 22000.1219) ## Version/Channel Information: <!--Does this issue happen on any other channels? Or is it specific to a certain channel?--> - Can you reproduce this issue with the current release? No - Can you reproduce this issue with the beta channel? No - Can you reproduce this issue with the nightly channel? Yes ## Other Additional Information: - Does the issue resolve itself when disabling Brave Shields? - Does the issue resolve itself when disabling Brave Rewards? - Is the issue reproducible on the latest version of Chrome? ## Miscellaneous Information: <!--Any additional information, related issues, extra QA steps, configuration or data that might be necessary to reproduce the issue--> @mkarolin @rebron
1.0
Brave crashes when removing device from the sync chain - <!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue. PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE. INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED--> ## Description <!--Provide a brief description of the issue--> ## Steps to Reproduce <!--Please add a series of steps to reproduce the issue--> 1. Install 1.47.75 2. launch Brave 3. set up a sync chain 4. joined the sync chain from Android 5. also joined from Profile 2 (same machine) 6. click x tried to remove Android device (or Profile 2) ## Actual result: <!--Please add screenshots if needed--> Brave Crashed Crash Report ID: | 976c0a00-b002-2209-0000-000000000000 <img width="551" alt="image" src="https://user-images.githubusercontent.com/98358127/202223709-3fe977eb-99ba-4208-ab7e-9462dbfc936d.png"> ``` [ 00 ] static void BraveSyncHandler::HandleDeleteDevice(const class base::Value::List & const) ( brave_sync_handler.cc:261 ) [ 01 ] aura::DefaultWindowOcclusionChangeBuilder::~DefaultWindowOcclusionChangeBuilder() ( window_occlusion_change_builder.cc:39 ) [ 02 ] url::Origin::Create(GURL const &) ( origin.cc:62 ) [ 03 ] views::NativeWidgetAura::Close() ( native_widget_aura.cc:634 ) [ 04 ] _tailMerge_esent.dll [ 05 ] _tailMerge_esent.dll [ 06 ] _tailMerge_esent.dll [ 07 ] _tailMerge_esent.dll [ 08 ] views::NativeWidgetAura::Close() ( native_widget_aura.cc:634 ) [ 09 ] _tailMerge_esent.dll [ 10 ] _tailMerge_esent.dll [ 11 ] views::NativeWidgetAura::Close() ( native_widget_aura.cc:634 ) [ 12 ] _tailMerge_esent.dll [ 13 ] _tailMerge_esent.dll [ 14 ] views::NativeWidgetAura::Close() ( native_widget_aura.cc:634 ) [ 15 ] views::NativeWidgetAura::Close() ( native_widget_aura.cc:634 ) [ 16 ] views::NativeWidgetAura::Close() ( native_widget_aura.cc:634 ) [ 17 ] url::Origin::operator<(url::Origin const &) ( origin.cc:256 ) [ 18 ] views::NativeWidgetAura::Close() ( native_widget_aura.cc:634 ) [ 19 ] std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >::compare<std::Cr::basic_string_view<char,std::Cr::char_traits<char> > >(std::Cr::basic_string_view<char,std::Cr::char_traits<char> > const &) ( string:3909 ) [ 20 ] content::`anonymous namespace'::WebUIConfigMapWebUIControllerFactory::UseWebUIForURL(A0xA57CB5C5::BrowserContext *,GURL const &) ( webui_config_map.cc:41 ) [ 21 ] static class std::Cr::__tree_iterator<std::Cr::__value_type<std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,ExtensionFunctionRegistry::FactoryEntry>,std::Cr::__tree_node<std::Cr::__value_type<std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,ExtensionFunctionRegistry::FactoryEntry>,void *> *,long long> std::Cr::__tree<std::Cr::__value_type<std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,ExtensionFunctionRegistry::FactoryEntry>,std::Cr::__map_value_compare<std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,std::Cr::__value_type<std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,ExtensionFunctionRegistry::FactoryEntry>,std::Cr::less<std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> > >,1>,std::Cr::allocator<std::Cr::__value_type<std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,ExtensionFunctionRegistry::FactoryEntry> > >::find<std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> > >(const class std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> > & const) ( __tree:2470 ) [ 22 ] static void base::internal::Invoker<base::internal::BindState<void ((anonymous namespace)::AdblockDOMHandler::*)(const base::Value::List &),base::internal::UnretainedWrapper<(anonymous namespace)::AdblockDOMHandler,base::RawPtrBanDanglingIfSupported> >,void (const base::Value::List &)>::Run(const class base::Value::List & const) ( bind_internal.h:877 ) [ 23 ] views::NativeWidgetAura::Close() ( native_widget_aura.cc:634 ) [ 24 ] static void base::RepeatingCallback<void (CastDeviceEntryView *)>::Run(class CastDeviceEntryView *) ( callback.h:268 ) [ 25 ] content::WebUIImpl::ProcessWebUIMessage(GURL const &,std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> > const &,base::Value::List) ( web_ui_impl.cc:239 ) [ 26 ] content::ChildProcessSecurityPolicyImpl::HasWebUIBindings(int) ( child_process_security_policy_impl.cc:1468 ) [ 27 ] base::EndsWith(base::BasicStringPiece<char,std::Cr::char_traits<char> >,base::BasicStringPiece<char,std::Cr::char_traits<char> >,base::CompareCase) ( string_util.cc:277 ) [ 28 ] content::WebUIImpl::Send(std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> > const &,base::Value::List) ( web_ui_impl.cc:118 ) [ 29 ] _tailMerge_esent.dll [ 30 ] static void allocator_shim::internal::PartitionFree(const struct allocator_shim::AllocatorDispatch *, void *, void *) ( allocator_shim_default_dispatch_to_partition_alloc.cc:441 ) [ 31 ] absl::variant_internal::VisitIndicesSwitch<8>::Run<absl::variant_internal::VariantStateBaseDestructorNontrivial<absl::monostate,bool,int,base::Value::DoubleStorage,std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,std::Cr::vector<unsigned char,std::Cr::allocator<unsigned char> >,base::Value::Dict,base::Value::List>::Destroyer>(absl::variant_internal::VariantStateBaseDestructorNontrivial<absl::monostate,bool,int,base::Value::DoubleStorage,std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,std::Cr::vector<unsigned char,std::Cr::allocator<unsigned char> >,base::Value::Dict,base::Value::List>::Destroyer &&,unsigned __int64) ( variant.h:429 ) [ 32 ] base::Value::List::Append(base::Value &&) ( values.cc:943 ) [ 33 ] absl::variant_internal::VisitIndicesSwitch<8>::Run<absl::variant_internal::VariantStateBaseDestructorNontrivial<absl::monostate,bool,int,base::Value::DoubleStorage,std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,std::Cr::vector<unsigned char,std::Cr::allocator<unsigned char> >,base::Value::Dict,base::Value::List>::Destroyer>(absl::variant_internal::VariantStateBaseDestructorNontrivial<absl::monostate,bool,int,base::Value::DoubleStorage,std::Cr::basic_string<char,std::Cr::char_traits<char>,std::Cr::allocator<char> >,std::Cr::vector<unsigned char,std::Cr::allocator<unsigned char> >,base::Value::Dict,base::Value::List>::Destroyer &&,unsigned __int64) ( variant.h:429 ) [ 34 ] mojo::StructTraits<mojo_base::mojom::ListValueDataView,base::Value::List>::Read(mojo_base::mojom::ListValueDataView,base::Value::List *) ( values_mojom_traits.cc:42 ) [ 35 ] _tailMerge_esent.dll [ 36 ] content::mojom::WebUIHostStubDispatch::Accept(content::mojom::WebUIHost *,mojo::Message *) ( web_ui.mojom.cc:204 ) [ 37 ] mojo_base::mojom::internal::ListValue_Data::Validate(void const *,mojo::internal::ValidationContext *) ( values.mojom-shared.cc:190 ) [ 38 ] mojo::InterfaceEndpointClient::HandleValidatedMessage(mojo::Message *) ( interface_endpoint_client.cc:930 ) [ 39 ] mojo::internal::ValidateRequestGeneric(mojo::Message *,char const *,base::span<std::Cr::pair<unsigned int,mojo::internal::GenericValidationInfo> const ,-1>) ( generated_code_util.cc:98 ) [ 40 ] _tailMerge_esent.dll [ 41 ] _tailMerge_esent.dll [ 42 ] mojo::InterfaceEndpointClient::HandleIncomingMessage(mojo::Message *) ( interface_endpoint_client.cc:689 ) [ 43 ] _tailMerge_esent.dll ``` ## Expected result: Brave should not crash ## Reproduces how often: <!--[Easily reproduced/Intermittent issue/No steps to reproduce]--> Easily ## Brave version (brave://version info) <!--For installed build, please copy Brave, Revision and OS from brave://version and paste here. If building from source please mention it along with brave://version details--> Brave | 1.47.75 Chromium: 108.0.5359.40 (Official Build) nightly (64-bit) -- | -- Revision | 280b5fcaab3e877562b06cfaf2eb51121e13c3b9-refs/branch-heads/5359@{#689} OS | Windows 11 Version 21H2 (Build 22000.1219) ## Version/Channel Information: <!--Does this issue happen on any other channels? Or is it specific to a certain channel?--> - Can you reproduce this issue with the current release? No - Can you reproduce this issue with the beta channel? No - Can you reproduce this issue with the nightly channel? Yes ## Other Additional Information: - Does the issue resolve itself when disabling Brave Shields? - Does the issue resolve itself when disabling Brave Rewards? - Is the issue reproducible on the latest version of Chrome? ## Miscellaneous Information: <!--Any additional information, related issues, extra QA steps, configuration or data that might be necessary to reproduce the issue--> @mkarolin @rebron
non_defect
brave crashes when removing device from the sync chain have you searched for similar issues before submitting this issue please check the open issues and add a note before logging a new issue please use the template below to provide information about the issue insufficient info will get the issue closed it will only be reopened after sufficient info is provided description steps to reproduce install launch brave set up a sync chain joined the sync chain from android also joined from profile same machine click x tried to remove android device or profile actual result brave crashed crash report id img width alt image src static void bravesynchandler handledeletedevice const class base value list const brave sync handler cc aura defaultwindowocclusionchangebuilder defaultwindowocclusionchangebuilder window occlusion change builder cc url origin create gurl const origin cc views nativewidgetaura close native widget aura cc tailmerge esent dll tailmerge esent dll tailmerge esent dll tailmerge esent dll views nativewidgetaura close native widget aura cc tailmerge esent dll tailmerge esent dll views nativewidgetaura close native widget aura cc tailmerge esent dll tailmerge esent dll views nativewidgetaura close native widget aura cc views nativewidgetaura close native widget aura cc views nativewidgetaura close native widget aura cc url origin operator url origin const origin cc views nativewidgetaura close native widget aura cc std cr basic string std cr allocator compare std cr basic string view const string content anonymous namespace webuiconfigmapwebuicontrollerfactory usewebuiforurl browsercontext gurl const webui config map cc static class std cr tree iterator std cr allocator extensionfunctionregistry factoryentry std cr tree node std cr allocator extensionfunctionregistry factoryentry void long long std cr tree std cr allocator extensionfunctionregistry factoryentry std cr map value compare std cr allocator std cr value type std cr allocator extensionfunctionregistry factoryentry std cr less std cr allocator std cr allocator std cr allocator extensionfunctionregistry factoryentry find std cr allocator const class std cr basic string std cr allocator const tree static void base internal invoker void const base value list run const class base value list const bind internal h views nativewidgetaura close native widget aura cc static void base repeatingcallback run class castdeviceentryview callback h content webuiimpl processwebuimessage gurl const std cr basic string std cr allocator const base value list web ui impl cc content childprocesssecuritypolicyimpl haswebuibindings int child process security policy impl cc base endswith base basicstringpiece base basicstringpiece base comparecase string util cc content webuiimpl send std cr basic string std cr allocator const base value list web ui impl cc tailmerge esent dll static void allocator shim internal partitionfree const struct allocator shim allocatordispatch void void allocator shim default dispatch to partition alloc cc absl variant internal visitindicesswitch run std cr allocator std cr vector base value dict base value list destroyer absl variant internal variantstatebasedestructornontrivial std cr allocator std cr vector base value dict base value list destroyer unsigned variant h base value list append base value values cc absl variant internal visitindicesswitch run std cr allocator std cr vector base value dict base value list destroyer absl variant internal variantstatebasedestructornontrivial std cr allocator std cr vector base value dict base value list destroyer unsigned variant h mojo structtraits read mojo base mojom listvaluedataview base value list values mojom traits cc tailmerge esent dll content mojom webuihoststubdispatch accept content mojom webuihost mojo message web ui mojom cc mojo base mojom internal listvalue data validate void const mojo internal validationcontext values mojom shared cc mojo interfaceendpointclient handlevalidatedmessage mojo message interface endpoint client cc mojo internal validaterequestgeneric mojo message char const base span const generated code util cc tailmerge esent dll tailmerge esent dll mojo interfaceendpointclient handleincomingmessage mojo message interface endpoint client cc tailmerge esent dll expected result brave should not crash reproduces how often easily brave version brave version info brave chromium   official build  nightly  bit revision refs branch heads os windows  version build version channel information can you reproduce this issue with the current release no can you reproduce this issue with the beta channel no can you reproduce this issue with the nightly channel yes other additional information does the issue resolve itself when disabling brave shields does the issue resolve itself when disabling brave rewards is the issue reproducible on the latest version of chrome miscellaneous information mkarolin rebron
0
37,004
8,199,183,258
IssuesEvent
2018-08-31 19:08:54
Automattic/wp-calypso
https://api.github.com/repos/Automattic/wp-calypso
reopened
Activity Log: new attachments in calypso are being logged as attached
Activity Log [Pri] Normal [Size] M [Type] Defect
To reproduce: 1. Go to calypso and select a jetpack site 2. Start a new post 3. Upload and insert a new image into the post 4. Publish Note the "image upload" event: <img width="923" alt="screen shot 2018-08-24 at 6 55 13 pm" src="https://user-images.githubusercontent.com/2694219/44611473-4acfc780-a7cf-11e8-9c4a-424bb558c188.png"> This should instead be an "image attached" event like this: <img width="932" alt="screen shot 2018-08-24 at 6 58 27 pm" src="https://user-images.githubusercontent.com/2694219/44611559-b6b23000-a7cf-11e8-9928-3f90168e4d98.png"> Note: this is not happening in wp-admin for jetpack sites. Nor is it happening for .com sites at all.
1.0
Activity Log: new attachments in calypso are being logged as attached - To reproduce: 1. Go to calypso and select a jetpack site 2. Start a new post 3. Upload and insert a new image into the post 4. Publish Note the "image upload" event: <img width="923" alt="screen shot 2018-08-24 at 6 55 13 pm" src="https://user-images.githubusercontent.com/2694219/44611473-4acfc780-a7cf-11e8-9c4a-424bb558c188.png"> This should instead be an "image attached" event like this: <img width="932" alt="screen shot 2018-08-24 at 6 58 27 pm" src="https://user-images.githubusercontent.com/2694219/44611559-b6b23000-a7cf-11e8-9928-3f90168e4d98.png"> Note: this is not happening in wp-admin for jetpack sites. Nor is it happening for .com sites at all.
defect
activity log new attachments in calypso are being logged as attached to reproduce go to calypso and select a jetpack site start a new post upload and insert a new image into the post publish note the image upload event img width alt screen shot at pm src this should instead be an image attached event like this img width alt screen shot at pm src note this is not happening in wp admin for jetpack sites nor is it happening for com sites at all
1
66,294
20,119,203,234
IssuesEvent
2022-02-07 23:19:40
scipy/scipy
https://api.github.com/repos/scipy/scipy
closed
BUG: np.matmul(scipy.sparse.csr_array, numpy array) throws an error
defect
### Describe your issue. An error is thrown when multiplying a scipy.sparse.csr_array by a dense numpy array with appropriate dimensions using matmul. Using @ works. Using Numpy 1.22.1, Scipy 1.8.0 ### Reproducing Code Example ```python from scipy.sparse import csr_array import numpy a = csr_array(numpy.eye(4)) b = numpy.random.randn(4,1) c_working = a @ b c_alsoWorking = a.dot(b) c_notWorking = numpy.matmul(a,b) ``` ### Error message ```shell ValueError: matmul: Input operand 0 does not have enough dimensions (has 0, gufunc core with signature (n?, k),(k, m?)->(n?,m?) requires 1) ``` ### SciPy/NumPy/Python version information 1.8.0 1.22.1 sys.version_info(major=3, minor=10, micro=0, releaselevel='final', serial=0)
1.0
BUG: np.matmul(scipy.sparse.csr_array, numpy array) throws an error - ### Describe your issue. An error is thrown when multiplying a scipy.sparse.csr_array by a dense numpy array with appropriate dimensions using matmul. Using @ works. Using Numpy 1.22.1, Scipy 1.8.0 ### Reproducing Code Example ```python from scipy.sparse import csr_array import numpy a = csr_array(numpy.eye(4)) b = numpy.random.randn(4,1) c_working = a @ b c_alsoWorking = a.dot(b) c_notWorking = numpy.matmul(a,b) ``` ### Error message ```shell ValueError: matmul: Input operand 0 does not have enough dimensions (has 0, gufunc core with signature (n?, k),(k, m?)->(n?,m?) requires 1) ``` ### SciPy/NumPy/Python version information 1.8.0 1.22.1 sys.version_info(major=3, minor=10, micro=0, releaselevel='final', serial=0)
defect
bug np matmul scipy sparse csr array numpy array throws an error describe your issue an error is thrown when multiplying a scipy sparse csr array by a dense numpy array with appropriate dimensions using matmul using works using numpy scipy reproducing code example python from scipy sparse import csr array import numpy a csr array numpy eye b numpy random randn c working a b c alsoworking a dot b c notworking numpy matmul a b error message shell valueerror matmul input operand does not have enough dimensions has gufunc core with signature n k k m n m requires scipy numpy python version information sys version info major minor micro releaselevel final serial
1
258,523
22,325,514,507
IssuesEvent
2022-06-14 10:14:33
wazuh/wazuh-qa
https://api.github.com/repos/wazuh/wazuh-qa
opened
Update `xfailed` list for Cluster Workload tests
team/framework test/performance feature/cluster feature/api
After the changes added to agent-groups in this development: issue, we have run the Workload tests to verify if we can update the `xfailed` list. According to our [tests](https://github.com/wazuh/wazuh/issues/13536#issuecomment-1154860411), we can update the list by leaving only `PUT /active-response` and PUT `/agents/group`: ``` xfailed_items = { '/active-response': {'message': 'Agent simulator not handling active-response messages: ' 'https://github.com/wazuh/wazuh-qa/issues/1266', 'method': 'put'}, '/agents/group': {'message': 'Slow agent-group files creation: https://github.com/wazuh/wazuh/issues/8625', 'method': 'put'} } ``` https://github.com/wazuh/wazuh-qa/blob/daeda1e81bdbb35c45d92ade4bbcae2b81a2c6b7/tests/performance/test_api/test_api_endpoints_performance.py#L15-L33
1.0
Update `xfailed` list for Cluster Workload tests - After the changes added to agent-groups in this development: issue, we have run the Workload tests to verify if we can update the `xfailed` list. According to our [tests](https://github.com/wazuh/wazuh/issues/13536#issuecomment-1154860411), we can update the list by leaving only `PUT /active-response` and PUT `/agents/group`: ``` xfailed_items = { '/active-response': {'message': 'Agent simulator not handling active-response messages: ' 'https://github.com/wazuh/wazuh-qa/issues/1266', 'method': 'put'}, '/agents/group': {'message': 'Slow agent-group files creation: https://github.com/wazuh/wazuh/issues/8625', 'method': 'put'} } ``` https://github.com/wazuh/wazuh-qa/blob/daeda1e81bdbb35c45d92ade4bbcae2b81a2c6b7/tests/performance/test_api/test_api_endpoints_performance.py#L15-L33
non_defect
update xfailed list for cluster workload tests after the changes added to agent groups in this development issue we have run the workload tests to verify if we can update the xfailed list according to our we can update the list by leaving only put active response and put agents group xfailed items active response message agent simulator not handling active response messages method put agents group message slow agent group files creation method put
0
10,524
2,622,170,357
IssuesEvent
2015-03-04 00:14:14
byzhang/rapidjson
https://api.github.com/repos/byzhang/rapidjson
closed
Missing 'template' keyword in GenericDocument::ParseStream
auto-migrated Priority-Medium Type-Defect
``` Compiling document.h with Clang produces an error because the 'template' keyword is not used to call a member function template of a dependent type. The attached patch fixes it. ``` Original issue reported on code.google.com by `jonathan...@gmail.com` on 17 May 2013 at 12:24 * Merged into: #42 Attachments: * [rj.diff](https://storage.googleapis.com/google-code-attachments/rapidjson/issue-73/comment-0/rj.diff)
1.0
Missing 'template' keyword in GenericDocument::ParseStream - ``` Compiling document.h with Clang produces an error because the 'template' keyword is not used to call a member function template of a dependent type. The attached patch fixes it. ``` Original issue reported on code.google.com by `jonathan...@gmail.com` on 17 May 2013 at 12:24 * Merged into: #42 Attachments: * [rj.diff](https://storage.googleapis.com/google-code-attachments/rapidjson/issue-73/comment-0/rj.diff)
defect
missing template keyword in genericdocument parsestream compiling document h with clang produces an error because the template keyword is not used to call a member function template of a dependent type the attached patch fixes it original issue reported on code google com by jonathan gmail com on may at merged into attachments
1
2,038
2,603,975,343
IssuesEvent
2015-02-24 19:01:21
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:16
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:16
defect
沈阳疱疹潜伏期 沈阳疱疹潜伏期〓沈陽軍區政治部醫院性病〓tel: �� � , 。位于沈� �� 。是一所與新中國同建立共輝煌的歷史� ��久、設備精良、技術權威、專家云集,是預防、保健、醫療 、科研康復為一體的綜合性醫院。是國家首批公立甲等部隊�� �院、全國首批醫療規范定點單位,是第四軍醫大學、東南大� ��等知名高等院校的教學醫院。曾被中國人民解放軍空軍后勤 部衛生部評為衛生工作先進單位,先后兩次榮立集體二等功�� � original issue reported on code google com by gmail com on jun at
1
21,765
3,551,592,315
IssuesEvent
2016-01-21 05:02:08
bigbluebutton/bigbluebutton
https://api.github.com/repos/bigbluebutton/bigbluebutton
closed
Conexion drops just on Chrome clients
Defect Normal Priority
Originally reported on Google Code with ID 1765 ``` We have experienced the conexion drop of Chrome clients, while Firefox clients continues in the video conference. The error message is "conexion to the server has been closed". we havent found relevant messages on red5 log. Could this be caused by insufficient memory?? Thanks Carol ``` Reported by `gruppo.rui` on 2014-07-02 12:09:02
1.0
Conexion drops just on Chrome clients - Originally reported on Google Code with ID 1765 ``` We have experienced the conexion drop of Chrome clients, while Firefox clients continues in the video conference. The error message is "conexion to the server has been closed". we havent found relevant messages on red5 log. Could this be caused by insufficient memory?? Thanks Carol ``` Reported by `gruppo.rui` on 2014-07-02 12:09:02
defect
conexion drops just on chrome clients originally reported on google code with id we have experienced the conexion drop of chrome clients while firefox clients continues in the video conference the error message is conexion to the server has been closed we havent found relevant messages on log could this be caused by insufficient memory thanks carol reported by gruppo rui on
1
80,494
30,307,583,429
IssuesEvent
2023-07-10 10:32:11
vector-im/element-call
https://api.github.com/repos/vector-im/element-call
opened
Glitch in tiling, in spotlight mode, when speaker has video muted
T-Defect
### Steps to reproduce View in spotlight mode. The tile for speakers with video muted tends to jump position, somewhat erratically. Glitch confirmed by other call participants. Recorded below: https://drive.google.com/file/d/17ZWPIcBQBdhdgfEXC4qUWIvkzwmrFSJ9/view?usp=sharing Recorded at https://element-call-livekit.netlify.app/room/#design-warm-ups:call.ems.host ### Outcome #### What did you expect? #### What happened instead? ### Operating system macOS ### Browser information Chrome Version 114.0.5735.198 (Official Build) (arm64) ### URL for webapp https://element-call-livekit.netlify.app/room/#design-warm-ups:call.ems.host ### Will you send logs? No
1.0
Glitch in tiling, in spotlight mode, when speaker has video muted - ### Steps to reproduce View in spotlight mode. The tile for speakers with video muted tends to jump position, somewhat erratically. Glitch confirmed by other call participants. Recorded below: https://drive.google.com/file/d/17ZWPIcBQBdhdgfEXC4qUWIvkzwmrFSJ9/view?usp=sharing Recorded at https://element-call-livekit.netlify.app/room/#design-warm-ups:call.ems.host ### Outcome #### What did you expect? #### What happened instead? ### Operating system macOS ### Browser information Chrome Version 114.0.5735.198 (Official Build) (arm64) ### URL for webapp https://element-call-livekit.netlify.app/room/#design-warm-ups:call.ems.host ### Will you send logs? No
defect
glitch in tiling in spotlight mode when speaker has video muted steps to reproduce view in spotlight mode the tile for speakers with video muted tends to jump position somewhat erratically glitch confirmed by other call participants recorded below recorded at outcome what did you expect what happened instead operating system macos browser information chrome version official build url for webapp will you send logs no
1
6,239
5,327,530,393
IssuesEvent
2017-02-15 09:27:06
flutter/flutter
https://api.github.com/repos/flutter/flutter
closed
basic_material_app__size regression
performance regression
The basic_material_app release size on Android increased from just under 8MB to over 9.5MB. cc @jakobr-google
True
basic_material_app__size regression - The basic_material_app release size on Android increased from just under 8MB to over 9.5MB. cc @jakobr-google
non_defect
basic material app size regression the basic material app release size on android increased from just under to over cc jakobr google
0
14,914
2,831,390,312
IssuesEvent
2015-05-24 15:55:10
nobodyguy/dslrdashboard
https://api.github.com/repos/nobodyguy/dslrdashboard
closed
Does not recognize camera is connected
auto-migrated Priority-Medium Type-Defect
``` What steps will reproduce the problem? 1. Connecting the camera to the phone 2. Starting the software 3. What is the expected output? What do you see instead? When I connect the phone to the camera, I expect the software to recognize that a camera is there is there. What version of the product are you using? On what operating system? Latest version of dslrdashboard, D5100 camera, Jellybean on Moto Droid RAZR Maxx Please provide any additional information below. I have an OTG cable for my RAZR Maxx, but I can't get DSLR Dashboard to recognize that the camera is connected. ``` Original issue reported on code.google.com by `NukeFer...@gmail.com` on 29 Mar 2013 at 12:35
1.0
Does not recognize camera is connected - ``` What steps will reproduce the problem? 1. Connecting the camera to the phone 2. Starting the software 3. What is the expected output? What do you see instead? When I connect the phone to the camera, I expect the software to recognize that a camera is there is there. What version of the product are you using? On what operating system? Latest version of dslrdashboard, D5100 camera, Jellybean on Moto Droid RAZR Maxx Please provide any additional information below. I have an OTG cable for my RAZR Maxx, but I can't get DSLR Dashboard to recognize that the camera is connected. ``` Original issue reported on code.google.com by `NukeFer...@gmail.com` on 29 Mar 2013 at 12:35
defect
does not recognize camera is connected what steps will reproduce the problem connecting the camera to the phone starting the software what is the expected output what do you see instead when i connect the phone to the camera i expect the software to recognize that a camera is there is there what version of the product are you using on what operating system latest version of dslrdashboard camera jellybean on moto droid razr maxx please provide any additional information below i have an otg cable for my razr maxx but i can t get dslr dashboard to recognize that the camera is connected original issue reported on code google com by nukefer gmail com on mar at
1
512,288
14,893,186,873
IssuesEvent
2021-01-21 04:47:13
the-hyjal-project/bugtracker
https://api.github.com/repos/the-hyjal-project/bugtracker
closed
Gordunni Cobalt nodes don't disappear after mining.
Gameobject High Priority!
**Describe Your Issue** Gordunni Cobalt nodes don't disappear after mining. **Steps To Reproduce** 1. Go to mine one 2. Use the mound 3. Mound disappears but the node doesn't, you can mine from the same spot again <!--- Include IDs of affected NPCs , items, quests or spells with a link to the relevant page. --> https://classic.wowhead.com/item=9466/orwins-shovel https://classic.wowhead.com/quest=2987/gordunni-cobalt https://classic.wowhead.com/object=144064/gordunni-dirt-mound **Expected Behaviour** The blue nodes should disappear, forcing you to move from location to location, currently you can just mine all 12 from the same spot.
1.0
Gordunni Cobalt nodes don't disappear after mining. - **Describe Your Issue** Gordunni Cobalt nodes don't disappear after mining. **Steps To Reproduce** 1. Go to mine one 2. Use the mound 3. Mound disappears but the node doesn't, you can mine from the same spot again <!--- Include IDs of affected NPCs , items, quests or spells with a link to the relevant page. --> https://classic.wowhead.com/item=9466/orwins-shovel https://classic.wowhead.com/quest=2987/gordunni-cobalt https://classic.wowhead.com/object=144064/gordunni-dirt-mound **Expected Behaviour** The blue nodes should disappear, forcing you to move from location to location, currently you can just mine all 12 from the same spot.
non_defect
gordunni cobalt nodes don t disappear after mining describe your issue gordunni cobalt nodes don t disappear after mining steps to reproduce go to mine one use the mound mound disappears but the node doesn t you can mine from the same spot again expected behaviour the blue nodes should disappear forcing you to move from location to location currently you can just mine all from the same spot
0
20,516
3,369,392,400
IssuesEvent
2015-11-23 09:56:18
hazelcast/hazelcast
https://api.github.com/repos/hazelcast/hazelcast
closed
Error being logged while running TestFullApplicationContext
Team: Core Type: Defect
I'm running `TestFullApplicationContext` test on fcac88e8c27c and I can see it's logging ``` WARNING: [127.0.0.1]:5700 [spring-group] [3.6-RC1-SNAPSHOT] Error while initializing proxy: ReplicatedMapProxy -> replicatedMap java.lang.IllegalArgumentException: EventFilter required! at com.hazelcast.spi.impl.eventservice.impl.EventServiceImpl.registerListenerInternal(EventServiceImpl.java:177) at com.hazelcast.spi.impl.eventservice.impl.EventServiceImpl.registerLocalListener(EventServiceImpl.java:158) at com.hazelcast.replicatedmap.impl.ReplicatedMapEventPublishingService.addEventListener(ReplicatedMapEventPublishingService.java:137) at com.hazelcast.replicatedmap.impl.ReplicatedMapService.initializeListeners(ReplicatedMapService.java:353) at com.hazelcast.replicatedmap.impl.ReplicatedMapProxy.initialize(ReplicatedMapProxy.java:97) at com.hazelcast.spi.impl.proxyservice.impl.ProxyRegistry.doCreateProxy(ProxyRegistry.java:192) at com.hazelcast.spi.impl.proxyservice.impl.ProxyRegistry.createProxy(ProxyRegistry.java:182) at com.hazelcast.spi.impl.proxyservice.impl.ProxyRegistry.getOrCreateProxy(ProxyRegistry.java:151) at com.hazelcast.spi.impl.proxyservice.impl.ProxyServiceImpl.getDistributedObject(ProxyServiceImpl.java:131) ```
1.0
Error being logged while running TestFullApplicationContext - I'm running `TestFullApplicationContext` test on fcac88e8c27c and I can see it's logging ``` WARNING: [127.0.0.1]:5700 [spring-group] [3.6-RC1-SNAPSHOT] Error while initializing proxy: ReplicatedMapProxy -> replicatedMap java.lang.IllegalArgumentException: EventFilter required! at com.hazelcast.spi.impl.eventservice.impl.EventServiceImpl.registerListenerInternal(EventServiceImpl.java:177) at com.hazelcast.spi.impl.eventservice.impl.EventServiceImpl.registerLocalListener(EventServiceImpl.java:158) at com.hazelcast.replicatedmap.impl.ReplicatedMapEventPublishingService.addEventListener(ReplicatedMapEventPublishingService.java:137) at com.hazelcast.replicatedmap.impl.ReplicatedMapService.initializeListeners(ReplicatedMapService.java:353) at com.hazelcast.replicatedmap.impl.ReplicatedMapProxy.initialize(ReplicatedMapProxy.java:97) at com.hazelcast.spi.impl.proxyservice.impl.ProxyRegistry.doCreateProxy(ProxyRegistry.java:192) at com.hazelcast.spi.impl.proxyservice.impl.ProxyRegistry.createProxy(ProxyRegistry.java:182) at com.hazelcast.spi.impl.proxyservice.impl.ProxyRegistry.getOrCreateProxy(ProxyRegistry.java:151) at com.hazelcast.spi.impl.proxyservice.impl.ProxyServiceImpl.getDistributedObject(ProxyServiceImpl.java:131) ```
defect
error being logged while running testfullapplicationcontext i m running testfullapplicationcontext test on and i can see it s logging warning error while initializing proxy replicatedmapproxy replicatedmap java lang illegalargumentexception eventfilter required at com hazelcast spi impl eventservice impl eventserviceimpl registerlistenerinternal eventserviceimpl java at com hazelcast spi impl eventservice impl eventserviceimpl registerlocallistener eventserviceimpl java at com hazelcast replicatedmap impl replicatedmapeventpublishingservice addeventlistener replicatedmapeventpublishingservice java at com hazelcast replicatedmap impl replicatedmapservice initializelisteners replicatedmapservice java at com hazelcast replicatedmap impl replicatedmapproxy initialize replicatedmapproxy java at com hazelcast spi impl proxyservice impl proxyregistry docreateproxy proxyregistry java at com hazelcast spi impl proxyservice impl proxyregistry createproxy proxyregistry java at com hazelcast spi impl proxyservice impl proxyregistry getorcreateproxy proxyregistry java at com hazelcast spi impl proxyservice impl proxyserviceimpl getdistributedobject proxyserviceimpl java
1
103,693
8,933,006,319
IssuesEvent
2019-01-23 00:03:21
brave/brave-browser
https://api.github.com/repos/brave/brave-browser
opened
Wallet addresses are not fully displayed in `Add Funds`
QA/Test-Plan-Specified QA/Yes feature/rewards
## Steps to Reproduce <!--Please add a series of steps to reproduce the issue--> 1. Clean profile 2. Open `brave://rewards` 3. Click `Add Funds` ## Actual result: <!--Please add screenshots if needed--> Some wallet addresses may be cropped ![wallet_addresses](https://user-images.githubusercontent.com/34715963/51573401-74d60480-1ea9-11e9-83cd-95dcf8491db0.gif) ## Expected result: All wallet addresses are fully displayed ## Reproduces how often: <!--[Easily reproduced/Intermittent issue/No steps to reproduce]--> always, with below recover codes: `design flavor soldier news dismiss viable subject empower eight world swear lady range gloom romance dilemma risk dry remember frame duck orchard among barely` ## Brave version (brave://version info) <!--For installed build, please copy Brave, Revision and OS from brave://version and paste here. If building from source please mention it along with brave://version details--> Brave | 0.59.26 Chromium: 72.0.3626.64 (Official Build) beta (64-bit) -- | -- Revision | eaa9668e80ce5405e7f1902579558ea725c06ca1-refs/branch-heads/3626@{#708} OS | Windows 7 Brave | 0.58.21 Chromium: 71.0.3578.98 (Official Build) (64-bit) -- | -- Revision | 15234034d19b85dcd9a03b164ae89d04145d8368-refs/branch-heads/3578@{#897} OS | Windows Brave | 0.60.16 Chromium: 72.0.3626.64 (Official Build) dev (64-bit) -- | -- Revision | eaa9668e80ce5405e7f1902579558ea725c06ca1-refs/branch-heads/3626@{#708} OS | Windows cc @brave/legacy_qa @NejcZdovc
1.0
Wallet addresses are not fully displayed in `Add Funds` - ## Steps to Reproduce <!--Please add a series of steps to reproduce the issue--> 1. Clean profile 2. Open `brave://rewards` 3. Click `Add Funds` ## Actual result: <!--Please add screenshots if needed--> Some wallet addresses may be cropped ![wallet_addresses](https://user-images.githubusercontent.com/34715963/51573401-74d60480-1ea9-11e9-83cd-95dcf8491db0.gif) ## Expected result: All wallet addresses are fully displayed ## Reproduces how often: <!--[Easily reproduced/Intermittent issue/No steps to reproduce]--> always, with below recover codes: `design flavor soldier news dismiss viable subject empower eight world swear lady range gloom romance dilemma risk dry remember frame duck orchard among barely` ## Brave version (brave://version info) <!--For installed build, please copy Brave, Revision and OS from brave://version and paste here. If building from source please mention it along with brave://version details--> Brave | 0.59.26 Chromium: 72.0.3626.64 (Official Build) beta (64-bit) -- | -- Revision | eaa9668e80ce5405e7f1902579558ea725c06ca1-refs/branch-heads/3626@{#708} OS | Windows 7 Brave | 0.58.21 Chromium: 71.0.3578.98 (Official Build) (64-bit) -- | -- Revision | 15234034d19b85dcd9a03b164ae89d04145d8368-refs/branch-heads/3578@{#897} OS | Windows Brave | 0.60.16 Chromium: 72.0.3626.64 (Official Build) dev (64-bit) -- | -- Revision | eaa9668e80ce5405e7f1902579558ea725c06ca1-refs/branch-heads/3626@{#708} OS | Windows cc @brave/legacy_qa @NejcZdovc
non_defect
wallet addresses are not fully displayed in add funds steps to reproduce clean profile open brave rewards click add funds actual result some wallet addresses may be cropped expected result all wallet addresses are fully displayed reproduces how often always with below recover codes design flavor soldier news dismiss viable subject empower eight world swear lady range gloom romance dilemma risk dry remember frame duck orchard among barely brave version brave version info brave chromium   official build  beta  bit revision refs branch heads os windows brave chromium   official build   bit revision refs branch heads os windows brave chromium   official build  dev  bit revision refs branch heads os windows cc brave legacy qa nejczdovc
0
2,363
2,607,897,940
IssuesEvent
2015-02-26 00:12:15
chrsmithdemos/zen-coding
https://api.github.com/repos/chrsmithdemos/zen-coding
closed
Aptana key bindings issue
auto-migrated Priority-Medium Type-Defect
``` What steps will reproduce the problem? 1. Install Zen Coding in Aptana following the instructions 2. Pressing 'd', 'e', or 'm' will perform key binded tasks, normally only triggered when pressing alt or ctrl with them, instead of typing those letters in the editor. What is the expected output? What do you see instead? I expect to it to type those characters, but it instead brings up menus or selects lines, or brings up dialog boxes. What version of the product are you using? On what operating system? Zen.Coding-Aptana.v0.5.1.zip Windows XP Please provide any additional information below. Uninstalling Zen Coding fixes the problem, but of course then I don't have Zen Coding anymore. Those new key bindings aren't listed in the Keys menu under preferences, so I can't change them like that. ``` ----- Original issue reported on code.google.com by `swimhum...@gmail.com` on 23 Nov 2009 at 5:57
1.0
Aptana key bindings issue - ``` What steps will reproduce the problem? 1. Install Zen Coding in Aptana following the instructions 2. Pressing 'd', 'e', or 'm' will perform key binded tasks, normally only triggered when pressing alt or ctrl with them, instead of typing those letters in the editor. What is the expected output? What do you see instead? I expect to it to type those characters, but it instead brings up menus or selects lines, or brings up dialog boxes. What version of the product are you using? On what operating system? Zen.Coding-Aptana.v0.5.1.zip Windows XP Please provide any additional information below. Uninstalling Zen Coding fixes the problem, but of course then I don't have Zen Coding anymore. Those new key bindings aren't listed in the Keys menu under preferences, so I can't change them like that. ``` ----- Original issue reported on code.google.com by `swimhum...@gmail.com` on 23 Nov 2009 at 5:57
defect
aptana key bindings issue what steps will reproduce the problem install zen coding in aptana following the instructions pressing d e or m will perform key binded tasks normally only triggered when pressing alt or ctrl with them instead of typing those letters in the editor what is the expected output what do you see instead i expect to it to type those characters but it instead brings up menus or selects lines or brings up dialog boxes what version of the product are you using on what operating system zen coding aptana zip windows xp please provide any additional information below uninstalling zen coding fixes the problem but of course then i don t have zen coding anymore those new key bindings aren t listed in the keys menu under preferences so i can t change them like that original issue reported on code google com by swimhum gmail com on nov at
1
349,215
24,938,162,142
IssuesEvent
2022-10-31 16:40:10
microsoft/onnxruntime
https://api.github.com/repos/microsoft/onnxruntime
closed
[Documentation] Building static Library
documentation
### Describe the documentation issue Hi, after spending some time with onnxruntime, I found that onnxruntime can be built satically. However, there's no such documentation of how can that be done for different paltforms (linux/windows/mac). Also, there is no documentation for what static libraries to be included and where to find them.
1.0
[Documentation] Building static Library - ### Describe the documentation issue Hi, after spending some time with onnxruntime, I found that onnxruntime can be built satically. However, there's no such documentation of how can that be done for different paltforms (linux/windows/mac). Also, there is no documentation for what static libraries to be included and where to find them.
non_defect
building static library describe the documentation issue hi after spending some time with onnxruntime i found that onnxruntime can be built satically however there s no such documentation of how can that be done for different paltforms linux windows mac also there is no documentation for what static libraries to be included and where to find them
0
13,101
2,732,897,033
IssuesEvent
2015-04-17 10:04:07
tiku01/oryx-editor
https://api.github.com/repos/tiku01/oryx-editor
closed
manually aligning the dockers of a shape vertically or horizontally moves the edge 1px up or right
auto-migrated Component-Editor Priority-High Type-Defect
``` What steps will reproduce the problem? 1. create an edge 2. move a docker so that the edge is not horizontal or vertical 3. move the docker again so that the edge is horizontal or vertical What is the expected output? the other dockers do not move What do you see instead? the edge is moved ~1px up or right. ``` Original issue reported on code.google.com by `NicoPete...@gmail.com` on 30 Nov 2008 at 3:22
1.0
manually aligning the dockers of a shape vertically or horizontally moves the edge 1px up or right - ``` What steps will reproduce the problem? 1. create an edge 2. move a docker so that the edge is not horizontal or vertical 3. move the docker again so that the edge is horizontal or vertical What is the expected output? the other dockers do not move What do you see instead? the edge is moved ~1px up or right. ``` Original issue reported on code.google.com by `NicoPete...@gmail.com` on 30 Nov 2008 at 3:22
defect
manually aligning the dockers of a shape vertically or horizontally moves the edge up or right what steps will reproduce the problem create an edge move a docker so that the edge is not horizontal or vertical move the docker again so that the edge is horizontal or vertical what is the expected output the other dockers do not move what do you see instead the edge is moved up or right original issue reported on code google com by nicopete gmail com on nov at
1
48,180
13,067,498,607
IssuesEvent
2020-07-31 00:39:16
icecube-trac/tix2
https://api.github.com/repos/icecube-trac/tix2
closed
[docs] mac install (Trac #1914)
Migrated from Trac combo core defect
For http://software.icecube.wisc.edu/documentation/projects/cmake/supported_platforms/osx.html#step-by-step-instructions the package pyqt does not exist anymore. Migrated from https://code.icecube.wisc.edu/ticket/1914 ```json { "status": "closed", "changetime": "2019-01-12T00:33:41", "description": "For http://software.icecube.wisc.edu/documentation/projects/cmake/supported_platforms/osx.html#step-by-step-instructions\n\nthe package pyqt does not exist anymore.", "reporter": "david.schultz", "cc": "", "resolution": "fixed", "_ts": "1547253221905647", "component": "combo core", "summary": "[docs] mac install", "priority": "critical", "keywords": "", "time": "2016-11-29T17:46:57", "milestone": "Long-Term Future", "owner": "nega", "type": "defect" } ```
1.0
[docs] mac install (Trac #1914) - For http://software.icecube.wisc.edu/documentation/projects/cmake/supported_platforms/osx.html#step-by-step-instructions the package pyqt does not exist anymore. Migrated from https://code.icecube.wisc.edu/ticket/1914 ```json { "status": "closed", "changetime": "2019-01-12T00:33:41", "description": "For http://software.icecube.wisc.edu/documentation/projects/cmake/supported_platforms/osx.html#step-by-step-instructions\n\nthe package pyqt does not exist anymore.", "reporter": "david.schultz", "cc": "", "resolution": "fixed", "_ts": "1547253221905647", "component": "combo core", "summary": "[docs] mac install", "priority": "critical", "keywords": "", "time": "2016-11-29T17:46:57", "milestone": "Long-Term Future", "owner": "nega", "type": "defect" } ```
defect
mac install trac for the package pyqt does not exist anymore migrated from json status closed changetime description for package pyqt does not exist anymore reporter david schultz cc resolution fixed ts component combo core summary mac install priority critical keywords time milestone long term future owner nega type defect
1
35,748
7,800,527,202
IssuesEvent
2018-06-09 10:32:10
StrikeNP/trac_test
https://api.github.com/repos/StrikeNP/trac_test
closed
Divide integer, public declarations in stats_variables.F90 into smaller blocks in order to avoid ANSI warning (Trac #545)
Migrated from Trac clubb_src defect raut@uwm.edu
'''Introduction''' We try to keep CLUBB compatible with ANSI standards in order to enhance portability. ANSI requires that no more than 39 continuation characters (i.e. &) be used for one line. However, when we add new variables to declaration lists, we sometimes exceed 39 continuation characters, thereby triggering a warning. The most recent example occurred on 6 Feb 2013, where [source:/CLUBB/trunk/src/CLUBB_core/stats_variables.F90?rev=6056#L55 this block in stats_variables.F90] exceeded 39 continuations. The resulting error message was: ```text "/usr/nightly_tests/clubb/compile/../src/CLUBB_core/stats_variables.F90", Line = 96, Column = 1: ANSI: More than 39 continuation lines is an extension to the Fortran standard in free source form. ``` '''Technical spec''' Let's break the integer, public declaration blocks into smaller declaration blocks with, say, no more than 20 lines, so that the addition of new variables triggers the warning less often. Are there other files with lots of continuations? If so, should we break up those blocks as well? Attachments: Migrated from http://carson.math.uwm.edu/trac/clubb/ticket/545 ```json { "status": "closed", "changetime": "2014-08-06T23:26:29", "description": "\n'''Introduction'''\n\nWe try to keep CLUBB compatible with ANSI standards in order to enhance portability. ANSI requires that no more than 39 continuation characters (i.e. &) be used for one line. However, when we add new variables to declaration lists, we sometimes exceed 39 continuation characters, thereby triggering a warning. The most recent example occurred on 6 Feb 2013, where [source:/CLUBB/trunk/src/CLUBB_core/stats_variables.F90?rev=6056#L55 this block in stats_variables.F90] exceeded 39 continuations. The resulting error message was:\n{{{\n\"/usr/nightly_tests/clubb/compile/../src/CLUBB_core/stats_variables.F90\", \nLine = 96, Column = 1: \nANSI: More than 39 continuation lines is an extension to the \nFortran standard in free source form.\n}}}\n\n'''Technical spec'''\n\nLet's break the integer, public declaration blocks into smaller declaration blocks with, say, no more than 20 lines, so that the addition of new variables triggers the warning less often. Are there other files with lots of continuations? If so, should we break up those blocks as well?", "reporter": "vlarson@uwm.edu", "cc": "vlarson@uwm.edu, bmg2@uwm.edu", "resolution": "fixed", "_ts": "1407367589153596", "component": "clubb_src", "summary": "Divide integer, public declarations in stats_variables.F90 into smaller blocks in order to avoid ANSI warning", "priority": "minor", "keywords": "", "time": "2013-02-06T18:01:36", "milestone": "3. Refactor CLUBB", "owner": "raut@uwm.edu", "type": "defect" } ```
1.0
Divide integer, public declarations in stats_variables.F90 into smaller blocks in order to avoid ANSI warning (Trac #545) - '''Introduction''' We try to keep CLUBB compatible with ANSI standards in order to enhance portability. ANSI requires that no more than 39 continuation characters (i.e. &) be used for one line. However, when we add new variables to declaration lists, we sometimes exceed 39 continuation characters, thereby triggering a warning. The most recent example occurred on 6 Feb 2013, where [source:/CLUBB/trunk/src/CLUBB_core/stats_variables.F90?rev=6056#L55 this block in stats_variables.F90] exceeded 39 continuations. The resulting error message was: ```text "/usr/nightly_tests/clubb/compile/../src/CLUBB_core/stats_variables.F90", Line = 96, Column = 1: ANSI: More than 39 continuation lines is an extension to the Fortran standard in free source form. ``` '''Technical spec''' Let's break the integer, public declaration blocks into smaller declaration blocks with, say, no more than 20 lines, so that the addition of new variables triggers the warning less often. Are there other files with lots of continuations? If so, should we break up those blocks as well? Attachments: Migrated from http://carson.math.uwm.edu/trac/clubb/ticket/545 ```json { "status": "closed", "changetime": "2014-08-06T23:26:29", "description": "\n'''Introduction'''\n\nWe try to keep CLUBB compatible with ANSI standards in order to enhance portability. ANSI requires that no more than 39 continuation characters (i.e. &) be used for one line. However, when we add new variables to declaration lists, we sometimes exceed 39 continuation characters, thereby triggering a warning. The most recent example occurred on 6 Feb 2013, where [source:/CLUBB/trunk/src/CLUBB_core/stats_variables.F90?rev=6056#L55 this block in stats_variables.F90] exceeded 39 continuations. The resulting error message was:\n{{{\n\"/usr/nightly_tests/clubb/compile/../src/CLUBB_core/stats_variables.F90\", \nLine = 96, Column = 1: \nANSI: More than 39 continuation lines is an extension to the \nFortran standard in free source form.\n}}}\n\n'''Technical spec'''\n\nLet's break the integer, public declaration blocks into smaller declaration blocks with, say, no more than 20 lines, so that the addition of new variables triggers the warning less often. Are there other files with lots of continuations? If so, should we break up those blocks as well?", "reporter": "vlarson@uwm.edu", "cc": "vlarson@uwm.edu, bmg2@uwm.edu", "resolution": "fixed", "_ts": "1407367589153596", "component": "clubb_src", "summary": "Divide integer, public declarations in stats_variables.F90 into smaller blocks in order to avoid ANSI warning", "priority": "minor", "keywords": "", "time": "2013-02-06T18:01:36", "milestone": "3. Refactor CLUBB", "owner": "raut@uwm.edu", "type": "defect" } ```
defect
divide integer public declarations in stats variables into smaller blocks in order to avoid ansi warning trac introduction we try to keep clubb compatible with ansi standards in order to enhance portability ansi requires that no more than continuation characters i e be used for one line however when we add new variables to declaration lists we sometimes exceed continuation characters thereby triggering a warning the most recent example occurred on feb where exceeded continuations the resulting error message was text usr nightly tests clubb compile src clubb core stats variables line column ansi more than continuation lines is an extension to the fortran standard in free source form technical spec let s break the integer public declaration blocks into smaller declaration blocks with say no more than lines so that the addition of new variables triggers the warning less often are there other files with lots of continuations if so should we break up those blocks as well attachments migrated from json status closed changetime description n introduction n nwe try to keep clubb compatible with ansi standards in order to enhance portability ansi requires that no more than continuation characters i e be used for one line however when we add new variables to declaration lists we sometimes exceed continuation characters thereby triggering a warning the most recent example occurred on feb where exceeded continuations the resulting error message was n n usr nightly tests clubb compile src clubb core stats variables nline column nansi more than continuation lines is an extension to the nfortran standard in free source form n n n technical spec n nlet s break the integer public declaration blocks into smaller declaration blocks with say no more than lines so that the addition of new variables triggers the warning less often are there other files with lots of continuations if so should we break up those blocks as well reporter vlarson uwm edu cc vlarson uwm edu uwm edu resolution fixed ts component clubb src summary divide integer public declarations in stats variables into smaller blocks in order to avoid ansi warning priority minor keywords time milestone refactor clubb owner raut uwm edu type defect
1
63,543
17,758,802,139
IssuesEvent
2021-08-29 09:40:37
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
opened
Element does not request media permission more than once
T-Defect
### Steps to reproduce 1. Where are you starting? What can you see? "Voice & Video" settings tab of "Settings" dialog. 2. What do you click? Click "Request media permissions" button. Deny access to Camera & Microphone (because there appears no way to give permission for just microphone, not camera) in Firefox popup. Get expected "No media permissions"/"You may need to manually permit Element to access your microphone/webcam" dialog from Element. 3. Click the "Site Information" button in the left part of the URL bar. Click the "x"/remove icon next to the "Use the microphone" permission. 4. Click "Request media permissions" button again. ### What happened? The "No media permissions"/"You may need to manually permit Element to access your microphone/webcam" dialog from Element is displayed again without a prompt from the browser about giving permission for just the audio device. ### What did you expect? Same behaviour as Jitsi Meet, which prompts for mic access again. (I attempted to locate the applicable area of code in their code base but there's too many layers of abstraction to identify quickly: https://github.com/jitsi/jitsi-meet/search?q=getusermedia :D ) ### Possibly related issues * https://github.com/vector-im/element-web/issues/5552 * https://github.com/vector-im/element-web/issues/458 ### Possibly related code * https://github.com/matrix-org/matrix-react-sdk/pull/3146/files#diff-a8e3039da792c3b4ec5459ad089c2e3420b61e819793294cee181c454fd78fd3R82 * From a brief look it seems the applicable logic might be here, where it looks like the `refreshMediaDevices()` call is never made if an error exists--which it will when the button is pressed for the second time: https://github.com/matrix-org/matrix-react-sdk/blob/770de8f6b520d250e0ebf8d540ebe6b23ffd3301/src/components/views/settings/tabs/user/VoiceUserSettingsTab.tsx#L86-L115 Perhaps the refresh needs to be called on the subsequent button push before the call to `navigator.mediaDevices.getUserMedia()`. ### Operating system Elementary Linux 5.1 ### Browser information Firefox 84.0.2 (64-bit) for Ubuntu canonical 1.0 ### URL for webapp https://app.element.io/ ### Homeserver private ### Have you submitted a rageshake? No
1.0
Element does not request media permission more than once - ### Steps to reproduce 1. Where are you starting? What can you see? "Voice & Video" settings tab of "Settings" dialog. 2. What do you click? Click "Request media permissions" button. Deny access to Camera & Microphone (because there appears no way to give permission for just microphone, not camera) in Firefox popup. Get expected "No media permissions"/"You may need to manually permit Element to access your microphone/webcam" dialog from Element. 3. Click the "Site Information" button in the left part of the URL bar. Click the "x"/remove icon next to the "Use the microphone" permission. 4. Click "Request media permissions" button again. ### What happened? The "No media permissions"/"You may need to manually permit Element to access your microphone/webcam" dialog from Element is displayed again without a prompt from the browser about giving permission for just the audio device. ### What did you expect? Same behaviour as Jitsi Meet, which prompts for mic access again. (I attempted to locate the applicable area of code in their code base but there's too many layers of abstraction to identify quickly: https://github.com/jitsi/jitsi-meet/search?q=getusermedia :D ) ### Possibly related issues * https://github.com/vector-im/element-web/issues/5552 * https://github.com/vector-im/element-web/issues/458 ### Possibly related code * https://github.com/matrix-org/matrix-react-sdk/pull/3146/files#diff-a8e3039da792c3b4ec5459ad089c2e3420b61e819793294cee181c454fd78fd3R82 * From a brief look it seems the applicable logic might be here, where it looks like the `refreshMediaDevices()` call is never made if an error exists--which it will when the button is pressed for the second time: https://github.com/matrix-org/matrix-react-sdk/blob/770de8f6b520d250e0ebf8d540ebe6b23ffd3301/src/components/views/settings/tabs/user/VoiceUserSettingsTab.tsx#L86-L115 Perhaps the refresh needs to be called on the subsequent button push before the call to `navigator.mediaDevices.getUserMedia()`. ### Operating system Elementary Linux 5.1 ### Browser information Firefox 84.0.2 (64-bit) for Ubuntu canonical 1.0 ### URL for webapp https://app.element.io/ ### Homeserver private ### Have you submitted a rageshake? No
defect
element does not request media permission more than once steps to reproduce where are you starting what can you see voice video settings tab of settings dialog what do you click click request media permissions button deny access to camera microphone because there appears no way to give permission for just microphone not camera in firefox popup get expected no media permissions you may need to manually permit element to access your microphone webcam dialog from element click the site information button in the left part of the url bar click the x remove icon next to the use the microphone permission click request media permissions button again what happened the no media permissions you may need to manually permit element to access your microphone webcam dialog from element is displayed again without a prompt from the browser about giving permission for just the audio device what did you expect same behaviour as jitsi meet which prompts for mic access again i attempted to locate the applicable area of code in their code base but there s too many layers of abstraction to identify quickly d possibly related issues possibly related code from a brief look it seems the applicable logic might be here where it looks like the refreshmediadevices call is never made if an error exists which it will when the button is pressed for the second time perhaps the refresh needs to be called on the subsequent button push before the call to navigator mediadevices getusermedia operating system elementary linux browser information firefox bit for ubuntu canonical url for webapp homeserver private have you submitted a rageshake no
1
187,653
6,759,975,446
IssuesEvent
2017-10-24 18:57:37
dwyl/hq
https://api.github.com/repos/dwyl/hq
reopened
Where should we be based as a *company*?
in-progress priority-2
In light of Brexit and our aims of being a [remote-first](https://github.com/dwyl/remote) organisation, where does it make sense to base our company?
1.0
Where should we be based as a *company*? - In light of Brexit and our aims of being a [remote-first](https://github.com/dwyl/remote) organisation, where does it make sense to base our company?
non_defect
where should we be based as a company in light of brexit and our aims of being a organisation where does it make sense to base our company
0
15,855
28,138,605,830
IssuesEvent
2023-04-01 17:26:16
AutoRepair7/MarketProject
https://api.github.com/repos/AutoRepair7/MarketProject
opened
When the 'Next' arrow button is pressed in the gallery, the following image shall be shown
Functional Requirements
As a user, I want to see the different images in the gallery that I want by pressing the 'next' button. CON-1: The button shall comply with any relevant accessibility standards. CON-2: The button shall be clearly labeled and easy to distinguish. CON-3: The button shall be responsive to user input.
1.0
When the 'Next' arrow button is pressed in the gallery, the following image shall be shown - As a user, I want to see the different images in the gallery that I want by pressing the 'next' button. CON-1: The button shall comply with any relevant accessibility standards. CON-2: The button shall be clearly labeled and easy to distinguish. CON-3: The button shall be responsive to user input.
non_defect
when the next arrow button is pressed in the gallery the following image shall be shown as a user i want to see the different images in the gallery that i want by pressing the next button con the button shall comply with any relevant accessibility standards con the button shall be clearly labeled and easy to distinguish con the button shall be responsive to user input
0
6,960
2,610,319,535
IssuesEvent
2015-02-26 19:43:07
chrsmith/republic-at-war
https://api.github.com/repos/chrsmith/republic-at-war
closed
Gameplay Error
auto-migrated Priority-Medium Type-Defect
``` CIS GC tech tree states that the AAT is available at tech level 2, were as I actually was unable to build it until tech 3 ``` ----- Original issue reported on code.google.com by `z3r0...@gmail.com` on 7 May 2011 at 9:27
1.0
Gameplay Error - ``` CIS GC tech tree states that the AAT is available at tech level 2, were as I actually was unable to build it until tech 3 ``` ----- Original issue reported on code.google.com by `z3r0...@gmail.com` on 7 May 2011 at 9:27
defect
gameplay error cis gc tech tree states that the aat is available at tech level were as i actually was unable to build it until tech original issue reported on code google com by gmail com on may at
1
39,449
9,460,676,559
IssuesEvent
2019-04-17 11:38:41
jOOQ/jOOQ
https://api.github.com/repos/jOOQ/jOOQ
closed
Parsing CREATE SEQUENCE always leads to quoted sequence names
C: Functionality E: All Editions P: Medium R: Fixed T: Defect
The changes in #7545 have exposed a hidden bug in the way sequences are parsed. The following SQL: ```sql create sequence i; ``` Parses as ```sql create sequence "i"; ``` With subtle consequences
1.0
Parsing CREATE SEQUENCE always leads to quoted sequence names - The changes in #7545 have exposed a hidden bug in the way sequences are parsed. The following SQL: ```sql create sequence i; ``` Parses as ```sql create sequence "i"; ``` With subtle consequences
defect
parsing create sequence always leads to quoted sequence names the changes in have exposed a hidden bug in the way sequences are parsed the following sql sql create sequence i parses as sql create sequence i with subtle consequences
1
166,919
20,725,633,830
IssuesEvent
2022-03-14 01:16:56
TIBCOSoftware/MqttStreamUsingNanoscale
https://api.github.com/repos/TIBCOSoftware/MqttStreamUsingNanoscale
opened
CVE-2021-37713 (High) detected in tar-2.2.2.tgz
security vulnerability
## CVE-2021-37713 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tar-2.2.2.tgz</b></p></summary> <p>tar for node</p> <p>Library home page: <a href="https://registry.npmjs.org/tar/-/tar-2.2.2.tgz">https://registry.npmjs.org/tar/-/tar-2.2.2.tgz</a></p> <p>Path to dependency file: /MqttStreamUsingNanoscale/bower_components/promise-polyfill/package.json</p> <p>Path to vulnerable library: /bower_components/promise-polyfill/node_modules/tar/package.json,/bower_components/promise-polyfill/node_modules/tar/package.json</p> <p> Dependency Hierarchy: - app-scripts-0.0.45.tgz (Root Library) - node-sass-3.10.1.tgz - node-gyp-3.8.0.tgz - :x: **tar-2.2.2.tgz** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The npm package "tar" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be outside of the extraction target directory is not extracted. This is, in part, accomplished by sanitizing absolute paths of entries within the archive, skipping archive entries that contain `..` path portions, and resolving the sanitized paths against the extraction target directory. This logic was insufficient on Windows systems when extracting tar files that contained a path that was not an absolute path, but specified a drive letter different from the extraction target, such as `C:some\path`. If the drive letter does not match the extraction target, for example `D:\extraction\dir`, then the result of `path.resolve(extractionDirectory, entryPath)` would resolve against the current working directory on the `C:` drive, rather than the extraction target directory. Additionally, a `..` portion of the path could occur immediately after the drive letter, such as `C:../foo`, and was not properly sanitized by the logic that checked for `..` within the normalized and split portions of the path. This only affects users of `node-tar` on Windows systems. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. There is no reasonable way to work around this issue without performing the same path normalization procedures that node-tar now does. Users are encouraged to upgrade to the latest patched versions of node-tar, rather than attempt to sanitize paths themselves. <p>Publish Date: 2021-08-31 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-37713>CVE-2021-37713</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.6</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - 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://github.com/npm/node-tar/security/advisories/GHSA-5955-9wpr-37jh">https://github.com/npm/node-tar/security/advisories/GHSA-5955-9wpr-37jh</a></p> <p>Release Date: 2021-08-31</p> <p>Fix Resolution: tar - 4.4.18,5.0.10,6.1.9</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"tar","packageVersion":"2.2.2","packageFilePaths":["/MqttStreamUsingNanoscale/bower_components/promise-polyfill/package.json"],"isTransitiveDependency":true,"dependencyTree":"@ionic/app-scripts:0.0.45;node-sass:3.10.1;node-gyp:3.8.0;tar:2.2.2","isMinimumFixVersionAvailable":true,"minimumFixVersion":"tar - 4.4.18,5.0.10,6.1.9","isBinary":false}],"baseBranches":[],"vulnerabilityIdentifier":"CVE-2021-37713","vulnerabilityDetails":"The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be outside of the extraction target directory is not extracted. This is, in part, accomplished by sanitizing absolute paths of entries within the archive, skipping archive entries that contain `..` path portions, and resolving the sanitized paths against the extraction target directory. This logic was insufficient on Windows systems when extracting tar files that contained a path that was not an absolute path, but specified a drive letter different from the extraction target, such as `C:some\\path`. If the drive letter does not match the extraction target, for example `D:\\extraction\\dir`, then the result of `path.resolve(extractionDirectory, entryPath)` would resolve against the current working directory on the `C:` drive, rather than the extraction target directory. Additionally, a `..` portion of the path could occur immediately after the drive letter, such as `C:../foo`, and was not properly sanitized by the logic that checked for `..` within the normalized and split portions of the path. This only affects users of `node-tar` on Windows systems. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. There is no reasonable way to work around this issue without performing the same path normalization procedures that node-tar now does. Users are encouraged to upgrade to the latest patched versions of node-tar, rather than attempt to sanitize paths themselves.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-37713","cvss3Severity":"high","cvss3Score":"8.6","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Changed","C":"High","UI":"Required","AV":"Local","I":"High"},"extraData":{}}</REMEDIATE> -->
True
CVE-2021-37713 (High) detected in tar-2.2.2.tgz - ## CVE-2021-37713 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tar-2.2.2.tgz</b></p></summary> <p>tar for node</p> <p>Library home page: <a href="https://registry.npmjs.org/tar/-/tar-2.2.2.tgz">https://registry.npmjs.org/tar/-/tar-2.2.2.tgz</a></p> <p>Path to dependency file: /MqttStreamUsingNanoscale/bower_components/promise-polyfill/package.json</p> <p>Path to vulnerable library: /bower_components/promise-polyfill/node_modules/tar/package.json,/bower_components/promise-polyfill/node_modules/tar/package.json</p> <p> Dependency Hierarchy: - app-scripts-0.0.45.tgz (Root Library) - node-sass-3.10.1.tgz - node-gyp-3.8.0.tgz - :x: **tar-2.2.2.tgz** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The npm package "tar" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be outside of the extraction target directory is not extracted. This is, in part, accomplished by sanitizing absolute paths of entries within the archive, skipping archive entries that contain `..` path portions, and resolving the sanitized paths against the extraction target directory. This logic was insufficient on Windows systems when extracting tar files that contained a path that was not an absolute path, but specified a drive letter different from the extraction target, such as `C:some\path`. If the drive letter does not match the extraction target, for example `D:\extraction\dir`, then the result of `path.resolve(extractionDirectory, entryPath)` would resolve against the current working directory on the `C:` drive, rather than the extraction target directory. Additionally, a `..` portion of the path could occur immediately after the drive letter, such as `C:../foo`, and was not properly sanitized by the logic that checked for `..` within the normalized and split portions of the path. This only affects users of `node-tar` on Windows systems. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. There is no reasonable way to work around this issue without performing the same path normalization procedures that node-tar now does. Users are encouraged to upgrade to the latest patched versions of node-tar, rather than attempt to sanitize paths themselves. <p>Publish Date: 2021-08-31 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-37713>CVE-2021-37713</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.6</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - 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://github.com/npm/node-tar/security/advisories/GHSA-5955-9wpr-37jh">https://github.com/npm/node-tar/security/advisories/GHSA-5955-9wpr-37jh</a></p> <p>Release Date: 2021-08-31</p> <p>Fix Resolution: tar - 4.4.18,5.0.10,6.1.9</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"tar","packageVersion":"2.2.2","packageFilePaths":["/MqttStreamUsingNanoscale/bower_components/promise-polyfill/package.json"],"isTransitiveDependency":true,"dependencyTree":"@ionic/app-scripts:0.0.45;node-sass:3.10.1;node-gyp:3.8.0;tar:2.2.2","isMinimumFixVersionAvailable":true,"minimumFixVersion":"tar - 4.4.18,5.0.10,6.1.9","isBinary":false}],"baseBranches":[],"vulnerabilityIdentifier":"CVE-2021-37713","vulnerabilityDetails":"The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be outside of the extraction target directory is not extracted. This is, in part, accomplished by sanitizing absolute paths of entries within the archive, skipping archive entries that contain `..` path portions, and resolving the sanitized paths against the extraction target directory. This logic was insufficient on Windows systems when extracting tar files that contained a path that was not an absolute path, but specified a drive letter different from the extraction target, such as `C:some\\path`. If the drive letter does not match the extraction target, for example `D:\\extraction\\dir`, then the result of `path.resolve(extractionDirectory, entryPath)` would resolve against the current working directory on the `C:` drive, rather than the extraction target directory. Additionally, a `..` portion of the path could occur immediately after the drive letter, such as `C:../foo`, and was not properly sanitized by the logic that checked for `..` within the normalized and split portions of the path. This only affects users of `node-tar` on Windows systems. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. There is no reasonable way to work around this issue without performing the same path normalization procedures that node-tar now does. Users are encouraged to upgrade to the latest patched versions of node-tar, rather than attempt to sanitize paths themselves.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-37713","cvss3Severity":"high","cvss3Score":"8.6","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Changed","C":"High","UI":"Required","AV":"Local","I":"High"},"extraData":{}}</REMEDIATE> -->
non_defect
cve high detected in tar tgz cve high severity vulnerability vulnerable library tar tgz tar for node library home page a href path to dependency file mqttstreamusingnanoscale bower components promise polyfill package json path to vulnerable library bower components promise polyfill node modules tar package json bower components promise polyfill node modules tar package json dependency hierarchy app scripts tgz root library node sass tgz node gyp tgz x tar tgz vulnerable library vulnerability details the npm package tar aka node tar before versions and has an arbitrary file creation overwrite and arbitrary code execution vulnerability node tar aims to guarantee that any file whose location would be outside of the extraction target directory is not extracted this is in part accomplished by sanitizing absolute paths of entries within the archive skipping archive entries that contain path portions and resolving the sanitized paths against the extraction target directory this logic was insufficient on windows systems when extracting tar files that contained a path that was not an absolute path but specified a drive letter different from the extraction target such as c some path if the drive letter does not match the extraction target for example d extraction dir then the result of path resolve extractiondirectory entrypath would resolve against the current working directory on the c drive rather than the extraction target directory additionally a portion of the path could occur immediately after the drive letter such as c foo and was not properly sanitized by the logic that checked for within the normalized and split portions of the path this only affects users of node tar on windows systems these issues were addressed in releases and the branch of node tar has been deprecated and did not receive patches for these issues if you are still using a release we recommend you update to a more recent version of node tar there is no reasonable way to work around this issue without performing the same path normalization procedures that node tar now does users are encouraged to upgrade to the latest patched versions of node tar rather than attempt to sanitize paths themselves publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction required scope changed 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 tar isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree ionic app scripts node sass node gyp tar isminimumfixversionavailable true minimumfixversion tar isbinary false basebranches vulnerabilityidentifier cve vulnerabilitydetails the npm package tar aka node tar before versions and has an arbitrary file creation overwrite and arbitrary code execution vulnerability node tar aims to guarantee that any file whose location would be outside of the extraction target directory is not extracted this is in part accomplished by sanitizing absolute paths of entries within the archive skipping archive entries that contain path portions and resolving the sanitized paths against the extraction target directory this logic was insufficient on windows systems when extracting tar files that contained a path that was not an absolute path but specified a drive letter different from the extraction target such as c some path if the drive letter does not match the extraction target for example d extraction dir then the result of path resolve extractiondirectory entrypath would resolve against the current working directory on the c drive rather than the extraction target directory additionally a portion of the path could occur immediately after the drive letter such as c foo and was not properly sanitized by the logic that checked for within the normalized and split portions of the path this only affects users of node tar on windows systems these issues were addressed in releases and the branch of node tar has been deprecated and did not receive patches for these issues if you are still using a release we recommend you update to a more recent version of node tar there is no reasonable way to work around this issue without performing the same path normalization procedures that node tar now does users are encouraged to upgrade to the latest patched versions of node tar rather than attempt to sanitize paths themselves vulnerabilityurl
0
25,466
4,329,701,620
IssuesEvent
2016-07-26 17:39:35
gwaldron/osgearth
https://api.github.com/repos/gwaldron/osgearth
closed
Centroid altitude-binding doesn't work properly for multipolygons
defect HP
altitude-binding: centroid; For a MULTIPOLYGON, the centroid clamping is applied per-polygon, when it should be applied to the centroid of the entire MULTI polygon. shp attached [18_3d_diagram_origin.zip](https://github.com/gwaldron/osgearth/files/383979/18_3d_diagram_origin.zip)
1.0
Centroid altitude-binding doesn't work properly for multipolygons - altitude-binding: centroid; For a MULTIPOLYGON, the centroid clamping is applied per-polygon, when it should be applied to the centroid of the entire MULTI polygon. shp attached [18_3d_diagram_origin.zip](https://github.com/gwaldron/osgearth/files/383979/18_3d_diagram_origin.zip)
defect
centroid altitude binding doesn t work properly for multipolygons altitude binding centroid for a multipolygon the centroid clamping is applied per polygon when it should be applied to the centroid of the entire multi polygon shp attached
1
363,680
10,746,014,080
IssuesEvent
2019-10-30 10:11:56
wso2/config-mapper
https://api.github.com/repos/wso2/config-mapper
closed
TOML config changes not detected when TOML file given as system parameter
Priority/High bug
**Description:** Custom TOML file location can be provided with -Ddeployment.config.file.path parameter. Currently hash value check only for file in inside the conf folder. If TOML file placed outside the conf folder, config-mapper unable to identify the changes. **Suggested Labels:** Bug
1.0
TOML config changes not detected when TOML file given as system parameter - **Description:** Custom TOML file location can be provided with -Ddeployment.config.file.path parameter. Currently hash value check only for file in inside the conf folder. If TOML file placed outside the conf folder, config-mapper unable to identify the changes. **Suggested Labels:** Bug
non_defect
toml config changes not detected when toml file given as system parameter description custom toml file location can be provided with ddeployment config file path parameter currently hash value check only for file in inside the conf folder if toml file placed outside the conf folder config mapper unable to identify the changes suggested labels bug
0
65,374
19,433,718,422
IssuesEvent
2021-12-21 14:49:17
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
closed
Had to restore from key backup manually after verifying Nightly with Web
T-Defect Z-Rageshake A-E2EE-Cross-Signing
1. Log in to Nightly 2. Review new device from web (did not have private keys) 3. Verified successfully! Passphrase entered on web. 4. Nightly could not decrypt messages. Logs to be attached from both sides.
1.0
Had to restore from key backup manually after verifying Nightly with Web - 1. Log in to Nightly 2. Review new device from web (did not have private keys) 3. Verified successfully! Passphrase entered on web. 4. Nightly could not decrypt messages. Logs to be attached from both sides.
defect
had to restore from key backup manually after verifying nightly with web log in to nightly review new device from web did not have private keys verified successfully passphrase entered on web nightly could not decrypt messages logs to be attached from both sides
1
6,368
2,610,241,510
IssuesEvent
2015-02-26 19:16:56
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:25
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:25
defect
台州割包皮包茎大约多少钱 台州割包皮包茎大约多少钱【台州五洲生殖医院】 咨询热线 微信号tzwzszyy 医院地址 台 (枫南大转盘旁)乘车线路 、 、 、 , 、 、 、 、 、 ,步行即可到院。 诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,�� �精,无精。包皮包茎,精索静脉曲张,淋病等。 台州五洲生殖医院是台州最大的男科医院,权威专家在线免�� �咨询,拥有专业完善的男科检查治疗设备,严格按照国家标� ��收费。尖端医疗设备,与世界同步。权威专家,成就专业典 范。人性化服务,一切以患者为中心。 看男科就选台州五洲生殖医院,专业男科为男人。 original issue reported on code google com by poweragr gmail com on may at
1
271,284
8,482,237,503
IssuesEvent
2018-10-25 17:58:29
ansible/awx
https://api.github.com/repos/ansible/awx
opened
Activity Smart Status represents individual slices as overall results
Job Splitting Epic component:ui priority:medium state:needs_devel type:bug
##### ISSUE TYPE - Bug Report ##### COMPONENT NAME - UI ##### SUMMARY Activity Smart Status represents individual slices as overall results. Furthermore, if there are more than 10 slices, you're not guaranteed to see if the overall job failed. ##### ENVIRONMENT * AWX version: 3.4.0 ##### STEPS TO REPRODUCE 1. Create a SJT with 10 slices. 2. Launch the SJT and watch the Activity Smart Status on the Jobs list view. ##### EXPECTED RESULTS The activity Smart Status would only show the overall status of the SJT and not the individual slices. ##### ACTUAL RESULTS Individual slices are represented as job history. ##### ADDITIONAL INFORMATION ![sjt-activity](https://user-images.githubusercontent.com/12446869/47520362-fba12400-d85d-11e8-9600-2d9f57add46b.gif)
1.0
Activity Smart Status represents individual slices as overall results - ##### ISSUE TYPE - Bug Report ##### COMPONENT NAME - UI ##### SUMMARY Activity Smart Status represents individual slices as overall results. Furthermore, if there are more than 10 slices, you're not guaranteed to see if the overall job failed. ##### ENVIRONMENT * AWX version: 3.4.0 ##### STEPS TO REPRODUCE 1. Create a SJT with 10 slices. 2. Launch the SJT and watch the Activity Smart Status on the Jobs list view. ##### EXPECTED RESULTS The activity Smart Status would only show the overall status of the SJT and not the individual slices. ##### ACTUAL RESULTS Individual slices are represented as job history. ##### ADDITIONAL INFORMATION ![sjt-activity](https://user-images.githubusercontent.com/12446869/47520362-fba12400-d85d-11e8-9600-2d9f57add46b.gif)
non_defect
activity smart status represents individual slices as overall results issue type bug report component name ui summary activity smart status represents individual slices as overall results furthermore if there are more than slices you re not guaranteed to see if the overall job failed environment awx version steps to reproduce create a sjt with slices launch the sjt and watch the activity smart status on the jobs list view expected results the activity smart status would only show the overall status of the sjt and not the individual slices actual results individual slices are represented as job history additional information
0
66,422
20,188,462,131
IssuesEvent
2022-02-11 01:40:11
department-of-veterans-affairs/va.gov-cms
https://api.github.com/repos/department-of-veterans-affairs/va.gov-cms
closed
Staff profiles that do not have profile pages should not have a preview or VA.gov URL link
Defect VAMC Drupal engineering Content proofing Needs refining ⭐️ Content ops Sitewide CMS Team
**Describe the defect** Only some staff profiles generate URLs on va.gov, based on the boolean "Create profile page with biography". But the UI on the node proofing shows links to www.va.gov and preview. [Slack thread about a broken link related to the confusino this causes](https://dsva.slack.com/archives/C0MQ281DJ/p1642793680150800) **To Reproduce** Steps to reproduce the behavior: 1. Go to https://prod.cms.va.gov/kansas-city-health-care/staff-profiles/patty-callahan 2. Note the non-working links on the right sidebar for the URL (always says pending, but isn't really pending), and Preview **Expected behavior** No misleading UI **Screenshots** ![Patty_Callahan___VA_Kansas_City_health_care___Veterans_Affairs](https://user-images.githubusercontent.com/643678/137332709-653c9c92-de28-4ffd-b84b-cea26ec3cdca.png) **ACs** Staff profiles: when "Create profile page with biography" is FALSE - [ ] No preview link on staff profiles - [ ] No VA.gov URL ("pending" or otherwise) Q&A content type: when "Enable standalone Resources and support page for this Q&A" is FALSE - [ ] No preview link on Q&A node view - [ ] No VA.gov URL ("pending" or otherwise) ### CMS Team Please leave only the team that will do this work selected. If you're not sure, it's fine to leave both selected. - [ ] `Platform CMS Team` - [x] `Sitewide CMS Team`
1.0
Staff profiles that do not have profile pages should not have a preview or VA.gov URL link - **Describe the defect** Only some staff profiles generate URLs on va.gov, based on the boolean "Create profile page with biography". But the UI on the node proofing shows links to www.va.gov and preview. [Slack thread about a broken link related to the confusino this causes](https://dsva.slack.com/archives/C0MQ281DJ/p1642793680150800) **To Reproduce** Steps to reproduce the behavior: 1. Go to https://prod.cms.va.gov/kansas-city-health-care/staff-profiles/patty-callahan 2. Note the non-working links on the right sidebar for the URL (always says pending, but isn't really pending), and Preview **Expected behavior** No misleading UI **Screenshots** ![Patty_Callahan___VA_Kansas_City_health_care___Veterans_Affairs](https://user-images.githubusercontent.com/643678/137332709-653c9c92-de28-4ffd-b84b-cea26ec3cdca.png) **ACs** Staff profiles: when "Create profile page with biography" is FALSE - [ ] No preview link on staff profiles - [ ] No VA.gov URL ("pending" or otherwise) Q&A content type: when "Enable standalone Resources and support page for this Q&A" is FALSE - [ ] No preview link on Q&A node view - [ ] No VA.gov URL ("pending" or otherwise) ### CMS Team Please leave only the team that will do this work selected. If you're not sure, it's fine to leave both selected. - [ ] `Platform CMS Team` - [x] `Sitewide CMS Team`
defect
staff profiles that do not have profile pages should not have a preview or va gov url link describe the defect only some staff profiles generate urls on va gov based on the boolean create profile page with biography but the ui on the node proofing shows links to and preview to reproduce steps to reproduce the behavior go to note the non working links on the right sidebar for the url always says pending but isn t really pending and preview expected behavior no misleading ui screenshots acs staff profiles when create profile page with biography is false no preview link on staff profiles no va gov url pending or otherwise q a content type when enable standalone resources and support page for this q a is false no preview link on q a node view no va gov url pending or otherwise cms team please leave only the team that will do this work selected if you re not sure it s fine to leave both selected platform cms team sitewide cms team
1
45,652
12,972,798,660
IssuesEvent
2020-07-21 13:06:24
department-of-veterans-affairs/va.gov-cms
https://api.github.com/repos/department-of-veterans-affairs/va.gov-cms
closed
Migrate va_node_health_care_local_facility_status causes Database locks
Critical defect Unplanned work
## Description Currently the migration job `va_node_health_care_local_facility_status` causes table locks. When another request is made in the UI the following error occurs: ``` Drupal\Core\Database\DatabaseExceptionWrapper: SQLSTATE[HY000]: General error: 1205 Lock wait timeout exceeded; try restarting transaction: INSERT INTO {cache_config} ... ``` This is a follow up of https://github.com/department-of-veterans-affairs/va.gov-cms/issues/2131 ## How to reproduce on stage 1. Run the following command: `sudo -u apache bash -c 'source /etc/sysconfig/httpd; PATH=$PATH:/usr/local/bin composer yaml-tests --tests-file=tasks-periodic.yml --dry-run periodic'` 1. Go to the UI: https://staging.cms.va.gov/section/veterans-affairs *Expected Results* Page loads without errors *Actual Result* Error message occurs "Website encountered an error" and the error occurs in the error log: `Lock wait timeout exceeded` ## Acceptance Criteria * The migration should not cause table locks.
1.0
Migrate va_node_health_care_local_facility_status causes Database locks - ## Description Currently the migration job `va_node_health_care_local_facility_status` causes table locks. When another request is made in the UI the following error occurs: ``` Drupal\Core\Database\DatabaseExceptionWrapper: SQLSTATE[HY000]: General error: 1205 Lock wait timeout exceeded; try restarting transaction: INSERT INTO {cache_config} ... ``` This is a follow up of https://github.com/department-of-veterans-affairs/va.gov-cms/issues/2131 ## How to reproduce on stage 1. Run the following command: `sudo -u apache bash -c 'source /etc/sysconfig/httpd; PATH=$PATH:/usr/local/bin composer yaml-tests --tests-file=tasks-periodic.yml --dry-run periodic'` 1. Go to the UI: https://staging.cms.va.gov/section/veterans-affairs *Expected Results* Page loads without errors *Actual Result* Error message occurs "Website encountered an error" and the error occurs in the error log: `Lock wait timeout exceeded` ## Acceptance Criteria * The migration should not cause table locks.
defect
migrate va node health care local facility status causes database locks description currently the migration job va node health care local facility status causes table locks when another request is made in the ui the following error occurs drupal core database databaseexceptionwrapper sqlstate general error lock wait timeout exceeded try restarting transaction insert into cache config this is a follow up of how to reproduce on stage run the following command sudo u apache bash c source etc sysconfig httpd path path usr local bin composer yaml tests tests file tasks periodic yml dry run periodic go to the ui expected results page loads without errors actual result error message occurs website encountered an error and the error occurs in the error log lock wait timeout exceeded acceptance criteria the migration should not cause table locks
1
58,243
16,447,564,864
IssuesEvent
2021-05-20 21:42:58
Questie/Questie
https://api.github.com/repos/Questie/Questie
closed
[DND] TAR Pedestal Shown on Map When Repair is Checked
Type - Defect
When turning on the option to show Repair on the Map/Minimap tons of extra things show up, all starting with [DND] TAR Pedestal ![Questie-Bug](https://user-images.githubusercontent.com/14955477/119050316-b0a50a00-b98f-11eb-9728-1f066661b456.png) Running current version (6.3.11) on BC Classic.
1.0
[DND] TAR Pedestal Shown on Map When Repair is Checked - When turning on the option to show Repair on the Map/Minimap tons of extra things show up, all starting with [DND] TAR Pedestal ![Questie-Bug](https://user-images.githubusercontent.com/14955477/119050316-b0a50a00-b98f-11eb-9728-1f066661b456.png) Running current version (6.3.11) on BC Classic.
defect
tar pedestal shown on map when repair is checked when turning on the option to show repair on the map minimap tons of extra things show up all starting with tar pedestal running current version on bc classic
1
790,732
27,834,747,766
IssuesEvent
2023-03-20 08:40:35
hotosm/fmtm
https://api.github.com/repos/hotosm/fmtm
opened
Implement pagination on the backend
bug Priority: Nice to have
When listing many projects or tasks, it'll be more efficient to have the backend endpoints to return the specified number or entries, instead of all the data in the 2 tables.
1.0
Implement pagination on the backend - When listing many projects or tasks, it'll be more efficient to have the backend endpoints to return the specified number or entries, instead of all the data in the 2 tables.
non_defect
implement pagination on the backend when listing many projects or tasks it ll be more efficient to have the backend endpoints to return the specified number or entries instead of all the data in the tables
0
65,101
19,096,420,435
IssuesEvent
2021-11-29 17:08:12
primefaces/primefaces
https://api.github.com/repos/primefaces/primefaces
closed
PrimeConfiguration: NPE when using on HCL Digital Experience 9.5
defect
**Describe the defect** Using Primefaces 10, a simple portlet on HCL Digital Experience 9.5 stops working. **Environment:** - _Primefaces 10.0_ - _MyFaces 2.2.8_ - _HCL Digital Experience 9.5 on Websphere Application Server 9.0.5.7_ **To Reproduce** Using PF 7 or 8, portlet deployed on HCL Digital Experience 9.5 worked without any problem. When I changed Primefaces version from 8.0 to 10.0, a simple portlet stopped working. I get ServletException caused by NPE in PrimeConfiguration class. Stack trace: `[29.11.2021 13:29:24:505 CET] 0000013b ServletWrappe E com.ibm.ws.webcontainer.servlet.ServletWrapper service CWSRV0014E: Uncaught service() exception root cause TestJSF22: javax.servlet.ServletException: javax.portlet.PortletException: java.lang.NullPointerException at com.ibm.ws.portletcontainer.invoker.impl.PortletServlet.doDispatch(PortletServlet.java:369) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:82) at com.ibm.isclite.container.collaborator.PortletServletCollaborator.doDispatch(PortletServletCollaborator.java:146) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:74) at com.ibm.ws.portletcontainer.rrd.RRDServerPortletServletCollaborator.doDispatch(RRDServerPortletServletCollaborator.java:60) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:74) at com.ibm.ws.portletcontainer.cache.CacheCollaborator.doDispatch(CacheCollaborator.java:74) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:74) at com.ibm.wps.pe.pc.waspc.core.impl.PortletServletCollaboratorImpl.doDispatch(PortletServletCollaboratorImpl.java:121) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:74) at com.ibm.ws.portletcontainer.invoker.impl.PortletServlet.dispatch(PortletServlet.java:208) at com.ibm.ws.portletcontainer.invoker.impl.PortletServlet.service(PortletServlet.java:165) at javax.servlet.http.HttpServlet.service(HttpServlet.java:790) at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1235) at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:779) at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478) at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java:179) at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:122) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.invokeTarget(WebAppFilterChain.java:143) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:78) at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:979) at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1119) at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:1408) at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.include(WebAppRequestDispatcher.java:553) at com.ibm.ws.portletcontainer.invoker.impl.PortletInvokerImpl.invoke(PortletInvokerImpl.java:215) at com.ibm.ws.portletcontainer.invoker.impl.PortletInvokerCollaboratorChainImpl.doCollaborator(PortletInvokerCollaboratorChainImpl.java:78) at com.ibm.ws.portletcontainer.cache.PortletInvokerCacheCollaborator.doRender(PortletInvokerCacheCollaborator.java:58) at com.ibm.ws.portletcontainer.invoker.impl.PortletInvokerCollaboratorChainImpl.doCollaborator(PortletInvokerCollaboratorChainImpl.java:67) at com.ibm.ws.portletcontainer.ext.PortletInvokerPerformanceCollaborator.invoke(PortletInvokerPerformanceCollaborator.java:313) at com.ibm.ws.portletcontainer.ext.PortletInvokerPerformanceCollaborator.doInvoke(PortletInvokerPerformanceCollaborator.java:101) at com.ibm.ws.portletcontainer.ext.PortletInvokerPerformanceCollaborator.invokePMI(PortletInvokerPerformanceCollaborator.java:163) at com.ibm.ws.portletcontainer.ext.PortletInvokerPerformanceCollaborator.doInvoke(PortletInvokerPerformanceCollaborator.java:91) at com.ibm.ws.portletcontainer.ext.PortletInvokerPerformanceCollaborator.doRender(PortletInvokerPerformanceCollaborator.java:74) at com.ibm.ws.portletcontainer.invoker.impl.PortletInvokerCollaboratorChainImpl.doCollaborator(PortletInvokerCollaboratorChainImpl.java:67) at com.ibm.ws.portletcontainer.invoker.impl.PortletInvokerImpl.render(PortletInvokerImpl.java:98) at com.ibm.ws.portletcontainer.PortletContainerImpl.doRender(PortletContainerImpl.java:121) at com.ibm.ws.portletcontainer.PortletContainerInvokerCollaboratorChainImpl.doCollaborator(PortletContainerInvokerCollaboratorChainImpl.java:80) at com.ibm.ws.portletcontainer.ext.ExtCollaborator.doRender(ExtCollaborator.java:76) at com.ibm.ws.portletcontainer.PortletContainerInvokerCollaboratorChainImpl.doCollaborator(PortletContainerInvokerCollaboratorChainImpl.java:67) at com.ibm.ws.portletcontainer.cache.CacheInvokerCollaborator.doRender(CacheInvokerCollaborator.java:66) at com.ibm.ws.portletcontainer.PortletContainerInvokerCollaboratorChainImpl.doCollaborator(PortletContainerInvokerCollaboratorChainImpl.java:67) at com.ibm.wps.resolver.iwidget.filter.IWidgetPCInvokerCollaborator.doRender(IWidgetPCInvokerCollaborator.java:200) at com.ibm.ws.portletcontainer.PortletContainerInvokerCollaboratorChainImpl.doCollaborator(PortletContainerInvokerCollaboratorChainImpl.java:67) at com.ibm.ws.portletcontainer.PortletContainerImpl.renderPortlet(PortletContainerImpl.java:91) at com.ibm.ws.portletcontainer.pcinvoker.PortletInvokerImpl$2.run(PortletInvokerImpl.java:100) at java.security.AccessController.doPrivileged(AccessController.java:703) at com.ibm.ws.portletcontainer.pcinvoker.PortletInvokerImpl.invokeRender(PortletInvokerImpl.java:96) at com.ibm.wps.pe.pc.waspc.core.impl.PortletInvokerImpl$1.invoke(PortletInvokerImpl.java:98) at com.ibm.wps.pe.pc.waspc.core.impl.PortletInvokerImpl.invoke(PortletInvokerImpl.java:182) at com.ibm.wps.pe.pc.waspc.core.impl.PortletInvokerImpl.invokeRender(PortletInvokerImpl.java:96) at com.ibm.wps.pe.pc.waspc.PortletContainerImpl.renderPortlet(PortletContainerImpl.java:191) at com.ibm.wps.pe.pc.waspc.PortletContainerImpl.renderPortlet(PortletContainerImpl.java:153) at com.ibm.wps.pe.pc.PortletContainerImpl.doRenderPortlet(PortletContainerImpl.java:602) at com.ibm.wps.pe.ext.render.AbstractRenderManager.performService(AbstractRenderManager.java:263) at com.ibm.wps.pe.pc.PortletContainerImpl.renderPortlet(PortletContainerImpl.java:120) at com.ibm.wps.resolver.model.layout.LayoutControlDataSource.renderPortlet(LayoutControlDataSource.java:948) at com.ibm.wps.resolver.model.layout.LayoutControlDataSource.renderLayoutControl(LayoutControlDataSource.java:845) at com.ibm.wps.resolver.model.layout.LayoutControlDataSource.write(LayoutControlDataSource.java:1288) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:90) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:55) at java.lang.reflect.Method.invoke(Method.java:508) at com.ibm.wps.util.ContextWrapper$Handler.invoke(ContextWrapper.java:184) at com.sun.proxy.$Proxy387.write(Unknown Source) at com.ibm.wps.spa.renderer.skin.DynamicContentSkinContentHandler.endDynamicContentSpot(DynamicContentSkinContentHandler.java:258) at com.ibm.wps.spa.parser.skin.RecordingSkinContentHandler.parse(RecordingSkinContentHandler.java:116) at com.ibm.wps.spa.parser.skin.CachingSkinURIParserImpl.parse(CachingSkinURIParserImpl.java:178) at com.ibm.wps.spa.data.locale.LocalizedContextDataSourceParserImpl.parse(LocalizedContextDataSourceParserImpl.java:286) at com.ibm.wps.spa.data.locale.LocalizedContextDataSource.write(LocalizedContextDataSource.java:178) at com.ibm.wps.spa.data.skin.DynamicContentSkinDataSource.write(DynamicContentSkinDataSource.java:188) at com.ibm.wps.engine.templates.skins.SPASkinTemplate.render(SPASkinTemplate.java:380) at com.ibm.wps.engine.templates.SkinTemplate.render(SkinTemplate.java:68) at com.ibm.wps.model.layout.rendering.DefaultPortalLayoutNodeRenderFilter.layoutNodeRender(DefaultPortalLayoutNodeRenderFilter.java:285) at com.ibm.wps.model.layout.rendering.DefaultPortalLayoutNodeRenderFilter.controlRender(DefaultPortalLayoutNodeRenderFilter.java:312) at com.ibm.wps.model.layout.rendering.DefaultPortalLayoutNodeRenderFilter.componentRender(DefaultPortalLayoutNodeRenderFilter.java:245) at com.ibm.wps.model.layout.rendering.DefaultPortalLayoutNodeRenderFilter.doFilter(DefaultPortalLayoutNodeRenderFilter.java:135) at com.ibm.wps.model.layout.rendering.LayoutRenderFilterChain.doFilter(LayoutRenderFilterChain.java:84) at com.ibm.wps.model.layout.rendering.LayoutModelRenderServiceImpl.render(LayoutModelRenderServiceImpl.java:128) at com.ibm.wps.spa.renderer.DefaultPageRendererImpl.renderLayoutControlWithSkin(DefaultPageRendererImpl.java:1780) at com.ibm.wps.spa.renderer.DefaultPageRendererImpl.renderLayoutControl(DefaultPageRendererImpl.java:1619) at com.ibm.wps.spa.renderer.DefaultPageRendererImpl.renderLayoutContainer(DefaultPageRendererImpl.java:1493) at com.ibm.wps.spa.renderer.StaticPageRendererImpl.startPortletContainer(StaticPageRendererImpl.java:3261) at com.ibm.portal.spa.parser.helper.AbstractStaticPageContentHandler.startPortletContainer(AbstractStaticPageContentHandler.java:449) at com.ibm.wps.spa.parser.cache.CacheValueImpl$PlaybackHandler.playStartPortletContainer(CacheValueImpl.java:714) at com.ibm.wps.spa.parser.cache.CacheValueImpl$PlaybackHandler.parse(CacheValueImpl.java:425) at com.ibm.wps.spa.parser.cache.CacheValueImpl$PlaybackHandler.parse(CacheValueImpl.java:400) at com.ibm.wps.spa.parser.cache.CacheValueImpl.parse(CacheValueImpl.java:1434) at com.ibm.wps.spa.parser.cache.CachingParser.parse(CachingParser.java:550) at com.ibm.wps.spa.parser.StaticPageURIParserImpl.parse(StaticPageURIParserImpl.java:137) at com.ibm.wps.spa.parser.StaticPageURIParserImpl.parse(StaticPageURIParserImpl.java:171) at com.ibm.wps.spa.renderer.PortalStaticPageRendererImpl.render(PortalStaticPageRendererImpl.java:262) at com.ibm.wps.spa.renderer.PortalStaticPageRendererImpl.render(PortalStaticPageRendererImpl.java:200) at com.ibm.wps.engine.templates.screens.SPAScreenTemplate.render(SPAScreenTemplate.java:152) at com.ibm.wps.engine.templates.screens.SPAScreenTemplate.render(SPAScreenTemplate.java:119) at com.ibm.wps.engine.templates.screens.SPAScreenTemplate.render(SPAScreenTemplate.java:170) at com.ibm.wps.engine.templates.ScreenTemplate.render(ScreenTemplate.java:59) at com.ibm.wps.resolver.model.layout.LayoutTemplateDataSource.write(LayoutTemplateDataSource.java:294) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:90) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:55) at java.lang.reflect.Method.invoke(Method.java:508) at com.ibm.wps.util.ContextWrapper$Handler.invoke(ContextWrapper.java:184) at com.sun.proxy.$Proxy376.write(Unknown Source) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:90) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:55) at java.lang.reflect.Method.invoke(Method.java:508) at com.ibm.wps.util.ContextWrapper$Handler.invoke(ContextWrapper.java:184) at com.sun.proxy.$Proxy377.write(Unknown Source) at com.ibm.wps.spa.renderer.theme.DynamicContentThemeContentHandler.endDynamicContentSpot(DynamicContentThemeContentHandler.java:350) at com.ibm.wps.spa.parser.theme.RecordingThemeContentHandler.parse(RecordingThemeContentHandler.java:119) at com.ibm.wps.spa.parser.theme.CachingThemeURIParserImpl.parse(CachingThemeURIParserImpl.java:178) at com.ibm.wps.spa.data.locale.LocalizedContextDataSourceParserImpl.parse(LocalizedContextDataSourceParserImpl.java:286) at com.ibm.wps.spa.data.locale.LocalizedContextDataSource.write(LocalizedContextDataSource.java:178) at com.ibm.wps.spa.data.theme.DynamicContentThemeDataSource.write(DynamicContentThemeDataSource.java:186) at com.ibm.wps.resolver.tags.DataSourceTag.doEndTag(DataSourceTag.java:256) at com.ibm._jsp._Default._jspx_meth_r_dataSource_0(_Default.java:946) at com.ibm._jsp._Default._jspx_meth_c_when_0(_Default.java:972) at com.ibm._jsp._Default._jspService(_Default.java:192) at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:99) at javax.servlet.http.HttpServlet.service(HttpServlet.java:790) at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1235) at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:779) at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478) at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java:179) at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:122) at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionServletWrapper.handleRequest(AbstractJSPExtensionServletWrapper.java:220) at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1134) at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:1408) at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.include(WebAppRequestDispatcher.java:553) at com.ibm.wps.services.dispatcher.DispatcherServiceImpl.handleRequest(DispatcherServiceImpl.java:93) at com.ibm.wps.services.dispatcher.DispatcherServiceImpl.include(DispatcherServiceImpl.java:53) at com.ibm.wps.services.dispatcher.Dispatcher.include(Dispatcher.java:50) at com.ibm.wps.engine.templates.themes.Default.doDispatch(Default.java:79) at com.ibm.wps.engine.templates.themes.Default.render(Default.java:272) at com.ibm.wps.engine.templates.ThemeTemplate.render(ThemeTemplate.java:124) at com.ibm.wps.engine.phases.WPRenderPhase.processRendering(WPRenderPhase.java:543) at com.ibm.wps.engine.phases.WPBaseRenderPhase.execute(WPBaseRenderPhase.java:249) at com.ibm.wps.state.phases.AbstractRenderPhase.next(AbstractRenderPhase.java:106) at com.ibm.wps.engine.phases.WPAbstractRenderPhase.next(WPAbstractRenderPhase.java:100) at com.ibm.wps.engine.Servlet.callPortal(Servlet.java:277) at com.ibm.wps.engine.Servlet.doGet(Servlet.java:579) at javax.servlet.http.HttpServlet.service(HttpServlet.java:687) at com.ibm.wps.engine.Servlet.doFilter(Servlet.java:359) at com.ibm.wps.resolver.servlet.ContentHandlerCleanup.doFilter(ContentHandlerCleanup.java:780) at com.ibm.wps.resolver.servlet.AbstractFilter.doFilter(AbstractFilter.java:103) at com.ibm.wps.engine.Servlet.service(Servlet.java:1279) at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1235) at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:779) at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478) at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java:179) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.invokeTarget(WebAppFilterChain.java:143) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:96) at com.hcl.csp.CSPFilter.doFilter(CSPFilter.java:230) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.engine.ExtensionFilter$ExtendedFilterChain.doFilter(ExtensionFilter.java:110) at com.ibm.wps.engine.ExtensionFilter.doFilter(ExtensionFilter.java:197) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.engine.SupportedLocalesFilter.doFilter(SupportedLocalesFilter.java:112) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.engine.ExtendedLocaleFilter.doFilter(ExtendedLocaleFilter.java:132) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.resolver.friendly.servlet.FriendlySelectionFilter.doFilter(FriendlySelectionFilter.java:191) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.project.filter.ProjectIdFilter.doFilterWithoutProjectID(ProjectIdFilter.java:407) at com.ibm.wps.project.filter.ProjectIdFilter.doFilter(ProjectIdFilter.java:321) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.services.preview.PreviewFilterImpl.doFilter(PreviewFilterImpl.java:356) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.mappingurl.impl.URLAnalyzer.doFilter(URLAnalyzer.java:442) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.engine.VirtualPortalFilter.doFilter(VirtualPortalFilter.java:89) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.hcl.friendlylocale.FriendlyLocaleFilter.doFilter(FriendlyLocaleFilter.java:149) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.resolver.servlet.ContentHandlerGzip.internalDoFilter(ContentHandlerGzip.java:758) at com.ibm.wps.resolver.servlet.ContentHandlerGzip.doFilter(ContentHandlerGzip.java:496) at com.ibm.wps.resolver.servlet.AbstractFilter.doFilter(AbstractFilter.java:103) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.state.filter.StateCleanup.doFilter(StateCleanup.java:103) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.devicesupport.WorklightFilter.doFilter(WorklightFilter.java:162) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:979) at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1119) at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:4219) at com.ibm.ws.webcontainer.webapp.WebAppImpl.handleRequest(WebAppImpl.java:2210) at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:304) at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1030) at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1817) at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:382) at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465) at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.java:532) at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java:318) at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:289) at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214) at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113) at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:175) at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217) at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161) at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138) at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204) at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775) at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905) at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1909) Caused by: javax.portlet.PortletException: java.lang.NullPointerException ... 218 more Caused by: java.lang.NullPointerException at org.primefaces.config.PrimeConfiguration.<init>(PrimeConfiguration.java:155) at org.primefaces.context.PrimeApplicationContext.<init>(PrimeApplicationContext.java:88) at org.primefaces.context.PrimeApplicationContext.getCurrentInstance(PrimeApplicationContext.java:221) at org.primefaces.context.PrimeApplicationContext.getCurrentInstance(PrimeApplicationContext.java:209) at org.primefaces.context.PrimeRequestContext.getApplicationContext(PrimeRequestContext.java:199) at org.primefaces.context.PrimeFacesContext.<init>(PrimeFacesContext.java:60) at org.primefaces.context.PrimeFacesContextFactory.getFacesContext(PrimeFacesContextFactory.java:59) at com.ibm.faces20.portlet.FacesPortlet.getFacesContext(FacesPortlet.java:788) at com.ibm.faces20.portlet.FacesPortlet.doRender(FacesPortlet.java:498) at com.ibm.faces20.portlet.FacesPortlet.doView(FacesPortlet.java:388) at com.ibm.faces20.portlet.FacesPortlet.doDispatch(FacesPortlet.java:368) at javax.portlet.GenericPortlet.render(GenericPortlet.java:251) at com.ibm.ws.portletcontainer.invoker.impl.PortletFilterChainImpl.doFilter(PortletFilterChainImpl.java:128) at com.ibm.wps.engine.el.init.AttributeCopyFilter.doFilter(AttributeCopyFilter.java:158) at com.ibm.ws.portletcontainer.invoker.impl.PortletFilterChainImpl.doFilter(PortletFilterChainImpl.java:120) at com.ibm.wps.resourceaggregator.capabilities.filter.PortletCapabilityDependencyFilter.doFilter(PortletCapabilityDependencyFilter.java:398) at com.ibm.ws.portletcontainer.invoker.impl.PortletFilterChainImpl.doFilter(PortletFilterChainImpl.java:120) at com.ibm.wps.resolver.iwidget.filter.IWidgetPortletFilter.doFilter(IWidgetPortletFilter.java:60) at com.ibm.ws.portletcontainer.invoker.impl.PortletFilterChainImpl.doFilter(PortletFilterChainImpl.java:120) at com.ibm.wps.propertybroker.standard.filter.C2APortletFilter.doFilter(C2APortletFilter.java:193) at com.ibm.ws.portletcontainer.invoker.impl.PortletFilterChainImpl.doFilter(PortletFilterChainImpl.java:120) at com.ibm.wps.pe.pc.waspc.plm.GlobalPortletLoadMonitoringFilter.doFilter(GlobalPortletLoadMonitoringFilter.java:146) at com.ibm.ws.portletcontainer.invoker.impl.PortletFilterChainImpl.doFilter(PortletFilterChainImpl.java:120) at com.ibm.wps.pe.pc.waspc.filter.impl.GlobalPortletFilter.doFilter(GlobalPortletFilter.java:154) at com.ibm.ws.portletcontainer.invoker.impl.PortletFilterChainImpl.doFilter(PortletFilterChainImpl.java:120) at com.ibm.wps.pcm.scoping.filter.PCMScopingFilter.doFilter(PCMScopingFilter.java:92) at com.ibm.ws.portletcontainer.invoker.impl.PortletFilterChainImpl.doFilter(PortletFilterChainImpl.java:120) at com.ibm.ws.portletcontainer.invoker.impl.PortletServlet.doDispatch(PortletServlet.java:573) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:114) at com.ibm.isclite.container.collaborator.PortletServletCollaborator.doRender(PortletServletCollaborator.java:71) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:105) at com.ibm.ws.portletcontainer.rrd.RRDServerPortletServletCollaborator.doRender(RRDServerPortletServletCollaborator.java:123) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:105) at com.ibm.ws.portletcontainer.cache.CacheCollaborator.doRender(CacheCollaborator.java:92) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:105) at com.ibm.wps.pe.pc.waspc.core.impl.PortletServletCollaboratorImpl.doRender(PortletServletCollaboratorImpl.java:168) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:105) at com.ibm.ws.portletcontainer.invoker.impl.PortletServlet.doDispatch(PortletServlet.java:273) ... 217 more` I've already tried to get a solution on [SO](https://stackoverflow.com/questions/70122015/portlet-error-when-upgrading-primefaces-8-to-primefaces-10), also tried it with PF 11.0.0-RC2, but with no luck.
1.0
PrimeConfiguration: NPE when using on HCL Digital Experience 9.5 - **Describe the defect** Using Primefaces 10, a simple portlet on HCL Digital Experience 9.5 stops working. **Environment:** - _Primefaces 10.0_ - _MyFaces 2.2.8_ - _HCL Digital Experience 9.5 on Websphere Application Server 9.0.5.7_ **To Reproduce** Using PF 7 or 8, portlet deployed on HCL Digital Experience 9.5 worked without any problem. When I changed Primefaces version from 8.0 to 10.0, a simple portlet stopped working. I get ServletException caused by NPE in PrimeConfiguration class. Stack trace: `[29.11.2021 13:29:24:505 CET] 0000013b ServletWrappe E com.ibm.ws.webcontainer.servlet.ServletWrapper service CWSRV0014E: Uncaught service() exception root cause TestJSF22: javax.servlet.ServletException: javax.portlet.PortletException: java.lang.NullPointerException at com.ibm.ws.portletcontainer.invoker.impl.PortletServlet.doDispatch(PortletServlet.java:369) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:82) at com.ibm.isclite.container.collaborator.PortletServletCollaborator.doDispatch(PortletServletCollaborator.java:146) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:74) at com.ibm.ws.portletcontainer.rrd.RRDServerPortletServletCollaborator.doDispatch(RRDServerPortletServletCollaborator.java:60) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:74) at com.ibm.ws.portletcontainer.cache.CacheCollaborator.doDispatch(CacheCollaborator.java:74) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:74) at com.ibm.wps.pe.pc.waspc.core.impl.PortletServletCollaboratorImpl.doDispatch(PortletServletCollaboratorImpl.java:121) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:74) at com.ibm.ws.portletcontainer.invoker.impl.PortletServlet.dispatch(PortletServlet.java:208) at com.ibm.ws.portletcontainer.invoker.impl.PortletServlet.service(PortletServlet.java:165) at javax.servlet.http.HttpServlet.service(HttpServlet.java:790) at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1235) at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:779) at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478) at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java:179) at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:122) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.invokeTarget(WebAppFilterChain.java:143) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:78) at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:979) at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1119) at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:1408) at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.include(WebAppRequestDispatcher.java:553) at com.ibm.ws.portletcontainer.invoker.impl.PortletInvokerImpl.invoke(PortletInvokerImpl.java:215) at com.ibm.ws.portletcontainer.invoker.impl.PortletInvokerCollaboratorChainImpl.doCollaborator(PortletInvokerCollaboratorChainImpl.java:78) at com.ibm.ws.portletcontainer.cache.PortletInvokerCacheCollaborator.doRender(PortletInvokerCacheCollaborator.java:58) at com.ibm.ws.portletcontainer.invoker.impl.PortletInvokerCollaboratorChainImpl.doCollaborator(PortletInvokerCollaboratorChainImpl.java:67) at com.ibm.ws.portletcontainer.ext.PortletInvokerPerformanceCollaborator.invoke(PortletInvokerPerformanceCollaborator.java:313) at com.ibm.ws.portletcontainer.ext.PortletInvokerPerformanceCollaborator.doInvoke(PortletInvokerPerformanceCollaborator.java:101) at com.ibm.ws.portletcontainer.ext.PortletInvokerPerformanceCollaborator.invokePMI(PortletInvokerPerformanceCollaborator.java:163) at com.ibm.ws.portletcontainer.ext.PortletInvokerPerformanceCollaborator.doInvoke(PortletInvokerPerformanceCollaborator.java:91) at com.ibm.ws.portletcontainer.ext.PortletInvokerPerformanceCollaborator.doRender(PortletInvokerPerformanceCollaborator.java:74) at com.ibm.ws.portletcontainer.invoker.impl.PortletInvokerCollaboratorChainImpl.doCollaborator(PortletInvokerCollaboratorChainImpl.java:67) at com.ibm.ws.portletcontainer.invoker.impl.PortletInvokerImpl.render(PortletInvokerImpl.java:98) at com.ibm.ws.portletcontainer.PortletContainerImpl.doRender(PortletContainerImpl.java:121) at com.ibm.ws.portletcontainer.PortletContainerInvokerCollaboratorChainImpl.doCollaborator(PortletContainerInvokerCollaboratorChainImpl.java:80) at com.ibm.ws.portletcontainer.ext.ExtCollaborator.doRender(ExtCollaborator.java:76) at com.ibm.ws.portletcontainer.PortletContainerInvokerCollaboratorChainImpl.doCollaborator(PortletContainerInvokerCollaboratorChainImpl.java:67) at com.ibm.ws.portletcontainer.cache.CacheInvokerCollaborator.doRender(CacheInvokerCollaborator.java:66) at com.ibm.ws.portletcontainer.PortletContainerInvokerCollaboratorChainImpl.doCollaborator(PortletContainerInvokerCollaboratorChainImpl.java:67) at com.ibm.wps.resolver.iwidget.filter.IWidgetPCInvokerCollaborator.doRender(IWidgetPCInvokerCollaborator.java:200) at com.ibm.ws.portletcontainer.PortletContainerInvokerCollaboratorChainImpl.doCollaborator(PortletContainerInvokerCollaboratorChainImpl.java:67) at com.ibm.ws.portletcontainer.PortletContainerImpl.renderPortlet(PortletContainerImpl.java:91) at com.ibm.ws.portletcontainer.pcinvoker.PortletInvokerImpl$2.run(PortletInvokerImpl.java:100) at java.security.AccessController.doPrivileged(AccessController.java:703) at com.ibm.ws.portletcontainer.pcinvoker.PortletInvokerImpl.invokeRender(PortletInvokerImpl.java:96) at com.ibm.wps.pe.pc.waspc.core.impl.PortletInvokerImpl$1.invoke(PortletInvokerImpl.java:98) at com.ibm.wps.pe.pc.waspc.core.impl.PortletInvokerImpl.invoke(PortletInvokerImpl.java:182) at com.ibm.wps.pe.pc.waspc.core.impl.PortletInvokerImpl.invokeRender(PortletInvokerImpl.java:96) at com.ibm.wps.pe.pc.waspc.PortletContainerImpl.renderPortlet(PortletContainerImpl.java:191) at com.ibm.wps.pe.pc.waspc.PortletContainerImpl.renderPortlet(PortletContainerImpl.java:153) at com.ibm.wps.pe.pc.PortletContainerImpl.doRenderPortlet(PortletContainerImpl.java:602) at com.ibm.wps.pe.ext.render.AbstractRenderManager.performService(AbstractRenderManager.java:263) at com.ibm.wps.pe.pc.PortletContainerImpl.renderPortlet(PortletContainerImpl.java:120) at com.ibm.wps.resolver.model.layout.LayoutControlDataSource.renderPortlet(LayoutControlDataSource.java:948) at com.ibm.wps.resolver.model.layout.LayoutControlDataSource.renderLayoutControl(LayoutControlDataSource.java:845) at com.ibm.wps.resolver.model.layout.LayoutControlDataSource.write(LayoutControlDataSource.java:1288) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:90) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:55) at java.lang.reflect.Method.invoke(Method.java:508) at com.ibm.wps.util.ContextWrapper$Handler.invoke(ContextWrapper.java:184) at com.sun.proxy.$Proxy387.write(Unknown Source) at com.ibm.wps.spa.renderer.skin.DynamicContentSkinContentHandler.endDynamicContentSpot(DynamicContentSkinContentHandler.java:258) at com.ibm.wps.spa.parser.skin.RecordingSkinContentHandler.parse(RecordingSkinContentHandler.java:116) at com.ibm.wps.spa.parser.skin.CachingSkinURIParserImpl.parse(CachingSkinURIParserImpl.java:178) at com.ibm.wps.spa.data.locale.LocalizedContextDataSourceParserImpl.parse(LocalizedContextDataSourceParserImpl.java:286) at com.ibm.wps.spa.data.locale.LocalizedContextDataSource.write(LocalizedContextDataSource.java:178) at com.ibm.wps.spa.data.skin.DynamicContentSkinDataSource.write(DynamicContentSkinDataSource.java:188) at com.ibm.wps.engine.templates.skins.SPASkinTemplate.render(SPASkinTemplate.java:380) at com.ibm.wps.engine.templates.SkinTemplate.render(SkinTemplate.java:68) at com.ibm.wps.model.layout.rendering.DefaultPortalLayoutNodeRenderFilter.layoutNodeRender(DefaultPortalLayoutNodeRenderFilter.java:285) at com.ibm.wps.model.layout.rendering.DefaultPortalLayoutNodeRenderFilter.controlRender(DefaultPortalLayoutNodeRenderFilter.java:312) at com.ibm.wps.model.layout.rendering.DefaultPortalLayoutNodeRenderFilter.componentRender(DefaultPortalLayoutNodeRenderFilter.java:245) at com.ibm.wps.model.layout.rendering.DefaultPortalLayoutNodeRenderFilter.doFilter(DefaultPortalLayoutNodeRenderFilter.java:135) at com.ibm.wps.model.layout.rendering.LayoutRenderFilterChain.doFilter(LayoutRenderFilterChain.java:84) at com.ibm.wps.model.layout.rendering.LayoutModelRenderServiceImpl.render(LayoutModelRenderServiceImpl.java:128) at com.ibm.wps.spa.renderer.DefaultPageRendererImpl.renderLayoutControlWithSkin(DefaultPageRendererImpl.java:1780) at com.ibm.wps.spa.renderer.DefaultPageRendererImpl.renderLayoutControl(DefaultPageRendererImpl.java:1619) at com.ibm.wps.spa.renderer.DefaultPageRendererImpl.renderLayoutContainer(DefaultPageRendererImpl.java:1493) at com.ibm.wps.spa.renderer.StaticPageRendererImpl.startPortletContainer(StaticPageRendererImpl.java:3261) at com.ibm.portal.spa.parser.helper.AbstractStaticPageContentHandler.startPortletContainer(AbstractStaticPageContentHandler.java:449) at com.ibm.wps.spa.parser.cache.CacheValueImpl$PlaybackHandler.playStartPortletContainer(CacheValueImpl.java:714) at com.ibm.wps.spa.parser.cache.CacheValueImpl$PlaybackHandler.parse(CacheValueImpl.java:425) at com.ibm.wps.spa.parser.cache.CacheValueImpl$PlaybackHandler.parse(CacheValueImpl.java:400) at com.ibm.wps.spa.parser.cache.CacheValueImpl.parse(CacheValueImpl.java:1434) at com.ibm.wps.spa.parser.cache.CachingParser.parse(CachingParser.java:550) at com.ibm.wps.spa.parser.StaticPageURIParserImpl.parse(StaticPageURIParserImpl.java:137) at com.ibm.wps.spa.parser.StaticPageURIParserImpl.parse(StaticPageURIParserImpl.java:171) at com.ibm.wps.spa.renderer.PortalStaticPageRendererImpl.render(PortalStaticPageRendererImpl.java:262) at com.ibm.wps.spa.renderer.PortalStaticPageRendererImpl.render(PortalStaticPageRendererImpl.java:200) at com.ibm.wps.engine.templates.screens.SPAScreenTemplate.render(SPAScreenTemplate.java:152) at com.ibm.wps.engine.templates.screens.SPAScreenTemplate.render(SPAScreenTemplate.java:119) at com.ibm.wps.engine.templates.screens.SPAScreenTemplate.render(SPAScreenTemplate.java:170) at com.ibm.wps.engine.templates.ScreenTemplate.render(ScreenTemplate.java:59) at com.ibm.wps.resolver.model.layout.LayoutTemplateDataSource.write(LayoutTemplateDataSource.java:294) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:90) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:55) at java.lang.reflect.Method.invoke(Method.java:508) at com.ibm.wps.util.ContextWrapper$Handler.invoke(ContextWrapper.java:184) at com.sun.proxy.$Proxy376.write(Unknown Source) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:90) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:55) at java.lang.reflect.Method.invoke(Method.java:508) at com.ibm.wps.util.ContextWrapper$Handler.invoke(ContextWrapper.java:184) at com.sun.proxy.$Proxy377.write(Unknown Source) at com.ibm.wps.spa.renderer.theme.DynamicContentThemeContentHandler.endDynamicContentSpot(DynamicContentThemeContentHandler.java:350) at com.ibm.wps.spa.parser.theme.RecordingThemeContentHandler.parse(RecordingThemeContentHandler.java:119) at com.ibm.wps.spa.parser.theme.CachingThemeURIParserImpl.parse(CachingThemeURIParserImpl.java:178) at com.ibm.wps.spa.data.locale.LocalizedContextDataSourceParserImpl.parse(LocalizedContextDataSourceParserImpl.java:286) at com.ibm.wps.spa.data.locale.LocalizedContextDataSource.write(LocalizedContextDataSource.java:178) at com.ibm.wps.spa.data.theme.DynamicContentThemeDataSource.write(DynamicContentThemeDataSource.java:186) at com.ibm.wps.resolver.tags.DataSourceTag.doEndTag(DataSourceTag.java:256) at com.ibm._jsp._Default._jspx_meth_r_dataSource_0(_Default.java:946) at com.ibm._jsp._Default._jspx_meth_c_when_0(_Default.java:972) at com.ibm._jsp._Default._jspService(_Default.java:192) at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:99) at javax.servlet.http.HttpServlet.service(HttpServlet.java:790) at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1235) at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:779) at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478) at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java:179) at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:122) at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionServletWrapper.handleRequest(AbstractJSPExtensionServletWrapper.java:220) at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1134) at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:1408) at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.include(WebAppRequestDispatcher.java:553) at com.ibm.wps.services.dispatcher.DispatcherServiceImpl.handleRequest(DispatcherServiceImpl.java:93) at com.ibm.wps.services.dispatcher.DispatcherServiceImpl.include(DispatcherServiceImpl.java:53) at com.ibm.wps.services.dispatcher.Dispatcher.include(Dispatcher.java:50) at com.ibm.wps.engine.templates.themes.Default.doDispatch(Default.java:79) at com.ibm.wps.engine.templates.themes.Default.render(Default.java:272) at com.ibm.wps.engine.templates.ThemeTemplate.render(ThemeTemplate.java:124) at com.ibm.wps.engine.phases.WPRenderPhase.processRendering(WPRenderPhase.java:543) at com.ibm.wps.engine.phases.WPBaseRenderPhase.execute(WPBaseRenderPhase.java:249) at com.ibm.wps.state.phases.AbstractRenderPhase.next(AbstractRenderPhase.java:106) at com.ibm.wps.engine.phases.WPAbstractRenderPhase.next(WPAbstractRenderPhase.java:100) at com.ibm.wps.engine.Servlet.callPortal(Servlet.java:277) at com.ibm.wps.engine.Servlet.doGet(Servlet.java:579) at javax.servlet.http.HttpServlet.service(HttpServlet.java:687) at com.ibm.wps.engine.Servlet.doFilter(Servlet.java:359) at com.ibm.wps.resolver.servlet.ContentHandlerCleanup.doFilter(ContentHandlerCleanup.java:780) at com.ibm.wps.resolver.servlet.AbstractFilter.doFilter(AbstractFilter.java:103) at com.ibm.wps.engine.Servlet.service(Servlet.java:1279) at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1235) at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:779) at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478) at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java:179) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.invokeTarget(WebAppFilterChain.java:143) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:96) at com.hcl.csp.CSPFilter.doFilter(CSPFilter.java:230) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.engine.ExtensionFilter$ExtendedFilterChain.doFilter(ExtensionFilter.java:110) at com.ibm.wps.engine.ExtensionFilter.doFilter(ExtensionFilter.java:197) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.engine.SupportedLocalesFilter.doFilter(SupportedLocalesFilter.java:112) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.engine.ExtendedLocaleFilter.doFilter(ExtendedLocaleFilter.java:132) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.resolver.friendly.servlet.FriendlySelectionFilter.doFilter(FriendlySelectionFilter.java:191) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.project.filter.ProjectIdFilter.doFilterWithoutProjectID(ProjectIdFilter.java:407) at com.ibm.wps.project.filter.ProjectIdFilter.doFilter(ProjectIdFilter.java:321) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.services.preview.PreviewFilterImpl.doFilter(PreviewFilterImpl.java:356) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.mappingurl.impl.URLAnalyzer.doFilter(URLAnalyzer.java:442) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.engine.VirtualPortalFilter.doFilter(VirtualPortalFilter.java:89) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.hcl.friendlylocale.FriendlyLocaleFilter.doFilter(FriendlyLocaleFilter.java:149) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.resolver.servlet.ContentHandlerGzip.internalDoFilter(ContentHandlerGzip.java:758) at com.ibm.wps.resolver.servlet.ContentHandlerGzip.doFilter(ContentHandlerGzip.java:496) at com.ibm.wps.resolver.servlet.AbstractFilter.doFilter(AbstractFilter.java:103) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.state.filter.StateCleanup.doFilter(StateCleanup.java:103) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.wps.devicesupport.WorklightFilter.doFilter(WorklightFilter.java:162) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197) at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90) at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:979) at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1119) at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:4219) at com.ibm.ws.webcontainer.webapp.WebAppImpl.handleRequest(WebAppImpl.java:2210) at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:304) at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1030) at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1817) at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:382) at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465) at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.java:532) at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java:318) at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:289) at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214) at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113) at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:175) at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217) at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161) at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138) at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204) at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775) at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905) at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1909) Caused by: javax.portlet.PortletException: java.lang.NullPointerException ... 218 more Caused by: java.lang.NullPointerException at org.primefaces.config.PrimeConfiguration.<init>(PrimeConfiguration.java:155) at org.primefaces.context.PrimeApplicationContext.<init>(PrimeApplicationContext.java:88) at org.primefaces.context.PrimeApplicationContext.getCurrentInstance(PrimeApplicationContext.java:221) at org.primefaces.context.PrimeApplicationContext.getCurrentInstance(PrimeApplicationContext.java:209) at org.primefaces.context.PrimeRequestContext.getApplicationContext(PrimeRequestContext.java:199) at org.primefaces.context.PrimeFacesContext.<init>(PrimeFacesContext.java:60) at org.primefaces.context.PrimeFacesContextFactory.getFacesContext(PrimeFacesContextFactory.java:59) at com.ibm.faces20.portlet.FacesPortlet.getFacesContext(FacesPortlet.java:788) at com.ibm.faces20.portlet.FacesPortlet.doRender(FacesPortlet.java:498) at com.ibm.faces20.portlet.FacesPortlet.doView(FacesPortlet.java:388) at com.ibm.faces20.portlet.FacesPortlet.doDispatch(FacesPortlet.java:368) at javax.portlet.GenericPortlet.render(GenericPortlet.java:251) at com.ibm.ws.portletcontainer.invoker.impl.PortletFilterChainImpl.doFilter(PortletFilterChainImpl.java:128) at com.ibm.wps.engine.el.init.AttributeCopyFilter.doFilter(AttributeCopyFilter.java:158) at com.ibm.ws.portletcontainer.invoker.impl.PortletFilterChainImpl.doFilter(PortletFilterChainImpl.java:120) at com.ibm.wps.resourceaggregator.capabilities.filter.PortletCapabilityDependencyFilter.doFilter(PortletCapabilityDependencyFilter.java:398) at com.ibm.ws.portletcontainer.invoker.impl.PortletFilterChainImpl.doFilter(PortletFilterChainImpl.java:120) at com.ibm.wps.resolver.iwidget.filter.IWidgetPortletFilter.doFilter(IWidgetPortletFilter.java:60) at com.ibm.ws.portletcontainer.invoker.impl.PortletFilterChainImpl.doFilter(PortletFilterChainImpl.java:120) at com.ibm.wps.propertybroker.standard.filter.C2APortletFilter.doFilter(C2APortletFilter.java:193) at com.ibm.ws.portletcontainer.invoker.impl.PortletFilterChainImpl.doFilter(PortletFilterChainImpl.java:120) at com.ibm.wps.pe.pc.waspc.plm.GlobalPortletLoadMonitoringFilter.doFilter(GlobalPortletLoadMonitoringFilter.java:146) at com.ibm.ws.portletcontainer.invoker.impl.PortletFilterChainImpl.doFilter(PortletFilterChainImpl.java:120) at com.ibm.wps.pe.pc.waspc.filter.impl.GlobalPortletFilter.doFilter(GlobalPortletFilter.java:154) at com.ibm.ws.portletcontainer.invoker.impl.PortletFilterChainImpl.doFilter(PortletFilterChainImpl.java:120) at com.ibm.wps.pcm.scoping.filter.PCMScopingFilter.doFilter(PCMScopingFilter.java:92) at com.ibm.ws.portletcontainer.invoker.impl.PortletFilterChainImpl.doFilter(PortletFilterChainImpl.java:120) at com.ibm.ws.portletcontainer.invoker.impl.PortletServlet.doDispatch(PortletServlet.java:573) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:114) at com.ibm.isclite.container.collaborator.PortletServletCollaborator.doRender(PortletServletCollaborator.java:71) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:105) at com.ibm.ws.portletcontainer.rrd.RRDServerPortletServletCollaborator.doRender(RRDServerPortletServletCollaborator.java:123) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:105) at com.ibm.ws.portletcontainer.cache.CacheCollaborator.doRender(CacheCollaborator.java:92) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:105) at com.ibm.wps.pe.pc.waspc.core.impl.PortletServletCollaboratorImpl.doRender(PortletServletCollaboratorImpl.java:168) at com.ibm.ws.portletcontainer.invoker.impl.PortletServletCollaboratorChainImpl.doCollaborator(PortletServletCollaboratorChainImpl.java:105) at com.ibm.ws.portletcontainer.invoker.impl.PortletServlet.doDispatch(PortletServlet.java:273) ... 217 more` I've already tried to get a solution on [SO](https://stackoverflow.com/questions/70122015/portlet-error-when-upgrading-primefaces-8-to-primefaces-10), also tried it with PF 11.0.0-RC2, but with no luck.
defect
primeconfiguration npe when using on hcl digital experience describe the defect using primefaces a simple portlet on hcl digital experience stops working environment primefaces myfaces hcl digital experience on websphere application server to reproduce using pf or portlet deployed on hcl digital experience worked without any problem when i changed primefaces version from to a simple portlet stopped working i get servletexception caused by npe in primeconfiguration class stack trace servletwrappe e com ibm ws webcontainer servlet servletwrapper service uncaught service exception root cause javax servlet servletexception javax portlet portletexception java lang nullpointerexception at com ibm ws portletcontainer invoker impl portletservlet dodispatch portletservlet java at com ibm ws portletcontainer invoker impl portletservletcollaboratorchainimpl docollaborator portletservletcollaboratorchainimpl java at com ibm isclite container collaborator portletservletcollaborator dodispatch portletservletcollaborator java at com ibm ws portletcontainer invoker impl portletservletcollaboratorchainimpl docollaborator portletservletcollaboratorchainimpl java at com ibm ws portletcontainer rrd rrdserverportletservletcollaborator dodispatch rrdserverportletservletcollaborator java at com ibm ws portletcontainer invoker impl portletservletcollaboratorchainimpl docollaborator portletservletcollaboratorchainimpl java at com ibm ws portletcontainer cache cachecollaborator dodispatch cachecollaborator java at com ibm ws portletcontainer invoker impl portletservletcollaboratorchainimpl docollaborator portletservletcollaboratorchainimpl java at com ibm wps pe pc waspc core impl portletservletcollaboratorimpl dodispatch portletservletcollaboratorimpl java at com ibm ws portletcontainer invoker impl portletservletcollaboratorchainimpl docollaborator portletservletcollaboratorchainimpl java at com ibm ws portletcontainer invoker impl portletservlet dispatch portletservlet java at com ibm ws portletcontainer invoker impl portletservlet service portletservlet java at javax servlet http httpservlet service httpservlet java at com ibm ws webcontainer servlet servletwrapper service servletwrapper java at com ibm ws webcontainer servlet servletwrapper handlerequest servletwrapper java at com ibm ws webcontainer servlet servletwrapper handlerequest servletwrapper java at com ibm ws webcontainer servlet servletwrapperimpl handlerequest servletwrapperimpl java at com ibm wsspi webcontainer servlet genericservletwrapper handlerequest genericservletwrapper java at com ibm ws webcontainer filter webappfilterchain invoketarget webappfilterchain java at com ibm ws webcontainer filter webappfilterchain dofilter webappfilterchain java at com ibm ws webcontainer filter webappfiltermanager dofilter webappfiltermanager java at com ibm ws webcontainer filter webappfiltermanager invokefilters webappfiltermanager java at com ibm ws webcontainer webapp webapprequestdispatcher dispatch webapprequestdispatcher java at com ibm ws webcontainer webapp webapprequestdispatcher include webapprequestdispatcher java at com ibm ws portletcontainer invoker impl portletinvokerimpl invoke portletinvokerimpl java at com ibm ws portletcontainer invoker impl portletinvokercollaboratorchainimpl docollaborator portletinvokercollaboratorchainimpl java at com ibm ws portletcontainer cache portletinvokercachecollaborator dorender portletinvokercachecollaborator java at com ibm ws portletcontainer invoker impl portletinvokercollaboratorchainimpl docollaborator portletinvokercollaboratorchainimpl java at com ibm ws portletcontainer ext portletinvokerperformancecollaborator invoke portletinvokerperformancecollaborator java at com ibm ws portletcontainer ext portletinvokerperformancecollaborator doinvoke portletinvokerperformancecollaborator java at com ibm ws portletcontainer ext portletinvokerperformancecollaborator invokepmi portletinvokerperformancecollaborator java at com ibm ws portletcontainer ext portletinvokerperformancecollaborator doinvoke portletinvokerperformancecollaborator java at com ibm ws portletcontainer ext portletinvokerperformancecollaborator dorender portletinvokerperformancecollaborator java at com ibm ws portletcontainer invoker impl portletinvokercollaboratorchainimpl docollaborator portletinvokercollaboratorchainimpl java at com ibm ws portletcontainer invoker impl portletinvokerimpl render portletinvokerimpl java at com ibm ws portletcontainer portletcontainerimpl dorender portletcontainerimpl java at com ibm ws portletcontainer portletcontainerinvokercollaboratorchainimpl docollaborator portletcontainerinvokercollaboratorchainimpl java at com ibm ws portletcontainer ext extcollaborator dorender extcollaborator java at com ibm ws portletcontainer portletcontainerinvokercollaboratorchainimpl docollaborator portletcontainerinvokercollaboratorchainimpl java at com ibm ws portletcontainer cache cacheinvokercollaborator dorender cacheinvokercollaborator java at com ibm ws portletcontainer portletcontainerinvokercollaboratorchainimpl docollaborator portletcontainerinvokercollaboratorchainimpl java at com ibm wps resolver iwidget filter iwidgetpcinvokercollaborator dorender iwidgetpcinvokercollaborator java at com ibm ws portletcontainer portletcontainerinvokercollaboratorchainimpl docollaborator portletcontainerinvokercollaboratorchainimpl java at com ibm ws portletcontainer portletcontainerimpl renderportlet portletcontainerimpl java at com ibm ws portletcontainer pcinvoker portletinvokerimpl run portletinvokerimpl java at java security accesscontroller doprivileged accesscontroller java at com ibm ws portletcontainer pcinvoker portletinvokerimpl invokerender portletinvokerimpl java at com ibm wps pe pc waspc core impl portletinvokerimpl invoke portletinvokerimpl java at com ibm wps pe pc waspc core impl portletinvokerimpl invoke portletinvokerimpl java at com ibm wps pe pc waspc core impl portletinvokerimpl invokerender portletinvokerimpl java at com ibm wps pe pc waspc portletcontainerimpl renderportlet portletcontainerimpl java at com ibm wps pe pc waspc portletcontainerimpl renderportlet portletcontainerimpl java at com ibm wps pe pc portletcontainerimpl dorenderportlet portletcontainerimpl java at com ibm wps pe ext render abstractrendermanager performservice abstractrendermanager java at com ibm wps pe pc portletcontainerimpl renderportlet portletcontainerimpl java at com ibm wps resolver model layout layoutcontroldatasource renderportlet layoutcontroldatasource java at com ibm wps resolver model layout layoutcontroldatasource renderlayoutcontrol layoutcontroldatasource java at com ibm wps resolver model layout layoutcontroldatasource write layoutcontroldatasource java at sun reflect nativemethodaccessorimpl native method at sun reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at com ibm wps util contextwrapper handler invoke contextwrapper java at com sun proxy write unknown source at com ibm wps spa renderer skin dynamiccontentskincontenthandler enddynamiccontentspot dynamiccontentskincontenthandler java at com ibm wps spa parser skin recordingskincontenthandler parse recordingskincontenthandler java at com ibm wps spa parser skin cachingskinuriparserimpl parse cachingskinuriparserimpl java at com ibm wps spa data locale localizedcontextdatasourceparserimpl parse localizedcontextdatasourceparserimpl java at com ibm wps spa data locale localizedcontextdatasource write localizedcontextdatasource java at com ibm wps spa data skin dynamiccontentskindatasource write dynamiccontentskindatasource java at com ibm wps engine templates skins spaskintemplate render spaskintemplate java at com ibm wps engine templates skintemplate render skintemplate java at com ibm wps model layout rendering defaultportallayoutnoderenderfilter layoutnoderender defaultportallayoutnoderenderfilter java at com ibm wps model layout rendering defaultportallayoutnoderenderfilter controlrender defaultportallayoutnoderenderfilter java at com ibm wps model layout rendering defaultportallayoutnoderenderfilter componentrender defaultportallayoutnoderenderfilter java at com ibm wps model layout rendering defaultportallayoutnoderenderfilter dofilter defaultportallayoutnoderenderfilter java at com ibm wps model layout rendering layoutrenderfilterchain dofilter layoutrenderfilterchain java at com ibm wps model layout rendering layoutmodelrenderserviceimpl render layoutmodelrenderserviceimpl java at com ibm wps spa renderer defaultpagerendererimpl renderlayoutcontrolwithskin defaultpagerendererimpl java at com ibm wps spa renderer defaultpagerendererimpl renderlayoutcontrol defaultpagerendererimpl java at com ibm wps spa renderer defaultpagerendererimpl renderlayoutcontainer defaultpagerendererimpl java at com ibm wps spa renderer staticpagerendererimpl startportletcontainer staticpagerendererimpl java at com ibm portal spa parser helper abstractstaticpagecontenthandler startportletcontainer abstractstaticpagecontenthandler java at com ibm wps spa parser cache cachevalueimpl playbackhandler playstartportletcontainer cachevalueimpl java at com ibm wps spa parser cache cachevalueimpl playbackhandler parse cachevalueimpl java at com ibm wps spa parser cache cachevalueimpl playbackhandler parse cachevalueimpl java at com ibm wps spa parser cache cachevalueimpl parse cachevalueimpl java at com ibm wps spa parser cache cachingparser parse cachingparser java at com ibm wps spa parser staticpageuriparserimpl parse staticpageuriparserimpl java at com ibm wps spa parser staticpageuriparserimpl parse staticpageuriparserimpl java at com ibm wps spa renderer portalstaticpagerendererimpl render portalstaticpagerendererimpl java at com ibm wps spa renderer portalstaticpagerendererimpl render portalstaticpagerendererimpl java at com ibm wps engine templates screens spascreentemplate render spascreentemplate java at com ibm wps engine templates screens spascreentemplate render spascreentemplate java at com ibm wps engine templates screens spascreentemplate render spascreentemplate java at com ibm wps engine templates screentemplate render screentemplate java at com ibm wps resolver model layout layouttemplatedatasource write layouttemplatedatasource java at sun reflect nativemethodaccessorimpl native method at sun reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at com ibm wps util contextwrapper handler invoke contextwrapper java at com sun proxy write unknown source at sun reflect nativemethodaccessorimpl native method at sun reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at com ibm wps util contextwrapper handler invoke contextwrapper java at com sun proxy write unknown source at com ibm wps spa renderer theme dynamiccontentthemecontenthandler enddynamiccontentspot dynamiccontentthemecontenthandler java at com ibm wps spa parser theme recordingthemecontenthandler parse recordingthemecontenthandler java at com ibm wps spa parser theme cachingthemeuriparserimpl parse cachingthemeuriparserimpl java at com ibm wps spa data locale localizedcontextdatasourceparserimpl parse localizedcontextdatasourceparserimpl java at com ibm wps spa data locale localizedcontextdatasource write localizedcontextdatasource java at com ibm wps spa data theme dynamiccontentthemedatasource write dynamiccontentthemedatasource java at com ibm wps resolver tags datasourcetag doendtag datasourcetag java at com ibm jsp default jspx meth r datasource default java at com ibm jsp default jspx meth c when default java at com ibm jsp default jspservice default java at com ibm ws jsp runtime httpjspbase service httpjspbase java at javax servlet http httpservlet service httpservlet java at com ibm ws webcontainer servlet servletwrapper service servletwrapper java at com ibm ws webcontainer servlet servletwrapper handlerequest servletwrapper java at com ibm ws webcontainer servlet servletwrapper handlerequest servletwrapper java at com ibm ws webcontainer servlet servletwrapperimpl handlerequest servletwrapperimpl java at com ibm wsspi webcontainer servlet genericservletwrapper handlerequest genericservletwrapper java at com ibm ws jsp webcontainerext abstractjspextensionservletwrapper handlerequest abstractjspextensionservletwrapper java at com ibm ws webcontainer filter webappfiltermanager invokefilters webappfiltermanager java at com ibm ws webcontainer webapp webapprequestdispatcher dispatch webapprequestdispatcher java at com ibm ws webcontainer webapp webapprequestdispatcher include webapprequestdispatcher java at com ibm wps services dispatcher dispatcherserviceimpl handlerequest dispatcherserviceimpl java at com ibm wps services dispatcher dispatcherserviceimpl include dispatcherserviceimpl java at com ibm wps services dispatcher dispatcher include dispatcher java at com ibm wps engine templates themes default dodispatch default java at com ibm wps engine templates themes default render default java at com ibm wps engine templates themetemplate render themetemplate java at com ibm wps engine phases wprenderphase processrendering wprenderphase java at com ibm wps engine phases wpbaserenderphase execute wpbaserenderphase java at com ibm wps state phases abstractrenderphase next abstractrenderphase java at com ibm wps engine phases wpabstractrenderphase next wpabstractrenderphase java at com ibm wps engine servlet callportal servlet java at com ibm wps engine servlet doget servlet java at javax servlet http httpservlet service httpservlet java at com ibm wps engine servlet dofilter servlet java at com ibm wps resolver servlet contenthandlercleanup dofilter contenthandlercleanup java at com ibm wps resolver servlet abstractfilter dofilter abstractfilter java at com ibm wps engine servlet service servlet java at com ibm ws webcontainer servlet servletwrapper service servletwrapper java at com ibm ws webcontainer servlet servletwrapper handlerequest servletwrapper java at com ibm ws webcontainer servlet servletwrapper handlerequest servletwrapper java at com ibm ws webcontainer servlet servletwrapperimpl handlerequest servletwrapperimpl java at com ibm ws webcontainer filter webappfilterchain invoketarget webappfilterchain java at com ibm ws webcontainer filter webappfilterchain dofilter webappfilterchain java at com hcl csp cspfilter dofilter cspfilter java at com ibm ws webcontainer filter filterinstancewrapper dofilter filterinstancewrapper java at com ibm ws webcontainer filter webappfilterchain dofilter webappfilterchain java at com ibm wps engine extensionfilter extendedfilterchain dofilter extensionfilter java at com ibm wps engine extensionfilter dofilter extensionfilter java at com ibm ws webcontainer filter filterinstancewrapper dofilter filterinstancewrapper java at com ibm ws webcontainer filter webappfilterchain dofilter webappfilterchain java at com ibm wps engine supportedlocalesfilter dofilter supportedlocalesfilter java at com ibm ws webcontainer filter filterinstancewrapper dofilter filterinstancewrapper java at com ibm ws webcontainer filter webappfilterchain dofilter webappfilterchain java at com ibm wps engine extendedlocalefilter dofilter extendedlocalefilter java at com ibm ws webcontainer filter filterinstancewrapper dofilter filterinstancewrapper java at com ibm ws webcontainer filter webappfilterchain dofilter webappfilterchain java at com ibm wps resolver friendly servlet friendlyselectionfilter dofilter friendlyselectionfilter java at com ibm ws webcontainer filter filterinstancewrapper dofilter filterinstancewrapper java at com ibm ws webcontainer filter webappfilterchain dofilter webappfilterchain java at com ibm wps project filter projectidfilter dofilterwithoutprojectid projectidfilter java at com ibm wps project filter projectidfilter dofilter projectidfilter java at com ibm ws webcontainer filter filterinstancewrapper dofilter filterinstancewrapper java at com ibm ws webcontainer filter webappfilterchain dofilter webappfilterchain java at com ibm wps services preview previewfilterimpl dofilter previewfilterimpl java at com ibm ws webcontainer filter filterinstancewrapper dofilter filterinstancewrapper java at com ibm ws webcontainer filter webappfilterchain dofilter webappfilterchain java at com ibm wps mappingurl impl urlanalyzer dofilter urlanalyzer java at com ibm ws webcontainer filter filterinstancewrapper dofilter filterinstancewrapper java at com ibm ws webcontainer filter webappfilterchain dofilter webappfilterchain java at com ibm wps engine virtualportalfilter dofilter virtualportalfilter java at com ibm ws webcontainer filter filterinstancewrapper dofilter filterinstancewrapper java at com ibm ws webcontainer filter webappfilterchain dofilter webappfilterchain java at com hcl friendlylocale friendlylocalefilter dofilter friendlylocalefilter java at com ibm ws webcontainer filter filterinstancewrapper dofilter filterinstancewrapper java at com ibm ws webcontainer filter webappfilterchain dofilter webappfilterchain java at com ibm wps resolver servlet contenthandlergzip internaldofilter contenthandlergzip java at com ibm wps resolver servlet contenthandlergzip dofilter contenthandlergzip java at com ibm wps resolver servlet abstractfilter dofilter abstractfilter java at com ibm ws webcontainer filter filterinstancewrapper dofilter filterinstancewrapper java at com ibm ws webcontainer filter webappfilterchain dofilter webappfilterchain java at com ibm wps state filter statecleanup dofilter statecleanup java at com ibm ws webcontainer filter filterinstancewrapper dofilter filterinstancewrapper java at com ibm ws webcontainer filter webappfilterchain dofilter webappfilterchain java at com ibm wps devicesupport worklightfilter dofilter worklightfilter java at com ibm ws webcontainer filter filterinstancewrapper dofilter filterinstancewrapper java at com ibm ws webcontainer filter webappfilterchain dofilter webappfilterchain java at com ibm ws webcontainer filter webappfiltermanager dofilter webappfiltermanager java at com ibm ws webcontainer filter webappfiltermanager invokefilters webappfiltermanager java at com ibm ws webcontainer webapp webapp handlerequest webapp java at com ibm ws webcontainer webapp webappimpl handlerequest webappimpl java at com ibm ws webcontainer webapp webgroup handlerequest webgroup java at com ibm ws webcontainer webcontainer handlerequest webcontainer java at com ibm ws webcontainer wswebcontainer handlerequest wswebcontainer java at com ibm ws webcontainer channel wcchannellink ready wcchannellink java at com ibm ws http channel inbound impl httpinboundlink handlediscrimination httpinboundlink java at com ibm ws http channel inbound impl httpinboundlink handlenewrequest httpinboundlink java at com ibm ws http channel inbound impl httpinboundlink processrequest httpinboundlink java at com ibm ws http channel inbound impl httpinboundlink ready httpinboundlink java at com ibm ws tcp channel impl newconnectioninitialreadcallback sendtodiscriminators newconnectioninitialreadcallback java at com ibm ws tcp channel impl newconnectioninitialreadcallback complete newconnectioninitialreadcallback java at com ibm ws tcp channel impl aioreadcompletionlistener futurecompleted aioreadcompletionlistener java at com ibm io async abstractasyncfuture invokecallback abstractasyncfuture java at com ibm io async asyncchannelfuture firecompletionactions asyncchannelfuture java at com ibm io async asyncfuture completed asyncfuture java at com ibm io async resulthandler complete resulthandler java at com ibm io async resulthandler runeventprocessingloop resulthandler java at com ibm io async resulthandler run resulthandler java at com ibm ws util threadpool worker run threadpool java caused by javax portlet portletexception java lang nullpointerexception more caused by java lang nullpointerexception at org primefaces config primeconfiguration primeconfiguration java at org primefaces context primeapplicationcontext primeapplicationcontext java at org primefaces context primeapplicationcontext getcurrentinstance primeapplicationcontext java at org primefaces context primeapplicationcontext getcurrentinstance primeapplicationcontext java at org primefaces context primerequestcontext getapplicationcontext primerequestcontext java at org primefaces context primefacescontext primefacescontext java at org primefaces context primefacescontextfactory getfacescontext primefacescontextfactory java at com ibm portlet facesportlet getfacescontext facesportlet java at com ibm portlet facesportlet dorender facesportlet java at com ibm portlet facesportlet doview facesportlet java at com ibm portlet facesportlet dodispatch facesportlet java at javax portlet genericportlet render genericportlet java at com ibm ws portletcontainer invoker impl portletfilterchainimpl dofilter portletfilterchainimpl java at com ibm wps engine el init attributecopyfilter dofilter attributecopyfilter java at com ibm ws portletcontainer invoker impl portletfilterchainimpl dofilter portletfilterchainimpl java at com ibm wps resourceaggregator capabilities filter portletcapabilitydependencyfilter dofilter portletcapabilitydependencyfilter java at com ibm ws portletcontainer invoker impl portletfilterchainimpl dofilter portletfilterchainimpl java at com ibm wps resolver iwidget filter iwidgetportletfilter dofilter iwidgetportletfilter java at com ibm ws portletcontainer invoker impl portletfilterchainimpl dofilter portletfilterchainimpl java at com ibm wps propertybroker standard filter dofilter java at com ibm ws portletcontainer invoker impl portletfilterchainimpl dofilter portletfilterchainimpl java at com ibm wps pe pc waspc plm globalportletloadmonitoringfilter dofilter globalportletloadmonitoringfilter java at com ibm ws portletcontainer invoker impl portletfilterchainimpl dofilter portletfilterchainimpl java at com ibm wps pe pc waspc filter impl globalportletfilter dofilter globalportletfilter java at com ibm ws portletcontainer invoker impl portletfilterchainimpl dofilter portletfilterchainimpl java at com ibm wps pcm scoping filter pcmscopingfilter dofilter pcmscopingfilter java at com ibm ws portletcontainer invoker impl portletfilterchainimpl dofilter portletfilterchainimpl java at com ibm ws portletcontainer invoker impl portletservlet dodispatch portletservlet java at com ibm ws portletcontainer invoker impl portletservletcollaboratorchainimpl docollaborator portletservletcollaboratorchainimpl java at com ibm isclite container collaborator portletservletcollaborator dorender portletservletcollaborator java at com ibm ws portletcontainer invoker impl portletservletcollaboratorchainimpl docollaborator portletservletcollaboratorchainimpl java at com ibm ws portletcontainer rrd rrdserverportletservletcollaborator dorender rrdserverportletservletcollaborator java at com ibm ws portletcontainer invoker impl portletservletcollaboratorchainimpl docollaborator portletservletcollaboratorchainimpl java at com ibm ws portletcontainer cache cachecollaborator dorender cachecollaborator java at com ibm ws portletcontainer invoker impl portletservletcollaboratorchainimpl docollaborator portletservletcollaboratorchainimpl java at com ibm wps pe pc waspc core impl portletservletcollaboratorimpl dorender portletservletcollaboratorimpl java at com ibm ws portletcontainer invoker impl portletservletcollaboratorchainimpl docollaborator portletservletcollaboratorchainimpl java at com ibm ws portletcontainer invoker impl portletservlet dodispatch portletservlet java more i ve already tried to get a solution on also tried it with pf but with no luck
1
8,839
2,612,906,548
IssuesEvent
2015-02-27 17:26:04
chrsmith/windows-package-manager
https://api.github.com/repos/chrsmith/windows-package-manager
closed
npackd interprets environment variable %ProgramFiles% differently on Windows 2008 R2, x64 version of 2008 Server and the x64 version of Windows 2003.
auto-migrated Milestone-1.17 Type-Defect
``` I have an install script that run perfectly on 2008 R2 and Windows 7 x64. What it does it get's a zip file and then copies it's contents to %ProgramFiles%\somefolder using xcopy. <file path=".WPM\Install.bat">copy "%ProgramFiles%\NSClient++\NSC.ini" .\NSC.ini.org for /f "delims=" %%x in ('dir /b NSCPScriptsDRM*') do set name=%%x cd "%name%" xcopy . "%ProgramFiles%\NSClient++" /s /e /Y </file> however on 2008 x64 and 2003 x64 %ProgramFiles% is translated to Program Files (x86) when run by npackd. When i echo %ProgramFiles% in a command line windows on these servers the correct translation happens: namely Program Files. this ofcourse stops the automatic installation, if i run the install script manually it does work properly. ``` Original issue reported on code.google.com by `dj...@djoey.net` on 11 Jun 2012 at 12:46
1.0
npackd interprets environment variable %ProgramFiles% differently on Windows 2008 R2, x64 version of 2008 Server and the x64 version of Windows 2003. - ``` I have an install script that run perfectly on 2008 R2 and Windows 7 x64. What it does it get's a zip file and then copies it's contents to %ProgramFiles%\somefolder using xcopy. <file path=".WPM\Install.bat">copy "%ProgramFiles%\NSClient++\NSC.ini" .\NSC.ini.org for /f "delims=" %%x in ('dir /b NSCPScriptsDRM*') do set name=%%x cd "%name%" xcopy . "%ProgramFiles%\NSClient++" /s /e /Y </file> however on 2008 x64 and 2003 x64 %ProgramFiles% is translated to Program Files (x86) when run by npackd. When i echo %ProgramFiles% in a command line windows on these servers the correct translation happens: namely Program Files. this ofcourse stops the automatic installation, if i run the install script manually it does work properly. ``` Original issue reported on code.google.com by `dj...@djoey.net` on 11 Jun 2012 at 12:46
defect
npackd interprets environment variable programfiles differently on windows version of server and the version of windows i have an install script that run perfectly on and windows what it does it get s a zip file and then copies it s contents to programfiles somefolder using xcopy copy programfiles nsclient nsc ini nsc ini org for f delims x in dir b nscpscriptsdrm do set name x cd name xcopy programfiles nsclient s e y however on and programfiles is translated to program files when run by npackd when i echo programfiles in a command line windows on these servers the correct translation happens namely program files this ofcourse stops the automatic installation if i run the install script manually it does work properly original issue reported on code google com by dj djoey net on jun at
1
37,001
8,198,679,834
IssuesEvent
2018-08-31 17:16:57
google/googletest
https://api.github.com/repos/google/googletest
closed
CMAKE_CXX_FLAGS are duplicated
Priority-Medium Type-Defect auto-migrated
``` I found a problem with the code in internal_utils.cmake when including the CMakeLists for GMock in a larger project that already defines CMAKE_CXX_FLAGS to include flags that are not repeatable. Things crash and burn because calling set_target_properties() to set the flags for a target actually appends them to the existing flags[1] (resulting in duplicates because of the code on line 113). Seems like when you initialize ${cxx_no_exception} you could just remove ${CMAKE_CXX_FLAGS} like you have for ${cxx_exception}. [1]: http://stackoverflow.com/questions/5096881/does-set-target-properties-in-cmake-o verride-cmake-cxx-flags ``` Original issue reported on code.google.com by `j...@kirkconsulting.co.uk` on 18 Oct 2012 at 7:36
1.0
CMAKE_CXX_FLAGS are duplicated - ``` I found a problem with the code in internal_utils.cmake when including the CMakeLists for GMock in a larger project that already defines CMAKE_CXX_FLAGS to include flags that are not repeatable. Things crash and burn because calling set_target_properties() to set the flags for a target actually appends them to the existing flags[1] (resulting in duplicates because of the code on line 113). Seems like when you initialize ${cxx_no_exception} you could just remove ${CMAKE_CXX_FLAGS} like you have for ${cxx_exception}. [1]: http://stackoverflow.com/questions/5096881/does-set-target-properties-in-cmake-o verride-cmake-cxx-flags ``` Original issue reported on code.google.com by `j...@kirkconsulting.co.uk` on 18 Oct 2012 at 7:36
defect
cmake cxx flags are duplicated i found a problem with the code in internal utils cmake when including the cmakelists for gmock in a larger project that already defines cmake cxx flags to include flags that are not repeatable things crash and burn because calling set target properties to set the flags for a target actually appends them to the existing flags resulting in duplicates because of the code on line seems like when you initialize cxx no exception you could just remove cmake cxx flags like you have for cxx exception verride cmake cxx flags original issue reported on code google com by j kirkconsulting co uk on oct at
1
19,765
3,253,984,592
IssuesEvent
2015-10-19 21:30:44
WildBamaBoy/minecraft-comes-alive
https://api.github.com/repos/WildBamaBoy/minecraft-comes-alive
closed
Infinite Diamonds Exploit
1.7.10 1.8 defect
Hire one miner, equip with stone pickaxe and acquire ~10 diamonds within half an hour. Use diamonds / other ores to hire more miners and equip with diamond pickaxes. Pseudo-infinite ores and diamonds with no effort required.
1.0
Infinite Diamonds Exploit - Hire one miner, equip with stone pickaxe and acquire ~10 diamonds within half an hour. Use diamonds / other ores to hire more miners and equip with diamond pickaxes. Pseudo-infinite ores and diamonds with no effort required.
defect
infinite diamonds exploit hire one miner equip with stone pickaxe and acquire diamonds within half an hour use diamonds other ores to hire more miners and equip with diamond pickaxes pseudo infinite ores and diamonds with no effort required
1
15,736
2,869,005,105
IssuesEvent
2015-06-05 22:31:23
dart-lang/sdk
https://api.github.com/repos/dart-lang/sdk
closed
csslib: Is it wrong logic?
Area-Pkg Pkg-Csslib Priority-Unassigned Triaged Type-Defect
https://github.com/dart-lang/csslib/blob/master/lib/src/tokenkind.dart#L486 &nbsp;static bool isPredefinedName(String name) { &nbsp;&nbsp;&nbsp;&nbsp;var nameLen = name.length; &nbsp;&nbsp;&nbsp;&nbsp;// TODO(terry): Add more pre-defined names (hidden, bolder, inherit, etc.). &nbsp;&nbsp;&nbsp;&nbsp;if (matchUnits(name, 0, nameLen) == -1 || &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;matchDirectives(name, 0, nameLen) == -1 || &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;matchMarginDirectives(name, 0, nameLen) == -1 || &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;matchColorName(name) == null) { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return false; &nbsp;&nbsp;&nbsp;&nbsp;} &nbsp;&nbsp;&nbsp;&nbsp;return true; &nbsp;&nbsp;} Is it wrong? I think it should be: &nbsp;&nbsp;if (matchUnits(name, 0, nameLen) == -1 &amp;&amp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;matchDirectives(name, 0, nameLen) == -1 &amp;&amp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;matchMarginDirectives(name, 0, nameLen) == -1 &amp;&amp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;matchColorName(name) == null) {
1.0
csslib: Is it wrong logic? - https://github.com/dart-lang/csslib/blob/master/lib/src/tokenkind.dart#L486 &nbsp;static bool isPredefinedName(String name) { &nbsp;&nbsp;&nbsp;&nbsp;var nameLen = name.length; &nbsp;&nbsp;&nbsp;&nbsp;// TODO(terry): Add more pre-defined names (hidden, bolder, inherit, etc.). &nbsp;&nbsp;&nbsp;&nbsp;if (matchUnits(name, 0, nameLen) == -1 || &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;matchDirectives(name, 0, nameLen) == -1 || &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;matchMarginDirectives(name, 0, nameLen) == -1 || &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;matchColorName(name) == null) { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return false; &nbsp;&nbsp;&nbsp;&nbsp;} &nbsp;&nbsp;&nbsp;&nbsp;return true; &nbsp;&nbsp;} Is it wrong? I think it should be: &nbsp;&nbsp;if (matchUnits(name, 0, nameLen) == -1 &amp;&amp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;matchDirectives(name, 0, nameLen) == -1 &amp;&amp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;matchMarginDirectives(name, 0, nameLen) == -1 &amp;&amp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;matchColorName(name) == null) {
defect
csslib is it wrong logic nbsp static bool ispredefinedname string name nbsp nbsp nbsp nbsp var namelen name length nbsp nbsp nbsp nbsp todo terry add more pre defined names hidden bolder inherit etc nbsp nbsp nbsp nbsp if matchunits name namelen nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp matchdirectives name namelen nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp matchmargindirectives name namelen nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp matchcolorname name null nbsp nbsp nbsp nbsp nbsp nbsp return false nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp return true nbsp nbsp is it wrong i think it should be nbsp nbsp if matchunits name namelen amp amp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp matchdirectives name namelen amp amp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp matchmargindirectives name namelen amp amp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp matchcolorname name null
1
269
2,522,972,673
IssuesEvent
2015-01-20 04:51:44
AtlasOfLivingAustralia/sightings
https://api.github.com/repos/AtlasOfLivingAustralia/sightings
opened
Biocache sighting show wrong 'data added'
priority-medium status-new type-defect
_From @nickdos on August 19, 2014 12:44_ *migrated from:* https://code.google.com/p/ala/issues/detail?id=551 *date:* Thu Jan 30 15:00:08 2014 *author:* nickdos --- Issue reported by user (gidajan@gmail.com): Dear Support Under the observation date there is 'date added'. As soon as I have added an observation it says 'Added 11 hours ago'. This does not seem to make sense. Can you explain please? Regards Janet Russell The 11 hours looks suspiciously like a GMT zone vs local time zone. Most likely this needs to be fixed in the hubs-webapp as the webapp can supply the locale timezone. _Copied from original issue: AtlasOfLivingAustralia/biocache-hubs#57_
1.0
Biocache sighting show wrong 'data added' - _From @nickdos on August 19, 2014 12:44_ *migrated from:* https://code.google.com/p/ala/issues/detail?id=551 *date:* Thu Jan 30 15:00:08 2014 *author:* nickdos --- Issue reported by user (gidajan@gmail.com): Dear Support Under the observation date there is 'date added'. As soon as I have added an observation it says 'Added 11 hours ago'. This does not seem to make sense. Can you explain please? Regards Janet Russell The 11 hours looks suspiciously like a GMT zone vs local time zone. Most likely this needs to be fixed in the hubs-webapp as the webapp can supply the locale timezone. _Copied from original issue: AtlasOfLivingAustralia/biocache-hubs#57_
defect
biocache sighting show wrong data added from nickdos on august migrated from date thu jan author nickdos issue reported by user gidajan gmail com dear support under the observation date there is date added as soon as i have added an observation it says added hours ago this does not seem to make sense can you explain please regards janet russell the hours looks suspiciously like a gmt zone vs local time zone most likely this needs to be fixed in the hubs webapp as the webapp can supply the locale timezone copied from original issue atlasoflivingaustralia biocache hubs
1
369,183
10,889,408,478
IssuesEvent
2019-11-18 18:10:47
bounswe/bounswe2019group5
https://api.github.com/repos/bounswe/bounswe2019group5
closed
Exercise Activity connection of Search Activity & Search Results
Android Priority: Medium Status: In Progress
When a user clicks one of the search results, s/he shall see the corresponding Exercise, and should be able to submit and get his/her results. This issue needs some changes in Exercise Activity / Exercise Results Activity / Question.java files because of the integration and also some changes in the backend side.
1.0
Exercise Activity connection of Search Activity & Search Results - When a user clicks one of the search results, s/he shall see the corresponding Exercise, and should be able to submit and get his/her results. This issue needs some changes in Exercise Activity / Exercise Results Activity / Question.java files because of the integration and also some changes in the backend side.
non_defect
exercise activity connection of search activity search results when a user clicks one of the search results s he shall see the corresponding exercise and should be able to submit and get his her results this issue needs some changes in exercise activity exercise results activity question java files because of the integration and also some changes in the backend side
0
293,961
22,103,230,090
IssuesEvent
2022-06-01 15:07:28
ClickHouse/ClickHouse
https://api.github.com/repos/ClickHouse/ClickHouse
opened
Default value of max_threads
comp-documentation
**Describe the issue** In clickhouse it is mentioned, max_threads default value is equal to number of physical cores which is actually by 2 of available number of cpu cores. Reference :https://clickhouse.com/docs/en/operations/settings/settings/#settings-max_threads **Additional context** The code relevant to the ^ context: https://github.com/ClickHouse/ClickHouse/blob/master/src/Common/getNumberOfPhysicalCPUCores.cpp#L51
1.0
Default value of max_threads - **Describe the issue** In clickhouse it is mentioned, max_threads default value is equal to number of physical cores which is actually by 2 of available number of cpu cores. Reference :https://clickhouse.com/docs/en/operations/settings/settings/#settings-max_threads **Additional context** The code relevant to the ^ context: https://github.com/ClickHouse/ClickHouse/blob/master/src/Common/getNumberOfPhysicalCPUCores.cpp#L51
non_defect
default value of max threads describe the issue in clickhouse it is mentioned max threads default value is equal to number of physical cores which is actually by of available number of cpu cores reference additional context the code relevant to the context
0
698
2,700,664,335
IssuesEvent
2015-04-04 12:28:14
mozilla/pdf.js
https://api.github.com/repos/mozilla/pdf.js
closed
PDF with large image shows blank page if zoomed out
1-core 2-performance
http://www.vattenfall.de/de/file/vwh-netzkarte-hamburg_26486980.pdf The file contains one big image (12737 x 5653 Pixels). PDF.js shows a blank page if zoom level is 48% or below (always). Additionally, an error is thrown if zoom level is above ~150% (zoom level varies). ``` [17:33:59.347] "PDF 51b89b7165654f52aaa5d6b9cea4bb8 \[1.6 Adobe Acrobat 9.5.3 Image Conversion Plug-in / Adobe Acrobat 9.5.3\] (PDF.js: 0.8.713)" [17:34:08.692] Image corrupt or truncated: blob:554ca0ff-5801-459e-8586-ea0a9e01d2a5 @ blob:554ca0ff-5801-459e-8586-ea0a9e01d2a5 [17:34:09.693] "Warning: Unhandled rejection: [Exception... "Component is not available" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://pdf.js/build/pdf.js :: CanvasGraphics_paintJpegXObject :: line 6842" data: no]" ``` Win64, FF25.0.1, PDF.js 0.8.713, HWA on or off
True
PDF with large image shows blank page if zoomed out - http://www.vattenfall.de/de/file/vwh-netzkarte-hamburg_26486980.pdf The file contains one big image (12737 x 5653 Pixels). PDF.js shows a blank page if zoom level is 48% or below (always). Additionally, an error is thrown if zoom level is above ~150% (zoom level varies). ``` [17:33:59.347] "PDF 51b89b7165654f52aaa5d6b9cea4bb8 \[1.6 Adobe Acrobat 9.5.3 Image Conversion Plug-in / Adobe Acrobat 9.5.3\] (PDF.js: 0.8.713)" [17:34:08.692] Image corrupt or truncated: blob:554ca0ff-5801-459e-8586-ea0a9e01d2a5 @ blob:554ca0ff-5801-459e-8586-ea0a9e01d2a5 [17:34:09.693] "Warning: Unhandled rejection: [Exception... "Component is not available" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://pdf.js/build/pdf.js :: CanvasGraphics_paintJpegXObject :: line 6842" data: no]" ``` Win64, FF25.0.1, PDF.js 0.8.713, HWA on or off
non_defect
pdf with large image shows blank page if zoomed out the file contains one big image x pixels pdf js shows a blank page if zoom level is or below always additionally an error is thrown if zoom level is above zoom level varies pdf pdf js image corrupt or truncated blob blob warning unhandled rejection pdf js hwa on or off
0
149,548
19,581,052,572
IssuesEvent
2022-01-04 21:22:53
Tim-sandbox/ngtest
https://api.github.com/repos/Tim-sandbox/ngtest
opened
CVE-2017-15010 (High) detected in tough-cookie-2.2.2.tgz, tough-cookie-2.3.1.tgz
security vulnerability
## CVE-2017-15010 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>tough-cookie-2.2.2.tgz</b>, <b>tough-cookie-2.3.1.tgz</b></p></summary> <p> <details><summary><b>tough-cookie-2.2.2.tgz</b></p></summary> <p>RFC6265 Cookies and Cookie Jar for node.js</p> <p>Library home page: <a href="https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.2.tgz">https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.2.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/grunt-retire/node_modules/tough-cookie/package.json</p> <p> Dependency Hierarchy: - grunt-retire-0.3.12.tgz (Root Library) - request-2.67.0.tgz - :x: **tough-cookie-2.2.2.tgz** (Vulnerable Library) </details> <details><summary><b>tough-cookie-2.3.1.tgz</b></p></summary> <p>RFC6265 Cookies and Cookie Jar for node.js</p> <p>Library home page: <a href="https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.1.tgz">https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.1.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/npm/node_modules/request/node_modules/tough-cookie/package.json</p> <p> Dependency Hierarchy: - grunt-npm-install-0.3.1.tgz (Root Library) - npm-3.10.10.tgz - request-2.75.0.tgz - :x: **tough-cookie-2.3.1.tgz** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/Tim-sandbox/ngtest/commit/3d9cf3172608713f73f3f479f2229bd9ff9fffa6">3d9cf3172608713f73f3f479f2229bd9ff9fffa6</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> A ReDoS (regular expression denial of service) flaw was found in the tough-cookie module before 2.3.3 for Node.js. An attacker that is able to make an HTTP request using a specially crafted cookie may cause the application to consume an excessive amount of CPU. <p>Publish Date: 2017-10-04 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-15010>CVE-2017-15010</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://nvd.nist.gov/vuln/detail/CVE-2017-15010">https://nvd.nist.gov/vuln/detail/CVE-2017-15010</a></p> <p>Release Date: 2017-10-04</p> <p>Fix Resolution (tough-cookie): 2.3.3</p> <p>Direct dependency fix Resolution (grunt-retire): 1.0.7</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"grunt-retire","packageVersion":"0.3.12","packageFilePaths":["/package.json"],"isTransitiveDependency":false,"dependencyTree":"grunt-retire:0.3.12","isMinimumFixVersionAvailable":true,"minimumFixVersion":"1.0.7","isBinary":false},{"packageType":"javascript/Node.js","packageName":"tough-cookie","packageVersion":"2.3.1","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"grunt-npm-install:0.3.1;npm:3.10.10;request:2.75.0;tough-cookie:2.3.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.3.3","isBinary":false}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2017-15010","vulnerabilityDetails":"A ReDoS (regular expression denial of service) flaw was found in the tough-cookie module before 2.3.3 for Node.js. An attacker that is able to make an HTTP request using a specially crafted cookie may cause the application to consume an excessive amount of CPU.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-15010","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
True
CVE-2017-15010 (High) detected in tough-cookie-2.2.2.tgz, tough-cookie-2.3.1.tgz - ## CVE-2017-15010 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>tough-cookie-2.2.2.tgz</b>, <b>tough-cookie-2.3.1.tgz</b></p></summary> <p> <details><summary><b>tough-cookie-2.2.2.tgz</b></p></summary> <p>RFC6265 Cookies and Cookie Jar for node.js</p> <p>Library home page: <a href="https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.2.tgz">https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.2.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/grunt-retire/node_modules/tough-cookie/package.json</p> <p> Dependency Hierarchy: - grunt-retire-0.3.12.tgz (Root Library) - request-2.67.0.tgz - :x: **tough-cookie-2.2.2.tgz** (Vulnerable Library) </details> <details><summary><b>tough-cookie-2.3.1.tgz</b></p></summary> <p>RFC6265 Cookies and Cookie Jar for node.js</p> <p>Library home page: <a href="https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.1.tgz">https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.1.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/npm/node_modules/request/node_modules/tough-cookie/package.json</p> <p> Dependency Hierarchy: - grunt-npm-install-0.3.1.tgz (Root Library) - npm-3.10.10.tgz - request-2.75.0.tgz - :x: **tough-cookie-2.3.1.tgz** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/Tim-sandbox/ngtest/commit/3d9cf3172608713f73f3f479f2229bd9ff9fffa6">3d9cf3172608713f73f3f479f2229bd9ff9fffa6</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> A ReDoS (regular expression denial of service) flaw was found in the tough-cookie module before 2.3.3 for Node.js. An attacker that is able to make an HTTP request using a specially crafted cookie may cause the application to consume an excessive amount of CPU. <p>Publish Date: 2017-10-04 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-15010>CVE-2017-15010</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://nvd.nist.gov/vuln/detail/CVE-2017-15010">https://nvd.nist.gov/vuln/detail/CVE-2017-15010</a></p> <p>Release Date: 2017-10-04</p> <p>Fix Resolution (tough-cookie): 2.3.3</p> <p>Direct dependency fix Resolution (grunt-retire): 1.0.7</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"grunt-retire","packageVersion":"0.3.12","packageFilePaths":["/package.json"],"isTransitiveDependency":false,"dependencyTree":"grunt-retire:0.3.12","isMinimumFixVersionAvailable":true,"minimumFixVersion":"1.0.7","isBinary":false},{"packageType":"javascript/Node.js","packageName":"tough-cookie","packageVersion":"2.3.1","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"grunt-npm-install:0.3.1;npm:3.10.10;request:2.75.0;tough-cookie:2.3.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"2.3.3","isBinary":false}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2017-15010","vulnerabilityDetails":"A ReDoS (regular expression denial of service) flaw was found in the tough-cookie module before 2.3.3 for Node.js. An attacker that is able to make an HTTP request using a specially crafted cookie may cause the application to consume an excessive amount of CPU.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-15010","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
non_defect
cve high detected in tough cookie tgz tough cookie tgz cve high severity vulnerability vulnerable libraries tough cookie tgz tough cookie tgz tough cookie tgz cookies and cookie jar for node js library home page a href path to dependency file package json path to vulnerable library node modules grunt retire node modules tough cookie package json dependency hierarchy grunt retire tgz root library request tgz x tough cookie tgz vulnerable library tough cookie tgz cookies and cookie jar for node js library home page a href path to dependency file package json path to vulnerable library node modules npm node modules request node modules tough cookie package json dependency hierarchy grunt npm install tgz root library npm tgz request tgz x tough cookie tgz vulnerable library found in head commit a href found in base branch master vulnerability details a redos regular expression denial of service flaw was found in the tough cookie module before for node js an attacker that is able to make an http request using a specially crafted cookie may cause the application to consume an excessive amount of cpu 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 tough cookie direct dependency fix resolution grunt retire isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency false dependencytree grunt retire isminimumfixversionavailable true minimumfixversion isbinary false packagetype javascript node js packagename tough cookie packageversion packagefilepaths istransitivedependency true dependencytree grunt npm install npm request tough cookie isminimumfixversionavailable true minimumfixversion isbinary false basebranches vulnerabilityidentifier cve vulnerabilitydetails a redos regular expression denial of service flaw was found in the tough cookie module before for node js an attacker that is able to make an http request using a specially crafted cookie may cause the application to consume an excessive amount of cpu vulnerabilityurl
0
30,162
24,600,541,929
IssuesEvent
2022-10-14 12:08:14
pixiebrix/pixiebrix-extension
https://api.github.com/repos/pixiebrix/pixiebrix-extension
closed
Error-style Alerts in show alert brick are reported as errors in error telemetry error
bug infrastructure brick triage
Context --- - https://rollbar.com/pixiebrix/pixiebrix/items/6335/occurrences/269188071901/ Steps to Reproduce --- - Use the "Show Alert" brick and set the level to "Error" Expected Behavior --- - User is shown alert in error style, but the error is not reported anywhere. (It's just a notification)
1.0
Error-style Alerts in show alert brick are reported as errors in error telemetry error - Context --- - https://rollbar.com/pixiebrix/pixiebrix/items/6335/occurrences/269188071901/ Steps to Reproduce --- - Use the "Show Alert" brick and set the level to "Error" Expected Behavior --- - User is shown alert in error style, but the error is not reported anywhere. (It's just a notification)
non_defect
error style alerts in show alert brick are reported as errors in error telemetry error context steps to reproduce use the show alert brick and set the level to error expected behavior user is shown alert in error style but the error is not reported anywhere it s just a notification
0
70,645
23,273,270,081
IssuesEvent
2022-08-05 03:06:53
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
closed
Missed call ringing on every load
T-Defect
### Steps to reproduce 1. Have a missed call in a DM 2. Reload Element Web ### Outcome #### What did you expect? No ringing #### What happened instead? Missed calls are ringing for a very short time (with audio notification). Watch this video carefully: ![ring](https://user-images.githubusercontent.com/6216686/182670192-0d2e625f-ffbd-4f35-9c1d-9e0fb7e87390.gif) Also happening with Desktop Client ### Operating system Ubuntu 22.04 LTS ### Browser information Firefox 103.0 (64-Bit) ### URL for webapp https://develop.element.io/ ### Application version Version von Element: fc6c859976b3-react-0e0be0878102-js-c36bfc821c18 Version von Olm: 3.2.12 ### Homeserver _No response_ ### Will you send logs? Yes
1.0
Missed call ringing on every load - ### Steps to reproduce 1. Have a missed call in a DM 2. Reload Element Web ### Outcome #### What did you expect? No ringing #### What happened instead? Missed calls are ringing for a very short time (with audio notification). Watch this video carefully: ![ring](https://user-images.githubusercontent.com/6216686/182670192-0d2e625f-ffbd-4f35-9c1d-9e0fb7e87390.gif) Also happening with Desktop Client ### Operating system Ubuntu 22.04 LTS ### Browser information Firefox 103.0 (64-Bit) ### URL for webapp https://develop.element.io/ ### Application version Version von Element: fc6c859976b3-react-0e0be0878102-js-c36bfc821c18 Version von Olm: 3.2.12 ### Homeserver _No response_ ### Will you send logs? Yes
defect
missed call ringing on every load steps to reproduce have a missed call in a dm reload element web outcome what did you expect no ringing what happened instead missed calls are ringing for a very short time with audio notification watch this video carefully also happening with desktop client operating system ubuntu lts browser information firefox bit url for webapp application version version von element react js version von olm homeserver no response will you send logs yes
1
473,466
13,642,852,325
IssuesEvent
2020-09-25 16:08:57
ihhub/fheroes2
https://api.github.com/repos/ihhub/fheroes2
closed
Town Population screen (with the well), "Buy Monsters:" window, the elements are not centered horizontally
low priority ui
In fheroes2, in the "Buy Monsters:" window, the elements are not centered horizontally. This includes the title "Buy Monsters:", the different creatures and their quantity, the gold sprite and the gold number. The buttons are not at the same horizontal distance from the edge of the window. In fheroes2: ![Buy monsters fh2 01](https://user-images.githubusercontent.com/43583994/94174009-f9560300-fe94-11ea-96c0-ec91ab3215cc.png)
1.0
Town Population screen (with the well), "Buy Monsters:" window, the elements are not centered horizontally - In fheroes2, in the "Buy Monsters:" window, the elements are not centered horizontally. This includes the title "Buy Monsters:", the different creatures and their quantity, the gold sprite and the gold number. The buttons are not at the same horizontal distance from the edge of the window. In fheroes2: ![Buy monsters fh2 01](https://user-images.githubusercontent.com/43583994/94174009-f9560300-fe94-11ea-96c0-ec91ab3215cc.png)
non_defect
town population screen with the well buy monsters window the elements are not centered horizontally in in the buy monsters window the elements are not centered horizontally this includes the title buy monsters the different creatures and their quantity the gold sprite and the gold number the buttons are not at the same horizontal distance from the edge of the window in
0
66,648
20,388,657,794
IssuesEvent
2022-02-22 09:45:15
cakephp/cakephp
https://api.github.com/repos/cakephp/cakephp
closed
the Formhelper use only the defaultValidator of model, no validate option of the entity is used.
defect
### Description I have a model class that had three validators definded a validatorPrivate and a validatorBusiness, both method call the validatorDefault and in the validatorPrivate and validatorBusiness method i adding some "notEmptyString" that are differ from privat to business. In my controller i create a new empty entity $this->tblCustomer->newEntity([], ['validate' => 'private']); or other case with $this->tblCustomer->newEntity([], ['validate' => 'business']); and define the validation Rule set In the Form, when i leave a field (go to the next) will be a message shown that the field can not be empty. But only the Message in of the default Validator will be shown and not the definition of the validatorBusiness or validatorPrivate. When i debug the code with xdebug, it will be call \Cake\}ORM\Table->newEntity and Marshaller with my defined custom validator. Later Will be called the Formhelper, that call the EntityContext an he call the default Validator. The Formhelper don't use the validate config of the entity, and he validate all controls with default validator of the model. Better is, when the FormHelper use the validateConfig of the Entity, or define the validate as option in the formHelper. ### CakePHP Version 4.3.5 ### PHP Version 8.0
1.0
the Formhelper use only the defaultValidator of model, no validate option of the entity is used. - ### Description I have a model class that had three validators definded a validatorPrivate and a validatorBusiness, both method call the validatorDefault and in the validatorPrivate and validatorBusiness method i adding some "notEmptyString" that are differ from privat to business. In my controller i create a new empty entity $this->tblCustomer->newEntity([], ['validate' => 'private']); or other case with $this->tblCustomer->newEntity([], ['validate' => 'business']); and define the validation Rule set In the Form, when i leave a field (go to the next) will be a message shown that the field can not be empty. But only the Message in of the default Validator will be shown and not the definition of the validatorBusiness or validatorPrivate. When i debug the code with xdebug, it will be call \Cake\}ORM\Table->newEntity and Marshaller with my defined custom validator. Later Will be called the Formhelper, that call the EntityContext an he call the default Validator. The Formhelper don't use the validate config of the entity, and he validate all controls with default validator of the model. Better is, when the FormHelper use the validateConfig of the Entity, or define the validate as option in the formHelper. ### CakePHP Version 4.3.5 ### PHP Version 8.0
defect
the formhelper use only the defaultvalidator of model no validate option of the entity is used description i have a model class that had three validators definded a validatorprivate and a validatorbusiness both method call the validatordefault and in the validatorprivate and validatorbusiness method i adding some notemptystring that are differ from privat to business in my controller i create a new empty entity this tblcustomer newentity or other case with this tblcustomer newentity and define the validation rule set in the form when i leave a field go to the next will be a message shown that the field can not be empty but only the message in of the default validator will be shown and not the definition of the validatorbusiness or validatorprivate when i debug the code with xdebug it will be call cake orm table newentity and marshaller with my defined custom validator later will be called the formhelper that call the entitycontext an he call the default validator the formhelper don t use the validate config of the entity and he validate all controls with default validator of the model better is when the formhelper use the validateconfig of the entity or define the validate as option in the formhelper cakephp version php version
1
80,765
15,573,903,486
IssuesEvent
2021-03-17 09:11:42
gitpod-io/gitpod
https://api.github.com/repos/gitpod-io/gitpod
opened
[Code][Staging] Preview has broken icons in Firefox Nightly on Mac OS
aspect: testing editor: code roadmap item: gitpod code type: bug
### Bug description New Code Preview pane controls have broken icons in my Firefox Nightly on Mac OS. ### Steps to reproduce 1. Open a Preview ### Expected behavior Control icons should work ### Example repository _No response_
2.0
[Code][Staging] Preview has broken icons in Firefox Nightly on Mac OS - ### Bug description New Code Preview pane controls have broken icons in my Firefox Nightly on Mac OS. ### Steps to reproduce 1. Open a Preview ### Expected behavior Control icons should work ### Example repository _No response_
non_defect
preview has broken icons in firefox nightly on mac os bug description new code preview pane controls have broken icons in my firefox nightly on mac os steps to reproduce open a preview expected behavior control icons should work example repository no response
0
17,139
3,354,852,206
IssuesEvent
2015-11-18 14:16:25
eloipuertas/ES2015A
https://api.github.com/repos/eloipuertas/ES2015A
closed
Change animation of Female Elf
bug design Group A
DESCRIPTION: Change idle animation of Female Elf OUTCOME EXPECTED / ACCEPTANCE CRITERIA: Completely Integrable character in the MAP. Estimated time effort: 1h
1.0
Change animation of Female Elf - DESCRIPTION: Change idle animation of Female Elf OUTCOME EXPECTED / ACCEPTANCE CRITERIA: Completely Integrable character in the MAP. Estimated time effort: 1h
non_defect
change animation of female elf description change idle animation of female elf outcome expected acceptance criteria completely integrable character in the map estimated time effort
0
23,715
3,851,865,992
IssuesEvent
2016-04-06 05:28:07
GPF/imame4all
https://api.github.com/repos/GPF/imame4all
closed
Include clrmame dat file with Reloaded
auto-migrated Priority-Medium Type-Defect
``` It may be useful to include the appropriate dat file with Reloaded to help people build the correct roms. Old MAME dats can be found here: http://romshepherd.com/oldmame/ ``` Original issue reported on code.google.com by `matbur...@gmail.com` on 10 Jun 2012 at 6:09
1.0
Include clrmame dat file with Reloaded - ``` It may be useful to include the appropriate dat file with Reloaded to help people build the correct roms. Old MAME dats can be found here: http://romshepherd.com/oldmame/ ``` Original issue reported on code.google.com by `matbur...@gmail.com` on 10 Jun 2012 at 6:09
defect
include clrmame dat file with reloaded it may be useful to include the appropriate dat file with reloaded to help people build the correct roms old mame dats can be found here original issue reported on code google com by matbur gmail com on jun at
1
19,285
3,179,600,674
IssuesEvent
2015-09-25 02:47:55
numpy/numpy
https://api.github.com/repos/numpy/numpy
closed
MaskedArray.__str__ fails with ValueError if data are record array (Trac #1688)
component: numpy.ma Defect priority: normal
_Original ticket http://projects.scipy.org/numpy/ticket/1688 on 2010-11-29 by @gerritholl, assigned to @pierregm._ When a MaskedArray's data are a record array,, string representation fails with a ValueError as the mask does not contain the mapping of field names that the data does. It appears the records are not carried on to the mask. $ python Python 2.6.6 (r266:84292, Sep 15 2010, 16:22:56) [GCC 4.4.5] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import numpy as np >>> Z = np.empty((5,), dtype=[('A', np.float32), ('B', np.uint32)]) >>> M = np.ma.masked_where(np.array([True, False, True, False, True]), Z) >>> print M Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/storage4/home/gerrit/.local/lib/python2.6/site-packages/numpy/ma/core.py", line 3558, in __str__ _recursive_printoption(res, m, f) File "/storage4/home/gerrit/.local/lib/python2.6/site-packages/numpy/ma/core.py", line 2292, in _recursive_printoption (curdata, curmask) = (result[name], mask[name]) ValueError: field named A not found. >>> print np.version.version 2.0.0.dev-12d0200
1.0
MaskedArray.__str__ fails with ValueError if data are record array (Trac #1688) - _Original ticket http://projects.scipy.org/numpy/ticket/1688 on 2010-11-29 by @gerritholl, assigned to @pierregm._ When a MaskedArray's data are a record array,, string representation fails with a ValueError as the mask does not contain the mapping of field names that the data does. It appears the records are not carried on to the mask. $ python Python 2.6.6 (r266:84292, Sep 15 2010, 16:22:56) [GCC 4.4.5] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import numpy as np >>> Z = np.empty((5,), dtype=[('A', np.float32), ('B', np.uint32)]) >>> M = np.ma.masked_where(np.array([True, False, True, False, True]), Z) >>> print M Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/storage4/home/gerrit/.local/lib/python2.6/site-packages/numpy/ma/core.py", line 3558, in __str__ _recursive_printoption(res, m, f) File "/storage4/home/gerrit/.local/lib/python2.6/site-packages/numpy/ma/core.py", line 2292, in _recursive_printoption (curdata, curmask) = (result[name], mask[name]) ValueError: field named A not found. >>> print np.version.version 2.0.0.dev-12d0200
defect
maskedarray str fails with valueerror if data are record array trac original ticket on by gerritholl assigned to pierregm when a maskedarray s data are a record array string representation fails with a valueerror as the mask does not contain the mapping of field names that the data does it appears the records are not carried on to the mask python python sep on type help copyright credits or license for more information import numpy as np z np empty dtype m np ma masked where np array z print m traceback most recent call last file line in file home gerrit local lib site packages numpy ma core py line in str recursive printoption res m f file home gerrit local lib site packages numpy ma core py line in recursive printoption curdata curmask result mask valueerror field named a not found print np version version dev
1
66,646
8,956,273,659
IssuesEvent
2019-01-26 16:09:52
chaoss/augur
https://api.github.com/repos/chaoss/augur
closed
Confusing setup after install
backend bug documentation installation
**Is your feature request related to a problem? Please describe.** I just finished the docker install. It may have something to do with my experience, but I cannot figure out where to put information for the GHTorrent database that I have. Here are a few things I've noticed: - There is no README or instructions for use. The link "tutorial" for the README file is dead. - Exploring files, I see an "augur.config.json" file but it is empty. - I found another file, "_config.yml" under /docs, but it only has one line for "theme" and no explanation. - The link for documentation on the main banner, "https://osshealth.github.io/augur/" is dead. I was able to replace "osshealth" with "chaoss" and it works. **Describe the solution you'd like** I would like to see some more explicit documentation on how to use augur. edit: Front and and Back end development guides are fixed.
1.0
Confusing setup after install - **Is your feature request related to a problem? Please describe.** I just finished the docker install. It may have something to do with my experience, but I cannot figure out where to put information for the GHTorrent database that I have. Here are a few things I've noticed: - There is no README or instructions for use. The link "tutorial" for the README file is dead. - Exploring files, I see an "augur.config.json" file but it is empty. - I found another file, "_config.yml" under /docs, but it only has one line for "theme" and no explanation. - The link for documentation on the main banner, "https://osshealth.github.io/augur/" is dead. I was able to replace "osshealth" with "chaoss" and it works. **Describe the solution you'd like** I would like to see some more explicit documentation on how to use augur. edit: Front and and Back end development guides are fixed.
non_defect
confusing setup after install is your feature request related to a problem please describe i just finished the docker install it may have something to do with my experience but i cannot figure out where to put information for the ghtorrent database that i have here are a few things i ve noticed there is no readme or instructions for use the link tutorial for the readme file is dead exploring files i see an augur config json file but it is empty i found another file config yml under docs but it only has one line for theme and no explanation the link for documentation on the main banner is dead i was able to replace osshealth with chaoss and it works describe the solution you d like i would like to see some more explicit documentation on how to use augur edit front and and back end development guides are fixed
0
50,610
13,187,620,408
IssuesEvent
2020-08-13 04:01:01
icecube-trac/tix3
https://api.github.com/repos/icecube-trac/tix3
closed
[sim-services] I3MCTree throws when printing after removing nodes (Trac #1044)
Migrated from Trac combo core defect
This is either in sim-services/I3InIceCORSIKATrimmer, dataclasses/I3MCTree, or perhaps (but not likely), in the test. I'm sure it's related to erasing nodes in the tree, but a simply printing the tree gives the following error message : python: /home/olivas/icecube/pandoras-icebox/trunk/src/dataclasses/public/dataclasses/physics/I3MCTree.h:224: ValueType& TreeBase::Tree<T, Key, Hash>::iterator_storage_impl<boost::optional<Key>, ValueType, TreeType, TreeHashMapIter>::dereference() const [with ValueType = const I3Particle; TreeType = const TreeBase::Tree<I3Particle, I3ParticleID>; TreeHashMapIter = __gnu_cxx::_Hashtable_const_iterator<std::pair<const I3ParticleID, TreeBase::TreeNode<I3Particle> >, I3ParticleID, __gnu_cxx::hash<I3ParticleID>, std::_Select1st<std::pair<const I3ParticleID, TreeBase::TreeNode<I3Particle> > >, std::equal_to<I3ParticleID>, std::allocator<TreeBase::TreeNode<I3Particle> > >; T = I3Particle; Key = I3ParticleID; Hash = __gnu_cxx::hash<I3ParticleID>]: Assertion `iter != treePtr_->internalMap.end()' failed. I'll try to isolate the problem more tomorrow, but have to run now. <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/1044">https://code.icecube.wisc.edu/ticket/1044</a>, reported by olivas and owned by olivas</em></summary> <p> ```json { "status": "closed", "changetime": "2015-08-10T20:31:17", "description": "This is either in sim-services/I3InIceCORSIKATrimmer, dataclasses/I3MCTree, or perhaps (but not likely), in the test.\n\nI'm sure it's related to erasing nodes in the tree, but a simply printing the tree gives the following error message :\n\npython: /home/olivas/icecube/pandoras-icebox/trunk/src/dataclasses/public/dataclasses/physics/I3MCTree.h:224: ValueType& TreeBase::Tree<T, Key, Hash>::iterator_storage_impl<boost::optional<Key>, ValueType, TreeType, TreeHashMapIter>::dereference() const [with ValueType = const I3Particle; TreeType = const TreeBase::Tree<I3Particle, I3ParticleID>; TreeHashMapIter = __gnu_cxx::_Hashtable_const_iterator<std::pair<const I3ParticleID, TreeBase::TreeNode<I3Particle> >, I3ParticleID, __gnu_cxx::hash<I3ParticleID>, std::_Select1st<std::pair<const I3ParticleID, TreeBase::TreeNode<I3Particle> > >, std::equal_to<I3ParticleID>, std::allocator<TreeBase::TreeNode<I3Particle> > >; T = I3Particle; Key = I3ParticleID; Hash = __gnu_cxx::hash<I3ParticleID>]: Assertion `iter != treePtr_->internalMap.end()' failed.\n\nI'll try to isolate the problem more tomorrow, but have to run now.\n", "reporter": "olivas", "cc": "david.schultz, jvansanten", "resolution": "fixed", "_ts": "1439238677802127", "component": "combo core", "summary": "[sim-services] I3MCTree throws when printing after removing nodes", "priority": "major", "keywords": "", "time": "2015-07-08T23:22:29", "milestone": "", "owner": "olivas", "type": "defect" } ``` </p> </details>
1.0
[sim-services] I3MCTree throws when printing after removing nodes (Trac #1044) - This is either in sim-services/I3InIceCORSIKATrimmer, dataclasses/I3MCTree, or perhaps (but not likely), in the test. I'm sure it's related to erasing nodes in the tree, but a simply printing the tree gives the following error message : python: /home/olivas/icecube/pandoras-icebox/trunk/src/dataclasses/public/dataclasses/physics/I3MCTree.h:224: ValueType& TreeBase::Tree<T, Key, Hash>::iterator_storage_impl<boost::optional<Key>, ValueType, TreeType, TreeHashMapIter>::dereference() const [with ValueType = const I3Particle; TreeType = const TreeBase::Tree<I3Particle, I3ParticleID>; TreeHashMapIter = __gnu_cxx::_Hashtable_const_iterator<std::pair<const I3ParticleID, TreeBase::TreeNode<I3Particle> >, I3ParticleID, __gnu_cxx::hash<I3ParticleID>, std::_Select1st<std::pair<const I3ParticleID, TreeBase::TreeNode<I3Particle> > >, std::equal_to<I3ParticleID>, std::allocator<TreeBase::TreeNode<I3Particle> > >; T = I3Particle; Key = I3ParticleID; Hash = __gnu_cxx::hash<I3ParticleID>]: Assertion `iter != treePtr_->internalMap.end()' failed. I'll try to isolate the problem more tomorrow, but have to run now. <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/1044">https://code.icecube.wisc.edu/ticket/1044</a>, reported by olivas and owned by olivas</em></summary> <p> ```json { "status": "closed", "changetime": "2015-08-10T20:31:17", "description": "This is either in sim-services/I3InIceCORSIKATrimmer, dataclasses/I3MCTree, or perhaps (but not likely), in the test.\n\nI'm sure it's related to erasing nodes in the tree, but a simply printing the tree gives the following error message :\n\npython: /home/olivas/icecube/pandoras-icebox/trunk/src/dataclasses/public/dataclasses/physics/I3MCTree.h:224: ValueType& TreeBase::Tree<T, Key, Hash>::iterator_storage_impl<boost::optional<Key>, ValueType, TreeType, TreeHashMapIter>::dereference() const [with ValueType = const I3Particle; TreeType = const TreeBase::Tree<I3Particle, I3ParticleID>; TreeHashMapIter = __gnu_cxx::_Hashtable_const_iterator<std::pair<const I3ParticleID, TreeBase::TreeNode<I3Particle> >, I3ParticleID, __gnu_cxx::hash<I3ParticleID>, std::_Select1st<std::pair<const I3ParticleID, TreeBase::TreeNode<I3Particle> > >, std::equal_to<I3ParticleID>, std::allocator<TreeBase::TreeNode<I3Particle> > >; T = I3Particle; Key = I3ParticleID; Hash = __gnu_cxx::hash<I3ParticleID>]: Assertion `iter != treePtr_->internalMap.end()' failed.\n\nI'll try to isolate the problem more tomorrow, but have to run now.\n", "reporter": "olivas", "cc": "david.schultz, jvansanten", "resolution": "fixed", "_ts": "1439238677802127", "component": "combo core", "summary": "[sim-services] I3MCTree throws when printing after removing nodes", "priority": "major", "keywords": "", "time": "2015-07-08T23:22:29", "milestone": "", "owner": "olivas", "type": "defect" } ``` </p> </details>
defect
throws when printing after removing nodes trac this is either in sim services dataclasses or perhaps but not likely in the test i m sure it s related to erasing nodes in the tree but a simply printing the tree gives the following error message python home olivas icecube pandoras icebox trunk src dataclasses public dataclasses physics h valuetype treebase tree iterator storage impl valuetype treetype treehashmapiter dereference const assertion iter treeptr internalmap end failed i ll try to isolate the problem more tomorrow but have to run now migrated from json status closed changetime description this is either in sim services dataclasses or perhaps but not likely in the test n ni m sure it s related to erasing nodes in the tree but a simply printing the tree gives the following error message n npython home olivas icecube pandoras icebox trunk src dataclasses public dataclasses physics h valuetype treebase tree iterator storage impl valuetype treetype treehashmapiter dereference const assertion iter treeptr internalmap end failed n ni ll try to isolate the problem more tomorrow but have to run now n reporter olivas cc david schultz jvansanten resolution fixed ts component combo core summary throws when printing after removing nodes priority major keywords time milestone owner olivas type defect
1
30,853
6,314,456,443
IssuesEvent
2017-07-24 10:54:11
OpenMS/OpenMS
https://api.github.com/repos/OpenMS/OpenMS
closed
AccurateMassSearch cannot write output file (regression)
defect UTILS
I've just updated OpenMS in KNIME and found that the AccurateMassSearch node in an existing workflow doesn't work anymore. The output in the KNIME log was: > ERROR AccurateMassSearch 0:16 Failing process stdout: [Read 54 entries from mapping file!, Read 1 entries from adduct file 'C:\Users\hendrik.weisser\Data\Nucleotide-MS\pos_adducts.tsv'., Read 15 entries from adduct file 'C:\Users\hendrik.weisser\Software\OpenMS\share\OpenMS\CHEMISTRY\NegativeAdducts.tsv'.] > ERROR AccurateMassSearch 0:16 Failing process stderr: [] > ERROR AccurateMassSearch 0:16 Execute failed: Failed to execute node AccurateMassSearch So no useful information. I then updated my local OpenMS installation and tried AccurateMassSearch there. I got the following (weirdly worded) error: > Error: Unable to write file (the file 'While storing 'Search\results.csv'. Invalid file extension. Should be: 'tsv'' could not be created) If I try to write to an output file with ending ".tsv", I get this instead: > Invalid parameter: Invalid output file extension 'Search\results.tsv'. Valid file extensions are: 'csv'. So it seems that two different parts of the code can't agree on what the file extension should be. (Using ".tmp" as the extension makes it work on the command line - which is also why the test still works! However, that doesn't help with KNIME.) I'm going to prepare a fix on the OpenMS side. For KNIME, it would be good to know why the error message from the tool doesn't appear anywhere. (I'm assuming the failure in KNIME is caused by the same bug - any way I can test that?)
1.0
AccurateMassSearch cannot write output file (regression) - I've just updated OpenMS in KNIME and found that the AccurateMassSearch node in an existing workflow doesn't work anymore. The output in the KNIME log was: > ERROR AccurateMassSearch 0:16 Failing process stdout: [Read 54 entries from mapping file!, Read 1 entries from adduct file 'C:\Users\hendrik.weisser\Data\Nucleotide-MS\pos_adducts.tsv'., Read 15 entries from adduct file 'C:\Users\hendrik.weisser\Software\OpenMS\share\OpenMS\CHEMISTRY\NegativeAdducts.tsv'.] > ERROR AccurateMassSearch 0:16 Failing process stderr: [] > ERROR AccurateMassSearch 0:16 Execute failed: Failed to execute node AccurateMassSearch So no useful information. I then updated my local OpenMS installation and tried AccurateMassSearch there. I got the following (weirdly worded) error: > Error: Unable to write file (the file 'While storing 'Search\results.csv'. Invalid file extension. Should be: 'tsv'' could not be created) If I try to write to an output file with ending ".tsv", I get this instead: > Invalid parameter: Invalid output file extension 'Search\results.tsv'. Valid file extensions are: 'csv'. So it seems that two different parts of the code can't agree on what the file extension should be. (Using ".tmp" as the extension makes it work on the command line - which is also why the test still works! However, that doesn't help with KNIME.) I'm going to prepare a fix on the OpenMS side. For KNIME, it would be good to know why the error message from the tool doesn't appear anywhere. (I'm assuming the failure in KNIME is caused by the same bug - any way I can test that?)
defect
accuratemasssearch cannot write output file regression i ve just updated openms in knime and found that the accuratemasssearch node in an existing workflow doesn t work anymore the output in the knime log was error accuratemasssearch failing process stdout error accuratemasssearch failing process stderr error accuratemasssearch execute failed failed to execute node accuratemasssearch so no useful information i then updated my local openms installation and tried accuratemasssearch there i got the following weirdly worded error error unable to write file the file while storing search results csv invalid file extension should be tsv could not be created if i try to write to an output file with ending tsv i get this instead invalid parameter invalid output file extension search results tsv valid file extensions are csv so it seems that two different parts of the code can t agree on what the file extension should be using tmp as the extension makes it work on the command line which is also why the test still works however that doesn t help with knime i m going to prepare a fix on the openms side for knime it would be good to know why the error message from the tool doesn t appear anywhere i m assuming the failure in knime is caused by the same bug any way i can test that
1
107,497
9,215,425,770
IssuesEvent
2019-03-11 03:04:17
openshift/origin
https://api.github.com/repos/openshift/origin
closed
test: Subpath should fail for new directories test fails waiting for event
kind/test-flake lifecycle/rotten
/tmp/openshift/build-rpms/rpm/BUILD/origin-4.0.0/_output/local/go/src/github.com/openshift/origin/vendor/k8s.io/kubernetes/test/e2e/storage/subpath.go:323 no events found Expected <int>: 0 not to equal <int>: 0 /tmp/openshift/build-rpms/rpm/BUILD/origin-4.0.0/_output/local/go/src/github.com/openshift/origin/vendor/k8s.io/kubernetes/test/e2e/storage/subpath.go:529 The test fails waiting for the Failed event which does show up after some time.
1.0
test: Subpath should fail for new directories test fails waiting for event - /tmp/openshift/build-rpms/rpm/BUILD/origin-4.0.0/_output/local/go/src/github.com/openshift/origin/vendor/k8s.io/kubernetes/test/e2e/storage/subpath.go:323 no events found Expected <int>: 0 not to equal <int>: 0 /tmp/openshift/build-rpms/rpm/BUILD/origin-4.0.0/_output/local/go/src/github.com/openshift/origin/vendor/k8s.io/kubernetes/test/e2e/storage/subpath.go:529 The test fails waiting for the Failed event which does show up after some time.
non_defect
test subpath should fail for new directories test fails waiting for event tmp openshift build rpms rpm build origin output local go src github com openshift origin vendor io kubernetes test storage subpath go no events found expected not to equal tmp openshift build rpms rpm build origin output local go src github com openshift origin vendor io kubernetes test storage subpath go the test fails waiting for the failed event which does show up after some time
0
54,382
13,636,963,280
IssuesEvent
2020-09-25 06:59:21
jOOQ/jOOQ
https://api.github.com/repos/jOOQ/jOOQ
closed
Support empty INSERT .. VALUES() clause via DEFAULT VALUES
C: DB: SQLite C: Functionality E: All Editions P: Medium T: Defect
### Expected behavior ```sql create table foo(id integer primary key, value string); ``` ```scala dsl.insertInto(table("foo")) .columns() .values() .returning(field("id")) .fetchOne() ``` should insert an empty row (`id` generated by db, `value` being `NULL`) and return a record containing the generated `id`. ### Actual behavior No insert is executed. I have to add `.defaultValues()` for correct execution. I can imagine that this *might* be expected behavior, but I find it very confusing. I'm working on a fairly complex project that auto-generates SQL INSERT statements and this behavior was caught by my test-suite. I can easily work around the issue in various ways, so closing this issue with "It's expected behavior" is fine for me :-) ### Steps to reproduce the problem I'm sorry for the Scala MCVE. If you prefer one in Java, please let me know. ```scala import org.jooq.DSLContext import org.jooq.impl.DSL import DSL._ object SqliteTestApp extends App { val db = DSL.using("jdbc:sqlite::memory:") db.execute("create table foo(id integer primary key, value string);") val record = db.insertInto(table("foo")) .columns() .values() .returningResult(field("id")) .fetchOne() println(record) // wrong: null println(db.select(count()).from(table("foo")).fetchOne()) // count() is 0 val record2 = db.insertInto(table("foo")) .columns(field("value")) .values("foo") .returningResult(field("id")) .fetchOne() println(record2) // correct 'id: 1' val record3 = db.insertInto(table("foo")) .defaultValues() .returningResult(field("id")) .fetchOne() println(record3) // correct 'id: 1' } ``` ### Versions - jOOQ: 3.13.4 - Java: openjdk version "14.0.2" 2020-07-14 - Database (include vendor): sqlite-jdbc 3.32.3.2 - OS: macOS 10.15.6 - JDBC Driver (include name if inofficial driver): `org.xerial/sqlite-jdbc:3.32.3.2`
1.0
Support empty INSERT .. VALUES() clause via DEFAULT VALUES - ### Expected behavior ```sql create table foo(id integer primary key, value string); ``` ```scala dsl.insertInto(table("foo")) .columns() .values() .returning(field("id")) .fetchOne() ``` should insert an empty row (`id` generated by db, `value` being `NULL`) and return a record containing the generated `id`. ### Actual behavior No insert is executed. I have to add `.defaultValues()` for correct execution. I can imagine that this *might* be expected behavior, but I find it very confusing. I'm working on a fairly complex project that auto-generates SQL INSERT statements and this behavior was caught by my test-suite. I can easily work around the issue in various ways, so closing this issue with "It's expected behavior" is fine for me :-) ### Steps to reproduce the problem I'm sorry for the Scala MCVE. If you prefer one in Java, please let me know. ```scala import org.jooq.DSLContext import org.jooq.impl.DSL import DSL._ object SqliteTestApp extends App { val db = DSL.using("jdbc:sqlite::memory:") db.execute("create table foo(id integer primary key, value string);") val record = db.insertInto(table("foo")) .columns() .values() .returningResult(field("id")) .fetchOne() println(record) // wrong: null println(db.select(count()).from(table("foo")).fetchOne()) // count() is 0 val record2 = db.insertInto(table("foo")) .columns(field("value")) .values("foo") .returningResult(field("id")) .fetchOne() println(record2) // correct 'id: 1' val record3 = db.insertInto(table("foo")) .defaultValues() .returningResult(field("id")) .fetchOne() println(record3) // correct 'id: 1' } ``` ### Versions - jOOQ: 3.13.4 - Java: openjdk version "14.0.2" 2020-07-14 - Database (include vendor): sqlite-jdbc 3.32.3.2 - OS: macOS 10.15.6 - JDBC Driver (include name if inofficial driver): `org.xerial/sqlite-jdbc:3.32.3.2`
defect
support empty insert values clause via default values expected behavior sql create table foo id integer primary key value string scala dsl insertinto table foo columns values returning field id fetchone should insert an empty row id generated by db value being null and return a record containing the generated id actual behavior no insert is executed i have to add defaultvalues for correct execution i can imagine that this might be expected behavior but i find it very confusing i m working on a fairly complex project that auto generates sql insert statements and this behavior was caught by my test suite i can easily work around the issue in various ways so closing this issue with it s expected behavior is fine for me steps to reproduce the problem i m sorry for the scala mcve if you prefer one in java please let me know scala import org jooq dslcontext import org jooq impl dsl import dsl object sqlitetestapp extends app val db dsl using jdbc sqlite memory db execute create table foo id integer primary key value string val record db insertinto table foo columns values returningresult field id fetchone println record wrong null println db select count from table foo fetchone count is val db insertinto table foo columns field value values foo returningresult field id fetchone println correct id val db insertinto table foo defaultvalues returningresult field id fetchone println correct id versions jooq java openjdk version database include vendor sqlite jdbc os macos jdbc driver include name if inofficial driver org xerial sqlite jdbc
1
16,417
2,892,780,900
IssuesEvent
2015-06-15 14:45:44
zaproxy/zaproxy
https://api.github.com/repos/zaproxy/zaproxy
closed
startup script lacks support for FreeBSD
Priority-Medium Type-Defect
``` The startup script checks total system memory to tune the JVM at startup, but lacks support for FreeBSD. See attached patch. ``` Original issue reported on code.google.com by `steve.wills` on 2015-04-14 17:57:26 <hr> * *Attachment: [zap.sh.diff](https://storage.googleapis.com/google-code-attachments/zaproxy/issue-1598/comment-0/zap.sh.diff)*
1.0
startup script lacks support for FreeBSD - ``` The startup script checks total system memory to tune the JVM at startup, but lacks support for FreeBSD. See attached patch. ``` Original issue reported on code.google.com by `steve.wills` on 2015-04-14 17:57:26 <hr> * *Attachment: [zap.sh.diff](https://storage.googleapis.com/google-code-attachments/zaproxy/issue-1598/comment-0/zap.sh.diff)*
defect
startup script lacks support for freebsd the startup script checks total system memory to tune the jvm at startup but lacks support for freebsd see attached patch original issue reported on code google com by steve wills on attachment
1
67,664
21,044,188,224
IssuesEvent
2022-03-31 14:42:18
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
closed
Stuck unread status on a room
T-Defect
### Steps to reproduce I opened a room with an unread message, scrolled around for a bit, but the unread dot was not dismissed. ### Outcome #### What did you expect? I opened a room with a new message. I expect the unread dot to be dismissed and the room to be marked as read. #### What happened instead? The room was not marked as read. ![image](https://user-images.githubusercontent.com/463342/161010061-d948bfd0-8a41-4682-9241-fdcec35fc9e8.png) ### Operating system Arch Linux ### Application version Element version: 1.10.8 Olm version: 3.2.8 ### How did you install the app? Arch Linux repository ### Homeserver termina.org.uk, Synapse 1.55.0 ### Will you send logs? Yes
1.0
Stuck unread status on a room - ### Steps to reproduce I opened a room with an unread message, scrolled around for a bit, but the unread dot was not dismissed. ### Outcome #### What did you expect? I opened a room with a new message. I expect the unread dot to be dismissed and the room to be marked as read. #### What happened instead? The room was not marked as read. ![image](https://user-images.githubusercontent.com/463342/161010061-d948bfd0-8a41-4682-9241-fdcec35fc9e8.png) ### Operating system Arch Linux ### Application version Element version: 1.10.8 Olm version: 3.2.8 ### How did you install the app? Arch Linux repository ### Homeserver termina.org.uk, Synapse 1.55.0 ### Will you send logs? Yes
defect
stuck unread status on a room steps to reproduce i opened a room with an unread message scrolled around for a bit but the unread dot was not dismissed outcome what did you expect i opened a room with a new message i expect the unread dot to be dismissed and the room to be marked as read what happened instead the room was not marked as read operating system arch linux application version element version olm version how did you install the app arch linux repository homeserver termina org uk synapse will you send logs yes
1
309,770
26,678,250,792
IssuesEvent
2023-01-26 15:46:03
ntop/ntopng
https://api.github.com/repos/ntop/ntopng
closed
Flow Analysis Glitches
Bug Ready to Test
There are a few issues to fix - The two columns on the left have the same value - The two right-most columns should be right-aligned - Protocol filtering) clicking on a hostname is not working. Example http://localhost:3000/lua/flows_stats.lua?application=DNS.Cybersec - Breakdown sort is useless and not working ![image](https://user-images.githubusercontent.com/4493366/214315757-0fb02286-8f48-4380-83af-ceee9517b878.png)
1.0
Flow Analysis Glitches - There are a few issues to fix - The two columns on the left have the same value - The two right-most columns should be right-aligned - Protocol filtering) clicking on a hostname is not working. Example http://localhost:3000/lua/flows_stats.lua?application=DNS.Cybersec - Breakdown sort is useless and not working ![image](https://user-images.githubusercontent.com/4493366/214315757-0fb02286-8f48-4380-83af-ceee9517b878.png)
non_defect
flow analysis glitches there are a few issues to fix the two columns on the left have the same value the two right most columns should be right aligned protocol filtering clicking on a hostname is not working example breakdown sort is useless and not working
0
280,656
8,684,757,313
IssuesEvent
2018-12-03 04:08:46
sailplan/anchor-watch
https://api.github.com/repos/sailplan/anchor-watch
opened
A user can adjust the position of the anchor by pointing toward it.
enhancement priority:COULD
This can be to edit an existing anchorage, or to create a new one. 1. Stand at the bow 1. point the device toward anchor 1. guessing the distance
1.0
A user can adjust the position of the anchor by pointing toward it. - This can be to edit an existing anchorage, or to create a new one. 1. Stand at the bow 1. point the device toward anchor 1. guessing the distance
non_defect
a user can adjust the position of the anchor by pointing toward it this can be to edit an existing anchorage or to create a new one stand at the bow point the device toward anchor guessing the distance
0
337,159
24,528,988,457
IssuesEvent
2022-10-11 15:01:34
thiagomtolotti/smooth-scroll
https://api.github.com/repos/thiagomtolotti/smooth-scroll
opened
Criar o readme.md
documentation
Criar o readme.md para disponibilizar o projeto publicamente. Achar a referência original também
1.0
Criar o readme.md - Criar o readme.md para disponibilizar o projeto publicamente. Achar a referência original também
non_defect
criar o readme md criar o readme md para disponibilizar o projeto publicamente achar a referência original também
0
66,780
14,798,955,127
IssuesEvent
2021-01-13 01:04:23
jgeraigery/react-pwa-reference-storefront
https://api.github.com/repos/jgeraigery/react-pwa-reference-storefront
opened
CVE-2020-24025 (Medium) detected in node-sass-4.14.1.tgz
security vulnerability
## CVE-2020-24025 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>node-sass-4.14.1.tgz</b></p></summary> <p>Wrapper around libsass</p> <p>Library home page: <a href="https://registry.npmjs.org/node-sass/-/node-sass-4.14.1.tgz">https://registry.npmjs.org/node-sass/-/node-sass-4.14.1.tgz</a></p> <p>Path to dependency file: react-pwa-reference-storefront/package.json</p> <p>Path to vulnerable library: react-pwa-reference-storefront/node_modules/node-sass/package.json</p> <p> Dependency Hierarchy: - :x: **node-sass-4.14.1.tgz** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Certificate validation in node-sass 2.0.0 to 4.14.1 is disabled when requesting binaries even if the user is not specifying an alternative download path. <p>Publish Date: 2021-01-11 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-24025>CVE-2020-24025</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>5.3</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: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"node-sass","packageVersion":"4.14.1","isTransitiveDependency":false,"dependencyTree":"node-sass:4.14.1","isMinimumFixVersionAvailable":false}],"vulnerabilityIdentifier":"CVE-2020-24025","vulnerabilityDetails":"Certificate validation in node-sass 2.0.0 to 4.14.1 is disabled when requesting binaries even if the user is not specifying an alternative download path.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-24025","cvss3Severity":"medium","cvss3Score":"5.3","cvss3Metrics":{"A":"Low","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
True
CVE-2020-24025 (Medium) detected in node-sass-4.14.1.tgz - ## CVE-2020-24025 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>node-sass-4.14.1.tgz</b></p></summary> <p>Wrapper around libsass</p> <p>Library home page: <a href="https://registry.npmjs.org/node-sass/-/node-sass-4.14.1.tgz">https://registry.npmjs.org/node-sass/-/node-sass-4.14.1.tgz</a></p> <p>Path to dependency file: react-pwa-reference-storefront/package.json</p> <p>Path to vulnerable library: react-pwa-reference-storefront/node_modules/node-sass/package.json</p> <p> Dependency Hierarchy: - :x: **node-sass-4.14.1.tgz** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Certificate validation in node-sass 2.0.0 to 4.14.1 is disabled when requesting binaries even if the user is not specifying an alternative download path. <p>Publish Date: 2021-01-11 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-24025>CVE-2020-24025</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>5.3</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: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"node-sass","packageVersion":"4.14.1","isTransitiveDependency":false,"dependencyTree":"node-sass:4.14.1","isMinimumFixVersionAvailable":false}],"vulnerabilityIdentifier":"CVE-2020-24025","vulnerabilityDetails":"Certificate validation in node-sass 2.0.0 to 4.14.1 is disabled when requesting binaries even if the user is not specifying an alternative download path.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-24025","cvss3Severity":"medium","cvss3Score":"5.3","cvss3Metrics":{"A":"Low","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
non_defect
cve medium detected in node sass tgz cve medium severity vulnerability vulnerable library node sass tgz wrapper around libsass library home page a href path to dependency file react pwa reference storefront package json path to vulnerable library react pwa reference storefront node modules node sass package json dependency hierarchy x node sass tgz vulnerable library vulnerability details certificate validation in node sass to is disabled when requesting binaries even if the user is not specifying an alternative download path publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact low for more information on scores click a href isopenpronvulnerability true ispackagebased true isdefaultbranch true packages vulnerabilityidentifier cve vulnerabilitydetails certificate validation in node sass to is disabled when requesting binaries even if the user is not specifying an alternative download path vulnerabilityurl
0
43,703
23,336,140,972
IssuesEvent
2022-08-09 10:06:08
keras-team/keras
https://api.github.com/repos/keras-team/keras
closed
How to put my object detection dataset in this specific COCO annotation format?
type:bug/performance stat:awaiting response from contributor stalled
Hello, I'm running this Keras implementation of [retinanet](https://github.com/keras-team/keras-io/blob/master/examples/vision/retinanet.py) and it works perfectly on COCO dataset obtained from tfds.load(). I noticed that the downloaded TFrecords (from tfds.load() ) contain COCO annotations in a different way from traditional COCO annotations and that is the cause of all problems. The COCO annotation format, creates **one annotation element for each element in image**, whereas Tensorflow COCO format (obtained from tfds), crates **one single annotation for each image and inside this annotation, there is a list of objects and their positions (bboxes)** That is the main difference. ![Comparing annotations format](https://user-images.githubusercontent.com/16272954/177061168-9869e899-f3b3-4b70-a081-73c5fb18a39b.jpeg) **Is there a way to put my dataset in this Tensorflow COCO format?** Thanks in advance, Allan Freitas System informations: Ubuntu Tensorflow: 2.9.1 Python: 3.7.13
True
How to put my object detection dataset in this specific COCO annotation format? - Hello, I'm running this Keras implementation of [retinanet](https://github.com/keras-team/keras-io/blob/master/examples/vision/retinanet.py) and it works perfectly on COCO dataset obtained from tfds.load(). I noticed that the downloaded TFrecords (from tfds.load() ) contain COCO annotations in a different way from traditional COCO annotations and that is the cause of all problems. The COCO annotation format, creates **one annotation element for each element in image**, whereas Tensorflow COCO format (obtained from tfds), crates **one single annotation for each image and inside this annotation, there is a list of objects and their positions (bboxes)** That is the main difference. ![Comparing annotations format](https://user-images.githubusercontent.com/16272954/177061168-9869e899-f3b3-4b70-a081-73c5fb18a39b.jpeg) **Is there a way to put my dataset in this Tensorflow COCO format?** Thanks in advance, Allan Freitas System informations: Ubuntu Tensorflow: 2.9.1 Python: 3.7.13
non_defect
how to put my object detection dataset in this specific coco annotation format hello i m running this keras implementation of and it works perfectly on coco dataset obtained from tfds load i noticed that the downloaded tfrecords from tfds load contain coco annotations in a different way from traditional coco annotations and that is the cause of all problems the coco annotation format creates one annotation element for each element in image whereas tensorflow coco format obtained from tfds crates one single annotation for each image and inside this annotation there is a list of objects and their positions bboxes that is the main difference is there a way to put my dataset in this tensorflow coco format thanks in advance allan freitas system informations ubuntu tensorflow python
0
55,204
14,271,077,611
IssuesEvent
2020-11-21 10:39:20
Ogeon/palette
https://api.github.com/repos/Ogeon/palette
closed
Forgot default white point in alpha type aliases
defect
`Lch` is a valid type, but `Lcha` is not. I have to specify the white point with `Lcha<white_point::D65>`. In the type alias definition, `type Lcha<Wp, T = f32> = Alpha<Lch<Wp, T>, T>;` should be changed to `type Lcha<Wp = D65, T = f32> = Alpha<Lch<Wp, T>, T>;` to remove that inconsistency. I haven't checked all color types, but at least the `Laba` type suffers from this as well.
1.0
Forgot default white point in alpha type aliases - `Lch` is a valid type, but `Lcha` is not. I have to specify the white point with `Lcha<white_point::D65>`. In the type alias definition, `type Lcha<Wp, T = f32> = Alpha<Lch<Wp, T>, T>;` should be changed to `type Lcha<Wp = D65, T = f32> = Alpha<Lch<Wp, T>, T>;` to remove that inconsistency. I haven't checked all color types, but at least the `Laba` type suffers from this as well.
defect
forgot default white point in alpha type aliases lch is a valid type but lcha is not i have to specify the white point with lcha in the type alias definition type lcha alpha t should be changed to type lcha alpha t to remove that inconsistency i haven t checked all color types but at least the laba type suffers from this as well
1
28,981
5,468,274,795
IssuesEvent
2017-03-10 05:13:01
relevance/rcov
https://api.github.com/repos/relevance/rcov
closed
Rcov doesn't play nicely with Rspec and namespaced classes
Defect RSpec
Using Rspec with Rcov, more specifically the RakeTask in Rspec, doesn't play nicely with Rcov. Here is my RakeTask ``` ruby require 'rspec/core/rake_task' require 'cucumber/rake/task' namespace :rcov do rcov_options = %w{ --rails --exclude osx\/objc,gems\/,spec\/,features\/,seeds\/ --aggregate coverage/coverage.data } Cucumber::Rake::Task.new(:cucumber) do |t| t.cucumber_opts = "--format pretty" t.rcov = true t.rcov_opts = rcov_options end RSpec::Core::RakeTask.new(:rspec) do |t| t.spec_opts = ["--color"] t.pattern = 'spec/**/*_spec.rb' t.rcov = true t.verbose = true t.rcov_opts = rcov_options t.rcov_opts += %w{--include views -Ispec} end desc "Run cucumber & rspec to generate aggregated coverage" task :all do |t| rm "coverage/coverage.data" if File.exist?("coverage/coverage.data") Rake::Task["rcov:cucumber"].invoke Rake::Task['rcov:rspec'].invoke end end ``` and the output when the Rspec section is run: ``` /Users/Hao/.rvm/rubies/ruby-1.8.7-p174/bin/ruby -S bundle exec rcov -Ispec:lib --rails --exclude osx\/objc,gems\/,spec\/,features\/,seeds\/ --aggregate coverage/coverage.data --include views -Ispec spec/controllers/api_base_controller_spec.rb spec/controllers/application_controller_spec.rb spec/controllers/players_controller_spec.rb spec/controllers/routes_spec.rb spec/controllers/sessions_controller_spec.rb spec/helpers/cucumber_helper_spec.rb spec/helpers/form_helper_spec.rb spec/helpers/front_end_helper_spec.rb spec/helpers/players_helper_spec.rb spec/helpers/sessions_helper_spec.rb spec/lib/adjustment_spec.rb spec/lib/project/caching_spec.rb spec/lib/project/locking_spec.rb spec/lib/hash_spec.rb spec/lib/importer_spec.rb spec/lib/interpolator_spec.rb spec/lib/selector/clause_spec.rb spec/lib/selector/complement_spec.rb spec/lib/selector/core_extensions_spec.rb spec/lib/selector/object_id_spec.rb spec/lib/selector/predicate_spec.rb spec/lib/selector/presentation_spec.rb spec/lib/selector_spec.rb spec/lib/simple_cache_spec.rb spec/lib/typecaster_spec.rb spec/lib/walker_spec.rb spec/models/achievement_ladder_spec.rb spec/models/achievement_spec.rb spec/models/activity_definition_spec.rb spec/models/activity_spec.rb spec/models/api_key_spec.rb spec/models/async_reward_spec.rb spec/models/behavior_leaderboard_spec.rb spec/models/component_spec.rb spec/models/content_spec.rb spec/models/destroy_spec.rb spec/models/group_spec.rb spec/models/leaderboard_spec.rb spec/models/leaky_pail_spec.rb spec/models/level_spec.rb spec/models/levels_stat_spec.rb spec/models/mailer_template_spec.rb spec/models/memoization_spec.rb spec/models/meta_condition_spec.rb spec/models/network_spec.rb spec/models/next_reward_spec.rb spec/models/notifier_spec.rb spec/models/player_spec.rb spec/models/players_stat_spec.rb spec/models/reward_definition_spec.rb spec/models/reward_leaderboard_spec.rb spec/models/reward_spec.rb spec/models/simple_behavior_spec.rb spec/models/site_spec.rb spec/models/stats_resource_spec.rb spec/models/style_set_spec.rb spec/models/tx_leaderboard_position_spec.rb spec/models/unit_spec.rb spec/models/user_spec.rb -- --color /Users/Hao/.rvm/gems/ruby-1.8.7-p174@global/gems/bundler-1.0.18/lib/bundler.rb:207: warning: Insecure world writable dir /Users/Hao/Documents/Projects/project in PATH, mode 040777 /Users/Hao/.rvm/gems/ruby-1.8.7-p174@global/gems/bundler-1.0.18/lib/bundler/runtime.rb:136: warning: Insecure world writable dir /Users/Hao/Documents/Projects/project in PATH, mode 040777 /Users/Hao/.rvm/gems/ruby-1.8.7-p174@global/gems/bundler-1.0.18/lib/bundler.rb:207: warning: Insecure world writable dir /Users/Hao/Documents/Projects/project in PATH, mode 040777 /Users/Hao/.rvm/gems/ruby-1.8.7-p174@global/gems/bundler-1.0.18/lib/bundler/runtime.rb:136: warning: Insecure world writable dir /Users/Hao/Documents/Projects/project in PATH, mode 040777 ./spec/controllers/api_base_controller_spec.rb:1: uninitialized constant Api (NameError) from /Users/Hao/.rvm/gems/ruby-1.8.7-p174@project.project.master/gems/rcov-0.9.10/bin/rcov:516:in `load' from /Users/Hao/.rvm/gems/ruby-1.8.7-p174@project.project.master/gems/rcov-0.9.10/bin/rcov:516 from /Users/Hao/.rvm/gems/ruby-1.8.7-p174@project.project.master/bin/rcov:19:in `load' from /Users/Hao/.rvm/gems/ruby-1.8.7-p174@project.project.master/bin/rcov:19 rake aborted! ``` The class name is Api::Berlin::BaseController. Rspec works fine when run standalone. However, with Rcov, it doesn't recognize the Api because class Api is never defined. It's just namespaced by the folder. Using Rspec 2.6.0, Rake 0.8.7, Ruby 1.8.7-p174, Rails 3.0.5, Rcov 0.9.10
1.0
Rcov doesn't play nicely with Rspec and namespaced classes - Using Rspec with Rcov, more specifically the RakeTask in Rspec, doesn't play nicely with Rcov. Here is my RakeTask ``` ruby require 'rspec/core/rake_task' require 'cucumber/rake/task' namespace :rcov do rcov_options = %w{ --rails --exclude osx\/objc,gems\/,spec\/,features\/,seeds\/ --aggregate coverage/coverage.data } Cucumber::Rake::Task.new(:cucumber) do |t| t.cucumber_opts = "--format pretty" t.rcov = true t.rcov_opts = rcov_options end RSpec::Core::RakeTask.new(:rspec) do |t| t.spec_opts = ["--color"] t.pattern = 'spec/**/*_spec.rb' t.rcov = true t.verbose = true t.rcov_opts = rcov_options t.rcov_opts += %w{--include views -Ispec} end desc "Run cucumber & rspec to generate aggregated coverage" task :all do |t| rm "coverage/coverage.data" if File.exist?("coverage/coverage.data") Rake::Task["rcov:cucumber"].invoke Rake::Task['rcov:rspec'].invoke end end ``` and the output when the Rspec section is run: ``` /Users/Hao/.rvm/rubies/ruby-1.8.7-p174/bin/ruby -S bundle exec rcov -Ispec:lib --rails --exclude osx\/objc,gems\/,spec\/,features\/,seeds\/ --aggregate coverage/coverage.data --include views -Ispec spec/controllers/api_base_controller_spec.rb spec/controllers/application_controller_spec.rb spec/controllers/players_controller_spec.rb spec/controllers/routes_spec.rb spec/controllers/sessions_controller_spec.rb spec/helpers/cucumber_helper_spec.rb spec/helpers/form_helper_spec.rb spec/helpers/front_end_helper_spec.rb spec/helpers/players_helper_spec.rb spec/helpers/sessions_helper_spec.rb spec/lib/adjustment_spec.rb spec/lib/project/caching_spec.rb spec/lib/project/locking_spec.rb spec/lib/hash_spec.rb spec/lib/importer_spec.rb spec/lib/interpolator_spec.rb spec/lib/selector/clause_spec.rb spec/lib/selector/complement_spec.rb spec/lib/selector/core_extensions_spec.rb spec/lib/selector/object_id_spec.rb spec/lib/selector/predicate_spec.rb spec/lib/selector/presentation_spec.rb spec/lib/selector_spec.rb spec/lib/simple_cache_spec.rb spec/lib/typecaster_spec.rb spec/lib/walker_spec.rb spec/models/achievement_ladder_spec.rb spec/models/achievement_spec.rb spec/models/activity_definition_spec.rb spec/models/activity_spec.rb spec/models/api_key_spec.rb spec/models/async_reward_spec.rb spec/models/behavior_leaderboard_spec.rb spec/models/component_spec.rb spec/models/content_spec.rb spec/models/destroy_spec.rb spec/models/group_spec.rb spec/models/leaderboard_spec.rb spec/models/leaky_pail_spec.rb spec/models/level_spec.rb spec/models/levels_stat_spec.rb spec/models/mailer_template_spec.rb spec/models/memoization_spec.rb spec/models/meta_condition_spec.rb spec/models/network_spec.rb spec/models/next_reward_spec.rb spec/models/notifier_spec.rb spec/models/player_spec.rb spec/models/players_stat_spec.rb spec/models/reward_definition_spec.rb spec/models/reward_leaderboard_spec.rb spec/models/reward_spec.rb spec/models/simple_behavior_spec.rb spec/models/site_spec.rb spec/models/stats_resource_spec.rb spec/models/style_set_spec.rb spec/models/tx_leaderboard_position_spec.rb spec/models/unit_spec.rb spec/models/user_spec.rb -- --color /Users/Hao/.rvm/gems/ruby-1.8.7-p174@global/gems/bundler-1.0.18/lib/bundler.rb:207: warning: Insecure world writable dir /Users/Hao/Documents/Projects/project in PATH, mode 040777 /Users/Hao/.rvm/gems/ruby-1.8.7-p174@global/gems/bundler-1.0.18/lib/bundler/runtime.rb:136: warning: Insecure world writable dir /Users/Hao/Documents/Projects/project in PATH, mode 040777 /Users/Hao/.rvm/gems/ruby-1.8.7-p174@global/gems/bundler-1.0.18/lib/bundler.rb:207: warning: Insecure world writable dir /Users/Hao/Documents/Projects/project in PATH, mode 040777 /Users/Hao/.rvm/gems/ruby-1.8.7-p174@global/gems/bundler-1.0.18/lib/bundler/runtime.rb:136: warning: Insecure world writable dir /Users/Hao/Documents/Projects/project in PATH, mode 040777 ./spec/controllers/api_base_controller_spec.rb:1: uninitialized constant Api (NameError) from /Users/Hao/.rvm/gems/ruby-1.8.7-p174@project.project.master/gems/rcov-0.9.10/bin/rcov:516:in `load' from /Users/Hao/.rvm/gems/ruby-1.8.7-p174@project.project.master/gems/rcov-0.9.10/bin/rcov:516 from /Users/Hao/.rvm/gems/ruby-1.8.7-p174@project.project.master/bin/rcov:19:in `load' from /Users/Hao/.rvm/gems/ruby-1.8.7-p174@project.project.master/bin/rcov:19 rake aborted! ``` The class name is Api::Berlin::BaseController. Rspec works fine when run standalone. However, with Rcov, it doesn't recognize the Api because class Api is never defined. It's just namespaced by the folder. Using Rspec 2.6.0, Rake 0.8.7, Ruby 1.8.7-p174, Rails 3.0.5, Rcov 0.9.10
defect
rcov doesn t play nicely with rspec and namespaced classes using rspec with rcov more specifically the raketask in rspec doesn t play nicely with rcov here is my raketask ruby require rspec core rake task require cucumber rake task namespace rcov do rcov options w rails exclude osx objc gems spec features seeds aggregate coverage coverage data cucumber rake task new cucumber do t t cucumber opts format pretty t rcov true t rcov opts rcov options end rspec core raketask new rspec do t t spec opts t pattern spec spec rb t rcov true t verbose true t rcov opts rcov options t rcov opts w include views ispec end desc run cucumber rspec to generate aggregated coverage task all do t rm coverage coverage data if file exist coverage coverage data rake task invoke rake task invoke end end and the output when the rspec section is run users hao rvm rubies ruby bin ruby s bundle exec rcov ispec lib rails exclude osx objc gems spec features seeds aggregate coverage coverage data include views ispec spec controllers api base controller spec rb spec controllers application controller spec rb spec controllers players controller spec rb spec controllers routes spec rb spec controllers sessions controller spec rb spec helpers cucumber helper spec rb spec helpers form helper spec rb spec helpers front end helper spec rb spec helpers players helper spec rb spec helpers sessions helper spec rb spec lib adjustment spec rb spec lib project caching spec rb spec lib project locking spec rb spec lib hash spec rb spec lib importer spec rb spec lib interpolator spec rb spec lib selector clause spec rb spec lib selector complement spec rb spec lib selector core extensions spec rb spec lib selector object id spec rb spec lib selector predicate spec rb spec lib selector presentation spec rb spec lib selector spec rb spec lib simple cache spec rb spec lib typecaster spec rb spec lib walker spec rb spec models achievement ladder spec rb spec models achievement spec rb spec models activity definition spec rb spec models activity spec rb spec models api key spec rb spec models async reward spec rb spec models behavior leaderboard spec rb spec models component spec rb spec models content spec rb spec models destroy spec rb spec models group spec rb spec models leaderboard spec rb spec models leaky pail spec rb spec models level spec rb spec models levels stat spec rb spec models mailer template spec rb spec models memoization spec rb spec models meta condition spec rb spec models network spec rb spec models next reward spec rb spec models notifier spec rb spec models player spec rb spec models players stat spec rb spec models reward definition spec rb spec models reward leaderboard spec rb spec models reward spec rb spec models simple behavior spec rb spec models site spec rb spec models stats resource spec rb spec models style set spec rb spec models tx leaderboard position spec rb spec models unit spec rb spec models user spec rb color users hao rvm gems ruby global gems bundler lib bundler rb warning insecure world writable dir users hao documents projects project in path mode users hao rvm gems ruby global gems bundler lib bundler runtime rb warning insecure world writable dir users hao documents projects project in path mode users hao rvm gems ruby global gems bundler lib bundler rb warning insecure world writable dir users hao documents projects project in path mode users hao rvm gems ruby global gems bundler lib bundler runtime rb warning insecure world writable dir users hao documents projects project in path mode spec controllers api base controller spec rb uninitialized constant api nameerror from users hao rvm gems ruby project project master gems rcov bin rcov in load from users hao rvm gems ruby project project master gems rcov bin rcov from users hao rvm gems ruby project project master bin rcov in load from users hao rvm gems ruby project project master bin rcov rake aborted the class name is api berlin basecontroller rspec works fine when run standalone however with rcov it doesn t recognize the api because class api is never defined it s just namespaced by the folder using rspec rake ruby rails rcov
1
56,499
3,080,052,800
IssuesEvent
2015-08-21 19:46:09
uclouvain/openjpeg
https://api.github.com/repos/uclouvain/openjpeg
closed
openjpeg decompress issue
bug Priority-Low
Originally reported on Google Code with ID 326 ``` I have a jp2 image, it is fail to decompress to bmp when I run opj_decompress exe. I found that p_colr_header_size == 35 not 7 in opj_jp2_read_colr function. If I ignore p_colr_header_size == 35, then jp2->enumcs get value 14, it is a CIELab color space. Then I get a bmp, but the color is not the same to adobe acrobat. Can openjpeg support CIELab color space in the future? Please help me, thanks a lot!!! ``` Reported by `xiaochuan.liu19880512` on 2014-04-03 08:10:58 <hr> * *Attachment: [head.jp2](https://storage.googleapis.com/google-code-attachments/openjpeg/issue-326/comment-0/head.jp2)*
1.0
openjpeg decompress issue - Originally reported on Google Code with ID 326 ``` I have a jp2 image, it is fail to decompress to bmp when I run opj_decompress exe. I found that p_colr_header_size == 35 not 7 in opj_jp2_read_colr function. If I ignore p_colr_header_size == 35, then jp2->enumcs get value 14, it is a CIELab color space. Then I get a bmp, but the color is not the same to adobe acrobat. Can openjpeg support CIELab color space in the future? Please help me, thanks a lot!!! ``` Reported by `xiaochuan.liu19880512` on 2014-04-03 08:10:58 <hr> * *Attachment: [head.jp2](https://storage.googleapis.com/google-code-attachments/openjpeg/issue-326/comment-0/head.jp2)*
non_defect
openjpeg decompress issue originally reported on google code with id i have a image it is fail to decompress to bmp when i run opj decompress exe i found that p colr header size not in opj read colr function if i ignore p colr header size then enumcs get value it is a cielab color space then i get a bmp but the color is not the same to adobe acrobat can openjpeg support cielab color space in the future please help me thanks a lot reported by xiaochuan on attachment
0
58,797
14,351,160,034
IssuesEvent
2020-11-30 00:09:34
NixOS/nixpkgs
https://api.github.com/repos/NixOS/nixpkgs
closed
Vulnerability roundup 92: claws-mail-3.17.4: 1 advisory [7.5]
1.severity: security
[search](https://search.nix.gsc.io/?q=claws-mail&i=fosho&repos=NixOS-nixpkgs), [files](https://github.com/NixOS/nixpkgs/search?utf8=%E2%9C%93&q=claws-mail+in%3Apath&type=Code) * [ ] [CVE-2020-16094](https://nvd.nist.gov/vuln/detail/CVE-2020-16094) CVSSv3=7.5 (nixos-20.03) Scanned versions: nixos-20.03: 925ae0dee63. Cc @fpletz Cc @globin
True
Vulnerability roundup 92: claws-mail-3.17.4: 1 advisory [7.5] - [search](https://search.nix.gsc.io/?q=claws-mail&i=fosho&repos=NixOS-nixpkgs), [files](https://github.com/NixOS/nixpkgs/search?utf8=%E2%9C%93&q=claws-mail+in%3Apath&type=Code) * [ ] [CVE-2020-16094](https://nvd.nist.gov/vuln/detail/CVE-2020-16094) CVSSv3=7.5 (nixos-20.03) Scanned versions: nixos-20.03: 925ae0dee63. Cc @fpletz Cc @globin
non_defect
vulnerability roundup claws mail advisory nixos scanned versions nixos cc fpletz cc globin
0
506,155
14,659,459,079
IssuesEvent
2020-12-28 20:33:10
code4lib/2021.code4lib.org
https://api.github.com/repos/code4lib/2021.code4lib.org
closed
Add 'Skip to Content' Links
Priority: Medium Status: In Progress
Add skip to content link to bypass navigation, especially on general info pages
1.0
Add 'Skip to Content' Links - Add skip to content link to bypass navigation, especially on general info pages
non_defect
add skip to content links add skip to content link to bypass navigation especially on general info pages
0
91,481
15,856,429,020
IssuesEvent
2021-04-08 02:19:12
Thezone1975/Office-Add-in-NodeJS-SSO
https://api.github.com/repos/Thezone1975/Office-Add-in-NodeJS-SSO
opened
CVE-2019-20149 (High) detected in kind-of-6.0.2.tgz
security vulnerability
## CVE-2019-20149 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>kind-of-6.0.2.tgz</b></p></summary> <p>Get the native type of a value.</p> <p>Library home page: <a href="https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz">https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz</a></p> <p>Path to dependency file: /Office-Add-in-NodeJS-SSO/Completed Multitenant/package.json</p> <p>Path to vulnerable library: Office-Add-in-NodeJS-SSO/Before/node_modules/kind-of/package.json,Office-Add-in-NodeJS-SSO/Before/node_modules/kind-of/package.json,Office-Add-in-NodeJS-SSO/Before/node_modules/kind-of/package.json</p> <p> Dependency Hierarchy: - cpx-1.5.0.tgz (Root Library) - chokidar-1.7.0.tgz - readdirp-2.2.1.tgz - micromatch-3.1.10.tgz - :x: **kind-of-6.0.2.tgz** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> ctorName in index.js in kind-of v6.0.2 allows external user input to overwrite certain internal attributes via a conflicting name, as demonstrated by 'constructor': {'name':'Symbol'}. Hence, a crafted payload can overwrite this builtin attribute to manipulate the type detection result. <p>Publish Date: 2019-12-30 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-20149>CVE-2019-20149</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: 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="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-20149">http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-20149</a></p> <p>Release Date: 2019-12-30</p> <p>Fix Resolution: 6.0.3</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-2019-20149 (High) detected in kind-of-6.0.2.tgz - ## CVE-2019-20149 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>kind-of-6.0.2.tgz</b></p></summary> <p>Get the native type of a value.</p> <p>Library home page: <a href="https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz">https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz</a></p> <p>Path to dependency file: /Office-Add-in-NodeJS-SSO/Completed Multitenant/package.json</p> <p>Path to vulnerable library: Office-Add-in-NodeJS-SSO/Before/node_modules/kind-of/package.json,Office-Add-in-NodeJS-SSO/Before/node_modules/kind-of/package.json,Office-Add-in-NodeJS-SSO/Before/node_modules/kind-of/package.json</p> <p> Dependency Hierarchy: - cpx-1.5.0.tgz (Root Library) - chokidar-1.7.0.tgz - readdirp-2.2.1.tgz - micromatch-3.1.10.tgz - :x: **kind-of-6.0.2.tgz** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> ctorName in index.js in kind-of v6.0.2 allows external user input to overwrite certain internal attributes via a conflicting name, as demonstrated by 'constructor': {'name':'Symbol'}. Hence, a crafted payload can overwrite this builtin attribute to manipulate the type detection result. <p>Publish Date: 2019-12-30 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-20149>CVE-2019-20149</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: 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="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-20149">http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-20149</a></p> <p>Release Date: 2019-12-30</p> <p>Fix Resolution: 6.0.3</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 kind of tgz cve high severity vulnerability vulnerable library kind of tgz get the native type of a value library home page a href path to dependency file office add in nodejs sso completed multitenant package json path to vulnerable library office add in nodejs sso before node modules kind of package json office add in nodejs sso before node modules kind of package json office add in nodejs sso before node modules kind of package json dependency hierarchy cpx tgz root library chokidar tgz readdirp tgz micromatch tgz x kind of tgz vulnerable library vulnerability details ctorname in index js in kind of allows external user input to overwrite certain internal attributes via a conflicting name as demonstrated by constructor name symbol hence a crafted payload can overwrite this builtin attribute to manipulate the type detection result 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 high availability impact none 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
49,544
13,187,230,383
IssuesEvent
2020-08-13 02:45:41
icecube-trac/tix3
https://api.github.com/repos/icecube-trac/tix3
opened
[filterscripts] SnowCorrectionFactor has disappeared (Trac #1642)
Incomplete Migration Migrated from Trac combo reconstruction defect
<details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/1642">https://code.icecube.wisc.edu/ticket/1642</a>, reported by david.schultz and owned by kath</em></summary> <p> ```json { "status": "closed", "changetime": "2019-02-13T14:11:57", "description": "from filterscripts/python/cosmicrayreco.py:\n{{{\n ## The Seed service\n tray.AddService('I3LaputopSeedServiceFactory', name + '_ToprecSeed',\n InCore = ShowerCOG, \n InPlane = ShowerPlane, \n SnowCorrectionFactor = SnowFactor,\n Beta = 2.6, # ! first guess for Beta\n InputPulses = Pulses # ! this'll let it first-guess at S125 automatically\n )\n}}}\n\nApparently SnowCorrectionFactor is an invalid parameter now. No clue what to do with this.", "reporter": "david.schultz", "cc": "", "resolution": "fixed", "_ts": "1550067117911749", "component": "combo reconstruction", "summary": "[filterscripts] SnowCorrectionFactor has disappeared", "priority": "blocker", "keywords": "", "time": "2016-04-17T19:47:21", "milestone": "", "owner": "kath", "type": "defect" } ``` </p> </details>
1.0
[filterscripts] SnowCorrectionFactor has disappeared (Trac #1642) - <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/1642">https://code.icecube.wisc.edu/ticket/1642</a>, reported by david.schultz and owned by kath</em></summary> <p> ```json { "status": "closed", "changetime": "2019-02-13T14:11:57", "description": "from filterscripts/python/cosmicrayreco.py:\n{{{\n ## The Seed service\n tray.AddService('I3LaputopSeedServiceFactory', name + '_ToprecSeed',\n InCore = ShowerCOG, \n InPlane = ShowerPlane, \n SnowCorrectionFactor = SnowFactor,\n Beta = 2.6, # ! first guess for Beta\n InputPulses = Pulses # ! this'll let it first-guess at S125 automatically\n )\n}}}\n\nApparently SnowCorrectionFactor is an invalid parameter now. No clue what to do with this.", "reporter": "david.schultz", "cc": "", "resolution": "fixed", "_ts": "1550067117911749", "component": "combo reconstruction", "summary": "[filterscripts] SnowCorrectionFactor has disappeared", "priority": "blocker", "keywords": "", "time": "2016-04-17T19:47:21", "milestone": "", "owner": "kath", "type": "defect" } ``` </p> </details>
defect
snowcorrectionfactor has disappeared trac migrated from json status closed changetime description from filterscripts python cosmicrayreco py n n the seed service n tray addservice name toprecseed n incore showercog n inplane showerplane n snowcorrectionfactor snowfactor n beta first guess for beta n inputpulses pulses this ll let it first guess at automatically n n n napparently snowcorrectionfactor is an invalid parameter now no clue what to do with this reporter david schultz cc resolution fixed ts component combo reconstruction summary snowcorrectionfactor has disappeared priority blocker keywords time milestone owner kath type defect
1
215,247
7,292,838,305
IssuesEvent
2018-02-25 06:54:06
openshift/origin
https://api.github.com/repos/openshift/origin
closed
oadm registry should let me specify requests and limits
area/performance component/imageregistry lifecycle/stale priority/P2
The registry is a critical piece of infrastructure and should not run as best effort quality of service by default. The command should let users specify requests and limits similar to the run command. It should warn users that running registries without specifying requests and limits in a production environment is not recommended. Documentation should make it clear that requests and limits should be set for this component. This came to my attention when I was debugging the wedged pods in terminating problem as it appears to be caused by failure to pull images from a registry. /cc @ncdc @eparis @smarterclayton @liggitt @pweil-
1.0
oadm registry should let me specify requests and limits - The registry is a critical piece of infrastructure and should not run as best effort quality of service by default. The command should let users specify requests and limits similar to the run command. It should warn users that running registries without specifying requests and limits in a production environment is not recommended. Documentation should make it clear that requests and limits should be set for this component. This came to my attention when I was debugging the wedged pods in terminating problem as it appears to be caused by failure to pull images from a registry. /cc @ncdc @eparis @smarterclayton @liggitt @pweil-
non_defect
oadm registry should let me specify requests and limits the registry is a critical piece of infrastructure and should not run as best effort quality of service by default the command should let users specify requests and limits similar to the run command it should warn users that running registries without specifying requests and limits in a production environment is not recommended documentation should make it clear that requests and limits should be set for this component this came to my attention when i was debugging the wedged pods in terminating problem as it appears to be caused by failure to pull images from a registry cc ncdc eparis smarterclayton liggitt pweil
0
29,542
5,716,731,525
IssuesEvent
2017-04-19 15:42:41
opencaching/opencaching-pl
https://api.github.com/repos/opencaching/opencaching-pl
closed
Print list redirects to homepage
Component_Cache Component_ListOfCaches Priority_Critical Type_Defect
This issue is reproductible across all nodes. Steps to reproduce: - open a cache - add to list - open another cache - add to list [...] - show the list (clipboard / temporary memory) - press "print all" link = http://www.opencaching.XX/printcache.php?source=mylist You are redirected to the home page. Problem lies in the logic of `printcache.php` : ``` if (!$cache_id) { if ($error == true || !$usr || ( ( !empty(PrintList::GetContent()) ) && ($_GET['source'] != 'mywatches'))) { header("Location:index.php"); die(); } } ```
1.0
Print list redirects to homepage - This issue is reproductible across all nodes. Steps to reproduce: - open a cache - add to list - open another cache - add to list [...] - show the list (clipboard / temporary memory) - press "print all" link = http://www.opencaching.XX/printcache.php?source=mylist You are redirected to the home page. Problem lies in the logic of `printcache.php` : ``` if (!$cache_id) { if ($error == true || !$usr || ( ( !empty(PrintList::GetContent()) ) && ($_GET['source'] != 'mywatches'))) { header("Location:index.php"); die(); } } ```
defect
print list redirects to homepage this issue is reproductible across all nodes steps to reproduce open a cache add to list open another cache add to list show the list clipboard temporary memory press print all link you are redirected to the home page problem lies in the logic of printcache php if cache id if error true usr empty printlist getcontent get mywatches header location index php die
1
100,546
30,723,069,200
IssuesEvent
2023-07-27 17:22:47
spack/spack
https://api.github.com/repos/spack/spack
opened
Installation issue: cgns tries to use mpifc even if fortran is disabled
build-error
### Steps to reproduce the issue ```console $ spack spec -I cgns@4.3.0~fortran ^mpich@4.1.1~fortran Input spec -------------------------------- - cgns@4.3.0~fortran - ^mpich@4.1.1~fortran Concretized -------------------------------- - cgns@4.3.0%clang@16.0.0~base_scope~fortran+hdf5~int64~ipo~legacy~mem_debug+mpi+scoping+shared~static~testing~tools build_system=cmake build_type=RelWithDebInfo generator=make arch=linux-ubuntu20.04-haswell [+] ^cmake@3.25.1%clang@16.0.0~doc+ncurses+ownlibs~qt build_system=generic build_type=Release arch=linux-ubuntu20.04-haswell [+] ^gmake@4.2.1%clang@16.0.0~guile build_system=autotools patches=ca60bd9,fe5b60d arch=linux-ubuntu20.04-haswell [+] ^hdf5@1.12.2%clang@16.0.0~cxx~fortran~hl~ipo~java+mpi+shared~szip~threadsafe+tools api=default build_system=cmake build_type=RelWithDebInfo generator=make arch=linux-ubuntu20.04-haswell [+] ^pkgconf@1.8.0%clang@16.0.0 build_system=autotools arch=linux-ubuntu20.04-haswell [+] ^zlib@1.2.13%clang@16.0.0+optimize+pic+shared build_system=makefile arch=linux-ubuntu20.04-haswell [+] ^mpich@4.1.1%clang@16.0.0~argobots~cuda~fortran+hwloc+hydra+libxml2+pci~rocm+romio~slurm~two_level_namespace~vci~verbs+wrapperrpath build_system=autotools datatype-engine=auto device=ch4 netmod=ofi pmi=pmi arch=linux-ubuntu20.04-haswell [+] ^findutils@4.7.0%clang@16.0.0 build_system=autotools arch=linux-ubuntu20.04-haswell [+] ^hwloc@2.9.1%clang@16.0.0~cairo~cuda~gl~libudev+libxml2~netloc~nvml~oneapi-level-zero~opencl+pci~rocm build_system=autotools libs=shared,static arch=linux-ubuntu20.04-haswell [+] ^ncurses@6.2.20200212%clang@16.0.0+symlinks+termlib abi=6 build_system=autotools arch=linux-ubuntu20.04-haswell [+] ^libfabric@1.18.0%clang@16.0.0~debug~kdreg build_system=autotools fabrics=sockets,tcp,udp arch=linux-ubuntu20.04-haswell [+] ^libpciaccess@0.17%clang@16.0.0 build_system=autotools arch=linux-ubuntu20.04-haswell [+] ^libtool@2.4.6%clang@16.0.0 build_system=autotools arch=linux-ubuntu20.04-haswell [+] ^util-macros@1.19.3%clang@16.0.0 build_system=autotools arch=linux-ubuntu20.04-haswell [+] ^libxml2@2.10.3%clang@16.0.0~python build_system=autotools arch=linux-ubuntu20.04-haswell [+] ^libiconv@1.17%clang@16.0.0 build_system=autotools libs=shared,static arch=linux-ubuntu20.04-haswell [+] ^xz@5.2.4%clang@16.0.0~pic build_system=autotools libs=shared,static arch=linux-ubuntu20.04-haswell [+] ^yaksa@0.2%gcc@12.2.0~cuda~rocm build_system=autotools arch=linux-ubuntu20.04-haswell [-] ^autoconf@2.69%gcc@12.2.0 build_system=autotools patches=7793209 arch=linux-ubuntu20.04-haswell [-] ^automake@1.16.1%gcc@12.2.0 build_system=autotools arch=linux-ubuntu20.04-haswell [-] ^libtool@2.4.6%gcc@12.2.0 build_system=autotools arch=linux-ubuntu20.04-haswell [-] ^m4@1.4.18%gcc@12.2.0+sigsegv build_system=autotools patches=3877ab5,fc9b616 arch=linux-ubuntu20.04-haswell [-] ^python@3.8.10%gcc@12.2.0+bz2+crypt+ctypes+dbm~debug+libxml2+lzma~nis~optimizations+pic+pyexpat+pythoncmd+readline+shared+sqlite3+ssl~tkinter+uuid+zlib build_system=generic patches=0d98e93,4c24573,f2fd060 arch=linux-ubuntu20.04-haswell ``` ### Error message <details><summary>Error message</summary> <pre> ==> Error: AttributeError: 'Spec' object has no attribute 'mpifc' The 'cgns' package cannot find an attribute while trying to build from sources. This might be due to a change in Spack's package format to support multiple build-systems for a single package. You can fix this by updating the build recipe, and you can also report the issue as a bug. More information at https://spack.readthedocs.io/en/latest/packaging_guide.html#installation-procedure /home/nmmoral/opt/spack/var/spack/repos/builtin/packages/cgns/package.py:93, in cmake_args: 90 [ 91 "-DCMAKE_C_COMPILER=%s" % spec["mpi"].mpicc, 92 "-DCMAKE_CXX_COMPILER=%s" % spec["mpi"].mpicxx, >> 93 "-DCMAKE_Fortran_COMPILER=%s" % spec["mpi"].mpifc, 94 ] 95 ) 96 See build log for details: /tmp/nmmoral/spack-stage/spack-stage-cgns-4.3.0-h42e75qpcnab3ozroegcqbrx2ghlqkat/spack-build-out.txt </pre></details> ### Information on your system ``` * **Spack:** 0.20.0.dev0 (f5c32d57e051a8ea6f04bc86f3df5867ea1ab49e) * **Python:** 3.8.10 * **Platform:** linux-ubuntu20.04-skylake_avx512 * **Concretizer:** clingo ``` ### Additional information Maintainer: @gsjaardema Note the bug here is that the recipe for cgns unconditionally sets the fortran compiler to mpifc even if mpifc is not available in the mpi install. spack-build-out.txt ``` ==> cgns: Executing phase: 'cmake' ``` I can't upload my spack-build-env but please contact me if you need some specific info. I don't think it's too relevant to the bug however. ### General information - [X] I have run `spack debug report` and reported the version of Spack/Python/Platform - [X] I have run `spack maintainers <name-of-the-package>` and **@mentioned** any maintainers - [X] I have uploaded the build log and environment files - [X] I have searched the issues of this repo and believe this is not a duplicate
1.0
Installation issue: cgns tries to use mpifc even if fortran is disabled - ### Steps to reproduce the issue ```console $ spack spec -I cgns@4.3.0~fortran ^mpich@4.1.1~fortran Input spec -------------------------------- - cgns@4.3.0~fortran - ^mpich@4.1.1~fortran Concretized -------------------------------- - cgns@4.3.0%clang@16.0.0~base_scope~fortran+hdf5~int64~ipo~legacy~mem_debug+mpi+scoping+shared~static~testing~tools build_system=cmake build_type=RelWithDebInfo generator=make arch=linux-ubuntu20.04-haswell [+] ^cmake@3.25.1%clang@16.0.0~doc+ncurses+ownlibs~qt build_system=generic build_type=Release arch=linux-ubuntu20.04-haswell [+] ^gmake@4.2.1%clang@16.0.0~guile build_system=autotools patches=ca60bd9,fe5b60d arch=linux-ubuntu20.04-haswell [+] ^hdf5@1.12.2%clang@16.0.0~cxx~fortran~hl~ipo~java+mpi+shared~szip~threadsafe+tools api=default build_system=cmake build_type=RelWithDebInfo generator=make arch=linux-ubuntu20.04-haswell [+] ^pkgconf@1.8.0%clang@16.0.0 build_system=autotools arch=linux-ubuntu20.04-haswell [+] ^zlib@1.2.13%clang@16.0.0+optimize+pic+shared build_system=makefile arch=linux-ubuntu20.04-haswell [+] ^mpich@4.1.1%clang@16.0.0~argobots~cuda~fortran+hwloc+hydra+libxml2+pci~rocm+romio~slurm~two_level_namespace~vci~verbs+wrapperrpath build_system=autotools datatype-engine=auto device=ch4 netmod=ofi pmi=pmi arch=linux-ubuntu20.04-haswell [+] ^findutils@4.7.0%clang@16.0.0 build_system=autotools arch=linux-ubuntu20.04-haswell [+] ^hwloc@2.9.1%clang@16.0.0~cairo~cuda~gl~libudev+libxml2~netloc~nvml~oneapi-level-zero~opencl+pci~rocm build_system=autotools libs=shared,static arch=linux-ubuntu20.04-haswell [+] ^ncurses@6.2.20200212%clang@16.0.0+symlinks+termlib abi=6 build_system=autotools arch=linux-ubuntu20.04-haswell [+] ^libfabric@1.18.0%clang@16.0.0~debug~kdreg build_system=autotools fabrics=sockets,tcp,udp arch=linux-ubuntu20.04-haswell [+] ^libpciaccess@0.17%clang@16.0.0 build_system=autotools arch=linux-ubuntu20.04-haswell [+] ^libtool@2.4.6%clang@16.0.0 build_system=autotools arch=linux-ubuntu20.04-haswell [+] ^util-macros@1.19.3%clang@16.0.0 build_system=autotools arch=linux-ubuntu20.04-haswell [+] ^libxml2@2.10.3%clang@16.0.0~python build_system=autotools arch=linux-ubuntu20.04-haswell [+] ^libiconv@1.17%clang@16.0.0 build_system=autotools libs=shared,static arch=linux-ubuntu20.04-haswell [+] ^xz@5.2.4%clang@16.0.0~pic build_system=autotools libs=shared,static arch=linux-ubuntu20.04-haswell [+] ^yaksa@0.2%gcc@12.2.0~cuda~rocm build_system=autotools arch=linux-ubuntu20.04-haswell [-] ^autoconf@2.69%gcc@12.2.0 build_system=autotools patches=7793209 arch=linux-ubuntu20.04-haswell [-] ^automake@1.16.1%gcc@12.2.0 build_system=autotools arch=linux-ubuntu20.04-haswell [-] ^libtool@2.4.6%gcc@12.2.0 build_system=autotools arch=linux-ubuntu20.04-haswell [-] ^m4@1.4.18%gcc@12.2.0+sigsegv build_system=autotools patches=3877ab5,fc9b616 arch=linux-ubuntu20.04-haswell [-] ^python@3.8.10%gcc@12.2.0+bz2+crypt+ctypes+dbm~debug+libxml2+lzma~nis~optimizations+pic+pyexpat+pythoncmd+readline+shared+sqlite3+ssl~tkinter+uuid+zlib build_system=generic patches=0d98e93,4c24573,f2fd060 arch=linux-ubuntu20.04-haswell ``` ### Error message <details><summary>Error message</summary> <pre> ==> Error: AttributeError: 'Spec' object has no attribute 'mpifc' The 'cgns' package cannot find an attribute while trying to build from sources. This might be due to a change in Spack's package format to support multiple build-systems for a single package. You can fix this by updating the build recipe, and you can also report the issue as a bug. More information at https://spack.readthedocs.io/en/latest/packaging_guide.html#installation-procedure /home/nmmoral/opt/spack/var/spack/repos/builtin/packages/cgns/package.py:93, in cmake_args: 90 [ 91 "-DCMAKE_C_COMPILER=%s" % spec["mpi"].mpicc, 92 "-DCMAKE_CXX_COMPILER=%s" % spec["mpi"].mpicxx, >> 93 "-DCMAKE_Fortran_COMPILER=%s" % spec["mpi"].mpifc, 94 ] 95 ) 96 See build log for details: /tmp/nmmoral/spack-stage/spack-stage-cgns-4.3.0-h42e75qpcnab3ozroegcqbrx2ghlqkat/spack-build-out.txt </pre></details> ### Information on your system ``` * **Spack:** 0.20.0.dev0 (f5c32d57e051a8ea6f04bc86f3df5867ea1ab49e) * **Python:** 3.8.10 * **Platform:** linux-ubuntu20.04-skylake_avx512 * **Concretizer:** clingo ``` ### Additional information Maintainer: @gsjaardema Note the bug here is that the recipe for cgns unconditionally sets the fortran compiler to mpifc even if mpifc is not available in the mpi install. spack-build-out.txt ``` ==> cgns: Executing phase: 'cmake' ``` I can't upload my spack-build-env but please contact me if you need some specific info. I don't think it's too relevant to the bug however. ### General information - [X] I have run `spack debug report` and reported the version of Spack/Python/Platform - [X] I have run `spack maintainers <name-of-the-package>` and **@mentioned** any maintainers - [X] I have uploaded the build log and environment files - [X] I have searched the issues of this repo and believe this is not a duplicate
non_defect
installation issue cgns tries to use mpifc even if fortran is disabled steps to reproduce the issue console spack spec i cgns fortran mpich fortran input spec cgns fortran mpich fortran concretized cgns clang base scope fortran ipo legacy mem debug mpi scoping shared static testing tools build system cmake build type relwithdebinfo generator make arch linux haswell cmake clang doc ncurses ownlibs qt build system generic build type release arch linux haswell gmake clang guile build system autotools patches arch linux haswell clang cxx fortran hl ipo java mpi shared szip threadsafe tools api default build system cmake build type relwithdebinfo generator make arch linux haswell pkgconf clang build system autotools arch linux haswell zlib clang optimize pic shared build system makefile arch linux haswell mpich clang argobots cuda fortran hwloc hydra pci rocm romio slurm two level namespace vci verbs wrapperrpath build system autotools datatype engine auto device netmod ofi pmi pmi arch linux haswell findutils clang build system autotools arch linux haswell hwloc clang cairo cuda gl libudev netloc nvml oneapi level zero opencl pci rocm build system autotools libs shared static arch linux haswell ncurses clang symlinks termlib abi build system autotools arch linux haswell libfabric clang debug kdreg build system autotools fabrics sockets tcp udp arch linux haswell libpciaccess clang build system autotools arch linux haswell libtool clang build system autotools arch linux haswell util macros clang build system autotools arch linux haswell clang python build system autotools arch linux haswell libiconv clang build system autotools libs shared static arch linux haswell xz clang pic build system autotools libs shared static arch linux haswell yaksa gcc cuda rocm build system autotools arch linux haswell autoconf gcc build system autotools patches arch linux haswell automake gcc build system autotools arch linux haswell libtool gcc build system autotools arch linux haswell gcc sigsegv build system autotools patches arch linux haswell python gcc crypt ctypes dbm debug lzma nis optimizations pic pyexpat pythoncmd readline shared ssl tkinter uuid zlib build system generic patches arch linux haswell error message error message error attributeerror spec object has no attribute mpifc the cgns package cannot find an attribute while trying to build from sources this might be due to a change in spack s package format to support multiple build systems for a single package you can fix this by updating the build recipe and you can also report the issue as a bug more information at home nmmoral opt spack var spack repos builtin packages cgns package py in cmake args dcmake c compiler s spec mpicc dcmake cxx compiler s spec mpicxx dcmake fortran compiler s spec mpifc see build log for details tmp nmmoral spack stage spack stage cgns spack build out txt information on your system spack python platform linux skylake concretizer clingo additional information maintainer gsjaardema note the bug here is that the recipe for cgns unconditionally sets the fortran compiler to mpifc even if mpifc is not available in the mpi install spack build out txt cgns executing phase cmake i can t upload my spack build env but please contact me if you need some specific info i don t think it s too relevant to the bug however general information i have run spack debug report and reported the version of spack python platform i have run spack maintainers and mentioned any maintainers i have uploaded the build log and environment files i have searched the issues of this repo and believe this is not a duplicate
0
230,210
18,517,014,956
IssuesEvent
2021-10-20 11:17:10
elastic/elasticsearch
https://api.github.com/repos/elastic/elasticsearch
closed
`ClusterHealthRequestTests.testBwcSerialization` shouldn't be a unit test
>test-failure :Distributed/Distributed Team:Distributed
There is a specific set of tests which deals with BWC according to the backward compatibility guarantees of ES as a product. `testBwcSerialization` manually checks the compatibility all the way back to 7.2.0.
1.0
`ClusterHealthRequestTests.testBwcSerialization` shouldn't be a unit test - There is a specific set of tests which deals with BWC according to the backward compatibility guarantees of ES as a product. `testBwcSerialization` manually checks the compatibility all the way back to 7.2.0.
non_defect
clusterhealthrequesttests testbwcserialization shouldn t be a unit test there is a specific set of tests which deals with bwc according to the backward compatibility guarantees of es as a product testbwcserialization manually checks the compatibility all the way back to
0
12,070
2,683,634,142
IssuesEvent
2015-03-28 04:49:07
Optiboot/optiboot
https://api.github.com/repos/Optiboot/optiboot
closed
VIRTUAL_BOOT doesn't work
auto-migrated Priority-Medium Type-Defect
``` It's been a long time since anyone has tried to build/use an optiboot that uses the Virtual boot partition feature, so it's not too surprising that it doesn't work. First, the Makefile target "virboot328" sets -DVIRTUAL_BOOT, but the source code checks VIRTUAL_BOOT_PARTITION http://forum.arduino.cc/index.php?topic=304207 ``` Original issue reported on code.google.com by `wes...@gmail.com` on 6 Mar 2015 at 4:02
1.0
VIRTUAL_BOOT doesn't work - ``` It's been a long time since anyone has tried to build/use an optiboot that uses the Virtual boot partition feature, so it's not too surprising that it doesn't work. First, the Makefile target "virboot328" sets -DVIRTUAL_BOOT, but the source code checks VIRTUAL_BOOT_PARTITION http://forum.arduino.cc/index.php?topic=304207 ``` Original issue reported on code.google.com by `wes...@gmail.com` on 6 Mar 2015 at 4:02
defect
virtual boot doesn t work it s been a long time since anyone has tried to build use an optiboot that uses the virtual boot partition feature so it s not too surprising that it doesn t work first the makefile target sets dvirtual boot but the source code checks virtual boot partition original issue reported on code google com by wes gmail com on mar at
1
157,032
24,628,091,691
IssuesEvent
2022-10-16 19:24:41
zooniverse/front-end-monorepo
https://api.github.com/repos/zooniverse/front-end-monorepo
closed
Video Subject: Style the VideoController speed options the same as flip book
design ui video subject
## Package lib-classifier ## Describe the problem The flip book is an incoming feature for FEM. The video subject viewer speed controls and the flip book speed controls should be styled the same for consistency. ## Describe the solution you'd like An example of current video subject viewer VideoController speed controls: <img width="789" alt="Screen Shot 2022-09-06 at 10 58 27 AM" src="https://user-images.githubusercontent.com/23665803/188681926-90ebd063-1c55-43f5-92be-506485aa4f0a.png"> Zooniverse team members can see the work in progress speed controls for the flip book here: https://projects.invisionapp.com/prototype/Flipbook-Viewer-cl7ar8qa402m83i01w6uvj5hq/play/f32b2cd2 <img width="615" alt="Screen Shot 2022-09-06 at 10 59 27 AM" src="https://user-images.githubusercontent.com/23665803/188682160-9b879c7c-34fd-4be9-b0c2-bbc7da2086e0.png"> ## Additional context This issue documentation is sorted into the [Video Annotator](https://github.com/zooniverse/front-end-monorepo/projects/13) project board. It's part of an effort to improve the video subject viewer code for migrating [Woodpecker Cavity Cam](https://www.zooniverse.org/projects/elwest/woodpecker-cavity-cam) to FEM.
1.0
Video Subject: Style the VideoController speed options the same as flip book - ## Package lib-classifier ## Describe the problem The flip book is an incoming feature for FEM. The video subject viewer speed controls and the flip book speed controls should be styled the same for consistency. ## Describe the solution you'd like An example of current video subject viewer VideoController speed controls: <img width="789" alt="Screen Shot 2022-09-06 at 10 58 27 AM" src="https://user-images.githubusercontent.com/23665803/188681926-90ebd063-1c55-43f5-92be-506485aa4f0a.png"> Zooniverse team members can see the work in progress speed controls for the flip book here: https://projects.invisionapp.com/prototype/Flipbook-Viewer-cl7ar8qa402m83i01w6uvj5hq/play/f32b2cd2 <img width="615" alt="Screen Shot 2022-09-06 at 10 59 27 AM" src="https://user-images.githubusercontent.com/23665803/188682160-9b879c7c-34fd-4be9-b0c2-bbc7da2086e0.png"> ## Additional context This issue documentation is sorted into the [Video Annotator](https://github.com/zooniverse/front-end-monorepo/projects/13) project board. It's part of an effort to improve the video subject viewer code for migrating [Woodpecker Cavity Cam](https://www.zooniverse.org/projects/elwest/woodpecker-cavity-cam) to FEM.
non_defect
video subject style the videocontroller speed options the same as flip book package lib classifier describe the problem the flip book is an incoming feature for fem the video subject viewer speed controls and the flip book speed controls should be styled the same for consistency describe the solution you d like an example of current video subject viewer videocontroller speed controls img width alt screen shot at am src zooniverse team members can see the work in progress speed controls for the flip book here img width alt screen shot at am src additional context this issue documentation is sorted into the project board it s part of an effort to improve the video subject viewer code for migrating to fem
0
37,534
8,419,288,089
IssuesEvent
2018-10-15 06:07:36
riksanyal/et
https://api.github.com/repos/riksanyal/et
closed
Cactus segfaults with incorrectly specified grid array sizes (Trac #70)
Cactus Migrated from Trac defect knarf
Cactus doesn't detect missing size arguments in multi-D grid array declarations, segfaulting in the process Migrated from https://trac.einsteintoolkit.org/ticket/70 ```json { "status": "closed", "changetime": "2010-10-27T14:29:31", "description": "Cactus doesn't detect missing size arguments in multi-D grid array declarations, segfaulting in the process", "reporter": "knarf", "cc": "", "resolution": "fixed", "_ts": "1288189771404371", "component": "Cactus", "summary": "Cactus segfaults with incorrectly specified grid array sizes", "priority": "minor", "keywords": "", "version": "ET_2010_06", "time": "2010-10-27T14:29:21", "milestone": "", "owner": "knarf", "type": "defect" } ```
1.0
Cactus segfaults with incorrectly specified grid array sizes (Trac #70) - Cactus doesn't detect missing size arguments in multi-D grid array declarations, segfaulting in the process Migrated from https://trac.einsteintoolkit.org/ticket/70 ```json { "status": "closed", "changetime": "2010-10-27T14:29:31", "description": "Cactus doesn't detect missing size arguments in multi-D grid array declarations, segfaulting in the process", "reporter": "knarf", "cc": "", "resolution": "fixed", "_ts": "1288189771404371", "component": "Cactus", "summary": "Cactus segfaults with incorrectly specified grid array sizes", "priority": "minor", "keywords": "", "version": "ET_2010_06", "time": "2010-10-27T14:29:21", "milestone": "", "owner": "knarf", "type": "defect" } ```
defect
cactus segfaults with incorrectly specified grid array sizes trac cactus doesn t detect missing size arguments in multi d grid array declarations segfaulting in the process migrated from json status closed changetime description cactus doesn t detect missing size arguments in multi d grid array declarations segfaulting in the process reporter knarf cc resolution fixed ts component cactus summary cactus segfaults with incorrectly specified grid array sizes priority minor keywords version et time milestone owner knarf type defect
1
71,909
18,924,251,389
IssuesEvent
2021-11-17 07:39:35
ClickHouse/ClickHouse
https://api.github.com/repos/ClickHouse/ClickHouse
closed
Split build failed on MacOS m1
build
cmake build command is > cmake -DENABLE_S3=0 -DUSE_STATIC_LIBRARIES=0 -DSPLIT_SHARED_LIBRARIES=1 -DCLICKHOUSE_SPLIT_BINARY=1 -DCMAKE_C_COMPILER=$(brew --prefix llvm)/bin/clang -DCMAKE_CXX_COMPILER=$(brew --prefix llvm)/bin/clang++ -DCMAKE_BUILD_TYPE=RelWithDebInfo .. ninja failed with following message: > Undefined symbols for architecture arm64: > "_jump_fcontext", referenced from: > boost::coroutines::detail::coroutine_context::jump(boost::coroutines::detail::coroutine_context&, void*) in coroutine_context.cpp.o > "_make_fcontext", referenced from: > boost::coroutines::detail::coroutine_context::coroutine_context(void (*)(boost::context::detail::transfer_t), boost::coroutines::detail::preallocated const&) in coroutine_context.cpp.o > boost::coroutines::detail::coroutine_context::coroutine_context(void (*)(boost::context::detail::transfer_t), boost::coroutines::detail::preallocated const&) in coroutine_context.cpp.o > ld: symbol(s) not found for architecture arm64 > clang-13: error: linker command failed with exit code 1 (use -v to see invocation) Following is environment related information. > Make sure that `git diff` result is empty and you've just pulled fresh master. Try cleaning up cmake cache. Just in case, official build instructions are published here: https://clickhouse.yandex/docs/en/development/build/ I built on fresh master. Id of git log is f1adde1b5f931dce69b38ca26fc02ea6dfb0bebf. Following is the output of git status command: ![image](https://user-images.githubusercontent.com/2949045/142136836-c55397c3-12d5-4519-965f-cb4c711aa624.png) The modification from sysroot is because that some files in sysroot having almost same name except differences in upper or lower case, while MacOS is case insensitive. And it seems that the build failure is not caused by the modification from sysroot submodule, because I also tried with tag v21.8.10.19-lts, and the same build failure appeared, and sysroot submodule has not been added in that version. **Operating system** > OS kind or distribution, specific version/release, non-standard kernel if any. If you are trying to build inside virtual machine, please mention it too. My OS is MacOS M1 Big Sur, version 11.6. **Cmake version** 3.21.4 **Ninja version** 1.10.2 **Compiler name and version** clang 13 installed by brew **Full cmake and/or ninja output** [CMake log](https://copperybean.s3.ap-southeast-1.amazonaws.com/share/cmake-master.log), [ninjia log](https://copperybean.s3.ap-southeast-1.amazonaws.com/share/ninja.log). I also tried with tag v21.8.10.19-lts (with git id: 4273d46e037556cb17906e6f10f8c31d1ae9aa53), the same failure appeared.
1.0
Split build failed on MacOS m1 - cmake build command is > cmake -DENABLE_S3=0 -DUSE_STATIC_LIBRARIES=0 -DSPLIT_SHARED_LIBRARIES=1 -DCLICKHOUSE_SPLIT_BINARY=1 -DCMAKE_C_COMPILER=$(brew --prefix llvm)/bin/clang -DCMAKE_CXX_COMPILER=$(brew --prefix llvm)/bin/clang++ -DCMAKE_BUILD_TYPE=RelWithDebInfo .. ninja failed with following message: > Undefined symbols for architecture arm64: > "_jump_fcontext", referenced from: > boost::coroutines::detail::coroutine_context::jump(boost::coroutines::detail::coroutine_context&, void*) in coroutine_context.cpp.o > "_make_fcontext", referenced from: > boost::coroutines::detail::coroutine_context::coroutine_context(void (*)(boost::context::detail::transfer_t), boost::coroutines::detail::preallocated const&) in coroutine_context.cpp.o > boost::coroutines::detail::coroutine_context::coroutine_context(void (*)(boost::context::detail::transfer_t), boost::coroutines::detail::preallocated const&) in coroutine_context.cpp.o > ld: symbol(s) not found for architecture arm64 > clang-13: error: linker command failed with exit code 1 (use -v to see invocation) Following is environment related information. > Make sure that `git diff` result is empty and you've just pulled fresh master. Try cleaning up cmake cache. Just in case, official build instructions are published here: https://clickhouse.yandex/docs/en/development/build/ I built on fresh master. Id of git log is f1adde1b5f931dce69b38ca26fc02ea6dfb0bebf. Following is the output of git status command: ![image](https://user-images.githubusercontent.com/2949045/142136836-c55397c3-12d5-4519-965f-cb4c711aa624.png) The modification from sysroot is because that some files in sysroot having almost same name except differences in upper or lower case, while MacOS is case insensitive. And it seems that the build failure is not caused by the modification from sysroot submodule, because I also tried with tag v21.8.10.19-lts, and the same build failure appeared, and sysroot submodule has not been added in that version. **Operating system** > OS kind or distribution, specific version/release, non-standard kernel if any. If you are trying to build inside virtual machine, please mention it too. My OS is MacOS M1 Big Sur, version 11.6. **Cmake version** 3.21.4 **Ninja version** 1.10.2 **Compiler name and version** clang 13 installed by brew **Full cmake and/or ninja output** [CMake log](https://copperybean.s3.ap-southeast-1.amazonaws.com/share/cmake-master.log), [ninjia log](https://copperybean.s3.ap-southeast-1.amazonaws.com/share/ninja.log). I also tried with tag v21.8.10.19-lts (with git id: 4273d46e037556cb17906e6f10f8c31d1ae9aa53), the same failure appeared.
non_defect
split build failed on macos cmake build command is cmake denable duse static libraries dsplit shared libraries dclickhouse split binary dcmake c compiler brew prefix llvm bin clang dcmake cxx compiler brew prefix llvm bin clang dcmake build type relwithdebinfo ninja failed with following message undefined symbols for architecture jump fcontext referenced from boost coroutines detail coroutine context jump boost coroutines detail coroutine context void in coroutine context cpp o make fcontext referenced from boost coroutines detail coroutine context coroutine context void boost context detail transfer t boost coroutines detail preallocated const in coroutine context cpp o boost coroutines detail coroutine context coroutine context void boost context detail transfer t boost coroutines detail preallocated const in coroutine context cpp o ld symbol s not found for architecture clang error linker command failed with exit code use v to see invocation following is environment related information make sure that git diff result is empty and you ve just pulled fresh master try cleaning up cmake cache just in case official build instructions are published here i built on fresh master id of git log is following is the output of git status command the modification from sysroot is because that some files in sysroot having almost same name except differences in upper or lower case while macos is case insensitive and it seems that the build failure is not caused by the modification from sysroot submodule because i also tried with tag lts and the same build failure appeared and sysroot submodule has not been added in that version operating system os kind or distribution specific version release non standard kernel if any if you are trying to build inside virtual machine please mention it too my os is macos big sur version cmake version ninja version compiler name and version clang installed by brew full cmake and or ninja output i also tried with tag lts with git id the same failure appeared
0
7,979
2,611,070,657
IssuesEvent
2015-02-27 00:33:00
alistairreilly/andors-trail
https://api.github.com/repos/alistairreilly/andors-trail
opened
SwiftKey 3's predictive text selection button bar appears.
auto-migrated Type-Defect
``` What steps will reproduce the problem? 1. Have SwiftKey 3 v3.0.4.343 installed, enabled as your chosen virtual keyboard (also in system settings of your device) with English (US) enabled as your chosen language, and the option for "Hard keyboard" checked to "Disable autocomplete for the physical keyboard". 2. Have Andor's Trail v0.6.12a1-4 installed. 3. Extend the physical keyboard (at which time, changes occur in the background) and start a new game of Andor's Trail with the hero's name using six capital letters. What is the expected output? What do you see instead? Aside from the normal game screen displayed, an overlay of SwiftKey 3's predictive text selection bar is featured at the bottom of the screen in its normal appearance as when you are using the physical keyboard to input data into a text field. What version of the product are you using? On what device? Version 0.6.12a1-4 installed on a Motorola Droid 3 (model XT862) with Verizon's Android OS (v2.3.4) latest update of 5.7.906.XT862.Verizon.En.US. Please provide any additional information below. Many factors could play a role in experiencing difficulty in reproducing this event. The very fact that every wireless carrier contracts with device manufacturers to supply modified, or customized versions of the Android OS for each device they make available to their customers is a major hurdle in achieving compatibility when developing software for the Android OS platform. This issue is reproducible on my device by following the steps above. It will remain as long as you consistently use the physical keyboard at the beginning of each following game play session. The collapsing and deactivating of the physical keyboard to play with the touch screen only, or starting your next game play session by touch screen only, will eliminate this issue from future occurrences. ``` Original issue reported on code.google.com by `ctnbeh13@gmail.com` on 16 Sep 2012 at 8:50
1.0
SwiftKey 3's predictive text selection button bar appears. - ``` What steps will reproduce the problem? 1. Have SwiftKey 3 v3.0.4.343 installed, enabled as your chosen virtual keyboard (also in system settings of your device) with English (US) enabled as your chosen language, and the option for "Hard keyboard" checked to "Disable autocomplete for the physical keyboard". 2. Have Andor's Trail v0.6.12a1-4 installed. 3. Extend the physical keyboard (at which time, changes occur in the background) and start a new game of Andor's Trail with the hero's name using six capital letters. What is the expected output? What do you see instead? Aside from the normal game screen displayed, an overlay of SwiftKey 3's predictive text selection bar is featured at the bottom of the screen in its normal appearance as when you are using the physical keyboard to input data into a text field. What version of the product are you using? On what device? Version 0.6.12a1-4 installed on a Motorola Droid 3 (model XT862) with Verizon's Android OS (v2.3.4) latest update of 5.7.906.XT862.Verizon.En.US. Please provide any additional information below. Many factors could play a role in experiencing difficulty in reproducing this event. The very fact that every wireless carrier contracts with device manufacturers to supply modified, or customized versions of the Android OS for each device they make available to their customers is a major hurdle in achieving compatibility when developing software for the Android OS platform. This issue is reproducible on my device by following the steps above. It will remain as long as you consistently use the physical keyboard at the beginning of each following game play session. The collapsing and deactivating of the physical keyboard to play with the touch screen only, or starting your next game play session by touch screen only, will eliminate this issue from future occurrences. ``` Original issue reported on code.google.com by `ctnbeh13@gmail.com` on 16 Sep 2012 at 8:50
defect
swiftkey s predictive text selection button bar appears what steps will reproduce the problem have swiftkey installed enabled as your chosen virtual keyboard also in system settings of your device with english us enabled as your chosen language and the option for hard keyboard checked to disable autocomplete for the physical keyboard have andor s trail installed extend the physical keyboard at which time changes occur in the background and start a new game of andor s trail with the hero s name using six capital letters what is the expected output what do you see instead aside from the normal game screen displayed an overlay of swiftkey s predictive text selection bar is featured at the bottom of the screen in its normal appearance as when you are using the physical keyboard to input data into a text field what version of the product are you using on what device version installed on a motorola droid model with verizon s android os latest update of verizon en us please provide any additional information below many factors could play a role in experiencing difficulty in reproducing this event the very fact that every wireless carrier contracts with device manufacturers to supply modified or customized versions of the android os for each device they make available to their customers is a major hurdle in achieving compatibility when developing software for the android os platform this issue is reproducible on my device by following the steps above it will remain as long as you consistently use the physical keyboard at the beginning of each following game play session the collapsing and deactivating of the physical keyboard to play with the touch screen only or starting your next game play session by touch screen only will eliminate this issue from future occurrences original issue reported on code google com by gmail com on sep at
1
404,794
27,496,268,866
IssuesEvent
2023-03-05 06:50:52
ChinmayMhatre/spaced-repetition
https://api.github.com/repos/ChinmayMhatre/spaced-repetition
opened
Basic readme
documentation good first issue
For now could explain how to setup the project. and add the environment variables and keys
1.0
Basic readme - For now could explain how to setup the project. and add the environment variables and keys
non_defect
basic readme for now could explain how to setup the project and add the environment variables and keys
0