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
40,724
10,140,876,364
IssuesEvent
2019-08-03 08:31:08
STEllAR-GROUP/hpx
https://api.github.com/repos/STEllAR-GROUP/hpx
closed
scan_partitioner is not working as expected.
tag: wontfix type: defect type: race condition
Parallel algorithms using the scan partitioner are spuriously failing when the continuation in dataflow is executed asynchronously. It seems that when passing hpx::launch::sync to the dataflow invocation works around that issue. A fix needs to be found such that it works with (async) executors again.
1.0
scan_partitioner is not working as expected. - Parallel algorithms using the scan partitioner are spuriously failing when the continuation in dataflow is executed asynchronously. It seems that when passing hpx::launch::sync to the dataflow invocation works around that issue. A fix needs to be found such that it works with (async) executors again.
defect
scan partitioner is not working as expected parallel algorithms using the scan partitioner are spuriously failing when the continuation in dataflow is executed asynchronously it seems that when passing hpx launch sync to the dataflow invocation works around that issue a fix needs to be found such that it works with async executors again
1
67,673
21,047,733,072
IssuesEvent
2022-03-31 17:38:57
scipy/scipy
https://api.github.com/repos/scipy/scipy
opened
BUG: scipy.io.mmwrite failure
defect
### Describe your issue. Using scipy.io.mmwrite results in the process being killed when writing large sparse matrices to disk, likely due to resource consumption limits. Although the example included in this bug report generates a dense matrix for conciseness, I see this behavior with many large matrices in the suitesparse dataset. This can be trivially fixed by iteratively writing the lines to the file. For example: ``` with open(outfile, 'w') as f: f.write("%%MatrixMarket matrix coordinate real general\n") f.write("%d %d %d\n" % (rows, cols, sparse_matrix.nnz)) for i in range(sparse_matrix.shape[0]): for j in range(sparse_matrix.indptr[i], sparse_matrix.indptr[i+1]): f.write("%d %d %f\n" % (i+1, sparse_matrix.indices[j]+1, sparse_matrix.data[j])) ``` System Specs: Intel i5 5820K 16GB Ram Ubuntu 20.04.4 LTS ### Reproducing Code Example ```python #!/usr/bin/env python3 from scipy.sparse import csr_matrix import numpy as np import scipy.io as sio # Python helper to create a dense matrix and write it to disk in coo format rows = 10000 cols = 10000 outfile = "./out.mtx" # Create the random matrix using the provided dimensions and data type. mat = np.random.rand(rows, cols) sparse_matrix = csr_matrix(mat) # Write to disk sio.mmwrite(outfile, sparse_matrix) ``` ### Error message ```shell [1] 15304 killed python3 ../coo_debug.py ``` ### SciPy/NumPy/Python version information 1.7.3 1.19.5 sys.version_info(major=3, minor=9, micro=7, releaselevel='final', serial=0)
1.0
BUG: scipy.io.mmwrite failure - ### Describe your issue. Using scipy.io.mmwrite results in the process being killed when writing large sparse matrices to disk, likely due to resource consumption limits. Although the example included in this bug report generates a dense matrix for conciseness, I see this behavior with many large matrices in the suitesparse dataset. This can be trivially fixed by iteratively writing the lines to the file. For example: ``` with open(outfile, 'w') as f: f.write("%%MatrixMarket matrix coordinate real general\n") f.write("%d %d %d\n" % (rows, cols, sparse_matrix.nnz)) for i in range(sparse_matrix.shape[0]): for j in range(sparse_matrix.indptr[i], sparse_matrix.indptr[i+1]): f.write("%d %d %f\n" % (i+1, sparse_matrix.indices[j]+1, sparse_matrix.data[j])) ``` System Specs: Intel i5 5820K 16GB Ram Ubuntu 20.04.4 LTS ### Reproducing Code Example ```python #!/usr/bin/env python3 from scipy.sparse import csr_matrix import numpy as np import scipy.io as sio # Python helper to create a dense matrix and write it to disk in coo format rows = 10000 cols = 10000 outfile = "./out.mtx" # Create the random matrix using the provided dimensions and data type. mat = np.random.rand(rows, cols) sparse_matrix = csr_matrix(mat) # Write to disk sio.mmwrite(outfile, sparse_matrix) ``` ### Error message ```shell [1] 15304 killed python3 ../coo_debug.py ``` ### SciPy/NumPy/Python version information 1.7.3 1.19.5 sys.version_info(major=3, minor=9, micro=7, releaselevel='final', serial=0)
defect
bug scipy io mmwrite failure describe your issue using scipy io mmwrite results in the process being killed when writing large sparse matrices to disk likely due to resource consumption limits although the example included in this bug report generates a dense matrix for conciseness i see this behavior with many large matrices in the suitesparse dataset this can be trivially fixed by iteratively writing the lines to the file for example with open outfile w as f f write matrixmarket matrix coordinate real general n f write d d d n rows cols sparse matrix nnz for i in range sparse matrix shape for j in range sparse matrix indptr sparse matrix indptr f write d d f n i sparse matrix indices sparse matrix data system specs intel ram ubuntu lts reproducing code example python usr bin env from scipy sparse import csr matrix import numpy as np import scipy io as sio python helper to create a dense matrix and write it to disk in coo format rows cols outfile out mtx create the random matrix using the provided dimensions and data type mat np random rand rows cols sparse matrix csr matrix mat write to disk sio mmwrite outfile sparse matrix error message shell killed coo debug py scipy numpy python version information sys version info major minor micro releaselevel final serial
1
132,558
12,511,850,095
IssuesEvent
2020-06-02 21:23:12
Speedfan94/PDS_Project
https://api.github.com/repos/Speedfan94/PDS_Project
opened
Rename column names in concise way
type/bug type/documentation
Use Starting upper case latter and each time "_" instead of " " between words
1.0
Rename column names in concise way - Use Starting upper case latter and each time "_" instead of " " between words
non_defect
rename column names in concise way use starting upper case latter and each time instead of between words
0
4,419
3,023,733,683
IssuesEvent
2015-08-01 20:30:47
ash-lang/ash
https://api.github.com/repos/ash-lang/ash
closed
Definition files
analysis code-gen grammar
Definition files will be files that define global functions, operators and import declarations. Definition files will have the extension `.ashd` (the `d` is short for "definition") and will consist of (all of which are optional) a package declaration, import declarations, operator overloads, operator definitions and extension functions. Definition files will be "included" into the current ash source file with the `include` keyword.
1.0
Definition files - Definition files will be files that define global functions, operators and import declarations. Definition files will have the extension `.ashd` (the `d` is short for "definition") and will consist of (all of which are optional) a package declaration, import declarations, operator overloads, operator definitions and extension functions. Definition files will be "included" into the current ash source file with the `include` keyword.
non_defect
definition files definition files will be files that define global functions operators and import declarations definition files will have the extension ashd the d is short for definition and will consist of all of which are optional a package declaration import declarations operator overloads operator definitions and extension functions definition files will be included into the current ash source file with the include keyword
0
76,738
26,572,716,875
IssuesEvent
2023-01-21 11:38:23
mooltiverse/nyx
https://api.github.com/repos/mooltiverse/nyx
closed
The presets configuration layer is not loaded unless a configuration file is used (command line)
type::defect:bug type::task
The command line version does not load some configuration layers (i.e. presets) unless a configuration file is passed. This bug does not seem to affect the Java version
1.0
The presets configuration layer is not loaded unless a configuration file is used (command line) - The command line version does not load some configuration layers (i.e. presets) unless a configuration file is passed. This bug does not seem to affect the Java version
defect
the presets configuration layer is not loaded unless a configuration file is used command line the command line version does not load some configuration layers i e presets unless a configuration file is passed this bug does not seem to affect the java version
1
461,601
13,233,042,800
IssuesEvent
2020-08-18 14:14:41
buddyboss/buddyboss-platform
https://api.github.com/repos/buddyboss/buddyboss-platform
opened
Accessing the hidden group is returning "Too Many Redirects" error.
bug priority: medium
**Describe the bug** When a someone tries to access the hidden group who is a member of that group, returning "Too Many Redirect" error. **To Reproduce** Steps to reproduce the behavior: 1. Create a Hidden Group. 2. Log in as a normal user who is not a member of that group. 3. Try accessing that group via a direct URL. 4. See error. **Expected behavior** It should show the notice that "you don't have access to this group". **Screencast** https://screencast-o-matic.com/watch/cYjF2QG8ZQ **Support ticket links** https://secure.helpscout.net/conversation/1252205081/87906?folderId=3701248
1.0
Accessing the hidden group is returning "Too Many Redirects" error. - **Describe the bug** When a someone tries to access the hidden group who is a member of that group, returning "Too Many Redirect" error. **To Reproduce** Steps to reproduce the behavior: 1. Create a Hidden Group. 2. Log in as a normal user who is not a member of that group. 3. Try accessing that group via a direct URL. 4. See error. **Expected behavior** It should show the notice that "you don't have access to this group". **Screencast** https://screencast-o-matic.com/watch/cYjF2QG8ZQ **Support ticket links** https://secure.helpscout.net/conversation/1252205081/87906?folderId=3701248
non_defect
accessing the hidden group is returning too many redirects error describe the bug when a someone tries to access the hidden group who is a member of that group returning too many redirect error to reproduce steps to reproduce the behavior create a hidden group log in as a normal user who is not a member of that group try accessing that group via a direct url see error expected behavior it should show the notice that you don t have access to this group screencast support ticket links
0
63,096
17,373,683,327
IssuesEvent
2021-07-30 17:25:19
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
closed
Dial pad button spacing increases with window
A-VoIP T-Defect
<!-- A picture's worth a thousand words: PLEASE INCLUDE A SCREENSHOT :P --> <!-- Please report security issues by email to security@matrix.org --> <!-- 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 When using the dial pad in a call the spacing between the buttons increases as the window grows. If enough numbers are entered the Dial Pad window will grow horizontally. The buttons continue to become further apart with no restriction (even when they go over the parent window). ### Steps to reproduce (only tested on desktop) - Start a call - Open Dial Pad - Dial a number longer than the available space and the window will expand making the buttons further apart. Describe how what happens differs from what you expected. I would expect the buttons to remain stationary when the window expands. It might also be better for the text box with the numbers to scroll instead of expanding the Dial Pad. <!-- 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: no <!-- Include screenshots if possible: you can drag and drop images below. --> ![2021-03-20T19:54:20,049542906+00:00](https://user-images.githubusercontent.com/33197001/111884331-fb6acb80-89b8-11eb-9f67-6d9311ab8311.png) ![2021-03-20T20:16:40,571628459+00:00](https://user-images.githubusercontent.com/33197001/111884369-366cff00-89b9-11eb-8bb0-fc2a7e98e75e.png) ### Version information <!-- IMPORTANT: please answer the following questions, to help us narrow down the problem --> - **Platform**: desktop For the desktop app: - **OS**: Fedora Silverblue Linux - **Version**: 1.7.23 (flatpak)
1.0
Dial pad button spacing increases with window - <!-- A picture's worth a thousand words: PLEASE INCLUDE A SCREENSHOT :P --> <!-- Please report security issues by email to security@matrix.org --> <!-- 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 When using the dial pad in a call the spacing between the buttons increases as the window grows. If enough numbers are entered the Dial Pad window will grow horizontally. The buttons continue to become further apart with no restriction (even when they go over the parent window). ### Steps to reproduce (only tested on desktop) - Start a call - Open Dial Pad - Dial a number longer than the available space and the window will expand making the buttons further apart. Describe how what happens differs from what you expected. I would expect the buttons to remain stationary when the window expands. It might also be better for the text box with the numbers to scroll instead of expanding the Dial Pad. <!-- 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: no <!-- Include screenshots if possible: you can drag and drop images below. --> ![2021-03-20T19:54:20,049542906+00:00](https://user-images.githubusercontent.com/33197001/111884331-fb6acb80-89b8-11eb-9f67-6d9311ab8311.png) ![2021-03-20T20:16:40,571628459+00:00](https://user-images.githubusercontent.com/33197001/111884369-366cff00-89b9-11eb-8bb0-fc2a7e98e75e.png) ### Version information <!-- IMPORTANT: please answer the following questions, to help us narrow down the problem --> - **Platform**: desktop For the desktop app: - **OS**: Fedora Silverblue Linux - **Version**: 1.7.23 (flatpak)
defect
dial pad button spacing increases with window 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 when using the dial pad in a call the spacing between the buttons increases as the window grows if enough numbers are entered the dial pad window will grow horizontally the buttons continue to become further apart with no restriction even when they go over the parent window steps to reproduce only tested on desktop start a call open dial pad dial a number longer than the available space and the window will expand making the buttons further apart describe how what happens differs from what you expected i would expect the buttons to remain stationary when the window expands it might also be better for the text box with the numbers to scroll instead of expanding the dial pad 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 no version information platform desktop for the desktop app os fedora silverblue linux version flatpak
1
313,824
23,493,254,397
IssuesEvent
2022-08-17 21:04:43
ubisoft/task-scheduler
https://api.github.com/repos/ubisoft/task-scheduler
opened
Add new alternative task schedulers to benches
documentation
Currently the benches run for `mg::serverbox::TaskScheduler` and for a trivial lock-based scheduler without any features. Would be interesting to implement a scheduler similar to `mg::serverbox::TaskScheduler` in terms of feature set but also lock-based. At least its queues should be lock-based. Don't even need to actually implement those features. Should be enough to split front- and ready-queues and have a dedicated sched-role. Another idea would be to introduce a version of the task scheduler which has a dedicated thread just for scheduling. Without the migrating sched-role like now. So its thread count is always +1 compared to `mg::serverbox::TaskScheduler` and this additional thread just manages the queues. Both these new schedulers would be quite close to the serverbox's one in a sense that potentially they could have all the same features like a binary heap with waiting tasks, task wakeups, and all.
1.0
Add new alternative task schedulers to benches - Currently the benches run for `mg::serverbox::TaskScheduler` and for a trivial lock-based scheduler without any features. Would be interesting to implement a scheduler similar to `mg::serverbox::TaskScheduler` in terms of feature set but also lock-based. At least its queues should be lock-based. Don't even need to actually implement those features. Should be enough to split front- and ready-queues and have a dedicated sched-role. Another idea would be to introduce a version of the task scheduler which has a dedicated thread just for scheduling. Without the migrating sched-role like now. So its thread count is always +1 compared to `mg::serverbox::TaskScheduler` and this additional thread just manages the queues. Both these new schedulers would be quite close to the serverbox's one in a sense that potentially they could have all the same features like a binary heap with waiting tasks, task wakeups, and all.
non_defect
add new alternative task schedulers to benches currently the benches run for mg serverbox taskscheduler and for a trivial lock based scheduler without any features would be interesting to implement a scheduler similar to mg serverbox taskscheduler in terms of feature set but also lock based at least its queues should be lock based don t even need to actually implement those features should be enough to split front and ready queues and have a dedicated sched role another idea would be to introduce a version of the task scheduler which has a dedicated thread just for scheduling without the migrating sched role like now so its thread count is always compared to mg serverbox taskscheduler and this additional thread just manages the queues both these new schedulers would be quite close to the serverbox s one in a sense that potentially they could have all the same features like a binary heap with waiting tasks task wakeups and all
0
2,167
2,603,977,363
IssuesEvent
2015-02-24 19:01:52
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:26
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:26
defect
沈阳菜花状疣 沈阳菜花状疣〓沈陽軍區政治部醫院性病〓tel: 〓�� � , 。位于沈陽� �� 。是一所與新中國同建立共輝煌的歷史悠� ��、設備精良、技術權威、專家云集,是預防、保健、醫療、 科研康復為一體的綜合性醫院。是國家首批公立甲等部隊醫�� �、全國首批醫療規范定點單位,是第四軍醫大學、東南大學� ��知名高等院校的教學醫院。曾被中國人民解放軍空軍后勤部 衛生部評為衛生工作先進單位,先后兩次榮立集體二等功。 original issue reported on code google com by gmail com on jun at
1
383,104
11,350,305,565
IssuesEvent
2020-01-24 08:25:18
wso2/product-microgateway
https://api.github.com/repos/wso2/product-microgateway
closed
Enable Http 2.0 when runs Microgateway using standard VM
Docs/Has Impact Priority/Normal Type/Docs
### Description We need to mention, how to enable Http 2.0 when it runs the Microgateway using the standard VM in Doc [1]. We need to mention that we have to change the following configuration to **true** in the **MGW-RUNTIME-HOME/conf/micro-gw.conf** file. ### Affected Product Version 3.0.1 [1] https://docs.wso2.com/display/MG301/Enabling+HTTP+2.0
1.0
Enable Http 2.0 when runs Microgateway using standard VM - ### Description We need to mention, how to enable Http 2.0 when it runs the Microgateway using the standard VM in Doc [1]. We need to mention that we have to change the following configuration to **true** in the **MGW-RUNTIME-HOME/conf/micro-gw.conf** file. ### Affected Product Version 3.0.1 [1] https://docs.wso2.com/display/MG301/Enabling+HTTP+2.0
non_defect
enable http when runs microgateway using standard vm description we need to mention how to enable http when it runs the microgateway using the standard vm in doc we need to mention that we have to change the following configuration to true in the mgw runtime home conf micro gw conf file affected product version
0
25,146
4,227,280,446
IssuesEvent
2016-07-03 03:01:45
EionRobb/pidgin-opensteamworks
https://api.github.com/repos/EionRobb/pidgin-opensteamworks
closed
Unable to install on ARM devices
auto-migrated Priority-Medium Type-Defect
``` What steps will reproduce the problem? 1. download linux 32bit 2. try to install 3. get error message (corrupted) What is the expected output? What do you see instead? What version of the product are you using? On what operating system? maemo 5 Please provide any additional information below. it would be great to have this integrate into "conversations" like msn, icq, aim, skype, facebook, gtalk, jabber, gadugadu, sametime and yahoo ``` Original issue reported on code.google.com by `sean2...@gmail.com` on 14 May 2013 at 12:57
1.0
Unable to install on ARM devices - ``` What steps will reproduce the problem? 1. download linux 32bit 2. try to install 3. get error message (corrupted) What is the expected output? What do you see instead? What version of the product are you using? On what operating system? maemo 5 Please provide any additional information below. it would be great to have this integrate into "conversations" like msn, icq, aim, skype, facebook, gtalk, jabber, gadugadu, sametime and yahoo ``` Original issue reported on code.google.com by `sean2...@gmail.com` on 14 May 2013 at 12:57
defect
unable to install on arm devices what steps will reproduce the problem download linux try to install get error message corrupted what is the expected output what do you see instead what version of the product are you using on what operating system maemo please provide any additional information below it would be great to have this integrate into conversations like msn icq aim skype facebook gtalk jabber gadugadu sametime and yahoo original issue reported on code google com by gmail com on may at
1
20,047
3,790,475,705
IssuesEvent
2016-03-21 21:36:14
EyeSeeTea/QAApp
https://api.github.com/repos/EyeSeeTea/QAApp
closed
Planing: lighten color for the alternate rows
android buddybug complexity - low (1hr) duplicate testing type - cosmetic (layout)
Feedback from gtsmith@psi.org : Please lighten this colt as well [Link to buddybuild feedback from build 4](https://dashboard.buddybuild.com/apps/56b408ad65c5670100adf4df/feedback?fid=56d0a5c8963673010084e464&bnum=4) <img src="https://s3-us-west-2.amazonaws.com/buddybuild-screenshots/56b408ad65c5670100adf4df/56d057fac8f4aa010054eac5/5df88145-9e0b-4838-8985-f91e1298b329.jpg" width="33%" height="33%" /><table><tr><td>Build</td><td>4</td></tr><tr><td>Device type</td><td>SM-T217S</td></tr><tr><td>Screen size</td><td>600</td></tr><tr><td>Screen size</td><td>600px by 1024px</td></tr><tr><td>Battery</td><td>31% Unplugged</td></tr><tr><td>Memory free</td><td>236 MB / 1347 MB</td></tr></table>
1.0
Planing: lighten color for the alternate rows - Feedback from gtsmith@psi.org : Please lighten this colt as well [Link to buddybuild feedback from build 4](https://dashboard.buddybuild.com/apps/56b408ad65c5670100adf4df/feedback?fid=56d0a5c8963673010084e464&bnum=4) <img src="https://s3-us-west-2.amazonaws.com/buddybuild-screenshots/56b408ad65c5670100adf4df/56d057fac8f4aa010054eac5/5df88145-9e0b-4838-8985-f91e1298b329.jpg" width="33%" height="33%" /><table><tr><td>Build</td><td>4</td></tr><tr><td>Device type</td><td>SM-T217S</td></tr><tr><td>Screen size</td><td>600</td></tr><tr><td>Screen size</td><td>600px by 1024px</td></tr><tr><td>Battery</td><td>31% Unplugged</td></tr><tr><td>Memory free</td><td>236 MB / 1347 MB</td></tr></table>
non_defect
planing lighten color for the alternate rows feedback from gtsmith psi org please lighten this colt as well build device type sm screen size screen size by battery unplugged memory free mb mb
0
7,035
5,825,229,527
IssuesEvent
2017-05-07 19:43:29
nodejs/node
https://api.github.com/repos/nodejs/node
closed
Comparing arrays with `assert` seems to take polynomial time.
assert performance
<!-- Thank you for reporting an issue. This issue tracker is for bugs and issues found within Node.js core. If you require more general support please file an issue on our help repo. https://github.com/nodejs/help Please fill in as much of the template below as you're able. Version: Platform: If possible, please provide code that demonstrates the problem, keeping it as simple and free of external dependencies as you are able. --> * **Version**: 6.10.3 x64 * **Platform**: OS X 12.4 <!-- Enter your issue details below this comment. --> Comparing two arrays with `assert.deepEqual` or `.deepStrictEqual` seems to take a polynomial amount of time relative to the array size. Quick code: ```js function longTest(n) { const bigSource = Array.apply(null, Array(n)); const a1 = bigSource.map((n) => ({ yarp: 'yarp', nope: {yarp: '123', a: [1,2,3]} })); const a2 = bigSource.map((n) => ({ yarp: 'yarp', nope: {yarp: '123', a: [1,2,3]} })); //a2[a2.length - 1].nope = 'nope'; const tStart = Date.now(); assert.deepEqual(a2, a1); const tEnd = Date.now(); const dt = tEnd - tStart; return dt; } let n = 1; for (let i = 0; i<=40; i++) { n = Math.round(n*1.5); const dt = longTest(n); console.log(`${n}, ${dt}`) } ``` Returns a list of (n),(time) pairs. On my machine, the output of this is ```csv 2, 2 3, 0 5, 0 8, 0 12, 1 18, 1 27, 6 41, 5 62, 1 93, 1 140, 2 210, 3 315, 5 473, 7 710, 11 1065, 21 1598, 40 2397, 70 3596, 135 5394, 270 8091, 581 12137, 1184 18206, 2590 27309, 5679 40964, 12539 61446, 28906 92169, 63617 ``` Graphed, this looks like ![linear](https://cloud.githubusercontent.com/assets/6732831/25733102/420505aa-3199-11e7-8c47-95b76d06f844.jpg) Or to illustrate what I think I'm seeing, we can plot on a log-log scale graph: ![loglog](https://cloud.githubusercontent.com/assets/6732831/25733110/5256db9a-3199-11e7-9acc-56165f943fbb.jpg) Just to be explicit, I would expect this operation to take O(n) time. I'm quite possibly doing something very silly, so apologies in advance if I'm unknowingly spluttering over my own mistakes.
True
Comparing arrays with `assert` seems to take polynomial time. - <!-- Thank you for reporting an issue. This issue tracker is for bugs and issues found within Node.js core. If you require more general support please file an issue on our help repo. https://github.com/nodejs/help Please fill in as much of the template below as you're able. Version: Platform: If possible, please provide code that demonstrates the problem, keeping it as simple and free of external dependencies as you are able. --> * **Version**: 6.10.3 x64 * **Platform**: OS X 12.4 <!-- Enter your issue details below this comment. --> Comparing two arrays with `assert.deepEqual` or `.deepStrictEqual` seems to take a polynomial amount of time relative to the array size. Quick code: ```js function longTest(n) { const bigSource = Array.apply(null, Array(n)); const a1 = bigSource.map((n) => ({ yarp: 'yarp', nope: {yarp: '123', a: [1,2,3]} })); const a2 = bigSource.map((n) => ({ yarp: 'yarp', nope: {yarp: '123', a: [1,2,3]} })); //a2[a2.length - 1].nope = 'nope'; const tStart = Date.now(); assert.deepEqual(a2, a1); const tEnd = Date.now(); const dt = tEnd - tStart; return dt; } let n = 1; for (let i = 0; i<=40; i++) { n = Math.round(n*1.5); const dt = longTest(n); console.log(`${n}, ${dt}`) } ``` Returns a list of (n),(time) pairs. On my machine, the output of this is ```csv 2, 2 3, 0 5, 0 8, 0 12, 1 18, 1 27, 6 41, 5 62, 1 93, 1 140, 2 210, 3 315, 5 473, 7 710, 11 1065, 21 1598, 40 2397, 70 3596, 135 5394, 270 8091, 581 12137, 1184 18206, 2590 27309, 5679 40964, 12539 61446, 28906 92169, 63617 ``` Graphed, this looks like ![linear](https://cloud.githubusercontent.com/assets/6732831/25733102/420505aa-3199-11e7-8c47-95b76d06f844.jpg) Or to illustrate what I think I'm seeing, we can plot on a log-log scale graph: ![loglog](https://cloud.githubusercontent.com/assets/6732831/25733110/5256db9a-3199-11e7-9acc-56165f943fbb.jpg) Just to be explicit, I would expect this operation to take O(n) time. I'm quite possibly doing something very silly, so apologies in advance if I'm unknowingly spluttering over my own mistakes.
non_defect
comparing arrays with assert seems to take polynomial time thank you for reporting an issue this issue tracker is for bugs and issues found within node js core if you require more general support please file an issue on our help repo please fill in as much of the template below as you re able version platform if possible please provide code that demonstrates the problem keeping it as simple and free of external dependencies as you are able version platform os x comparing two arrays with assert deepequal or deepstrictequal seems to take a polynomial amount of time relative to the array size quick code js function longtest n const bigsource array apply null array n const bigsource map n yarp yarp nope yarp a const bigsource map n yarp yarp nope yarp a nope nope const tstart date now assert deepequal const tend date now const dt tend tstart return dt let n for let i i i n math round n const dt longtest n console log n dt returns a list of n time pairs on my machine the output of this is csv graphed this looks like or to illustrate what i think i m seeing we can plot on a log log scale graph just to be explicit i would expect this operation to take o n time i m quite possibly doing something very silly so apologies in advance if i m unknowingly spluttering over my own mistakes
0
1,847
2,603,972,422
IssuesEvent
2015-02-24 19:00:35
chrsmith/nishazi6
https://api.github.com/repos/chrsmith/nishazi6
opened
沈阳病毒尖锐疣怎么治
auto-migrated Priority-Medium Type-Defect
``` 沈阳病毒尖锐疣怎么治〓沈陽軍區政治部醫院性病〓TEL:024-3 1023308〓成立于1946年,68年專注于性傳播疾病的研究和治療。� ��于沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌� ��歷史悠久、設備精良、技術權威、專家云集,是預防、保健 、醫療、科研康復為一體的綜合性醫院。是國家首批公立甲�� �部隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、� ��南大學等知名高等院校的教學醫院。曾被中國人民解放軍空 軍后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體�� �等功。 ``` ----- Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 8:00
1.0
沈阳病毒尖锐疣怎么治 - ``` 沈阳病毒尖锐疣怎么治〓沈陽軍區政治部醫院性病〓TEL:024-3 1023308〓成立于1946年,68年專注于性傳播疾病的研究和治療。� ��于沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌� ��歷史悠久、設備精良、技術權威、專家云集,是預防、保健 、醫療、科研康復為一體的綜合性醫院。是國家首批公立甲�� �部隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、� ��南大學等知名高等院校的教學醫院。曾被中國人民解放軍空 軍后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體�� �等功。 ``` ----- Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 8:00
defect
沈阳病毒尖锐疣怎么治 沈阳病毒尖锐疣怎么治〓沈陽軍區政治部醫院性病〓tel: 〓 , 。� �� 。是一所與新中國同建立共輝煌� ��歷史悠久、設備精良、技術權威、專家云集,是預防、保健 、醫療、科研康復為一體的綜合性醫院。是國家首批公立甲�� �部隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、� ��南大學等知名高等院校的教學醫院。曾被中國人民解放軍空 軍后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體�� �等功。 original issue reported on code google com by gmail com on jun at
1
282,873
8,711,235,233
IssuesEvent
2018-12-06 18:37:10
supergiant/control
https://api.github.com/repos/supergiant/control
closed
Track preprovision as a task
High Priority
Currently preprovision steps are made without any ability to retry it, also it goes further even though preprovision has failed, that leads to misinterpreting errors.
1.0
Track preprovision as a task - Currently preprovision steps are made without any ability to retry it, also it goes further even though preprovision has failed, that leads to misinterpreting errors.
non_defect
track preprovision as a task currently preprovision steps are made without any ability to retry it also it goes further even though preprovision has failed that leads to misinterpreting errors
0
66,380
20,163,563,405
IssuesEvent
2022-02-10 00:33:17
SeleniumHQ/selenium
https://api.github.com/repos/SeleniumHQ/selenium
closed
[🐛 Bug]: CLOSED
I-defect needs-triaging
### What happened? If i try to locate the the element <span> rzrmhxbwuiteam.testinator.com</span> in the below html code i get error: OpenQA.Selenium.StaleElementReferenceException: "stale element reference: element is not attached to the page document (Session info: chrome=98.0.4758.82)" But my code is right with inspector i can locate the element by search with //div[@class='description-block']/div/p[2]/span and how you see there is NO iframe in the code. So why i cant get locate the element. I think there is something with that site that block it. I realy need to get acces to this part of the HTML and need a solution maybe there is something in selenium i dont know to trick it. I Use Chromedriver as follow: program.options.AddArguments("disable-blink-features=AutomationControlled"); program.driver3 = new ChromeDriver(program.options); This is the full html code of the site <html lang="en"><head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> <link rel="stylesheet" href="../css/bootstrap.min.css"> <link rel="stylesheet" href="../../v4/css/style.bundle.css"> <title>Mailinator</title> <script src="../js/jquery-3.5.1.min.js"></script> <script src="../js/bootstrap.min.js"></script> <script type="text/javascript" src="js/m8rauth.js"></script> <script src="../js/jquery.OverlayScrollbars.js"></script> <style> a { color: darkblue; } </style></head> <body><header class="header"> <div class="primary-header secondary-header"> <div class="d-flex flex-wrap justify-content-between"> <div class="order-0 p-y-15"> <div class="wrapper-nav-brand d-flex align-items-center h-100"> <div id="menuToggle" class="d-flex flex-column"> <button type="button" class="hamburger-menu" data-toggle="modal" data-target="#nav-top-header" aria-label="Menu button"><img src="../img/homepage/menu-icon.svg" alt="hamburger menu"> </button> </div> <div class="modal fade nav-top-header" id="nav-top-header" tabindex="-1" role="dialog" aria-labelledby="nav-top-header"> <div class="modal-dialog h-100" role="document"> <div class="modal-content h-100"> <div class="modal-header align-items-center"> <div class="wrapper-modal-title d-flex align-items-center justify-content-center"> <div class="modal-logo"> <img src="https://www.mailinator.com/site/wp-content/uploads/2021/05/Mailinator-Logo.svg" width="80" height="30" alt="modal logo"> </div> </div> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <img src="../img/homepage/close-button.svg" alt="close button"> </button> </div> <!------------- TOP NAV - MOBILE -----------> <div class="modal-body"> <div id="modal-top" class="wrapper-modal d-flex flex-column"> <a href="/index.jsp" class="modal-item" aria-label="Home"> Home </a> <a href="/v4/accessibility.html" class="modal-item" aria-label="Terms"> Accessibility</a> <a href="/v4/terms.html" class="modal-item" aria-label="Terms"> Terms</a> <a href="/v4/privacy.html" class="modal-item" aria-label="Privacy Policy"> Privacy Policy </a> <a href="#" class="modal-item copyright" aria-label="© Copyright 2022 Manybrain, LLC. All Rights Reserved"> Copyright 2022 Manybrain, LLC. All Rights Reserved </a> </div> </div> <div class="modal-footer border-0"> <a href="/v4/logout.jsp" style="color:#000" class="modal-login d-flex justify-content-center align-items-center w-100" aria-label="Login"> Logout </a> </div> </div> </div> </div> <div class="nav-logo"> <a href="/"> <img src="https://www.mailinator.com/site/wp-content/uploads/2021/05/Mailinator-Logo.svg" width="200" height="50" alt="modal logo"> </a> </div> </div> </div> <div class="order-2 order-xl-1 d-flex lg-center align-items-center fixed-header"> <div class="wrapper-nav-inputs"> <div class="input-group"> <input class="form-control input-text h-auto" placeholder="Enter Inbox Name" aria-label="Enter Inbox Name" aria-describedby="go-to-public" id="addOverlay"> <div class="input-group-append"> <button class="btn btn-go-public h-auto" type="button" id="go-to-public" aria-label="Go to public"> GO TO PUBLIC MAILINATOR </button> </div> </div> </div> </div> <!------------- TOP NAV - DESKTOP -----------> <div class="order-1 order-xl-2 d-flex align-items-center justify-content-end"> <div class="wrapper-nav-items d-flex align-items-center h-100"> <a href="/v4/private/inboxes.jsp" class="nav-item" aria-label="Email"> Email </a> <a href="https://www.mailinator.com/site/pricing/" class="nav-item" aria-label="Pricing"> Pricing </a> <a href="https://www.mailinator.com/docs/index.html" class="nav-item hidden-link-header" aria-label="Documentation"> Documentation </a> <a href="https://www.mailinator.com/site/mailinator-faqs/" class="nav-item" aria-label="FAQ"> FAQ </a> <a href="/v4/private/profile.jsp" class="nav-item d-flex align-items-center justify-content-center" style="color:#FFF;font-size: .8em;" aria-label="User Email"> 1621917affiliate123@it-ce.de <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M5.29289 7.29289C5.68342 6.90237 6.31658 6.90237 6.70711 7.29289L10 10.5858L13.2929 7.29289C13.6834 6.90237 14.3166 6.90237 14.7071 7.29289C15.0976 7.68342 15.0976 8.31658 14.7071 8.70711L10.7071 12.7071C10.3166 13.0976 9.68342 13.0976 9.29289 12.7071L5.29289 8.70711C4.90237 8.31658 4.90237 7.68342 5.29289 7.29289Z" fill="#ffffff"></path> </svg> </a> <button class="button-primary" onclick="window.location='/v4/logout.jsp';" style="color: white;background-color: #000;padding:5px;font-size: 9px;"> LOGOUT </button> </div> </div> </div> </div> </header> <div class="default-class main d-flex flex-grow-1"> <!-------------------------------------- LEFT NAV --------------------------------------------> <aside class="sidebar d-flex flex-column"> <div class="d-flex flex-column primary-line m-b-50"> <a class="sidebar-links m-b-25 d-flex align-items-center text-decoration-none" href="/v4/private/inboxes.jsp"> <svg class="sidebar-svg m-r-15" width="20" height="16" viewBox="0 0 20 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M18 0H2C0.9 0 0.00999999 0.9 0.00999999 2L0 14C0 15.1 0.9 16 2 16H18C19.1 16 20 15.1 20 14V2C20 0.9 19.1 0 18 0ZM18 4L10 9L2 4V2L10 7L18 2V4Z" fill="#60719B"></path> </svg> Private Team Inbox </a> <a class="sidebar-links m-b-25 d-flex align-items-center text-decoration-none" href="/v4/private/team_settings.jsp"> <svg class="sidebar-svg m-r-15" width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M17.6502 11.5237C17.6888 11.1956 17.7145 10.8544 17.7145 10.5C17.7145 10.1456 17.6888 9.80438 17.6373 9.47625L19.8102 7.74375C20.0031 7.58625 20.0545 7.2975 19.9388 7.07437L17.8816 3.43875C17.753 3.2025 17.483 3.12375 17.2516 3.2025L14.693 4.2525C14.153 3.8325 13.5872 3.49125 12.9572 3.22875L12.5715 0.44625C12.5329 0.18375 12.3143 0 12.0572 0H7.94281C7.68566 0 7.47994 0.18375 7.44137 0.44625L7.05565 3.22875C6.42563 3.49125 5.84705 3.84562 5.31989 4.2525L2.76126 3.2025C2.52982 3.11063 2.25982 3.2025 2.13124 3.43875L0.0740529 7.07437C-0.0545216 7.31062 -0.00309159 7.58625 0.202628 7.74375L2.37554 9.47625C2.32411 9.80438 2.28553 10.1587 2.28553 10.5C2.28553 10.8413 2.31125 11.1956 2.36268 11.5237L0.18977 13.2563C-0.00309189 13.4138 -0.0545215 13.7025 0.0611955 13.9256L2.11839 17.5613C2.24696 17.7975 2.51697 17.8763 2.7484 17.7975L5.30703 16.7475C5.84705 17.1675 6.41277 17.5087 7.04279 17.7712L7.42851 20.5537C7.47994 20.8162 7.68566 21 7.94281 21H12.0572C12.3143 21 12.5329 20.8162 12.5586 20.5537L12.9444 17.7712C13.5744 17.5087 14.153 17.1544 14.6801 16.7475L17.2387 17.7975C17.4702 17.8894 17.7402 17.7975 17.8688 17.5613L19.9259 13.9256C20.0545 13.6894 20.0031 13.4138 19.7974 13.2563L17.6502 11.5237ZM10 14.4375C7.87852 14.4375 6.14277 12.6656 6.14277 10.5C6.14277 8.33438 7.87852 6.5625 10 6.5625C12.1215 6.5625 13.8572 8.33438 13.8572 10.5C13.8572 12.6656 12.1215 14.4375 10 14.4375Z" fill="#60719B"></path> </svg> Team Settings </a> <a class="sidebar-links m-b-25 d-flex align-items-center text-decoration-none" href="/v4/private/team_management.jsp"> <svg class="sidebar-svg m-r-15" width="20" height="20" viewBox="0 0 20 20" fill="none" <defs=""> <style>.cls-1 { fill: #fff; opacity: 0; } .cls-2 { fill: #60719B }</style> <title>people</title> <g id="Layer_2" data-name="Layer 2"> <g id="people"> <g id="people-2" data-name="people"> <rect class="cls-1" width="24" height="24" fill="#60719B"></rect> <path class="cls-2" d="M9,11A4,4,0,1,0,5,7,4,4,0,0,0,9,11Z" fill="#60719B"></path> <path class="cls-2" d="M17,13a3,3,0,1,0-3-3A3,3,0,0,0,17,13Z" fill="#60719B"></path> <path class="cls-2" d="M21,20a1,1,0,0,0,1-1,5,5,0,0,0-8.06-3.95A7,7,0,0,0,2,20a1,1,0,0,0,1,1H15a1,1,0,0,0,1-1" fill="#60719B"></path> </g> </g> </g> </svg> Team Management </a> <a class="sidebar-links m-b-30 d-flex align-items-center text-decoration-none" href="/v4/private/stats.jsp"> <svg class="sidebar-svg m-r-15" width="20" height="16" viewBox="0 0 20 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <g class="bars"> <rect fill="#60719B" width="35%" height="25"></rect>; <rect fill="#60719B" width="45%" height="20"></rect> </g> </svg> Statistics </a> <a class="sidebar-links m-b-25 d-flex align-items-center text-decoration-none" href="/v4/private/message_rules.jsp"> <svg class="sidebar-svg m-r-15" width="22" height="21" viewBox="0 0 22 21" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.0005 13.5001V11.0001H9.00055V14.0001H7.00055V10.0001C7.00055 9.73484 7.1059 9.48049 7.29344 9.29295C7.48098 9.10542 7.73533 9.00006 8.00055 9.00006H13.0005V6.50006L16.5005 10.0001L13.0005 13.5001ZM20.7105 10.2901L11.7105 1.29006H11.7005C11.3105 0.900059 10.6805 0.900059 10.2905 1.29006L1.29055 10.2901C0.900547 10.6801 0.900547 11.3201 1.29055 11.7101L10.2905 20.7101C10.6805 21.0901 11.3105 21.1001 11.7105 20.7101L20.7105 11.7101C21.1005 11.3201 21.1005 10.6801 20.7105 10.2901Z" fill="#60719B"></path> </svg> Message Rules </a> <a class="sidebar-links p-b-25 primary-border-b d-flex align-items-center text-decoration-none" href="/v4/private/quick_start.jsp"> <svg class="sidebar-svg m-r-15" width="16" height="20" viewBox="0 0 16 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M9 7H14.5L9 1.5V7ZM2 0H10L16 6V18C16 18.5304 15.7893 19.0391 15.4142 19.4142C15.0391 19.7893 14.5304 20 14 20H2C0.89 20 0 19.1 0 18V2C0 0.89 0.89 0 2 0ZM10 16V14H3V16H10ZM13 12V10H3V12H13Z" fill="#60719B"></path> </svg> Quick Start Docs </a> </div> <div class="d-flex flex-column primary-line m-b-50"> <a class="sidebar-links m-b-30 d-flex align-items-center text-decoration-none" href="/v4/public/inboxes.jsp"> <svg class="sidebar-svg m-r-15" width="20" height="16" viewBox="0 0 20 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M18 0H2C0.9 0 0.00999999 0.9 0.00999999 2L0 14C0 15.1 0.9 16 2 16H18C19.1 16 20 15.1 20 14V2C20 0.9 19.1 0 18 0ZM18 4L10 9L2 4V2L10 7L18 2V4Z" fill="#60719B"></path> </svg> Public Inboxes </a> <div style="text-align: center;font-weight: bold;"> Your Trial Ends in <br> <span style="color:red;"> 13 </span>days. <br> <a href="https://www.mailinator.com/site/pricing/">Subscribe Now!</a> </div> </div> <div class="d-flex flex-column justify-content-end flex-grow-1 primary-line"> <a style="color:#000;" href="https://status.mailinator.com">System Status</a> <br> <a style="color:#000;" href="https://www.mailinator.com/site/terms-of-use/">Terms</a> <br> <a style="color:#000;" href="https://www.mailinator.com/site/privacy-policy/">Privacy</a> <br> <a style="color:#000;" href="https://www.mailinator.com/site/accessibility/">Accessibility</a> <br> <a style="color:#000;" href="https://www.mailinator.com/site/security-details/">Security</a> </div> <div class="p-r-50 p-t-25"> <p style="font-size:.7em;">Copyright 2022 Manybrain, LLC. All Rights Reserved</p> </div> </aside> <!-- dont close the initial div here --> <main class="main-content"> <div class="main-container-fluid"> <div class="quick-start d-flex justify-content-between"> <h4 class="fw-700">Mailinator Quick Start</h4> <a href="https://www.mailinator.com/docs/index.html" class="link d-flex align-items-center text-decoration-none"> <svg class="m-r-10" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M9.77778 12.4444H3.55556V10.6667H9.77778V12.4444ZM12.4444 8.88889H3.55556V7.11111H12.4444V8.88889ZM12.4444 5.33333H3.55556V3.55556H12.4444V5.33333ZM14.2222 0H1.77778C0.791111 0 0 0.791111 0 1.77778V14.2222C0 14.6937 0.187301 15.1459 0.520699 15.4793C0.854097 15.8127 1.30628 16 1.77778 16H14.2222C14.6937 16 15.1459 15.8127 15.4793 15.4793C15.8127 15.1459 16 14.6937 16 14.2222V1.77778C16 0.791111 15.2 0 14.2222 0Z" fill="#2979FF"></path> </svg> Go to Full Documentation</a> </div> <div class="description-block"> <div class="item" style="font-size: 15px;"> <div class="m-b-20 fz-20 fw-700">Your Own Private Domain</div> <p class="description"> You now have your own Private Domain! All email in that domain stays Private to you, sticks around until you delete it (or you fill up your storage), and doesn't have rate limits !</p> <p class="description"> Your Private Domain is: <span> rzrmhxbwuiteam.testinator.com </span> </p> <p class="description"> (You can change it on the <a class="text-decoration-none" href="team_settings.jsp"> Team Settings </a> page) </p> <p class="description"> All email sent to email addresses* <b>@rzrmhxbwuiteam.testinator.com </b> will arrive in your Private Team Inbox. <br> </p> <p class="description"> You can try it right now! Send an email to: </p> <p class="description"> <span> test1@rzrmhxbwuiteam.testinator.com</span></p> <p class="description"> Then check your Private Team Inbox. </p> </div> <div class="item" style="font-size: 15px;"> <div class="m-b-20 fz-20 fw-700">API</div> <p class="description"> You also have access to all Mailinator email (public and private) through our API. You'll find your token on the Team Settings page. Use that token in a Authorization Header to authorize your api calls (see the API documentation for more information). </p> <p class="description"> We also have Mailinator API SDKs for many popular programming languages including <a href="https://github.com/manybrain/mailinator-java-client" rel="nofollow">Java</a>, <a href="https://github.com/manybrain/mailinator-csharp-client" rel="nofollow">C#</a>, <a href="https://www.npmjs.com/package/mailinator-client" rel="nofollow">Javascript</a>, <a href="https://github.com/manybrain/mailinator-ruby-client" rel="nofollow">Ruby</a>, <a href="https://github.com/manybrain/mailinator-go-client" rel="nofollow">Go</a>, and <a href="https://github.com/manybrain/mailinator-python-client" rel="nofollow">Python</a>. </p> <p class="description"> You can of course use the API to read your Private Domain email too. Consult the <a class="text-decoration-none" href="https://www.mailinator.com/docs/index.html"> API documentation </a> for specifics! </p> <p class="description">Try it now - click this link to test the API:</p> <p class="description"> <span> <a href="https://www.mailinator.com/api/v2/domains/public/inboxes/test"> www.mailinator.com/api/v2/domains/public/inboxes/test </a> </span> </p> <p class="fz-18">(Note JSON is often not well-formatted in web browsers but you get the idea).</p> </div> <div class="item" style="font-size: 15px;"> <div class="m-b-20 fz-20 fw-700">Message Routing Rules</div> <p class="description">Mailinator Message Rules allow you to tell the system to act on messages the moment they arrive.</p> <p class="description">For example, you could create rules like:</p> <div> <p class="rules m-b-10"> <span style="font-family: 'Courier New';color:#000;background-color: #fff;"> IF inbox == bob THEN <br> &nbsp; &nbsp; &nbsp; &nbsp; webhook: yourwebsite.com/rest/webhook </span> </p> <p class="rules m-b-10"> <span style="font-family: 'Courier New';color:#000;background-color: #fff;"> IF inbox == joe THEN CLICK-ALL-LINKS </span> </p> </div> <p class="description">The first rule will "push" emails, as they arrive, to a REST endpoint you setup. The second rule will automatically click all links in any email that arrives in your Private Domain's "joe" inbox.</p> <p class="description">Check out the "Message Rules" page to set them up and Documentation for more info.</p> </div> <div class="item" style="font-size: 15px;"> <div class="m-b-20 fz-20 fw-700">Team Invites</div> <p class="description">If you're a Team Admin, you can invite your co-workers into your Mailinator account. See the Team Management page for details.</p> <p class="description">We hope you enjoy Mailinator. If you have any questions, email us at <b>support@manybrain.com</b> </p> </div> </div> </div> <div style="margin-left:30px;font-size: .8em"><p> * A small number of inbox names are restricted when using a Private Subdomain (i.e. xyz.testinator.com) for security reasons. Don't fret however, you still have Trillions to choose from. <br>There are no restrictions on inbox names for Private Domains where you own the domain.</p> </div> </main> </div> <footer class="footer hide"> <div class="footer-container d-flex justify-content-between align-items-center"> <div class="wrapper-nav-footer d-flex ff-futura-book"> <div> <ul class="d-flex"> <li class="item"><a href="/" aria-label="Home"> Home </a> </li> <li class="item"><a href="/v4/public/inboxes.jsp" aria-label="Email"> Email </a> </li> <li class="item"> <div class="dropdown d-flex"> <a href="/site/pricing/" class="modal-item dropdown-toggle d-flex align-items-center" type="" id="dropdownFooter" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Pricing </a> </div> </li> </ul> </div> </div> <div> <ul class="d-flex"> <li class="item"> <a href="https://www.mailinator.com/site/mailinator-faqs/" aria-label="FAQ"> FAQ </a> </li> </ul> </div> <div> <ul class="d-flex"> <li class="item"> <a href="https://www.mailinator.com/site/terms-of-use/" aria-label="Terms"> Terms </a> </li> <li class="item"> <a href="https://www.mailinator.com/site/privacy-policy/" aria-label="Privacy Policy"> Privacy </a> </li> </ul> </div> </div> <div class="wrapper-copyright"> Copyright 2022 Manybrain, Inc. All Rights Reserved </div> </footer> <!-- unneeded ? --> <script src="../../v4/js/bundle.js"></script> </body></html> ### How can we reproduce the issue? ```shell Goto Mailnator and login its the first page after login. ``` ### Relevant log output ```shell No ``` ### Operating System Windows 10 ### Selenium version 4.0.1 ### What are the browser(s) and version(s) where you see this issue? Chrome 98.0.4758.82 ### What are the browser driver(s) and version(s) where you see this issue? Chrome Driver 98.0.4758.82 ### Are you using Selenium Grid? No
1.0
[🐛 Bug]: CLOSED - ### What happened? If i try to locate the the element <span> rzrmhxbwuiteam.testinator.com</span> in the below html code i get error: OpenQA.Selenium.StaleElementReferenceException: "stale element reference: element is not attached to the page document (Session info: chrome=98.0.4758.82)" But my code is right with inspector i can locate the element by search with //div[@class='description-block']/div/p[2]/span and how you see there is NO iframe in the code. So why i cant get locate the element. I think there is something with that site that block it. I realy need to get acces to this part of the HTML and need a solution maybe there is something in selenium i dont know to trick it. I Use Chromedriver as follow: program.options.AddArguments("disable-blink-features=AutomationControlled"); program.driver3 = new ChromeDriver(program.options); This is the full html code of the site <html lang="en"><head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> <link rel="stylesheet" href="../css/bootstrap.min.css"> <link rel="stylesheet" href="../../v4/css/style.bundle.css"> <title>Mailinator</title> <script src="../js/jquery-3.5.1.min.js"></script> <script src="../js/bootstrap.min.js"></script> <script type="text/javascript" src="js/m8rauth.js"></script> <script src="../js/jquery.OverlayScrollbars.js"></script> <style> a { color: darkblue; } </style></head> <body><header class="header"> <div class="primary-header secondary-header"> <div class="d-flex flex-wrap justify-content-between"> <div class="order-0 p-y-15"> <div class="wrapper-nav-brand d-flex align-items-center h-100"> <div id="menuToggle" class="d-flex flex-column"> <button type="button" class="hamburger-menu" data-toggle="modal" data-target="#nav-top-header" aria-label="Menu button"><img src="../img/homepage/menu-icon.svg" alt="hamburger menu"> </button> </div> <div class="modal fade nav-top-header" id="nav-top-header" tabindex="-1" role="dialog" aria-labelledby="nav-top-header"> <div class="modal-dialog h-100" role="document"> <div class="modal-content h-100"> <div class="modal-header align-items-center"> <div class="wrapper-modal-title d-flex align-items-center justify-content-center"> <div class="modal-logo"> <img src="https://www.mailinator.com/site/wp-content/uploads/2021/05/Mailinator-Logo.svg" width="80" height="30" alt="modal logo"> </div> </div> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <img src="../img/homepage/close-button.svg" alt="close button"> </button> </div> <!------------- TOP NAV - MOBILE -----------> <div class="modal-body"> <div id="modal-top" class="wrapper-modal d-flex flex-column"> <a href="/index.jsp" class="modal-item" aria-label="Home"> Home </a> <a href="/v4/accessibility.html" class="modal-item" aria-label="Terms"> Accessibility</a> <a href="/v4/terms.html" class="modal-item" aria-label="Terms"> Terms</a> <a href="/v4/privacy.html" class="modal-item" aria-label="Privacy Policy"> Privacy Policy </a> <a href="#" class="modal-item copyright" aria-label="© Copyright 2022 Manybrain, LLC. All Rights Reserved"> Copyright 2022 Manybrain, LLC. All Rights Reserved </a> </div> </div> <div class="modal-footer border-0"> <a href="/v4/logout.jsp" style="color:#000" class="modal-login d-flex justify-content-center align-items-center w-100" aria-label="Login"> Logout </a> </div> </div> </div> </div> <div class="nav-logo"> <a href="/"> <img src="https://www.mailinator.com/site/wp-content/uploads/2021/05/Mailinator-Logo.svg" width="200" height="50" alt="modal logo"> </a> </div> </div> </div> <div class="order-2 order-xl-1 d-flex lg-center align-items-center fixed-header"> <div class="wrapper-nav-inputs"> <div class="input-group"> <input class="form-control input-text h-auto" placeholder="Enter Inbox Name" aria-label="Enter Inbox Name" aria-describedby="go-to-public" id="addOverlay"> <div class="input-group-append"> <button class="btn btn-go-public h-auto" type="button" id="go-to-public" aria-label="Go to public"> GO TO PUBLIC MAILINATOR </button> </div> </div> </div> </div> <!------------- TOP NAV - DESKTOP -----------> <div class="order-1 order-xl-2 d-flex align-items-center justify-content-end"> <div class="wrapper-nav-items d-flex align-items-center h-100"> <a href="/v4/private/inboxes.jsp" class="nav-item" aria-label="Email"> Email </a> <a href="https://www.mailinator.com/site/pricing/" class="nav-item" aria-label="Pricing"> Pricing </a> <a href="https://www.mailinator.com/docs/index.html" class="nav-item hidden-link-header" aria-label="Documentation"> Documentation </a> <a href="https://www.mailinator.com/site/mailinator-faqs/" class="nav-item" aria-label="FAQ"> FAQ </a> <a href="/v4/private/profile.jsp" class="nav-item d-flex align-items-center justify-content-center" style="color:#FFF;font-size: .8em;" aria-label="User Email"> 1621917affiliate123@it-ce.de <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M5.29289 7.29289C5.68342 6.90237 6.31658 6.90237 6.70711 7.29289L10 10.5858L13.2929 7.29289C13.6834 6.90237 14.3166 6.90237 14.7071 7.29289C15.0976 7.68342 15.0976 8.31658 14.7071 8.70711L10.7071 12.7071C10.3166 13.0976 9.68342 13.0976 9.29289 12.7071L5.29289 8.70711C4.90237 8.31658 4.90237 7.68342 5.29289 7.29289Z" fill="#ffffff"></path> </svg> </a> <button class="button-primary" onclick="window.location='/v4/logout.jsp';" style="color: white;background-color: #000;padding:5px;font-size: 9px;"> LOGOUT </button> </div> </div> </div> </div> </header> <div class="default-class main d-flex flex-grow-1"> <!-------------------------------------- LEFT NAV --------------------------------------------> <aside class="sidebar d-flex flex-column"> <div class="d-flex flex-column primary-line m-b-50"> <a class="sidebar-links m-b-25 d-flex align-items-center text-decoration-none" href="/v4/private/inboxes.jsp"> <svg class="sidebar-svg m-r-15" width="20" height="16" viewBox="0 0 20 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M18 0H2C0.9 0 0.00999999 0.9 0.00999999 2L0 14C0 15.1 0.9 16 2 16H18C19.1 16 20 15.1 20 14V2C20 0.9 19.1 0 18 0ZM18 4L10 9L2 4V2L10 7L18 2V4Z" fill="#60719B"></path> </svg> Private Team Inbox </a> <a class="sidebar-links m-b-25 d-flex align-items-center text-decoration-none" href="/v4/private/team_settings.jsp"> <svg class="sidebar-svg m-r-15" width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M17.6502 11.5237C17.6888 11.1956 17.7145 10.8544 17.7145 10.5C17.7145 10.1456 17.6888 9.80438 17.6373 9.47625L19.8102 7.74375C20.0031 7.58625 20.0545 7.2975 19.9388 7.07437L17.8816 3.43875C17.753 3.2025 17.483 3.12375 17.2516 3.2025L14.693 4.2525C14.153 3.8325 13.5872 3.49125 12.9572 3.22875L12.5715 0.44625C12.5329 0.18375 12.3143 0 12.0572 0H7.94281C7.68566 0 7.47994 0.18375 7.44137 0.44625L7.05565 3.22875C6.42563 3.49125 5.84705 3.84562 5.31989 4.2525L2.76126 3.2025C2.52982 3.11063 2.25982 3.2025 2.13124 3.43875L0.0740529 7.07437C-0.0545216 7.31062 -0.00309159 7.58625 0.202628 7.74375L2.37554 9.47625C2.32411 9.80438 2.28553 10.1587 2.28553 10.5C2.28553 10.8413 2.31125 11.1956 2.36268 11.5237L0.18977 13.2563C-0.00309189 13.4138 -0.0545215 13.7025 0.0611955 13.9256L2.11839 17.5613C2.24696 17.7975 2.51697 17.8763 2.7484 17.7975L5.30703 16.7475C5.84705 17.1675 6.41277 17.5087 7.04279 17.7712L7.42851 20.5537C7.47994 20.8162 7.68566 21 7.94281 21H12.0572C12.3143 21 12.5329 20.8162 12.5586 20.5537L12.9444 17.7712C13.5744 17.5087 14.153 17.1544 14.6801 16.7475L17.2387 17.7975C17.4702 17.8894 17.7402 17.7975 17.8688 17.5613L19.9259 13.9256C20.0545 13.6894 20.0031 13.4138 19.7974 13.2563L17.6502 11.5237ZM10 14.4375C7.87852 14.4375 6.14277 12.6656 6.14277 10.5C6.14277 8.33438 7.87852 6.5625 10 6.5625C12.1215 6.5625 13.8572 8.33438 13.8572 10.5C13.8572 12.6656 12.1215 14.4375 10 14.4375Z" fill="#60719B"></path> </svg> Team Settings </a> <a class="sidebar-links m-b-25 d-flex align-items-center text-decoration-none" href="/v4/private/team_management.jsp"> <svg class="sidebar-svg m-r-15" width="20" height="20" viewBox="0 0 20 20" fill="none" <defs=""> <style>.cls-1 { fill: #fff; opacity: 0; } .cls-2 { fill: #60719B }</style> <title>people</title> <g id="Layer_2" data-name="Layer 2"> <g id="people"> <g id="people-2" data-name="people"> <rect class="cls-1" width="24" height="24" fill="#60719B"></rect> <path class="cls-2" d="M9,11A4,4,0,1,0,5,7,4,4,0,0,0,9,11Z" fill="#60719B"></path> <path class="cls-2" d="M17,13a3,3,0,1,0-3-3A3,3,0,0,0,17,13Z" fill="#60719B"></path> <path class="cls-2" d="M21,20a1,1,0,0,0,1-1,5,5,0,0,0-8.06-3.95A7,7,0,0,0,2,20a1,1,0,0,0,1,1H15a1,1,0,0,0,1-1" fill="#60719B"></path> </g> </g> </g> </svg> Team Management </a> <a class="sidebar-links m-b-30 d-flex align-items-center text-decoration-none" href="/v4/private/stats.jsp"> <svg class="sidebar-svg m-r-15" width="20" height="16" viewBox="0 0 20 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <g class="bars"> <rect fill="#60719B" width="35%" height="25"></rect>; <rect fill="#60719B" width="45%" height="20"></rect> </g> </svg> Statistics </a> <a class="sidebar-links m-b-25 d-flex align-items-center text-decoration-none" href="/v4/private/message_rules.jsp"> <svg class="sidebar-svg m-r-15" width="22" height="21" viewBox="0 0 22 21" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.0005 13.5001V11.0001H9.00055V14.0001H7.00055V10.0001C7.00055 9.73484 7.1059 9.48049 7.29344 9.29295C7.48098 9.10542 7.73533 9.00006 8.00055 9.00006H13.0005V6.50006L16.5005 10.0001L13.0005 13.5001ZM20.7105 10.2901L11.7105 1.29006H11.7005C11.3105 0.900059 10.6805 0.900059 10.2905 1.29006L1.29055 10.2901C0.900547 10.6801 0.900547 11.3201 1.29055 11.7101L10.2905 20.7101C10.6805 21.0901 11.3105 21.1001 11.7105 20.7101L20.7105 11.7101C21.1005 11.3201 21.1005 10.6801 20.7105 10.2901Z" fill="#60719B"></path> </svg> Message Rules </a> <a class="sidebar-links p-b-25 primary-border-b d-flex align-items-center text-decoration-none" href="/v4/private/quick_start.jsp"> <svg class="sidebar-svg m-r-15" width="16" height="20" viewBox="0 0 16 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M9 7H14.5L9 1.5V7ZM2 0H10L16 6V18C16 18.5304 15.7893 19.0391 15.4142 19.4142C15.0391 19.7893 14.5304 20 14 20H2C0.89 20 0 19.1 0 18V2C0 0.89 0.89 0 2 0ZM10 16V14H3V16H10ZM13 12V10H3V12H13Z" fill="#60719B"></path> </svg> Quick Start Docs </a> </div> <div class="d-flex flex-column primary-line m-b-50"> <a class="sidebar-links m-b-30 d-flex align-items-center text-decoration-none" href="/v4/public/inboxes.jsp"> <svg class="sidebar-svg m-r-15" width="20" height="16" viewBox="0 0 20 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M18 0H2C0.9 0 0.00999999 0.9 0.00999999 2L0 14C0 15.1 0.9 16 2 16H18C19.1 16 20 15.1 20 14V2C20 0.9 19.1 0 18 0ZM18 4L10 9L2 4V2L10 7L18 2V4Z" fill="#60719B"></path> </svg> Public Inboxes </a> <div style="text-align: center;font-weight: bold;"> Your Trial Ends in <br> <span style="color:red;"> 13 </span>days. <br> <a href="https://www.mailinator.com/site/pricing/">Subscribe Now!</a> </div> </div> <div class="d-flex flex-column justify-content-end flex-grow-1 primary-line"> <a style="color:#000;" href="https://status.mailinator.com">System Status</a> <br> <a style="color:#000;" href="https://www.mailinator.com/site/terms-of-use/">Terms</a> <br> <a style="color:#000;" href="https://www.mailinator.com/site/privacy-policy/">Privacy</a> <br> <a style="color:#000;" href="https://www.mailinator.com/site/accessibility/">Accessibility</a> <br> <a style="color:#000;" href="https://www.mailinator.com/site/security-details/">Security</a> </div> <div class="p-r-50 p-t-25"> <p style="font-size:.7em;">Copyright 2022 Manybrain, LLC. All Rights Reserved</p> </div> </aside> <!-- dont close the initial div here --> <main class="main-content"> <div class="main-container-fluid"> <div class="quick-start d-flex justify-content-between"> <h4 class="fw-700">Mailinator Quick Start</h4> <a href="https://www.mailinator.com/docs/index.html" class="link d-flex align-items-center text-decoration-none"> <svg class="m-r-10" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M9.77778 12.4444H3.55556V10.6667H9.77778V12.4444ZM12.4444 8.88889H3.55556V7.11111H12.4444V8.88889ZM12.4444 5.33333H3.55556V3.55556H12.4444V5.33333ZM14.2222 0H1.77778C0.791111 0 0 0.791111 0 1.77778V14.2222C0 14.6937 0.187301 15.1459 0.520699 15.4793C0.854097 15.8127 1.30628 16 1.77778 16H14.2222C14.6937 16 15.1459 15.8127 15.4793 15.4793C15.8127 15.1459 16 14.6937 16 14.2222V1.77778C16 0.791111 15.2 0 14.2222 0Z" fill="#2979FF"></path> </svg> Go to Full Documentation</a> </div> <div class="description-block"> <div class="item" style="font-size: 15px;"> <div class="m-b-20 fz-20 fw-700">Your Own Private Domain</div> <p class="description"> You now have your own Private Domain! All email in that domain stays Private to you, sticks around until you delete it (or you fill up your storage), and doesn't have rate limits !</p> <p class="description"> Your Private Domain is: <span> rzrmhxbwuiteam.testinator.com </span> </p> <p class="description"> (You can change it on the <a class="text-decoration-none" href="team_settings.jsp"> Team Settings </a> page) </p> <p class="description"> All email sent to email addresses* <b>@rzrmhxbwuiteam.testinator.com </b> will arrive in your Private Team Inbox. <br> </p> <p class="description"> You can try it right now! Send an email to: </p> <p class="description"> <span> test1@rzrmhxbwuiteam.testinator.com</span></p> <p class="description"> Then check your Private Team Inbox. </p> </div> <div class="item" style="font-size: 15px;"> <div class="m-b-20 fz-20 fw-700">API</div> <p class="description"> You also have access to all Mailinator email (public and private) through our API. You'll find your token on the Team Settings page. Use that token in a Authorization Header to authorize your api calls (see the API documentation for more information). </p> <p class="description"> We also have Mailinator API SDKs for many popular programming languages including <a href="https://github.com/manybrain/mailinator-java-client" rel="nofollow">Java</a>, <a href="https://github.com/manybrain/mailinator-csharp-client" rel="nofollow">C#</a>, <a href="https://www.npmjs.com/package/mailinator-client" rel="nofollow">Javascript</a>, <a href="https://github.com/manybrain/mailinator-ruby-client" rel="nofollow">Ruby</a>, <a href="https://github.com/manybrain/mailinator-go-client" rel="nofollow">Go</a>, and <a href="https://github.com/manybrain/mailinator-python-client" rel="nofollow">Python</a>. </p> <p class="description"> You can of course use the API to read your Private Domain email too. Consult the <a class="text-decoration-none" href="https://www.mailinator.com/docs/index.html"> API documentation </a> for specifics! </p> <p class="description">Try it now - click this link to test the API:</p> <p class="description"> <span> <a href="https://www.mailinator.com/api/v2/domains/public/inboxes/test"> www.mailinator.com/api/v2/domains/public/inboxes/test </a> </span> </p> <p class="fz-18">(Note JSON is often not well-formatted in web browsers but you get the idea).</p> </div> <div class="item" style="font-size: 15px;"> <div class="m-b-20 fz-20 fw-700">Message Routing Rules</div> <p class="description">Mailinator Message Rules allow you to tell the system to act on messages the moment they arrive.</p> <p class="description">For example, you could create rules like:</p> <div> <p class="rules m-b-10"> <span style="font-family: 'Courier New';color:#000;background-color: #fff;"> IF inbox == bob THEN <br> &nbsp; &nbsp; &nbsp; &nbsp; webhook: yourwebsite.com/rest/webhook </span> </p> <p class="rules m-b-10"> <span style="font-family: 'Courier New';color:#000;background-color: #fff;"> IF inbox == joe THEN CLICK-ALL-LINKS </span> </p> </div> <p class="description">The first rule will "push" emails, as they arrive, to a REST endpoint you setup. The second rule will automatically click all links in any email that arrives in your Private Domain's "joe" inbox.</p> <p class="description">Check out the "Message Rules" page to set them up and Documentation for more info.</p> </div> <div class="item" style="font-size: 15px;"> <div class="m-b-20 fz-20 fw-700">Team Invites</div> <p class="description">If you're a Team Admin, you can invite your co-workers into your Mailinator account. See the Team Management page for details.</p> <p class="description">We hope you enjoy Mailinator. If you have any questions, email us at <b>support@manybrain.com</b> </p> </div> </div> </div> <div style="margin-left:30px;font-size: .8em"><p> * A small number of inbox names are restricted when using a Private Subdomain (i.e. xyz.testinator.com) for security reasons. Don't fret however, you still have Trillions to choose from. <br>There are no restrictions on inbox names for Private Domains where you own the domain.</p> </div> </main> </div> <footer class="footer hide"> <div class="footer-container d-flex justify-content-between align-items-center"> <div class="wrapper-nav-footer d-flex ff-futura-book"> <div> <ul class="d-flex"> <li class="item"><a href="/" aria-label="Home"> Home </a> </li> <li class="item"><a href="/v4/public/inboxes.jsp" aria-label="Email"> Email </a> </li> <li class="item"> <div class="dropdown d-flex"> <a href="/site/pricing/" class="modal-item dropdown-toggle d-flex align-items-center" type="" id="dropdownFooter" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Pricing </a> </div> </li> </ul> </div> </div> <div> <ul class="d-flex"> <li class="item"> <a href="https://www.mailinator.com/site/mailinator-faqs/" aria-label="FAQ"> FAQ </a> </li> </ul> </div> <div> <ul class="d-flex"> <li class="item"> <a href="https://www.mailinator.com/site/terms-of-use/" aria-label="Terms"> Terms </a> </li> <li class="item"> <a href="https://www.mailinator.com/site/privacy-policy/" aria-label="Privacy Policy"> Privacy </a> </li> </ul> </div> </div> <div class="wrapper-copyright"> Copyright 2022 Manybrain, Inc. All Rights Reserved </div> </footer> <!-- unneeded ? --> <script src="../../v4/js/bundle.js"></script> </body></html> ### How can we reproduce the issue? ```shell Goto Mailnator and login its the first page after login. ``` ### Relevant log output ```shell No ``` ### Operating System Windows 10 ### Selenium version 4.0.1 ### What are the browser(s) and version(s) where you see this issue? Chrome 98.0.4758.82 ### What are the browser driver(s) and version(s) where you see this issue? Chrome Driver 98.0.4758.82 ### Are you using Selenium Grid? No
defect
closed what happened if i try to locate the the element rzrmhxbwuiteam testinator com in the below html code i get error openqa selenium staleelementreferenceexception stale element reference element is not attached to the page document session info chrome but my code is right with inspector i can locate the element by search with div div p span and how you see there is no iframe in the code so why i cant get locate the element i think there is something with that site that block it i realy need to get acces to this part of the html and need a solution maybe there is something in selenium i dont know to trick it i use chromedriver as follow program options addarguments disable blink features automationcontrolled program new chromedriver program options this is the full html code of the site mailinator a color darkblue home accessibility terms privacy policy copyright manybrain llc all rights reserved logout go to public mailinator email pricing documentation faq it ce de svg width height viewbox fill none xmlns logout svg class sidebar svg m r width height viewbox fill none xmlns private team inbox svg class sidebar svg m r width height viewbox fill none xmlns team settings cls fill fff opacity cls fill people team management svg class sidebar svg m r width height viewbox fill none xmlns statistics svg class sidebar svg m r width height viewbox fill none xmlns message rules svg class sidebar svg m r width height viewbox fill none xmlns quick start docs svg class sidebar svg m r width height viewbox fill none xmlns public inboxes your trial ends in days a style color href a style color href a style color href a style color href copyright manybrain llc all rights reserved mailinator quick start svg class m r width height viewbox fill none xmlns go to full documentation your own private domain you now have your own private domain all email in that domain stays private to you sticks around until you delete it or you fill up your storage and doesn t have rate limits your private domain is rzrmhxbwuiteam testinator com you can change it on the team settings page all email sent to email addresses rzrmhxbwuiteam testinator com will arrive in your private team inbox you can try it right now send an email to rzrmhxbwuiteam testinator com then check your private team inbox api you also have access to all mailinator email public and private through our api you ll find your token on the team settings page use that token in a authorization header to authorize your api calls see the api documentation for more information we also have mailinator api sdks for many popular programming languages including java c javascript ruby go and python you can of course use the api to read your private domain email too consult the a class text decoration none href api documentation for specifics try it now click this link to test the api a href note json is often not well formatted in web browsers but you get the idea message routing rules mailinator message rules allow you to tell the system to act on messages the moment they arrive for example you could create rules like if inbox bob then nbsp nbsp nbsp nbsp webhook yourwebsite com rest webhook if inbox joe then click all links the first rule will push emails as they arrive to a rest endpoint you setup the second rule will automatically click all links in any email that arrives in your private domain s joe inbox check out the message rules page to set them up and documentation for more info team invites if you re a team admin you can invite your co workers into your mailinator account see the team management page for details we hope you enjoy mailinator if you have any questions email us at support manybrain com a small number of inbox names are restricted when using a private subdomain i e xyz testinator com for security reasons don t fret however you still have trillions to choose from there are no restrictions on inbox names for private domains where you own the domain home email pricing faq terms privacy copyright manybrain inc all rights reserved how can we reproduce the issue shell goto mailnator and login its the first page after login relevant log output shell no operating system windows selenium version what are the browser s and version s where you see this issue chrome what are the browser driver s and version s where you see this issue chrome driver are you using selenium grid no
1
330,386
24,258,952,312
IssuesEvent
2022-09-27 20:29:59
adobe/spectrum-web-components
https://api.github.com/repos/adobe/spectrum-web-components
opened
docs: check `documentation/src/router.ts` for edge cases
Documentation triage Needs discussion
### Code of conduct - [X] I agree to follow this project's code of conduct. ### Description of issue As noted in UEC, lines 22-34 of this file have the potential to cause a 404 error upon generating the URL for the API table. Please investigate.
1.0
docs: check `documentation/src/router.ts` for edge cases - ### Code of conduct - [X] I agree to follow this project's code of conduct. ### Description of issue As noted in UEC, lines 22-34 of this file have the potential to cause a 404 error upon generating the URL for the API table. Please investigate.
non_defect
docs check documentation src router ts for edge cases code of conduct i agree to follow this project s code of conduct description of issue as noted in uec lines of this file have the potential to cause a error upon generating the url for the api table please investigate
0
182,200
21,664,489,762
IssuesEvent
2022-05-07 01:31:33
gmright2/DEFOLD_Gmright_INLINE
https://api.github.com/repos/gmright2/DEFOLD_Gmright_INLINE
closed
CVE-2021-32740 (High) detected in addressable-2.7.0.gem - autoclosed
security vulnerability
## CVE-2021-32740 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>addressable-2.7.0.gem</b></p></summary> <p>Addressable is an alternative implementation to the URI implementation that is part of Ruby's standard library. It is flexible, offers heuristic parsing, and additionally provides extensive support for IRIs and URI templates. </p> <p>Library home page: <a href="https://rubygems.org/gems/addressable-2.7.0.gem">https://rubygems.org/gems/addressable-2.7.0.gem</a></p> <p> Dependency Hierarchy: - github-pages-204.gem (Root Library) - jekyll-theme-midnight-0.1.1.gem - jekyll-3.8.5.gem - :x: **addressable-2.7.0.gem** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/gmright2/DEFOLD_Gmright_INLINE/commit/38ca8e4f9b8cdbfb059dcdeec3d6283b57fb6dff">38ca8e4f9b8cdbfb059dcdeec3d6283b57fb6dff</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Addressable is an alternative implementation to the URI implementation that is part of Ruby's standard library. An uncontrolled resource consumption vulnerability exists after version 2.3.0 through version 2.7.0. Within the URI template implementation in Addressable, a maliciously crafted template may result in uncontrolled resource consumption, leading to denial of service when matched against a URI. In typical usage, templates would not normally be read from untrusted user input, but nonetheless, no previous security advisory for Addressable has cautioned against doing this. Users of the parsing capabilities in Addressable but not the URI template capabilities are unaffected. The vulnerability is patched in version 2.8.0. As a workaround, only create Template objects from trusted sources that have been validated not to produce catastrophic backtracking. <p>Publish Date: 2021-07-06 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-32740>CVE-2021-32740</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://github.com/sporkmonger/addressable/security/advisories/GHSA-jxhc-q857-3j6g">https://github.com/sporkmonger/addressable/security/advisories/GHSA-jxhc-q857-3j6g</a></p> <p>Release Date: 2021-07-06</p> <p>Fix Resolution: addressable - 2.8.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2021-32740 (High) detected in addressable-2.7.0.gem - autoclosed - ## CVE-2021-32740 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>addressable-2.7.0.gem</b></p></summary> <p>Addressable is an alternative implementation to the URI implementation that is part of Ruby's standard library. It is flexible, offers heuristic parsing, and additionally provides extensive support for IRIs and URI templates. </p> <p>Library home page: <a href="https://rubygems.org/gems/addressable-2.7.0.gem">https://rubygems.org/gems/addressable-2.7.0.gem</a></p> <p> Dependency Hierarchy: - github-pages-204.gem (Root Library) - jekyll-theme-midnight-0.1.1.gem - jekyll-3.8.5.gem - :x: **addressable-2.7.0.gem** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/gmright2/DEFOLD_Gmright_INLINE/commit/38ca8e4f9b8cdbfb059dcdeec3d6283b57fb6dff">38ca8e4f9b8cdbfb059dcdeec3d6283b57fb6dff</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Addressable is an alternative implementation to the URI implementation that is part of Ruby's standard library. An uncontrolled resource consumption vulnerability exists after version 2.3.0 through version 2.7.0. Within the URI template implementation in Addressable, a maliciously crafted template may result in uncontrolled resource consumption, leading to denial of service when matched against a URI. In typical usage, templates would not normally be read from untrusted user input, but nonetheless, no previous security advisory for Addressable has cautioned against doing this. Users of the parsing capabilities in Addressable but not the URI template capabilities are unaffected. The vulnerability is patched in version 2.8.0. As a workaround, only create Template objects from trusted sources that have been validated not to produce catastrophic backtracking. <p>Publish Date: 2021-07-06 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-32740>CVE-2021-32740</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://github.com/sporkmonger/addressable/security/advisories/GHSA-jxhc-q857-3j6g">https://github.com/sporkmonger/addressable/security/advisories/GHSA-jxhc-q857-3j6g</a></p> <p>Release Date: 2021-07-06</p> <p>Fix Resolution: addressable - 2.8.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_defect
cve high detected in addressable gem autoclosed cve high severity vulnerability vulnerable library addressable gem addressable is an alternative implementation to the uri implementation that is part of ruby s standard library it is flexible offers heuristic parsing and additionally provides extensive support for iris and uri templates library home page a href dependency hierarchy github pages gem root library jekyll theme midnight gem jekyll gem x addressable gem vulnerable library found in head commit a href vulnerability details addressable is an alternative implementation to the uri implementation that is part of ruby s standard library an uncontrolled resource consumption vulnerability exists after version through version within the uri template implementation in addressable a maliciously crafted template may result in uncontrolled resource consumption leading to denial of service when matched against a uri in typical usage templates would not normally be read from untrusted user input but nonetheless no previous security advisory for addressable has cautioned against doing this users of the parsing capabilities in addressable but not the uri template capabilities are unaffected the vulnerability is patched in version as a workaround only create template objects from trusted sources that have been validated not to produce catastrophic backtracking 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 addressable step up your open source security game with whitesource
0
55,966
14,862,354,167
IssuesEvent
2021-01-19 01:40:25
hazelcast/hazelcast
https://api.github.com/repos/hazelcast/hazelcast
opened
TcpIpConfig when
Type: Defect
Environment settings: Hazelcast version: 3.12.11 Hazelcast service A, B: IP address is the same, 192.168.1.220, but the ports are different. Hazelcast service C: IP address is not the same as A, B, IP network segment is also different, 192.168.0.157. I now describe my specific operation process: 1, first start the C service, and then start the A, B service, respectively, they three can discover each other, but also to enable the CPSubsystem. 2. First start service A, then start service C, and finally start service B. The three of them can also discover each other, and also enable CPSubsystem. 3、First start service A, then start service B. At this time, A and B cannot discover each other, and finally start service C also has no effect. Here is my configuration, all three of them share the same configuration: Config config = new Config(); ManagementCenterConfig managementCenterConfig = new ManagementCenterConfig(); managementCenterConfig.setScriptingEnabled(true); config.setManagementCenterConfig(managementCenterConfig); GroupConfig groupConfig = new GroupConfig("waustreet"); config.setGroupConfig(groupConfig); FlakeIdGeneratorConfig flakeIdGeneratorConfig = new FlakeIdGeneratorConfig("flakeIdConfig"); flakeIdGeneratorConfig.setPrefetchCount(100).setPrefetchValidityMillis(MINUTES.toMillis(10000)); Map<String, FlakeIdGeneratorConfig> flakeIdGeneratorConfigMap = new HashMap<>(); flakeIdGeneratorConfigMap.put("commonIdGenerator", flakeIdGeneratorConfig); config.setFlakeIdGeneratorConfigs(flakeIdGeneratorConfigMap); MapConfig mapConfig = new MapConfig(); mapConfig.setName("waustreetMapCfg"); mapConfig.setTimeToLiveSeconds(3600); mapConfig.setEvictionPolicy(EvictionPolicy.LRU); config.addMapConfig(mapConfig); NetworkConfig network = config.getNetworkConfig(); JoinConfig join = network.getJoin(); join.getMulticastConfig().setEnabled(false); join.getTcpIpConfig().setMembers(Lists.newArrayList("192.168.0.157:5701,192.168.1.220:5702,192.168.1.220:5701")).setEnabled( true ); config.setInstanceName("hazelcast-waustreet-instance").addMapConfig(mapConfig); config.getCPSubsystemConfig().setCPMemberCount(3); return Hazelcast.newHazelcastInstance(config); Can you tell me why operation 3 did not work. Thank you.
1.0
TcpIpConfig when - Environment settings: Hazelcast version: 3.12.11 Hazelcast service A, B: IP address is the same, 192.168.1.220, but the ports are different. Hazelcast service C: IP address is not the same as A, B, IP network segment is also different, 192.168.0.157. I now describe my specific operation process: 1, first start the C service, and then start the A, B service, respectively, they three can discover each other, but also to enable the CPSubsystem. 2. First start service A, then start service C, and finally start service B. The three of them can also discover each other, and also enable CPSubsystem. 3、First start service A, then start service B. At this time, A and B cannot discover each other, and finally start service C also has no effect. Here is my configuration, all three of them share the same configuration: Config config = new Config(); ManagementCenterConfig managementCenterConfig = new ManagementCenterConfig(); managementCenterConfig.setScriptingEnabled(true); config.setManagementCenterConfig(managementCenterConfig); GroupConfig groupConfig = new GroupConfig("waustreet"); config.setGroupConfig(groupConfig); FlakeIdGeneratorConfig flakeIdGeneratorConfig = new FlakeIdGeneratorConfig("flakeIdConfig"); flakeIdGeneratorConfig.setPrefetchCount(100).setPrefetchValidityMillis(MINUTES.toMillis(10000)); Map<String, FlakeIdGeneratorConfig> flakeIdGeneratorConfigMap = new HashMap<>(); flakeIdGeneratorConfigMap.put("commonIdGenerator", flakeIdGeneratorConfig); config.setFlakeIdGeneratorConfigs(flakeIdGeneratorConfigMap); MapConfig mapConfig = new MapConfig(); mapConfig.setName("waustreetMapCfg"); mapConfig.setTimeToLiveSeconds(3600); mapConfig.setEvictionPolicy(EvictionPolicy.LRU); config.addMapConfig(mapConfig); NetworkConfig network = config.getNetworkConfig(); JoinConfig join = network.getJoin(); join.getMulticastConfig().setEnabled(false); join.getTcpIpConfig().setMembers(Lists.newArrayList("192.168.0.157:5701,192.168.1.220:5702,192.168.1.220:5701")).setEnabled( true ); config.setInstanceName("hazelcast-waustreet-instance").addMapConfig(mapConfig); config.getCPSubsystemConfig().setCPMemberCount(3); return Hazelcast.newHazelcastInstance(config); Can you tell me why operation 3 did not work. Thank you.
defect
tcpipconfig when environment settings hazelcast version hazelcast service a b ip address is the same but the ports are different hazelcast service c ip address is not the same as a b ip network segment is also different i now describe my specific operation process first start the c service and then start the a b service respectively they three can discover each other but also to enable the cpsubsystem first start service a then start service c and finally start service b the three of them can also discover each other and also enable cpsubsystem 、first start service a then start service b at this time a and b cannot discover each other and finally start service c also has no effect here is my configuration all three of them share the same configuration config config new config managementcenterconfig managementcenterconfig new managementcenterconfig managementcenterconfig setscriptingenabled true config setmanagementcenterconfig managementcenterconfig groupconfig groupconfig new groupconfig waustreet config setgroupconfig groupconfig flakeidgeneratorconfig flakeidgeneratorconfig new flakeidgeneratorconfig flakeidconfig flakeidgeneratorconfig setprefetchcount setprefetchvaliditymillis minutes tomillis map flakeidgeneratorconfigmap new hashmap flakeidgeneratorconfigmap put commonidgenerator flakeidgeneratorconfig config setflakeidgeneratorconfigs flakeidgeneratorconfigmap mapconfig mapconfig new mapconfig mapconfig setname waustreetmapcfg mapconfig settimetoliveseconds mapconfig setevictionpolicy evictionpolicy lru config addmapconfig mapconfig networkconfig network config getnetworkconfig joinconfig join network getjoin join getmulticastconfig setenabled false join gettcpipconfig setmembers lists newarraylist setenabled true config setinstancename hazelcast waustreet instance addmapconfig mapconfig config getcpsubsystemconfig setcpmembercount return hazelcast newhazelcastinstance config can you tell me why operation did not work thank you
1
20,270
3,322,566,804
IssuesEvent
2015-11-09 15:04:19
dart-lang/sdk
https://api.github.com/repos/dart-lang/sdk
closed
several analysis_server_tests are slow
Analyzer-Server Area-Analyzer Priority-Medium Type-Defect
analysis_server/test/domain_analysis_test is slow out on jsshell. analysis_server/test/analysis_notification_outline_test is slow on d8 analysis_server/test/domain_search_test is slow on d8
1.0
several analysis_server_tests are slow - analysis_server/test/domain_analysis_test is slow out on jsshell. analysis_server/test/analysis_notification_outline_test is slow on d8 analysis_server/test/domain_search_test is slow on d8
defect
several analysis server tests are slow analysis server test domain analysis test is slow out on jsshell analysis server test analysis notification outline test is slow on analysis server test domain search test is slow on
1
49,141
13,185,254,946
IssuesEvent
2020-08-12 21:01:48
icecube-trac/tix3
https://api.github.com/repos/icecube-trac/tix3
opened
dataio-shovel crash (Trac #822)
Incomplete Migration Migrated from Trac combo core defect
<details> <summary><em>Migrated from https://code.icecube.wisc.edu/ticket/822 , reported by seuler and owned by david.schultz</em></summary> <p> ```json { "status": "closed", "changetime": "2015-02-12T02:25:06", "description": "Not sure if I should make a ticket for this, but the trunk of dataio-shovel crashes when opening any i3-file with the not very helpful error message \n\n\"terminate called after throwing an instance of 'boost::python::error_already_set' \"\n\nThe system is Ubuntu 14.04.1, but on another maching with the same Ubuntu I cannot reproduce the problem. Any ideas?", "reporter": "seuler", "cc": "", "resolution": "fixed", "_ts": "1423707906563252", "component": "combo core", "summary": "dataio-shovel crash", "priority": "normal", "keywords": "", "time": "2014-12-01T21:40:57", "milestone": "", "owner": "david.schultz", "type": "defect" } ``` </p> </details>
1.0
dataio-shovel crash (Trac #822) - <details> <summary><em>Migrated from https://code.icecube.wisc.edu/ticket/822 , reported by seuler and owned by david.schultz</em></summary> <p> ```json { "status": "closed", "changetime": "2015-02-12T02:25:06", "description": "Not sure if I should make a ticket for this, but the trunk of dataio-shovel crashes when opening any i3-file with the not very helpful error message \n\n\"terminate called after throwing an instance of 'boost::python::error_already_set' \"\n\nThe system is Ubuntu 14.04.1, but on another maching with the same Ubuntu I cannot reproduce the problem. Any ideas?", "reporter": "seuler", "cc": "", "resolution": "fixed", "_ts": "1423707906563252", "component": "combo core", "summary": "dataio-shovel crash", "priority": "normal", "keywords": "", "time": "2014-12-01T21:40:57", "milestone": "", "owner": "david.schultz", "type": "defect" } ``` </p> </details>
defect
dataio shovel crash trac migrated from reported by seuler and owned by david schultz json status closed changetime description not sure if i should make a ticket for this but the trunk of dataio shovel crashes when opening any file with the not very helpful error message n n terminate called after throwing an instance of boost python error already set n nthe system is ubuntu but on another maching with the same ubuntu i cannot reproduce the problem any ideas reporter seuler cc resolution fixed ts component combo core summary dataio shovel crash priority normal keywords time milestone owner david schultz type defect
1
74,294
25,042,840,948
IssuesEvent
2022-11-04 23:30:17
vector-im/element-android
https://api.github.com/repos/vector-im/element-android
opened
for send photo user need enter pincode twice
T-Defect
### Steps to reproduce 1. Enable pincode security in element settings 1. Open Element 2. Press button "+", then icon "take photo" in edit window 3. Take photo 4. Press "okey photo" 5. Photo close, and show pincode enter dialog 6. success enter pincode (or fingerprint, if enable) 7. pincode dialog show again 8. success enter pincode (or fingerprint, if enable) 9. Only after previous steps user enter in send-photo dialog in element I think that user do not must enter pincode if it start "take photo" from element. And user do not enter pincode twice. ### Outcome #### What did you expect? I think that user do not must enter pincode if it start "take photo" from element. And user do not enter pincode twice. #### What happened instead? User must twice enter pincode at each take photo in element. ### Your phone model OnePluse 8t ### Operating system version Android 12 ### Application version and app store element andrid 1.5.4, olm 3.2.12 gapps ### Homeserver rsprim.ru ### Will you send logs? Yes ### Are you willing to provide a PR? No
1.0
for send photo user need enter pincode twice - ### Steps to reproduce 1. Enable pincode security in element settings 1. Open Element 2. Press button "+", then icon "take photo" in edit window 3. Take photo 4. Press "okey photo" 5. Photo close, and show pincode enter dialog 6. success enter pincode (or fingerprint, if enable) 7. pincode dialog show again 8. success enter pincode (or fingerprint, if enable) 9. Only after previous steps user enter in send-photo dialog in element I think that user do not must enter pincode if it start "take photo" from element. And user do not enter pincode twice. ### Outcome #### What did you expect? I think that user do not must enter pincode if it start "take photo" from element. And user do not enter pincode twice. #### What happened instead? User must twice enter pincode at each take photo in element. ### Your phone model OnePluse 8t ### Operating system version Android 12 ### Application version and app store element andrid 1.5.4, olm 3.2.12 gapps ### Homeserver rsprim.ru ### Will you send logs? Yes ### Are you willing to provide a PR? No
defect
for send photo user need enter pincode twice steps to reproduce enable pincode security in element settings open element press button then icon take photo in edit window take photo press okey photo photo close and show pincode enter dialog success enter pincode or fingerprint if enable pincode dialog show again success enter pincode or fingerprint if enable only after previous steps user enter in send photo dialog in element i think that user do not must enter pincode if it start take photo from element and user do not enter pincode twice outcome what did you expect i think that user do not must enter pincode if it start take photo from element and user do not enter pincode twice what happened instead user must twice enter pincode at each take photo in element your phone model onepluse operating system version android application version and app store element andrid olm gapps homeserver rsprim ru will you send logs yes are you willing to provide a pr no
1
589,258
17,693,313,029
IssuesEvent
2021-08-24 12:46:37
Accenture/sfmc-devtools
https://api.github.com/repos/Accenture/sfmc-devtools
opened
[BUG] Upsert response not equal to retrieve: script json
bug c/script PRIORITY NEW
### Is there an existing issue for this? - [X] I have searched the existing issues ### Current Behavior ![image](https://user-images.githubusercontent.com/1917227/130618550-046e28e5-a278-4abf-8bbb-442c30a8fa8b.png) additional fields: - status - createdBy - modifiedBY ### Expected Behavior sames fields as during retrieve ### Steps To Reproduce run retrieve & deploy on the same script and check retrieve folder after each attempt ### Version 3.0.3 (Default) ### Environment - OS: - Node: - npm:
1.0
[BUG] Upsert response not equal to retrieve: script json - ### Is there an existing issue for this? - [X] I have searched the existing issues ### Current Behavior ![image](https://user-images.githubusercontent.com/1917227/130618550-046e28e5-a278-4abf-8bbb-442c30a8fa8b.png) additional fields: - status - createdBy - modifiedBY ### Expected Behavior sames fields as during retrieve ### Steps To Reproduce run retrieve & deploy on the same script and check retrieve folder after each attempt ### Version 3.0.3 (Default) ### Environment - OS: - Node: - npm:
non_defect
upsert response not equal to retrieve script json is there an existing issue for this i have searched the existing issues current behavior additional fields status createdby modifiedby expected behavior sames fields as during retrieve steps to reproduce run retrieve deploy on the same script and check retrieve folder after each attempt version default environment os node npm
0
214,124
16,563,977,668
IssuesEvent
2021-05-29 03:34:46
elightcap/blackmail
https://api.github.com/repos/elightcap/blackmail
closed
Robbery Victim counter to Robin hood
Testing enhancement
EffinOwen: since SOME people dont like the silver whistle currently, would it be possible to add a 10 minute role removal on the @Robbery Victim role and assign it to people who are the target of robin hood? [4:20 PM] EffinOwen: LMAO i dont know if its possible but maybe if you use the silver whistle and first place already has a robbery victim role, default to second place and do theirs instead, etc to third place and so on?
1.0
Robbery Victim counter to Robin hood - EffinOwen: since SOME people dont like the silver whistle currently, would it be possible to add a 10 minute role removal on the @Robbery Victim role and assign it to people who are the target of robin hood? [4:20 PM] EffinOwen: LMAO i dont know if its possible but maybe if you use the silver whistle and first place already has a robbery victim role, default to second place and do theirs instead, etc to third place and so on?
non_defect
robbery victim counter to robin hood effinowen since some people dont like the silver whistle currently would it be possible to add a minute role removal on the robbery victim role and assign it to people who are the target of robin hood effinowen lmao i dont know if its possible but maybe if you use the silver whistle and first place already has a robbery victim role default to second place and do theirs instead etc to third place and so on
0
213,965
7,261,940,888
IssuesEvent
2018-02-19 01:45:51
GoogleCloudPlatform/google-cloud-python
https://api.github.com/repos/GoogleCloudPlatform/google-cloud-python
closed
BigQuery: Pandas import errors
api: bigquery priority: p2 status: awaiting information type: bug
Hi, I am getting import errors for pandas which I am not even trying to use. Would probably make sense to throw a warning in these cases instead of crashing. 1. Specify the API at the beginning of the title: Bigquery 2. OS type and version: OSX 10.13.2 3. Python version and virtual environment information: 2.7.12 4. google-cloud-python versions: Name: google-cloud Version: 0.22.0 Name: google-cloud-bigquery Version: 0.29.0 5. Stacktrace if available ``` from google.cloud.bigquery import Client as BigQueryClient File "/usr/local/lib/python2.7/site-packages/google/cloud/bigquery/__init__.py", line 35, in <module> from google.cloud.bigquery.client import Client File "/usr/local/lib/python2.7/site-packages/google/cloud/bigquery/client.py", line 39, in <module> from google.cloud.bigquery.dataset import Dataset File "/usr/local/lib/python2.7/site-packages/google/cloud/bigquery/dataset.py", line 22, in <module> from google.cloud.bigquery.table import TableReference File "/usr/local/lib/python2.7/site-packages/google/cloud/bigquery/table.py", line 25, in <module> import pandas File "/usr/local/lib/python2.7/site-packages/pandas/__init__.py", line 42, in <module> from pandas.core.api import * File "/usr/local/lib/python2.7/site-packages/pandas/core/api.py", line 10, in <module> from pandas.core.groupby import Grouper File "/usr/local/lib/python2.7/site-packages/pandas/core/groupby.py", line 50, in <module> from pandas.core.frame import DataFrame File "/usr/local/lib/python2.7/site-packages/pandas/core/frame.py", line 77, in <module> from pandas.core.series import Series File "/usr/local/lib/python2.7/site-packages/pandas/core/series.py", line 81, in <module> import pandas.plotting._core as gfx File "/usr/local/lib/python2.7/site-packages/pandas/plotting/__init__.py", line 11, in <module> from pandas.plotting._core import boxplot File "/usr/local/lib/python2.7/site-packages/pandas/plotting/_core.py", line 45, in <module> from pandas.plotting import _converter File "/usr/local/lib/python2.7/site-packages/pandas/plotting/_converter.py", line 8, in <module> import matplotlib.units as units File "/usr/local/lib/python2.7/site-packages/matplotlib/__init__.py", line 1100, in <module> File "/usr/local/lib/python2.7/site-packages/matplotlib/__init__.py", line 947, in rc_params File "/usr/local/lib/python2.7/site-packages/matplotlib/__init__.py", line 789, in matplotlib_fname File "/usr/local/lib/python2.7/site-packages/matplotlib/__init__.py", line 325, in wrapper File "/usr/local/lib/python2.7/site-packages/matplotlib/__init__.py", line 693, in _get_data_path_cached File "/usr/local/lib/python2.7/site-packages/matplotlib/__init__.py", line 689, in _get_data_path RuntimeError: Could not find the matplotlib data files ``` 6. Steps to reproduce Hard to say, installed a package that depends on google-cloud-bigquery==0.29.0 but when I try to run it I get this import error 7. Code example N/A Using GitHub flavored markdown can help make your request clearer. See: https://guides.github.com/features/mastering-markdown/
1.0
BigQuery: Pandas import errors - Hi, I am getting import errors for pandas which I am not even trying to use. Would probably make sense to throw a warning in these cases instead of crashing. 1. Specify the API at the beginning of the title: Bigquery 2. OS type and version: OSX 10.13.2 3. Python version and virtual environment information: 2.7.12 4. google-cloud-python versions: Name: google-cloud Version: 0.22.0 Name: google-cloud-bigquery Version: 0.29.0 5. Stacktrace if available ``` from google.cloud.bigquery import Client as BigQueryClient File "/usr/local/lib/python2.7/site-packages/google/cloud/bigquery/__init__.py", line 35, in <module> from google.cloud.bigquery.client import Client File "/usr/local/lib/python2.7/site-packages/google/cloud/bigquery/client.py", line 39, in <module> from google.cloud.bigquery.dataset import Dataset File "/usr/local/lib/python2.7/site-packages/google/cloud/bigquery/dataset.py", line 22, in <module> from google.cloud.bigquery.table import TableReference File "/usr/local/lib/python2.7/site-packages/google/cloud/bigquery/table.py", line 25, in <module> import pandas File "/usr/local/lib/python2.7/site-packages/pandas/__init__.py", line 42, in <module> from pandas.core.api import * File "/usr/local/lib/python2.7/site-packages/pandas/core/api.py", line 10, in <module> from pandas.core.groupby import Grouper File "/usr/local/lib/python2.7/site-packages/pandas/core/groupby.py", line 50, in <module> from pandas.core.frame import DataFrame File "/usr/local/lib/python2.7/site-packages/pandas/core/frame.py", line 77, in <module> from pandas.core.series import Series File "/usr/local/lib/python2.7/site-packages/pandas/core/series.py", line 81, in <module> import pandas.plotting._core as gfx File "/usr/local/lib/python2.7/site-packages/pandas/plotting/__init__.py", line 11, in <module> from pandas.plotting._core import boxplot File "/usr/local/lib/python2.7/site-packages/pandas/plotting/_core.py", line 45, in <module> from pandas.plotting import _converter File "/usr/local/lib/python2.7/site-packages/pandas/plotting/_converter.py", line 8, in <module> import matplotlib.units as units File "/usr/local/lib/python2.7/site-packages/matplotlib/__init__.py", line 1100, in <module> File "/usr/local/lib/python2.7/site-packages/matplotlib/__init__.py", line 947, in rc_params File "/usr/local/lib/python2.7/site-packages/matplotlib/__init__.py", line 789, in matplotlib_fname File "/usr/local/lib/python2.7/site-packages/matplotlib/__init__.py", line 325, in wrapper File "/usr/local/lib/python2.7/site-packages/matplotlib/__init__.py", line 693, in _get_data_path_cached File "/usr/local/lib/python2.7/site-packages/matplotlib/__init__.py", line 689, in _get_data_path RuntimeError: Could not find the matplotlib data files ``` 6. Steps to reproduce Hard to say, installed a package that depends on google-cloud-bigquery==0.29.0 but when I try to run it I get this import error 7. Code example N/A Using GitHub flavored markdown can help make your request clearer. See: https://guides.github.com/features/mastering-markdown/
non_defect
bigquery pandas import errors hi i am getting import errors for pandas which i am not even trying to use would probably make sense to throw a warning in these cases instead of crashing specify the api at the beginning of the title bigquery os type and version osx python version and virtual environment information google cloud python versions name google cloud version name google cloud bigquery version stacktrace if available from google cloud bigquery import client as bigqueryclient file usr local lib site packages google cloud bigquery init py line in from google cloud bigquery client import client file usr local lib site packages google cloud bigquery client py line in from google cloud bigquery dataset import dataset file usr local lib site packages google cloud bigquery dataset py line in from google cloud bigquery table import tablereference file usr local lib site packages google cloud bigquery table py line in import pandas file usr local lib site packages pandas init py line in from pandas core api import file usr local lib site packages pandas core api py line in from pandas core groupby import grouper file usr local lib site packages pandas core groupby py line in from pandas core frame import dataframe file usr local lib site packages pandas core frame py line in from pandas core series import series file usr local lib site packages pandas core series py line in import pandas plotting core as gfx file usr local lib site packages pandas plotting init py line in from pandas plotting core import boxplot file usr local lib site packages pandas plotting core py line in from pandas plotting import converter file usr local lib site packages pandas plotting converter py line in import matplotlib units as units file usr local lib site packages matplotlib init py line in file usr local lib site packages matplotlib init py line in rc params file usr local lib site packages matplotlib init py line in matplotlib fname file usr local lib site packages matplotlib init py line in wrapper file usr local lib site packages matplotlib init py line in get data path cached file usr local lib site packages matplotlib init py line in get data path runtimeerror could not find the matplotlib data files steps to reproduce hard to say installed a package that depends on google cloud bigquery but when i try to run it i get this import error code example n a using github flavored markdown can help make your request clearer see
0
19,508
3,214,140,968
IssuesEvent
2015-10-06 23:25:10
PyTables/PyTables
https://api.github.com/repos/PyTables/PyTables
closed
indexing should permit uint as well as int
defect from_trac
I have a column of type uint32 in one table containing values for row-numbers in another table. Currently, I am forced to cast this to int32 before I can use it as an index. I think that makes no sense, logically, so I set the type of this issue to defect rather than enhancement. ```python In [1]: import tables In [3]: t = tables.openFile('tutorial1.h5') In [8]: t.root.detector.readout[np.array([2, 3, 4], dtype=np.int32)] Out[8]: array([(512, 2, 256.0, 2, 8, 34359738368, 'Particle: 2', 4.0), (768, 3, 6561.0, 3, 7, 51539607552, 'Particle: 3', 9.0), (1024, 4, 65536.0, 4, 6, 68719476736, 'Particle: 4', 16.0)], dtype=[('ADCcount', '<u2'), ('TDCcount', '|u1'), ('energy', '<f8'), ('grid_i', '<i4'), ('grid_j', '<i4'), ('idnumber', '<i8'), ('name', '|S16'), ('pressure', '<f4')]) In [9]: t.root.detector.readout[np.array([2, 3, 4], dtype=np.uint32)] --------------------------------------------------------------------------- TypeError Traceback (most recent call last) /storage4/home/gerrit/checkouts/pytables-2.2/examples/<ipython console> in <module>() /storage4/home/gerrit/.local/lib/python2.6/site-packages/tables/table.pyc in __getitem__(self, key) 1709 # Try with a boolean or point selection 1710 elif type(key) in (list, tuple) or isinstance(key, numpy.ndarray): -> 1711 coords = self._pointSelection(key) 1712 return self._readCoordinates(coords, None) 1713 else: /storage4/home/gerrit/.local/lib/python2.6/site-packages/tables/leaf.pyc in _pointSelection(self, key) 587 coords = numpy.asarray(key, dtype="i8") 588 else: --> 589 raise TypeError("Only integer coordinates allowed.") 590 # We absolutely need a contiguous array 591 if not coords.flags.contiguous: TypeError: Only integer coordinates allowed. ``` It's probably a very easy fix, I might have a look at it this weekend.
1.0
indexing should permit uint as well as int - I have a column of type uint32 in one table containing values for row-numbers in another table. Currently, I am forced to cast this to int32 before I can use it as an index. I think that makes no sense, logically, so I set the type of this issue to defect rather than enhancement. ```python In [1]: import tables In [3]: t = tables.openFile('tutorial1.h5') In [8]: t.root.detector.readout[np.array([2, 3, 4], dtype=np.int32)] Out[8]: array([(512, 2, 256.0, 2, 8, 34359738368, 'Particle: 2', 4.0), (768, 3, 6561.0, 3, 7, 51539607552, 'Particle: 3', 9.0), (1024, 4, 65536.0, 4, 6, 68719476736, 'Particle: 4', 16.0)], dtype=[('ADCcount', '<u2'), ('TDCcount', '|u1'), ('energy', '<f8'), ('grid_i', '<i4'), ('grid_j', '<i4'), ('idnumber', '<i8'), ('name', '|S16'), ('pressure', '<f4')]) In [9]: t.root.detector.readout[np.array([2, 3, 4], dtype=np.uint32)] --------------------------------------------------------------------------- TypeError Traceback (most recent call last) /storage4/home/gerrit/checkouts/pytables-2.2/examples/<ipython console> in <module>() /storage4/home/gerrit/.local/lib/python2.6/site-packages/tables/table.pyc in __getitem__(self, key) 1709 # Try with a boolean or point selection 1710 elif type(key) in (list, tuple) or isinstance(key, numpy.ndarray): -> 1711 coords = self._pointSelection(key) 1712 return self._readCoordinates(coords, None) 1713 else: /storage4/home/gerrit/.local/lib/python2.6/site-packages/tables/leaf.pyc in _pointSelection(self, key) 587 coords = numpy.asarray(key, dtype="i8") 588 else: --> 589 raise TypeError("Only integer coordinates allowed.") 590 # We absolutely need a contiguous array 591 if not coords.flags.contiguous: TypeError: Only integer coordinates allowed. ``` It's probably a very easy fix, I might have a look at it this weekend.
defect
indexing should permit uint as well as int i have a column of type in one table containing values for row numbers in another table currently i am forced to cast this to before i can use it as an index i think that makes no sense logically so i set the type of this issue to defect rather than enhancement python in import tables in t tables openfile in t root detector readout dtype np out array particle particle particle dtype in t root detector readout dtype np typeerror traceback most recent call last home gerrit checkouts pytables examples in home gerrit local lib site packages tables table pyc in getitem self key try with a boolean or point selection elif type key in list tuple or isinstance key numpy ndarray coords self pointselection key return self readcoordinates coords none else home gerrit local lib site packages tables leaf pyc in pointselection self key coords numpy asarray key dtype else raise typeerror only integer coordinates allowed we absolutely need a contiguous array if not coords flags contiguous typeerror only integer coordinates allowed it s probably a very easy fix i might have a look at it this weekend
1
4,848
2,610,158,266
IssuesEvent
2015-02-26 18:50:14
chrsmith/republic-at-war
https://api.github.com/repos/chrsmith/republic-at-war
closed
Gameplay Error
auto-migrated Priority-Medium Type-Defect
``` Krayt Dragon too weak ``` ----- Original issue reported on code.google.com by `z3r0...@gmail.com` on 30 Jan 2011 at 3:00
1.0
Gameplay Error - ``` Krayt Dragon too weak ``` ----- Original issue reported on code.google.com by `z3r0...@gmail.com` on 30 Jan 2011 at 3:00
defect
gameplay error krayt dragon too weak original issue reported on code google com by gmail com on jan at
1
22,298
7,153,737,033
IssuesEvent
2018-01-26 03:39:46
apache/incubator-pulsar
https://api.github.com/repos/apache/incubator-pulsar
opened
Add pulsar-prometheus docker image to pulsar repo
component/build
#### Expected behavior We have added [pulsar-prometheus](https://github.com/apache/incubator-pulsar/blob/master/deployment/dcos/PulsarGroups.json#L251) docker image in #950 which is not present into pulsar repo. It would be great if we can add it to pulsar repo for any future changes or enhancement.
1.0
Add pulsar-prometheus docker image to pulsar repo - #### Expected behavior We have added [pulsar-prometheus](https://github.com/apache/incubator-pulsar/blob/master/deployment/dcos/PulsarGroups.json#L251) docker image in #950 which is not present into pulsar repo. It would be great if we can add it to pulsar repo for any future changes or enhancement.
non_defect
add pulsar prometheus docker image to pulsar repo expected behavior we have added docker image in which is not present into pulsar repo it would be great if we can add it to pulsar repo for any future changes or enhancement
0
220,287
7,354,897,999
IssuesEvent
2018-03-09 09:05:02
mozilla/addons-server
https://api.github.com/repos/mozilla/addons-server
closed
Color selectors in static theme submission wizard have layout issues for some locales
component: devhub priority: p3 project: static themes triaged
STR: 1. Log into Developer Hub and submit a new static theme using the wizard 2. Change your locale to i.e. German, Italian etc 3. Observe the text layout for the color selectors Actual result: Text specific for each color selector is not correctly aligned Expected result: The text specific for each color selector is properly aligned with the color field Notes: - there is also an "and" missing from "Toolbar area text icons" - reproduced on AMO-dev with FF58, Win10 ![image](https://user-images.githubusercontent.com/31961530/35632499-860f584a-06af-11e8-801f-8ba678f240d9.png) ![image](https://user-images.githubusercontent.com/31961530/35632519-9562f46e-06af-11e8-8964-d16054d3fc9b.png)
1.0
Color selectors in static theme submission wizard have layout issues for some locales - STR: 1. Log into Developer Hub and submit a new static theme using the wizard 2. Change your locale to i.e. German, Italian etc 3. Observe the text layout for the color selectors Actual result: Text specific for each color selector is not correctly aligned Expected result: The text specific for each color selector is properly aligned with the color field Notes: - there is also an "and" missing from "Toolbar area text icons" - reproduced on AMO-dev with FF58, Win10 ![image](https://user-images.githubusercontent.com/31961530/35632499-860f584a-06af-11e8-801f-8ba678f240d9.png) ![image](https://user-images.githubusercontent.com/31961530/35632519-9562f46e-06af-11e8-8964-d16054d3fc9b.png)
non_defect
color selectors in static theme submission wizard have layout issues for some locales str log into developer hub and submit a new static theme using the wizard change your locale to i e german italian etc observe the text layout for the color selectors actual result text specific for each color selector is not correctly aligned expected result the text specific for each color selector is properly aligned with the color field notes there is also an and missing from toolbar area text icons reproduced on amo dev with
0
49,218
13,185,299,539
IssuesEvent
2020-08-12 21:07:03
icecube-trac/tix3
https://api.github.com/repos/icecube-trac/tix3
opened
[icetray] fix the docs already (Trac #981)
Incomplete Migration Migrated from Trac combo core defect
<details> <summary><em>Migrated from https://code.icecube.wisc.edu/ticket/981 , reported by olivas and owned by olivas</em></summary> <p> ```json { "status": "closed", "changetime": "2016-03-18T21:13:59", "description": "IceTray V3 and V4 aren't new anymore. These docs need to be merged into the regular docs. ", "reporter": "olivas", "cc": "", "resolution": "fixed", "_ts": "1458335639558230", "component": "combo core", "summary": "[icetray] fix the docs already", "priority": "blocker", "keywords": "", "time": "2015-05-14T04:57:10", "milestone": "", "owner": "olivas", "type": "defect" } ``` </p> </details>
1.0
[icetray] fix the docs already (Trac #981) - <details> <summary><em>Migrated from https://code.icecube.wisc.edu/ticket/981 , reported by olivas and owned by olivas</em></summary> <p> ```json { "status": "closed", "changetime": "2016-03-18T21:13:59", "description": "IceTray V3 and V4 aren't new anymore. These docs need to be merged into the regular docs. ", "reporter": "olivas", "cc": "", "resolution": "fixed", "_ts": "1458335639558230", "component": "combo core", "summary": "[icetray] fix the docs already", "priority": "blocker", "keywords": "", "time": "2015-05-14T04:57:10", "milestone": "", "owner": "olivas", "type": "defect" } ``` </p> </details>
defect
fix the docs already trac migrated from reported by olivas and owned by olivas json status closed changetime description icetray and aren t new anymore these docs need to be merged into the regular docs reporter olivas cc resolution fixed ts component combo core summary fix the docs already priority blocker keywords time milestone owner olivas type defect
1
20,424
3,354,754,226
IssuesEvent
2015-11-18 13:49:46
car2go/openAPI
https://api.github.com/repos/car2go/openAPI
closed
Get bookings or create bookings returns NULL with test=1
auto-migrated Priority-Medium Type-Defect
``` Stepts to reproduce: 1. Get a valid access_token 2. Perform a GET request call https://www.car2go.com/api/v2.1/bookings?format=json&loc=Hamburg&oaut....&test=1 Expected output would be at least an operation succesfull 0 with an empty array of bookings, that I can see without the test=1. With test=1 I don't get any answer, it is just NULL. If I use an invalid loation or omit the loc parameter, I get an "Location invalid" with test=1. The same also occurs when I try to create a booking. I can get the two test accounts and when I try to create a booking with a valid VIN and the accountId, the result is just empty. ``` Original issue reported on code.google.com by `piffp...@knacken.net` on 13 May 2012 at 8:46
1.0
Get bookings or create bookings returns NULL with test=1 - ``` Stepts to reproduce: 1. Get a valid access_token 2. Perform a GET request call https://www.car2go.com/api/v2.1/bookings?format=json&loc=Hamburg&oaut....&test=1 Expected output would be at least an operation succesfull 0 with an empty array of bookings, that I can see without the test=1. With test=1 I don't get any answer, it is just NULL. If I use an invalid loation or omit the loc parameter, I get an "Location invalid" with test=1. The same also occurs when I try to create a booking. I can get the two test accounts and when I try to create a booking with a valid VIN and the accountId, the result is just empty. ``` Original issue reported on code.google.com by `piffp...@knacken.net` on 13 May 2012 at 8:46
defect
get bookings or create bookings returns null with test stepts to reproduce get a valid access token perform a get request call expected output would be at least an operation succesfull with an empty array of bookings that i can see without the test with test i don t get any answer it is just null if i use an invalid loation or omit the loc parameter i get an location invalid with test the same also occurs when i try to create a booking i can get the two test accounts and when i try to create a booking with a valid vin and the accountid the result is just empty original issue reported on code google com by piffp knacken net on may at
1
71,233
23,498,590,136
IssuesEvent
2022-08-18 06:00:32
primefaces/primereact
https://api.github.com/repos/primefaces/primereact
opened
DataTable: Cell Selection is Blocked - when having both cellSelection prop and a Column for row selection
defect :bangbang: needs-triage
### Describe the bug I need to enable both cell selection and rows selection, but when having a Column for rows selection it blocks the cell selection from happening. tried to search for similar issues and didnt find. ### Reproducer https://codesandbox.io/s/primereact-test-forked-gq6tjq?file=/src/DataTableTest.tsx ### PrimeReact version 8.3.0 ### React version 18.x ### Language TypeScript ### Build / Runtime Create React App (CRA) ### Browser(s) _No response_ ### Steps to reproduce the behavior go to given sandbox fork, at `DataTableTest.tsx` line 217, comment out the selection Column for enabling row selection and blocking cell selection. ### Expected behavior enable rows selection and keep cell selection available and enabled too.
1.0
DataTable: Cell Selection is Blocked - when having both cellSelection prop and a Column for row selection - ### Describe the bug I need to enable both cell selection and rows selection, but when having a Column for rows selection it blocks the cell selection from happening. tried to search for similar issues and didnt find. ### Reproducer https://codesandbox.io/s/primereact-test-forked-gq6tjq?file=/src/DataTableTest.tsx ### PrimeReact version 8.3.0 ### React version 18.x ### Language TypeScript ### Build / Runtime Create React App (CRA) ### Browser(s) _No response_ ### Steps to reproduce the behavior go to given sandbox fork, at `DataTableTest.tsx` line 217, comment out the selection Column for enabling row selection and blocking cell selection. ### Expected behavior enable rows selection and keep cell selection available and enabled too.
defect
datatable cell selection is blocked when having both cellselection prop and a column for row selection describe the bug i need to enable both cell selection and rows selection but when having a column for rows selection it blocks the cell selection from happening tried to search for similar issues and didnt find reproducer primereact version react version x language typescript build runtime create react app cra browser s no response steps to reproduce the behavior go to given sandbox fork at datatabletest tsx line comment out the selection column for enabling row selection and blocking cell selection expected behavior enable rows selection and keep cell selection available and enabled too
1
28,268
23,120,580,302
IssuesEvent
2022-07-27 21:00:38
department-of-veterans-affairs/va.gov-team
https://api.github.com/repos/department-of-veterans-affairs/va.gov-team
opened
Datadog and Science Logic integration
infrastructure
## User Story _As a user I would like to have this feature because it would help me with this pain point_ ## Expected Behavior _Add expected behavior of the described feature here_ ## Acceptance Criteria - [ ] _Add bulleted list of all the task that bust be finished for the feature to be consider finished & ready to merge_
1.0
Datadog and Science Logic integration - ## User Story _As a user I would like to have this feature because it would help me with this pain point_ ## Expected Behavior _Add expected behavior of the described feature here_ ## Acceptance Criteria - [ ] _Add bulleted list of all the task that bust be finished for the feature to be consider finished & ready to merge_
non_defect
datadog and science logic integration user story as a user i would like to have this feature because it would help me with this pain point expected behavior add expected behavior of the described feature here acceptance criteria add bulleted list of all the task that bust be finished for the feature to be consider finished ready to merge
0
44,842
12,405,589,401
IssuesEvent
2020-05-21 17:33:13
idaholab/moose
https://api.github.com/repos/idaholab/moose
opened
Checkpoint restarts and MultiApp causing faulty behavior for coupled simulations
T: defect
## Bug Description When a transient, coupled (using MultiApp) simulation is restarted from a steady state solution, a few things go wrong.   1) The temperature (auxvariable at the subapp level) is not properly restarted at the subapp level: `bison0: Postprocessor Values:` `bison0: +----------------+----------------+--------------------+` `bison0: | time | avg_temp | disp_x_max_element | |` `bison0: +----------------+----------------+--------------------+` `bison0: | 0.000000e+00 | -3.158068e+06 | 1.348055e-01 | ` `bison0: | 1.000000e+01 | 9.598427e+02 | 2.699262e-01 | ` `bison0: +----------------+----------------+--------------------+` (I only showed two postprocessors here. The full output can be seen by running the included examples) In this case, it does not affect the solve because the temperature from master is transferred before the calculation takes place. But that weird initial temperature will undoubtedly confuse analysts and indicate a problem with the restart system.   2) The displacements seem properly restarted, but oddly get “doubled” after the first time step. We think the thermal expansion eigenstrain is being reset during the restart causing the temperature change to once again impose a displacement. This behavior should not be occurring. When a transient, coupled (using MultiApp) simulation is restarted from a steady state solution, a few things go wrong. The temperature is transferred incorrectly, either blowing up, or going negative (both occur in this example). The displacements are transferred, but oddly get “doubled” after the first time step. This behavior should not be occurring. ## Steps to Reproduce   To test the proper restart behavior, we run a null-transient, that is we first run a steady-state calculation and restart from it with a Transient executioner, expecting the solution to be time-independent.   More specifically, input files and mesh files are included in `examples/doubling_example` [https://github.com/harterj/moose/tree/doubling_bug](https://github.com/harterj/moose/tree/doubling_bug) These are for a simple problem coupling temperature to mechanics.  Run `master_ss.i` first, and then run `master_tr.i` -- `master_tr.i` restarts from the steady state solution. You will see a negative, large initial value for temperature (problem 1)). You will also see the values for displacement restart, and nearly exactly double. This is present in this pared down example, but also in larger complex simulations. ## Impact We are trying to couple neutronics and thermal mechanics for a micro reactor project. This prevents us from advancing on our project and we would like as much assistance as possible, please. Tag @vincentlaboure @elementx54 @YaqiWang @jortensi @snschune
1.0
Checkpoint restarts and MultiApp causing faulty behavior for coupled simulations - ## Bug Description When a transient, coupled (using MultiApp) simulation is restarted from a steady state solution, a few things go wrong.   1) The temperature (auxvariable at the subapp level) is not properly restarted at the subapp level: `bison0: Postprocessor Values:` `bison0: +----------------+----------------+--------------------+` `bison0: | time | avg_temp | disp_x_max_element | |` `bison0: +----------------+----------------+--------------------+` `bison0: | 0.000000e+00 | -3.158068e+06 | 1.348055e-01 | ` `bison0: | 1.000000e+01 | 9.598427e+02 | 2.699262e-01 | ` `bison0: +----------------+----------------+--------------------+` (I only showed two postprocessors here. The full output can be seen by running the included examples) In this case, it does not affect the solve because the temperature from master is transferred before the calculation takes place. But that weird initial temperature will undoubtedly confuse analysts and indicate a problem with the restart system.   2) The displacements seem properly restarted, but oddly get “doubled” after the first time step. We think the thermal expansion eigenstrain is being reset during the restart causing the temperature change to once again impose a displacement. This behavior should not be occurring. When a transient, coupled (using MultiApp) simulation is restarted from a steady state solution, a few things go wrong. The temperature is transferred incorrectly, either blowing up, or going negative (both occur in this example). The displacements are transferred, but oddly get “doubled” after the first time step. This behavior should not be occurring. ## Steps to Reproduce   To test the proper restart behavior, we run a null-transient, that is we first run a steady-state calculation and restart from it with a Transient executioner, expecting the solution to be time-independent.   More specifically, input files and mesh files are included in `examples/doubling_example` [https://github.com/harterj/moose/tree/doubling_bug](https://github.com/harterj/moose/tree/doubling_bug) These are for a simple problem coupling temperature to mechanics.  Run `master_ss.i` first, and then run `master_tr.i` -- `master_tr.i` restarts from the steady state solution. You will see a negative, large initial value for temperature (problem 1)). You will also see the values for displacement restart, and nearly exactly double. This is present in this pared down example, but also in larger complex simulations. ## Impact We are trying to couple neutronics and thermal mechanics for a micro reactor project. This prevents us from advancing on our project and we would like as much assistance as possible, please. Tag @vincentlaboure @elementx54 @YaqiWang @jortensi @snschune
defect
checkpoint restarts and multiapp causing faulty behavior for coupled simulations bug description when a transient coupled using multiapp simulation is restarted from a steady state solution a few things go wrong   the temperature auxvariable at the subapp level  is not properly restarted at the subapp level postprocessor values time avg temp disp x max element i only showed two postprocessors here the full output can be seen by running the included examples in this case it does not affect the solve because the temperature from master is transferred before the calculation takes place but that weird initial temperature will undoubtedly confuse analysts and indicate a problem with the restart system   the displacements seem properly restarted but oddly get “doubled” after the first time step we think the thermal expansion eigenstrain is being reset during the restart causing the temperature change to once again impose a displacement this behavior should not be occurring when a transient coupled using multiapp simulation is restarted from a steady state solution a few things go wrong the temperature is transferred incorrectly either blowing up or going negative both occur in this example the displacements are transferred but oddly get “doubled” after the first time step this behavior should not be occurring steps to reproduce   to test the proper restart behavior we run a null transient that is we first run a steady state calculation and restart from it with a transient executioner expecting the solution to be time independent   more specifically input files and mesh files are included in examples doubling example these are for a simple problem coupling temperature to mechanics   run master ss i first and then run master tr i master tr i restarts from the steady state solution you will see a negative large initial value for temperature problem you will also see the values for displacement restart and nearly exactly double this is present in this pared down example but also in larger complex simulations impact we are trying to couple neutronics and thermal mechanics for a micro reactor project this prevents us from advancing on our project and we would like as much assistance as possible please tag vincentlaboure yaqiwang jortensi snschune
1
80,000
7,735,848,238
IssuesEvent
2018-05-27 19:35:15
slim-template/slim
https://api.github.com/repos/slim-template/slim
closed
Test failure with JRuby and tilt < 2.0.1
Tests
Extracted from #576: > `test/core/test_commands.rb` fails on Travis when tilt is required in a version < 2.0.1, > although my local setup does not...
1.0
Test failure with JRuby and tilt < 2.0.1 - Extracted from #576: > `test/core/test_commands.rb` fails on Travis when tilt is required in a version < 2.0.1, > although my local setup does not...
non_defect
test failure with jruby and tilt extracted from test core test commands rb fails on travis when tilt is required in a version although my local setup does not
0
38,539
8,881,162,718
IssuesEvent
2019-01-14 09:18:30
primefaces/primefaces
https://api.github.com/repos/primefaces/primefaces
closed
DatePicker: calendar-popup does not work with iOS 12.1.1 (Safari)
defect
## 1) Environment - PrimeFaces version: 6.3-SNAPSHOT - Affected browsers: Safari (iOS 12.1.1); tested with iPad Pro 10.5" ## 2) Expected behavior https://www.primefaces.org/showcase/ui/input/datePicker.xhtml should work similar to https://www.primefaces.org/showcase/ui/input/calendar.xhtml DatePicker does not open calendar-popup when used on iOS. ## 3) Actual behavior ![datepicker_ios_12_1_1](https://user-images.githubusercontent.com/10461942/51083235-d0202e00-1716-11e9-8b28-64bf65e2a47f.png) ![calendar_ios_12_1_1](https://user-images.githubusercontent.com/10461942/51083236-d0b8c480-1716-11e9-8570-3631d282ead5.png) https://www.primefaces.org/primeng/#/calendar work´s fine with iOS 12.1.1. ![primeng_calendar_ios_12_1_1](https://user-images.githubusercontent.com/10461942/51083255-402eb400-1717-11e9-8971-6a78bdba427b.png) As far as i understand Primefaces - DatePicker replicates PrimeNG Calendar. ## 4) Steps to reproduce Open Showcase with iOS - Browser
1.0
DatePicker: calendar-popup does not work with iOS 12.1.1 (Safari) - ## 1) Environment - PrimeFaces version: 6.3-SNAPSHOT - Affected browsers: Safari (iOS 12.1.1); tested with iPad Pro 10.5" ## 2) Expected behavior https://www.primefaces.org/showcase/ui/input/datePicker.xhtml should work similar to https://www.primefaces.org/showcase/ui/input/calendar.xhtml DatePicker does not open calendar-popup when used on iOS. ## 3) Actual behavior ![datepicker_ios_12_1_1](https://user-images.githubusercontent.com/10461942/51083235-d0202e00-1716-11e9-8b28-64bf65e2a47f.png) ![calendar_ios_12_1_1](https://user-images.githubusercontent.com/10461942/51083236-d0b8c480-1716-11e9-8570-3631d282ead5.png) https://www.primefaces.org/primeng/#/calendar work´s fine with iOS 12.1.1. ![primeng_calendar_ios_12_1_1](https://user-images.githubusercontent.com/10461942/51083255-402eb400-1717-11e9-8971-6a78bdba427b.png) As far as i understand Primefaces - DatePicker replicates PrimeNG Calendar. ## 4) Steps to reproduce Open Showcase with iOS - Browser
defect
datepicker calendar popup does not work with ios safari environment primefaces version snapshot affected browsers safari ios tested with ipad pro expected behavior should work similar to datepicker does not open calendar popup when used on ios actual behavior work´s fine with ios as far as i understand primefaces datepicker replicates primeng calendar steps to reproduce open showcase with ios browser
1
61,113
17,023,607,868
IssuesEvent
2021-07-03 02:53:54
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
closed
Saving of reverted edits fails
Component: potlatch (flash editor) Priority: major Resolution: wontfix Type: defect
**[Submitted to the original trac issue database at 5.28pm, Saturday, 19th June 2010]** I have been trying unsuccessfully to revert edits made to a bunch of district boundaries in India. Location: http://www.openstreetmap.org/?lat=14.4137&lon=77.7935&zoom=12&layers=B000FTF I used the history dialog to revert to a version prior to it being flattened by user indigomc (accidently). Although the shape gets reverted back to its correct form, potlatch refuses to save the nodes and they still have a -ve id. I tried using offline mode to force a save and potlatch reports nothing to upload.
1.0
Saving of reverted edits fails - **[Submitted to the original trac issue database at 5.28pm, Saturday, 19th June 2010]** I have been trying unsuccessfully to revert edits made to a bunch of district boundaries in India. Location: http://www.openstreetmap.org/?lat=14.4137&lon=77.7935&zoom=12&layers=B000FTF I used the history dialog to revert to a version prior to it being flattened by user indigomc (accidently). Although the shape gets reverted back to its correct form, potlatch refuses to save the nodes and they still have a -ve id. I tried using offline mode to force a save and potlatch reports nothing to upload.
defect
saving of reverted edits fails i have been trying unsuccessfully to revert edits made to a bunch of district boundaries in india location i used the history dialog to revert to a version prior to it being flattened by user indigomc accidently although the shape gets reverted back to its correct form potlatch refuses to save the nodes and they still have a ve id i tried using offline mode to force a save and potlatch reports nothing to upload
1
8,758
2,611,542,913
IssuesEvent
2015-02-27 06:11:36
chrsmith/hedgewars
https://api.github.com/repos/chrsmith/hedgewars
opened
TechRacer: Long race times (probably >90s or >100s) are not counted
auto-migrated Priority-Medium Type-Defect
``` There is a problem with the timing in the TechRacer script. What steps will reproduce the problem? 1. Start TechRacer 2. Place a few easy checkpoints close to each other and near to an extra time crate (one of them is on one of the high girders left up) 3. Collect and activate extra time. 4. Finish all but one checkpoints and get close to the last one 5. Wait until 10 seconds are left on the clock (you should now have played for 110 seconds) 6. Touch the last checkpoint to finish the race What is the expected output? What do you see instead? I expect my (poor) round is at least counted. But the game will just say N/A. That’s clearly unfair to slow players. It also makes using extra time practically useless. What version of the product are you using? On what operating system? r9819e69bc6db on GNU/Linux. Please provide any additional information below. TechRacer starts with 90 seconds, but there are at least 2 extra times to be collected (maybe even more?). So the assumption that the race can at max. take 90s is wrong. Another related thing to know: If you fail to finish a round, your time is set to 100 seconds. This does not make sense at all in TechRacer, since you can take legitimately take 149 seconds to finish by using 2 extra times. ``` Original issue reported on code.google.com by `almikes@aol.com` on 20 Dec 2014 at 8:09
1.0
TechRacer: Long race times (probably >90s or >100s) are not counted - ``` There is a problem with the timing in the TechRacer script. What steps will reproduce the problem? 1. Start TechRacer 2. Place a few easy checkpoints close to each other and near to an extra time crate (one of them is on one of the high girders left up) 3. Collect and activate extra time. 4. Finish all but one checkpoints and get close to the last one 5. Wait until 10 seconds are left on the clock (you should now have played for 110 seconds) 6. Touch the last checkpoint to finish the race What is the expected output? What do you see instead? I expect my (poor) round is at least counted. But the game will just say N/A. That’s clearly unfair to slow players. It also makes using extra time practically useless. What version of the product are you using? On what operating system? r9819e69bc6db on GNU/Linux. Please provide any additional information below. TechRacer starts with 90 seconds, but there are at least 2 extra times to be collected (maybe even more?). So the assumption that the race can at max. take 90s is wrong. Another related thing to know: If you fail to finish a round, your time is set to 100 seconds. This does not make sense at all in TechRacer, since you can take legitimately take 149 seconds to finish by using 2 extra times. ``` Original issue reported on code.google.com by `almikes@aol.com` on 20 Dec 2014 at 8:09
defect
techracer long race times probably or are not counted there is a problem with the timing in the techracer script what steps will reproduce the problem start techracer place a few easy checkpoints close to each other and near to an extra time crate one of them is on one of the high girders left up collect and activate extra time finish all but one checkpoints and get close to the last one wait until seconds are left on the clock you should now have played for seconds touch the last checkpoint to finish the race what is the expected output what do you see instead i expect my poor round is at least counted but the game will just say n a that’s clearly unfair to slow players it also makes using extra time practically useless what version of the product are you using on what operating system on gnu linux please provide any additional information below techracer starts with seconds but there are at least extra times to be collected maybe even more so the assumption that the race can at max take is wrong another related thing to know if you fail to finish a round your time is set to seconds this does not make sense at all in techracer since you can take legitimately take seconds to finish by using extra times original issue reported on code google com by almikes aol com on dec at
1
33,203
12,193,825,453
IssuesEvent
2020-04-29 14:56:49
NixOS/nixpkgs
https://api.github.com/repos/NixOS/nixpkgs
closed
Vulnerability roundup 78: libarchive-3.4.0: 1 advisory
1.severity: security
[search](https://search.nix.gsc.io/?q=libarchive&i=fosho&repos=NixOS-nixpkgs), [files](https://github.com/NixOS/nixpkgs/search?utf8=%E2%9C%93&q=libarchive+in%3Apath&type=Code) * [ ] [CVE-2019-19221](https://nvd.nist.gov/vuln/detail/CVE-2019-19221) CVSSv3=5.5 (nixos-19.09, nixos-unstable) Scanned versions: nixos-19.09: 45ea6092203; nixos-unstable: 3140fa89c51. May contain false positives.
True
Vulnerability roundup 78: libarchive-3.4.0: 1 advisory - [search](https://search.nix.gsc.io/?q=libarchive&i=fosho&repos=NixOS-nixpkgs), [files](https://github.com/NixOS/nixpkgs/search?utf8=%E2%9C%93&q=libarchive+in%3Apath&type=Code) * [ ] [CVE-2019-19221](https://nvd.nist.gov/vuln/detail/CVE-2019-19221) CVSSv3=5.5 (nixos-19.09, nixos-unstable) Scanned versions: nixos-19.09: 45ea6092203; nixos-unstable: 3140fa89c51. May contain false positives.
non_defect
vulnerability roundup libarchive advisory nixos nixos unstable scanned versions nixos nixos unstable may contain false positives
0
8,162
2,611,468,839
IssuesEvent
2015-02-27 05:14:19
chrsmith/hedgewars
https://api.github.com/repos/chrsmith/hedgewars
closed
On local game, the local PC can't play
auto-migrated Priority-Medium Type-Defect
``` What steps will reproduce the problem? 1. Create a local game on PC1, and add one team (human). 2. Connect with PC2 to the local game and add four teams (human). 3. Begin the game with PC1. What is the expected output? What do you see instead? PC2 can play, but PC1 still on the previous screen. At least the begin button ("Comenzar" on Spanish) must retry. What version of the product are you using? On what operating system? * Hedgewars: 0.9.15 (both PCs). * PC1: Ubuntu 10.10. * PC2: Windows 7. (I've no screen capture at the moment). ``` Original issue reported on code.google.com by `ar.e...@gmail.com` on 12 Jan 2011 at 12:12
1.0
On local game, the local PC can't play - ``` What steps will reproduce the problem? 1. Create a local game on PC1, and add one team (human). 2. Connect with PC2 to the local game and add four teams (human). 3. Begin the game with PC1. What is the expected output? What do you see instead? PC2 can play, but PC1 still on the previous screen. At least the begin button ("Comenzar" on Spanish) must retry. What version of the product are you using? On what operating system? * Hedgewars: 0.9.15 (both PCs). * PC1: Ubuntu 10.10. * PC2: Windows 7. (I've no screen capture at the moment). ``` Original issue reported on code.google.com by `ar.e...@gmail.com` on 12 Jan 2011 at 12:12
defect
on local game the local pc can t play what steps will reproduce the problem create a local game on and add one team human connect with to the local game and add four teams human begin the game with what is the expected output what do you see instead can play but still on the previous screen at least the begin button comenzar on spanish must retry what version of the product are you using on what operating system hedgewars both pcs ubuntu windows i ve no screen capture at the moment original issue reported on code google com by ar e gmail com on jan at
1
410,304
11,986,116,630
IssuesEvent
2020-04-07 18:43:25
ngageoint/hootenanny
https://api.github.com/repos/ngageoint/hootenanny
closed
Cut and replaced roundabouts not snapping back to ref roads
Category: Algorithms Priority: High Type: Bug
Not sure yet whether this is a snapping issue or a changeset ID issue...or both. see output of `ServiceChangesetReplacementRoundaboutsConflateTest.sh`
1.0
Cut and replaced roundabouts not snapping back to ref roads - Not sure yet whether this is a snapping issue or a changeset ID issue...or both. see output of `ServiceChangesetReplacementRoundaboutsConflateTest.sh`
non_defect
cut and replaced roundabouts not snapping back to ref roads not sure yet whether this is a snapping issue or a changeset id issue or both see output of servicechangesetreplacementroundaboutsconflatetest sh
0
67,317
20,961,604,596
IssuesEvent
2022-03-27 21:47:58
abedmaatalla/sipdroid
https://api.github.com/repos/abedmaatalla/sipdroid
closed
Android wear notifications support
Priority-Medium Type-Defect auto-migrated
``` Right now I receive no notifications on the android wear watch on the incoming sipdroid calls. Please implement support for android wear notifications. ``` Original issue reported on code.google.com by `stan...@melmac.net` on 24 Oct 2014 at 4:54
1.0
Android wear notifications support - ``` Right now I receive no notifications on the android wear watch on the incoming sipdroid calls. Please implement support for android wear notifications. ``` Original issue reported on code.google.com by `stan...@melmac.net` on 24 Oct 2014 at 4:54
defect
android wear notifications support right now i receive no notifications on the android wear watch on the incoming sipdroid calls please implement support for android wear notifications original issue reported on code google com by stan melmac net on oct at
1
43,565
11,757,644,440
IssuesEvent
2020-03-13 14:03:42
primefaces/primefaces
https://api.github.com/repos/primefaces/primefaces
closed
Schedule: renderingMode must be lowercase
defect
## 1) Environment - PrimeFaces version: 8.0 - Does it work on the newest released PrimeFaces version? Version? No - Does it work on the newest sources in GitHub? (Build by source -> https://github.com/primefaces/primefaces/wiki/Building-From-Source) No - Application server + version: does not matter - Affected browsers: does not matter ## 2) Expected behavior ## 3) Actual behavior The full calendar is expecting the values for 'rendering' in lower case. Right now it is rendered in upper cases. It seems as org.json changed writing of enums from toString() to name() method. And maybe full calender v4 is pickier than v3, do not now. ## 4) Steps to reproduce Add an event with rendering mode BACKGROUND and look how it is rendered. Upper case BACKGROUND is ignored, lower case works fine. PR will follow.
1.0
Schedule: renderingMode must be lowercase - ## 1) Environment - PrimeFaces version: 8.0 - Does it work on the newest released PrimeFaces version? Version? No - Does it work on the newest sources in GitHub? (Build by source -> https://github.com/primefaces/primefaces/wiki/Building-From-Source) No - Application server + version: does not matter - Affected browsers: does not matter ## 2) Expected behavior ## 3) Actual behavior The full calendar is expecting the values for 'rendering' in lower case. Right now it is rendered in upper cases. It seems as org.json changed writing of enums from toString() to name() method. And maybe full calender v4 is pickier than v3, do not now. ## 4) Steps to reproduce Add an event with rendering mode BACKGROUND and look how it is rendered. Upper case BACKGROUND is ignored, lower case works fine. PR will follow.
defect
schedule renderingmode must be lowercase environment primefaces version does it work on the newest released primefaces version version no does it work on the newest sources in github build by source no application server version does not matter affected browsers does not matter expected behavior actual behavior the full calendar is expecting the values for rendering in lower case right now it is rendered in upper cases it seems as org json changed writing of enums from tostring to name method and maybe full calender is pickier than do not now steps to reproduce add an event with rendering mode background and look how it is rendered upper case background is ignored lower case works fine pr will follow
1
13,395
2,755,372,021
IssuesEvent
2015-04-26 15:53:53
Badminton-PBO/lion-freaky
https://api.github.com/repos/Badminton-PBO/lion-freaky
closed
Maldegem BC is defined twice in club.csv and this blocks the DB load
auto-migrated Priority-Medium Type-Defect
``` Discovered by Ronny + communicated to Ruben. ``` Original issue reported on code.google.com by `thomas.d...@gmail.com` on 21 Jan 2015 at 5:02
1.0
Maldegem BC is defined twice in club.csv and this blocks the DB load - ``` Discovered by Ronny + communicated to Ruben. ``` Original issue reported on code.google.com by `thomas.d...@gmail.com` on 21 Jan 2015 at 5:02
defect
maldegem bc is defined twice in club csv and this blocks the db load discovered by ronny communicated to ruben original issue reported on code google com by thomas d gmail com on jan at
1
57,765
14,213,835,933
IssuesEvent
2020-11-17 03:33:58
ErezDasa/RB2
https://api.github.com/repos/ErezDasa/RB2
opened
CVE-2019-3802 (Medium) detected in spring-data-jpa-2.0.11.RELEASE.jar
security vulnerability
## CVE-2019-3802 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-data-jpa-2.0.11.RELEASE.jar</b></p></summary> <p>Spring Data module for JPA repositories.</p> <p>Library home page: <a href="http://projects.spring.io/spring-data-jpa">http://projects.spring.io/spring-data-jpa</a></p> <p>Path to dependency file: RB2/resource_bundle_github/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/data/spring-data-jpa/2.0.11.RELEASE/spring-data-jpa-2.0.11.RELEASE.jar</p> <p> Dependency Hierarchy: - infra_github-0.0.1-SNAPSHOT.jar (Root Library) - spring-boot-starter-data-jpa-2.0.6.RELEASE.jar - :x: **spring-data-jpa-2.0.11.RELEASE.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/ErezDasa/RB2/commit/ff0c9bd18136c8a1b451e76083652aadc9a74633">ff0c9bd18136c8a1b451e76083652aadc9a74633</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> This affects Spring Data JPA in versions up to and including 2.1.6, 2.0.14 and 1.11.20. ExampleMatcher using ExampleMatcher.StringMatcher.STARTING, ExampleMatcher.StringMatcher.ENDING or ExampleMatcher.StringMatcher.CONTAINING could return more results than anticipated when a maliciously crafted example value is supplied. <p>Publish Date: 2019-06-03 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-3802>CVE-2019-3802</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: Low - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3802">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3802</a></p> <p>Release Date: 2019-06-03</p> <p>Fix Resolution: 1.11.22.RELEASE,2.1.8.RELEASE</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-3802 (Medium) detected in spring-data-jpa-2.0.11.RELEASE.jar - ## CVE-2019-3802 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-data-jpa-2.0.11.RELEASE.jar</b></p></summary> <p>Spring Data module for JPA repositories.</p> <p>Library home page: <a href="http://projects.spring.io/spring-data-jpa">http://projects.spring.io/spring-data-jpa</a></p> <p>Path to dependency file: RB2/resource_bundle_github/pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/data/spring-data-jpa/2.0.11.RELEASE/spring-data-jpa-2.0.11.RELEASE.jar</p> <p> Dependency Hierarchy: - infra_github-0.0.1-SNAPSHOT.jar (Root Library) - spring-boot-starter-data-jpa-2.0.6.RELEASE.jar - :x: **spring-data-jpa-2.0.11.RELEASE.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/ErezDasa/RB2/commit/ff0c9bd18136c8a1b451e76083652aadc9a74633">ff0c9bd18136c8a1b451e76083652aadc9a74633</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> This affects Spring Data JPA in versions up to and including 2.1.6, 2.0.14 and 1.11.20. ExampleMatcher using ExampleMatcher.StringMatcher.STARTING, ExampleMatcher.StringMatcher.ENDING or ExampleMatcher.StringMatcher.CONTAINING could return more results than anticipated when a maliciously crafted example value is supplied. <p>Publish Date: 2019-06-03 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-3802>CVE-2019-3802</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: Low - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3802">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3802</a></p> <p>Release Date: 2019-06-03</p> <p>Fix Resolution: 1.11.22.RELEASE,2.1.8.RELEASE</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 medium detected in spring data jpa release jar cve medium severity vulnerability vulnerable library spring data jpa release jar spring data module for jpa repositories library home page a href path to dependency file resource bundle github pom xml path to vulnerable library home wss scanner repository org springframework data spring data jpa release spring data jpa release jar dependency hierarchy infra github snapshot jar root library spring boot starter data jpa release jar x spring data jpa release jar vulnerable library found in head commit a href vulnerability details this affects spring data jpa in versions up to and including and examplematcher using examplematcher stringmatcher starting examplematcher stringmatcher ending or examplematcher stringmatcher containing could return more results than anticipated when a maliciously crafted example value is supplied 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 low integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution release release step up your open source security game with whitesource
0
41,808
10,659,701,652
IssuesEvent
2019-10-18 08:19:59
primefaces/primefaces
https://api.github.com/repos/primefaces/primefaces
closed
Calendar without value attibute NPE
defect
Reported By PRO User; > Caused by: java.lang.NullPointerException: null at org.primefaces.component.calendar.BaseCalendarRenderer.resolveDateType(BaseCalendarRenderer.java:268) at org.primefaces.component.calendar.BaseCalendarRenderer.getConvertedValue(BaseCalendarRenderer.java:152) at javax.faces.component.UIInput.getConvertedValue(UIInput.java:1045) at javax.faces.component.UIInput.validate(UIInput.java:975) at org.primefaces.component.calendar.Calendar.validate(Calendar.java:108) at javax.faces.component.UIInput.executeValidate(UIInput.java:1248) at javax.faces.component.UIInput.processValidators(UIInput.java:712)
1.0
Calendar without value attibute NPE - Reported By PRO User; > Caused by: java.lang.NullPointerException: null at org.primefaces.component.calendar.BaseCalendarRenderer.resolveDateType(BaseCalendarRenderer.java:268) at org.primefaces.component.calendar.BaseCalendarRenderer.getConvertedValue(BaseCalendarRenderer.java:152) at javax.faces.component.UIInput.getConvertedValue(UIInput.java:1045) at javax.faces.component.UIInput.validate(UIInput.java:975) at org.primefaces.component.calendar.Calendar.validate(Calendar.java:108) at javax.faces.component.UIInput.executeValidate(UIInput.java:1248) at javax.faces.component.UIInput.processValidators(UIInput.java:712)
defect
calendar without value attibute npe reported by pro user caused by java lang nullpointerexception null at org primefaces component calendar basecalendarrenderer resolvedatetype basecalendarrenderer java at org primefaces component calendar basecalendarrenderer getconvertedvalue basecalendarrenderer java at javax faces component uiinput getconvertedvalue uiinput java at javax faces component uiinput validate uiinput java at org primefaces component calendar calendar validate calendar java at javax faces component uiinput executevalidate uiinput java at javax faces component uiinput processvalidators uiinput java
1
60,887
17,023,549,159
IssuesEvent
2021-07-03 02:35:37
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
closed
[admin] Labels for Landkreise (admin 6 polygons) too small
Component: mapnik Priority: minor Resolution: fixed Type: defect
**[Submitted to the original trac issue database at 7.12pm, Saturday, 6th February 2010]** As this example http://www.openstreetmap.org/?lat=51.8642&lon=7.3706&zoom=14 shows, the labels for german Landkreise (Adminlevel 6 polygons) are much to small. They also should be appearing at higher zoom levels (up to z12). Chris
1.0
[admin] Labels for Landkreise (admin 6 polygons) too small - **[Submitted to the original trac issue database at 7.12pm, Saturday, 6th February 2010]** As this example http://www.openstreetmap.org/?lat=51.8642&lon=7.3706&zoom=14 shows, the labels for german Landkreise (Adminlevel 6 polygons) are much to small. They also should be appearing at higher zoom levels (up to z12). Chris
defect
labels for landkreise admin polygons too small as this example shows the labels for german landkreise adminlevel polygons are much to small they also should be appearing at higher zoom levels up to chris
1
59,558
17,023,161,104
IssuesEvent
2021-07-03 00:38:52
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
closed
GET way API call returning text/html mime-type
Component: rails_port Priority: major Resolution: fixed Type: defect
**[Submitted to the original trac issue database at 1.15pm, Sunday, 13th May 2007]** e.g. http://www.openstreetmap.org/api/0.4/way/4040688 returned as text/html, should be text/xml to match other api calls
1.0
GET way API call returning text/html mime-type - **[Submitted to the original trac issue database at 1.15pm, Sunday, 13th May 2007]** e.g. http://www.openstreetmap.org/api/0.4/way/4040688 returned as text/html, should be text/xml to match other api calls
defect
get way api call returning text html mime type e g returned as text html should be text xml to match other api calls
1
57,323
6,543,810,002
IssuesEvent
2017-09-03 06:28:06
pacmacro/pm-server
https://api.github.com/repos/pacmacro/pm-server
closed
Write tests for PacdotRegistry
tests
Specifically, these should only test the initialization of the registry's pacdots and powerdots, to verify that the pacdots are read and created correctly.
1.0
Write tests for PacdotRegistry - Specifically, these should only test the initialization of the registry's pacdots and powerdots, to verify that the pacdots are read and created correctly.
non_defect
write tests for pacdotregistry specifically these should only test the initialization of the registry s pacdots and powerdots to verify that the pacdots are read and created correctly
0
71,978
23,878,906,867
IssuesEvent
2022-09-07 22:10:46
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
opened
Copy Room Link should work on DMs
T-Defect
### Steps to reproduce Just because you've tagged a room as DM doesn't mea you don't want to be able to copy a link to it to refer to it in a different room. ### Outcome #### What did you expect? Copy Link works on any room in the room list #### What happened instead? It only works on Rooms, not DMs ### Operating system macOS ### Application version nightly ### How did you install the app? nightly ### Homeserver matrix.org ### Will you send logs? No
1.0
Copy Room Link should work on DMs - ### Steps to reproduce Just because you've tagged a room as DM doesn't mea you don't want to be able to copy a link to it to refer to it in a different room. ### Outcome #### What did you expect? Copy Link works on any room in the room list #### What happened instead? It only works on Rooms, not DMs ### Operating system macOS ### Application version nightly ### How did you install the app? nightly ### Homeserver matrix.org ### Will you send logs? No
defect
copy room link should work on dms steps to reproduce just because you ve tagged a room as dm doesn t mea you don t want to be able to copy a link to it to refer to it in a different room outcome what did you expect copy link works on any room in the room list what happened instead it only works on rooms not dms operating system macos application version nightly how did you install the app nightly homeserver matrix org will you send logs no
1
66,014
12,702,809,725
IssuesEvent
2020-06-22 20:55:19
certbot/certbot
https://api.github.com/repos/certbot/certbot
closed
Create constraints file in snapcraft.yml
area: code health area: snaps area: tooling priority: significant
Solving this issue isn't necessary, but it could make working on the snap a little easier and more pleasant and for that reason, I think it has significant value. Currently one step in building our snap is creating a constraints file for `pip`. See [this](https://github.com/certbot/certbot/blob/5536c912238d96b15295a1b6938472fd24cf40ce/snap/local/build_and_install.sh#L12). This is a little awkward, especially when building the snap locally because it requires you to manually make persistent local changes to our repo to make the snap build work. Instead, why not just generate this file in `snapcraft.yml` as part of the build process? I didn't end up finding a solution, but I played with this a bit in the [travis-test-build-constraints-in-snapcraft branch](https://github.com/certbot/certbot/tree/travis-test-build-constraints-in-snapcraft). A brief summary of what I tried is I tried setting `override-pull` as described [here](https://snapcraft.io/docs/scriptlets) for the `acme` part to generate the constraints file, although it didn't work because apparently the Python plugin used for the `acme` part needs the constraints file as part of the default pull (which largely makes sense). What can we do instead? Other ideas are: * Are we able to create the constraints file in `override-pull` before running `snapcraftctl pull`? Are the source files even accessible to us yet? * Can we define another part before `acme` that sets up this constraints file to be used by the other parts? * Something else entirely
1.0
Create constraints file in snapcraft.yml - Solving this issue isn't necessary, but it could make working on the snap a little easier and more pleasant and for that reason, I think it has significant value. Currently one step in building our snap is creating a constraints file for `pip`. See [this](https://github.com/certbot/certbot/blob/5536c912238d96b15295a1b6938472fd24cf40ce/snap/local/build_and_install.sh#L12). This is a little awkward, especially when building the snap locally because it requires you to manually make persistent local changes to our repo to make the snap build work. Instead, why not just generate this file in `snapcraft.yml` as part of the build process? I didn't end up finding a solution, but I played with this a bit in the [travis-test-build-constraints-in-snapcraft branch](https://github.com/certbot/certbot/tree/travis-test-build-constraints-in-snapcraft). A brief summary of what I tried is I tried setting `override-pull` as described [here](https://snapcraft.io/docs/scriptlets) for the `acme` part to generate the constraints file, although it didn't work because apparently the Python plugin used for the `acme` part needs the constraints file as part of the default pull (which largely makes sense). What can we do instead? Other ideas are: * Are we able to create the constraints file in `override-pull` before running `snapcraftctl pull`? Are the source files even accessible to us yet? * Can we define another part before `acme` that sets up this constraints file to be used by the other parts? * Something else entirely
non_defect
create constraints file in snapcraft yml solving this issue isn t necessary but it could make working on the snap a little easier and more pleasant and for that reason i think it has significant value currently one step in building our snap is creating a constraints file for pip see this is a little awkward especially when building the snap locally because it requires you to manually make persistent local changes to our repo to make the snap build work instead why not just generate this file in snapcraft yml as part of the build process i didn t end up finding a solution but i played with this a bit in the a brief summary of what i tried is i tried setting override pull as described for the acme part to generate the constraints file although it didn t work because apparently the python plugin used for the acme part needs the constraints file as part of the default pull which largely makes sense what can we do instead other ideas are are we able to create the constraints file in override pull before running snapcraftctl pull are the source files even accessible to us yet can we define another part before acme that sets up this constraints file to be used by the other parts something else entirely
0
38,035
12,513,187,206
IssuesEvent
2020-06-03 01:10:03
doc-ai/snipe-it
https://api.github.com/repos/doc-ai/snipe-it
opened
CVE-2020-7660 (Medium) detected in serialize-javascript-1.5.0.tgz
security vulnerability
## CVE-2020-7660 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>serialize-javascript-1.5.0.tgz</b></p></summary> <p>Serialize JavaScript to a superset of JSON that includes regular expressions and functions.</p> <p>Library home page: <a href="https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.5.0.tgz">https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.5.0.tgz</a></p> <p>Path to dependency file: /tmp/ws-scm/snipe-it/package.json</p> <p>Path to vulnerable library: /tmp/ws-scm/snipe-it/node_modules/serialize-javascript/package.json</p> <p> Dependency Hierarchy: - laravel-mix-2.1.11.tgz (Root Library) - uglifyjs-webpack-plugin-1.2.5.tgz - :x: **serialize-javascript-1.5.0.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> serialize-javascript prior to 3.1.0 allows remote attackers to inject arbitrary code via the function "deleteFunctions" within "index.js". <p>Publish Date: 2020-06-01 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7660>CVE-2020-7660</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.0</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: N/A - Attack Complexity: N/A - Privileges Required: N/A - User Interaction: N/A - Scope: N/A - Impact Metrics: - Confidentiality Impact: N/A - Integrity Impact: N/A - Availability Impact: N/A </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-7660">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-7660</a></p> <p>Release Date: 2020-06-01</p> <p>Fix Resolution: serialize-javascript - 3.1.0</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"serialize-javascript","packageVersion":"1.5.0","isTransitiveDependency":true,"dependencyTree":"laravel-mix:2.1.11;uglifyjs-webpack-plugin:1.2.5;serialize-javascript:1.5.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"serialize-javascript - 3.1.0"}],"vulnerabilityIdentifier":"CVE-2020-7660","vulnerabilityDetails":"serialize-javascript prior to 3.1.0 allows remote attackers to inject arbitrary code via the function \"deleteFunctions\" within \"index.js\".","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7660","cvss3Severity":"medium","cvss3Score":"5.0","cvss3Metrics":{"A":"N/A","AC":"N/A","PR":"N/A","S":"N/A","C":"N/A","UI":"N/A","AV":"N/A","I":"N/A"},"extraData":{}}</REMEDIATE> -->
True
CVE-2020-7660 (Medium) detected in serialize-javascript-1.5.0.tgz - ## CVE-2020-7660 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>serialize-javascript-1.5.0.tgz</b></p></summary> <p>Serialize JavaScript to a superset of JSON that includes regular expressions and functions.</p> <p>Library home page: <a href="https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.5.0.tgz">https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.5.0.tgz</a></p> <p>Path to dependency file: /tmp/ws-scm/snipe-it/package.json</p> <p>Path to vulnerable library: /tmp/ws-scm/snipe-it/node_modules/serialize-javascript/package.json</p> <p> Dependency Hierarchy: - laravel-mix-2.1.11.tgz (Root Library) - uglifyjs-webpack-plugin-1.2.5.tgz - :x: **serialize-javascript-1.5.0.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> serialize-javascript prior to 3.1.0 allows remote attackers to inject arbitrary code via the function "deleteFunctions" within "index.js". <p>Publish Date: 2020-06-01 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7660>CVE-2020-7660</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.0</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: N/A - Attack Complexity: N/A - Privileges Required: N/A - User Interaction: N/A - Scope: N/A - Impact Metrics: - Confidentiality Impact: N/A - Integrity Impact: N/A - Availability Impact: N/A </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-7660">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-7660</a></p> <p>Release Date: 2020-06-01</p> <p>Fix Resolution: serialize-javascript - 3.1.0</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"serialize-javascript","packageVersion":"1.5.0","isTransitiveDependency":true,"dependencyTree":"laravel-mix:2.1.11;uglifyjs-webpack-plugin:1.2.5;serialize-javascript:1.5.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"serialize-javascript - 3.1.0"}],"vulnerabilityIdentifier":"CVE-2020-7660","vulnerabilityDetails":"serialize-javascript prior to 3.1.0 allows remote attackers to inject arbitrary code via the function \"deleteFunctions\" within \"index.js\".","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7660","cvss3Severity":"medium","cvss3Score":"5.0","cvss3Metrics":{"A":"N/A","AC":"N/A","PR":"N/A","S":"N/A","C":"N/A","UI":"N/A","AV":"N/A","I":"N/A"},"extraData":{}}</REMEDIATE> -->
non_defect
cve medium detected in serialize javascript tgz cve medium severity vulnerability vulnerable library serialize javascript tgz serialize javascript to a superset of json that includes regular expressions and functions library home page a href path to dependency file tmp ws scm snipe it package json path to vulnerable library tmp ws scm snipe it node modules serialize javascript package json dependency hierarchy laravel mix tgz root library uglifyjs webpack plugin tgz x serialize javascript tgz vulnerable library vulnerability details serialize javascript prior to allows remote attackers to inject arbitrary code via the function deletefunctions within index js publish date url a href cvss score details base score metrics exploitability metrics attack vector n a attack complexity n a privileges required n a user interaction n a scope n a impact metrics confidentiality impact n a integrity impact n a availability impact n a for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution serialize javascript isopenpronvulnerability false ispackagebased true isdefaultbranch true packages vulnerabilityidentifier cve vulnerabilitydetails serialize javascript prior to allows remote attackers to inject arbitrary code via the function deletefunctions within index js vulnerabilityurl
0
19,671
3,237,479,010
IssuesEvent
2015-10-14 12:09:00
netty/netty
https://api.github.com/repos/netty/netty
closed
Sending an empty ArrayBuffer causes an error
defect
Netty 5.0.0.Alpha2 Client (browser): ```js ws.send(new ArrayBuffer(0)) ``` Server log: ``` Oct 11, 2015 3:43:57 PM io.netty.channel.DefaultChannelPipeline$TailContext exceptionCaught WARNING: An exceptionCaught() event was fired, and it reached at the tail of the pipeline. It usually means the last handler in the pipeline did not handle the exception. io.netty.handler.codec.DecoderException: io.netty.handler.codec.CodecException: cannot read uncompressed buffer at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:99) at io.netty.channel.ChannelHandlerInvokerUtil.invokeChannelReadNow(ChannelHandlerInvokerUtil.java:84) at io.netty.channel.DefaultChannelHandlerInvoker.invokeChannelRead(DefaultChannelHandlerInvoker.java:153) at io.netty.channel.PausableChannelEventExecutor.invokeChannelRead(PausableChannelEventExecutor.java:86) at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:389) at io.netty.channel.ChannelHandlerAdapter.channelRead(ChannelHandlerAdapter.java:143) at io.netty.channel.ChannelHandlerInvokerUtil.invokeChannelReadNow(ChannelHandlerInvokerUtil.java:84) at io.netty.channel.DefaultChannelHandlerInvoker.invokeChannelRead(DefaultChannelHandlerInvoker.java:153) at io.netty.channel.PausableChannelEventExecutor.invokeChannelRead(PausableChannelEventExecutor.java:86) at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:389) at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:243) at io.netty.channel.ChannelHandlerInvokerUtil.invokeChannelReadNow(ChannelHandlerInvokerUtil.java:84) at io.netty.channel.DefaultChannelHandlerInvoker.invokeChannelRead(DefaultChannelHandlerInvoker.java:153) at io.netty.channel.PausableChannelEventExecutor.invokeChannelRead(PausableChannelEventExecutor.java:86) at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:389) at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:956) at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:127) at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:514) at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:471) at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:385) at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:351) at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116) at io.netty.util.internal.chmv8.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1412) at io.netty.util.internal.chmv8.ForkJoinTask.doExec(ForkJoinTask.java:280) at io.netty.util.internal.chmv8.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:877) at io.netty.util.internal.chmv8.ForkJoinPool.scan(ForkJoinPool.java:1706) at io.netty.util.internal.chmv8.ForkJoinPool.runWorker(ForkJoinPool.java:1661) at io.netty.util.internal.chmv8.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:126) Caused by: io.netty.handler.codec.CodecException: cannot read uncompressed buffer at io.netty.handler.codec.http.websocketx.extensions.compression.DeflateDecoder.decode(DeflateDecoder.java:92) at io.netty.handler.codec.http.websocketx.extensions.compression.PerMessageDeflateDecoder.decode(PerMessageDeflateDecoder.java:64) at io.netty.handler.codec.http.websocketx.extensions.compression.PerMessageDeflateDecoder.decode(PerMessageDeflateDecoder.java:30) at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:89) ... 27 more ```
1.0
Sending an empty ArrayBuffer causes an error - Netty 5.0.0.Alpha2 Client (browser): ```js ws.send(new ArrayBuffer(0)) ``` Server log: ``` Oct 11, 2015 3:43:57 PM io.netty.channel.DefaultChannelPipeline$TailContext exceptionCaught WARNING: An exceptionCaught() event was fired, and it reached at the tail of the pipeline. It usually means the last handler in the pipeline did not handle the exception. io.netty.handler.codec.DecoderException: io.netty.handler.codec.CodecException: cannot read uncompressed buffer at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:99) at io.netty.channel.ChannelHandlerInvokerUtil.invokeChannelReadNow(ChannelHandlerInvokerUtil.java:84) at io.netty.channel.DefaultChannelHandlerInvoker.invokeChannelRead(DefaultChannelHandlerInvoker.java:153) at io.netty.channel.PausableChannelEventExecutor.invokeChannelRead(PausableChannelEventExecutor.java:86) at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:389) at io.netty.channel.ChannelHandlerAdapter.channelRead(ChannelHandlerAdapter.java:143) at io.netty.channel.ChannelHandlerInvokerUtil.invokeChannelReadNow(ChannelHandlerInvokerUtil.java:84) at io.netty.channel.DefaultChannelHandlerInvoker.invokeChannelRead(DefaultChannelHandlerInvoker.java:153) at io.netty.channel.PausableChannelEventExecutor.invokeChannelRead(PausableChannelEventExecutor.java:86) at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:389) at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:243) at io.netty.channel.ChannelHandlerInvokerUtil.invokeChannelReadNow(ChannelHandlerInvokerUtil.java:84) at io.netty.channel.DefaultChannelHandlerInvoker.invokeChannelRead(DefaultChannelHandlerInvoker.java:153) at io.netty.channel.PausableChannelEventExecutor.invokeChannelRead(PausableChannelEventExecutor.java:86) at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:389) at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:956) at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:127) at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:514) at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:471) at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:385) at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:351) at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116) at io.netty.util.internal.chmv8.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1412) at io.netty.util.internal.chmv8.ForkJoinTask.doExec(ForkJoinTask.java:280) at io.netty.util.internal.chmv8.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:877) at io.netty.util.internal.chmv8.ForkJoinPool.scan(ForkJoinPool.java:1706) at io.netty.util.internal.chmv8.ForkJoinPool.runWorker(ForkJoinPool.java:1661) at io.netty.util.internal.chmv8.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:126) Caused by: io.netty.handler.codec.CodecException: cannot read uncompressed buffer at io.netty.handler.codec.http.websocketx.extensions.compression.DeflateDecoder.decode(DeflateDecoder.java:92) at io.netty.handler.codec.http.websocketx.extensions.compression.PerMessageDeflateDecoder.decode(PerMessageDeflateDecoder.java:64) at io.netty.handler.codec.http.websocketx.extensions.compression.PerMessageDeflateDecoder.decode(PerMessageDeflateDecoder.java:30) at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:89) ... 27 more ```
defect
sending an empty arraybuffer causes an error netty client browser js ws send new arraybuffer server log oct pm io netty channel defaultchannelpipeline tailcontext exceptioncaught warning an exceptioncaught event was fired and it reached at the tail of the pipeline it usually means the last handler in the pipeline did not handle the exception io netty handler codec decoderexception io netty handler codec codecexception cannot read uncompressed buffer at io netty handler codec messagetomessagedecoder channelread messagetomessagedecoder java at io netty channel channelhandlerinvokerutil invokechannelreadnow channelhandlerinvokerutil java at io netty channel defaultchannelhandlerinvoker invokechannelread defaultchannelhandlerinvoker java at io netty channel pausablechanneleventexecutor invokechannelread pausablechanneleventexecutor java at io netty channel abstractchannelhandlercontext firechannelread abstractchannelhandlercontext java at io netty channel channelhandleradapter channelread channelhandleradapter java at io netty channel channelhandlerinvokerutil invokechannelreadnow channelhandlerinvokerutil java at io netty channel defaultchannelhandlerinvoker invokechannelread defaultchannelhandlerinvoker java at io netty channel pausablechanneleventexecutor invokechannelread pausablechanneleventexecutor java at io netty channel abstractchannelhandlercontext firechannelread abstractchannelhandlercontext java at io netty handler codec bytetomessagedecoder channelread bytetomessagedecoder java at io netty channel channelhandlerinvokerutil invokechannelreadnow channelhandlerinvokerutil java at io netty channel defaultchannelhandlerinvoker invokechannelread defaultchannelhandlerinvoker java at io netty channel pausablechanneleventexecutor invokechannelread pausablechanneleventexecutor java at io netty channel abstractchannelhandlercontext firechannelread abstractchannelhandlercontext java at io netty channel defaultchannelpipeline firechannelread defaultchannelpipeline java at io netty channel nio abstractniobytechannel niobyteunsafe read abstractniobytechannel java at io netty channel nio nioeventloop processselectedkey nioeventloop java at io netty channel nio nioeventloop processselectedkeysoptimized nioeventloop java at io netty channel nio nioeventloop processselectedkeys nioeventloop java at io netty channel nio nioeventloop run nioeventloop java at io netty util concurrent singlethreadeventexecutor run singlethreadeventexecutor java at io netty util internal forkjointask runnableexecuteaction exec forkjointask java at io netty util internal forkjointask doexec forkjointask java at io netty util internal forkjoinpool workqueue runtask forkjoinpool java at io netty util internal forkjoinpool scan forkjoinpool java at io netty util internal forkjoinpool runworker forkjoinpool java at io netty util internal forkjoinworkerthread run forkjoinworkerthread java caused by io netty handler codec codecexception cannot read uncompressed buffer at io netty handler codec http websocketx extensions compression deflatedecoder decode deflatedecoder java at io netty handler codec http websocketx extensions compression permessagedeflatedecoder decode permessagedeflatedecoder java at io netty handler codec http websocketx extensions compression permessagedeflatedecoder decode permessagedeflatedecoder java at io netty handler codec messagetomessagedecoder channelread messagetomessagedecoder java more
1
76,391
15,495,997,887
IssuesEvent
2021-03-11 01:52:43
yhuangsh/50pm
https://api.github.com/repos/yhuangsh/50pm
opened
CVE-2019-19919 (High) detected in handlebars-4.1.1.tgz
security vulnerability
## CVE-2019-19919 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>handlebars-4.1.1.tgz</b></p></summary> <p>Handlebars provides the power necessary to let you build semantic templates effectively with no frustration</p> <p>Library home page: <a href="https://registry.npmjs.org/handlebars/-/handlebars-4.1.1.tgz">https://registry.npmjs.org/handlebars/-/handlebars-4.1.1.tgz</a></p> <p>Path to dependency file: /50pm/frontend/50pm/package.json</p> <p>Path to vulnerable library: 50pm/frontend/50pm/node_modules/handlebars/package.json</p> <p> Dependency Hierarchy: - react-scripts-2.1.8.tgz (Root Library) - jest-23.6.0.tgz - jest-cli-23.6.0.tgz - istanbul-api-1.3.7.tgz - istanbul-reports-1.5.1.tgz - :x: **handlebars-4.1.1.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> Versions of handlebars prior to 4.3.0 are vulnerable to Prototype Pollution leading to Remote Code Execution. Templates may alter an Object's __proto__ and __defineGetter__ properties, which may allow an attacker to execute arbitrary code through crafted payloads. <p>Publish Date: 2019-12-20 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-19919>CVE-2019-19919</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://www.npmjs.com/advisories/1164">https://www.npmjs.com/advisories/1164</a></p> <p>Release Date: 2019-12-20</p> <p>Fix Resolution: 4.3.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2019-19919 (High) detected in handlebars-4.1.1.tgz - ## CVE-2019-19919 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>handlebars-4.1.1.tgz</b></p></summary> <p>Handlebars provides the power necessary to let you build semantic templates effectively with no frustration</p> <p>Library home page: <a href="https://registry.npmjs.org/handlebars/-/handlebars-4.1.1.tgz">https://registry.npmjs.org/handlebars/-/handlebars-4.1.1.tgz</a></p> <p>Path to dependency file: /50pm/frontend/50pm/package.json</p> <p>Path to vulnerable library: 50pm/frontend/50pm/node_modules/handlebars/package.json</p> <p> Dependency Hierarchy: - react-scripts-2.1.8.tgz (Root Library) - jest-23.6.0.tgz - jest-cli-23.6.0.tgz - istanbul-api-1.3.7.tgz - istanbul-reports-1.5.1.tgz - :x: **handlebars-4.1.1.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> Versions of handlebars prior to 4.3.0 are vulnerable to Prototype Pollution leading to Remote Code Execution. Templates may alter an Object's __proto__ and __defineGetter__ properties, which may allow an attacker to execute arbitrary code through crafted payloads. <p>Publish Date: 2019-12-20 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-19919>CVE-2019-19919</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://www.npmjs.com/advisories/1164">https://www.npmjs.com/advisories/1164</a></p> <p>Release Date: 2019-12-20</p> <p>Fix Resolution: 4.3.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_defect
cve high detected in handlebars tgz cve high severity vulnerability vulnerable library handlebars tgz handlebars provides the power necessary to let you build semantic templates effectively with no frustration library home page a href path to dependency file frontend package json path to vulnerable library frontend node modules handlebars package json dependency hierarchy react scripts tgz root library jest tgz jest cli tgz istanbul api tgz istanbul reports tgz x handlebars tgz vulnerable library vulnerability details versions of handlebars prior to are vulnerable to prototype pollution leading to remote code execution templates may alter an object s proto and definegetter properties which may allow an attacker to execute arbitrary code through crafted payloads 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 whitesource
0
165,085
12,827,829,457
IssuesEvent
2020-07-06 19:17:04
abraunegg/onedrive
https://api.github.com/repos/abraunegg/onedrive
closed
skip_dir not working
Answer Provided Bug PR Provided - Needs Testing Question
Hi, I have the following directory structure: - Documents/Images - Documents/Music - Images - Music I would like to synchronize the "Images" and "Music" directories that are inside "Documents", but not the ones at the root. I tried the parameter "skip_dir" with the values "Images|Music" and "/Images|/Music". In the first case, the directories inside and outside "Documents" do not sync. In the second, I have errors. what am I doing wrong? Thank you!
1.0
skip_dir not working - Hi, I have the following directory structure: - Documents/Images - Documents/Music - Images - Music I would like to synchronize the "Images" and "Music" directories that are inside "Documents", but not the ones at the root. I tried the parameter "skip_dir" with the values "Images|Music" and "/Images|/Music". In the first case, the directories inside and outside "Documents" do not sync. In the second, I have errors. what am I doing wrong? Thank you!
non_defect
skip dir not working hi i have the following directory structure documents images documents music images music i would like to synchronize the images and music directories that are inside documents but not the ones at the root i tried the parameter skip dir with the values images music and images music in the first case the directories inside and outside documents do not sync in the second i have errors what am i doing wrong thank you
0
7,215
6,801,961,200
IssuesEvent
2017-11-02 18:29:52
OpenTechStrategies/psm
https://api.github.com/repos/OpenTechStrategies/psm
opened
Lock down ops dashboard
security
The operations dashboard, as seen when logging in as a service administrator (such as the default user `admin`), contains "recent events": enrollments that have been approved or denied. These recent events should only be visible to service admins, and should not be visible to anyone else. Lock down access based on the role(s) of the logged-in user. See also issue #10.
True
Lock down ops dashboard - The operations dashboard, as seen when logging in as a service administrator (such as the default user `admin`), contains "recent events": enrollments that have been approved or denied. These recent events should only be visible to service admins, and should not be visible to anyone else. Lock down access based on the role(s) of the logged-in user. See also issue #10.
non_defect
lock down ops dashboard the operations dashboard as seen when logging in as a service administrator such as the default user admin contains recent events enrollments that have been approved or denied these recent events should only be visible to service admins and should not be visible to anyone else lock down access based on the role s of the logged in user see also issue
0
22,713
3,689,614,170
IssuesEvent
2016-02-25 17:01:08
jOOQ/jOOQ
https://api.github.com/repos/jOOQ/jOOQ
closed
Performance bottleneck in MetaFieldProvider when fetching unknown plain SQL fields
C: Functionality P: High R: Fixed T: Defect
This sort of query performs exceptionally bad with jOOQ: ```java q = create.select() .from("post") .where("id = ?", -1) ``` The reasno for this is the fact that jOOQ does not know columns in advance and thus fetches them from JDBC `ResultSetMetaData`. There is a bottleneck in `MetaDataFieldProvider`: ![bottleneck](http://i.imgur.com/toR1tpt.png) This bottlneck was discovered @aaberg in a trivial benchmark for sql2o: https://github.com/aaberg/sql2o
1.0
Performance bottleneck in MetaFieldProvider when fetching unknown plain SQL fields - This sort of query performs exceptionally bad with jOOQ: ```java q = create.select() .from("post") .where("id = ?", -1) ``` The reasno for this is the fact that jOOQ does not know columns in advance and thus fetches them from JDBC `ResultSetMetaData`. There is a bottleneck in `MetaDataFieldProvider`: ![bottleneck](http://i.imgur.com/toR1tpt.png) This bottlneck was discovered @aaberg in a trivial benchmark for sql2o: https://github.com/aaberg/sql2o
defect
performance bottleneck in metafieldprovider when fetching unknown plain sql fields this sort of query performs exceptionally bad with jooq java q create select from post where id the reasno for this is the fact that jooq does not know columns in advance and thus fetches them from jdbc resultsetmetadata there is a bottleneck in metadatafieldprovider this bottlneck was discovered aaberg in a trivial benchmark for
1
80,625
30,447,997,580
IssuesEvent
2023-07-15 23:32:13
dkfans/keeperfx
https://api.github.com/repos/dkfans/keeperfx
closed
Wrong tooltip when hovering below the creature list
Type-Defect Priority-Low
![image](https://github.com/dkfans/keeperfx/assets/13840686/66325232-579c-4560-8d39-73c1fe1f058f) Make sure you have a short creature list, then hover your mouse above the scroll down button. It displays string 0, but should display string 201 instead.
1.0
Wrong tooltip when hovering below the creature list - ![image](https://github.com/dkfans/keeperfx/assets/13840686/66325232-579c-4560-8d39-73c1fe1f058f) Make sure you have a short creature list, then hover your mouse above the scroll down button. It displays string 0, but should display string 201 instead.
defect
wrong tooltip when hovering below the creature list make sure you have a short creature list then hover your mouse above the scroll down button it displays string but should display string instead
1
36,402
7,924,247,146
IssuesEvent
2018-07-05 16:18:17
NREL/EnergyPlus
https://api.github.com/repos/NREL/EnergyPlus
closed
Remove unnecessary warnings in an example file
Defect
Issue overview -------------- [EnergyPlus !12603]: Question about warnings in 8.7 example file. A user found warnings from an example file of AirflowNetwork_Simple_SmallOffice.idf using Output:Diagnostics, DisplayExtraWarnings. ** Warning ** GetAirflowNetworkInput: SurfaceAverageCalculation is entered for field = Wind Pressure Coefficient Type, but no roof surface is defined using an AirflowNetwork:MultiZone:Surface object. ** ~~~ ** Reconsider if this is your modeling intent. Simulation continues. ** Warning ** GetAirflowNetworkInput: SurfaceAverageCalculation is entered for field = Wind Pressure Coefficient Type. ** ~~~ ** The AirflowNetwork model provides wind pressure coefficients for 4 vertical exterior orientations and 1 horizontal roof. ** ~~~ ** There are only 2 exterior surface orientations defined in this input file using AirflowNetwork:MultiZone:Surface objects. ** ~~~ ** Reconsider if this is your modeling intent. Simulation continues. The example file should be enhanced to remove unnecessary warnings by adding more surface object. ### Details Some additional details for this issue (if relevant): - Platform (Operating system, version) - Version of EnergyPlus (if using an intermediate build, include SHA) - Helpdesk ticket number 12603 and 12623 ### Checklist Add to this list or remove from it as applicable. This is a simple templated set of guidelines. - [ ] Defect file added (list location of defect file here) - [ ] Ticket added to Pivotal for defect (development team task) - [ ] Pull request created (the pull request will have additional tasks related to reviewing changes that fix this defect)
1.0
Remove unnecessary warnings in an example file - Issue overview -------------- [EnergyPlus !12603]: Question about warnings in 8.7 example file. A user found warnings from an example file of AirflowNetwork_Simple_SmallOffice.idf using Output:Diagnostics, DisplayExtraWarnings. ** Warning ** GetAirflowNetworkInput: SurfaceAverageCalculation is entered for field = Wind Pressure Coefficient Type, but no roof surface is defined using an AirflowNetwork:MultiZone:Surface object. ** ~~~ ** Reconsider if this is your modeling intent. Simulation continues. ** Warning ** GetAirflowNetworkInput: SurfaceAverageCalculation is entered for field = Wind Pressure Coefficient Type. ** ~~~ ** The AirflowNetwork model provides wind pressure coefficients for 4 vertical exterior orientations and 1 horizontal roof. ** ~~~ ** There are only 2 exterior surface orientations defined in this input file using AirflowNetwork:MultiZone:Surface objects. ** ~~~ ** Reconsider if this is your modeling intent. Simulation continues. The example file should be enhanced to remove unnecessary warnings by adding more surface object. ### Details Some additional details for this issue (if relevant): - Platform (Operating system, version) - Version of EnergyPlus (if using an intermediate build, include SHA) - Helpdesk ticket number 12603 and 12623 ### Checklist Add to this list or remove from it as applicable. This is a simple templated set of guidelines. - [ ] Defect file added (list location of defect file here) - [ ] Ticket added to Pivotal for defect (development team task) - [ ] Pull request created (the pull request will have additional tasks related to reviewing changes that fix this defect)
defect
remove unnecessary warnings in an example file issue overview question about warnings in example file a user found warnings from an example file of airflownetwork simple smalloffice idf using output diagnostics displayextrawarnings warning getairflownetworkinput surfaceaveragecalculation is entered for field wind pressure coefficient type but no roof surface is defined using an airflownetwork multizone surface object reconsider if this is your modeling intent simulation continues warning getairflownetworkinput surfaceaveragecalculation is entered for field wind pressure coefficient type the airflownetwork model provides wind pressure coefficients for vertical exterior orientations and horizontal roof there are only exterior surface orientations defined in this input file using airflownetwork multizone surface objects reconsider if this is your modeling intent simulation continues the example file should be enhanced to remove unnecessary warnings by adding more surface object details some additional details for this issue if relevant platform operating system version version of energyplus if using an intermediate build include sha helpdesk ticket number and checklist add to this list or remove from it as applicable this is a simple templated set of guidelines defect file added list location of defect file here ticket added to pivotal for defect development team task pull request created the pull request will have additional tasks related to reviewing changes that fix this defect
1
285,596
21,526,029,537
IssuesEvent
2022-04-28 18:32:24
edgexfoundry/edgex-docs
https://api.github.com/repos/edgexfoundry/edgex-docs
closed
[App Services] Document New Batch MergeOnSend setting
documentation enhancement
<!--🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅 Oh hi there! 😄 To expedite issue processing please search open and closed issues before submitting a new one. Existing issues often contain information about workarounds, resolution, or progress updates. Please do not remove sections of this template when submitting your issue. If the section is not relevant to your issue, leave the section but enter "n/a" for not applicable. Note some sections are marked "REQUIRED" and must be provided. Never mark required sections "n/a". 🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅--> # 🚀 Feature Request ### Relevant Package [**REQUIRED**] App SDK's Batch function ### Description [**REQUIRED**] New `MergeOnSend` setting was added ### Describe the solution you'd like This new setting needs to be documented. ### Describe alternatives you've considered <!-- ✍️--> Have you considered any alternative solutions or workarounds?
1.0
[App Services] Document New Batch MergeOnSend setting - <!--🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅 Oh hi there! 😄 To expedite issue processing please search open and closed issues before submitting a new one. Existing issues often contain information about workarounds, resolution, or progress updates. Please do not remove sections of this template when submitting your issue. If the section is not relevant to your issue, leave the section but enter "n/a" for not applicable. Note some sections are marked "REQUIRED" and must be provided. Never mark required sections "n/a". 🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅--> # 🚀 Feature Request ### Relevant Package [**REQUIRED**] App SDK's Batch function ### Description [**REQUIRED**] New `MergeOnSend` setting was added ### Describe the solution you'd like This new setting needs to be documented. ### Describe alternatives you've considered <!-- ✍️--> Have you considered any alternative solutions or workarounds?
non_defect
document new batch mergeonsend setting 🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅 oh hi there 😄 to expedite issue processing please search open and closed issues before submitting a new one existing issues often contain information about workarounds resolution or progress updates please do not remove sections of this template when submitting your issue if the section is not relevant to your issue leave the section but enter n a for not applicable note some sections are marked required and must be provided never mark required sections n a 🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅 🚀 feature request relevant package app sdk s batch function description new mergeonsend setting was added describe the solution you d like this new setting needs to be documented describe alternatives you ve considered have you considered any alternative solutions or workarounds
0
61,221
3,141,854,655
IssuesEvent
2015-09-13 00:18:28
nvaccess/test_nvdaTracImport
https://api.github.com/repos/nvaccess/test_nvdaTracImport
closed
Javax swing GUI controls and text objects aren't rendered into speech!
bug priority:major
**Reported by goyette mike on 10 Sep 2008 05:42 UTC** I'm finishing a free online roleplaying game, like Dungeons & Dragons, for both sighted and blind children. I wrote two Java clients, one a straight GUI, and the other an applet. I followed the IBM guidelines for accessability, but your screen reader won't render ANY of my output into speech! This is a major issue, because it's at the heart of a free fun game program where both sighted and blind can interact, and it's for children, etc.... E-mail me, I'll send you my client code, but I'm telling you it's straightforward and follows the rules. I downloaded 0.6p2, and it works for everything else, but is strangely silent on my JTextBox, JEditBox, etc.... Please tell me I'm just violing some simple rule. I promise a response in 24 hours, but for now my headache requires sleep.... P.S. this is a multi-threaded client-server app where the client is pure Java 1.4.2 code but I compiled under 1.6.1, all Javax and Swing components.
1.0
Javax swing GUI controls and text objects aren't rendered into speech! - **Reported by goyette mike on 10 Sep 2008 05:42 UTC** I'm finishing a free online roleplaying game, like Dungeons & Dragons, for both sighted and blind children. I wrote two Java clients, one a straight GUI, and the other an applet. I followed the IBM guidelines for accessability, but your screen reader won't render ANY of my output into speech! This is a major issue, because it's at the heart of a free fun game program where both sighted and blind can interact, and it's for children, etc.... E-mail me, I'll send you my client code, but I'm telling you it's straightforward and follows the rules. I downloaded 0.6p2, and it works for everything else, but is strangely silent on my JTextBox, JEditBox, etc.... Please tell me I'm just violing some simple rule. I promise a response in 24 hours, but for now my headache requires sleep.... P.S. this is a multi-threaded client-server app where the client is pure Java 1.4.2 code but I compiled under 1.6.1, all Javax and Swing components.
non_defect
javax swing gui controls and text objects aren t rendered into speech reported by goyette mike on sep utc i m finishing a free online roleplaying game like dungeons dragons for both sighted and blind children i wrote two java clients one a straight gui and the other an applet i followed the ibm guidelines for accessability but your screen reader won t render any of my output into speech this is a major issue because it s at the heart of a free fun game program where both sighted and blind can interact and it s for children etc e mail me i ll send you my client code but i m telling you it s straightforward and follows the rules i downloaded and it works for everything else but is strangely silent on my jtextbox jeditbox etc please tell me i m just violing some simple rule i promise a response in hours but for now my headache requires sleep p s this is a multi threaded client server app where the client is pure java code but i compiled under all javax and swing components
0
58,393
16,522,635,748
IssuesEvent
2021-05-26 16:03:52
Questie/Questie
https://api.github.com/repos/Questie/Questie
opened
Questie/Plater interaction
Type - Defect
<!-- READ THIS FIRST Hello, thanks for taking the time to report a bug! Before you proceed, please verify that you're running the latest version of Questie. The easiest way to do this is via the Twitch client, but you can also download the latest version here: https://www.curseforge.com/wow/addons/questie Questie is one of the most popular Classic WoW addons, with over 22M downloads. However, like almost all WoW addons, it's built and maintained by a team of volunteers. The current Questie team is: * @AeroScripts / Aero#1357 (Discord) * @BreakBB / TheCrux#1702 (Discord) * @drejjmit / Drejjmit#8241 (Discord) * @Dyaxler / Dyaxler#0086 (Discord) * @gogo1951 / Gogo#0298 (Discord) If you'd like to help, please consider making a donation. You can do so here: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=aero1861%40gmail%2ecom&lc=CA&item_name=Questie%20Devs&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted You can also help as a tester, developer or translator, please join the Questie Discord here https://discord.gg/fYcQfv7 --> ## Bug description 21x Questie\Questie-6.3.12.lua:257: attempt to index field 'global' (a nil value) [string "@Questie\Questie-6.3.12.lua"]:257: in function `Debug' [string "@Questie\Modules\Tooltips\Tooltip.lua"]:97: in function `GetTooltip' [string "@Plater\Plater-Plater-v330-BCC.lua"]:8457: in function `IsQuestObjective' [string "@Plater\Plater-Plater-v330-BCC.lua"]:6891: in function `UpdatePlateFrame' [string "@Plater\Plater-Plater-v330-BCC.lua"]:3539: in function `func' [string "@Plater\Plater-Plater-v330-BCC.lua"]:3757: in function <Plater\Plater.lua:3753> Locals: self = <table> { SetDefaultModuleLibraries = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:367 TBC_BETA_BUILD_VERSION_SHORTHAND = "" Colorize = <function> defined @Questie\Questie.lua:190 Enable = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:294 RegisterChatCommand = <function> defined @Ace3\AceConsole-3.0\AceConsole-3.0.lua:85 GetClassColor = <function> defined @Questie\Questie.lua:220 EnableModule = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:332 modules = <table> { } GetModule = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:210 IterateEmbeds = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:442 IsClassic = false UnregisterComm = <function> defined @Ace3\CallbackHandler-1.0\CallbackHandler-1.0.lua:153 defaultModuleLibraries = <table> { } TimeLeft = <function> defined @Ace3\AceTimer-3.0\AceTimer-3.0.lua:172 Deserialize = <function> defined @Ace3\AceSerializer-3.0\AceSerializer-3.0.lua:246 UnregisterChatCommand = <function> defined @Ace3\AceConsole-3.0\AceConsole-3.0.lua:111 Warning = <function> defined @Questie\Questie.lua:250 ScheduleRepeatingTimer = <function> defined @Ace3\AceTimer-3.0\AceTimer-3.0.lua:129 CancelAllTimers = <function> defined @Ace3\AceTimer-3.0\AceTimer-3.0.lua:160 Printf = <function> defined @Ace3\AceConsole-3.0\AceConsole-3.0.lua:69 baseName = "Questie" SetDefaultModulePrototype = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:409 Debug = <function> defined @Questie\Questie.lua:256 Error = <function> defined @Questie\Questie.lua:246 HandleSlash = <function> defined @Questie\Questie.lua:186 name = "Questie" OnDisable = <function> defined @Questie\Questie.lua:182 IsEnabled = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:451 orderedModules = <table> { } ScheduleTimer = <function> defined @Ace3\AceTimer-3.0\AceTimer-3.0.lua:94 DisableModule = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:350 OnEnable = <function> defined @Questie\Questie.lua:178 OnUpdate = <function> defined @Questie\Questie.lua:174 OnInitialize = <function> defined @Questie\Questie.lua:116 UnregisterMessage = <function> defined @Ace3\CallbackHandler-1.0\CallbackHandler-1.0.lua:153 RegisterMessage = <function> defined @Ace3\CallbackHandler-1.0\CallbackHandler-1.0.lua:90 GetArgs = <function> defined @Ace3\AceConsole-3.0\AceConsole-3.0.lua:144 Print = <function> defined @Ace3\AceConsole-3.0\AceConsole-3.0.lua:54 RegisterBucketEvent = <function> defined @Ace3\AceBucket-3.0\AceBucket-3.0.lua:184 UnregisterAllBuckets = <function> defined @Ace3\AceBucket-3.0\AceBucket-3.0.lua:229 UnregisterBucket = <function> defined @Ace3\AceBucket-3.0\AceBucket-3.0.lua:206 RegisterBucketMessage = <function> defined @Ace3\AceBucket-3.0\AceBucket-3.0.lua:200 IsModule = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:468 db = <table> { } SetDefaultModuleState = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:387 SendCommMessage = <function> defined @Ace3\AceComm-3.0\AceComm-3.0.lua:87 UnregisterAllComm = <function> defined @Ace3\CallbackHandler-1.0\CallbackHandler-1.0.lua:174 SetEnabledState = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:424 Serialize = <function> defined @Ace3\AceSerializer-3.0\AceSerializer-3.0.lua:122 enabledState = true ## Screenshots <!-- If you can, add a screenshot to help explaining the bug. Simply drag and drop the image in this input field, no need to upload it to any other image platform. --> ## Questie version <!-- 6.3.12 -->
1.0
Questie/Plater interaction - <!-- READ THIS FIRST Hello, thanks for taking the time to report a bug! Before you proceed, please verify that you're running the latest version of Questie. The easiest way to do this is via the Twitch client, but you can also download the latest version here: https://www.curseforge.com/wow/addons/questie Questie is one of the most popular Classic WoW addons, with over 22M downloads. However, like almost all WoW addons, it's built and maintained by a team of volunteers. The current Questie team is: * @AeroScripts / Aero#1357 (Discord) * @BreakBB / TheCrux#1702 (Discord) * @drejjmit / Drejjmit#8241 (Discord) * @Dyaxler / Dyaxler#0086 (Discord) * @gogo1951 / Gogo#0298 (Discord) If you'd like to help, please consider making a donation. You can do so here: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=aero1861%40gmail%2ecom&lc=CA&item_name=Questie%20Devs&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted You can also help as a tester, developer or translator, please join the Questie Discord here https://discord.gg/fYcQfv7 --> ## Bug description 21x Questie\Questie-6.3.12.lua:257: attempt to index field 'global' (a nil value) [string "@Questie\Questie-6.3.12.lua"]:257: in function `Debug' [string "@Questie\Modules\Tooltips\Tooltip.lua"]:97: in function `GetTooltip' [string "@Plater\Plater-Plater-v330-BCC.lua"]:8457: in function `IsQuestObjective' [string "@Plater\Plater-Plater-v330-BCC.lua"]:6891: in function `UpdatePlateFrame' [string "@Plater\Plater-Plater-v330-BCC.lua"]:3539: in function `func' [string "@Plater\Plater-Plater-v330-BCC.lua"]:3757: in function <Plater\Plater.lua:3753> Locals: self = <table> { SetDefaultModuleLibraries = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:367 TBC_BETA_BUILD_VERSION_SHORTHAND = "" Colorize = <function> defined @Questie\Questie.lua:190 Enable = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:294 RegisterChatCommand = <function> defined @Ace3\AceConsole-3.0\AceConsole-3.0.lua:85 GetClassColor = <function> defined @Questie\Questie.lua:220 EnableModule = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:332 modules = <table> { } GetModule = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:210 IterateEmbeds = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:442 IsClassic = false UnregisterComm = <function> defined @Ace3\CallbackHandler-1.0\CallbackHandler-1.0.lua:153 defaultModuleLibraries = <table> { } TimeLeft = <function> defined @Ace3\AceTimer-3.0\AceTimer-3.0.lua:172 Deserialize = <function> defined @Ace3\AceSerializer-3.0\AceSerializer-3.0.lua:246 UnregisterChatCommand = <function> defined @Ace3\AceConsole-3.0\AceConsole-3.0.lua:111 Warning = <function> defined @Questie\Questie.lua:250 ScheduleRepeatingTimer = <function> defined @Ace3\AceTimer-3.0\AceTimer-3.0.lua:129 CancelAllTimers = <function> defined @Ace3\AceTimer-3.0\AceTimer-3.0.lua:160 Printf = <function> defined @Ace3\AceConsole-3.0\AceConsole-3.0.lua:69 baseName = "Questie" SetDefaultModulePrototype = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:409 Debug = <function> defined @Questie\Questie.lua:256 Error = <function> defined @Questie\Questie.lua:246 HandleSlash = <function> defined @Questie\Questie.lua:186 name = "Questie" OnDisable = <function> defined @Questie\Questie.lua:182 IsEnabled = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:451 orderedModules = <table> { } ScheduleTimer = <function> defined @Ace3\AceTimer-3.0\AceTimer-3.0.lua:94 DisableModule = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:350 OnEnable = <function> defined @Questie\Questie.lua:178 OnUpdate = <function> defined @Questie\Questie.lua:174 OnInitialize = <function> defined @Questie\Questie.lua:116 UnregisterMessage = <function> defined @Ace3\CallbackHandler-1.0\CallbackHandler-1.0.lua:153 RegisterMessage = <function> defined @Ace3\CallbackHandler-1.0\CallbackHandler-1.0.lua:90 GetArgs = <function> defined @Ace3\AceConsole-3.0\AceConsole-3.0.lua:144 Print = <function> defined @Ace3\AceConsole-3.0\AceConsole-3.0.lua:54 RegisterBucketEvent = <function> defined @Ace3\AceBucket-3.0\AceBucket-3.0.lua:184 UnregisterAllBuckets = <function> defined @Ace3\AceBucket-3.0\AceBucket-3.0.lua:229 UnregisterBucket = <function> defined @Ace3\AceBucket-3.0\AceBucket-3.0.lua:206 RegisterBucketMessage = <function> defined @Ace3\AceBucket-3.0\AceBucket-3.0.lua:200 IsModule = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:468 db = <table> { } SetDefaultModuleState = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:387 SendCommMessage = <function> defined @Ace3\AceComm-3.0\AceComm-3.0.lua:87 UnregisterAllComm = <function> defined @Ace3\CallbackHandler-1.0\CallbackHandler-1.0.lua:174 SetEnabledState = <function> defined @Questie\Libs\AceAddon-3.0\AceAddon-3.0.lua:424 Serialize = <function> defined @Ace3\AceSerializer-3.0\AceSerializer-3.0.lua:122 enabledState = true ## Screenshots <!-- If you can, add a screenshot to help explaining the bug. Simply drag and drop the image in this input field, no need to upload it to any other image platform. --> ## Questie version <!-- 6.3.12 -->
defect
questie plater interaction read this first hello thanks for taking the time to report a bug before you proceed please verify that you re running the latest version of questie the easiest way to do this is via the twitch client but you can also download the latest version here questie is one of the most popular classic wow addons with over downloads however like almost all wow addons it s built and maintained by a team of volunteers the current questie team is aeroscripts aero discord breakbb thecrux discord drejjmit drejjmit discord dyaxler dyaxler discord gogo discord if you d like to help please consider making a donation you can do so here you can also help as a tester developer or translator please join the questie discord here bug description questie questie lua attempt to index field global a nil value in function debug in function gettooltip in function isquestobjective in function updateplateframe in function func in function locals self setdefaultmodulelibraries defined questie libs aceaddon aceaddon lua tbc beta build version shorthand colorize defined questie questie lua enable defined questie libs aceaddon aceaddon lua registerchatcommand defined aceconsole aceconsole lua getclasscolor defined questie questie lua enablemodule defined questie libs aceaddon aceaddon lua modules getmodule defined questie libs aceaddon aceaddon lua iterateembeds defined questie libs aceaddon aceaddon lua isclassic false unregistercomm defined callbackhandler callbackhandler lua defaultmodulelibraries timeleft defined acetimer acetimer lua deserialize defined aceserializer aceserializer lua unregisterchatcommand defined aceconsole aceconsole lua warning defined questie questie lua schedulerepeatingtimer defined acetimer acetimer lua cancelalltimers defined acetimer acetimer lua printf defined aceconsole aceconsole lua basename questie setdefaultmoduleprototype defined questie libs aceaddon aceaddon lua debug defined questie questie lua error defined questie questie lua handleslash defined questie questie lua name questie ondisable defined questie questie lua isenabled defined questie libs aceaddon aceaddon lua orderedmodules scheduletimer defined acetimer acetimer lua disablemodule defined questie libs aceaddon aceaddon lua onenable defined questie questie lua onupdate defined questie questie lua oninitialize defined questie questie lua unregistermessage defined callbackhandler callbackhandler lua registermessage defined callbackhandler callbackhandler lua getargs defined aceconsole aceconsole lua print defined aceconsole aceconsole lua registerbucketevent defined acebucket acebucket lua unregisterallbuckets defined acebucket acebucket lua unregisterbucket defined acebucket acebucket lua registerbucketmessage defined acebucket acebucket lua ismodule defined questie libs aceaddon aceaddon lua db setdefaultmodulestate defined questie libs aceaddon aceaddon lua sendcommmessage defined acecomm acecomm lua unregisterallcomm defined callbackhandler callbackhandler lua setenabledstate defined questie libs aceaddon aceaddon lua serialize defined aceserializer aceserializer lua enabledstate true screenshots questie version
1
720,681
24,801,411,100
IssuesEvent
2022-10-24 22:09:14
AmplifyCreations/AmplifyShaderEditor-Feedback
https://api.github.com/repos/AmplifyCreations/AmplifyShaderEditor-Feedback
closed
v1.9.1 preview 1 - Default Function color should be orange
high priority
I think the function's default color should be orange as before. The new color blends in too much with the rest of the graph + orange for functions and switches related to functions makes sense. Before / After ![image](https://user-images.githubusercontent.com/33637574/197463416-5fc770dc-ccda-4839-b92b-940ae0d951f3.png) ![image](https://user-images.githubusercontent.com/33637574/197463432-e5d4ec46-fd6b-4fe7-abd3-e9ff670ecd85.png)
1.0
v1.9.1 preview 1 - Default Function color should be orange - I think the function's default color should be orange as before. The new color blends in too much with the rest of the graph + orange for functions and switches related to functions makes sense. Before / After ![image](https://user-images.githubusercontent.com/33637574/197463416-5fc770dc-ccda-4839-b92b-940ae0d951f3.png) ![image](https://user-images.githubusercontent.com/33637574/197463432-e5d4ec46-fd6b-4fe7-abd3-e9ff670ecd85.png)
non_defect
preview default function color should be orange i think the function s default color should be orange as before the new color blends in too much with the rest of the graph orange for functions and switches related to functions makes sense before after
0
28,562
5,291,313,144
IssuesEvent
2017-02-08 22:11:03
hasse69/rar2fs
https://api.github.com/repos/hasse69/rar2fs
closed
FreeBSD: Memory usage and mtime
Defect Priority-High
Hello! I have a pretty large rar archive that I need to scan from time to time for changes. Every time I do rar2fs will eat up all the RAM it can get its hands on and eventually, (anything from hours to weeks) depending on how much I use the files in the mount, rar2fs will crash. Taking a long time to shut itself down almost making the computer unusable in the meantime. I have been working around this problem by doing the scan, then unmounting and remounting rar2fs. The application making the scans does have the feature to check for new files automatically, but I believe it uses mtime to see what's new. So a feature like -relatime but for mtime would probably help a lot and limit the amount of scans needed. Mount options: rar2fs --seek-length=1 --iob-size=1 --hist-size=0 -o allow_other rar2fs v1.23.1 (DLL version 7) Copyright (C) 2009 Hans Beckerus FUSE library version: 2.9.5 mount_fusefs [fuse4bsd] version: 0.3.9-pre1 using FUSE kernel interface version 7.19 FreeNAS 9.10 (FreeBSD 10.3)
1.0
FreeBSD: Memory usage and mtime - Hello! I have a pretty large rar archive that I need to scan from time to time for changes. Every time I do rar2fs will eat up all the RAM it can get its hands on and eventually, (anything from hours to weeks) depending on how much I use the files in the mount, rar2fs will crash. Taking a long time to shut itself down almost making the computer unusable in the meantime. I have been working around this problem by doing the scan, then unmounting and remounting rar2fs. The application making the scans does have the feature to check for new files automatically, but I believe it uses mtime to see what's new. So a feature like -relatime but for mtime would probably help a lot and limit the amount of scans needed. Mount options: rar2fs --seek-length=1 --iob-size=1 --hist-size=0 -o allow_other rar2fs v1.23.1 (DLL version 7) Copyright (C) 2009 Hans Beckerus FUSE library version: 2.9.5 mount_fusefs [fuse4bsd] version: 0.3.9-pre1 using FUSE kernel interface version 7.19 FreeNAS 9.10 (FreeBSD 10.3)
defect
freebsd memory usage and mtime hello i have a pretty large rar archive that i need to scan from time to time for changes every time i do will eat up all the ram it can get its hands on and eventually anything from hours to weeks depending on how much i use the files in the mount will crash taking a long time to shut itself down almost making the computer unusable in the meantime i have been working around this problem by doing the scan then unmounting and remounting the application making the scans does have the feature to check for new files automatically but i believe it uses mtime to see what s new so a feature like relatime but for mtime would probably help a lot and limit the amount of scans needed mount options seek length iob size hist size o allow other dll version copyright c hans beckerus fuse library version mount fusefs version using fuse kernel interface version freenas freebsd
1
55,415
14,444,396,922
IssuesEvent
2020-12-07 21:10:46
department-of-veterans-affairs/va.gov-team
https://api.github.com/repos/department-of-veterans-affairs/va.gov-team
closed
CMS, sitewide 508-defect-2 [SCREENREADER, KEYBOARD, COGNITION]: Links MUST look like links
508-defect-2 508-issue-cognition 508-issue-semantic-markup 508/Accessibility cms dt-find-va-form planned-work sitewide triage vsa vsa-decision-tools
# [508-defect-2](https://github.com/department-of-veterans-affairs/va.gov-team/blob/master/platform/accessibility/guidance/defect-severity-rubric.md#508-defect-2) ```diff ! Team affected: VSA Public Websites; Project: Find Forms MVP ``` > **Please note:** This is an issue in the VSA benefit hubs CMS templates, and the responsibility of the front-end team. **Feedback framework** - **❗️ Must** for if the feedback must be applied - **⚠️Should** if the feedback is best practice - **✔️ Consider** for suggestions/enhancements ## Description > Previously documented in https://github.com/department-of-veterans-affairs/va.gov-team/issues/6507; also documented in https://github.com/department-of-veterans-affairs/va.gov-team/issues/8252; team is working on in https://github.com/department-of-veterans-affairs/va.gov-team/issues/8135 This is the same issue documented in https://github.com/department-of-veterans-affairs/va.gov-team/issues/6507. The sentence text **MUST** not be included in the focusable link. The screen reader reads the heading and the paragraph all together in one continuous line, since the heading doesn't have (and shouldn't) punctuation. In JAWS, the sentences are read out as links, so for low-vision users there will be a cognitive disconnect because they don't see any visual hint of a link but hear a link. ![Screen Shot 2020-04-21 at 8 20 22 PM](https://user-images.githubusercontent.com/57469/79927377-8dff9500-840d-11ea-896c-310d9adb86b9.png) ## Point of Contact **VFS Point of Contact:** Jennifer ## WCAG or Vendor Guidance (optional) * [WebAIM Links and hypertext](https://webaim.org/techniques/hypertext/link_text) * [WCAG 2.0 - Failure of Success Criterion 1.4.1 due to creating links that are not visually evident without color vision](https://www.w3.org/TR/WCAG20-TECHS/F73.html) * [WCAG 2.0 AA SC 3.2.4 - Consistent Identification: Components that have the same functionality within a set of Web pages are identified consistently.](https://www.w3.org/TR/UNDERSTANDING-WCAG20/consistent-behavior-consistent-functionality.html) * [WUGHCAG 3.2.4 - Plain language version of the above](https://www.wuhcag.com/consistent-identification/) * [HTML5 Accessibility: aria-hidden and role=”presentation”](http://john.foliot.ca/aria-hidden/)
1.0
CMS, sitewide 508-defect-2 [SCREENREADER, KEYBOARD, COGNITION]: Links MUST look like links - # [508-defect-2](https://github.com/department-of-veterans-affairs/va.gov-team/blob/master/platform/accessibility/guidance/defect-severity-rubric.md#508-defect-2) ```diff ! Team affected: VSA Public Websites; Project: Find Forms MVP ``` > **Please note:** This is an issue in the VSA benefit hubs CMS templates, and the responsibility of the front-end team. **Feedback framework** - **❗️ Must** for if the feedback must be applied - **⚠️Should** if the feedback is best practice - **✔️ Consider** for suggestions/enhancements ## Description > Previously documented in https://github.com/department-of-veterans-affairs/va.gov-team/issues/6507; also documented in https://github.com/department-of-veterans-affairs/va.gov-team/issues/8252; team is working on in https://github.com/department-of-veterans-affairs/va.gov-team/issues/8135 This is the same issue documented in https://github.com/department-of-veterans-affairs/va.gov-team/issues/6507. The sentence text **MUST** not be included in the focusable link. The screen reader reads the heading and the paragraph all together in one continuous line, since the heading doesn't have (and shouldn't) punctuation. In JAWS, the sentences are read out as links, so for low-vision users there will be a cognitive disconnect because they don't see any visual hint of a link but hear a link. ![Screen Shot 2020-04-21 at 8 20 22 PM](https://user-images.githubusercontent.com/57469/79927377-8dff9500-840d-11ea-896c-310d9adb86b9.png) ## Point of Contact **VFS Point of Contact:** Jennifer ## WCAG or Vendor Guidance (optional) * [WebAIM Links and hypertext](https://webaim.org/techniques/hypertext/link_text) * [WCAG 2.0 - Failure of Success Criterion 1.4.1 due to creating links that are not visually evident without color vision](https://www.w3.org/TR/WCAG20-TECHS/F73.html) * [WCAG 2.0 AA SC 3.2.4 - Consistent Identification: Components that have the same functionality within a set of Web pages are identified consistently.](https://www.w3.org/TR/UNDERSTANDING-WCAG20/consistent-behavior-consistent-functionality.html) * [WUGHCAG 3.2.4 - Plain language version of the above](https://www.wuhcag.com/consistent-identification/) * [HTML5 Accessibility: aria-hidden and role=”presentation”](http://john.foliot.ca/aria-hidden/)
defect
cms sitewide defect links must look like links diff team affected vsa public websites project find forms mvp please note this is an issue in the vsa benefit hubs cms templates and the responsibility of the front end team feedback framework ❗️ must for if the feedback must be applied ⚠️should if the feedback is best practice ✔️ consider for suggestions enhancements description previously documented in also documented in team is working on in this is the same issue documented in the sentence text must not be included in the focusable link the screen reader reads the heading and the paragraph all together in one continuous line since the heading doesn t have and shouldn t punctuation in jaws the sentences are read out as links so for low vision users there will be a cognitive disconnect because they don t see any visual hint of a link but hear a link point of contact vfs point of contact jennifer wcag or vendor guidance optional
1
133
2,513,806,041
IssuesEvent
2015-01-15 03:22:20
cakephp/cakephp
https://api.github.com/repos/cakephp/cakephp
closed
2.x - Problem saving correct value for set-field
Defect models
I have a MySQL table with several fields, one of them has the type "set('1', '2', '3')". In order to update a row i would do something like: $this->Example->save(array('id' => 123, 'my_field' => '3'), false); Up to 2.5.5 this worked as expected and my_field had the value '3' after the update. Since 2.5.6 the value '3' passed to the save() method gets converted from string to integer during the save-operation, which results in the value '1,2' in the database. Removing the 3 lines added to lib/Cake/Model/Datasource/Database/Mysql.php in this commit ( https://github.com/cakephp/cakephp/commit/579b16d90b45e9994ef4394bba391830791cc982 ) restores the old behavior, but maybe it's an issue worth discussing?
1.0
2.x - Problem saving correct value for set-field - I have a MySQL table with several fields, one of them has the type "set('1', '2', '3')". In order to update a row i would do something like: $this->Example->save(array('id' => 123, 'my_field' => '3'), false); Up to 2.5.5 this worked as expected and my_field had the value '3' after the update. Since 2.5.6 the value '3' passed to the save() method gets converted from string to integer during the save-operation, which results in the value '1,2' in the database. Removing the 3 lines added to lib/Cake/Model/Datasource/Database/Mysql.php in this commit ( https://github.com/cakephp/cakephp/commit/579b16d90b45e9994ef4394bba391830791cc982 ) restores the old behavior, but maybe it's an issue worth discussing?
defect
x problem saving correct value for set field i have a mysql table with several fields one of them has the type set in order to update a row i would do something like this example save array id my field false up to this worked as expected and my field had the value after the update since the value passed to the save method gets converted from string to integer during the save operation which results in the value in the database removing the lines added to lib cake model datasource database mysql php in this commit restores the old behavior but maybe it s an issue worth discussing
1
137,175
20,085,695,593
IssuesEvent
2022-02-05 00:36:18
DnD-Montreal/session-tome
https://api.github.com/repos/DnD-Montreal/session-tome
opened
Campaign Index Screen
task design
## Description <!-- Provide a general summary of the feature in the title above --> Users should be able to see a list of all the campaigns they are registered in. This can be a table that lists the title of the campaign as well as the character, if any, they are using in the campaign. They should also be able to see the details of the campaign. This could include the entries that were generated as part of the campaign, among other things like campaign title, characters, etc... ## Possible Implementation <!-- If you have an idea of how to implement the issue, jot it down here - this section is optional --> N/a ## Out of scope <!-- The portion of this story that does not fall under the responsibility of the application --> <!-- eg: Entering the organization credentials into the system. --> N/a ## Requirements / Restrictions <!-- Describe, if any, restrictions that exist for this project --> N/a
1.0
Campaign Index Screen - ## Description <!-- Provide a general summary of the feature in the title above --> Users should be able to see a list of all the campaigns they are registered in. This can be a table that lists the title of the campaign as well as the character, if any, they are using in the campaign. They should also be able to see the details of the campaign. This could include the entries that were generated as part of the campaign, among other things like campaign title, characters, etc... ## Possible Implementation <!-- If you have an idea of how to implement the issue, jot it down here - this section is optional --> N/a ## Out of scope <!-- The portion of this story that does not fall under the responsibility of the application --> <!-- eg: Entering the organization credentials into the system. --> N/a ## Requirements / Restrictions <!-- Describe, if any, restrictions that exist for this project --> N/a
non_defect
campaign index screen description users should be able to see a list of all the campaigns they are registered in this can be a table that lists the title of the campaign as well as the character if any they are using in the campaign they should also be able to see the details of the campaign this could include the entries that were generated as part of the campaign among other things like campaign title characters etc possible implementation n a out of scope n a requirements restrictions n a
0
56,151
14,949,414,900
IssuesEvent
2021-01-26 11:30:04
openzfs/zfs
https://api.github.com/repos/openzfs/zfs
closed
ZFS Native Encryption appears very slow
Status: Triage Needed Type: Defect
### System information Type | Version/Name --- | --- Distribution Name | debian Distribution Version | buster / bullseye (testing) Linux Kernel | 4.19.0-13-amd64 / 5.10.0-1-amd64 Architecture | x86_64 ZFS Version | 0.8.6-1~bpo10+1 / 2.0.1-2 SPL Version | ??? / 2.0.1-2 ### Describe the problem you're observing ZFS native encryption is very slow compared to non-encrypted datasets and ZFS on LUKS. It shouldn't be a CPU throughput problem, as both cryptsetup and Openssl reach very high speeds during benchmarks. I've performed most tests with debian stable (buster) and ZFS 0.8.6-1. In the end I updated to debian testing (bullseye) to confirm with ZFS 2.0.1-2 (last test), which has the same problem. ### Describe how to reproduce the problem Setup: * 4×8TB hdds, raidz2, 120GB SSD cache * on zfs-0.8.6 L2ARC is dropped with export/import * on zfs-2.0.1 L2ARC isn't used for sequential reads (which I tested) * no compression, no dedup * between read and write test zpool export and import (drop caches) * zfs uses aesni (`perf top` shows kernel `aes_aesni_encrypt` at 60% when running `dd` on encrypted datasets) * CPU: Intel(R) Atom(TM) CPU C3538 @ 2.10GHz * performance tested with * write: `dd if=/dev/zero of=/foo/foo bs=1M count=20k` * drop caches between write / read test: `zpool export tank && zpool import tank (-l)` * read: `dd if=/foo/foo of=/dev/null bs=1M` #### no encryption ``` # zfs create -o mountpoint=/foo tank/foo write: 21474836480 bytes (21 GB, 20 GiB) copied, 84.4587 s, 254 MB/s read: 21474836480 bytes (21 GB, 20 GiB) copied, 73.5051 s, 292 MB/s ``` #### zpool in luks (aes-xts-plain64 512b key) ``` # dd if=/dev/urandom of=key bs=4096 count=1 # cryptsetup luksFormat -d key /dev/sd... # zpool create -O mountpoint=none tank raidz2 /dev/mapper/hdd* cache /dev/mapper/cache # zfs create -o mountpoint=/foo tank/foo write: 21474836480 bytes (21 GB, 20 GiB) copied, 86.9323 s, 247 MB/s read: 21474836480 bytes (21 GB, 20 GiB) copied, 64.4583 s, 333 MB/s ``` #### zfs native encryption dataset creation commands: ``` # zpool create -O mountpoint=none tank raidz2 <hdds...> cache <ssd> # zfs create -o encryption=aes-... -o mountpoint=/foo -o keyformat=passphrase -o pbkdf2iters=10000000 tank/foo ``` aes-256-gcm: ``` write: 21474836480 bytes (21 GB, 20 GiB) copied, 222.886 s, 96.3 MB/s read: 21474836480 bytes (21 GB, 20 GiB) copied, 230.363 s, 93.2 MB/s ``` aes-128-gcm: ``` write: 21474836480 bytes (21 GB, 20 GiB) copied, 218.149 s, 98.4 MB/s read: 21474836480 bytes (21 GB, 20 GiB) copied, 226.480 s, 94.8 MB/s ``` aes-128-ccm: ``` write: 21474836480 bytes (21 GB, 20 GiB) copied, 226.67 s, 94.7 MB/s read: 21474836480 bytes (21 GB, 20 GiB) copied, 309.31 s, 69.4 MB/s ``` aes-256-ccm: ``` write: 21474836480 bytes (21 GB, 20 GiB) copied, 241.022 s, 89.1 MB/s read: 21474836480 bytes (21 GB, 20 GiB) copied, 268.546 s, 80.0 MB/s ``` aes-256-gcm on ZFS 2.0.1-2 (zfs-2.0.1-2, zfs-kmod-2.0.1-2) after updating from debian buster to bullseye: ``` write: 21474836480 bytes (21 GB, 20 GiB) copied, 226.848 s, 94.7 MB/s read: 21474836480 bytes (21 GB, 20 GiB) copied, 615.195 s, 34.9 MB/s ``` #### cryptsetup benchmark ``` # cryptsetup benchmark Algorithm | Key | Encryption | Decryption aes-cbc 128b 437.3 MiB/s 941.4 MiB/s serpent-cbc 128b 42.1 MiB/s 96.4 MiB/s twofish-cbc 128b 87.0 MiB/s 100.3 MiB/s aes-cbc 256b 329.3 MiB/s 768.9 MiB/s serpent-cbc 256b 42.1 MiB/s 96.0 MiB/s twofish-cbc 256b 86.9 MiB/s 100.0 MiB/s aes-xts 256b 673.9 MiB/s 683.5 MiB/s serpent-xts 256b 92.0 MiB/s 91.6 MiB/s twofish-xts 256b 95.1 MiB/s 95.3 MiB/s aes-xts 512b 580.1 MiB/s 576.6 MiB/s serpent-xts 512b 92.3 MiB/s 91.7 MiB/s twofish-xts 512b 95.2 MiB/s 95.5 MiB/s ``` #### openssl speed (aesni) ``` # openssl speed -elapsed -evp aes-128-gcm type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes 16384 bytes aes-128-gcm 166390.27k 426037.03k 705026.65k 841382.23k 872259.58k 873578.50k # openssl speed -elapsed -multi 4 -evp aes-128-gcm type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes 16384 bytes evp 663211.95k 1701381.89k 2814948.35k 3357190.14k 3522813.95k 3538889.39k ``` #### openssl speed (software) ``` # OPENSSL_ia32cap="~0x200000200000000" openssl speed -elapsed -evp aes-128-gcm type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes 16384 bytes aes-128-gcm 49673.40k 65665.94k 71541.16k 73072.98k 73708.89k 73777.15k # OPENSSL_ia32cap="~0x200000200000000" openssl speed -elapsed --multi 4 -evp aes-128-gcm type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes 16384 bytes evp 199244.69k 262287.83k 285695.32k 291686.74k 294166.53k 294655.32k ```
1.0
ZFS Native Encryption appears very slow - ### System information Type | Version/Name --- | --- Distribution Name | debian Distribution Version | buster / bullseye (testing) Linux Kernel | 4.19.0-13-amd64 / 5.10.0-1-amd64 Architecture | x86_64 ZFS Version | 0.8.6-1~bpo10+1 / 2.0.1-2 SPL Version | ??? / 2.0.1-2 ### Describe the problem you're observing ZFS native encryption is very slow compared to non-encrypted datasets and ZFS on LUKS. It shouldn't be a CPU throughput problem, as both cryptsetup and Openssl reach very high speeds during benchmarks. I've performed most tests with debian stable (buster) and ZFS 0.8.6-1. In the end I updated to debian testing (bullseye) to confirm with ZFS 2.0.1-2 (last test), which has the same problem. ### Describe how to reproduce the problem Setup: * 4×8TB hdds, raidz2, 120GB SSD cache * on zfs-0.8.6 L2ARC is dropped with export/import * on zfs-2.0.1 L2ARC isn't used for sequential reads (which I tested) * no compression, no dedup * between read and write test zpool export and import (drop caches) * zfs uses aesni (`perf top` shows kernel `aes_aesni_encrypt` at 60% when running `dd` on encrypted datasets) * CPU: Intel(R) Atom(TM) CPU C3538 @ 2.10GHz * performance tested with * write: `dd if=/dev/zero of=/foo/foo bs=1M count=20k` * drop caches between write / read test: `zpool export tank && zpool import tank (-l)` * read: `dd if=/foo/foo of=/dev/null bs=1M` #### no encryption ``` # zfs create -o mountpoint=/foo tank/foo write: 21474836480 bytes (21 GB, 20 GiB) copied, 84.4587 s, 254 MB/s read: 21474836480 bytes (21 GB, 20 GiB) copied, 73.5051 s, 292 MB/s ``` #### zpool in luks (aes-xts-plain64 512b key) ``` # dd if=/dev/urandom of=key bs=4096 count=1 # cryptsetup luksFormat -d key /dev/sd... # zpool create -O mountpoint=none tank raidz2 /dev/mapper/hdd* cache /dev/mapper/cache # zfs create -o mountpoint=/foo tank/foo write: 21474836480 bytes (21 GB, 20 GiB) copied, 86.9323 s, 247 MB/s read: 21474836480 bytes (21 GB, 20 GiB) copied, 64.4583 s, 333 MB/s ``` #### zfs native encryption dataset creation commands: ``` # zpool create -O mountpoint=none tank raidz2 <hdds...> cache <ssd> # zfs create -o encryption=aes-... -o mountpoint=/foo -o keyformat=passphrase -o pbkdf2iters=10000000 tank/foo ``` aes-256-gcm: ``` write: 21474836480 bytes (21 GB, 20 GiB) copied, 222.886 s, 96.3 MB/s read: 21474836480 bytes (21 GB, 20 GiB) copied, 230.363 s, 93.2 MB/s ``` aes-128-gcm: ``` write: 21474836480 bytes (21 GB, 20 GiB) copied, 218.149 s, 98.4 MB/s read: 21474836480 bytes (21 GB, 20 GiB) copied, 226.480 s, 94.8 MB/s ``` aes-128-ccm: ``` write: 21474836480 bytes (21 GB, 20 GiB) copied, 226.67 s, 94.7 MB/s read: 21474836480 bytes (21 GB, 20 GiB) copied, 309.31 s, 69.4 MB/s ``` aes-256-ccm: ``` write: 21474836480 bytes (21 GB, 20 GiB) copied, 241.022 s, 89.1 MB/s read: 21474836480 bytes (21 GB, 20 GiB) copied, 268.546 s, 80.0 MB/s ``` aes-256-gcm on ZFS 2.0.1-2 (zfs-2.0.1-2, zfs-kmod-2.0.1-2) after updating from debian buster to bullseye: ``` write: 21474836480 bytes (21 GB, 20 GiB) copied, 226.848 s, 94.7 MB/s read: 21474836480 bytes (21 GB, 20 GiB) copied, 615.195 s, 34.9 MB/s ``` #### cryptsetup benchmark ``` # cryptsetup benchmark Algorithm | Key | Encryption | Decryption aes-cbc 128b 437.3 MiB/s 941.4 MiB/s serpent-cbc 128b 42.1 MiB/s 96.4 MiB/s twofish-cbc 128b 87.0 MiB/s 100.3 MiB/s aes-cbc 256b 329.3 MiB/s 768.9 MiB/s serpent-cbc 256b 42.1 MiB/s 96.0 MiB/s twofish-cbc 256b 86.9 MiB/s 100.0 MiB/s aes-xts 256b 673.9 MiB/s 683.5 MiB/s serpent-xts 256b 92.0 MiB/s 91.6 MiB/s twofish-xts 256b 95.1 MiB/s 95.3 MiB/s aes-xts 512b 580.1 MiB/s 576.6 MiB/s serpent-xts 512b 92.3 MiB/s 91.7 MiB/s twofish-xts 512b 95.2 MiB/s 95.5 MiB/s ``` #### openssl speed (aesni) ``` # openssl speed -elapsed -evp aes-128-gcm type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes 16384 bytes aes-128-gcm 166390.27k 426037.03k 705026.65k 841382.23k 872259.58k 873578.50k # openssl speed -elapsed -multi 4 -evp aes-128-gcm type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes 16384 bytes evp 663211.95k 1701381.89k 2814948.35k 3357190.14k 3522813.95k 3538889.39k ``` #### openssl speed (software) ``` # OPENSSL_ia32cap="~0x200000200000000" openssl speed -elapsed -evp aes-128-gcm type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes 16384 bytes aes-128-gcm 49673.40k 65665.94k 71541.16k 73072.98k 73708.89k 73777.15k # OPENSSL_ia32cap="~0x200000200000000" openssl speed -elapsed --multi 4 -evp aes-128-gcm type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes 16384 bytes evp 199244.69k 262287.83k 285695.32k 291686.74k 294166.53k 294655.32k ```
defect
zfs native encryption appears very slow system information type version name distribution name debian distribution version buster bullseye testing linux kernel architecture zfs version spl version describe the problem you re observing zfs native encryption is very slow compared to non encrypted datasets and zfs on luks it shouldn t be a cpu throughput problem as both cryptsetup and openssl reach very high speeds during benchmarks i ve performed most tests with debian stable buster and zfs in the end i updated to debian testing bullseye to confirm with zfs last test which has the same problem describe how to reproduce the problem setup × hdds ssd cache on zfs is dropped with export import on zfs isn t used for sequential reads which i tested no compression no dedup between read and write test zpool export and import drop caches zfs uses aesni perf top shows kernel aes aesni encrypt at when running dd on encrypted datasets cpu intel r atom tm cpu performance tested with write dd if dev zero of foo foo bs count drop caches between write read test zpool export tank zpool import tank l read dd if foo foo of dev null bs no encryption zfs create o mountpoint foo tank foo write bytes gb gib copied s mb s read bytes gb gib copied s mb s zpool in luks aes xts key dd if dev urandom of key bs count cryptsetup luksformat d key dev sd zpool create o mountpoint none tank dev mapper hdd cache dev mapper cache zfs create o mountpoint foo tank foo write bytes gb gib copied s mb s read bytes gb gib copied s mb s zfs native encryption dataset creation commands zpool create o mountpoint none tank cache zfs create o encryption aes o mountpoint foo o keyformat passphrase o tank foo aes gcm write bytes gb gib copied s mb s read bytes gb gib copied s mb s aes gcm write bytes gb gib copied s mb s read bytes gb gib copied s mb s aes ccm write bytes gb gib copied s mb s read bytes gb gib copied s mb s aes ccm write bytes gb gib copied s mb s read bytes gb gib copied s mb s aes gcm on zfs zfs zfs kmod after updating from debian buster to bullseye write bytes gb gib copied s mb s read bytes gb gib copied s mb s cryptsetup benchmark cryptsetup benchmark algorithm key encryption decryption aes cbc mib s mib s serpent cbc mib s mib s twofish cbc mib s mib s aes cbc mib s mib s serpent cbc mib s mib s twofish cbc mib s mib s aes xts mib s mib s serpent xts mib s mib s twofish xts mib s mib s aes xts mib s mib s serpent xts mib s mib s twofish xts mib s mib s openssl speed aesni openssl speed elapsed evp aes gcm type bytes bytes bytes bytes bytes bytes aes gcm openssl speed elapsed multi evp aes gcm type bytes bytes bytes bytes bytes bytes evp openssl speed software openssl openssl speed elapsed evp aes gcm type bytes bytes bytes bytes bytes bytes aes gcm openssl openssl speed elapsed multi evp aes gcm type bytes bytes bytes bytes bytes bytes evp
1
63,718
17,869,424,502
IssuesEvent
2021-09-06 13:37:16
matrix-org/synapse
https://api.github.com/repos/matrix-org/synapse
closed
can't create rooms with with an alias when createRoom is on a worker
S-Minor T-Defect
### Description Hello, i can not create new rooms with the new generic_worker location `^/_matrix/client/(api/v1|r0|unstable)/createRoom$`. ### Steps to reproduce - add the new location to the reserve proxy config: https://git.envs.net/envs/matrix-conf/src/branch/master/etc/nginx/include.d/generic_worker.conf#L145-L149 ### Version information - **Homeserver**: envs.net - **Version**: 1.41.0 - **Install method**: apt - **Platform**: Debian 11 / VM ### Log: ``` 2021-08-28 18:31:05,066 - synapse.http.server - 93 - ERROR - POST-192338 - Failed handle request via 'RoomCreateRestServlet': <XForwardedForRequest at 0x7f907639c550 method='POST' uri='/_matrix/client/r0/createRoom' clientproto='HTTP/1.0' site=8513> Traceback (most recent call last): File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/synapse/http/server.py", line 258, in _async_render_wrapper callback_return = await self._async_render(request) File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/synapse/http/server.py", line 446, in _async_render callback_return = await raw_callback_return File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/synapse/rest/client/room.py", line 84, in on_POST info, _ = await self._room_creation_handler.create_room( File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/synapse/handlers/room.py", line 726, in create_room await directory_handler.create_association( File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/synapse/handlers/directory.py", line 162, in create_association await self._create_association(room_alias, room_id, servers, creator=user_id) File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/synapse/handlers/directory.py", line 88, in _create_association await self.store.create_room_alias_association( AttributeError: 'GenericWorkerSlavedStore' object has no attribute 'create_room_alias_association' ```
1.0
can't create rooms with with an alias when createRoom is on a worker - ### Description Hello, i can not create new rooms with the new generic_worker location `^/_matrix/client/(api/v1|r0|unstable)/createRoom$`. ### Steps to reproduce - add the new location to the reserve proxy config: https://git.envs.net/envs/matrix-conf/src/branch/master/etc/nginx/include.d/generic_worker.conf#L145-L149 ### Version information - **Homeserver**: envs.net - **Version**: 1.41.0 - **Install method**: apt - **Platform**: Debian 11 / VM ### Log: ``` 2021-08-28 18:31:05,066 - synapse.http.server - 93 - ERROR - POST-192338 - Failed handle request via 'RoomCreateRestServlet': <XForwardedForRequest at 0x7f907639c550 method='POST' uri='/_matrix/client/r0/createRoom' clientproto='HTTP/1.0' site=8513> Traceback (most recent call last): File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/synapse/http/server.py", line 258, in _async_render_wrapper callback_return = await self._async_render(request) File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/synapse/http/server.py", line 446, in _async_render callback_return = await raw_callback_return File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/synapse/rest/client/room.py", line 84, in on_POST info, _ = await self._room_creation_handler.create_room( File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/synapse/handlers/room.py", line 726, in create_room await directory_handler.create_association( File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/synapse/handlers/directory.py", line 162, in create_association await self._create_association(room_alias, room_id, servers, creator=user_id) File "/opt/venvs/matrix-synapse/lib/python3.9/site-packages/synapse/handlers/directory.py", line 88, in _create_association await self.store.create_room_alias_association( AttributeError: 'GenericWorkerSlavedStore' object has no attribute 'create_room_alias_association' ```
defect
can t create rooms with with an alias when createroom is on a worker description hello i can not create new rooms with the new generic worker location matrix client api unstable createroom steps to reproduce add the new location to the reserve proxy config version information homeserver envs net version install method apt platform debian vm log synapse http server error post failed handle request via roomcreaterestservlet traceback most recent call last file opt venvs matrix synapse lib site packages synapse http server py line in async render wrapper callback return await self async render request file opt venvs matrix synapse lib site packages synapse http server py line in async render callback return await raw callback return file opt venvs matrix synapse lib site packages synapse rest client room py line in on post info await self room creation handler create room file opt venvs matrix synapse lib site packages synapse handlers room py line in create room await directory handler create association file opt venvs matrix synapse lib site packages synapse handlers directory py line in create association await self create association room alias room id servers creator user id file opt venvs matrix synapse lib site packages synapse handlers directory py line in create association await self store create room alias association attributeerror genericworkerslavedstore object has no attribute create room alias association
1
39,459
9,466,248,723
IssuesEvent
2019-04-18 03:31:35
line/armeria
https://api.github.com/repos/line/armeria
opened
'An exceptionCaught() event was fired, and it reached at the tail of the pipeline.' warning log
defect
It seems like it is still possible to get an exception while `HttpServerHandler` is absent in the pipeline. It is a minor problem, though, because the connection will be cleaned up properly by Netty. ``` An exceptionCaught() event was fired, and it reached at the tail of the pipeline. It usually means the last handler in the pipeline did not handle the exception. io.netty.channel.unix.Errors$NativeIoException: syscall:read(..) failed: Connection reset by peer at io.netty.channel.unix.FileDescriptor.readAddress(..)(Unknown Source) ```
1.0
'An exceptionCaught() event was fired, and it reached at the tail of the pipeline.' warning log - It seems like it is still possible to get an exception while `HttpServerHandler` is absent in the pipeline. It is a minor problem, though, because the connection will be cleaned up properly by Netty. ``` An exceptionCaught() event was fired, and it reached at the tail of the pipeline. It usually means the last handler in the pipeline did not handle the exception. io.netty.channel.unix.Errors$NativeIoException: syscall:read(..) failed: Connection reset by peer at io.netty.channel.unix.FileDescriptor.readAddress(..)(Unknown Source) ```
defect
an exceptioncaught event was fired and it reached at the tail of the pipeline warning log it seems like it is still possible to get an exception while httpserverhandler is absent in the pipeline it is a minor problem though because the connection will be cleaned up properly by netty an exceptioncaught event was fired and it reached at the tail of the pipeline it usually means the last handler in the pipeline did not handle the exception io netty channel unix errors nativeioexception syscall read failed connection reset by peer at io netty channel unix filedescriptor readaddress unknown source
1
28,196
5,218,156,107
IssuesEvent
2017-01-26 15:49:14
buildo/react-components
https://api.github.com/repos/buildo/react-components
opened
Dropdown: should not apply hover style on disabled options
defect
## description When hovering on a disabled option, style (background and color) should not change ## how to reproduce - add an option with `disabled: true` - hover on it => background changes ## specs - add a `:not(.is-disabled)` selector in addition to `:hover` ## misc {optional: other useful info}
1.0
Dropdown: should not apply hover style on disabled options - ## description When hovering on a disabled option, style (background and color) should not change ## how to reproduce - add an option with `disabled: true` - hover on it => background changes ## specs - add a `:not(.is-disabled)` selector in addition to `:hover` ## misc {optional: other useful info}
defect
dropdown should not apply hover style on disabled options description when hovering on a disabled option style background and color should not change how to reproduce add an option with disabled true hover on it background changes specs add a not is disabled selector in addition to hover misc optional other useful info
1
481,523
13,888,218,984
IssuesEvent
2020-10-19 05:51:31
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
addons.mozilla.org - desktop site instead of mobile site
browser-fenix engine-gecko ml-needsdiagnosis-false ml-probability-high priority-important
<!-- @browser: Firefox Mobile 83.0 --> <!-- @ua_header: Mozilla/5.0 (Android 10; Mobile; rv:83.0) Gecko/83.0 Firefox/83.0 --> <!-- @reported_with: android-components-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/60085 --> <!-- @extra_labels: browser-fenix --> **URL**: https://addons.mozilla.org/ru/android/addon/proxy-switcher-webext/ **Browser / Version**: Firefox Mobile 83.0 **Operating System**: Android **Tested Another Browser**: Yes Opera **Problem type**: Desktop site instead of mobile site **Description**: Desktop site instead of mobile site **Steps to Reproduce**: <details> <summary>View the screenshot</summary> <img alt="Screenshot" src="https://webcompat.com/uploads/2020/10/8c03fd36-30ed-4afd-9fa0-34d3e28bf880.jpeg"> </details> <details> <summary>Browser Configuration</summary> <ul> <li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20201016094031</li><li>channel: nightly</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li> </ul> </details> [View console log messages](https://webcompat.com/console_logs/2020/10/4fc2aa29-6c48-48bf-b015-48ab8d0ce2de) _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
addons.mozilla.org - desktop site instead of mobile site - <!-- @browser: Firefox Mobile 83.0 --> <!-- @ua_header: Mozilla/5.0 (Android 10; Mobile; rv:83.0) Gecko/83.0 Firefox/83.0 --> <!-- @reported_with: android-components-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/60085 --> <!-- @extra_labels: browser-fenix --> **URL**: https://addons.mozilla.org/ru/android/addon/proxy-switcher-webext/ **Browser / Version**: Firefox Mobile 83.0 **Operating System**: Android **Tested Another Browser**: Yes Opera **Problem type**: Desktop site instead of mobile site **Description**: Desktop site instead of mobile site **Steps to Reproduce**: <details> <summary>View the screenshot</summary> <img alt="Screenshot" src="https://webcompat.com/uploads/2020/10/8c03fd36-30ed-4afd-9fa0-34d3e28bf880.jpeg"> </details> <details> <summary>Browser Configuration</summary> <ul> <li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20201016094031</li><li>channel: nightly</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li> </ul> </details> [View console log messages](https://webcompat.com/console_logs/2020/10/4fc2aa29-6c48-48bf-b015-48ab8d0ce2de) _From [webcompat.com](https://webcompat.com/) with ❤️_
non_defect
addons mozilla org desktop site instead of mobile site url browser version firefox mobile operating system android tested another browser yes opera problem type desktop site instead of mobile site description desktop site instead of mobile site steps to reproduce view the screenshot img alt screenshot src browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel nightly hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️
0
70,637
7,194,672,031
IssuesEvent
2018-02-04 08:22:22
aseba-community/aseba
https://api.github.com/repos/aseba-community/aseba
opened
Unit testing native mathematical functions
Unit test Wish
It would be helpful to have full test coverage for native mathematical functions.
1.0
Unit testing native mathematical functions - It would be helpful to have full test coverage for native mathematical functions.
non_defect
unit testing native mathematical functions it would be helpful to have full test coverage for native mathematical functions
0
17,692
3,012,929,761
IssuesEvent
2015-07-29 04:17:29
yawlfoundation/yawl
https://api.github.com/repos/yawlfoundation/yawl
closed
not possible to save a file in the editor
auto-migrated Priority-Medium Type-Defect
``` What steps will reproduce the problem? 1. open the editor and open any file 2. go to save specification as... you now get a new panel. 3. create a new folder by clicking on the create new folder button shown on the right top of the panel. Give the folder a nice name. 4. do a one-click on the folder that you just have created. The save button is now changed into an open button. 4. click now on the open button. 5. you now get into the new folder. However, the button is now not changed into a save button as the folder is empty. 6. Clicking on the open button will not save the file. However, if you click on the very large white space, the button will change into a save button again. If I would have double-clicked on my new folder, there would not have been any problem. The problem is when you do a single click on a folder, click on the open button and that then nothing of the contents of the just opened folder is shown (although there might be something in it!). What version of the product are you using? On what operating system? yawl4enterprise. Operating system is windows server 2003, using java 1.6 I have the latest yawl provided by the mail of Stephan Clemens of 28/10/2008 ``` Original issue reported on code.google.com by `Ronny.M...@gmail.com` on 28 Oct 2008 at 11:26
1.0
not possible to save a file in the editor - ``` What steps will reproduce the problem? 1. open the editor and open any file 2. go to save specification as... you now get a new panel. 3. create a new folder by clicking on the create new folder button shown on the right top of the panel. Give the folder a nice name. 4. do a one-click on the folder that you just have created. The save button is now changed into an open button. 4. click now on the open button. 5. you now get into the new folder. However, the button is now not changed into a save button as the folder is empty. 6. Clicking on the open button will not save the file. However, if you click on the very large white space, the button will change into a save button again. If I would have double-clicked on my new folder, there would not have been any problem. The problem is when you do a single click on a folder, click on the open button and that then nothing of the contents of the just opened folder is shown (although there might be something in it!). What version of the product are you using? On what operating system? yawl4enterprise. Operating system is windows server 2003, using java 1.6 I have the latest yawl provided by the mail of Stephan Clemens of 28/10/2008 ``` Original issue reported on code.google.com by `Ronny.M...@gmail.com` on 28 Oct 2008 at 11:26
defect
not possible to save a file in the editor what steps will reproduce the problem open the editor and open any file go to save specification as you now get a new panel create a new folder by clicking on the create new folder button shown on the right top of the panel give the folder a nice name do a one click on the folder that you just have created the save button is now changed into an open button click now on the open button you now get into the new folder however the button is now not changed into a save button as the folder is empty clicking on the open button will not save the file however if you click on the very large white space the button will change into a save button again if i would have double clicked on my new folder there would not have been any problem the problem is when you do a single click on a folder click on the open button and that then nothing of the contents of the just opened folder is shown although there might be something in it what version of the product are you using on what operating system operating system is windows server using java i have the latest yawl provided by the mail of stephan clemens of original issue reported on code google com by ronny m gmail com on oct at
1
177,966
14,656,340,194
IssuesEvent
2020-12-28 13:12:23
HITK-TECH-Community/Community-Website
https://api.github.com/repos/HITK-TECH-Community/Community-Website
closed
[Documentation] Add contribution guidelines
DWOC Level-2 documentation good first issue
Make a `contributing.md` file and add the guidelines for contributing to this project. You can refer [this](https://github.com/Canvasbird/canvasboard/blob/master/contribution.md) for the same ad make the required changes in here.
1.0
[Documentation] Add contribution guidelines - Make a `contributing.md` file and add the guidelines for contributing to this project. You can refer [this](https://github.com/Canvasbird/canvasboard/blob/master/contribution.md) for the same ad make the required changes in here.
non_defect
add contribution guidelines make a contributing md file and add the guidelines for contributing to this project you can refer for the same ad make the required changes in here
0
234,973
25,901,373,760
IssuesEvent
2022-12-15 06:09:17
Trinadh465/linux-3.0.35_CVE-2019-10220
https://api.github.com/repos/Trinadh465/linux-3.0.35_CVE-2019-10220
opened
CVE-2013-7269 (Medium) detected in multiple libraries
security vulnerability
## CVE-2013-7269 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>linuxlinux-3.0.40</b>, <b>linux-stable-rtv3.8.6</b>, <b>linuxlinux-3.0.40</b>, <b>linuxlinux-3.0.40</b>, <b>linuxlinux-3.0.40</b>, <b>linux-stable-rtv3.8.6</b>, <b>linuxlinux-3.0.40</b>, <b>linuxlinux-3.0.40</b>, <b>linux-stable-rtv3.8.6</b>, <b>linuxlinux-3.0.40</b>, <b>linux-stable-rtv3.8.6</b>, <b>linuxlinux-3.0.40</b>, <b>linux-stable-rtv3.8.6</b>, <b>linux-stable-rtv3.8.6</b>, <b>linux-stable-rtv3.8.6</b>, <b>linux-stable-rtv3.8.6</b>, <b>linux-stable-rtv3.8.6</b>, <b>linux-stable-rtv3.8.6</b>, <b>linux-stable-rtv3.8.6</b>, <b>linuxlinux-3.0.40</b>, <b>linux-stable-rtv3.8.6</b>, <b>linux-stable-rtv3.8.6</b>, <b>linux-stable-rtv3.8.6</b>, <b>linux-stable-rtv3.8.6</b>, <b>linuxlinux-3.0.40</b>, <b>linuxlinux-3.0.40</b></p></summary> <p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The nr_recvmsg function in net/netrom/af_netrom.c in the Linux kernel before 3.12.4 updates a certain length value without ensuring that an associated data structure has been initialized, which allows local users to obtain sensitive information from kernel memory via a (1) recvfrom, (2) recvmmsg, or (3) recvmsg system call. <p>Publish Date: 2014-01-06 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2013-7269>CVE-2013-7269</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.2</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2013-7269">https://www.linuxkernelcves.com/cves/CVE-2013-7269</a></p> <p>Release Date: 2014-01-06</p> <p>Fix Resolution: v3.13-rc1,v3.12.4,v3.2.54</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2013-7269 (Medium) detected in multiple libraries - ## CVE-2013-7269 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>linuxlinux-3.0.40</b>, <b>linux-stable-rtv3.8.6</b>, <b>linuxlinux-3.0.40</b>, <b>linuxlinux-3.0.40</b>, <b>linuxlinux-3.0.40</b>, <b>linux-stable-rtv3.8.6</b>, <b>linuxlinux-3.0.40</b>, <b>linuxlinux-3.0.40</b>, <b>linux-stable-rtv3.8.6</b>, <b>linuxlinux-3.0.40</b>, <b>linux-stable-rtv3.8.6</b>, <b>linuxlinux-3.0.40</b>, <b>linux-stable-rtv3.8.6</b>, <b>linux-stable-rtv3.8.6</b>, <b>linux-stable-rtv3.8.6</b>, <b>linux-stable-rtv3.8.6</b>, <b>linux-stable-rtv3.8.6</b>, <b>linux-stable-rtv3.8.6</b>, <b>linux-stable-rtv3.8.6</b>, <b>linuxlinux-3.0.40</b>, <b>linux-stable-rtv3.8.6</b>, <b>linux-stable-rtv3.8.6</b>, <b>linux-stable-rtv3.8.6</b>, <b>linux-stable-rtv3.8.6</b>, <b>linuxlinux-3.0.40</b>, <b>linuxlinux-3.0.40</b></p></summary> <p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The nr_recvmsg function in net/netrom/af_netrom.c in the Linux kernel before 3.12.4 updates a certain length value without ensuring that an associated data structure has been initialized, which allows local users to obtain sensitive information from kernel memory via a (1) recvfrom, (2) recvmmsg, or (3) recvmsg system call. <p>Publish Date: 2014-01-06 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2013-7269>CVE-2013-7269</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.2</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2013-7269">https://www.linuxkernelcves.com/cves/CVE-2013-7269</a></p> <p>Release Date: 2014-01-06</p> <p>Fix Resolution: v3.13-rc1,v3.12.4,v3.2.54</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
cve medium detected in multiple libraries cve medium severity vulnerability vulnerable libraries linuxlinux linux stable linuxlinux linuxlinux linuxlinux linux stable linuxlinux linuxlinux linux stable linuxlinux linux stable linuxlinux linux stable linux stable linux stable linux stable linux stable linux stable linux stable linuxlinux linux stable linux stable linux stable linux stable linuxlinux linuxlinux vulnerability details the nr recvmsg function in net netrom af netrom c in the linux kernel before updates a certain length value without ensuring that an associated data structure has been initialized which allows local users to obtain sensitive information from kernel memory via a recvfrom recvmmsg or recvmsg system call publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend
0
77,222
26,860,493,643
IssuesEvent
2023-02-03 17:56:01
department-of-veterans-affairs/va.gov-cms
https://api.github.com/repos/department-of-veterans-affairs/va.gov-cms
opened
Lovell editors can not select a System when creating VAMC System Health Service
Defect Needs refining
## Describe the defect A clear and concise description of what the bug is. ## To Reproduce Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error ## AC / Expected behavior A clear and concise description of what you expected to happen. ## Screenshots If applicable, add screenshots to help explain your problem. ## Additional context Add any other context about the problem here. Reach out to the Product Managers to determine if it should be escalated as critical (prevents users from accomplishing their work with no known workaround and needs to be addressed within 2 business days). ## Desktop (please complete the following information if relevant, or delete) - OS: [e.g. iOS] - Browser [e.g. chrome, safari] - Version [e.g. 22] ## Labels (You can delete this section once it's complete) - [x] Issue type (red) (defaults to "Defect") - [ ] CMS subsystem (green) - [ ] CMS practice area (blue) - [x] CMS workstream (orange) (not needed for bug tickets) - [ ] CMS-supported product (black) ### Team Please check the team(s) that will do this work. - [ ] `CMS Team` - [ ] `Public Websites` - [ ] `Facilities` - [ ] `User support`
1.0
Lovell editors can not select a System when creating VAMC System Health Service - ## Describe the defect A clear and concise description of what the bug is. ## To Reproduce Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error ## AC / Expected behavior A clear and concise description of what you expected to happen. ## Screenshots If applicable, add screenshots to help explain your problem. ## Additional context Add any other context about the problem here. Reach out to the Product Managers to determine if it should be escalated as critical (prevents users from accomplishing their work with no known workaround and needs to be addressed within 2 business days). ## Desktop (please complete the following information if relevant, or delete) - OS: [e.g. iOS] - Browser [e.g. chrome, safari] - Version [e.g. 22] ## Labels (You can delete this section once it's complete) - [x] Issue type (red) (defaults to "Defect") - [ ] CMS subsystem (green) - [ ] CMS practice area (blue) - [x] CMS workstream (orange) (not needed for bug tickets) - [ ] CMS-supported product (black) ### Team Please check the team(s) that will do this work. - [ ] `CMS Team` - [ ] `Public Websites` - [ ] `Facilities` - [ ] `User support`
defect
lovell editors can not select a system when creating vamc system health service describe the defect a clear and concise description of what the bug is to reproduce steps to reproduce the behavior go to click on scroll down to see error ac expected behavior a clear and concise description of what you expected to happen screenshots if applicable add screenshots to help explain your problem additional context add any other context about the problem here reach out to the product managers to determine if it should be escalated as critical prevents users from accomplishing their work with no known workaround and needs to be addressed within business days desktop please complete the following information if relevant or delete os browser version labels you can delete this section once it s complete issue type red defaults to defect cms subsystem green cms practice area blue cms workstream orange not needed for bug tickets cms supported product black team please check the team s that will do this work cms team public websites facilities user support
1
31,262
13,482,124,187
IssuesEvent
2020-09-11 00:46:19
terraform-providers/terraform-provider-aws
https://api.github.com/repos/terraform-providers/terraform-provider-aws
closed
When attached to a NIC, `aws_eip does not contain attributes `network_interface`, `private_dns` and `private_ip` on first run.
needs-triage service/ec2
Hello ! Here’s a code sample that breaks idempotency: ```terraform data "aws_vpc" "default" { default = true } data "aws_subnet_ids" "default" { vpc_id = data.aws_vpc.default.id } resource "aws_eip" "test" { vpc = true } resource "aws_eip_association" "test" { network_interface_id = aws_network_interface.test.id allocation_id = aws_eip.test.id } resource "aws_network_interface" "test" { subnet_id = flatten(data.aws_subnet_ids.default.ids)[0] } output "test" { value = aws_eip.test } ``` First run: no `network_interface`, `private_dns` nor `private_ip` in output. Second run: the output contains `network_interface`, `private_dns` and `private_ip`. I expect consecutive runs to be consistent. Thanks! Versions: Terraform v0.13.2 + provider registry.terraform.io/hashicorp/aws v3.5.0 (also tested with Terraform 0.12.29)
1.0
When attached to a NIC, `aws_eip does not contain attributes `network_interface`, `private_dns` and `private_ip` on first run. - Hello ! Here’s a code sample that breaks idempotency: ```terraform data "aws_vpc" "default" { default = true } data "aws_subnet_ids" "default" { vpc_id = data.aws_vpc.default.id } resource "aws_eip" "test" { vpc = true } resource "aws_eip_association" "test" { network_interface_id = aws_network_interface.test.id allocation_id = aws_eip.test.id } resource "aws_network_interface" "test" { subnet_id = flatten(data.aws_subnet_ids.default.ids)[0] } output "test" { value = aws_eip.test } ``` First run: no `network_interface`, `private_dns` nor `private_ip` in output. Second run: the output contains `network_interface`, `private_dns` and `private_ip`. I expect consecutive runs to be consistent. Thanks! Versions: Terraform v0.13.2 + provider registry.terraform.io/hashicorp/aws v3.5.0 (also tested with Terraform 0.12.29)
non_defect
when attached to a nic aws eip does not contain attributes network interface private dns and private ip on first run hello here’s a code sample that breaks idempotency terraform data aws vpc default default true data aws subnet ids default vpc id data aws vpc default id resource aws eip test vpc true resource aws eip association test network interface id aws network interface test id allocation id aws eip test id resource aws network interface test subnet id flatten data aws subnet ids default ids output test value aws eip test first run no network interface private dns nor private ip in output second run the output contains network interface private dns and private ip i expect consecutive runs to be consistent thanks versions terraform provider registry terraform io hashicorp aws also tested with terraform
0
5,018
2,759,341,740
IssuesEvent
2015-04-28 02:39:26
ldrumm/libbeemo
https://api.github.com/repos/ldrumm/libbeemo
closed
Add AddressSanitizer support to the test harness
enhancement tests
In-keeping with valgrind being run by the testsuite, also add support for gcc and clang's `-fsanitize=address,thread` suppport, to enable detailed checking of memory and threading errors.
1.0
Add AddressSanitizer support to the test harness - In-keeping with valgrind being run by the testsuite, also add support for gcc and clang's `-fsanitize=address,thread` suppport, to enable detailed checking of memory and threading errors.
non_defect
add addresssanitizer support to the test harness in keeping with valgrind being run by the testsuite also add support for gcc and clang s fsanitize address thread suppport to enable detailed checking of memory and threading errors
0
80,096
30,010,317,260
IssuesEvent
2023-06-26 14:52:51
naev/naev
https://api.github.com/repos/naev/naev
closed
Fussy: check return values of pilotL_newtask, ai_newtask, etc.
Type-Defect Priority-Low
As exhibited in #2074 -- these can return NULL if there's a problem with the pilot, and we have a bunch of functions that will happily dereference NULL when that happens. This can turn a mission-breaking bug into a crashing bug, which might be worse.
1.0
Fussy: check return values of pilotL_newtask, ai_newtask, etc. - As exhibited in #2074 -- these can return NULL if there's a problem with the pilot, and we have a bunch of functions that will happily dereference NULL when that happens. This can turn a mission-breaking bug into a crashing bug, which might be worse.
defect
fussy check return values of pilotl newtask ai newtask etc as exhibited in these can return null if there s a problem with the pilot and we have a bunch of functions that will happily dereference null when that happens this can turn a mission breaking bug into a crashing bug which might be worse
1
132,727
18,758,418,041
IssuesEvent
2021-11-05 13:49:20
popcorndao/workspace
https://api.github.com/repos/popcorndao/workspace
opened
Network switcher
needs design
## Background We will soon be multi-chain and all of our applications should be ready for the multi-chain experience. This means that besides the wallet connect button, there needs to be an option to choose/switch to a different network. ## Design * Todo * below is a reference from Balancer ![Screen Shot 2021-11-05 at 2.48.44 PM.png](https://images.zenhubusercontent.com/603eb2a37ac89a384f4c4843/487d94c2-dd18-410e-95b5-927908625086) ## Acceptance Criteria 1. The network switcher should show the networks that we support. It should be configurable to add new networks in the future. 2. The designed component should be implemented in storybook, and a container should wrap it to contain the networking/wallet logic 3. When switching to a new network, if the network does not exist in the connected wallet it should prompt the user to add the network to their wallet. 4. When the network switcher is clicked, a modal should be displayed with the available networks.
1.0
Network switcher - ## Background We will soon be multi-chain and all of our applications should be ready for the multi-chain experience. This means that besides the wallet connect button, there needs to be an option to choose/switch to a different network. ## Design * Todo * below is a reference from Balancer ![Screen Shot 2021-11-05 at 2.48.44 PM.png](https://images.zenhubusercontent.com/603eb2a37ac89a384f4c4843/487d94c2-dd18-410e-95b5-927908625086) ## Acceptance Criteria 1. The network switcher should show the networks that we support. It should be configurable to add new networks in the future. 2. The designed component should be implemented in storybook, and a container should wrap it to contain the networking/wallet logic 3. When switching to a new network, if the network does not exist in the connected wallet it should prompt the user to add the network to their wallet. 4. When the network switcher is clicked, a modal should be displayed with the available networks.
non_defect
network switcher background we will soon be multi chain and all of our applications should be ready for the multi chain experience this means that besides the wallet connect button there needs to be an option to choose switch to a different network design todo below is a reference from balancer acceptance criteria the network switcher should show the networks that we support it should be configurable to add new networks in the future the designed component should be implemented in storybook and a container should wrap it to contain the networking wallet logic when switching to a new network if the network does not exist in the connected wallet it should prompt the user to add the network to their wallet when the network switcher is clicked a modal should be displayed with the available networks
0
279,882
21,187,932,715
IssuesEvent
2022-04-08 14:29:13
SAP/xsk
https://api.github.com/repos/SAP/xsk
closed
[Documentation] HDB and XS artifacts feature parity
documentation priority-high
**Describe the solution you'd like** In xsk.io I'd like to see a matrix describing the HDB artifacts (.hdb*) and XS Classic artifacts (.xs*). Which ones are supported, which ones are not, if not - one sentence summary would be nice. Each artifact should have its own page with more detailed documentation what is its comparison to the HANA For each artifact describe the behavior, limitations in comparison to HANA in intuitive way. Color coding on top would be nice way to easily digest the information - big green letters if it's 1:1 working, yellow if there's some (small) difference in behavior, red if incompatible or major difference in behavior
1.0
[Documentation] HDB and XS artifacts feature parity - **Describe the solution you'd like** In xsk.io I'd like to see a matrix describing the HDB artifacts (.hdb*) and XS Classic artifacts (.xs*). Which ones are supported, which ones are not, if not - one sentence summary would be nice. Each artifact should have its own page with more detailed documentation what is its comparison to the HANA For each artifact describe the behavior, limitations in comparison to HANA in intuitive way. Color coding on top would be nice way to easily digest the information - big green letters if it's 1:1 working, yellow if there's some (small) difference in behavior, red if incompatible or major difference in behavior
non_defect
hdb and xs artifacts feature parity describe the solution you d like in xsk io i d like to see a matrix describing the hdb artifacts hdb and xs classic artifacts xs which ones are supported which ones are not if not one sentence summary would be nice each artifact should have its own page with more detailed documentation what is its comparison to the hana for each artifact describe the behavior limitations in comparison to hana in intuitive way color coding on top would be nice way to easily digest the information big green letters if it s working yellow if there s some small difference in behavior red if incompatible or major difference in behavior
0
58,538
16,591,766,094
IssuesEvent
2021-06-01 08:35:23
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
opened
Bridge returned HTTP 500 Internal Server Error: Bridging request already sent
T-Defect
<!-- A picture's worth a thousand words: PLEASE INCLUDE A SCREENSHOT :P --> <!-- Please report security issues by email to security@matrix.org --> <!-- 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 I am trying to bridge/plumb a Matrix room to a channel on Libera.Chat using the integrations manager. I could send a bridging request but it did not reach me on IRC end. (Potentially because I am connected to the Libera.Chat IRC network via the new and unstable "global bridge" that is the libera.chat Matrix-homeserver.) When I try to resend the request half a day later, I get the message `Bridge returned HTTP 500 Internal Server Error: Bridging request already sent …`. ### Steps to reproduce - Request an IRC integration via Element's integration manager. - Do not respond to it on IRC side. - Attempt to re-request it some time later. ### Expected behavior If the bridging request isn't answered by the designated IRC channel operator, one should be able to resend it after some time. ### Version information <!-- IMPORTANT: please answer the following questions, to help us narrow down the problem --> - **Platform**: Element Desktop - **OS**: Arch Linux (Linux 5.12.6) - **Version**: 1.7.29
1.0
Bridge returned HTTP 500 Internal Server Error: Bridging request already sent - <!-- A picture's worth a thousand words: PLEASE INCLUDE A SCREENSHOT :P --> <!-- Please report security issues by email to security@matrix.org --> <!-- 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 I am trying to bridge/plumb a Matrix room to a channel on Libera.Chat using the integrations manager. I could send a bridging request but it did not reach me on IRC end. (Potentially because I am connected to the Libera.Chat IRC network via the new and unstable "global bridge" that is the libera.chat Matrix-homeserver.) When I try to resend the request half a day later, I get the message `Bridge returned HTTP 500 Internal Server Error: Bridging request already sent …`. ### Steps to reproduce - Request an IRC integration via Element's integration manager. - Do not respond to it on IRC side. - Attempt to re-request it some time later. ### Expected behavior If the bridging request isn't answered by the designated IRC channel operator, one should be able to resend it after some time. ### Version information <!-- IMPORTANT: please answer the following questions, to help us narrow down the problem --> - **Platform**: Element Desktop - **OS**: Arch Linux (Linux 5.12.6) - **Version**: 1.7.29
defect
bridge returned http internal server error bridging request already sent 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 i am trying to bridge plumb a matrix room to a channel on libera chat using the integrations manager i could send a bridging request but it did not reach me on irc end potentially because i am connected to the libera chat irc network via the new and unstable global bridge that is the libera chat matrix homeserver when i try to resend the request half a day later i get the message bridge returned http internal server error bridging request already sent … steps to reproduce request an irc integration via element s integration manager do not respond to it on irc side attempt to re request it some time later expected behavior if the bridging request isn t answered by the designated irc channel operator one should be able to resend it after some time version information platform element desktop os arch linux linux version
1
219,470
17,093,096,811
IssuesEvent
2021-07-08 20:25:06
ProfessorAmanda/econsimulations
https://api.github.com/repos/ProfessorAmanda/econsimulations
closed
Should the "first population" have a mean of 64?
Hypothesis Testing
Should the mean of the first population for a two-sample Hypothesis test be 64 (the same as the original population) or should this be randomized? Currently it is randomized but I am not sure if this was the intention.
1.0
Should the "first population" have a mean of 64? - Should the mean of the first population for a two-sample Hypothesis test be 64 (the same as the original population) or should this be randomized? Currently it is randomized but I am not sure if this was the intention.
non_defect
should the first population have a mean of should the mean of the first population for a two sample hypothesis test be the same as the original population or should this be randomized currently it is randomized but i am not sure if this was the intention
0
80,350
30,245,366,326
IssuesEvent
2023-07-06 16:03:51
vector-im/element-x-ios
https://api.github.com/repos/vector-im/element-x-ios
closed
Opening videos doesn’t deduplicate taps
T-Defect S-Major O-Occasional Z-Schedule Z-Polish
### Steps to reproduce 1. View a video in an e2ee room by tapping its thumbnail 2. Nothing happens; you wonder if the tap worked 3. you tap a few more times 4. suddenly you get 4 copies of the video open up in the view stack ### Outcome #### What did you expect? duplicate taps should be deduplicated. #### What happened instead? videopalooza ### Your phone model _No response_ ### Operating system version _No response_ ### Application version nightly 213 ### Homeserver _No response_ ### Will you send logs? No
1.0
Opening videos doesn’t deduplicate taps - ### Steps to reproduce 1. View a video in an e2ee room by tapping its thumbnail 2. Nothing happens; you wonder if the tap worked 3. you tap a few more times 4. suddenly you get 4 copies of the video open up in the view stack ### Outcome #### What did you expect? duplicate taps should be deduplicated. #### What happened instead? videopalooza ### Your phone model _No response_ ### Operating system version _No response_ ### Application version nightly 213 ### Homeserver _No response_ ### Will you send logs? No
defect
opening videos doesn’t deduplicate taps steps to reproduce view a video in an room by tapping its thumbnail nothing happens you wonder if the tap worked you tap a few more times suddenly you get copies of the video open up in the view stack outcome what did you expect duplicate taps should be deduplicated what happened instead videopalooza your phone model no response operating system version no response application version nightly homeserver no response will you send logs no
1
14,352
2,799,330,181
IssuesEvent
2015-05-12 23:45:27
FIX94/Nintendont
https://api.github.com/repos/FIX94/Nintendont
closed
Mario Super Strikers intermittent control loss.
auto-migrated Priority-Medium Type-Defect
``` What steps will reproduce the problem? 1.Run Mario Super Strikers from SD Card using the Classic Controller Pro on a Wii What is the expected output? What do you see instead? Game plays except at unpredictable intervals player controlled character will exhibit uncontrolled behavior. It looks like the stick gets stuck in a down right position. Only happens during actual play, and only when character has the ball. Menus seem to work fine. What revision of Nintendont are you using? On what system Wii/Wii U? Wii, r159 Please provide any additional information below. Error will come and go. Was able to play a full game, even with the error. Have not tested other games yet. Have not tested using standard gamecube controller. I will admit that it may be that I am doing something wrong game-wise, but when I let go of all controls, the problem persists. ``` Original issue reported on code.google.com by `rpangra...@gmail.com` on 15 Sep 2014 at 2:00
1.0
Mario Super Strikers intermittent control loss. - ``` What steps will reproduce the problem? 1.Run Mario Super Strikers from SD Card using the Classic Controller Pro on a Wii What is the expected output? What do you see instead? Game plays except at unpredictable intervals player controlled character will exhibit uncontrolled behavior. It looks like the stick gets stuck in a down right position. Only happens during actual play, and only when character has the ball. Menus seem to work fine. What revision of Nintendont are you using? On what system Wii/Wii U? Wii, r159 Please provide any additional information below. Error will come and go. Was able to play a full game, even with the error. Have not tested other games yet. Have not tested using standard gamecube controller. I will admit that it may be that I am doing something wrong game-wise, but when I let go of all controls, the problem persists. ``` Original issue reported on code.google.com by `rpangra...@gmail.com` on 15 Sep 2014 at 2:00
defect
mario super strikers intermittent control loss what steps will reproduce the problem run mario super strikers from sd card using the classic controller pro on a wii what is the expected output what do you see instead game plays except at unpredictable intervals player controlled character will exhibit uncontrolled behavior it looks like the stick gets stuck in a down right position only happens during actual play and only when character has the ball menus seem to work fine what revision of nintendont are you using on what system wii wii u wii please provide any additional information below error will come and go was able to play a full game even with the error have not tested other games yet have not tested using standard gamecube controller i will admit that it may be that i am doing something wrong game wise but when i let go of all controls the problem persists original issue reported on code google com by rpangra gmail com on sep at
1
21,378
4,707,165,808
IssuesEvent
2016-10-13 19:18:26
IQSS/dataverse
https://api.github.com/repos/IQSS/dataverse
closed
Documentation: Missing Link to Appendix in User Guide
Component: Documentation Status: QA
Under "Metadata Elements for datasets in this dataverse" user reported missing URL for "appendix (insert link here)" Link to appendix is: http://guides.dataverse.org/en/4.2.4/user/appendix.html
1.0
Documentation: Missing Link to Appendix in User Guide - Under "Metadata Elements for datasets in this dataverse" user reported missing URL for "appendix (insert link here)" Link to appendix is: http://guides.dataverse.org/en/4.2.4/user/appendix.html
non_defect
documentation missing link to appendix in user guide under metadata elements for datasets in this dataverse user reported missing url for appendix insert link here link to appendix is
0
81,897
31,804,197,150
IssuesEvent
2023-09-13 13:02:32
department-of-veterans-affairs/va.gov-team
https://api.github.com/repos/department-of-veterans-affairs/va.gov-team
reopened
Intent To File behavior when a back-end service is unavailable
526ez-Defects
I (Steve Alberts) want to check in with you on the current Intent To File behavior when a back-end service is unavailable. I'm looking at the 7 PM - 11 PM ET 9/9 outage/degradation in service caused by an unavailable back-end service - it caused a number of ITF errors - can we talk about this during the next bug triage meeting? (link for start of Slack channel notifications)
1.0
Intent To File behavior when a back-end service is unavailable - I (Steve Alberts) want to check in with you on the current Intent To File behavior when a back-end service is unavailable. I'm looking at the 7 PM - 11 PM ET 9/9 outage/degradation in service caused by an unavailable back-end service - it caused a number of ITF errors - can we talk about this during the next bug triage meeting? (link for start of Slack channel notifications)
defect
intent to file behavior when a back end service is unavailable i steve alberts want to check in with you on the current intent to file behavior when a back end service is unavailable i m looking at the pm pm et outage degradation in service caused by an unavailable back end service it caused a number of itf errors can we talk about this during the next bug triage meeting link for start of slack channel notifications
1
75,162
25,564,518,379
IssuesEvent
2022-11-30 13:22:16
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
closed
Thread summaries not being updated correctly
T-Defect X-Blocked X-Regression A-Threads Z-Labs
### Steps to reproduce Post a message on a thread. ### Outcome #### What did you expect? The thread summary in the room timeline to be updated with my avatar and display name. #### What happened instead? The thread summary is not showing my avatar and is showing my matrix user id instead of the display name. Clicking on the thread summary will make the thread summary to render the correct contents. ### Operating system macOS ### Browser information Chrome 99.0.4844.74 ### URL for webapp develop.element.io ### Application version Element version: 5077157282d1-react-f4c25e06cdbc-js-d6f1c6cfdc5a Olm version: 3.2.8 ### Homeserver matrix.org ### Will you send logs? No
1.0
Thread summaries not being updated correctly - ### Steps to reproduce Post a message on a thread. ### Outcome #### What did you expect? The thread summary in the room timeline to be updated with my avatar and display name. #### What happened instead? The thread summary is not showing my avatar and is showing my matrix user id instead of the display name. Clicking on the thread summary will make the thread summary to render the correct contents. ### Operating system macOS ### Browser information Chrome 99.0.4844.74 ### URL for webapp develop.element.io ### Application version Element version: 5077157282d1-react-f4c25e06cdbc-js-d6f1c6cfdc5a Olm version: 3.2.8 ### Homeserver matrix.org ### Will you send logs? No
defect
thread summaries not being updated correctly steps to reproduce post a message on a thread outcome what did you expect the thread summary in the room timeline to be updated with my avatar and display name what happened instead the thread summary is not showing my avatar and is showing my matrix user id instead of the display name clicking on the thread summary will make the thread summary to render the correct contents operating system macos browser information chrome url for webapp develop element io application version element version react js olm version homeserver matrix org will you send logs no
1
16,898
5,302,235,133
IssuesEvent
2017-02-10 12:16:02
joomla/joomla-cms
https://api.github.com/repos/joomla/joomla-cms
closed
3.6.5 SMTP Mail not working PHP Version 7.0.13-0ubuntu0.16.04.1
No Code Attached Yet
### Steps to reproduce the issue Fresh install 3.6.4 on PHP Version 7.0.13-0ubuntu0.16.04.1 Configure mail send Mail Yes , Disable mass mail No, From me@mydomain.net Name me Mailer SMTP smtp host smtp.mydomain.net port 587 encryp STARTTLS auth req YES Username me@mydomain.net passwd mypasswd Save configuration Sent test email Add contact form to menu Send message via contact form Repeat all exactly above on PHP Version 5.6.29-0+deb8u1 and all works as expected ### Expected result The email was sent successfully to me@mydomain.net using SMTP. You should check that you've received the test email. ### Actual result Notice SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting Error Test mail could not be sent. Contact form hangs! ### System information (as much as possible) PHP Built On Linux mail 2.6.32-042stab111.12 #1 SMP Thu Sep 17 11:38:20 MSK 2015 x86_64 Database Version 5.5.5-10.1.21-MariaDB-1~xenial Database Collation utf8_general_ci Database Connection Collation utf8mb4_general_ci PHP Version 7.0.13-0ubuntu0.16.04.1 Web Server Apache/2.4.18 (Ubuntu) WebServer to PHP Interface apache2handler Joomla! Version Joomla! 3.6.5 Stable [ Noether ] 1-December-2016 22:46 GMT Joomla! Platform Version Joomla Platform 13.1.0 Stable [ Curiosity ] 24-Apr-2013 00:00 GMT User Agent Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0 Full sysinfo attached[systeminfo-2017-02-09T08_08_07-05_00.txt](https://issues.joomla.org/uploads/1/591013010c9fd5f33080d2378bcd66e8.txt) ### Additional comments Openssl Check performed openssl s_client -starttls smtp -crlf -connect smtp.mydomain.net:587 returns code 0, which indicates successful verification
1.0
3.6.5 SMTP Mail not working PHP Version 7.0.13-0ubuntu0.16.04.1 - ### Steps to reproduce the issue Fresh install 3.6.4 on PHP Version 7.0.13-0ubuntu0.16.04.1 Configure mail send Mail Yes , Disable mass mail No, From me@mydomain.net Name me Mailer SMTP smtp host smtp.mydomain.net port 587 encryp STARTTLS auth req YES Username me@mydomain.net passwd mypasswd Save configuration Sent test email Add contact form to menu Send message via contact form Repeat all exactly above on PHP Version 5.6.29-0+deb8u1 and all works as expected ### Expected result The email was sent successfully to me@mydomain.net using SMTP. You should check that you've received the test email. ### Actual result Notice SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting Error Test mail could not be sent. Contact form hangs! ### System information (as much as possible) PHP Built On Linux mail 2.6.32-042stab111.12 #1 SMP Thu Sep 17 11:38:20 MSK 2015 x86_64 Database Version 5.5.5-10.1.21-MariaDB-1~xenial Database Collation utf8_general_ci Database Connection Collation utf8mb4_general_ci PHP Version 7.0.13-0ubuntu0.16.04.1 Web Server Apache/2.4.18 (Ubuntu) WebServer to PHP Interface apache2handler Joomla! Version Joomla! 3.6.5 Stable [ Noether ] 1-December-2016 22:46 GMT Joomla! Platform Version Joomla Platform 13.1.0 Stable [ Curiosity ] 24-Apr-2013 00:00 GMT User Agent Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0 Full sysinfo attached[systeminfo-2017-02-09T08_08_07-05_00.txt](https://issues.joomla.org/uploads/1/591013010c9fd5f33080d2378bcd66e8.txt) ### Additional comments Openssl Check performed openssl s_client -starttls smtp -crlf -connect smtp.mydomain.net:587 returns code 0, which indicates successful verification
non_defect
smtp mail not working php version steps to reproduce the issue fresh install on php version configure mail send mail yes disable mass mail no from me mydomain net name me mailer smtp smtp host smtp mydomain net port encryp starttls auth req yes username me mydomain net passwd mypasswd save configuration sent test email add contact form to menu send message via contact form repeat all exactly above on php version and all works as expected expected result the email was sent successfully to me mydomain net using smtp you should check that you ve received the test email actual result notice smtp connect failed error test mail could not be sent contact form hangs system information as much as possible php built on linux mail smp thu sep msk database version mariadb xenial database collation general ci database connection collation general ci php version web server apache ubuntu webserver to php interface joomla version joomla stable december gmt joomla platform version joomla platform stable apr gmt user agent mozilla linux rv gecko firefox full sysinfo attached additional comments openssl check performed openssl s client starttls smtp crlf connect smtp mydomain net returns code which indicates successful verification
0
359,099
10,660,047,197
IssuesEvent
2019-10-18 09:05:31
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
accounts.google.com - site is not usable
ML Correct ML ON browser-firefox engine-gecko priority-critical
<!-- @browser: Firefox 70.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 --> <!-- @reported_with: desktop-reporter --> **URL**: https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin **Browser / Version**: Firefox 70.0 **Operating System**: Windows 7 **Tested Another Browser**: Unknown **Problem type**: Site is not usable **Description**: not gmail login **Steps to Reproduce**: [![Screenshot Description](https://webcompat.com/uploads/2019/10/e7c96412-9853-430f-849c-5085a6ce0b33-thumb.jpeg)](https://webcompat.com/uploads/2019/10/e7c96412-9853-430f-849c-5085a6ce0b33.jpeg) <details> <summary>Browser Configuration</summary> <ul> <li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20191010142853</li><li>channel: beta</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li> </ul> <p>Console Messages:</p> <pre> [{'level': 'warn', 'log': ["Content Security Policy: Ignoring 'unsafe-inline' within script-src or style-src: nonce-source or hash-source specified"], 'uri': '', 'pos': '0:0'}, {'level': 'warn', 'log': ["Content Security Policy: Ignoring 'unsafe-inline' within script-src or style-src: nonce-source or hash-source specified"], 'uri': '', 'pos': '0:0'}, {'level': 'warn', 'log': ["Content Security Policy: Ignoring 'unsafe-inline' within script-src or style-src: nonce-source or hash-source specified"], 'uri': '', 'pos': '0:0'}, {'level': 'warn', 'log': ['Content Security Policy: Ignoring x-frame-options because of frame-ancestors directive.'], 'uri': '', 'pos': '0:0'}, {'level': 'warn', 'log': ["Content Security Policy: Ignoring 'unsafe-inline' within script-src or style-src: nonce-source or hash-source specified"], 'uri': '', 'pos': '0:0'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=wI7Sfc,SF3gsd,rHjpXd,pB6Zqd,o02Jie,YTxL4,QLpTOd,sy79,uhxrz.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['MouseEvent.mozPressure is deprecated. Use PointerEvent.pressure instead.'], 'uri': 'https://accounts.google.com/ServiceLogin?service=mail&passive=true&rm=false&continue=https://mail.google.com/mail/?tab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1#', 'pos': '2677:144'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=wI7Sfc,SF3gsd,rHjpXd,pB6Zqd,o02Jie,YTxL4,QLpTOd,sy79,uhxrz.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ["Content Security Policy: Ignoring 'unsafe-inline' within script-src or style-src: nonce-source or hash-source specified"], 'uri': '', 'pos': '0:0'}, {'level': 'warn', 'log': ["Content Security Policy: Ignoring 'unsafe-inline' within script-src or style-src: nonce-source or hash-source specified"], 'uri': '', 'pos': '0:0'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=wI7Sfc,SF3gsd,rHjpXd,pB6Zqd,o02Jie,YTxL4,QLpTOd,sy79,uhxrz.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=wI7Sfc.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=wI7Sfc.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=wI7Sfc.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=SF3gsd.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=SF3gsd.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=SF3gsd.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=rHjpXd.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=rHjpXd.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=rHjpXd.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=pB6Zqd.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=pB6Zqd.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}] </pre> </details> Submitted in the name of `@kk` _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
accounts.google.com - site is not usable - <!-- @browser: Firefox 70.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 --> <!-- @reported_with: desktop-reporter --> **URL**: https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin **Browser / Version**: Firefox 70.0 **Operating System**: Windows 7 **Tested Another Browser**: Unknown **Problem type**: Site is not usable **Description**: not gmail login **Steps to Reproduce**: [![Screenshot Description](https://webcompat.com/uploads/2019/10/e7c96412-9853-430f-849c-5085a6ce0b33-thumb.jpeg)](https://webcompat.com/uploads/2019/10/e7c96412-9853-430f-849c-5085a6ce0b33.jpeg) <details> <summary>Browser Configuration</summary> <ul> <li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20191010142853</li><li>channel: beta</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li> </ul> <p>Console Messages:</p> <pre> [{'level': 'warn', 'log': ["Content Security Policy: Ignoring 'unsafe-inline' within script-src or style-src: nonce-source or hash-source specified"], 'uri': '', 'pos': '0:0'}, {'level': 'warn', 'log': ["Content Security Policy: Ignoring 'unsafe-inline' within script-src or style-src: nonce-source or hash-source specified"], 'uri': '', 'pos': '0:0'}, {'level': 'warn', 'log': ["Content Security Policy: Ignoring 'unsafe-inline' within script-src or style-src: nonce-source or hash-source specified"], 'uri': '', 'pos': '0:0'}, {'level': 'warn', 'log': ['Content Security Policy: Ignoring x-frame-options because of frame-ancestors directive.'], 'uri': '', 'pos': '0:0'}, {'level': 'warn', 'log': ["Content Security Policy: Ignoring 'unsafe-inline' within script-src or style-src: nonce-source or hash-source specified"], 'uri': '', 'pos': '0:0'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=wI7Sfc,SF3gsd,rHjpXd,pB6Zqd,o02Jie,YTxL4,QLpTOd,sy79,uhxrz.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['MouseEvent.mozPressure is deprecated. Use PointerEvent.pressure instead.'], 'uri': 'https://accounts.google.com/ServiceLogin?service=mail&passive=true&rm=false&continue=https://mail.google.com/mail/?tab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1#', 'pos': '2677:144'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=wI7Sfc,SF3gsd,rHjpXd,pB6Zqd,o02Jie,YTxL4,QLpTOd,sy79,uhxrz.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ["Content Security Policy: Ignoring 'unsafe-inline' within script-src or style-src: nonce-source or hash-source specified"], 'uri': '', 'pos': '0:0'}, {'level': 'warn', 'log': ["Content Security Policy: Ignoring 'unsafe-inline' within script-src or style-src: nonce-source or hash-source specified"], 'uri': '', 'pos': '0:0'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=wI7Sfc,SF3gsd,rHjpXd,pB6Zqd,o02Jie,YTxL4,QLpTOd,sy79,uhxrz.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=wI7Sfc.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=wI7Sfc.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=wI7Sfc.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=SF3gsd.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=SF3gsd.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=SF3gsd.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=rHjpXd.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=rHjpXd.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=rHjpXd.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=pB6Zqd.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}, {'level': 'warn', 'log': ['Loading failed for the <script> with source https://ssl.gstatic.com/accounts/static/_/js/k=gaia.gaiafe_glif.en.uFf18vXvqNg.O/am=FjXSTAgkCAgAAAAAAAAABAAADEB0yPj_W4FxGw/d=0/ct=zgms/rs=ABkqax02ld6t1HpRYYOv51sUZvCg8-rNtA/m=pB6Zqd.'], 'uri': 'https://accounts.google.com/ServiceLogin/signinchooser?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F%3Ftab%3Dwm%26ogbl&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin', 'pos': '1:1'}] </pre> </details> Submitted in the name of `@kk` _From [webcompat.com](https://webcompat.com/) with ❤️_
non_defect
accounts google com site is not usable url browser version firefox operating system windows tested another browser unknown problem type site is not usable description not gmail login steps to reproduce browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel beta hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked false console messages uri pos level warn log uri pos level warn log uri pos level warn log uri pos level warn log uri pos level warn log uri pos level warn log uri pos level warn log uri pos level warn log uri pos level warn log uri pos level warn log uri pos level warn log uri pos level warn log uri pos level warn log uri pos level warn log uri pos level warn log uri pos level warn log uri pos level warn log uri pos level warn log uri pos level warn log uri pos level warn log uri pos level warn log uri pos submitted in the name of kk from with ❤️
0
79,690
28,496,406,836
IssuesEvent
2023-04-18 14:32:03
vector-im/element-desktop
https://api.github.com/repos/vector-im/element-desktop
opened
Start at login not working
T-Defect
<!-- Please report security issues by email to security@matrix.org --> <!-- 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 "Start automatically after system login" isn't working for me. It's definitely enabled, but at least today, Element didn't start when I logged in. I installed it yesterday on this computer, so I don't know if it's a one-off or not. But it seems like something that either always works, or never works. ### Steps to reproduce - Install Element - Enable said option - Shutdown computer - Go to sleep - Startup computer <!-- 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 <!-- Include screenshots if possible: you can drag and drop images below. --> ### Version information <!-- IMPORTANT: please answer the following questions, to help us narrow down the problem --> - **Platform**: desktop - **OS**: Windows 10 20H2 - **Version**: 1.7.20
1.0
Start at login not working - <!-- Please report security issues by email to security@matrix.org --> <!-- 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 "Start automatically after system login" isn't working for me. It's definitely enabled, but at least today, Element didn't start when I logged in. I installed it yesterday on this computer, so I don't know if it's a one-off or not. But it seems like something that either always works, or never works. ### Steps to reproduce - Install Element - Enable said option - Shutdown computer - Go to sleep - Startup computer <!-- 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 <!-- Include screenshots if possible: you can drag and drop images below. --> ### Version information <!-- IMPORTANT: please answer the following questions, to help us narrow down the problem --> - **Platform**: desktop - **OS**: Windows 10 20H2 - **Version**: 1.7.20
defect
start at login not working 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 start automatically after system login isn t working for me it s definitely enabled but at least today element didn t start when i logged in i installed it yesterday on this computer so i don t know if it s a one off or not but it seems like something that either always works or never works steps to reproduce install element enable said option shutdown computer go to sleep startup computer 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 version information platform desktop os windows version
1
296,800
22,325,052,288
IssuesEvent
2022-06-14 09:51:49
fatiando/boule
https://api.github.com/repos/fatiando/boule
closed
Fix license link and add warning about breaking changes to the README
documentation
**Page that contains the error or needs to be improved (paste link):** README.md **Description of the problem/suggestion:** <!-- Please try to be as specific as possible to help us understand the issue/proposal --> The link to the licence file at the bottom is still RST formatted. Also forgot to add the warning about breaking changes from the documentation front page https://www.fatiando.org/boule/dev/
1.0
Fix license link and add warning about breaking changes to the README - **Page that contains the error or needs to be improved (paste link):** README.md **Description of the problem/suggestion:** <!-- Please try to be as specific as possible to help us understand the issue/proposal --> The link to the licence file at the bottom is still RST formatted. Also forgot to add the warning about breaking changes from the documentation front page https://www.fatiando.org/boule/dev/
non_defect
fix license link and add warning about breaking changes to the readme page that contains the error or needs to be improved paste link readme md description of the problem suggestion the link to the licence file at the bottom is still rst formatted also forgot to add the warning about breaking changes from the documentation front page
0
21,121
3,461,696,103
IssuesEvent
2015-12-20 09:26:25
arti01/jkursy
https://api.github.com/repos/arti01/jkursy
closed
lista pytań do wykładowcy
auto-migrated Priority-Medium Type-Defect
``` lista pytań do wykładowcy (zdjęcia kursantów) jakoś dziwnie się wyświetla, jakby z przerwami, enterami czy cóś ``` Original issue reported on code.google.com by `juko...@gmail.com` on 5 Apr 2011 at 2:02
1.0
lista pytań do wykładowcy - ``` lista pytań do wykładowcy (zdjęcia kursantów) jakoś dziwnie się wyświetla, jakby z przerwami, enterami czy cóś ``` Original issue reported on code.google.com by `juko...@gmail.com` on 5 Apr 2011 at 2:02
defect
lista pytań do wykładowcy lista pytań do wykładowcy zdjęcia kursantów jakoś dziwnie się wyświetla jakby z przerwami enterami czy cóś original issue reported on code google com by juko gmail com on apr at
1
247,525
26,711,705,849
IssuesEvent
2023-01-28 01:26:07
panasalap/linux-4.1.15
https://api.github.com/repos/panasalap/linux-4.1.15
reopened
CVE-2019-3016 (Medium) detected in linuxlinux-4.1.17
security vulnerability
## CVE-2019-3016 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.1.17</b></p></summary> <p> <p>Apache Software Foundation (ASF)</p> <p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p> <p>Found in HEAD commit: <a href="https://github.com/panasalap/linux-4.1.15/commit/aae4c2fa46027fd4c477372871df090c6b94f3f1">aae4c2fa46027fd4c477372871df090c6b94f3f1</a></p> <p>Found in base branch: <b>master</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/include/linux/kvm_types.h</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/include/linux/kvm_types.h</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In a Linux KVM guest that has PV TLB enabled, a process in the guest kernel may be able to read memory locations from another process in the same guest. This problem is limit to the host running linux kernel 4.10 with a guest running linux kernel 4.16 or later. The problem mainly affects AMD processors but Intel CPUs cannot be ruled out. <p>Publish Date: 2020-01-31 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2019-3016>CVE-2019-3016</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>4.7</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: High - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </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-3016">http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-3016</a></p> <p>Release Date: 2020-06-10</p> <p>Fix Resolution: v5.6-rc1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2019-3016 (Medium) detected in linuxlinux-4.1.17 - ## CVE-2019-3016 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.1.17</b></p></summary> <p> <p>Apache Software Foundation (ASF)</p> <p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p> <p>Found in HEAD commit: <a href="https://github.com/panasalap/linux-4.1.15/commit/aae4c2fa46027fd4c477372871df090c6b94f3f1">aae4c2fa46027fd4c477372871df090c6b94f3f1</a></p> <p>Found in base branch: <b>master</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/include/linux/kvm_types.h</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/include/linux/kvm_types.h</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In a Linux KVM guest that has PV TLB enabled, a process in the guest kernel may be able to read memory locations from another process in the same guest. This problem is limit to the host running linux kernel 4.10 with a guest running linux kernel 4.16 or later. The problem mainly affects AMD processors but Intel CPUs cannot be ruled out. <p>Publish Date: 2020-01-31 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2019-3016>CVE-2019-3016</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>4.7</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: High - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </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-3016">http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-3016</a></p> <p>Release Date: 2020-06-10</p> <p>Fix Resolution: v5.6-rc1</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
cve medium detected in linuxlinux cve medium severity vulnerability vulnerable library linuxlinux apache software foundation asf library home page a href found in head commit a href found in base branch master vulnerable source files include linux kvm types h include linux kvm types h vulnerability details in a linux kvm guest that has pv tlb enabled a process in the guest kernel may be able to read memory locations from another process in the same guest this problem is limit to the host running linux kernel with a guest running linux kernel or later the problem mainly affects amd processors but intel cpus cannot be ruled out publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity high privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend
0
261,379
27,809,750,605
IssuesEvent
2023-03-18 01:37:41
madhans23/linux-4.1.15
https://api.github.com/repos/madhans23/linux-4.1.15
closed
CVE-2017-18270 (High) detected in multiple libraries - autoclosed
Mend: dependency security vulnerability
## CVE-2017-18270 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>linux-stable-rtv4.1.33</b>, <b>linux-stable-rtv4.1.33</b>, <b>linux-stable-rtv4.1.33</b></p></summary> <p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In the Linux kernel before 4.13.5, a local user could create keyrings for other users via keyctl commands, setting unwanted defaults or causing a denial of service. <p>Publish Date: 2018-05-18 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2017-18270>CVE-2017-18270</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.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - 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://nvd.nist.gov/vuln/detail/CVE-2017-18270">https://nvd.nist.gov/vuln/detail/CVE-2017-18270</a></p> <p>Release Date: 2018-05-18</p> <p>Fix Resolution: 4.13.5</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2017-18270 (High) detected in multiple libraries - autoclosed - ## CVE-2017-18270 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>linux-stable-rtv4.1.33</b>, <b>linux-stable-rtv4.1.33</b>, <b>linux-stable-rtv4.1.33</b></p></summary> <p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In the Linux kernel before 4.13.5, a local user could create keyrings for other users via keyctl commands, setting unwanted defaults or causing a denial of service. <p>Publish Date: 2018-05-18 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2017-18270>CVE-2017-18270</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.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - 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://nvd.nist.gov/vuln/detail/CVE-2017-18270">https://nvd.nist.gov/vuln/detail/CVE-2017-18270</a></p> <p>Release Date: 2018-05-18</p> <p>Fix Resolution: 4.13.5</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
cve high detected in multiple libraries autoclosed cve high severity vulnerability vulnerable libraries linux stable linux stable linux stable vulnerability details in the linux kernel before a local user could create keyrings for other users via keyctl commands setting unwanted defaults or causing a denial of service publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact none 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
10,449
6,730,420,374
IssuesEvent
2017-10-18 00:48:10
dbanini/taller1_banini_fantini
https://api.github.com/repos/dbanini/taller1_banini_fantini
closed
Imposibilidad al crear cursadas de asignaturas
Usabilidad
Pasos para reproducir: - Crear Asignatura. - Crear Cursada (se crea una cursada para dicha asignatura). - Volver a crear otra cursada. ------------> Error. La nueva cursada no puede ser creada. No se puede volver a crear porque hay superposicion de dias. Si por ejemplo creas una cursada para el domingo dsp no podes crear otras cursadas para otros dias.
True
Imposibilidad al crear cursadas de asignaturas - Pasos para reproducir: - Crear Asignatura. - Crear Cursada (se crea una cursada para dicha asignatura). - Volver a crear otra cursada. ------------> Error. La nueva cursada no puede ser creada. No se puede volver a crear porque hay superposicion de dias. Si por ejemplo creas una cursada para el domingo dsp no podes crear otras cursadas para otros dias.
non_defect
imposibilidad al crear cursadas de asignaturas pasos para reproducir crear asignatura crear cursada se crea una cursada para dicha asignatura volver a crear otra cursada error la nueva cursada no puede ser creada no se puede volver a crear porque hay superposicion de dias si por ejemplo creas una cursada para el domingo dsp no podes crear otras cursadas para otros dias
0
14,589
2,829,609,758
IssuesEvent
2015-05-23 02:06:02
awesomebing1/fuzzdb
https://api.github.com/repos/awesomebing1/fuzzdb
closed
http://www.dailystarjournal.com/calendar/event_0f9c4ec6-732c-11e4-9980-dfe208b06141.html
auto-migrated Priority-Medium Type-Defect
``` http://www.dailystarjournal.com/calendar/event_0f9c4ec6-732c-11e4-9980-dfe208b06 141.html ``` Original issue reported on code.google.com by `sabujhos...@gmail.com` on 23 Nov 2014 at 4:43
1.0
http://www.dailystarjournal.com/calendar/event_0f9c4ec6-732c-11e4-9980-dfe208b06141.html - ``` http://www.dailystarjournal.com/calendar/event_0f9c4ec6-732c-11e4-9980-dfe208b06 141.html ``` Original issue reported on code.google.com by `sabujhos...@gmail.com` on 23 Nov 2014 at 4:43
defect
html original issue reported on code google com by sabujhos gmail com on nov at
1
249,625
21,180,664,048
IssuesEvent
2022-04-08 07:36:11
MicrosoftDocs/edge-developer
https://api.github.com/repos/MicrosoftDocs/edge-developer
closed
Exception error: java.lang.NoClassDefFoundError: net/jodah/failsafe/Policy when executing sample code
needs-more-info cat: test-automation
The sample on this page does not work. When I try to execute this code using TestNG, I get the following error message ``` java.lang.NoClassDefFoundError: net/jodah/failsafe/Policy at org.openqa.selenium.remote.http.ClientConfig.<clinit>(ClientConfig.java:33) at org.openqa.selenium.remote.HttpCommandExecutor.<init>(HttpCommandExecutor.java:95) at org.openqa.selenium.remote.HttpCommandExecutor.<init>(HttpCommandExecutor.java:85) at org.openqa.selenium.remote.HttpCommandExecutor.<init>(HttpCommandExecutor.java:66) at org.openqa.selenium.remote.service.DriverCommandExecutor.<init>(DriverCommandExecutor.java:67) at org.openqa.selenium.ie.InternetExplorerDriver.run(InternetExplorerDriver.java:186) at org.openqa.selenium.ie.InternetExplorerDriver.<init>(InternetExplorerDriver.java:180) at org.openqa.selenium.ie.InternetExplorerDriver.<init>(InternetExplorerDriver.java:156) at xsandbox.EdgeBrowserTest.LaunchBrowser(EdgeBrowserTest.java:24) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:84) at org.testng.internal.Invoker.invokeMethod(Invoker.java:714) at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:901) at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1231) at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:127) at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:111) at org.testng.TestRunner.privateRun(TestRunner.java:767) at org.testng.TestRunner.run(TestRunner.java:617) at org.testng.SuiteRunner.runTest(SuiteRunner.java:334) at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:329) at org.testng.SuiteRunner.privateRun(SuiteRunner.java:291) at org.testng.SuiteRunner.run(SuiteRunner.java:240) at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52) at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86) at org.testng.TestNG.runSuitesSequentially(TestNG.java:1224) at org.testng.TestNG.runSuitesLocally(TestNG.java:1149) at org.testng.TestNG.run(TestNG.java:1057) at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115) at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251) at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77) Caused by: java.lang.ClassNotFoundException: net.jodah.failsafe.Policy at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:581) at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178) at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522) ... 33 more ``` Is there a known fix for this? --- #### Document details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: de9fa537-f960-f6f9-a39f-5ea14b41f01f * Version Independent ID: de9fa537-f960-f6f9-a39f-5ea14b41f01f * Content: [Use Internet Explorer Driver to automate IE mode in Microsoft Edge - Microsoft Edge Development](https://docs.microsoft.com/en-gb/microsoft-edge/webdriver-chromium/ie-mode?tabs=java#the-complete-sample) * Content Source: [microsoft-edge/webdriver-chromium/ie-mode.md](https://github.com/MicrosoftDocs/edge-developer/blob/main/microsoft-edge/webdriver-chromium/ie-mode.md) * Product: **microsoft-edge** * Technology: **devtools** * GitHub Login: @MSEdgeTeam * Microsoft Alias: **msedgedevrel**
1.0
Exception error: java.lang.NoClassDefFoundError: net/jodah/failsafe/Policy when executing sample code - The sample on this page does not work. When I try to execute this code using TestNG, I get the following error message ``` java.lang.NoClassDefFoundError: net/jodah/failsafe/Policy at org.openqa.selenium.remote.http.ClientConfig.<clinit>(ClientConfig.java:33) at org.openqa.selenium.remote.HttpCommandExecutor.<init>(HttpCommandExecutor.java:95) at org.openqa.selenium.remote.HttpCommandExecutor.<init>(HttpCommandExecutor.java:85) at org.openqa.selenium.remote.HttpCommandExecutor.<init>(HttpCommandExecutor.java:66) at org.openqa.selenium.remote.service.DriverCommandExecutor.<init>(DriverCommandExecutor.java:67) at org.openqa.selenium.ie.InternetExplorerDriver.run(InternetExplorerDriver.java:186) at org.openqa.selenium.ie.InternetExplorerDriver.<init>(InternetExplorerDriver.java:180) at org.openqa.selenium.ie.InternetExplorerDriver.<init>(InternetExplorerDriver.java:156) at xsandbox.EdgeBrowserTest.LaunchBrowser(EdgeBrowserTest.java:24) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:84) at org.testng.internal.Invoker.invokeMethod(Invoker.java:714) at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:901) at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1231) at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:127) at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:111) at org.testng.TestRunner.privateRun(TestRunner.java:767) at org.testng.TestRunner.run(TestRunner.java:617) at org.testng.SuiteRunner.runTest(SuiteRunner.java:334) at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:329) at org.testng.SuiteRunner.privateRun(SuiteRunner.java:291) at org.testng.SuiteRunner.run(SuiteRunner.java:240) at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52) at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86) at org.testng.TestNG.runSuitesSequentially(TestNG.java:1224) at org.testng.TestNG.runSuitesLocally(TestNG.java:1149) at org.testng.TestNG.run(TestNG.java:1057) at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115) at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251) at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77) Caused by: java.lang.ClassNotFoundException: net.jodah.failsafe.Policy at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:581) at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178) at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522) ... 33 more ``` Is there a known fix for this? --- #### Document details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: de9fa537-f960-f6f9-a39f-5ea14b41f01f * Version Independent ID: de9fa537-f960-f6f9-a39f-5ea14b41f01f * Content: [Use Internet Explorer Driver to automate IE mode in Microsoft Edge - Microsoft Edge Development](https://docs.microsoft.com/en-gb/microsoft-edge/webdriver-chromium/ie-mode?tabs=java#the-complete-sample) * Content Source: [microsoft-edge/webdriver-chromium/ie-mode.md](https://github.com/MicrosoftDocs/edge-developer/blob/main/microsoft-edge/webdriver-chromium/ie-mode.md) * Product: **microsoft-edge** * Technology: **devtools** * GitHub Login: @MSEdgeTeam * Microsoft Alias: **msedgedevrel**
non_defect
exception error java lang noclassdeffounderror net jodah failsafe policy when executing sample code the sample on this page does not work when i try to execute this code using testng i get the following error message java lang noclassdeffounderror net jodah failsafe policy at org openqa selenium remote http clientconfig clientconfig java at org openqa selenium remote httpcommandexecutor httpcommandexecutor java at org openqa selenium remote httpcommandexecutor httpcommandexecutor java at org openqa selenium remote httpcommandexecutor httpcommandexecutor java at org openqa selenium remote service drivercommandexecutor drivercommandexecutor java at org openqa selenium ie internetexplorerdriver run internetexplorerdriver java at org openqa selenium ie internetexplorerdriver internetexplorerdriver java at org openqa selenium ie internetexplorerdriver internetexplorerdriver java at xsandbox edgebrowsertest launchbrowser edgebrowsertest java at java base jdk internal reflect nativemethodaccessorimpl native method at java base jdk internal reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at java base jdk internal reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java base java lang reflect method invoke method java at org testng internal methodinvocationhelper invokemethod methodinvocationhelper java at org testng internal invoker invokemethod invoker java at org testng internal invoker invoketestmethod invoker java at org testng internal invoker invoketestmethods invoker java at org testng internal testmethodworker invoketestmethods testmethodworker java at org testng internal testmethodworker run testmethodworker java at org testng testrunner privaterun testrunner java at org testng testrunner run testrunner java at org testng suiterunner runtest suiterunner java at org testng suiterunner runsequentially suiterunner java at org testng suiterunner privaterun suiterunner java at org testng suiterunner run suiterunner java at org testng suiterunnerworker runsuite suiterunnerworker java at org testng suiterunnerworker run suiterunnerworker java at org testng testng runsuitessequentially testng java at org testng testng runsuiteslocally testng java at org testng testng run testng java at org testng remote abstractremotetestng run abstractremotetestng java at org testng remote remotetestng initandrun remotetestng java at org testng remote remotetestng main remotetestng java caused by java lang classnotfoundexception net jodah failsafe policy at java base jdk internal loader builtinclassloader loadclass builtinclassloader java at java base jdk internal loader classloaders appclassloader loadclass classloaders java at java base java lang classloader loadclass classloader java more is there a known fix for this document details ⚠ do not edit this section it is required for docs microsoft com ➟ github issue linking id version independent id content content source product microsoft edge technology devtools github login msedgeteam microsoft alias msedgedevrel
0
68,392
21,658,270,221
IssuesEvent
2022-05-06 16:12:59
scipy/scipy
https://api.github.com/repos/scipy/scipy
opened
BUG: spsolve_triangular is way slower than spsolve
defect
### Describe your issue. Hi! I used `spsolve_trianguar` in a project and noticed that is is really slow. Then I compared it to the generic `spsolve` method and this one is indeed a lot faster. I created a mini program that simply solves `Ax=b` for an identity matrix `A` and a zero vector `b` For `n=1000000` the measured time (on a single CPU core) is: ``` spsolve_triangular: 21.094783067703247 seconds spsolve: 0.34332990646362305 seconds ``` On my more advanced triangular matrix the time difference is also in this range. Note that it includes the decomposition steps done in `spsolve`. ### Reproducing Code Example ```python from scipy.sparse.linalg import spsolve from scipy.sparse.linalg import spsolve_triangular import numpy as np import scipy import time n = 1000000 # create a sparse identity matrix and zero vector I = scipy.sparse.identity(n).tocsr() b = np.zeros(n) #compare spsolve_triangular with spsolve start = time.time() x = spsolve_triangular(I, b) stop = time.time() print( "spsolve_triangular:",stop-start,"seconds") start = time.time() x = spsolve(I, b) stop = time.time() print( "spsolve:",stop-start,"seconds") ``` ### Error message ```shell None. But the generic algorithm is much faster than the specialized one. This should not happen. ``` ### SciPy/NumPy/Python version information 1.7.3 1.21.5 sys.version_info(major=3, minor=10, micro=4, releaselevel='final', serial=0)
1.0
BUG: spsolve_triangular is way slower than spsolve - ### Describe your issue. Hi! I used `spsolve_trianguar` in a project and noticed that is is really slow. Then I compared it to the generic `spsolve` method and this one is indeed a lot faster. I created a mini program that simply solves `Ax=b` for an identity matrix `A` and a zero vector `b` For `n=1000000` the measured time (on a single CPU core) is: ``` spsolve_triangular: 21.094783067703247 seconds spsolve: 0.34332990646362305 seconds ``` On my more advanced triangular matrix the time difference is also in this range. Note that it includes the decomposition steps done in `spsolve`. ### Reproducing Code Example ```python from scipy.sparse.linalg import spsolve from scipy.sparse.linalg import spsolve_triangular import numpy as np import scipy import time n = 1000000 # create a sparse identity matrix and zero vector I = scipy.sparse.identity(n).tocsr() b = np.zeros(n) #compare spsolve_triangular with spsolve start = time.time() x = spsolve_triangular(I, b) stop = time.time() print( "spsolve_triangular:",stop-start,"seconds") start = time.time() x = spsolve(I, b) stop = time.time() print( "spsolve:",stop-start,"seconds") ``` ### Error message ```shell None. But the generic algorithm is much faster than the specialized one. This should not happen. ``` ### SciPy/NumPy/Python version information 1.7.3 1.21.5 sys.version_info(major=3, minor=10, micro=4, releaselevel='final', serial=0)
defect
bug spsolve triangular is way slower than spsolve describe your issue hi i used spsolve trianguar in a project and noticed that is is really slow then i compared it to the generic spsolve method and this one is indeed a lot faster i created a mini program that simply solves ax b for an identity matrix a and a zero vector b for n the measured time on a single cpu core is spsolve triangular seconds spsolve seconds on my more advanced triangular matrix the time difference is also in this range note that it includes the decomposition steps done in spsolve reproducing code example python from scipy sparse linalg import spsolve from scipy sparse linalg import spsolve triangular import numpy as np import scipy import time n create a sparse identity matrix and zero vector i scipy sparse identity n tocsr b np zeros n compare spsolve triangular with spsolve start time time x spsolve triangular i b stop time time print spsolve triangular stop start seconds start time time x spsolve i b stop time time print spsolve stop start seconds error message shell none but the generic algorithm is much faster than the specialized one this should not happen scipy numpy python version information sys version info major minor micro releaselevel final serial
1