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
86,710
24,930,948,637
IssuesEvent
2022-10-31 11:34:01
tensorflow/tensorflow
https://api.github.com/repos/tensorflow/tensorflow
closed
Is it possible to compile tflite-runtime python wheel on m1 mac (arm64)?
stat:awaiting response type:build/install stalled comp:lite subtype:macOS TF 2.5
**System information** - OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Mac OS Big Sur version 11.4 - TensorFlow installed from (source or binary): source - TensorFlow version: v2.6.0, v2.5.0 - Python version: 3.8.10 - Bazel version (if compiling from source): 4.1.0 - GCC/Compiler version (if compiling from source): Apple clang version 12.0.5 (clang-1205.0.22.11) - CUDA/cuDNN version: - - GPU model and memory: ``` 16 GB, Type: LPDDR4 Chipset Model: Apple M1 Type: GPU Bus: Built-In Total Number of Cores: 8 Vendor: Apple (0x106b) Metal Family: Supported, Metal GPUFamily Apple 7 ``` **Describe the problem** I tried several following ways of tflite-runtime compilation to python wheel: `sh build_pip_package_with_cmake.sh native` getting: ``` CMake Error at /opt/homebrew/Cellar/cmake/3.21.1/share/cmake/Modules/CMakeTestCCompiler.cmake:69 (message): The C compiler "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc" is not able to compile a simple test program. It fails with the following output: Change Dir: /Users/koubadom/Projects/tensorflow/tensorflow/lite/tools/pip_package/gen/tflite_pip/python3/cmake_build/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/make -f Makefile cmTC_4563f/fast && /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_4563f.dir/build.make CMakeFiles/cmTC_4563f.dir/build Building C object CMakeFiles/cmTC_4563f.dir/testCCompiler.c.o /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -march=native -I/Users/koubadom/miniforge3/include/python3.8 -I/Users/koubadom/miniforge3/lib/python3.8/site-packages/pybind11/include -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.3.sdk -MD -MT CMakeFiles/cmTC_4563f.dir/testCCompiler.c.o -MF CMakeFiles/cmTC_4563f.dir/testCCompiler.c.o.d -o CMakeFiles/cmTC_4563f.dir/testCCompiler.c.o -c /Users/koubadom/Projects/tensorflow/tensorflow/lite/tools/pip_package/gen/tflite_pip/python3/cmake_build/CMakeFiles/CMakeTmp/testCCompiler.c clang: error: the clang compiler does not support '-march=native' make[1]: *** [CMakeFiles/cmTC_4563f.dir/testCCompiler.c.o] Error 1 make: *** [cmTC_4563f/fast] Error 2 CMake will not be able to correctly generate this project. Call Stack (most recent call first): CMakeLists.txt:40 (project) ``` `sh build_pip_package_with_cmake.sh arm64` ``` ld: symbol(s) not found for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation) make[3]: *** [_pywrap_tensorflow_interpreter_wrapper.dylib] Error 1 make[2]: *** [CMakeFiles/_pywrap_tensorflow_interpreter_wrapper.dir/all] Error 2 make[1]: *** [CMakeFiles/_pywrap_tensorflow_interpreter_wrapper.dir/rule] Error 2 make: *** [_pywrap_tensorflow_interpreter_wrapper] Error 2 ``` `sh build_pip_package.sh` ``` ld: symbol(s) not found for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation) make: *** [/Users/koubadom/Projects/tensorflow/tensorflow/lite/tools/make/gen/osx_arm64/bin/benchmark_model_performance_options] Error 1 Traceback (most recent call last): ``` `sh build_pip_package_with_bazel.sh` ``` /private/var/tmp/_bazel_koubadom/4a39adbd2fff0dadf31cbeb460f8aca3/external/io_bazel_rules_go/go/private/sdk.bzl:53:35: in <toplevel> ERROR: Analysis of target '//tensorflow/lite/python/interpreter_wrapper:_pywrap_tensorflow_interpreter_wrapper' failed; build aborted: Configuration Error: Invalid python library path: /usr/lib/python3/dist-packages ``` (I know this looks like some env var is badly set, but I tried everything what come to my mind.) I modified version of bazel in .bazelversion to match 4.1.0. `tensorflow/tools/ci_build/ci_build.sh PI-PYTHON38 \ tensorflow/lite/tools/pip_package/build_pip_package_with_cmake.sh` ``` I got multiple errors especially with `ModuleNotFoundError: No module named 'pybind11'` and bazel version, I do know why, pybind11 is not there, I am sure it is on my local machine, how not in container. ``` All attempts I did on git checkout v2.5.0 and everything is run under arm (not in Rosetta). Is here anybody who was successful doing this obscure task? I might made a lot of mistakes but I am trying hard... If somebody can give me a hint or compiled version for arm without any advice, I am ok with that :D. I would appreciate any version on my platform. Thanks a lot.
1.0
Is it possible to compile tflite-runtime python wheel on m1 mac (arm64)? - **System information** - OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Mac OS Big Sur version 11.4 - TensorFlow installed from (source or binary): source - TensorFlow version: v2.6.0, v2.5.0 - Python version: 3.8.10 - Bazel version (if compiling from source): 4.1.0 - GCC/Compiler version (if compiling from source): Apple clang version 12.0.5 (clang-1205.0.22.11) - CUDA/cuDNN version: - - GPU model and memory: ``` 16 GB, Type: LPDDR4 Chipset Model: Apple M1 Type: GPU Bus: Built-In Total Number of Cores: 8 Vendor: Apple (0x106b) Metal Family: Supported, Metal GPUFamily Apple 7 ``` **Describe the problem** I tried several following ways of tflite-runtime compilation to python wheel: `sh build_pip_package_with_cmake.sh native` getting: ``` CMake Error at /opt/homebrew/Cellar/cmake/3.21.1/share/cmake/Modules/CMakeTestCCompiler.cmake:69 (message): The C compiler "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc" is not able to compile a simple test program. It fails with the following output: Change Dir: /Users/koubadom/Projects/tensorflow/tensorflow/lite/tools/pip_package/gen/tflite_pip/python3/cmake_build/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/make -f Makefile cmTC_4563f/fast && /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_4563f.dir/build.make CMakeFiles/cmTC_4563f.dir/build Building C object CMakeFiles/cmTC_4563f.dir/testCCompiler.c.o /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -march=native -I/Users/koubadom/miniforge3/include/python3.8 -I/Users/koubadom/miniforge3/lib/python3.8/site-packages/pybind11/include -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.3.sdk -MD -MT CMakeFiles/cmTC_4563f.dir/testCCompiler.c.o -MF CMakeFiles/cmTC_4563f.dir/testCCompiler.c.o.d -o CMakeFiles/cmTC_4563f.dir/testCCompiler.c.o -c /Users/koubadom/Projects/tensorflow/tensorflow/lite/tools/pip_package/gen/tflite_pip/python3/cmake_build/CMakeFiles/CMakeTmp/testCCompiler.c clang: error: the clang compiler does not support '-march=native' make[1]: *** [CMakeFiles/cmTC_4563f.dir/testCCompiler.c.o] Error 1 make: *** [cmTC_4563f/fast] Error 2 CMake will not be able to correctly generate this project. Call Stack (most recent call first): CMakeLists.txt:40 (project) ``` `sh build_pip_package_with_cmake.sh arm64` ``` ld: symbol(s) not found for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation) make[3]: *** [_pywrap_tensorflow_interpreter_wrapper.dylib] Error 1 make[2]: *** [CMakeFiles/_pywrap_tensorflow_interpreter_wrapper.dir/all] Error 2 make[1]: *** [CMakeFiles/_pywrap_tensorflow_interpreter_wrapper.dir/rule] Error 2 make: *** [_pywrap_tensorflow_interpreter_wrapper] Error 2 ``` `sh build_pip_package.sh` ``` ld: symbol(s) not found for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation) make: *** [/Users/koubadom/Projects/tensorflow/tensorflow/lite/tools/make/gen/osx_arm64/bin/benchmark_model_performance_options] Error 1 Traceback (most recent call last): ``` `sh build_pip_package_with_bazel.sh` ``` /private/var/tmp/_bazel_koubadom/4a39adbd2fff0dadf31cbeb460f8aca3/external/io_bazel_rules_go/go/private/sdk.bzl:53:35: in <toplevel> ERROR: Analysis of target '//tensorflow/lite/python/interpreter_wrapper:_pywrap_tensorflow_interpreter_wrapper' failed; build aborted: Configuration Error: Invalid python library path: /usr/lib/python3/dist-packages ``` (I know this looks like some env var is badly set, but I tried everything what come to my mind.) I modified version of bazel in .bazelversion to match 4.1.0. `tensorflow/tools/ci_build/ci_build.sh PI-PYTHON38 \ tensorflow/lite/tools/pip_package/build_pip_package_with_cmake.sh` ``` I got multiple errors especially with `ModuleNotFoundError: No module named 'pybind11'` and bazel version, I do know why, pybind11 is not there, I am sure it is on my local machine, how not in container. ``` All attempts I did on git checkout v2.5.0 and everything is run under arm (not in Rosetta). Is here anybody who was successful doing this obscure task? I might made a lot of mistakes but I am trying hard... If somebody can give me a hint or compiled version for arm without any advice, I am ok with that :D. I would appreciate any version on my platform. Thanks a lot.
non_defect
is it possible to compile tflite runtime python wheel on mac system information os platform and distribution e g linux ubuntu mac os big sur version tensorflow installed from source or binary source tensorflow version python version bazel version if compiling from source gcc compiler version if compiling from source apple clang version clang cuda cudnn version gpu model and memory gb type chipset model apple type gpu bus built in total number of cores vendor apple metal family supported metal gpufamily apple describe the problem i tried several following ways of tflite runtime compilation to python wheel sh build pip package with cmake sh native getting cmake error at opt homebrew cellar cmake share cmake modules cmaketestccompiler cmake message the c compiler applications xcode app contents developer toolchains xcodedefault xctoolchain usr bin cc is not able to compile a simple test program it fails with the following output change dir users koubadom projects tensorflow tensorflow lite tools pip package gen tflite pip cmake build cmakefiles cmaketmp run build command s usr bin make f makefile cmtc fast applications xcode app contents developer usr bin make f cmakefiles cmtc dir build make cmakefiles cmtc dir build building c object cmakefiles cmtc dir testccompiler c o applications xcode app contents developer toolchains xcodedefault xctoolchain usr bin cc march native i users koubadom include i users koubadom lib site packages include arch isysroot applications xcode app contents developer platforms macosx platform developer sdks sdk md mt cmakefiles cmtc dir testccompiler c o mf cmakefiles cmtc dir testccompiler c o d o cmakefiles cmtc dir testccompiler c o c users koubadom projects tensorflow tensorflow lite tools pip package gen tflite pip cmake build cmakefiles cmaketmp testccompiler c clang error the clang compiler does not support march native make error make error cmake will not be able to correctly generate this project call stack most recent call first cmakelists txt project sh build pip package with cmake sh ld symbol s not found for architecture clang error linker command failed with exit code use v to see invocation make error make error make error make error sh build pip package sh ld symbol s not found for architecture clang error linker command failed with exit code use v to see invocation make error traceback most recent call last sh build pip package with bazel sh private var tmp bazel koubadom external io bazel rules go go private sdk bzl in error analysis of target tensorflow lite python interpreter wrapper pywrap tensorflow interpreter wrapper failed build aborted configuration error invalid python library path usr lib dist packages i know this looks like some env var is badly set but i tried everything what come to my mind i modified version of bazel in bazelversion to match tensorflow tools ci build ci build sh pi tensorflow lite tools pip package build pip package with cmake sh i got multiple errors especially with modulenotfounderror no module named and bazel version i do know why is not there i am sure it is on my local machine how not in container all attempts i did on git checkout and everything is run under arm not in rosetta is here anybody who was successful doing this obscure task i might made a lot of mistakes but i am trying hard if somebody can give me a hint or compiled version for arm without any advice i am ok with that d i would appreciate any version on my platform thanks a lot
0
66,445
8,016,384,202
IssuesEvent
2018-07-25 13:13:09
openMF/web-app
https://api.github.com/repos/openMF/web-app
opened
Refactor code structure
c4gw design enhancement good first issue
src/app/clients/address then include below - create address - edit address Also look for more possible refactor
1.0
Refactor code structure - src/app/clients/address then include below - create address - edit address Also look for more possible refactor
non_defect
refactor code structure src app clients address then include below create address edit address also look for more possible refactor
0
538,263
15,765,652,474
IssuesEvent
2021-03-31 14:20:49
mskcc/pluto-cwl
https://api.github.com/repos/mskcc/pluto-cwl
opened
add sample concordance / discordance comparisons
high priority
Need to include information about concordant and discordant variants between a number of samples. The most basic case is 1 research sample vs. 1 clinical sample. We already have - [`samples_fillout_workflow.cwl`](https://github.com/mskcc/pluto-cwl/blob/master/cwl/samples_fillout_workflow.cwl) for doing fillout on a set of samples, each with their own maf files (variant list) - [`fillout_workflow.cwl`](https://github.com/mskcc/pluto-cwl/blob/master/cwl/fillout_workflow.cwl) I think `samples_fillout_workflow.cwl` might fit this use case, however it could also be supplemented with `bcftools isec` as per #41 and Conpair/Somalier/etc. as per #32 Need to wrap all this up into a single cohesive package as per #46
1.0
add sample concordance / discordance comparisons - Need to include information about concordant and discordant variants between a number of samples. The most basic case is 1 research sample vs. 1 clinical sample. We already have - [`samples_fillout_workflow.cwl`](https://github.com/mskcc/pluto-cwl/blob/master/cwl/samples_fillout_workflow.cwl) for doing fillout on a set of samples, each with their own maf files (variant list) - [`fillout_workflow.cwl`](https://github.com/mskcc/pluto-cwl/blob/master/cwl/fillout_workflow.cwl) I think `samples_fillout_workflow.cwl` might fit this use case, however it could also be supplemented with `bcftools isec` as per #41 and Conpair/Somalier/etc. as per #32 Need to wrap all this up into a single cohesive package as per #46
non_defect
add sample concordance discordance comparisons need to include information about concordant and discordant variants between a number of samples the most basic case is research sample vs clinical sample we already have for doing fillout on a set of samples each with their own maf files variant list i think samples fillout workflow cwl might fit this use case however it could also be supplemented with bcftools isec as per and conpair somalier etc as per need to wrap all this up into a single cohesive package as per
0
583,482
17,390,037,806
IssuesEvent
2021-08-02 05:46:04
returntocorp/semgrep
https://api.github.com/repos/returntocorp/semgrep
closed
(x) => `${x}` yields unexpected match for raw-html-concat rule
bug lang:javascript priority:medium user:external
https://semgrep.dev/s/JjOd?registry=javascript.browser.security.raw-html-concat.raw-html-concat I have some backend code that seems to be returning a false positive for this rule. Here is the code: https://semgrep.dev/s/jasoncubic:false-positive-for-html-xss-in-backend-code??registry=javascript.browser.security.raw-html-concat.raw-html-concat
1.0
(x) => `${x}` yields unexpected match for raw-html-concat rule - https://semgrep.dev/s/JjOd?registry=javascript.browser.security.raw-html-concat.raw-html-concat I have some backend code that seems to be returning a false positive for this rule. Here is the code: https://semgrep.dev/s/jasoncubic:false-positive-for-html-xss-in-backend-code??registry=javascript.browser.security.raw-html-concat.raw-html-concat
non_defect
x x yields unexpected match for raw html concat rule i have some backend code that seems to be returning a false positive for this rule here is the code
0
23,505
2,659,906,000
IssuesEvent
2015-03-19 00:25:44
perfsonar/project
https://api.github.com/repos/perfsonar/project
closed
Ability to plot IPv4 and IPv6 separately on same graph
Component-GUI Milestone-Release3.5 Priority-Medium Type-Enhancement
Original [issue 1002](https://code.google.com/p/perfsonar-ps/issues/detail?id=1002) created by arlake228 on 2014-10-15T14:54:08.000Z: It was requested that it would be nice to have the option to split IPv4 and IPv6 lines for the same data type. For example have a line for IPv6 throughput and IPv4 throughput so they could be compared.
1.0
Ability to plot IPv4 and IPv6 separately on same graph - Original [issue 1002](https://code.google.com/p/perfsonar-ps/issues/detail?id=1002) created by arlake228 on 2014-10-15T14:54:08.000Z: It was requested that it would be nice to have the option to split IPv4 and IPv6 lines for the same data type. For example have a line for IPv6 throughput and IPv4 throughput so they could be compared.
non_defect
ability to plot and separately on same graph original created by on it was requested that it would be nice to have the option to split and lines for the same data type for example have a line for throughput and throughput so they could be compared
0
215,638
7,296,164,964
IssuesEvent
2018-02-26 09:51:37
ballerina-platform/ballerina-message-broker
https://api.github.com/repos/ballerina-platform/ballerina-message-broker
closed
Fix column alignments in CLI help logs
Complexity/Moderate Module/cli-client Priority/Normal Severity/Minor Type/Improvement
**Description:** Columns in CLI help logs are not aligned properly. (eg: command and the description) Those should be aligned. Eg: following Retrieve information on resource(s) in the Broker ``` Usage: ./broker-admin.sh list [command] Commands: exchange List exchange(s) in the Broker queue List queue(s) in the Broker Global Flags: --verbose, -v enable verbose mode (Default: false) --help, -h ask for help ``` **Suggested Labels:** <!-- Optional comma separated list of suggested labels. Non committers can’t assign labels to issues, so this will help issue creators who are not a committer to suggest possible labels--> **Suggested Assignees:** <!--Optional comma separated list of suggested team members who should attend the issue. Non committers can’t assign issues to assignees, so this will help issue creators who are not a committer to suggest possible assignees--> **Affected Product Version:** **OS, DB, other environment details and versions:** **Steps to reproduce:** **Related Issues:** <!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. -->
1.0
Fix column alignments in CLI help logs - **Description:** Columns in CLI help logs are not aligned properly. (eg: command and the description) Those should be aligned. Eg: following Retrieve information on resource(s) in the Broker ``` Usage: ./broker-admin.sh list [command] Commands: exchange List exchange(s) in the Broker queue List queue(s) in the Broker Global Flags: --verbose, -v enable verbose mode (Default: false) --help, -h ask for help ``` **Suggested Labels:** <!-- Optional comma separated list of suggested labels. Non committers can’t assign labels to issues, so this will help issue creators who are not a committer to suggest possible labels--> **Suggested Assignees:** <!--Optional comma separated list of suggested team members who should attend the issue. Non committers can’t assign issues to assignees, so this will help issue creators who are not a committer to suggest possible assignees--> **Affected Product Version:** **OS, DB, other environment details and versions:** **Steps to reproduce:** **Related Issues:** <!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. -->
non_defect
fix column alignments in cli help logs description columns in cli help logs are not aligned properly eg command and the description those should be aligned eg following retrieve information on resource s in the broker usage broker admin sh list commands exchange list exchange s in the broker queue list queue s in the broker global flags verbose v enable verbose mode default false help h ask for help suggested labels suggested assignees affected product version os db other environment details and versions steps to reproduce related issues
0
77,672
27,104,033,302
IssuesEvent
2023-02-15 10:44:29
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
opened
Sorting DMs by activity is not working right on develop
T-Defect S-Major A-DMs
### Steps to reproduce 1. Look at the DM list in the left panel 2. Check that you have it set to "sort by activity" ### Outcome #### What did you expect? DMs are sorted by activity #### What happened instead? DMs are in a random order and don't reflect who you've talked to recently ### Operating system _No response_ ### Browser information Chromium 110.0.5481.77 (Official Build) Arch Linux (64-bit) ### URL for webapp develop.element.io ### Application version Element version: dfe2a21b5860-react-a4ff959aa184-js-cdd7dbbb2b12 Olm version: 3.2.12 ### Homeserver matrix.org ### Will you send logs? Yes
1.0
Sorting DMs by activity is not working right on develop - ### Steps to reproduce 1. Look at the DM list in the left panel 2. Check that you have it set to "sort by activity" ### Outcome #### What did you expect? DMs are sorted by activity #### What happened instead? DMs are in a random order and don't reflect who you've talked to recently ### Operating system _No response_ ### Browser information Chromium 110.0.5481.77 (Official Build) Arch Linux (64-bit) ### URL for webapp develop.element.io ### Application version Element version: dfe2a21b5860-react-a4ff959aa184-js-cdd7dbbb2b12 Olm version: 3.2.12 ### Homeserver matrix.org ### Will you send logs? Yes
defect
sorting dms by activity is not working right on develop steps to reproduce look at the dm list in the left panel check that you have it set to sort by activity outcome what did you expect dms are sorted by activity what happened instead dms are in a random order and don t reflect who you ve talked to recently operating system no response browser information chromium official build arch linux bit url for webapp develop element io application version element version react js olm version homeserver matrix org will you send logs yes
1
23,768
7,374,159,132
IssuesEvent
2018-03-13 19:25:56
ngageoint/hootenanny
https://api.github.com/repos/ngageoint/hootenanny
opened
Omit UI buildInfo.json from archive
Category: Build Category: Services Category: UI Priority: High
In #2241 I removed the `services-build` target when creating the packaging archive. This created a regression when running `make archive`, leading to failures like this: ``` # Copy the buildInfo.json file for hoot services if [ "services" == "services" ]; then mkdir -p hootenanny-0.2.39_20_g672adde/hoot-ui/data; cp hoot-ui/data/buildInfo.json hootenanny-0.2.39_20_g672adde/hoot-ui/data; fi make[1]: Leaving directory `/rpmbuild/hootenanny' ```
1.0
Omit UI buildInfo.json from archive - In #2241 I removed the `services-build` target when creating the packaging archive. This created a regression when running `make archive`, leading to failures like this: ``` # Copy the buildInfo.json file for hoot services if [ "services" == "services" ]; then mkdir -p hootenanny-0.2.39_20_g672adde/hoot-ui/data; cp hoot-ui/data/buildInfo.json hootenanny-0.2.39_20_g672adde/hoot-ui/data; fi make[1]: Leaving directory `/rpmbuild/hootenanny' ```
non_defect
omit ui buildinfo json from archive in i removed the services build target when creating the packaging archive this created a regression when running make archive leading to failures like this copy the buildinfo json file for hoot services if then mkdir p hootenanny hoot ui data cp hoot ui data buildinfo json hootenanny hoot ui data fi make leaving directory rpmbuild hootenanny
0
48,936
13,184,780,760
IssuesEvent
2020-08-12 20:04:55
icecube-trac/tix3
https://api.github.com/repos/icecube-trac/tix3
opened
rootwriter does not store enum strings correctly for arrays of enums (Trac #482)
Incomplete Migration Migrated from Trac defect tableio
<details> <summary>_Migrated from https://code.icecube.wisc.edu/ticket/482 , reported by kislat and owned by jvansanten_</summary> <p> ```json { "status": "closed", "changetime": "2015-02-24T10:34:44", "description": "'''Background'''\nWhen writing enum fields to a tree, rootwriter creates two branches, one with the numeric value of the enum and one with a string representation. The name of the second branch is that of the field with \"_String\" appended. The type string of this branch is \"/C\" or \"/C[num]\" or \"/C[num1][num2]\" for one or two-dimensional arrays as they can arise if the field is an array or it is a multi-row field or both. \"C\" means the data type is a NULL terminated character array.\n\nWhile the string field was meant mostly for convenience, it now became more important since I3Particle::type numbering changed to PDG numbers.\n\n'''The problem'''\nWhile root can handle strings in \"C\" type fields, it cannot handle arrays of strings, i.e. \"/C[num]\" or \"/C[num1][num2]\" don't work. Mariola ran into this problem when dealing with I3MCTree. ROOT will always only show the first entry. There is no way to retrieve the other entries (probably they're not even being stored).\n\n'''The solution'''\nThis is a known issue, see these two links:\n\nhttp://root.cern.ch/phpBB3/viewtopic.php?f=3&t=1572\n\nhttp://osdir.com/ml/lang.c++.root/2005-02/msg00049.html\n\nThese also describe the basic solution. I3ROOTBranchWrapperEnum has to be changed to store either a TObjArray of TString or std::vector<std::string> in the _String branch when dealing with an array of strings. For consistency, the case of a single entry should then also be changed.\n\n'''Possible issues'''\nI don't know how root will deal with such branches in Draw commands. So far (at least for the single entry case) ROOT was able to create histograms with string labels on the x-axis when drawing things like I3Particle::type. Not sure if that will still be possible. Also, people might have existing code to deal with the single entry case. It is somewhat less likely that there is code that uses the array case because if that were so, people would probably have seen the issue before.", "reporter": "kislat", "cc": "fkislat@physics.wustl.edu", "resolution": "wontfix", "_ts": "1424774084252477", "component": "tableio", "summary": "rootwriter does not store enum strings correctly for arrays of enums", "priority": "normal", "keywords": "", "time": "2014-01-28T21:29:36", "milestone": "", "owner": "jvansanten", "type": "defect" } ``` </p> </details>
1.0
rootwriter does not store enum strings correctly for arrays of enums (Trac #482) - <details> <summary>_Migrated from https://code.icecube.wisc.edu/ticket/482 , reported by kislat and owned by jvansanten_</summary> <p> ```json { "status": "closed", "changetime": "2015-02-24T10:34:44", "description": "'''Background'''\nWhen writing enum fields to a tree, rootwriter creates two branches, one with the numeric value of the enum and one with a string representation. The name of the second branch is that of the field with \"_String\" appended. The type string of this branch is \"/C\" or \"/C[num]\" or \"/C[num1][num2]\" for one or two-dimensional arrays as they can arise if the field is an array or it is a multi-row field or both. \"C\" means the data type is a NULL terminated character array.\n\nWhile the string field was meant mostly for convenience, it now became more important since I3Particle::type numbering changed to PDG numbers.\n\n'''The problem'''\nWhile root can handle strings in \"C\" type fields, it cannot handle arrays of strings, i.e. \"/C[num]\" or \"/C[num1][num2]\" don't work. Mariola ran into this problem when dealing with I3MCTree. ROOT will always only show the first entry. There is no way to retrieve the other entries (probably they're not even being stored).\n\n'''The solution'''\nThis is a known issue, see these two links:\n\nhttp://root.cern.ch/phpBB3/viewtopic.php?f=3&t=1572\n\nhttp://osdir.com/ml/lang.c++.root/2005-02/msg00049.html\n\nThese also describe the basic solution. I3ROOTBranchWrapperEnum has to be changed to store either a TObjArray of TString or std::vector<std::string> in the _String branch when dealing with an array of strings. For consistency, the case of a single entry should then also be changed.\n\n'''Possible issues'''\nI don't know how root will deal with such branches in Draw commands. So far (at least for the single entry case) ROOT was able to create histograms with string labels on the x-axis when drawing things like I3Particle::type. Not sure if that will still be possible. Also, people might have existing code to deal with the single entry case. It is somewhat less likely that there is code that uses the array case because if that were so, people would probably have seen the issue before.", "reporter": "kislat", "cc": "fkislat@physics.wustl.edu", "resolution": "wontfix", "_ts": "1424774084252477", "component": "tableio", "summary": "rootwriter does not store enum strings correctly for arrays of enums", "priority": "normal", "keywords": "", "time": "2014-01-28T21:29:36", "milestone": "", "owner": "jvansanten", "type": "defect" } ``` </p> </details>
defect
rootwriter does not store enum strings correctly for arrays of enums trac migrated from reported by kislat and owned by jvansanten json status closed changetime description background nwhen writing enum fields to a tree rootwriter creates two branches one with the numeric value of the enum and one with a string representation the name of the second branch is that of the field with string appended the type string of this branch is c or c or c for one or two dimensional arrays as they can arise if the field is an array or it is a multi row field or both c means the data type is a null terminated character array n nwhile the string field was meant mostly for convenience it now became more important since type numbering changed to pdg numbers n n the problem nwhile root can handle strings in c type fields it cannot handle arrays of strings i e c or c don t work mariola ran into this problem when dealing with root will always only show the first entry there is no way to retrieve the other entries probably they re not even being stored n n the solution nthis is a known issue see these two links n n also describe the basic solution has to be changed to store either a tobjarray of tstring or std vector in the string branch when dealing with an array of strings for consistency the case of a single entry should then also be changed n n possible issues ni don t know how root will deal with such branches in draw commands so far at least for the single entry case root was able to create histograms with string labels on the x axis when drawing things like type not sure if that will still be possible also people might have existing code to deal with the single entry case it is somewhat less likely that there is code that uses the array case because if that were so people would probably have seen the issue before reporter kislat cc fkislat physics wustl edu resolution wontfix ts component tableio summary rootwriter does not store enum strings correctly for arrays of enums priority normal keywords time milestone owner jvansanten type defect
1
30,620
6,195,712,530
IssuesEvent
2017-07-05 13:17:28
AsyncHttpClient/async-http-client
https://api.github.com/repos/AsyncHttpClient/async-http-client
closed
RealmTest.testStrongDigest random failure on Travis
Defect
`RealmTest.testStrongDigest:99 expected [ca81aa346c59feac0fed225ed6c2ca] but found [00ca81aa346c59feac0fed225ed6c2ca]`
1.0
RealmTest.testStrongDigest random failure on Travis - `RealmTest.testStrongDigest:99 expected [ca81aa346c59feac0fed225ed6c2ca] but found [00ca81aa346c59feac0fed225ed6c2ca]`
defect
realmtest teststrongdigest random failure on travis realmtest teststrongdigest expected but found
1
54,931
13,486,503,517
IssuesEvent
2020-09-11 09:33:01
ckeditor/ckeditor5
https://api.github.com/repos/ckeditor/ckeditor5
closed
Consider enabling AutoLink in all builds
intro package:build-balloon package:build-balloon-block package:build-classic package:build-decoupled-document package:build-inline squad:ux type:task
## Provide a description of the task Demo is here: https://ckeditor5.github.io/docs/nightly/ckeditor5/latest/features/link.html#autolink-feature Do we want this feature in all builds? I'm :+1:
5.0
Consider enabling AutoLink in all builds - ## Provide a description of the task Demo is here: https://ckeditor5.github.io/docs/nightly/ckeditor5/latest/features/link.html#autolink-feature Do we want this feature in all builds? I'm :+1:
non_defect
consider enabling autolink in all builds provide a description of the task demo is here do we want this feature in all builds i m
0
3,236
5,654,224,190
IssuesEvent
2017-04-09 06:28:39
VanHackathon2017HueBR/presentation-builder
https://api.github.com/repos/VanHackathon2017HueBR/presentation-builder
closed
Split pdf into images
Requirement
Create js component to split pdf into images. Receives a file and returns a array of bytes
1.0
Split pdf into images - Create js component to split pdf into images. Receives a file and returns a array of bytes
non_defect
split pdf into images create js component to split pdf into images receives a file and returns a array of bytes
0
78,560
27,587,725,783
IssuesEvent
2023-03-08 21:13:28
department-of-veterans-affairs/va.gov-team
https://api.github.com/repos/department-of-veterans-affairs/va.gov-team
closed
508-defect-2: Long file names overflow small screens
bug frontend 508/Accessibility 508-defect-2 Supplemental Claims benefits-team-1 squad-2
### Point of contact Josh Kim ### Severity level 2, Serious. Should be fixed in 1-2 sprints post-launch. ### Details On a small (e.g. 320 pixel wide) screen, when uploading a long file the upload card will overflow and go off screen ![super_long_file_name_123412345234623562362346234623462346.pdf file name extends off the screen. This also causes the document type select](https://user-images.githubusercontent.com/136959/222539427-85db6c03-198b-46fa-9cfd-8e026ad84c66.png) ### Reproduction steps 1. In staging, log into any of the [HLR users](https://github.com/department-of-veterans-affairs/va.gov-team-sensitive/blob/master/Administrative/vagov-users/staging-test-accounts-HLR.md) 3. Go to [Supplemental Claims form](https://staging.va.gov/decision-reviews/supplemental-claim/file-supplemental-claim-form-20-0995) 4. Navigate to the evidence upload page (choose yes) 5. Upload a file name with a really long name 6. Shrink browser width to cause the file name to overflow (depends on file name length) ### Proposed solution or next steps Use CSS to force wrap the long file name ### References, articles, or WCAG support 1. 2. 3. ... ### Type of issue - [ ] Screenreader - [ ] Keyboard - [ ] Focus - [ ] Headings - [ ] Color - [X] Zoom - [ ] Semantics - [ ] Axe-core - [ ] Something else
1.0
508-defect-2: Long file names overflow small screens - ### Point of contact Josh Kim ### Severity level 2, Serious. Should be fixed in 1-2 sprints post-launch. ### Details On a small (e.g. 320 pixel wide) screen, when uploading a long file the upload card will overflow and go off screen ![super_long_file_name_123412345234623562362346234623462346.pdf file name extends off the screen. This also causes the document type select](https://user-images.githubusercontent.com/136959/222539427-85db6c03-198b-46fa-9cfd-8e026ad84c66.png) ### Reproduction steps 1. In staging, log into any of the [HLR users](https://github.com/department-of-veterans-affairs/va.gov-team-sensitive/blob/master/Administrative/vagov-users/staging-test-accounts-HLR.md) 3. Go to [Supplemental Claims form](https://staging.va.gov/decision-reviews/supplemental-claim/file-supplemental-claim-form-20-0995) 4. Navigate to the evidence upload page (choose yes) 5. Upload a file name with a really long name 6. Shrink browser width to cause the file name to overflow (depends on file name length) ### Proposed solution or next steps Use CSS to force wrap the long file name ### References, articles, or WCAG support 1. 2. 3. ... ### Type of issue - [ ] Screenreader - [ ] Keyboard - [ ] Focus - [ ] Headings - [ ] Color - [X] Zoom - [ ] Semantics - [ ] Axe-core - [ ] Something else
defect
defect long file names overflow small screens point of contact josh kim severity level serious should be fixed in sprints post launch details on a small e g pixel wide screen when uploading a long file the upload card will overflow and go off screen reproduction steps in staging log into any of the go to navigate to the evidence upload page choose yes upload a file name with a really long name shrink browser width to cause the file name to overflow depends on file name length proposed solution or next steps use css to force wrap the long file name references articles or wcag support type of issue screenreader keyboard focus headings color zoom semantics axe core something else
1
31,260
2,732,889,706
IssuesEvent
2015-04-17 10:01:00
tiku01/oryx-editor
https://api.github.com/repos/tiku01/oryx-editor
closed
Centralize the webapp name
auto-migrated Priority-Medium Type-Enhancement
``` What is the problem? The /oryx path is used throughout the application without control. What should be done alternatively? We should make this all configurable: one mention of /oryx in EditorHandler, and one in config.js are enough to get going. Please see the attached patch (created under the editor subfolder). ``` Original issue reported on code.google.com by `antoine....@gmail.com` on 9 Jun 2010 at 1:21 Attachments: * [patch_make_webapp_configurable.patch](https://storage.googleapis.com/google-code-attachments/oryx-editor/issue-434/comment-0/patch_make_webapp_configurable.patch)
1.0
Centralize the webapp name - ``` What is the problem? The /oryx path is used throughout the application without control. What should be done alternatively? We should make this all configurable: one mention of /oryx in EditorHandler, and one in config.js are enough to get going. Please see the attached patch (created under the editor subfolder). ``` Original issue reported on code.google.com by `antoine....@gmail.com` on 9 Jun 2010 at 1:21 Attachments: * [patch_make_webapp_configurable.patch](https://storage.googleapis.com/google-code-attachments/oryx-editor/issue-434/comment-0/patch_make_webapp_configurable.patch)
non_defect
centralize the webapp name what is the problem the oryx path is used throughout the application without control what should be done alternatively we should make this all configurable one mention of oryx in editorhandler and one in config js are enough to get going please see the attached patch created under the editor subfolder original issue reported on code google com by antoine gmail com on jun at attachments
0
17,977
3,013,839,881
IssuesEvent
2015-07-29 11:36:54
yawlfoundation/yawl
https://api.github.com/repos/yawlfoundation/yawl
closed
Cannot load corrupt save file, missing decomposition definition
auto-migrated Priority-Medium Type-Defect
``` What steps will reproduce the problem? Attached file "STU_v4.yawl" is an example of a corrupted save file. The steps to reproduce this corrupted file are not known, but suspected to be related to errors during saving. What is the expected output? What do you see instead? Expected is that the file (attached, "STU_v4.yawl") will be opened in the YAWL editor or on the YAWL engine webpage. Instead, the editor silently fails, and the engine reports a null pointer exception on line 253 of org.yawlfoundation.yawl.unmarshal.YDecompositionParser due to not initializing the variable task on line 203 of the same file. What version of the product are you using? On what operating system? YAWL version 3.0 (editor build 530) Windows 7/8 Java 7/8 Please provide any additional information below. Manual inspection of the corrupted save file "STU_v4.yawl" yielded the following result: There is a task with a decomposition reference, xml snippet: <decomposesTo id="..." /> However, the corresponding definition is not present in the file. I.e., we are missing a xml snippet of the form: <decomposition id="..." xsi:type="WebServiceGatewayFactsType"> <name>…</name> <externalInteraction>manual</externalInteraction> </decomposition> As a consequence, the decomposition reference cannot be resolved, hence the type is unknown. Thus the task variable remains null, triggering the null pointer exception. We manually added a simple decomposition definition, see attachment "STU_v4-fixed.yawl", which loads correctly in the editor and engine. ``` Original issue reported on code.google.com by `maikel.l...@gmail.com` on 20 Mar 2015 at 3:19 Attachments: * [STU_v4.yawl](https://storage.googleapis.com/google-code-attachments/yawl/issue-544/comment-0/STU_v4.yawl) * [STU_v4-fixed.yawl](https://storage.googleapis.com/google-code-attachments/yawl/issue-544/comment-0/STU_v4-fixed.yawl)
1.0
Cannot load corrupt save file, missing decomposition definition - ``` What steps will reproduce the problem? Attached file "STU_v4.yawl" is an example of a corrupted save file. The steps to reproduce this corrupted file are not known, but suspected to be related to errors during saving. What is the expected output? What do you see instead? Expected is that the file (attached, "STU_v4.yawl") will be opened in the YAWL editor or on the YAWL engine webpage. Instead, the editor silently fails, and the engine reports a null pointer exception on line 253 of org.yawlfoundation.yawl.unmarshal.YDecompositionParser due to not initializing the variable task on line 203 of the same file. What version of the product are you using? On what operating system? YAWL version 3.0 (editor build 530) Windows 7/8 Java 7/8 Please provide any additional information below. Manual inspection of the corrupted save file "STU_v4.yawl" yielded the following result: There is a task with a decomposition reference, xml snippet: <decomposesTo id="..." /> However, the corresponding definition is not present in the file. I.e., we are missing a xml snippet of the form: <decomposition id="..." xsi:type="WebServiceGatewayFactsType"> <name>…</name> <externalInteraction>manual</externalInteraction> </decomposition> As a consequence, the decomposition reference cannot be resolved, hence the type is unknown. Thus the task variable remains null, triggering the null pointer exception. We manually added a simple decomposition definition, see attachment "STU_v4-fixed.yawl", which loads correctly in the editor and engine. ``` Original issue reported on code.google.com by `maikel.l...@gmail.com` on 20 Mar 2015 at 3:19 Attachments: * [STU_v4.yawl](https://storage.googleapis.com/google-code-attachments/yawl/issue-544/comment-0/STU_v4.yawl) * [STU_v4-fixed.yawl](https://storage.googleapis.com/google-code-attachments/yawl/issue-544/comment-0/STU_v4-fixed.yawl)
defect
cannot load corrupt save file missing decomposition definition what steps will reproduce the problem attached file stu yawl is an example of a corrupted save file the steps to reproduce this corrupted file are not known but suspected to be related to errors during saving what is the expected output what do you see instead expected is that the file attached stu yawl will be opened in the yawl editor or on the yawl engine webpage instead the editor silently fails and the engine reports a null pointer exception on line of org yawlfoundation yawl unmarshal ydecompositionparser due to not initializing the variable task on line of the same file what version of the product are you using on what operating system yawl version editor build windows java please provide any additional information below manual inspection of the corrupted save file stu yawl yielded the following result there is a task with a decomposition reference xml snippet however the corresponding definition is not present in the file i e we are missing a xml snippet of the form … manual as a consequence the decomposition reference cannot be resolved hence the type is unknown thus the task variable remains null triggering the null pointer exception we manually added a simple decomposition definition see attachment stu fixed yawl which loads correctly in the editor and engine original issue reported on code google com by maikel l gmail com on mar at attachments
1
29,049
5,513,405,444
IssuesEvent
2017-03-17 12:27:54
pvanek/qlipper
https://api.github.com/repos/pvanek/qlipper
closed
Please ship a larger icon for Qlipper
auto-migrated Priority-Medium Type-Defect
_From @GoogleCodeExporter on March 17, 2015 19:36_ ``` Hi, my name is Richard Hughes and I work at Red Hat. I'm trying to build a distro-neutral framework to make installing applications easier. At the moment I'm trying to contact various upstream authors asking them to do things to make their software show up. I've got support from a number of distros, KDE, XFCE and GNOME, but I also need some degree of maintainer buy-in. Already there are over 1000 applications listed in the metadata, and over 25% of them supply the nice-to-have AppData file with screenshots. Qlipper does have a couple of small issues. It currently ships a very small application icon, which is too small to be padded to 64x64. Would you perhaps consider shipping a larger icon? To be included your application needs to ship an icon of at least 48x48px, and ideally 64x64px with an alpha channel. Additionally, please consider writing and installing an AppData file with the application description and some screenshots, otherwise your application will look kinda bare in the GNOME and KDE Software Centers. We'd also love to showcase more applications, but without the extra data file we can't. See http://people.freedesktop.org/~hughsient/appdata/ for details about AppData and AppStream, or if you have any other questions please don't hesitate to ask; thanks! Richard ``` Original issue reported on code.google.com by `hughsi...@gmail.com` on 11 Jul 2014 at 10:09 _Copied from original issue: pvanek/qlipper-googlecode-backup#16_
1.0
Please ship a larger icon for Qlipper - _From @GoogleCodeExporter on March 17, 2015 19:36_ ``` Hi, my name is Richard Hughes and I work at Red Hat. I'm trying to build a distro-neutral framework to make installing applications easier. At the moment I'm trying to contact various upstream authors asking them to do things to make their software show up. I've got support from a number of distros, KDE, XFCE and GNOME, but I also need some degree of maintainer buy-in. Already there are over 1000 applications listed in the metadata, and over 25% of them supply the nice-to-have AppData file with screenshots. Qlipper does have a couple of small issues. It currently ships a very small application icon, which is too small to be padded to 64x64. Would you perhaps consider shipping a larger icon? To be included your application needs to ship an icon of at least 48x48px, and ideally 64x64px with an alpha channel. Additionally, please consider writing and installing an AppData file with the application description and some screenshots, otherwise your application will look kinda bare in the GNOME and KDE Software Centers. We'd also love to showcase more applications, but without the extra data file we can't. See http://people.freedesktop.org/~hughsient/appdata/ for details about AppData and AppStream, or if you have any other questions please don't hesitate to ask; thanks! Richard ``` Original issue reported on code.google.com by `hughsi...@gmail.com` on 11 Jul 2014 at 10:09 _Copied from original issue: pvanek/qlipper-googlecode-backup#16_
defect
please ship a larger icon for qlipper from googlecodeexporter on march hi my name is richard hughes and i work at red hat i m trying to build a distro neutral framework to make installing applications easier at the moment i m trying to contact various upstream authors asking them to do things to make their software show up i ve got support from a number of distros kde xfce and gnome but i also need some degree of maintainer buy in already there are over applications listed in the metadata and over of them supply the nice to have appdata file with screenshots qlipper does have a couple of small issues it currently ships a very small application icon which is too small to be padded to would you perhaps consider shipping a larger icon to be included your application needs to ship an icon of at least and ideally with an alpha channel additionally please consider writing and installing an appdata file with the application description and some screenshots otherwise your application will look kinda bare in the gnome and kde software centers we d also love to showcase more applications but without the extra data file we can t see for details about appdata and appstream or if you have any other questions please don t hesitate to ask thanks richard original issue reported on code google com by hughsi gmail com on jul at copied from original issue pvanek qlipper googlecode backup
1
58,945
16,963,233,106
IssuesEvent
2021-06-29 07:47:19
milvus-io/milvus-insight
https://api.github.com/repos/milvus-io/milvus-insight
closed
Only added field can scroll in order to fix the "add new field"button on the same place
defect
<img width="1108" alt="Screen Shot 2021-06-25 at 11 53 34 AM" src="https://user-images.githubusercontent.com/77377414/123367342-5c9fcd80-d5ac-11eb-8690-78665e9a28a3.png">
1.0
Only added field can scroll in order to fix the "add new field"button on the same place - <img width="1108" alt="Screen Shot 2021-06-25 at 11 53 34 AM" src="https://user-images.githubusercontent.com/77377414/123367342-5c9fcd80-d5ac-11eb-8690-78665e9a28a3.png">
defect
only added field can scroll in order to fix the add new field button on the same place img width alt screen shot at am src
1
347,258
10,427,463,817
IssuesEvent
2019-09-16 20:00:00
dailynowco/daily-apps
https://api.github.com/repos/dailynowco/daily-apps
opened
Layout customization panel
Priority: Medium Status: Blocked Type: Feature
Following https://github.com/dailynowco/daily/issues/79, we introduce a layout customization panel. The panel drops from the top on request and allow to fully customize the feed. Prerequisites for implementing this issue: - [ ] #49 Radio button component - [ ] #50 Add different layout settings to feed - [ ] #51 Add a "small" variant to switch button ![Design](https://user-images.githubusercontent.com/1993245/64988617-89518c00-d8d4-11e9-9b9f-280e6a0dcbf7.png)
1.0
Layout customization panel - Following https://github.com/dailynowco/daily/issues/79, we introduce a layout customization panel. The panel drops from the top on request and allow to fully customize the feed. Prerequisites for implementing this issue: - [ ] #49 Radio button component - [ ] #50 Add different layout settings to feed - [ ] #51 Add a "small" variant to switch button ![Design](https://user-images.githubusercontent.com/1993245/64988617-89518c00-d8d4-11e9-9b9f-280e6a0dcbf7.png)
non_defect
layout customization panel following we introduce a layout customization panel the panel drops from the top on request and allow to fully customize the feed prerequisites for implementing this issue radio button component add different layout settings to feed add a small variant to switch button
0
44,182
5,765,420,367
IssuesEvent
2017-04-27 02:20:05
quicwg/base-drafts
https://api.github.com/repos/quicwg/base-drafts
closed
Packet reordering / loss distorts open stream limits
design transport
For illustrative purposes, consider a server with an max open stream limit of 2. The client sends packets with frames in the following order: 1. Open stream 3 2. Open stream 5 3. Close stream 5 4. Open stream 7 The network reorders packets 3 and 4. From the server's perspective, the client has violated the maximum. In order to deal with this, the server will presumably need something more complicated than just "if violated, kill" -- maybe kill the connection if it *remains* violated for more than 1-2 RTT?
1.0
Packet reordering / loss distorts open stream limits - For illustrative purposes, consider a server with an max open stream limit of 2. The client sends packets with frames in the following order: 1. Open stream 3 2. Open stream 5 3. Close stream 5 4. Open stream 7 The network reorders packets 3 and 4. From the server's perspective, the client has violated the maximum. In order to deal with this, the server will presumably need something more complicated than just "if violated, kill" -- maybe kill the connection if it *remains* violated for more than 1-2 RTT?
non_defect
packet reordering loss distorts open stream limits for illustrative purposes consider a server with an max open stream limit of the client sends packets with frames in the following order open stream open stream close stream open stream the network reorders packets and from the server s perspective the client has violated the maximum in order to deal with this the server will presumably need something more complicated than just if violated kill maybe kill the connection if it remains violated for more than rtt
0
277,889
30,686,947,672
IssuesEvent
2023-07-26 12:57:57
meilisearch/heed
https://api.github.com/repos/meilisearch/heed
reopened
Implement Send for RoTxn
bug breaking security
I wanted to make the write transactions `Send` but LMDB's documentation says: > A write [Transaction](https://lmdb.readthedocs.io/en/release/#lmdb.Transaction) may only be used from the thread it was created on. However, I think that making `RoTxn: Sync` with the `sync-read-txn` is not safe, but I may be mistaken. But, for sure, `RoTxn` should implement `Send`, since it can be moved to other threads safely.
True
Implement Send for RoTxn - I wanted to make the write transactions `Send` but LMDB's documentation says: > A write [Transaction](https://lmdb.readthedocs.io/en/release/#lmdb.Transaction) may only be used from the thread it was created on. However, I think that making `RoTxn: Sync` with the `sync-read-txn` is not safe, but I may be mistaken. But, for sure, `RoTxn` should implement `Send`, since it can be moved to other threads safely.
non_defect
implement send for rotxn i wanted to make the write transactions send but lmdb s documentation says a write may only be used from the thread it was created on however i think that making rotxn sync with the sync read txn is not safe but i may be mistaken but for sure rotxn should implement send since it can be moved to other threads safely
0
74,128
24,960,309,810
IssuesEvent
2022-11-01 15:02:42
matrix-org/synapse
https://api.github.com/repos/matrix-org/synapse
closed
Faster joins: room alias server list may be incomplete
A-Federated-Join T-Defect
If a room alias is added on a server that is doing a faster join, the list of servers associated with the alias may be incomplete until the faster join completes.
1.0
Faster joins: room alias server list may be incomplete - If a room alias is added on a server that is doing a faster join, the list of servers associated with the alias may be incomplete until the faster join completes.
defect
faster joins room alias server list may be incomplete if a room alias is added on a server that is doing a faster join the list of servers associated with the alias may be incomplete until the faster join completes
1
229,337
17,552,216,718
IssuesEvent
2021-08-13 00:13:41
PlaceOS/docs
https://api.github.com/repos/PlaceOS/docs
closed
Migrate remainder of relevant info from Engine docsite
epic priority: high type: documentation
Pick out what structure and content is relevant from the engine.place.technology site, which needs to be transferred over & how much it needs to be reworked https://github.com/acaengine/docs
1.0
Migrate remainder of relevant info from Engine docsite - Pick out what structure and content is relevant from the engine.place.technology site, which needs to be transferred over & how much it needs to be reworked https://github.com/acaengine/docs
non_defect
migrate remainder of relevant info from engine docsite pick out what structure and content is relevant from the engine place technology site which needs to be transferred over how much it needs to be reworked
0
720,380
24,790,203,663
IssuesEvent
2022-10-24 13:13:53
AY2223S1-CS2103T-T12-4/tp
https://api.github.com/repos/AY2223S1-CS2103T-T12-4/tp
closed
view all tasks for a particular day
type.Story priority.Medium type.TimeBased
As a private nurse with many patients I want to view all tasks for a particular day so that I can easily see the more urgent tasks I have for the day
1.0
view all tasks for a particular day - As a private nurse with many patients I want to view all tasks for a particular day so that I can easily see the more urgent tasks I have for the day
non_defect
view all tasks for a particular day as a private nurse with many patients i want to view all tasks for a particular day so that i can easily see the more urgent tasks i have for the day
0
66,618
20,377,586,987
IssuesEvent
2022-02-21 17:10:27
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
opened
spinning at 100% cpu, flickering mouse cursor
T-Defect
### Steps to reproduce 1. Hover over reaction/reply/thread/etc button 2. move mouse around a bit in this area ### Outcome icons and mouse cursor start flickering; display freezes. https://user-images.githubusercontent.com/1389908/155000083-e9674609-7b6e-4813-bacb-9725098142b5.mp4 Only solution seems to be to quit and restart ### Operating system ubuntu 20.04 ### Application version Element Nightly version: 2022021501 Olm version: 3.2.8 ### How did you install the app? nightly debian ### Homeserver _No response_ ### Will you send logs? Yes
1.0
spinning at 100% cpu, flickering mouse cursor - ### Steps to reproduce 1. Hover over reaction/reply/thread/etc button 2. move mouse around a bit in this area ### Outcome icons and mouse cursor start flickering; display freezes. https://user-images.githubusercontent.com/1389908/155000083-e9674609-7b6e-4813-bacb-9725098142b5.mp4 Only solution seems to be to quit and restart ### Operating system ubuntu 20.04 ### Application version Element Nightly version: 2022021501 Olm version: 3.2.8 ### How did you install the app? nightly debian ### Homeserver _No response_ ### Will you send logs? Yes
defect
spinning at cpu flickering mouse cursor steps to reproduce hover over reaction reply thread etc button move mouse around a bit in this area outcome icons and mouse cursor start flickering display freezes only solution seems to be to quit and restart operating system ubuntu application version element nightly version olm version how did you install the app nightly debian homeserver no response will you send logs yes
1
73,784
24,798,713,474
IssuesEvent
2022-10-24 19:39:00
vector-im/element-call
https://api.github.com/repos/vector-im/element-call
closed
Debug log requests in matroyshka mode
T-Defect
Looms like the request to others to submit debug logs might not be working in matroyshka mode? Note to check and fix if so.
1.0
Debug log requests in matroyshka mode - Looms like the request to others to submit debug logs might not be working in matroyshka mode? Note to check and fix if so.
defect
debug log requests in matroyshka mode looms like the request to others to submit debug logs might not be working in matroyshka mode note to check and fix if so
1
14,091
2,789,893,438
IssuesEvent
2015-05-08 22:13:48
google/google-visualization-api-issues
https://api.github.com/repos/google/google-visualization-api-issues
closed
Google GeoMap doesn't show more than one geoMap in markers mode on one page
Priority-Medium Type-Defect
Original [issue 453](https://code.google.com/p/google-visualization-api-issues/issues/detail?id=453) created by orwant on 2010-11-05T21:20:13.000Z: Good day, I'm using Google GeoMap Charts for particular countries whithin one html page. When I paint more than one chart in regions mode, everything is working fine. However I want to show more than one chart in markers mode, it doesn't work. Example code is here: &lt;html&gt; &lt;head&gt; &lt;script type='text/javascript' src='http://www.google.com/jsapi'&gt;&lt;/script&gt; &lt;script type='text/javascript'&gt; google.load('visualization', '1', {'packages': ['geomap']}); google.setOnLoadCallback(drawMap); function drawMap() { var data = new google.visualization.DataTable(); data.addRows(6); data.addColumn('string', 'City'); data.addColumn('number', 'Popularity'); data.setValue(0, 0, 'New York'); data.setValue(0, 1, 200); data.setValue(1, 0, 'Boston'); data.setValue(1, 1, 300); data.setValue(2, 0, 'Miami'); data.setValue(2, 1, 400); data.setValue(3, 0, 'Chicago'); data.setValue(3, 1, 500); data.setValue(4, 0, 'Los Angeles'); data.setValue(4, 1, 600); data.setValue(5, 0, 'Houston'); data.setValue(5, 1, 700); var options = {}; options['region'] = 'US'; options['colors'] = [0xFF8747, 0xFFB581, 0xc06000]; //orange colors options['dataMode'] = 'markers'; var container = document.getElementById('map_canvas'); var geomap = new google.visualization.GeoMap(container); geomap.draw(data, options); }; &lt;/script&gt; &lt;script type='text/javascript'&gt; google.load('visualization', '1', {'packages': ['geomap']}); google.setOnLoadCallback(drawMap2); function drawMap2() { var data = new google.visualization.DataTable(); data.addRows(6); data.addColumn('string', 'City'); data.addColumn('number', 'Popularity'); data.setValue(0, 0, 'New York'); data.setValue(0, 1, 200); data.setValue(1, 0, 'Boston'); data.setValue(1, 1, 300); data.setValue(2, 0, 'Miami'); data.setValue(2, 1, 400); data.setValue(3, 0, 'Chicago'); data.setValue(3, 1, 500); data.setValue(4, 0, 'Los Angeles'); data.setValue(4, 1, 600); data.setValue(5, 0, 'Houston'); data.setValue(5, 1, 700); var options = {}; options['region'] = 'US'; options['colors'] = [0xFF8747, 0xFFB581, 0xc06000]; //orange colors options['dataMode'] = 'markers'; var container = document.getElementById('map_canvas2'); var geomap = new google.visualization.GeoMap(container); geomap.draw(data, options); }; &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div id='map_canvas'&gt;&lt;/div&gt; &lt;div id='map_canvas2'&gt;&lt;/div&gt; &lt;/body&gt; &lt;/html&gt; It doesn't work for all browsers. When I was looking for syntax error in javascript, I obtained this message: Uncaught TypeError: Object #&lt;an Object&gt; has no method 'Load'; Main.js: 40 thank you, Regards Michal K.
1.0
Google GeoMap doesn't show more than one geoMap in markers mode on one page - Original [issue 453](https://code.google.com/p/google-visualization-api-issues/issues/detail?id=453) created by orwant on 2010-11-05T21:20:13.000Z: Good day, I'm using Google GeoMap Charts for particular countries whithin one html page. When I paint more than one chart in regions mode, everything is working fine. However I want to show more than one chart in markers mode, it doesn't work. Example code is here: &lt;html&gt; &lt;head&gt; &lt;script type='text/javascript' src='http://www.google.com/jsapi'&gt;&lt;/script&gt; &lt;script type='text/javascript'&gt; google.load('visualization', '1', {'packages': ['geomap']}); google.setOnLoadCallback(drawMap); function drawMap() { var data = new google.visualization.DataTable(); data.addRows(6); data.addColumn('string', 'City'); data.addColumn('number', 'Popularity'); data.setValue(0, 0, 'New York'); data.setValue(0, 1, 200); data.setValue(1, 0, 'Boston'); data.setValue(1, 1, 300); data.setValue(2, 0, 'Miami'); data.setValue(2, 1, 400); data.setValue(3, 0, 'Chicago'); data.setValue(3, 1, 500); data.setValue(4, 0, 'Los Angeles'); data.setValue(4, 1, 600); data.setValue(5, 0, 'Houston'); data.setValue(5, 1, 700); var options = {}; options['region'] = 'US'; options['colors'] = [0xFF8747, 0xFFB581, 0xc06000]; //orange colors options['dataMode'] = 'markers'; var container = document.getElementById('map_canvas'); var geomap = new google.visualization.GeoMap(container); geomap.draw(data, options); }; &lt;/script&gt; &lt;script type='text/javascript'&gt; google.load('visualization', '1', {'packages': ['geomap']}); google.setOnLoadCallback(drawMap2); function drawMap2() { var data = new google.visualization.DataTable(); data.addRows(6); data.addColumn('string', 'City'); data.addColumn('number', 'Popularity'); data.setValue(0, 0, 'New York'); data.setValue(0, 1, 200); data.setValue(1, 0, 'Boston'); data.setValue(1, 1, 300); data.setValue(2, 0, 'Miami'); data.setValue(2, 1, 400); data.setValue(3, 0, 'Chicago'); data.setValue(3, 1, 500); data.setValue(4, 0, 'Los Angeles'); data.setValue(4, 1, 600); data.setValue(5, 0, 'Houston'); data.setValue(5, 1, 700); var options = {}; options['region'] = 'US'; options['colors'] = [0xFF8747, 0xFFB581, 0xc06000]; //orange colors options['dataMode'] = 'markers'; var container = document.getElementById('map_canvas2'); var geomap = new google.visualization.GeoMap(container); geomap.draw(data, options); }; &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div id='map_canvas'&gt;&lt;/div&gt; &lt;div id='map_canvas2'&gt;&lt;/div&gt; &lt;/body&gt; &lt;/html&gt; It doesn't work for all browsers. When I was looking for syntax error in javascript, I obtained this message: Uncaught TypeError: Object #&lt;an Object&gt; has no method 'Load'; Main.js: 40 thank you, Regards Michal K.
defect
google geomap doesn t show more than one geomap in markers mode on one page original created by orwant on good day i m using google geomap charts for particular countries whithin one html page when i paint more than one chart in regions mode everything is working fine however i want to show more than one chart in markers mode it doesn t work example code is here lt html gt lt head gt lt script type text javascript src lt script type text javascript gt google load visualization packages google setonloadcallback drawmap function drawmap var data new google visualization datatable data addrows data addcolumn string city data addcolumn number popularity data setvalue new york data setvalue data setvalue boston data setvalue data setvalue miami data setvalue data setvalue chicago data setvalue data setvalue los angeles data setvalue data setvalue houston data setvalue var options options us options orange colors options markers var container document getelementbyid map canvas var geomap new google visualization geomap container geomap draw data options lt script gt lt script type text javascript gt google load visualization packages google setonloadcallback function var data new google visualization datatable data addrows data addcolumn string city data addcolumn number popularity data setvalue new york data setvalue data setvalue boston data setvalue data setvalue miami data setvalue data setvalue chicago data setvalue data setvalue los angeles data setvalue data setvalue houston data setvalue var options options us options orange colors options markers var container document getelementbyid map var geomap new google visualization geomap container geomap draw data options lt script gt lt head gt lt body gt lt div id map canvas gt lt div gt lt div id map gt lt div gt lt body gt lt html gt it doesn t work for all browsers when i was looking for syntax error in javascript i obtained this message uncaught typeerror object lt an object gt has no method load main js thank you regards michal k
1
480,758
13,866,384,788
IssuesEvent
2020-10-16 06:42:20
AbsaOSS/enceladus
https://api.github.com/repos/AbsaOSS/enceladus
closed
CommonJobExecution.runPostProcessing performance improvement proposal
feature priority: high priority: undecided under discussion
## Background `CommonJobExecution.runPostProcessing` reads a parquet ([link](https://github.com/AbsaOSS/enceladus/blob/develop/spark-jobs/src/main/scala/za/co/absa/enceladus/common/CommonJobExecution.scala#L113)) that is an output of std or conf. This parquet (actually `Dataframe`) can be supplied by `process"Type"Result` (conformance or standardization). Weirdly `processStandardizationResult` returns a `DataFrame`, but conformance doesn't. ## Feature Align the usage of `process"Type"Result` method and don't read again the written parquet in `runPostProcessing`
2.0
CommonJobExecution.runPostProcessing performance improvement proposal - ## Background `CommonJobExecution.runPostProcessing` reads a parquet ([link](https://github.com/AbsaOSS/enceladus/blob/develop/spark-jobs/src/main/scala/za/co/absa/enceladus/common/CommonJobExecution.scala#L113)) that is an output of std or conf. This parquet (actually `Dataframe`) can be supplied by `process"Type"Result` (conformance or standardization). Weirdly `processStandardizationResult` returns a `DataFrame`, but conformance doesn't. ## Feature Align the usage of `process"Type"Result` method and don't read again the written parquet in `runPostProcessing`
non_defect
commonjobexecution runpostprocessing performance improvement proposal background commonjobexecution runpostprocessing reads a parquet that is an output of std or conf this parquet actually dataframe can be supplied by process type result conformance or standardization weirdly processstandardizationresult returns a dataframe but conformance doesn t feature align the usage of process type result method and don t read again the written parquet in runpostprocessing
0
44,043
11,935,951,757
IssuesEvent
2020-04-02 09:28:22
radon-h2020/radon-defect-prediction-api
https://api.github.com/repos/radon-h2020/radon-defect-prediction-api
opened
The tool must decrease bug-fixing times with respect to manual inspection
Defect prediction MUST WP3
ID | R-T3.4-11 -- | -- Section | WP3: Methodology and Quality Assurance Requirements Type | PERFORMANCE_EFFICIENCY User Story | As an Operations Engineer I want the tool to decrease the time to inspect the infrastructure manually considerably Requirement | The tool must diminish the time to detect defects with respect to manual inspection by at least 20% Priority | Must have Affected Tools | DEFECT_PRED_TOOL Means of Verification | User study with time improved by at least 20% Dependency | R-T3.4-10 https://github.com/radon-h2020/radon-defect-prediction-api/issues/5
1.0
The tool must decrease bug-fixing times with respect to manual inspection - ID | R-T3.4-11 -- | -- Section | WP3: Methodology and Quality Assurance Requirements Type | PERFORMANCE_EFFICIENCY User Story | As an Operations Engineer I want the tool to decrease the time to inspect the infrastructure manually considerably Requirement | The tool must diminish the time to detect defects with respect to manual inspection by at least 20% Priority | Must have Affected Tools | DEFECT_PRED_TOOL Means of Verification | User study with time improved by at least 20% Dependency | R-T3.4-10 https://github.com/radon-h2020/radon-defect-prediction-api/issues/5
defect
the tool must decrease bug fixing times with respect to manual inspection id r section methodology and quality assurance requirements type performance efficiency user story as an operations engineer i want the tool to decrease the time to inspect the infrastructure manually considerably requirement the tool must diminish the time to detect defects with respect to manual inspection by at least priority must have affected tools defect pred tool means of verification user study with time improved by at least dependency r
1
39,097
9,203,822,357
IssuesEvent
2019-03-08 04:23:06
line/armeria
https://api.github.com/repos/line/armeria
closed
StackOverflowError exception with annotatedService in Kotlin
defect
Hi. I am using armeria with kotlin lang. When I create an annotatedService a StackOverflowError exception occur in server start-up. ``` class PikaRest { @Get("/{id}") fun redirect(ctx: ServiceRequestContext, @Param("id") id: String): HttpResponse { } } ```
1.0
StackOverflowError exception with annotatedService in Kotlin - Hi. I am using armeria with kotlin lang. When I create an annotatedService a StackOverflowError exception occur in server start-up. ``` class PikaRest { @Get("/{id}") fun redirect(ctx: ServiceRequestContext, @Param("id") id: String): HttpResponse { } } ```
defect
stackoverflowerror exception with annotatedservice in kotlin hi i am using armeria with kotlin lang when i create an annotatedservice a stackoverflowerror exception occur in server start up class pikarest get id fun redirect ctx servicerequestcontext param id id string httpresponse
1
111,642
24,166,581,439
IssuesEvent
2022-09-22 15:28:54
lancaster-university/codal-microbit-v2
https://api.github.com/repos/lancaster-university/codal-microbit-v2
opened
Play 'until done' should actually wait until audio is complete
bug makecode
Currently blocks in PXT in the form 'Play until done' do not actually wait until the audio is fully played out, leading to some overlap with the subsequent blocks. Its suspected that this is because the underlaying CODAL calls are returning before the final buffer(s) are played out, and this needs to be investigated. May be possible to incorporate into the same mechanisms for #230
1.0
Play 'until done' should actually wait until audio is complete - Currently blocks in PXT in the form 'Play until done' do not actually wait until the audio is fully played out, leading to some overlap with the subsequent blocks. Its suspected that this is because the underlaying CODAL calls are returning before the final buffer(s) are played out, and this needs to be investigated. May be possible to incorporate into the same mechanisms for #230
non_defect
play until done should actually wait until audio is complete currently blocks in pxt in the form play until done do not actually wait until the audio is fully played out leading to some overlap with the subsequent blocks its suspected that this is because the underlaying codal calls are returning before the final buffer s are played out and this needs to be investigated may be possible to incorporate into the same mechanisms for
0
14,382
24,808,126,093
IssuesEvent
2022-10-25 07:13:39
AleGitMad/ThePerfectLaptop
https://api.github.com/repos/AleGitMad/ThePerfectLaptop
opened
Functional requirement 2
functonal requirement
The system shall make the user select what level of knowledge he has between three different levels.
1.0
Functional requirement 2 - The system shall make the user select what level of knowledge he has between three different levels.
non_defect
functional requirement the system shall make the user select what level of knowledge he has between three different levels
0
35,079
7,548,671,410
IssuesEvent
2018-04-18 12:02:52
primefaces/primereact
https://api.github.com/repos/primefaces/primereact
closed
InputMask runtime error
defect
Reported By PRO User; > If there is no value assigned to InputMask, there is an error after mounting the component: > Uncaught TypeError: Cannot set property 'value' of null at InputMask.writeBuffer (InputMask.js:315) at InputMask.js:514
1.0
InputMask runtime error - Reported By PRO User; > If there is no value assigned to InputMask, there is an error after mounting the component: > Uncaught TypeError: Cannot set property 'value' of null at InputMask.writeBuffer (InputMask.js:315) at InputMask.js:514
defect
inputmask runtime error reported by pro user if there is no value assigned to inputmask there is an error after mounting the component uncaught typeerror cannot set property value of null at inputmask writebuffer inputmask js at inputmask js
1
74,248
25,025,083,639
IssuesEvent
2022-11-04 07:00:24
DDCorkum/CTMod
https://api.github.com/repos/DDCorkum/CTMod
closed
self:SetNormalTexture(asset) Error
- Defect CT_Core
Not sure what is causing this.... 5x Usage: self:SetNormalTexture(asset) [string "=[C]"]: in function `SetNormalTexture' [string "@Interface/AddOns/CT_Core/CT_Core_Chat.lua"]:648: in function <Interface/AddOns/CT_Core/CT_Core_Chat.lua:627> [string "@Interface/AddOns/CT_Core/CT_Core_Chat.lua"]:669: in function <Interface/AddOns/CT_Core/CT_Core_Chat.lua:665> [string "@Interface/AddOns/CT_Core/CT_Core_Chat.lua"]:678: in function <Interface/AddOns/CT_Core/CT_Core_Chat.lua:674> [string "@Interface/AddOns/CT_Core/CT_Core_Chat.lua"]:1214: in function `chatupdate' [string "@Interface/AddOns/CT_Core/CT_Core.lua"]:234: in function `updateFunc' [string "@Interface/AddOns/CT_Library/CT_Library.lua"]:978: in function `setOption' [string "@Interface/AddOns/CT_Library/CT_Library.lua"]:1723: in function <Interface/AddOns/CT_Library/CT_Library.lua:1718> Locals: (*temporary) = "Usage: self:SetNormalTexture(asset)"
1.0
self:SetNormalTexture(asset) Error - Not sure what is causing this.... 5x Usage: self:SetNormalTexture(asset) [string "=[C]"]: in function `SetNormalTexture' [string "@Interface/AddOns/CT_Core/CT_Core_Chat.lua"]:648: in function <Interface/AddOns/CT_Core/CT_Core_Chat.lua:627> [string "@Interface/AddOns/CT_Core/CT_Core_Chat.lua"]:669: in function <Interface/AddOns/CT_Core/CT_Core_Chat.lua:665> [string "@Interface/AddOns/CT_Core/CT_Core_Chat.lua"]:678: in function <Interface/AddOns/CT_Core/CT_Core_Chat.lua:674> [string "@Interface/AddOns/CT_Core/CT_Core_Chat.lua"]:1214: in function `chatupdate' [string "@Interface/AddOns/CT_Core/CT_Core.lua"]:234: in function `updateFunc' [string "@Interface/AddOns/CT_Library/CT_Library.lua"]:978: in function `setOption' [string "@Interface/AddOns/CT_Library/CT_Library.lua"]:1723: in function <Interface/AddOns/CT_Library/CT_Library.lua:1718> Locals: (*temporary) = "Usage: self:SetNormalTexture(asset)"
defect
self setnormaltexture asset error not sure what is causing this usage self setnormaltexture asset in function setnormaltexture in function in function in function in function chatupdate in function updatefunc in function setoption in function locals temporary usage self setnormaltexture asset
1
70,964
23,391,760,023
IssuesEvent
2022-08-11 18:33:36
department-of-veterans-affairs/va.gov-cms
https://api.github.com/repos/department-of-veterans-affairs/va.gov-cms
opened
Multiple empty navigation landmarks in CMS Admin toolbar
Needs refining ⭐️ Sitewide CMS 508/Accessibility 508-defect-2
## Description In the CMS, the admin toolbar has multiple navigation landmarks that are not distinguishable by a unique label. In this case, these landmarks are also empty so may not be necessary within the HTML. ## Screenshot ![image](https://user-images.githubusercontent.com/106678594/184213435-f89da10e-5fc3-4a65-84d0-9d89aba9ecd6.png) ## Accessibility Standard WCAG version 2.0 A, [Criterion 1.3.1](https://www.w3.org/WAI/WCAG21/Understanding/info-and-relationships.html) ## Acceptance Criteria - [ ] Technical Review - [ ] Change management consulted - [ ] Implementation ticket created ### CMS Team Please check the team(s) that will do this work. - [ ] `Program` - [ ] `Platform CMS Team` - [ ] `Sitewide Crew` - [ ] `⭐️ Sitewide CMS` - [ ] `⭐️ Public Websites` - [ ] `⭐️ Facilities` - [ ] `⭐️ User support`
1.0
Multiple empty navigation landmarks in CMS Admin toolbar - ## Description In the CMS, the admin toolbar has multiple navigation landmarks that are not distinguishable by a unique label. In this case, these landmarks are also empty so may not be necessary within the HTML. ## Screenshot ![image](https://user-images.githubusercontent.com/106678594/184213435-f89da10e-5fc3-4a65-84d0-9d89aba9ecd6.png) ## Accessibility Standard WCAG version 2.0 A, [Criterion 1.3.1](https://www.w3.org/WAI/WCAG21/Understanding/info-and-relationships.html) ## Acceptance Criteria - [ ] Technical Review - [ ] Change management consulted - [ ] Implementation ticket created ### CMS Team Please check the team(s) that will do this work. - [ ] `Program` - [ ] `Platform CMS Team` - [ ] `Sitewide Crew` - [ ] `⭐️ Sitewide CMS` - [ ] `⭐️ Public Websites` - [ ] `⭐️ Facilities` - [ ] `⭐️ User support`
defect
multiple empty navigation landmarks in cms admin toolbar description in the cms the admin toolbar has multiple navigation landmarks that are not distinguishable by a unique label in this case these landmarks are also empty so may not be necessary within the html screenshot accessibility standard wcag version a acceptance criteria technical review change management consulted implementation ticket created cms team please check the team s that will do this work program platform cms team sitewide crew ⭐️ sitewide cms ⭐️ public websites ⭐️ facilities ⭐️ user support
1
7,719
2,610,434,515
IssuesEvent
2015-02-26 20:22:20
chrsmith/scribefire-chrome
https://api.github.com/repos/chrsmith/scribefire-chrome
opened
Tags and categories not showing using Metaweblog
auto-migrated Priority-Medium Type-Defect
``` What's the problem? I'm using EasyBlog with Joomla, and trying to use ScribeFire. When I add my blog to ScribeFire, suddenly the option to add Tags and categories disapears. Do you know why? What browser are you using? Tested on Firefox and Chrome. What Operating system are you using Windows and Mac What version of ScribeFire are you running? 4.3.3 What Blog Type are you having this problem with? Please include version # if known or applicable EasyBlog with Joomla. It uses Metaweblog. ``` ----- Original issue reported on code.google.com by `ariel.bo...@agenciachan.com` on 26 Oct 2014 at 10:08
1.0
Tags and categories not showing using Metaweblog - ``` What's the problem? I'm using EasyBlog with Joomla, and trying to use ScribeFire. When I add my blog to ScribeFire, suddenly the option to add Tags and categories disapears. Do you know why? What browser are you using? Tested on Firefox and Chrome. What Operating system are you using Windows and Mac What version of ScribeFire are you running? 4.3.3 What Blog Type are you having this problem with? Please include version # if known or applicable EasyBlog with Joomla. It uses Metaweblog. ``` ----- Original issue reported on code.google.com by `ariel.bo...@agenciachan.com` on 26 Oct 2014 at 10:08
defect
tags and categories not showing using metaweblog what s the problem i m using easyblog with joomla and trying to use scribefire when i add my blog to scribefire suddenly the option to add tags and categories disapears do you know why what browser are you using tested on firefox and chrome what operating system are you using windows and mac what version of scribefire are you running what blog type are you having this problem with please include version if known or applicable easyblog with joomla it uses metaweblog original issue reported on code google com by ariel bo agenciachan com on oct at
1
81,840
31,765,935,010
IssuesEvent
2023-09-12 08:47:01
SeleniumHQ/selenium
https://api.github.com/repos/SeleniumHQ/selenium
closed
[🐛 Bug]: Selenium-manager unable to download driver behind proxy.
I-defect needs-triaging
### What happened? Our testing is behind proxy, so when we start testing, selenium-manager is trying to download chrome drivers from public internet via proxy. Before chrome v114, the driver was downloaded successfully from: e.g. https://chromedriver.storage.googleapis.com/113.0.5672.63/chromedriver_win32.zip, which was in whitelist of proxy. But after chrome v115, the driver was trying to download from: e.g. https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/116.0.5845.96/win64/chromedriver-win64.zip which is not in whitelist and IT is not going to add it due to some reasons. So is there a way to download the chrome driver without proxy, and execute with the proxy in java? ### How can we reproduce the issue? ```shell I was able to download chrome driver with same code without proxy. I'm using selenide to start driver: public void set_up_for_all() { Configuration.proxyHost = "test.proxy.host.com"; Configuration.proxyPort = 9090; Configuration.proxyEnabled = true; Configuration.holdBrowserOpen = true; Configuration.timeout = 60000; SelenideLogger.addListener("allure", new AllureSelenide()); Configuration.reportsFolder = "allure-results"; System.setProperty("chromeoptions.args", "--remote-allow-origins=*"); } ``` ### Relevant log output ```shell Caused by: org.openqa.selenium.WebDriverException: Command failed with code: 65, executed: [/var/folders/s6/vkjgvrns3qxbsxg8vh5q30d94vf_5z/T/selenium-manager411491232376251414158329650246541/selenium-manager, --browser, chrome, --output, json, --proxy, test.proxy.host.com:9090] error sending request for url (https://googlechromelabs.github.io/chrome-for-testing/known-good-versions-with-downloads.json): error trying to connect: unsuccessful tunnel Build info: version: '4.11.0', revision: '040bc5406b' System info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '12.5.1', java.version: '19' Driver info: driver.version: SelenideDriver at org.openqa.selenium.manager.SeleniumManager.runCommand(SeleniumManager.java:151) at org.openqa.selenium.manager.SeleniumManager.getDriverPath(SeleniumManager.java:273) at org.openqa.selenium.remote.service.DriverFinder.getPath(DriverFinder.java:22) ... 51 more ``` ### Operating System Mac ### Selenium version Java 4.11.0 ### What are the browser(s) and version(s) where you see this issue? Chrome v116 ### What are the browser driver(s) and version(s) where you see this issue? None ### Are you using Selenium Grid? _No response_
1.0
[🐛 Bug]: Selenium-manager unable to download driver behind proxy. - ### What happened? Our testing is behind proxy, so when we start testing, selenium-manager is trying to download chrome drivers from public internet via proxy. Before chrome v114, the driver was downloaded successfully from: e.g. https://chromedriver.storage.googleapis.com/113.0.5672.63/chromedriver_win32.zip, which was in whitelist of proxy. But after chrome v115, the driver was trying to download from: e.g. https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/116.0.5845.96/win64/chromedriver-win64.zip which is not in whitelist and IT is not going to add it due to some reasons. So is there a way to download the chrome driver without proxy, and execute with the proxy in java? ### How can we reproduce the issue? ```shell I was able to download chrome driver with same code without proxy. I'm using selenide to start driver: public void set_up_for_all() { Configuration.proxyHost = "test.proxy.host.com"; Configuration.proxyPort = 9090; Configuration.proxyEnabled = true; Configuration.holdBrowserOpen = true; Configuration.timeout = 60000; SelenideLogger.addListener("allure", new AllureSelenide()); Configuration.reportsFolder = "allure-results"; System.setProperty("chromeoptions.args", "--remote-allow-origins=*"); } ``` ### Relevant log output ```shell Caused by: org.openqa.selenium.WebDriverException: Command failed with code: 65, executed: [/var/folders/s6/vkjgvrns3qxbsxg8vh5q30d94vf_5z/T/selenium-manager411491232376251414158329650246541/selenium-manager, --browser, chrome, --output, json, --proxy, test.proxy.host.com:9090] error sending request for url (https://googlechromelabs.github.io/chrome-for-testing/known-good-versions-with-downloads.json): error trying to connect: unsuccessful tunnel Build info: version: '4.11.0', revision: '040bc5406b' System info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '12.5.1', java.version: '19' Driver info: driver.version: SelenideDriver at org.openqa.selenium.manager.SeleniumManager.runCommand(SeleniumManager.java:151) at org.openqa.selenium.manager.SeleniumManager.getDriverPath(SeleniumManager.java:273) at org.openqa.selenium.remote.service.DriverFinder.getPath(DriverFinder.java:22) ... 51 more ``` ### Operating System Mac ### Selenium version Java 4.11.0 ### What are the browser(s) and version(s) where you see this issue? Chrome v116 ### What are the browser driver(s) and version(s) where you see this issue? None ### Are you using Selenium Grid? _No response_
defect
selenium manager unable to download driver behind proxy what happened our testing is behind proxy so when we start testing selenium manager is trying to download chrome drivers from public internet via proxy before chrome the driver was downloaded successfully from e g which was in whitelist of proxy but after chrome the driver was trying to download from e g which is not in whitelist and it is not going to add it due to some reasons so is there a way to download the chrome driver without proxy and execute with the proxy in java how can we reproduce the issue shell i was able to download chrome driver with same code without proxy i m using selenide to start driver public void set up for all configuration proxyhost test proxy host com configuration proxyport configuration proxyenabled true configuration holdbrowseropen true configuration timeout selenidelogger addlistener allure new allureselenide configuration reportsfolder allure results system setproperty chromeoptions args remote allow origins relevant log output shell caused by org openqa selenium webdriverexception command failed with code executed error sending request for url error trying to connect unsuccessful tunnel build info version revision system info os name mac os x os arch os version java version driver info driver version selenidedriver at org openqa selenium manager seleniummanager runcommand seleniummanager java at org openqa selenium manager seleniummanager getdriverpath seleniummanager java at org openqa selenium remote service driverfinder getpath driverfinder java more operating system mac selenium version java 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 none are you using selenium grid no response
1
17,497
3,010,248,553
IssuesEvent
2015-07-28 12:07:15
Security-Onion-Solutions/security-onion
https://api.github.com/repos/Security-Onion-Solutions/security-onion
closed
sosetup: improve input validation for email address
auto-migrated Priority-Medium Type-Defect
``` sosetup: improve input validation for email address ``` Original issue reported on code.google.com by `doug.bu...@gmail.com` on 18 Feb 2015 at 2:39
1.0
sosetup: improve input validation for email address - ``` sosetup: improve input validation for email address ``` Original issue reported on code.google.com by `doug.bu...@gmail.com` on 18 Feb 2015 at 2:39
defect
sosetup improve input validation for email address sosetup improve input validation for email address original issue reported on code google com by doug bu gmail com on feb at
1
2,229
2,603,991,409
IssuesEvent
2015-02-24 19:06:43
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:32
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:32
defect
沈阳生殖性疱疹的传染途径 沈阳生殖性疱疹的传染途径〓沈陽軍區政治部醫院性病〓tel�� � 〓 , � ��。 。是一所與新中國同建立共� ��煌的歷史悠久、設備精良、技術權威、專家云集,是預防、 保健、醫療、科研康復為一體的綜合性醫院。是國家首批公�� �甲等部隊醫院、全國首批醫療規范定點單位,是第四軍醫大� ��、東南大學等知名高等院校的教學醫院。曾被中國人民解放 軍空軍后勤部衛生部評為衛生工作先進單位,先后兩次榮立�� �體二等功。 original issue reported on code google com by gmail com on jun at
1
116,209
9,828,932,996
IssuesEvent
2019-06-15 16:06:47
nteract/hydrogen
https://api.github.com/repos/nteract/hydrogen
closed
Uncaught TypeError: Cannot read property 'get' of undefined
bug :bug: kernels needs testing :construction: work in progress :construction_worker_man:
[Enter steps to reproduce:] 1. Shutdown python3.6.6 kernel in virtual environment. **Atom**: 1.36.1 x64 **Electron**: 2.0.18 **OS**: Microsoft Windows 10 Pro **Thrown From**: [Hydrogen](https://github.com/nteract/hydrogen) package 2.9.0 ### Stack Trace Uncaught TypeError: Cannot read property 'get' of undefined ``` At C:\Users\*******\.atom\packages\Hydrogen\lib\store\index.js:175 TypeError: Cannot read property 'get' of undefined at /packages/Hydrogen/lib/store/index.js:175:23 at Array.filter (<anonymous>) at Store.getFilesForKernel (/packages/Hydrogen/lib/store/index.js:171:27) at Store.deleteKernel (/packages/Hydrogen/lib/store/index.js:154:24) at /packages/Hydrogen/node_modules/mobx/lib/mobx.js:604:22) at Store.res (/packages/Hydrogen/node_modules/mobx/lib/mobx.js:595:16) at Kernel.destroy (/packages/Hydrogen/lib/kernel.js:399:11) at /packages/Hydrogen/lib/main.js:334:14) at Object.handleKernelCommand (/packages/Hydrogen/lib/main.js:344:4) at SignalListView.signalListView.onConfirmed (/packages/Hydrogen/lib/main.js:292:14) at Object.didConfirmSelection (/packages/Hydrogen/lib/signal-list-view.js:40:36) at SelectListView.confirmSelection (/packages/Hydrogen/node_modules/atom-select-list/src/select-list-view.js:400:20) at SelectListView.didClickItem (/packages/Hydrogen/node_modules/atom-select-list/src/select-list-view.js:286:10) at ListItemView.onclick (/packages/Hydrogen/node_modules/atom-select-list/src/select-list-view.js:221:31) at ListItemView.didClick (/packages/Hydrogen/node_modules/atom-select-list/src/select-list-view.js:448:10) ``` ### Commands ``` -3:13.7.0 core:backspace (input.hidden-input) -3:13.1.0 core:move-down (input.hidden-input) -3:12.9.0 core:move-right (input.hidden-input) -3:12.6.0 core:backspace (input.hidden-input) -3:12 core:save (input.hidden-input) 6x -3:11.1.0 editor:move-to-end-of-word (input.hidden-input) -3:09.6.0 editor:newline (input.hidden-input) -3:09.2.0 core:save (input.hidden-input) -3:06.4.0 hydrogen:run (input.hidden-input) -3:06.4.0 autocomplete-plus:cancel (atom-text-editor.editor.is-focused.has-selection) -2:49 editor:newline (input.hidden-input) -2:47.2.0 core:save (input.hidden-input) -2:46.6.0 core:select-all (input.hidden-input) -0:56.5.0 application:new-file (input.hidden-input) -0:54.8.0 core:paste (input.hidden-input) 2x -0:53.4.0 core:save (input.hidden-input) ``` ### Non-Core Packages ``` atom-alignment 0.13.0 atom-material-syntax 1.0.8 atom-material-ui 2.1.3 atom-python-virtualenv 1.0.2 block-select 1.0.0 git-plus 8.6.2 goto-definition 1.3.4 Hydrogen 2.9.0 kite 0.156.0 ```
1.0
Uncaught TypeError: Cannot read property 'get' of undefined - [Enter steps to reproduce:] 1. Shutdown python3.6.6 kernel in virtual environment. **Atom**: 1.36.1 x64 **Electron**: 2.0.18 **OS**: Microsoft Windows 10 Pro **Thrown From**: [Hydrogen](https://github.com/nteract/hydrogen) package 2.9.0 ### Stack Trace Uncaught TypeError: Cannot read property 'get' of undefined ``` At C:\Users\*******\.atom\packages\Hydrogen\lib\store\index.js:175 TypeError: Cannot read property 'get' of undefined at /packages/Hydrogen/lib/store/index.js:175:23 at Array.filter (<anonymous>) at Store.getFilesForKernel (/packages/Hydrogen/lib/store/index.js:171:27) at Store.deleteKernel (/packages/Hydrogen/lib/store/index.js:154:24) at /packages/Hydrogen/node_modules/mobx/lib/mobx.js:604:22) at Store.res (/packages/Hydrogen/node_modules/mobx/lib/mobx.js:595:16) at Kernel.destroy (/packages/Hydrogen/lib/kernel.js:399:11) at /packages/Hydrogen/lib/main.js:334:14) at Object.handleKernelCommand (/packages/Hydrogen/lib/main.js:344:4) at SignalListView.signalListView.onConfirmed (/packages/Hydrogen/lib/main.js:292:14) at Object.didConfirmSelection (/packages/Hydrogen/lib/signal-list-view.js:40:36) at SelectListView.confirmSelection (/packages/Hydrogen/node_modules/atom-select-list/src/select-list-view.js:400:20) at SelectListView.didClickItem (/packages/Hydrogen/node_modules/atom-select-list/src/select-list-view.js:286:10) at ListItemView.onclick (/packages/Hydrogen/node_modules/atom-select-list/src/select-list-view.js:221:31) at ListItemView.didClick (/packages/Hydrogen/node_modules/atom-select-list/src/select-list-view.js:448:10) ``` ### Commands ``` -3:13.7.0 core:backspace (input.hidden-input) -3:13.1.0 core:move-down (input.hidden-input) -3:12.9.0 core:move-right (input.hidden-input) -3:12.6.0 core:backspace (input.hidden-input) -3:12 core:save (input.hidden-input) 6x -3:11.1.0 editor:move-to-end-of-word (input.hidden-input) -3:09.6.0 editor:newline (input.hidden-input) -3:09.2.0 core:save (input.hidden-input) -3:06.4.0 hydrogen:run (input.hidden-input) -3:06.4.0 autocomplete-plus:cancel (atom-text-editor.editor.is-focused.has-selection) -2:49 editor:newline (input.hidden-input) -2:47.2.0 core:save (input.hidden-input) -2:46.6.0 core:select-all (input.hidden-input) -0:56.5.0 application:new-file (input.hidden-input) -0:54.8.0 core:paste (input.hidden-input) 2x -0:53.4.0 core:save (input.hidden-input) ``` ### Non-Core Packages ``` atom-alignment 0.13.0 atom-material-syntax 1.0.8 atom-material-ui 2.1.3 atom-python-virtualenv 1.0.2 block-select 1.0.0 git-plus 8.6.2 goto-definition 1.3.4 Hydrogen 2.9.0 kite 0.156.0 ```
non_defect
uncaught typeerror cannot read property get of undefined shutdown kernel in virtual environment atom electron os microsoft windows pro thrown from package stack trace uncaught typeerror cannot read property get of undefined at c users atom packages hydrogen lib store index js typeerror cannot read property get of undefined at packages hydrogen lib store index js at array filter at store getfilesforkernel packages hydrogen lib store index js at store deletekernel packages hydrogen lib store index js at packages hydrogen node modules mobx lib mobx js at store res packages hydrogen node modules mobx lib mobx js at kernel destroy packages hydrogen lib kernel js at packages hydrogen lib main js at object handlekernelcommand packages hydrogen lib main js at signallistview signallistview onconfirmed packages hydrogen lib main js at object didconfirmselection packages hydrogen lib signal list view js at selectlistview confirmselection packages hydrogen node modules atom select list src select list view js at selectlistview didclickitem packages hydrogen node modules atom select list src select list view js at listitemview onclick packages hydrogen node modules atom select list src select list view js at listitemview didclick packages hydrogen node modules atom select list src select list view js commands core backspace input hidden input core move down input hidden input core move right input hidden input core backspace input hidden input core save input hidden input editor move to end of word input hidden input editor newline input hidden input core save input hidden input hydrogen run input hidden input autocomplete plus cancel atom text editor editor is focused has selection editor newline input hidden input core save input hidden input core select all input hidden input application new file input hidden input core paste input hidden input core save input hidden input non core packages atom alignment atom material syntax atom material ui atom python virtualenv block select git plus goto definition hydrogen kite
0
75,503
15,422,097,635
IssuesEvent
2021-03-05 13:57:54
idonthaveafifaaddiction/Azure-Sentinel
https://api.github.com/repos/idonthaveafifaaddiction/Azure-Sentinel
opened
CVE-2020-36242 (High) detected in cryptography-3.3.1-cp27-cp27mu-manylinux2010_x86_64.whl
security vulnerability
## CVE-2020-36242 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>cryptography-3.3.1-cp27-cp27mu-manylinux2010_x86_64.whl</b></p></summary> <p>cryptography is a package which provides cryptographic recipes and primitives to Python developers.</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/78/94/0c6ce22feb5b9c4d6ba5f11a49910ba293e4043f0631894c9f1f056d3345/cryptography-3.3.1-cp27-cp27mu-manylinux2010_x86_64.whl">https://files.pythonhosted.org/packages/78/94/0c6ce22feb5b9c4d6ba5f11a49910ba293e4043f0631894c9f1f056d3345/cryptography-3.3.1-cp27-cp27mu-manylinux2010_x86_64.whl</a></p> <p>Path to dependency file: Azure-Sentinel/DataConnectors/Box/requirements.txt</p> <p>Path to vulnerable library: Azure-Sentinel/DataConnectors/Box/requirements.txt,Azure-Sentinel/DataConnectors/Box/BoxConn/requirements.txt</p> <p> Dependency Hierarchy: - azure_storage_file_share-12.3.0-py2.py3-none-any.whl (Root Library) - :x: **cryptography-3.3.1-cp27-cp27mu-manylinux2010_x86_64.whl** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/idonthaveafifaaddiction/Azure-Sentinel/commit/cd11d9fa862453c1f9d4a63ddad38e372d82fb77">cd11d9fa862453c1f9d4a63ddad38e372d82fb77</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In the cryptography package before 3.3.2 for Python, certain sequences of update calls to symmetrically encrypt multi-GB values could result in an integer overflow and buffer overflow, as demonstrated by the Fernet class. <p>Publish Date: 2021-02-07 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-36242>CVE-2020-36242</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.1</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: 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/pyca/cryptography/blob/master/CHANGELOG.rst">https://github.com/pyca/cryptography/blob/master/CHANGELOG.rst</a></p> <p>Release Date: 2021-02-07</p> <p>Fix Resolution: cryptography - 3.3.2</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Python","packageName":"cryptography","packageVersion":"3.3.1","packageFilePaths":["/DataConnectors/Box/requirements.txt","/DataConnectors/Box/BoxConn/requirements.txt"],"isTransitiveDependency":true,"dependencyTree":"azure-storage-file-share:12.3.0;cryptography:3.3.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"cryptography - 3.3.2"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2020-36242","vulnerabilityDetails":"In the cryptography package before 3.3.2 for Python, certain sequences of update calls to symmetrically encrypt multi-GB values could result in an integer overflow and buffer overflow, as demonstrated by the Fernet class.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-36242","cvss3Severity":"high","cvss3Score":"9.1","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
True
CVE-2020-36242 (High) detected in cryptography-3.3.1-cp27-cp27mu-manylinux2010_x86_64.whl - ## CVE-2020-36242 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>cryptography-3.3.1-cp27-cp27mu-manylinux2010_x86_64.whl</b></p></summary> <p>cryptography is a package which provides cryptographic recipes and primitives to Python developers.</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/78/94/0c6ce22feb5b9c4d6ba5f11a49910ba293e4043f0631894c9f1f056d3345/cryptography-3.3.1-cp27-cp27mu-manylinux2010_x86_64.whl">https://files.pythonhosted.org/packages/78/94/0c6ce22feb5b9c4d6ba5f11a49910ba293e4043f0631894c9f1f056d3345/cryptography-3.3.1-cp27-cp27mu-manylinux2010_x86_64.whl</a></p> <p>Path to dependency file: Azure-Sentinel/DataConnectors/Box/requirements.txt</p> <p>Path to vulnerable library: Azure-Sentinel/DataConnectors/Box/requirements.txt,Azure-Sentinel/DataConnectors/Box/BoxConn/requirements.txt</p> <p> Dependency Hierarchy: - azure_storage_file_share-12.3.0-py2.py3-none-any.whl (Root Library) - :x: **cryptography-3.3.1-cp27-cp27mu-manylinux2010_x86_64.whl** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/idonthaveafifaaddiction/Azure-Sentinel/commit/cd11d9fa862453c1f9d4a63ddad38e372d82fb77">cd11d9fa862453c1f9d4a63ddad38e372d82fb77</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> In the cryptography package before 3.3.2 for Python, certain sequences of update calls to symmetrically encrypt multi-GB values could result in an integer overflow and buffer overflow, as demonstrated by the Fernet class. <p>Publish Date: 2021-02-07 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-36242>CVE-2020-36242</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.1</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: 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/pyca/cryptography/blob/master/CHANGELOG.rst">https://github.com/pyca/cryptography/blob/master/CHANGELOG.rst</a></p> <p>Release Date: 2021-02-07</p> <p>Fix Resolution: cryptography - 3.3.2</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Python","packageName":"cryptography","packageVersion":"3.3.1","packageFilePaths":["/DataConnectors/Box/requirements.txt","/DataConnectors/Box/BoxConn/requirements.txt"],"isTransitiveDependency":true,"dependencyTree":"azure-storage-file-share:12.3.0;cryptography:3.3.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"cryptography - 3.3.2"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2020-36242","vulnerabilityDetails":"In the cryptography package before 3.3.2 for Python, certain sequences of update calls to symmetrically encrypt multi-GB values could result in an integer overflow and buffer overflow, as demonstrated by the Fernet class.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-36242","cvss3Severity":"high","cvss3Score":"9.1","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
non_defect
cve high detected in cryptography whl cve high severity vulnerability vulnerable library cryptography whl cryptography is a package which provides cryptographic recipes and primitives to python developers library home page a href path to dependency file azure sentinel dataconnectors box requirements txt path to vulnerable library azure sentinel dataconnectors box requirements txt azure sentinel dataconnectors box boxconn requirements txt dependency hierarchy azure storage file share none any whl root library x cryptography whl vulnerable library found in head commit a href found in base branch master vulnerability details in the cryptography package before for python certain sequences of update calls to symmetrically encrypt multi gb values could result in an integer overflow and buffer overflow as demonstrated by the fernet class publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution cryptography isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree azure storage file share cryptography isminimumfixversionavailable true minimumfixversion cryptography basebranches vulnerabilityidentifier cve vulnerabilitydetails in the cryptography package before for python certain sequences of update calls to symmetrically encrypt multi gb values could result in an integer overflow and buffer overflow as demonstrated by the fernet class vulnerabilityurl
0
169,357
6,400,393,305
IssuesEvent
2017-08-05 10:31:01
blibli-future/detroit
https://api.github.com/repos/blibli-future/detroit
closed
Implement API authentication
priority/high
For simplicity, I think we can just use basic HTTP auth. Tutorial I found from a 10 sec google search: http://www.baeldung.com/spring-security-basic-authentication
1.0
Implement API authentication - For simplicity, I think we can just use basic HTTP auth. Tutorial I found from a 10 sec google search: http://www.baeldung.com/spring-security-basic-authentication
non_defect
implement api authentication for simplicity i think we can just use basic http auth tutorial i found from a sec google search
0
95,683
27,584,189,882
IssuesEvent
2023-03-08 18:22:50
cased/shell
https://api.github.com/repos/cased/shell
opened
Codespaces Prebuilds failed on main
failure Codespaces Prebuilds
Codespaces Prebuilds failed on a workflow_run event on main at 2023-03-08T18:13:17Z. * https://github.com/cased/shell/actions/runs/4367250119 * https://github.com/cased/shell/blob/main/dynamic/codespaces/create_codespaces_prebuilds
1.0
Codespaces Prebuilds failed on main - Codespaces Prebuilds failed on a workflow_run event on main at 2023-03-08T18:13:17Z. * https://github.com/cased/shell/actions/runs/4367250119 * https://github.com/cased/shell/blob/main/dynamic/codespaces/create_codespaces_prebuilds
non_defect
codespaces prebuilds failed on main codespaces prebuilds failed on a workflow run event on main at
0
78,001
27,272,484,893
IssuesEvent
2023-02-23 00:05:25
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
opened
Element tries to request avatars from non-exist servers.
T-Defect
### Steps to reproduce _Excuse me, it will be finished a bit later._ To reproduce you need an invite to the room on non-existed server. Click to show invites. Note: server does not exist. ### Outcome #### What did you expect? No request to non-exist server. #### What happened instead? Request an avatar from non-existed server, drops 404 error. ### Operating system Windows 7 ### Application version 1.11.23 ### How did you install the app? In-app update ### Homeserver matrix.org ### Will you send logs? No
1.0
Element tries to request avatars from non-exist servers. - ### Steps to reproduce _Excuse me, it will be finished a bit later._ To reproduce you need an invite to the room on non-existed server. Click to show invites. Note: server does not exist. ### Outcome #### What did you expect? No request to non-exist server. #### What happened instead? Request an avatar from non-existed server, drops 404 error. ### Operating system Windows 7 ### Application version 1.11.23 ### How did you install the app? In-app update ### Homeserver matrix.org ### Will you send logs? No
defect
element tries to request avatars from non exist servers steps to reproduce excuse me it will be finished a bit later to reproduce you need an invite to the room on non existed server click to show invites note server does not exist outcome what did you expect no request to non exist server what happened instead request an avatar from non existed server drops error operating system windows application version how did you install the app in app update homeserver matrix org will you send logs no
1
67,427
14,878,525,791
IssuesEvent
2021-01-20 05:55:09
turkdevops/angular
https://api.github.com/repos/turkdevops/angular
opened
WS-2018-0590 (High) detected in multiple libraries
security vulnerability
## WS-2018-0590 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>diff-3.2.0.tgz</b>, <b>diff-1.4.0.tgz</b>, <b>diff-3.4.0.tgz</b></p></summary> <p> <details><summary><b>diff-3.2.0.tgz</b></p></summary> <p>A javascript text diff implementation.</p> <p>Library home page: <a href="https://registry.npmjs.org/diff/-/diff-3.2.0.tgz">https://registry.npmjs.org/diff/-/diff-3.2.0.tgz</a></p> <p>Path to dependency file: angular/packages/zone.js/node_modules/diff/package.json</p> <p>Path to vulnerable library: angular/packages/zone.js/node_modules/diff/package.json</p> <p> Dependency Hierarchy: - mocha-3.5.3.tgz (Root Library) - :x: **diff-3.2.0.tgz** (Vulnerable Library) </details> <details><summary><b>diff-1.4.0.tgz</b></p></summary> <p>A javascript text diff implementation.</p> <p>Library home page: <a href="https://registry.npmjs.org/diff/-/diff-1.4.0.tgz">https://registry.npmjs.org/diff/-/diff-1.4.0.tgz</a></p> <p>Path to dependency file: angular/packages/zone.js/node_modules/diff/package.json</p> <p>Path to vulnerable library: angular/packages/zone.js/node_modules/diff/package.json</p> <p> Dependency Hierarchy: - promises-aplus-tests-2.1.2.tgz (Root Library) - mocha-2.5.3.tgz - :x: **diff-1.4.0.tgz** (Vulnerable Library) </details> <details><summary><b>diff-3.4.0.tgz</b></p></summary> <p>A javascript text diff implementation.</p> <p>Library home page: <a href="https://registry.npmjs.org/diff/-/diff-3.4.0.tgz">https://registry.npmjs.org/diff/-/diff-3.4.0.tgz</a></p> <p>Path to dependency file: angular/integration/cli-hello-world/yarn.lock</p> <p>Path to vulnerable library: angular/integration/cli-hello-world/yarn.lock</p> <p> Dependency Hierarchy: - tslint-5.18.0.tgz (Root Library) - :x: **diff-3.4.0.tgz** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/turkdevops/angular/commit/c6aca37f442da8c55a02d7c53ccc58100ab004f3">c6aca37f442da8c55a02d7c53ccc58100ab004f3</a></p> <p>Found in base branch: <b>labs/router</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> A vulnerability was found in diff before v3.5.0, the affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) attacks. <p>Publish Date: 2018-03-05 <p>URL: <a href=https://bugzilla.redhat.com/show_bug.cgi?id=1552148>WS-2018-0590</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 2 Score Details (<b>7.0</b>)</summary> <p> Base Score Metrics not available</p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/kpdecker/jsdiff/commit/2aec4298639bf30fb88a00b356bf404d3551b8c0">https://github.com/kpdecker/jsdiff/commit/2aec4298639bf30fb88a00b356bf404d3551b8c0</a></p> <p>Release Date: 2019-06-11</p> <p>Fix Resolution: 3.5.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
WS-2018-0590 (High) detected in multiple libraries - ## WS-2018-0590 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>diff-3.2.0.tgz</b>, <b>diff-1.4.0.tgz</b>, <b>diff-3.4.0.tgz</b></p></summary> <p> <details><summary><b>diff-3.2.0.tgz</b></p></summary> <p>A javascript text diff implementation.</p> <p>Library home page: <a href="https://registry.npmjs.org/diff/-/diff-3.2.0.tgz">https://registry.npmjs.org/diff/-/diff-3.2.0.tgz</a></p> <p>Path to dependency file: angular/packages/zone.js/node_modules/diff/package.json</p> <p>Path to vulnerable library: angular/packages/zone.js/node_modules/diff/package.json</p> <p> Dependency Hierarchy: - mocha-3.5.3.tgz (Root Library) - :x: **diff-3.2.0.tgz** (Vulnerable Library) </details> <details><summary><b>diff-1.4.0.tgz</b></p></summary> <p>A javascript text diff implementation.</p> <p>Library home page: <a href="https://registry.npmjs.org/diff/-/diff-1.4.0.tgz">https://registry.npmjs.org/diff/-/diff-1.4.0.tgz</a></p> <p>Path to dependency file: angular/packages/zone.js/node_modules/diff/package.json</p> <p>Path to vulnerable library: angular/packages/zone.js/node_modules/diff/package.json</p> <p> Dependency Hierarchy: - promises-aplus-tests-2.1.2.tgz (Root Library) - mocha-2.5.3.tgz - :x: **diff-1.4.0.tgz** (Vulnerable Library) </details> <details><summary><b>diff-3.4.0.tgz</b></p></summary> <p>A javascript text diff implementation.</p> <p>Library home page: <a href="https://registry.npmjs.org/diff/-/diff-3.4.0.tgz">https://registry.npmjs.org/diff/-/diff-3.4.0.tgz</a></p> <p>Path to dependency file: angular/integration/cli-hello-world/yarn.lock</p> <p>Path to vulnerable library: angular/integration/cli-hello-world/yarn.lock</p> <p> Dependency Hierarchy: - tslint-5.18.0.tgz (Root Library) - :x: **diff-3.4.0.tgz** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/turkdevops/angular/commit/c6aca37f442da8c55a02d7c53ccc58100ab004f3">c6aca37f442da8c55a02d7c53ccc58100ab004f3</a></p> <p>Found in base branch: <b>labs/router</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> A vulnerability was found in diff before v3.5.0, the affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) attacks. <p>Publish Date: 2018-03-05 <p>URL: <a href=https://bugzilla.redhat.com/show_bug.cgi?id=1552148>WS-2018-0590</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 2 Score Details (<b>7.0</b>)</summary> <p> Base Score Metrics not available</p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/kpdecker/jsdiff/commit/2aec4298639bf30fb88a00b356bf404d3551b8c0">https://github.com/kpdecker/jsdiff/commit/2aec4298639bf30fb88a00b356bf404d3551b8c0</a></p> <p>Release Date: 2019-06-11</p> <p>Fix Resolution: 3.5.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
ws high detected in multiple libraries ws high severity vulnerability vulnerable libraries diff tgz diff tgz diff tgz diff tgz a javascript text diff implementation library home page a href path to dependency file angular packages zone js node modules diff package json path to vulnerable library angular packages zone js node modules diff package json dependency hierarchy mocha tgz root library x diff tgz vulnerable library diff tgz a javascript text diff implementation library home page a href path to dependency file angular packages zone js node modules diff package json path to vulnerable library angular packages zone js node modules diff package json dependency hierarchy promises aplus tests tgz root library mocha tgz x diff tgz vulnerable library diff tgz a javascript text diff implementation library home page a href path to dependency file angular integration cli hello world yarn lock path to vulnerable library angular integration cli hello world yarn lock dependency hierarchy tslint tgz root library x diff tgz vulnerable library found in head commit a href found in base branch labs router vulnerability details a vulnerability was found in diff before the affected versions of this package are vulnerable to regular expression denial of service redos attacks publish date url a href cvss score details base score metrics not available suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with whitesource
0
12,611
14,916,306,537
IssuesEvent
2021-01-22 18:00:14
Vazkii/Quark
https://api.github.com/repos/Vazkii/Quark
closed
Magnet System Crash
bug compatibility critical
`Minecraft v1.16.5` `Forge 36.0.1` `Quark r2.4-295` If the magnet system config is modified to include modded items, but said mod is removed, the game will crash instead of ignoring the item id. For example, while building a modpack, I originally had `iceandfire:copper_ingot` in the magnet derivation config, but then removed the mod and got a crash. [Crash Report](https://gist.github.com/WenXin20/707b06ce5d8920abcf2fd78f90d6d16a)
True
Magnet System Crash - `Minecraft v1.16.5` `Forge 36.0.1` `Quark r2.4-295` If the magnet system config is modified to include modded items, but said mod is removed, the game will crash instead of ignoring the item id. For example, while building a modpack, I originally had `iceandfire:copper_ingot` in the magnet derivation config, but then removed the mod and got a crash. [Crash Report](https://gist.github.com/WenXin20/707b06ce5d8920abcf2fd78f90d6d16a)
non_defect
magnet system crash minecraft forge quark if the magnet system config is modified to include modded items but said mod is removed the game will crash instead of ignoring the item id for example while building a modpack i originally had iceandfire copper ingot in the magnet derivation config but then removed the mod and got a crash
0
17,897
12,415,254,871
IssuesEvent
2020-05-22 15:54:00
wellcometrust/reach
https://api.github.com/repos/wellcometrust/reach
closed
Add favicon to Reach
Usability
Adding a favicon will reinforce with users that we are the real deal. It will also (in a very very small 16px big kind of way) be another Wellcome brand touch point. [Packaged folder with all favicons](https://app.zenhub.com/files/144130297/ed4ff9b6-1a89-4fdb-8f3c-dc4cb7eff710/download)
True
Add favicon to Reach - Adding a favicon will reinforce with users that we are the real deal. It will also (in a very very small 16px big kind of way) be another Wellcome brand touch point. [Packaged folder with all favicons](https://app.zenhub.com/files/144130297/ed4ff9b6-1a89-4fdb-8f3c-dc4cb7eff710/download)
non_defect
add favicon to reach adding a favicon will reinforce with users that we are the real deal it will also in a very very small big kind of way be another wellcome brand touch point
0
166,266
26,332,535,618
IssuesEvent
2023-01-10 11:58:06
musescore/MuseScore
https://api.github.com/repos/musescore/MuseScore
closed
[MU4 Input Regression] Can't assign multiple shortcuts to the same action.
by design
**Describe the bug** The shortcuts section of the settings dialog doesn't allow assigning multiple shortcuts to the same action. This was possible in MuseScore 3. **To Reproduce** 1. Go to "Edit" -> "Preferences" -> "Shortcuts" 2. Pick "Enter Note B" from the list (or any other entry) 3. Click "Define..." 4. Try to find a way to assign both "B" and "H" as shortcuts. There isn't. **Expected behavior** There should be a way to add an additional shortcut, instead of overwriting all existing ones. Ideas: - Like in MuseScore 3, have "Add" and "Replace" buttons instead of "Save" - An "additional shortcut" checkbox. When checked, the "Save" button acts like the old "Add" button. - Separate shortcut boxes for each assigned shortcut, labeled "Shortcut 1", "Shortcut 2", etc. To overwrite an existing shortcut, click it's box; to add a new one, there should be an additional empty one. When that is assigned a shortcut, add a new one below etc. For deleting existing shortcuts, place a trashcan icon next to each box. **Platform information** - OS: Windows 10 x64 - MuseScore version (64-bit): 4.0.0-223472200, revision: github-musescore-musescore-5485621 **Why** - German uses "H" for B natural, and "B" for B flat. As natural/flat is handled by the key signature, I'd like both keys to be considered equal for note input (example from above). Related issues: #15404 , #12657 - This would also allow assigning both sets of number keys to note duration selection; see #15204 - Several predefined shortcuts, such as "Edit element" or the note duration selection for Tabulature have multiple shortcuts assigned, leading to the expectation that this is possible to achieve. **Workaround** It is currently possible to "hack" in multiple shortcuts for the same action: 1. Go to "Edit" -> "Preferences" -> "Shortcuts" 2. Click "Export"; Save the file somewhere. 3. Edit it with a text editor: 3.1. search for the existing shortcut 3.2. verify that the corresponding `<key>` seems like it matches the action you want to assign an additional shortcut t0o 3.3. duplicate the `<seq>` element 3.4. edit the content of the duplicate to your desired additional shortcut 3.5. save 4. back in musescore, in that same dialog, click "Import" and select the modified file. As an example; to assign both "B" and "H" to note input, in step 3, you'd change ```xml <SC> <key>note-b</key> <seq>B</seq> </SC> ``` to ```xml <SC> <key>note-b</key> <seq>B</seq> <seq>H</seq> </SC> ```
1.0
[MU4 Input Regression] Can't assign multiple shortcuts to the same action. - **Describe the bug** The shortcuts section of the settings dialog doesn't allow assigning multiple shortcuts to the same action. This was possible in MuseScore 3. **To Reproduce** 1. Go to "Edit" -> "Preferences" -> "Shortcuts" 2. Pick "Enter Note B" from the list (or any other entry) 3. Click "Define..." 4. Try to find a way to assign both "B" and "H" as shortcuts. There isn't. **Expected behavior** There should be a way to add an additional shortcut, instead of overwriting all existing ones. Ideas: - Like in MuseScore 3, have "Add" and "Replace" buttons instead of "Save" - An "additional shortcut" checkbox. When checked, the "Save" button acts like the old "Add" button. - Separate shortcut boxes for each assigned shortcut, labeled "Shortcut 1", "Shortcut 2", etc. To overwrite an existing shortcut, click it's box; to add a new one, there should be an additional empty one. When that is assigned a shortcut, add a new one below etc. For deleting existing shortcuts, place a trashcan icon next to each box. **Platform information** - OS: Windows 10 x64 - MuseScore version (64-bit): 4.0.0-223472200, revision: github-musescore-musescore-5485621 **Why** - German uses "H" for B natural, and "B" for B flat. As natural/flat is handled by the key signature, I'd like both keys to be considered equal for note input (example from above). Related issues: #15404 , #12657 - This would also allow assigning both sets of number keys to note duration selection; see #15204 - Several predefined shortcuts, such as "Edit element" or the note duration selection for Tabulature have multiple shortcuts assigned, leading to the expectation that this is possible to achieve. **Workaround** It is currently possible to "hack" in multiple shortcuts for the same action: 1. Go to "Edit" -> "Preferences" -> "Shortcuts" 2. Click "Export"; Save the file somewhere. 3. Edit it with a text editor: 3.1. search for the existing shortcut 3.2. verify that the corresponding `<key>` seems like it matches the action you want to assign an additional shortcut t0o 3.3. duplicate the `<seq>` element 3.4. edit the content of the duplicate to your desired additional shortcut 3.5. save 4. back in musescore, in that same dialog, click "Import" and select the modified file. As an example; to assign both "B" and "H" to note input, in step 3, you'd change ```xml <SC> <key>note-b</key> <seq>B</seq> </SC> ``` to ```xml <SC> <key>note-b</key> <seq>B</seq> <seq>H</seq> </SC> ```
non_defect
can t assign multiple shortcuts to the same action describe the bug the shortcuts section of the settings dialog doesn t allow assigning multiple shortcuts to the same action this was possible in musescore to reproduce go to edit preferences shortcuts pick enter note b from the list or any other entry click define try to find a way to assign both b and h as shortcuts there isn t expected behavior there should be a way to add an additional shortcut instead of overwriting all existing ones ideas like in musescore have add and replace buttons instead of save an additional shortcut checkbox when checked the save button acts like the old add button separate shortcut boxes for each assigned shortcut labeled shortcut shortcut etc to overwrite an existing shortcut click it s box to add a new one there should be an additional empty one when that is assigned a shortcut add a new one below etc for deleting existing shortcuts place a trashcan icon next to each box platform information os windows musescore version bit revision github musescore musescore why german uses h for b natural and b for b flat as natural flat is handled by the key signature i d like both keys to be considered equal for note input example from above related issues this would also allow assigning both sets of number keys to note duration selection see several predefined shortcuts such as edit element or the note duration selection for tabulature have multiple shortcuts assigned leading to the expectation that this is possible to achieve workaround it is currently possible to hack in multiple shortcuts for the same action go to edit preferences shortcuts click export save the file somewhere edit it with a text editor search for the existing shortcut verify that the corresponding seems like it matches the action you want to assign an additional shortcut duplicate the element edit the content of the duplicate to your desired additional shortcut save back in musescore in that same dialog click import and select the modified file as an example to assign both b and h to note input in step you d change xml note b b to xml note b b h
0
29,784
5,890,946,318
IssuesEvent
2017-05-17 15:57:06
buildo/scriptoni
https://api.github.com/repos/buildo/scriptoni
closed
cleanup webpack config handling
defect in review
## description Two slightly related problems: - the error given in case of broken `Config.js` is misleading: we should differentiate between config file not found and config file broken - the default config does not define a `bundle` key, so code crashes if falling back to the default one ## how to reproduce - run `scriptoni build` with an invalid (e.g. invalid syntax or invalid import) `Config.js` in your project ## specs in https://github.com/buildo/scriptoni/blob/master/src/scripts/webpack/config.js#L36 - first, `fs.statSync(configTypePath)` and log the current warning if file is actually not there - then, fail without catching if syntax is not OK in that file (or any other problem.. basically, if `require`ing it fails) also, before accessing `ConfigType.meta.props.bundle...` - update the code to check for the existence of `.bundle` in the type (e.g.: the default type doesn't have it) ## misc {optional: other useful info}
1.0
cleanup webpack config handling - ## description Two slightly related problems: - the error given in case of broken `Config.js` is misleading: we should differentiate between config file not found and config file broken - the default config does not define a `bundle` key, so code crashes if falling back to the default one ## how to reproduce - run `scriptoni build` with an invalid (e.g. invalid syntax or invalid import) `Config.js` in your project ## specs in https://github.com/buildo/scriptoni/blob/master/src/scripts/webpack/config.js#L36 - first, `fs.statSync(configTypePath)` and log the current warning if file is actually not there - then, fail without catching if syntax is not OK in that file (or any other problem.. basically, if `require`ing it fails) also, before accessing `ConfigType.meta.props.bundle...` - update the code to check for the existence of `.bundle` in the type (e.g.: the default type doesn't have it) ## misc {optional: other useful info}
defect
cleanup webpack config handling description two slightly related problems the error given in case of broken config js is misleading we should differentiate between config file not found and config file broken the default config does not define a bundle key so code crashes if falling back to the default one how to reproduce run scriptoni build with an invalid e g invalid syntax or invalid import config js in your project specs in first fs statsync configtypepath and log the current warning if file is actually not there then fail without catching if syntax is not ok in that file or any other problem basically if require ing it fails also before accessing configtype meta props bundle update the code to check for the existence of bundle in the type e g the default type doesn t have it misc optional other useful info
1
15,762
2,869,058,150
IssuesEvent
2015-06-05 22:59:44
dart-lang/sdk
https://api.github.com/repos/dart-lang/sdk
closed
dart2js pkg/matcher/test/matchers_test fails on ie9
Area-Dart2JS Browser-IE Pkg-Matcher Priority-Medium Triaged Type-Defect
There is a failure in matchers_test in the cyclic initialization test: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;type: print &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;value: FAIL: exception/error matchers throwsCyclicInitializationError &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Expected: throws CyclicInitializationError &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Actual: &lt;Closure&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Which: threw JsNoSuchMethodError:&lt;NoSuchMethodError: Object doesn't support property or method '$add' (Error 438)&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;timestamp: 1.769 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}, This is only on ie9, in both checked and unchecked mode. The test is now suppressed in pkg/pkg.status on ie9.
1.0
dart2js pkg/matcher/test/matchers_test fails on ie9 - There is a failure in matchers_test in the cyclic initialization test: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;type: print &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;value: FAIL: exception/error matchers throwsCyclicInitializationError &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Expected: throws CyclicInitializationError &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Actual: &lt;Closure&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Which: threw JsNoSuchMethodError:&lt;NoSuchMethodError: Object doesn't support property or method '$add' (Error 438)&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;timestamp: 1.769 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}, This is only on ie9, in both checked and unchecked mode. The test is now suppressed in pkg/pkg.status on ie9.
defect
pkg matcher test matchers test fails on there is a failure in matchers test in the cyclic initialization test nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp type print nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp value fail exception error matchers throwscyclicinitializationerror nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp expected throws cyclicinitializationerror nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp actual lt closure gt nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp which threw jsnosuchmethoderror lt nosuchmethoderror object doesn t support property or method add error gt nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp timestamp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp this is only on in both checked and unchecked mode the test is now suppressed in pkg pkg status on
1
27,886
5,117,892,514
IssuesEvent
2017-01-07 21:47:54
bigbluebutton/bigbluebutton
https://api.github.com/repos/bigbluebutton/bigbluebutton
closed
Sharing a HD video using Ubuntu desktop 12.04 and FireFox running Flash 11.2 causes videos to freeze
Accepted Defect Normal Priority Stability Video
Originally reported on Google Code with ID 1581 ``` What steps will reproduce the problem? 1. Join as user A using Ubuntu desktop 12.04 and FireFox running Flash 11.2. Share a HD video 2. Join as User B and C using Windows desktop running a browser that has Flash 11.7 3. After above five minutes, all the videos will freeze. ``` Reported by `ffdixon` on 2013-07-08 12:39:42
1.0
Sharing a HD video using Ubuntu desktop 12.04 and FireFox running Flash 11.2 causes videos to freeze - Originally reported on Google Code with ID 1581 ``` What steps will reproduce the problem? 1. Join as user A using Ubuntu desktop 12.04 and FireFox running Flash 11.2. Share a HD video 2. Join as User B and C using Windows desktop running a browser that has Flash 11.7 3. After above five minutes, all the videos will freeze. ``` Reported by `ffdixon` on 2013-07-08 12:39:42
defect
sharing a hd video using ubuntu desktop and firefox running flash causes videos to freeze originally reported on google code with id what steps will reproduce the problem join as user a using ubuntu desktop and firefox running flash share a hd video join as user b and c using windows desktop running a browser that has flash after above five minutes all the videos will freeze reported by ffdixon on
1
179,642
21,577,047,590
IssuesEvent
2022-05-02 14:44:04
wrbejar/VulnerableNode
https://api.github.com/repos/wrbejar/VulnerableNode
opened
body-parser-1.13.3.tgz: 1 vulnerabilities (highest severity is: 7.5)
security vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>body-parser-1.13.3.tgz</b></p></summary> <p></p> <p>Path to dependency file: /vulnerable-node-master/package.json</p> <p>Path to vulnerable library: /vulnerable-node-master/node_modules/qs/package.json,/node_modules/qs/package.json</p> <p> <p>Found in HEAD commit: <a href="https://github.com/wrbejar/VulnerableNode/commit/c80902d8d16e96120b727551e8d6b5f0174fe207">c80902d8d16e96120b727551e8d6b5f0174fe207</a></p></details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | --- | --- | | [CVE-2017-1000048](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-1000048) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | qs-4.0.0.tgz | Transitive | 1.15.0 | &#9989; | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2017-1000048</summary> ### Vulnerable Library - <b>qs-4.0.0.tgz</b></p> <p>A querystring parser that supports nesting and arrays, with a depth limit</p> <p>Library home page: <a href="https://registry.npmjs.org/qs/-/qs-4.0.0.tgz">https://registry.npmjs.org/qs/-/qs-4.0.0.tgz</a></p> <p>Path to dependency file: /vulnerable-node-master/package.json</p> <p>Path to vulnerable library: /vulnerable-node-master/node_modules/qs/package.json,/node_modules/qs/package.json</p> <p> Dependency Hierarchy: - body-parser-1.13.3.tgz (Root Library) - :x: **qs-4.0.0.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/wrbejar/VulnerableNode/commit/c80902d8d16e96120b727551e8d6b5f0174fe207">c80902d8d16e96120b727551e8d6b5f0174fe207</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> the web framework using ljharb's qs module older than v6.3.2, v6.2.3, v6.1.2, and v6.0.4 is vulnerable to a DoS. A malicious user can send a evil request to cause the web framework crash. <p>Publish Date: 2017-07-17 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-1000048>CVE-2017-1000048</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-1000048">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-1000048</a></p> <p>Release Date: 2017-07-17</p> <p>Fix Resolution (qs): 6.0.4</p> <p>Direct dependency fix Resolution (body-parser): 1.15.0</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details> *** <p>:rescue_worker_helmet: Automatic Remediation is available for this issue.</p> <!-- <REMEDIATE>[{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"body-parser","packageVersion":"1.13.3","packageFilePaths":["/vulnerable-node-master/package.json"],"isTransitiveDependency":false,"dependencyTree":"body-parser:1.13.3","isMinimumFixVersionAvailable":true,"minimumFixVersion":"1.15.0","isBinary":false}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2017-1000048","vulnerabilityDetails":"the web framework using ljharb\u0027s qs module older than v6.3.2, v6.2.3, v6.1.2, and v6.0.4 is vulnerable to a DoS. A malicious user can send a evil request to cause the web framework crash.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-1000048","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}]</REMEDIATE> -->
True
body-parser-1.13.3.tgz: 1 vulnerabilities (highest severity is: 7.5) - <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>body-parser-1.13.3.tgz</b></p></summary> <p></p> <p>Path to dependency file: /vulnerable-node-master/package.json</p> <p>Path to vulnerable library: /vulnerable-node-master/node_modules/qs/package.json,/node_modules/qs/package.json</p> <p> <p>Found in HEAD commit: <a href="https://github.com/wrbejar/VulnerableNode/commit/c80902d8d16e96120b727551e8d6b5f0174fe207">c80902d8d16e96120b727551e8d6b5f0174fe207</a></p></details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | --- | --- | | [CVE-2017-1000048](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-1000048) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> High | 7.5 | qs-4.0.0.tgz | Transitive | 1.15.0 | &#9989; | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> CVE-2017-1000048</summary> ### Vulnerable Library - <b>qs-4.0.0.tgz</b></p> <p>A querystring parser that supports nesting and arrays, with a depth limit</p> <p>Library home page: <a href="https://registry.npmjs.org/qs/-/qs-4.0.0.tgz">https://registry.npmjs.org/qs/-/qs-4.0.0.tgz</a></p> <p>Path to dependency file: /vulnerable-node-master/package.json</p> <p>Path to vulnerable library: /vulnerable-node-master/node_modules/qs/package.json,/node_modules/qs/package.json</p> <p> Dependency Hierarchy: - body-parser-1.13.3.tgz (Root Library) - :x: **qs-4.0.0.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/wrbejar/VulnerableNode/commit/c80902d8d16e96120b727551e8d6b5f0174fe207">c80902d8d16e96120b727551e8d6b5f0174fe207</a></p> <p>Found in base branch: <b>master</b></p> </p> <p></p> ### Vulnerability Details <p> the web framework using ljharb's qs module older than v6.3.2, v6.2.3, v6.1.2, and v6.0.4 is vulnerable to a DoS. A malicious user can send a evil request to cause the web framework crash. <p>Publish Date: 2017-07-17 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-1000048>CVE-2017-1000048</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>7.5</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-1000048">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-1000048</a></p> <p>Release Date: 2017-07-17</p> <p>Fix Resolution (qs): 6.0.4</p> <p>Direct dependency fix Resolution (body-parser): 1.15.0</p> </p> <p></p> :rescue_worker_helmet: Automatic Remediation is available for this issue </details> *** <p>:rescue_worker_helmet: Automatic Remediation is available for this issue.</p> <!-- <REMEDIATE>[{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"body-parser","packageVersion":"1.13.3","packageFilePaths":["/vulnerable-node-master/package.json"],"isTransitiveDependency":false,"dependencyTree":"body-parser:1.13.3","isMinimumFixVersionAvailable":true,"minimumFixVersion":"1.15.0","isBinary":false}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2017-1000048","vulnerabilityDetails":"the web framework using ljharb\u0027s qs module older than v6.3.2, v6.2.3, v6.1.2, and v6.0.4 is vulnerable to a DoS. A malicious user can send a evil request to cause the web framework crash.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-1000048","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}]</REMEDIATE> -->
non_defect
body parser tgz vulnerabilities highest severity is vulnerable library body parser tgz path to dependency file vulnerable node master package json path to vulnerable library vulnerable node master node modules qs package json node modules qs package json found in head commit a href vulnerabilities cve severity cvss dependency type fixed in remediation available high qs tgz transitive details cve vulnerable library qs tgz a querystring parser that supports nesting and arrays with a depth limit library home page a href path to dependency file vulnerable node master package json path to vulnerable library vulnerable node master node modules qs package json node modules qs package json dependency hierarchy body parser tgz root library x qs tgz vulnerable library found in head commit a href found in base branch master vulnerability details the web framework using ljharb s qs module older than and is vulnerable to a dos a malicious user can send a evil request to cause the web framework crash 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 qs direct dependency fix resolution body parser rescue worker helmet automatic remediation is available for this issue rescue worker helmet automatic remediation is available for this issue istransitivedependency false dependencytree body parser isminimumfixversionavailable true minimumfixversion isbinary false basebranches vulnerabilityidentifier cve vulnerabilitydetails the web framework using ljharb qs module older than and is vulnerable to a dos a malicious user can send a evil request to cause the web framework crash vulnerabilityurl
0
47,592
13,056,268,944
IssuesEvent
2020-07-30 04:11:06
icecube-trac/tix2
https://api.github.com/repos/icecube-trac/tix2
closed
I3Db - documentation, make doxygen render (Trac #811)
Migrated from Trac combo core defect
I3Db has doxygen-ish comment blocks but they don't render, because they're formatted wrong. fix examples in public/I3Db/I3OmDb/I3OmDb.h Migrated from https://code.icecube.wisc.edu/ticket/811 ```json { "status": "closed", "changetime": "2015-02-11T21:45:49", "description": "I3Db has doxygen-ish comment blocks but they don't render, because they're formatted wrong.\n\nfix\n\nexamples in public/I3Db/I3OmDb/I3OmDb.h", "reporter": "nega", "cc": "", "resolution": "wontfix", "_ts": "1423691149479681", "component": "combo core", "summary": "I3Db - documentation, make doxygen render", "priority": "normal", "keywords": "I3Db documentation doxygen", "time": "2014-11-19T22:56:26", "milestone": "", "owner": "nega", "type": "defect" } ```
1.0
I3Db - documentation, make doxygen render (Trac #811) - I3Db has doxygen-ish comment blocks but they don't render, because they're formatted wrong. fix examples in public/I3Db/I3OmDb/I3OmDb.h Migrated from https://code.icecube.wisc.edu/ticket/811 ```json { "status": "closed", "changetime": "2015-02-11T21:45:49", "description": "I3Db has doxygen-ish comment blocks but they don't render, because they're formatted wrong.\n\nfix\n\nexamples in public/I3Db/I3OmDb/I3OmDb.h", "reporter": "nega", "cc": "", "resolution": "wontfix", "_ts": "1423691149479681", "component": "combo core", "summary": "I3Db - documentation, make doxygen render", "priority": "normal", "keywords": "I3Db documentation doxygen", "time": "2014-11-19T22:56:26", "milestone": "", "owner": "nega", "type": "defect" } ```
defect
documentation make doxygen render trac has doxygen ish comment blocks but they don t render because they re formatted wrong fix examples in public h migrated from json status closed changetime description has doxygen ish comment blocks but they don t render because they re formatted wrong n nfix n nexamples in public h reporter nega cc resolution wontfix ts component combo core summary documentation make doxygen render priority normal keywords documentation doxygen time milestone owner nega type defect
1
26,481
4,727,607,118
IssuesEvent
2016-10-18 13:57:31
NREL/EnergyPlus
https://api.github.com/repos/NREL/EnergyPlus
opened
Add error message when "hoursshown" aggregation is used in first column of Output:Table:Annual and Output:Table:Monthly
Defect Priority
When the advanced aggregation types are used in Output:Table:Monthly or Output:Table:Annual as the first column, an error message should be generated saying that the table results are invalid. The advanced aggregation types depend on a previous column being either Maximum, Minimum, or Hours---. The advanced aggregation types are ValueWhenMaximumOrMinimum, SumOrAverageDuringHoursShown, MaximumDuringHoursShown, MinimumDuringHoursShown. The error message should be smart to detect whenever an advanced aggregation types are used without a previously appropriate aggregation type To reproduce the problem just take a file using these advanced aggregation types and move them to the first column of the Output:Table:Monthly out Output:Table:Annual reports. - [ ] 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
Add error message when "hoursshown" aggregation is used in first column of Output:Table:Annual and Output:Table:Monthly - When the advanced aggregation types are used in Output:Table:Monthly or Output:Table:Annual as the first column, an error message should be generated saying that the table results are invalid. The advanced aggregation types depend on a previous column being either Maximum, Minimum, or Hours---. The advanced aggregation types are ValueWhenMaximumOrMinimum, SumOrAverageDuringHoursShown, MaximumDuringHoursShown, MinimumDuringHoursShown. The error message should be smart to detect whenever an advanced aggregation types are used without a previously appropriate aggregation type To reproduce the problem just take a file using these advanced aggregation types and move them to the first column of the Output:Table:Monthly out Output:Table:Annual reports. - [ ] 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
add error message when hoursshown aggregation is used in first column of output table annual and output table monthly when the advanced aggregation types are used in output table monthly or output table annual as the first column an error message should be generated saying that the table results are invalid the advanced aggregation types depend on a previous column being either maximum minimum or hours the advanced aggregation types are valuewhenmaximumorminimum sumoraverageduringhoursshown maximumduringhoursshown minimumduringhoursshown the error message should be smart to detect whenever an advanced aggregation types are used without a previously appropriate aggregation type to reproduce the problem just take a file using these advanced aggregation types and move them to the first column of the output table monthly out output table annual reports 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
49,383
26,134,993,032
IssuesEvent
2022-12-29 10:54:02
hajimehoshi/ebiten
https://api.github.com/repos/hajimehoshi/ebiten
closed
Bad performance with mismatching sound sampling rates
wontfix os:linux performance
### Ebitengine Version v2.4.9 ### Operating System - [ ] Windows - [ ] macOS - [X] Linux - [ ] FreeBSD - [ ] OpenBSD - [ ] Android - [ ] iOS - [ ] Nintendo Switch - [ ] Xbox - [ ] Web Browsers ### Go Version (`go version`) 1.18.1 ### What steps will reproduce the problem? 1. Create an audio context with sampling rate of 44100 2. Find a wav sound with a sampling rate of 22050 3. Use Decode or DecodeWithSampleRate, specify 44100 as a desired sample rate 4. Create the audio player for that `*wav.Stream` 5. Play the sound, rewind, play again, measure the time ### What is the expected result? One of the following: * Resampling happens only once * The resampling price is not noticeable even if it happens multiple times * There is an API to tell whether the wav needs resampling or not, so program can react according to that ### What happens instead? It looks like there is no resampling caching. Every rewind+play results in a resampling round. Playing a sound without mismatching sample rate takes ~100µs on my machine. Which is good. Playing a 22050 sample rate sound results in ... 20000µs for every play, this is ~0.02s (200 times slower than above). The game becomes sluggish and there are visible hiccups in the game due to that. Here is a profiling results of the game that had performance issues due to that: ![image](https://user-images.githubusercontent.com/6286655/209874749-c076972a-fa21-45c3-b2dc-c6b882f8d7d3.png) Note that top5 is occupied by audio-related issues (resampling). ### Anything else you feel useful to add? Potential solutions: 1. Make it possible to resample the sound only once, play+rewind should be efficient. We can use a loading screen time to resample the resources. The game scene should not experience 0.02 delays before playing a sound. 2. Add some APIs to make it easier (and possible) to detect wav resources that do not have a sample rate that matches the desired sample rate. I don't see and APIs for it right now. `*wav.Stream` doesn't provide any, `Decode` functions don't return that info either. With such a way to detect these sounds, it would be easier to resample all files on our own, before even running the game. But it's not convenient to check each file manually, especially when you're working on multiple games and sounds come from different sources. I would add a check that would print to a console if any of the sounds need to be resampled. Ideally, I would like to have a way to re-encode the sound in the desired sample rate. So I could open the wav file, figure out that sample rate is wrong, re-encode it, then create an audio player on that re-encoded wav. Maybe there is a way to do that but I'm not aware of that option? Please let me know if that's the case.
True
Bad performance with mismatching sound sampling rates - ### Ebitengine Version v2.4.9 ### Operating System - [ ] Windows - [ ] macOS - [X] Linux - [ ] FreeBSD - [ ] OpenBSD - [ ] Android - [ ] iOS - [ ] Nintendo Switch - [ ] Xbox - [ ] Web Browsers ### Go Version (`go version`) 1.18.1 ### What steps will reproduce the problem? 1. Create an audio context with sampling rate of 44100 2. Find a wav sound with a sampling rate of 22050 3. Use Decode or DecodeWithSampleRate, specify 44100 as a desired sample rate 4. Create the audio player for that `*wav.Stream` 5. Play the sound, rewind, play again, measure the time ### What is the expected result? One of the following: * Resampling happens only once * The resampling price is not noticeable even if it happens multiple times * There is an API to tell whether the wav needs resampling or not, so program can react according to that ### What happens instead? It looks like there is no resampling caching. Every rewind+play results in a resampling round. Playing a sound without mismatching sample rate takes ~100µs on my machine. Which is good. Playing a 22050 sample rate sound results in ... 20000µs for every play, this is ~0.02s (200 times slower than above). The game becomes sluggish and there are visible hiccups in the game due to that. Here is a profiling results of the game that had performance issues due to that: ![image](https://user-images.githubusercontent.com/6286655/209874749-c076972a-fa21-45c3-b2dc-c6b882f8d7d3.png) Note that top5 is occupied by audio-related issues (resampling). ### Anything else you feel useful to add? Potential solutions: 1. Make it possible to resample the sound only once, play+rewind should be efficient. We can use a loading screen time to resample the resources. The game scene should not experience 0.02 delays before playing a sound. 2. Add some APIs to make it easier (and possible) to detect wav resources that do not have a sample rate that matches the desired sample rate. I don't see and APIs for it right now. `*wav.Stream` doesn't provide any, `Decode` functions don't return that info either. With such a way to detect these sounds, it would be easier to resample all files on our own, before even running the game. But it's not convenient to check each file manually, especially when you're working on multiple games and sounds come from different sources. I would add a check that would print to a console if any of the sounds need to be resampled. Ideally, I would like to have a way to re-encode the sound in the desired sample rate. So I could open the wav file, figure out that sample rate is wrong, re-encode it, then create an audio player on that re-encoded wav. Maybe there is a way to do that but I'm not aware of that option? Please let me know if that's the case.
non_defect
bad performance with mismatching sound sampling rates ebitengine version operating system windows macos linux freebsd openbsd android ios nintendo switch xbox web browsers go version go version what steps will reproduce the problem create an audio context with sampling rate of find a wav sound with a sampling rate of use decode or decodewithsamplerate specify as a desired sample rate create the audio player for that wav stream play the sound rewind play again measure the time what is the expected result one of the following resampling happens only once the resampling price is not noticeable even if it happens multiple times there is an api to tell whether the wav needs resampling or not so program can react according to that what happens instead it looks like there is no resampling caching every rewind play results in a resampling round playing a sound without mismatching sample rate takes on my machine which is good playing a sample rate sound results in for every play this is times slower than above the game becomes sluggish and there are visible hiccups in the game due to that here is a profiling results of the game that had performance issues due to that note that is occupied by audio related issues resampling anything else you feel useful to add potential solutions make it possible to resample the sound only once play rewind should be efficient we can use a loading screen time to resample the resources the game scene should not experience delays before playing a sound add some apis to make it easier and possible to detect wav resources that do not have a sample rate that matches the desired sample rate i don t see and apis for it right now wav stream doesn t provide any decode functions don t return that info either with such a way to detect these sounds it would be easier to resample all files on our own before even running the game but it s not convenient to check each file manually especially when you re working on multiple games and sounds come from different sources i would add a check that would print to a console if any of the sounds need to be resampled ideally i would like to have a way to re encode the sound in the desired sample rate so i could open the wav file figure out that sample rate is wrong re encode it then create an audio player on that re encoded wav maybe there is a way to do that but i m not aware of that option please let me know if that s the case
0
250,377
21,262,677,188
IssuesEvent
2022-04-13 06:49:32
andrewschultz/stale-tales-slate
https://api.github.com/repos/andrewschultz/stale-tales-slate
opened
table of preflip clues should go to tables.i7x and be broken down into regions
architectural Roiling test task
Once this is done, fill in where the test cases are tested in the rbr-* files. This should ideally go in the *hints files, but if too many are in the *max files, we can/should keep them there.
1.0
table of preflip clues should go to tables.i7x and be broken down into regions - Once this is done, fill in where the test cases are tested in the rbr-* files. This should ideally go in the *hints files, but if too many are in the *max files, we can/should keep them there.
non_defect
table of preflip clues should go to tables and be broken down into regions once this is done fill in where the test cases are tested in the rbr files this should ideally go in the hints files but if too many are in the max files we can should keep them there
0
8,595
2,611,532,142
IssuesEvent
2015-02-27 06:03:31
chrsmith/hedgewars
https://api.github.com/repos/chrsmith/hedgewars
opened
clicking cancel in Login window does NOT cancel connecting
auto-migrated Component-QtFrontend Priority-Medium ReleaseBug-0.9.19 Type-Defect
``` What steps will reproduce the problem? 1. start hedgewars 2. in the main menu go to -> multiplayer -> official server 3. hit cancel in the Login window to return to main menu What is the expected output? What do you see instead? The expected behavior is connection being aborted (or not attempted at all) and normal main operation, instead the game will connect in the background. This causes the following side effects: - if the connection and login is successful the Frontend will suddenly switch to pageroomslist - if the connection is successful but the server requests a password for login, then the password-popup ("Hedgewars - Nick registered") suddenly appears: if the user presses "cancel" there, the Frontend will try to go back a page. If the user has not left the main-menu in the meantime that will cause the Frontend to exit. What version of the product are you using? On what operating system? Please provide any additional information below. ``` Original issue reported on code.google.com by `sheepyluva` on 1 Jun 2013 at 9:48
1.0
clicking cancel in Login window does NOT cancel connecting - ``` What steps will reproduce the problem? 1. start hedgewars 2. in the main menu go to -> multiplayer -> official server 3. hit cancel in the Login window to return to main menu What is the expected output? What do you see instead? The expected behavior is connection being aborted (or not attempted at all) and normal main operation, instead the game will connect in the background. This causes the following side effects: - if the connection and login is successful the Frontend will suddenly switch to pageroomslist - if the connection is successful but the server requests a password for login, then the password-popup ("Hedgewars - Nick registered") suddenly appears: if the user presses "cancel" there, the Frontend will try to go back a page. If the user has not left the main-menu in the meantime that will cause the Frontend to exit. What version of the product are you using? On what operating system? Please provide any additional information below. ``` Original issue reported on code.google.com by `sheepyluva` on 1 Jun 2013 at 9:48
defect
clicking cancel in login window does not cancel connecting what steps will reproduce the problem start hedgewars in the main menu go to multiplayer official server hit cancel in the login window to return to main menu what is the expected output what do you see instead the expected behavior is connection being aborted or not attempted at all and normal main operation instead the game will connect in the background this causes the following side effects if the connection and login is successful the frontend will suddenly switch to pageroomslist if the connection is successful but the server requests a password for login then the password popup hedgewars nick registered suddenly appears if the user presses cancel there the frontend will try to go back a page if the user has not left the main menu in the meantime that will cause the frontend to exit what version of the product are you using on what operating system please provide any additional information below original issue reported on code google com by sheepyluva on jun at
1
22,331
3,779,416,908
IssuesEvent
2016-03-18 08:10:36
owncloud/core
https://api.github.com/repos/owncloud/core
opened
Open sidebar when clicking in the right part of rows in files view
bug design sev4-low
### Steps to reproduce 1. Having a file or folder uploaded, try to open sidebar clicking at the right of the three dots. ### Expected behaviour Sidebar opens. I'd expect specially that the sidebar opens in the orange area: ![screen shot 2016-03-18 at 08 59 22](https://cloud.githubusercontent.com/assets/9048796/13872198/e29bab8c-ece8-11e5-8ae0-1c46b6c2cc58.png) But perhaps it is interesting to allow opening sidebar in the pink area as well. ### Actual behaviour Nothing happens. ### Server configuration **Operating system**: Ubuntu 14.04 **Web server:** Apache **Database:** MySQL **PHP version:** 5.5.9 **ownCloud version:** (see ownCloud admin page) {"installed":true,"maintenance":false,"version":"9.1.0.0","versionstring":"9.1.0 pre alpha","edition":"Enterprise"} **Updated from an older ownCloud or fresh install:** Fresh **The content of config/config.php:** ``` ``` **Are you using external storage, if yes which one:** local/smb/sftp/... No. **Are you using encryption:** No **Logs** ``` ``` ### Client configuration **browser** Chrome
1.0
Open sidebar when clicking in the right part of rows in files view - ### Steps to reproduce 1. Having a file or folder uploaded, try to open sidebar clicking at the right of the three dots. ### Expected behaviour Sidebar opens. I'd expect specially that the sidebar opens in the orange area: ![screen shot 2016-03-18 at 08 59 22](https://cloud.githubusercontent.com/assets/9048796/13872198/e29bab8c-ece8-11e5-8ae0-1c46b6c2cc58.png) But perhaps it is interesting to allow opening sidebar in the pink area as well. ### Actual behaviour Nothing happens. ### Server configuration **Operating system**: Ubuntu 14.04 **Web server:** Apache **Database:** MySQL **PHP version:** 5.5.9 **ownCloud version:** (see ownCloud admin page) {"installed":true,"maintenance":false,"version":"9.1.0.0","versionstring":"9.1.0 pre alpha","edition":"Enterprise"} **Updated from an older ownCloud or fresh install:** Fresh **The content of config/config.php:** ``` ``` **Are you using external storage, if yes which one:** local/smb/sftp/... No. **Are you using encryption:** No **Logs** ``` ``` ### Client configuration **browser** Chrome
non_defect
open sidebar when clicking in the right part of rows in files view steps to reproduce having a file or folder uploaded try to open sidebar clicking at the right of the three dots expected behaviour sidebar opens i d expect specially that the sidebar opens in the orange area but perhaps it is interesting to allow opening sidebar in the pink area as well actual behaviour nothing happens server configuration operating system ubuntu web server apache database mysql php version owncloud version see owncloud admin page installed true maintenance false version versionstring pre alpha edition enterprise updated from an older owncloud or fresh install fresh the content of config config php are you using external storage if yes which one local smb sftp no are you using encryption no logs client configuration browser chrome
0
103,281
4,166,055,911
IssuesEvent
2016-06-19 22:21:51
Cosecha/Welcome
https://api.github.com/repos/Cosecha/Welcome
opened
Movement Dashboard for Cosecha
priority-high status-approved
# Project Summary One thing that would be very handy is to have a site that displays all the movement data/metrics like: - Total Circles - Total Villages - How many people are in Cosecha - Cosecha Actions - Cosecha Art Pieces - Facebook Likes This is not the final list, but this is a good idea of the type of metrics. The tool can be really simple. A list of responsive graphs should be enough. ### Things to consider - Where is the data coming from? - What API's do we need? ### Tech Stack Whatever you feel more comfortable with. If it can be a Meteor package that can be included into our [Rocket.Chat](http://laplaza.movimientocosecha.com) implementation, that's great. If not, it's fine, as long as we can embed the tool to the website. If this project interests you, comment here that you want to take this on, or want to discuss this more. Once we have a good understanding of the project, these will most likely be the next steps: - I will add you as member of the Cosecha Dev Village group. - You can create a repo, name it how you want, and start coding away. - If you have friends who would like to help in your project, that's great. Projects work better in teams!
1.0
Movement Dashboard for Cosecha - # Project Summary One thing that would be very handy is to have a site that displays all the movement data/metrics like: - Total Circles - Total Villages - How many people are in Cosecha - Cosecha Actions - Cosecha Art Pieces - Facebook Likes This is not the final list, but this is a good idea of the type of metrics. The tool can be really simple. A list of responsive graphs should be enough. ### Things to consider - Where is the data coming from? - What API's do we need? ### Tech Stack Whatever you feel more comfortable with. If it can be a Meteor package that can be included into our [Rocket.Chat](http://laplaza.movimientocosecha.com) implementation, that's great. If not, it's fine, as long as we can embed the tool to the website. If this project interests you, comment here that you want to take this on, or want to discuss this more. Once we have a good understanding of the project, these will most likely be the next steps: - I will add you as member of the Cosecha Dev Village group. - You can create a repo, name it how you want, and start coding away. - If you have friends who would like to help in your project, that's great. Projects work better in teams!
non_defect
movement dashboard for cosecha project summary one thing that would be very handy is to have a site that displays all the movement data metrics like total circles total villages how many people are in cosecha cosecha actions cosecha art pieces facebook likes this is not the final list but this is a good idea of the type of metrics the tool can be really simple a list of responsive graphs should be enough things to consider where is the data coming from what api s do we need tech stack whatever you feel more comfortable with if it can be a meteor package that can be included into our implementation that s great if not it s fine as long as we can embed the tool to the website if this project interests you comment here that you want to take this on or want to discuss this more once we have a good understanding of the project these will most likely be the next steps i will add you as member of the cosecha dev village group you can create a repo name it how you want and start coding away if you have friends who would like to help in your project that s great projects work better in teams
0
87,438
17,267,508,845
IssuesEvent
2021-07-22 15:22:41
wazuh/wazuh
https://api.github.com/repos/wazuh/wazuh
closed
Fix decoders number repetition
threatintel threatintel/decoders
|Wazuh version|Component|Install type|Install method|Platform| |---|---|---|---|---| | 4.3| Decoder | - | - | - | <!-- Whenever possible, issues should be created for bug reporting and feature requests. For questions related to the user experience, please refer: - Wazuh mailing list: https://groups.google.com/forum/#!forum/wazuh - Join Wazuh on Slack: https://wazuh.com/community/join-us-on-slack Please fill the table above. Feel free to extend it at your convenience. --> Hello team, The decoders [0555-aws-eks-authenticator_decoders.xml](https://github.com/wazuh/wazuh/blob/master/ruleset/decoders/0555-aws-eks-authenticator_decoders.xml) and [0555-fireeye_decoders.xml](https://github.com/wazuh/wazuh/blob/master/ruleset/decoders/0555-fireeye_decoders.xml) has the same number. Also, the decoders [0550-oracledb_decoders.xml](https://github.com/wazuh/wazuh/blob/master/ruleset/decoders/0550-oracledb_decoders.xml) and [0550-arbor_decoders.xml](https://github.com/wazuh/wazuh/blob/master/ruleset/decoders/0550-arbor_decoders.xml) also has the same number. We should change this to unique numbers. <!-- You may want to set debug options `<component>.debug=2` (see https://documentation.wazuh.com/current/user-manual/reference/internal-options.html) to get verbose logs. This may help investigate the issue. -->
1.0
Fix decoders number repetition - |Wazuh version|Component|Install type|Install method|Platform| |---|---|---|---|---| | 4.3| Decoder | - | - | - | <!-- Whenever possible, issues should be created for bug reporting and feature requests. For questions related to the user experience, please refer: - Wazuh mailing list: https://groups.google.com/forum/#!forum/wazuh - Join Wazuh on Slack: https://wazuh.com/community/join-us-on-slack Please fill the table above. Feel free to extend it at your convenience. --> Hello team, The decoders [0555-aws-eks-authenticator_decoders.xml](https://github.com/wazuh/wazuh/blob/master/ruleset/decoders/0555-aws-eks-authenticator_decoders.xml) and [0555-fireeye_decoders.xml](https://github.com/wazuh/wazuh/blob/master/ruleset/decoders/0555-fireeye_decoders.xml) has the same number. Also, the decoders [0550-oracledb_decoders.xml](https://github.com/wazuh/wazuh/blob/master/ruleset/decoders/0550-oracledb_decoders.xml) and [0550-arbor_decoders.xml](https://github.com/wazuh/wazuh/blob/master/ruleset/decoders/0550-arbor_decoders.xml) also has the same number. We should change this to unique numbers. <!-- You may want to set debug options `<component>.debug=2` (see https://documentation.wazuh.com/current/user-manual/reference/internal-options.html) to get verbose logs. This may help investigate the issue. -->
non_defect
fix decoders number repetition wazuh version component install type install method platform decoder whenever possible issues should be created for bug reporting and feature requests for questions related to the user experience please refer wazuh mailing list join wazuh on slack please fill the table above feel free to extend it at your convenience hello team the decoders and has the same number also the decoders and also has the same number we should change this to unique numbers you may want to set debug options debug see to get verbose logs this may help investigate the issue
0
38,115
8,664,483,516
IssuesEvent
2018-11-28 20:18:35
HelenOS/helenos
https://api.github.com/repos/HelenOS/helenos
closed
devmap crashes on ia64
C: helenos/srv/locsrv P: blocker defect
**Reported by jermar on 7 Jul 2009 21:39 UTC** ``` SPARTAN kernel, release 0.4.0 (Sinister Valentine), revision 4623:4625 Built on 2009-07-07 23:21:39 for ia64 Copyright (c) 2001-2009 HelenOS project Detected 1 CPU(s), 64 MiB free memory Kernel console ready (press any key to activate) ns: HelenOS IPC Naming Service ns: Accepting connections init: HelenOS init devmap: HelenOS Device Mapper rd: HelenOS RAM disk server rd: Found RAM disk at 0x45e4000, 2146304 bytes vfs: HelenOS VFS server fat: HelenOS FAT file system server. devmap: Accepting connections Task init:devmap (4) killed due to an exception at 0xb490: Page fault at 0x450. ``` The crash occurs in fibril_switch().
1.0
devmap crashes on ia64 - **Reported by jermar on 7 Jul 2009 21:39 UTC** ``` SPARTAN kernel, release 0.4.0 (Sinister Valentine), revision 4623:4625 Built on 2009-07-07 23:21:39 for ia64 Copyright (c) 2001-2009 HelenOS project Detected 1 CPU(s), 64 MiB free memory Kernel console ready (press any key to activate) ns: HelenOS IPC Naming Service ns: Accepting connections init: HelenOS init devmap: HelenOS Device Mapper rd: HelenOS RAM disk server rd: Found RAM disk at 0x45e4000, 2146304 bytes vfs: HelenOS VFS server fat: HelenOS FAT file system server. devmap: Accepting connections Task init:devmap (4) killed due to an exception at 0xb490: Page fault at 0x450. ``` The crash occurs in fibril_switch().
defect
devmap crashes on reported by jermar on jul utc spartan kernel release sinister valentine revision built on for copyright c helenos project detected cpu s mib free memory kernel console ready press any key to activate ns helenos ipc naming service ns accepting connections init helenos init devmap helenos device mapper rd helenos ram disk server rd found ram disk at bytes vfs helenos vfs server fat helenos fat file system server devmap accepting connections task init devmap killed due to an exception at page fault at the crash occurs in fibril switch
1
1,637
2,603,968,697
IssuesEvent
2015-02-24 18:59:42
chrsmith/nishazi6
https://api.github.com/repos/chrsmith/nishazi6
opened
沈阳龟头下面长肉芽
auto-migrated Priority-Medium Type-Defect
``` 沈阳龟头下面长肉芽〓沈陽軍區政治部醫院性病〓TEL:024-3102 3308〓成立于1946年,68年專注于性傳播疾病的研究和治療。位� ��沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌的� ��史悠久、設備精良、技術權威、專家云集,是預防、保健、 醫療、科研康復為一體的綜合性醫院。是國家首批公立甲等�� �隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、東� ��大學等知名高等院校的教學醫院。曾被中國人民解放軍空軍 后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二�� �功。 ``` ----- Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 7:18
1.0
沈阳龟头下面长肉芽 - ``` 沈阳龟头下面长肉芽〓沈陽軍區政治部醫院性病〓TEL:024-3102 3308〓成立于1946年,68年專注于性傳播疾病的研究和治療。位� ��沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌的� ��史悠久、設備精良、技術權威、專家云集,是預防、保健、 醫療、科研康復為一體的綜合性醫院。是國家首批公立甲等�� �隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、東� ��大學等知名高等院校的教學醫院。曾被中國人民解放軍空軍 后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二�� �功。 ``` ----- Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 7:18
defect
沈阳龟头下面长肉芽 沈阳龟头下面长肉芽〓沈陽軍區政治部醫院性病〓tel: 〓 , 。位� �� 。是一所與新中國同建立共輝煌的� ��史悠久、設備精良、技術權威、專家云集,是預防、保健、 醫療、科研康復為一體的綜合性醫院。是國家首批公立甲等�� �隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、東� ��大學等知名高等院校的教學醫院。曾被中國人民解放軍空軍 后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二�� �功。 original issue reported on code google com by gmail com on jun at
1
69,052
22,096,150,789
IssuesEvent
2022-06-01 10:17:52
primefaces/primefaces
https://api.github.com/repos/primefaces/primefaces
opened
Selenium test framework: TimeoutException using CommandLink with p:confirm
defect
### Describe the bug Running a Selenium test on Firefox using CommandLink with p:confirm fails with TimeoutException. ### Reproducer Will provide a pull request with an appropriate integration test producing the error. ### Expected behavior Selenium test runs fine without TimeoutException. ### PrimeFaces edition Community ### PrimeFaces version 11 ### Theme Any ### JSF implementation MyFaces ### JSF version 2.2 ### Browser(s) Firefox 100
1.0
Selenium test framework: TimeoutException using CommandLink with p:confirm - ### Describe the bug Running a Selenium test on Firefox using CommandLink with p:confirm fails with TimeoutException. ### Reproducer Will provide a pull request with an appropriate integration test producing the error. ### Expected behavior Selenium test runs fine without TimeoutException. ### PrimeFaces edition Community ### PrimeFaces version 11 ### Theme Any ### JSF implementation MyFaces ### JSF version 2.2 ### Browser(s) Firefox 100
defect
selenium test framework timeoutexception using commandlink with p confirm describe the bug running a selenium test on firefox using commandlink with p confirm fails with timeoutexception reproducer will provide a pull request with an appropriate integration test producing the error expected behavior selenium test runs fine without timeoutexception primefaces edition community primefaces version theme any jsf implementation myfaces jsf version browser s firefox
1
81,940
31,825,082,308
IssuesEvent
2023-09-14 06:56:08
zed-industries/community
https://api.github.com/repos/zed-industries/community
opened
External formatter for PHP replaces the original file
defect triage admin read
### Check for existing issues - [X] Completed ### Describe the bug / provide steps to reproduce it I am trying to configure PHP CS Fixer as an external formatter for PHP using the following settings: ```json { "language_overrides": { "PHP": { "formatter": { "external": { "command": "php-cs-fixer", "arguments": [ "fix", "--using-cache=no", "{buffer_path}" ] } } } } } ``` On save, the formatter seems to be working just fine and it fixes the issues, but the content of the original file gets overwritten by the verbose output of the formatter command: <img width="634" alt="image" src="https://github.com/zed-industries/community/assets/70577513/14a7277c-32be-45ba-beec-5af4f5e3d3da"> ### Environment Zed: v0.103.1 (stable) OS: macOS 13.5.0 Memory: 8 GiB Architecture: aarch64 ### If applicable, add mockups / screenshots to help explain present your vision of the feature _No response_ ### If applicable, attach your `~/Library/Logs/Zed/Zed.log` file to this issue. If you only need the most recent lines, you can run the `zed: open log` command palette action to see the last 1000. ```2023-09-14T06:53:59 [ERROR] unexpected item event after pane was dropped```
1.0
External formatter for PHP replaces the original file - ### Check for existing issues - [X] Completed ### Describe the bug / provide steps to reproduce it I am trying to configure PHP CS Fixer as an external formatter for PHP using the following settings: ```json { "language_overrides": { "PHP": { "formatter": { "external": { "command": "php-cs-fixer", "arguments": [ "fix", "--using-cache=no", "{buffer_path}" ] } } } } } ``` On save, the formatter seems to be working just fine and it fixes the issues, but the content of the original file gets overwritten by the verbose output of the formatter command: <img width="634" alt="image" src="https://github.com/zed-industries/community/assets/70577513/14a7277c-32be-45ba-beec-5af4f5e3d3da"> ### Environment Zed: v0.103.1 (stable) OS: macOS 13.5.0 Memory: 8 GiB Architecture: aarch64 ### If applicable, add mockups / screenshots to help explain present your vision of the feature _No response_ ### If applicable, attach your `~/Library/Logs/Zed/Zed.log` file to this issue. If you only need the most recent lines, you can run the `zed: open log` command palette action to see the last 1000. ```2023-09-14T06:53:59 [ERROR] unexpected item event after pane was dropped```
defect
external formatter for php replaces the original file check for existing issues completed describe the bug provide steps to reproduce it i am trying to configure php cs fixer as an external formatter for php using the following settings json language overrides php formatter external command php cs fixer arguments fix using cache no buffer path on save the formatter seems to be working just fine and it fixes the issues but the content of the original file gets overwritten by the verbose output of the formatter command img width alt image src environment zed stable os macos memory gib architecture if applicable add mockups screenshots to help explain present your vision of the feature no response if applicable attach your library logs zed zed log file to this issue if you only need the most recent lines you can run the zed open log command palette action to see the last unexpected item event after pane was dropped
1
157,388
12,371,830,907
IssuesEvent
2020-05-18 19:16:18
rancher/dashboard
https://api.github.com/repos/rancher/dashboard
closed
Creating a configmap from yaml file fails
[zube]: To Test area/config-maps kind/bug
Version: master-head(dd102af17) Steps: 1. Create a configmap from Yaml file. ``` apiVersion: v1 kind: ConfigMap metadata: name: test20 namespace: default annotations: a1: a2 labels: key2: val1 binaryData: k1d: dfs data: key1: test1 ``` Configmap creation, fails with the below error: ``` { "type": "error", "links": {}, "code": "BadRequest", "message": "ConfigMap in version \"v1\" cannot be handled as a ConfigMap: v1.ConfigMap.Data: BinaryData: decode base64: illegal base64 data at input byte 0, error found in rancher/dashboard#10 byte of ...|k1d\":\"dfs\"},\"data\":{|..., bigger context ...|{\"apiVersion\":\"v1\",\"binaryData\":{\"k1d\":\"dfs\"},\"data\": {\"key1\":\"test1\"},\"kind\":\"ConfigMap\",\"meta|...", "status": 400 } ``` Other Info: The yaml has binary data field presented as key: string. While creating as a form , we provide binary data through a file.
1.0
Creating a configmap from yaml file fails - Version: master-head(dd102af17) Steps: 1. Create a configmap from Yaml file. ``` apiVersion: v1 kind: ConfigMap metadata: name: test20 namespace: default annotations: a1: a2 labels: key2: val1 binaryData: k1d: dfs data: key1: test1 ``` Configmap creation, fails with the below error: ``` { "type": "error", "links": {}, "code": "BadRequest", "message": "ConfigMap in version \"v1\" cannot be handled as a ConfigMap: v1.ConfigMap.Data: BinaryData: decode base64: illegal base64 data at input byte 0, error found in rancher/dashboard#10 byte of ...|k1d\":\"dfs\"},\"data\":{|..., bigger context ...|{\"apiVersion\":\"v1\",\"binaryData\":{\"k1d\":\"dfs\"},\"data\": {\"key1\":\"test1\"},\"kind\":\"ConfigMap\",\"meta|...", "status": 400 } ``` Other Info: The yaml has binary data field presented as key: string. While creating as a form , we provide binary data through a file.
non_defect
creating a configmap from yaml file fails version master head steps create a configmap from yaml file apiversion kind configmap metadata name namespace default annotations labels binarydata dfs data configmap creation fails with the below error type error links code badrequest message configmap in version cannot be handled as a configmap configmap data binarydata decode illegal data at input byte error found in rancher dashboard byte of dfs data bigger context apiversion binarydata dfs data kind configmap meta status other info the yaml has binary data field presented as key string while creating as a form we provide binary data through a file
0
55,426
14,460,325,969
IssuesEvent
2020-12-09 00:18:40
snowplow/snowplow-android-tracker
https://api.github.com/repos/snowplow/snowplow-android-tracker
opened
IllegalArgumentExpection after upgrade
type:defect
**Describe the bug** In 1.3.5, you guys forced `builder.id` to be an UUID. ``` protected ScreenView(ScreenView.Builder<?> builder) { super(builder); if (builder.id != null) { Preconditions.checkArgument(Util.isUUIDString(builder.id)); this.id = builder.id; } else { this.id = Util.getUUIDString(); } ... } ``` Is this really necessary? We have been using normal strings as id for the past few years and it will mess up our data if we change the name of the id now.
1.0
IllegalArgumentExpection after upgrade - **Describe the bug** In 1.3.5, you guys forced `builder.id` to be an UUID. ``` protected ScreenView(ScreenView.Builder<?> builder) { super(builder); if (builder.id != null) { Preconditions.checkArgument(Util.isUUIDString(builder.id)); this.id = builder.id; } else { this.id = Util.getUUIDString(); } ... } ``` Is this really necessary? We have been using normal strings as id for the past few years and it will mess up our data if we change the name of the id now.
defect
illegalargumentexpection after upgrade describe the bug in you guys forced builder id to be an uuid protected screenview screenview builder builder super builder if builder id null preconditions checkargument util isuuidstring builder id this id builder id else this id util getuuidstring is this really necessary we have been using normal strings as id for the past few years and it will mess up our data if we change the name of the id now
1
263,481
23,061,379,437
IssuesEvent
2022-07-25 10:14:32
WEC-Sim/WEC-Sim
https://api.github.com/repos/WEC-Sim/WEC-Sim
opened
[BUG] Unable to resolve the name 'clock_out.time' (Desalination)
Bug WEC-Sim Application Tests/CI
**Describe the bug** There is a CI failure for the desalination application case e.g. [here](https://github.com/WEC-Sim/WEC-Sim_Applications/actions/runs/2707787456). **WEC-Sim file(s)** Seems to be related to [this line](https://github.com/WEC-Sim/WEC-Sim/blob/fceb0a8318465b1b0bcdf02d9b13b3b5ae9bc22a/source/functions/postProcessWecSim.m#L7) in `postProcessWecSim.m`. I guess the global `clock_out` or it's field `time` is not being set in this case. Here is the trace: ``` ================================================================================ Error occurred in TestDesalination/testDesalination and it did not run to completion. --------- Error ID: --------- 'MATLAB:undefinedVarOrClass' -------------- Error Details: -------------- Unable to resolve the name 'clock_out.time'. Error in postProcessWecSim (line 7) simu.time = clock_out.time; Error in stopWecSim (line 21) postProcessWecSim Error in run (line [91](https://github.com/WEC-Sim/WEC-Sim_Applications/runs/7438361219?check_suite_focus=true#step:10:93)) evalin('caller', strcat(script, ';')); Error in wecSim (line 48) run('stopWecSim'); Error in TestDesalination/testDesalination (line 54) wecSim ================================================================================ ``` **Additional context** This [commit](https://github.com/WEC-Sim/WEC-Sim_Applications/commit/56851c578c49e8190e25576033331943379bc959) was made by @kmruehl in an attempt to correct the issue, but it didn't work.
1.0
[BUG] Unable to resolve the name 'clock_out.time' (Desalination) - **Describe the bug** There is a CI failure for the desalination application case e.g. [here](https://github.com/WEC-Sim/WEC-Sim_Applications/actions/runs/2707787456). **WEC-Sim file(s)** Seems to be related to [this line](https://github.com/WEC-Sim/WEC-Sim/blob/fceb0a8318465b1b0bcdf02d9b13b3b5ae9bc22a/source/functions/postProcessWecSim.m#L7) in `postProcessWecSim.m`. I guess the global `clock_out` or it's field `time` is not being set in this case. Here is the trace: ``` ================================================================================ Error occurred in TestDesalination/testDesalination and it did not run to completion. --------- Error ID: --------- 'MATLAB:undefinedVarOrClass' -------------- Error Details: -------------- Unable to resolve the name 'clock_out.time'. Error in postProcessWecSim (line 7) simu.time = clock_out.time; Error in stopWecSim (line 21) postProcessWecSim Error in run (line [91](https://github.com/WEC-Sim/WEC-Sim_Applications/runs/7438361219?check_suite_focus=true#step:10:93)) evalin('caller', strcat(script, ';')); Error in wecSim (line 48) run('stopWecSim'); Error in TestDesalination/testDesalination (line 54) wecSim ================================================================================ ``` **Additional context** This [commit](https://github.com/WEC-Sim/WEC-Sim_Applications/commit/56851c578c49e8190e25576033331943379bc959) was made by @kmruehl in an attempt to correct the issue, but it didn't work.
non_defect
unable to resolve the name clock out time desalination describe the bug there is a ci failure for the desalination application case e g wec sim file s seems to be related to in postprocesswecsim m i guess the global clock out or it s field time is not being set in this case here is the trace error occurred in testdesalination testdesalination and it did not run to completion error id matlab undefinedvarorclass error details unable to resolve the name clock out time error in postprocesswecsim line simu time clock out time error in stopwecsim line postprocesswecsim error in run line evalin caller strcat script error in wecsim line run stopwecsim error in testdesalination testdesalination line wecsim additional context this was made by kmruehl in an attempt to correct the issue but it didn t work
0
4,290
2,549,967,346
IssuesEvent
2015-02-01 00:09:25
georgjaehnig/serchilo-drupal
https://api.github.com/repos/georgjaehnig/serchilo-drupal
closed
Flush Boost cache when shortcut changed
Priority: should Type: bug
Flush the Boost cache when shortcut changed, in order to update the listing on `/shortcuts` for instance.
1.0
Flush Boost cache when shortcut changed - Flush the Boost cache when shortcut changed, in order to update the listing on `/shortcuts` for instance.
non_defect
flush boost cache when shortcut changed flush the boost cache when shortcut changed in order to update the listing on shortcuts for instance
0
67,709
21,076,227,669
IssuesEvent
2022-04-02 07:10:28
vector-im/element-android
https://api.github.com/repos/vector-im/element-android
opened
Syncing hangs without updating.
T-Defect
### Steps to reproduce 1. Use the app for a while 2. Tab out and go into a few other apps 3. Go back into the app ### Outcome #### What did you expect? For the syncing to be somewhat instant as not much was going on in the rooms I am in and also i'm not in many rooms to begin with. #### What happened instead? The syncing bar animation proceeds to repeat itself without updating the room messages and disappearing. ### Your phone model Samsung S10 ### Operating system version Android 12 ### Application version and app store 1.4.4 [40104040] (F-9e8067dd) | olm version: 3.2.10 ### Homeserver Matrix.org ### Will you send logs? Yes
1.0
Syncing hangs without updating. - ### Steps to reproduce 1. Use the app for a while 2. Tab out and go into a few other apps 3. Go back into the app ### Outcome #### What did you expect? For the syncing to be somewhat instant as not much was going on in the rooms I am in and also i'm not in many rooms to begin with. #### What happened instead? The syncing bar animation proceeds to repeat itself without updating the room messages and disappearing. ### Your phone model Samsung S10 ### Operating system version Android 12 ### Application version and app store 1.4.4 [40104040] (F-9e8067dd) | olm version: 3.2.10 ### Homeserver Matrix.org ### Will you send logs? Yes
defect
syncing hangs without updating steps to reproduce use the app for a while tab out and go into a few other apps go back into the app outcome what did you expect for the syncing to be somewhat instant as not much was going on in the rooms i am in and also i m not in many rooms to begin with what happened instead the syncing bar animation proceeds to repeat itself without updating the room messages and disappearing your phone model samsung operating system version android application version and app store f olm version homeserver matrix org will you send logs yes
1
34,183
7,382,733,216
IssuesEvent
2018-03-15 06:39:39
hazelcast/hazelcast
https://api.github.com/repos/hazelcast/hazelcast
closed
Exception in Node constructor doesn't shutdown services properly
Team: Core Type: Defect
When an exception occurs in `Node` constructor after initializing some services, the services are not properly terminated. It can lead to thread leaks (e.g. hazelcast/hazelcast-enterprise#1978). **Suggested fix:** In case of exception in constructor shutdown properly all the already initialized services.
1.0
Exception in Node constructor doesn't shutdown services properly - When an exception occurs in `Node` constructor after initializing some services, the services are not properly terminated. It can lead to thread leaks (e.g. hazelcast/hazelcast-enterprise#1978). **Suggested fix:** In case of exception in constructor shutdown properly all the already initialized services.
defect
exception in node constructor doesn t shutdown services properly when an exception occurs in node constructor after initializing some services the services are not properly terminated it can lead to thread leaks e g hazelcast hazelcast enterprise suggested fix in case of exception in constructor shutdown properly all the already initialized services
1
87,237
3,739,527,142
IssuesEvent
2016-03-09 05:33:28
project8/dripline
https://api.github.com/repos/project8/dripline
closed
What's that beeping sounds
bug low_priority
I'm really not sure about this one, and it isn't exactly critical. But loggers seem to create lots of terminal beep sounds. ## Reproducing Start the lagavulin repeater and the muxer service each in a tmux pane. Issue ```dripline_agent config multiplexer logging_status on``` and hear a beep as each endpoint starts itself logging. Sound is heard again after the logging interval has elapsed as each sensor logs again. It is unclear if it is from muxer service or lagavulin service. I'm also not sure if this is related to something wrong, or just an annoyance.
1.0
What's that beeping sounds - I'm really not sure about this one, and it isn't exactly critical. But loggers seem to create lots of terminal beep sounds. ## Reproducing Start the lagavulin repeater and the muxer service each in a tmux pane. Issue ```dripline_agent config multiplexer logging_status on``` and hear a beep as each endpoint starts itself logging. Sound is heard again after the logging interval has elapsed as each sensor logs again. It is unclear if it is from muxer service or lagavulin service. I'm also not sure if this is related to something wrong, or just an annoyance.
non_defect
what s that beeping sounds i m really not sure about this one and it isn t exactly critical but loggers seem to create lots of terminal beep sounds reproducing start the lagavulin repeater and the muxer service each in a tmux pane issue dripline agent config multiplexer logging status on and hear a beep as each endpoint starts itself logging sound is heard again after the logging interval has elapsed as each sensor logs again it is unclear if it is from muxer service or lagavulin service i m also not sure if this is related to something wrong or just an annoyance
0
239,509
26,231,769,634
IssuesEvent
2023-01-05 01:16:58
pakorn186c/paz
https://api.github.com/repos/pakorn186c/paz
opened
CVE-2022-0144 (High) detected in shelljs-0.8.4.tgz
security vulnerability
## CVE-2022-0144 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>shelljs-0.8.4.tgz</b></p></summary> <p>Portable Unix shell commands for Node.js</p> <p>Library home page: <a href="https://registry.npmjs.org/shelljs/-/shelljs-0.8.4.tgz">https://registry.npmjs.org/shelljs/-/shelljs-0.8.4.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/shelljs</p> <p> Dependency Hierarchy: - preset-classic-2.0.0-beta.4.tgz (Root Library) - plugin-content-docs-2.0.0-beta.4.tgz - :x: **shelljs-0.8.4.tgz** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> shelljs is vulnerable to Improper Privilege Management <p>Publish Date: 2022-01-11 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-0144>CVE-2022-0144</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: High - 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>Release Date: 2022-01-11</p> <p>Fix Resolution (shelljs): 0.8.5</p> <p>Direct dependency fix Resolution (@docusaurus/preset-classic): 2.0.0</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-2022-0144 (High) detected in shelljs-0.8.4.tgz - ## CVE-2022-0144 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>shelljs-0.8.4.tgz</b></p></summary> <p>Portable Unix shell commands for Node.js</p> <p>Library home page: <a href="https://registry.npmjs.org/shelljs/-/shelljs-0.8.4.tgz">https://registry.npmjs.org/shelljs/-/shelljs-0.8.4.tgz</a></p> <p>Path to dependency file: /package.json</p> <p>Path to vulnerable library: /node_modules/shelljs</p> <p> Dependency Hierarchy: - preset-classic-2.0.0-beta.4.tgz (Root Library) - plugin-content-docs-2.0.0-beta.4.tgz - :x: **shelljs-0.8.4.tgz** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> shelljs is vulnerable to Improper Privilege Management <p>Publish Date: 2022-01-11 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-0144>CVE-2022-0144</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: High - 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>Release Date: 2022-01-11</p> <p>Fix Resolution (shelljs): 0.8.5</p> <p>Direct dependency fix Resolution (@docusaurus/preset-classic): 2.0.0</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 shelljs tgz cve high severity vulnerability vulnerable library shelljs tgz portable unix shell commands for node js library home page a href path to dependency file package json path to vulnerable library node modules shelljs dependency hierarchy preset classic beta tgz root library plugin content docs beta tgz x shelljs tgz vulnerable library found in base branch master vulnerability details shelljs is vulnerable to improper privilege management 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 high integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version release date fix resolution shelljs direct dependency fix resolution docusaurus preset classic step up your open source security game with mend
0
49,877
13,187,284,122
IssuesEvent
2020-08-13 02:55:36
icecube-trac/tix3
https://api.github.com/repos/icecube-trac/tix3
opened
[genie-icetray] lib detection (Trac #2210)
Incomplete Migration Migrated from Trac combo simulation defect
<details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/2210">https://code.icecube.wisc.edu/ticket/2210</a>, reported by david.schultz and owned by </em></summary> <p> ```json { "status": "closed", "changetime": "2019-02-13T14:15:23", "description": "With py2-v3.1.0, we have a new Genie install in CVMFS. This means new detection challenges:\n\n* LHAPDF\n* PYTHIA\n* libGenVector from ROOT\n\nI've tested manually adding these libraries to the linker command outside of cmake, and it can then link genie-icetray-mkspl correctly. Someone needs to go fix the cmakelists.", "reporter": "david.schultz", "cc": "claudio.kopper, olivas", "resolution": "fixed", "_ts": "1550067323910946", "component": "combo simulation", "summary": "[genie-icetray] lib detection", "priority": "critical", "keywords": "", "time": "2018-11-27T21:22:06", "milestone": "", "owner": "", "type": "defect" } ``` </p> </details>
1.0
[genie-icetray] lib detection (Trac #2210) - <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/2210">https://code.icecube.wisc.edu/ticket/2210</a>, reported by david.schultz and owned by </em></summary> <p> ```json { "status": "closed", "changetime": "2019-02-13T14:15:23", "description": "With py2-v3.1.0, we have a new Genie install in CVMFS. This means new detection challenges:\n\n* LHAPDF\n* PYTHIA\n* libGenVector from ROOT\n\nI've tested manually adding these libraries to the linker command outside of cmake, and it can then link genie-icetray-mkspl correctly. Someone needs to go fix the cmakelists.", "reporter": "david.schultz", "cc": "claudio.kopper, olivas", "resolution": "fixed", "_ts": "1550067323910946", "component": "combo simulation", "summary": "[genie-icetray] lib detection", "priority": "critical", "keywords": "", "time": "2018-11-27T21:22:06", "milestone": "", "owner": "", "type": "defect" } ``` </p> </details>
defect
lib detection trac migrated from json status closed changetime description with we have a new genie install in cvmfs this means new detection challenges n n lhapdf n pythia n libgenvector from root n ni ve tested manually adding these libraries to the linker command outside of cmake and it can then link genie icetray mkspl correctly someone needs to go fix the cmakelists reporter david schultz cc claudio kopper olivas resolution fixed ts component combo simulation summary lib detection priority critical keywords time milestone owner type defect
1
78,445
27,524,746,322
IssuesEvent
2023-03-06 17:14:14
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
closed
Space settings dialog has a browser tooltip *everywhere*
T-Defect
### Steps to reproduce 1. Open space settings 2. Move your mouse over the dialog 3. Wait a couple seconds for the browser tooltip to appear ### Outcome #### What did you expect? No tooltip #### What happened instead? A tooltip. ### Operating system Windows 10 ### Application version Element Nightly version: 0.0.1-nightly.2023030301 Olm version: 3.2.12 ### How did you install the app? The Internet ### Homeserver t2l.io ### Will you send logs? No
1.0
Space settings dialog has a browser tooltip *everywhere* - ### Steps to reproduce 1. Open space settings 2. Move your mouse over the dialog 3. Wait a couple seconds for the browser tooltip to appear ### Outcome #### What did you expect? No tooltip #### What happened instead? A tooltip. ### Operating system Windows 10 ### Application version Element Nightly version: 0.0.1-nightly.2023030301 Olm version: 3.2.12 ### How did you install the app? The Internet ### Homeserver t2l.io ### Will you send logs? No
defect
space settings dialog has a browser tooltip everywhere steps to reproduce open space settings move your mouse over the dialog wait a couple seconds for the browser tooltip to appear outcome what did you expect no tooltip what happened instead a tooltip operating system windows application version element nightly version nightly olm version how did you install the app the internet homeserver io will you send logs no
1
5,331
2,610,185,549
IssuesEvent
2015-02-26 18:58:55
chrsmith/quchuseban
https://api.github.com/repos/chrsmith/quchuseban
opened
支招如何消除脸上的色斑
auto-migrated Priority-Medium Type-Defect
``` 《摘要》 如何治疗青春痘色斑是每个脸上有色斑的人所最关心的问题�� �特别是女性现在最宝贵的财富就是我们的青春,在我们年轻� ��时候我们有很多的美好的事情可以去追逐。可是,如果脸上 长了色斑,但是却不知道如何治疗青春痘色斑,让处于享受�� �春的我顿时感觉天塌地陷一般,如何治疗青春痘色斑?我四处 找寻着这个问题的解决方法。期间用了很多的祛斑产品,但�� �都没有有效的解决我的色斑的问题。如何消除脸上的色斑, 《客户案例》   我今年38岁了,脸上长了很多的黄褐斑,刚开始的时候没 有注意,觉得就几个斑也没什么影响的,就没怎 么注意,等我觉得不对的时候,黄褐斑已经长了很多了,我�� �两侧颧骨上,眼睛周围都是了,整个脸像是 落了一层灰一样,显得老了十多岁。刚开始也是去美容院做�� �容,可做了一段时间感觉没什么效果,又去商场买了祛斑霜� ��可用了一次脸就很疼,我知道是过敏了,吓的我赶紧洗了, 本来我想做激光祛斑的,可 在网上查了很多说激光祛斑容易反弹,折腾到这我都已经算�� �绝望了,想着难道一辈子都这样了吗?后来 还是一个在美容院认识的姐妹打电话说让我用「黛芙薇尔精�� �液」,能去黄褐斑,还不反弹,我当时还不 敢相信,她就约我去她家里,没想到一个多月不见她的黄褐�� �变淡了,皮肤也白了,她说现在正在用「黛芙薇尔精华液」� ��现在效果这么好,她都不敢相信,我忙问她在哪买的,会不 会反弹。她说去「黛芙薇尔精华液」的官 方网站上就能买到,还能货到付款,说是她一个朋友介绍给�� �的,她朋友都去掉三个月了也没反弹,我听 了高兴坏了,也赶紧在网上订购了两个周期,现在我的黄褐�� �已经彻底没有了,脸也白了很多,这是我的 亲身体验,希望对脸上有黄褐斑的姐妹有些帮助。 阅读了如何消除脸上的色斑,再看脸上容易长斑的原因: 《色斑形成原因》   内部因素   一、压力   当人受到压力时,就会分泌肾上腺素,为对付压力而做�� �备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏� ��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃 。   二、荷尔蒙分泌失调   避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞�� �分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在� ��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕 中因女性荷尔蒙雌激素的增加,从怀孕4—5个月开始会容易出 现斑,这时候出现的斑点在产后大部分会消失。可是,新陈�� �谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等� ��因,都会使斑加深。有时新长出的斑,产后也不会消失,所 以需要更加注意。   三、新陈代谢缓慢   肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑�� �因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态� ��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是 内分泌失调导致过敏体质而形成的。另外,身体状态不正常�� �时候,紫外线的照射也会加速斑的形成。   四、错误的使用化妆品   使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在�� �疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵� ��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的 问题。   外部因素   一、紫外线   照射紫外线的时候,人体为了保护皮肤,会在基底层产�� �很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更� ��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化, 还会引起黑斑、雀斑等色素沉着的皮肤疾患。   二、不良的清洁习惯   因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。�� �皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦� ��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的 问题。   三、遗传基因   父母中有长斑的,则本人长斑的概率就很高,这种情况�� �一定程度上就可判定是遗传基因的作用。所以家里特别是长� ��有长斑的人,要注意避免引发长斑的重要因素之一——紫外 线照射,这是预防斑必须注意的。 《有疑问帮你解决》   1,黛芙薇尔精华液真的有效果吗?真的可以把脸上的黄褐�� �去掉吗?   答:黛芙薇尔精华液DNA精华能够有效的修复周围难以触�� �的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必� ��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑 ,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时�� �,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的� ��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显 而易见。自产品上市以来,老顾客纷纷介绍新顾客,71%的新�� �客都是通过老顾客介绍而来,口碑由此而来!   2,服用黛芙薇尔美白,会伤身体吗?有副作用吗?   答:黛芙薇尔精华液应用了精纯复合配方和领先的分类�� �斑科技,并将“DNA美肤系统”疗法应用到了该产品中,能彻� ��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有 效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾�� �地的专家通力协作,超过10年的研究以全新的DNA肌肤修复技�� �,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽� ��迹,令每一位爱美的女性都能享受到科技创新所带来的自然 之美。 专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数�� �百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖!   3,去除黄褐斑之后,会反弹吗?   答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔�� �白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家� ��据斑的形成原因精心研制而成用事实说话,让消费者打分。 树立权威品牌!我们的很多新客户都是老客户介绍而来,请问� ��如果效果不好,会有客户转介绍吗?   4,你们的价格有点贵,能不能便宜一点?   答:如果您使用西药最少需要2000元,煎服的药最少需要3 000元,做手术最少是5000元,而这些毫无疑问,不会对彻底去� ��你的斑点有任何帮助!一分价钱,一份价值,我们现在做的�� �是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的� ��褐斑彻底去除,你还会觉得贵吗?你还会再去花那么多冤枉�� �,不但斑没去掉,还把自己的皮肤弄的越来越糟吗   5,我适合用黛芙薇尔精华液吗?   答:黛芙薇尔适用人群:   1、生理紊乱引起的黄褐斑人群   2、生育引起的妊娠斑人群   3、年纪增长引起的老年斑人群   4、化妆品色素沉积、辐射斑人群   5、长期日照引起的日晒斑人群   6、肌肤暗淡急需美白的人群 《祛斑小方法》 如何消除脸上的色斑,同时为您分享祛斑小方法 1:桃花瓜子蜜:用桃花阴干研末,冬瓜子研末,二者等份调� ��蜜适量,敷面,每晚临睡前敷患处。黑痣则点涂之。功效洁 面去斑。适用于黑痣、黑斑、雀斑。 2:香菜汤:用香菜煎汤,每日洗面,日久有效。功效去黑斑� ��雀斑。 ``` ----- Original issue reported on code.google.com by `additive...@gmail.com` on 1 Jul 2014 at 3:41
1.0
支招如何消除脸上的色斑 - ``` 《摘要》 如何治疗青春痘色斑是每个脸上有色斑的人所最关心的问题�� �特别是女性现在最宝贵的财富就是我们的青春,在我们年轻� ��时候我们有很多的美好的事情可以去追逐。可是,如果脸上 长了色斑,但是却不知道如何治疗青春痘色斑,让处于享受�� �春的我顿时感觉天塌地陷一般,如何治疗青春痘色斑?我四处 找寻着这个问题的解决方法。期间用了很多的祛斑产品,但�� �都没有有效的解决我的色斑的问题。如何消除脸上的色斑, 《客户案例》   我今年38岁了,脸上长了很多的黄褐斑,刚开始的时候没 有注意,觉得就几个斑也没什么影响的,就没怎 么注意,等我觉得不对的时候,黄褐斑已经长了很多了,我�� �两侧颧骨上,眼睛周围都是了,整个脸像是 落了一层灰一样,显得老了十多岁。刚开始也是去美容院做�� �容,可做了一段时间感觉没什么效果,又去商场买了祛斑霜� ��可用了一次脸就很疼,我知道是过敏了,吓的我赶紧洗了, 本来我想做激光祛斑的,可 在网上查了很多说激光祛斑容易反弹,折腾到这我都已经算�� �绝望了,想着难道一辈子都这样了吗?后来 还是一个在美容院认识的姐妹打电话说让我用「黛芙薇尔精�� �液」,能去黄褐斑,还不反弹,我当时还不 敢相信,她就约我去她家里,没想到一个多月不见她的黄褐�� �变淡了,皮肤也白了,她说现在正在用「黛芙薇尔精华液」� ��现在效果这么好,她都不敢相信,我忙问她在哪买的,会不 会反弹。她说去「黛芙薇尔精华液」的官 方网站上就能买到,还能货到付款,说是她一个朋友介绍给�� �的,她朋友都去掉三个月了也没反弹,我听 了高兴坏了,也赶紧在网上订购了两个周期,现在我的黄褐�� �已经彻底没有了,脸也白了很多,这是我的 亲身体验,希望对脸上有黄褐斑的姐妹有些帮助。 阅读了如何消除脸上的色斑,再看脸上容易长斑的原因: 《色斑形成原因》   内部因素   一、压力   当人受到压力时,就会分泌肾上腺素,为对付压力而做�� �备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏� ��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃 。   二、荷尔蒙分泌失调   避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞�� �分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在� ��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕 中因女性荷尔蒙雌激素的增加,从怀孕4—5个月开始会容易出 现斑,这时候出现的斑点在产后大部分会消失。可是,新陈�� �谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等� ��因,都会使斑加深。有时新长出的斑,产后也不会消失,所 以需要更加注意。   三、新陈代谢缓慢   肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑�� �因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态� ��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是 内分泌失调导致过敏体质而形成的。另外,身体状态不正常�� �时候,紫外线的照射也会加速斑的形成。   四、错误的使用化妆品   使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在�� �疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵� ��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的 问题。   外部因素   一、紫外线   照射紫外线的时候,人体为了保护皮肤,会在基底层产�� �很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更� ��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化, 还会引起黑斑、雀斑等色素沉着的皮肤疾患。   二、不良的清洁习惯   因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。�� �皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦� ��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的 问题。   三、遗传基因   父母中有长斑的,则本人长斑的概率就很高,这种情况�� �一定程度上就可判定是遗传基因的作用。所以家里特别是长� ��有长斑的人,要注意避免引发长斑的重要因素之一——紫外 线照射,这是预防斑必须注意的。 《有疑问帮你解决》   1,黛芙薇尔精华液真的有效果吗?真的可以把脸上的黄褐�� �去掉吗?   答:黛芙薇尔精华液DNA精华能够有效的修复周围难以触�� �的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必� ��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑 ,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时�� �,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的� ��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显 而易见。自产品上市以来,老顾客纷纷介绍新顾客,71%的新�� �客都是通过老顾客介绍而来,口碑由此而来!   2,服用黛芙薇尔美白,会伤身体吗?有副作用吗?   答:黛芙薇尔精华液应用了精纯复合配方和领先的分类�� �斑科技,并将“DNA美肤系统”疗法应用到了该产品中,能彻� ��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有 效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾�� �地的专家通力协作,超过10年的研究以全新的DNA肌肤修复技�� �,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽� ��迹,令每一位爱美的女性都能享受到科技创新所带来的自然 之美。 专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数�� �百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖!   3,去除黄褐斑之后,会反弹吗?   答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔�� �白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家� ��据斑的形成原因精心研制而成用事实说话,让消费者打分。 树立权威品牌!我们的很多新客户都是老客户介绍而来,请问� ��如果效果不好,会有客户转介绍吗?   4,你们的价格有点贵,能不能便宜一点?   答:如果您使用西药最少需要2000元,煎服的药最少需要3 000元,做手术最少是5000元,而这些毫无疑问,不会对彻底去� ��你的斑点有任何帮助!一分价钱,一份价值,我们现在做的�� �是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的� ��褐斑彻底去除,你还会觉得贵吗?你还会再去花那么多冤枉�� �,不但斑没去掉,还把自己的皮肤弄的越来越糟吗   5,我适合用黛芙薇尔精华液吗?   答:黛芙薇尔适用人群:   1、生理紊乱引起的黄褐斑人群   2、生育引起的妊娠斑人群   3、年纪增长引起的老年斑人群   4、化妆品色素沉积、辐射斑人群   5、长期日照引起的日晒斑人群   6、肌肤暗淡急需美白的人群 《祛斑小方法》 如何消除脸上的色斑,同时为您分享祛斑小方法 1:桃花瓜子蜜:用桃花阴干研末,冬瓜子研末,二者等份调� ��蜜适量,敷面,每晚临睡前敷患处。黑痣则点涂之。功效洁 面去斑。适用于黑痣、黑斑、雀斑。 2:香菜汤:用香菜煎汤,每日洗面,日久有效。功效去黑斑� ��雀斑。 ``` ----- Original issue reported on code.google.com by `additive...@gmail.com` on 1 Jul 2014 at 3:41
defect
支招如何消除脸上的色斑 《摘要》 如何治疗青春痘色斑是每个脸上有色斑的人所最关心的问题�� �特别是女性现在最宝贵的财富就是我们的青春,在我们年轻� ��时候我们有很多的美好的事情可以去追逐。可是,如果脸上 长了色斑,但是却不知道如何治疗青春痘色斑,让处于享受�� �春的我顿时感觉天塌地陷一般,如何治疗青春痘色斑 我四处 找寻着这个问题的解决方法。期间用了很多的祛斑产品,但�� �都没有有效的解决我的色斑的问题。如何消除脸上的色斑, 《客户案例》    ,脸上长了很多的黄褐斑,刚开始的时候没 有注意,觉得就几个斑也没什么影响的,就没怎 么注意,等我觉得不对的时候,黄褐斑已经长了很多了,我�� �两侧颧骨上,眼睛周围都是了,整个脸像是 落了一层灰一样,显得老了十多岁。刚开始也是去美容院做�� �容,可做了一段时间感觉没什么效果,又去商场买了祛斑霜� ��可用了一次脸就很疼,我知道是过敏了,吓的我赶紧洗了, 本来我想做激光祛斑的,可 在网上查了很多说激光祛斑容易反弹,折腾到这我都已经算�� �绝望了,想着难道一辈子都这样了吗 后来 还是一个在美容院认识的姐妹打电话说让我用「黛芙薇尔精�� �液」,能去黄褐斑,还不反弹,我当时还不 敢相信,她就约我去她家里,没想到一个多月不见她的黄褐�� �变淡了,皮肤也白了,她说现在正在用「黛芙薇尔精华液」� ��现在效果这么好,她都不敢相信,我忙问她在哪买的,会不 会反弹。她说去「黛芙薇尔精华液」的官 方网站上就能买到,还能货到付款,说是她一个朋友介绍给�� �的,她朋友都去掉三个月了也没反弹,我听 了高兴坏了,也赶紧在网上订购了两个周期,现在我的黄褐�� �已经彻底没有了,脸也白了很多,这是我的 亲身体验,希望对脸上有黄褐斑的姐妹有些帮助。 阅读了如何消除脸上的色斑,再看脸上容易长斑的原因: 《色斑形成原因》   内部因素   一、压力   当人受到压力时,就会分泌肾上腺素,为对付压力而做�� �备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏� ��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃 。   二、荷尔蒙分泌失调   避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞�� �分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在� ��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕 中因女性荷尔蒙雌激素的增加, — 现斑,这时候出现的斑点在产后大部分会消失。可是,新陈�� �谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等� ��因,都会使斑加深。有时新长出的斑,产后也不会消失,所 以需要更加注意。   三、新陈代谢缓慢   肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑�� �因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态� ��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是 内分泌失调导致过敏体质而形成的。另外,身体状态不正常�� �时候,紫外线的照射也会加速斑的形成。   四、错误的使用化妆品   使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在�� �疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵� ��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的 问题。   外部因素   一、紫外线   照射紫外线的时候,人体为了保护皮肤,会在基底层产�� �很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更� ��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化, 还会引起黑斑、雀斑等色素沉着的皮肤疾患。   二、不良的清洁习惯   因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。�� �皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦� ��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的 问题。   三、遗传基因   父母中有长斑的,则本人长斑的概率就很高,这种情况�� �一定程度上就可判定是遗传基因的作用。所以家里特别是长� ��有长斑的人,要注意避免引发长斑的重要因素之一——紫外 线照射,这是预防斑必须注意的。 《有疑问帮你解决》    黛芙薇尔精华液真的有效果吗 真的可以把脸上的黄褐�� �去掉吗   答:黛芙薇尔精华液dna精华能够有效的修复周围难以触�� �的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必� ��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑 ,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时�� �,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的� ��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显 而易见。自产品上市以来,老顾客纷纷介绍新顾客, 的新�� �客都是通过老顾客介绍而来,口碑由此而来    ,服用黛芙薇尔美白,会伤身体吗 有副作用吗   答:黛芙薇尔精华液应用了精纯复合配方和领先的分类�� �斑科技,并将“dna美肤系统”疗法应用到了该产品中,能彻� ��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有 效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾�� �地的专家通力协作, �� �,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽� ��迹,令每一位爱美的女性都能享受到科技创新所带来的自然 之美。 专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数�� �百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖    ,去除黄褐斑之后,会反弹吗   答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔�� �白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家� ��据斑的形成原因精心研制而成用事实说话,让消费者打分。 树立权威品牌 我们的很多新客户都是老客户介绍而来,请问� ��如果效果不好,会有客户转介绍吗    ,你们的价格有点贵,能不能便宜一点   答: , , ,而这些毫无疑问,不会对彻底去� ��你的斑点有任何帮助 一分价钱,一份价值,我们现在做的�� �是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的� ��褐斑彻底去除,你还会觉得贵吗 你还会再去花那么多冤枉�� �,不但斑没去掉,还把自己的皮肤弄的越来越糟吗    ,我适合用黛芙薇尔精华液吗   答:黛芙薇尔适用人群:    、生理紊乱引起的黄褐斑人群    、生育引起的妊娠斑人群    、年纪增长引起的老年斑人群    、化妆品色素沉积、辐射斑人群    、长期日照引起的日晒斑人群    、肌肤暗淡急需美白的人群 《祛斑小方法》 如何消除脸上的色斑,同时为您分享祛斑小方法 :桃花瓜子蜜:用桃花阴干研末,冬瓜子研末,二者等份调� ��蜜适量,敷面,每晚临睡前敷患处。黑痣则点涂之。功效洁 面去斑。适用于黑痣、黑斑、雀斑。 :香菜汤:用香菜煎汤,每日洗面,日久有效。功效去黑斑� ��雀斑。 original issue reported on code google com by additive gmail com on jul at
1
87,287
8,071,306,242
IssuesEvent
2018-08-06 12:47:39
elastic/kibana
https://api.github.com/repos/elastic/kibana
opened
Results of the x-pack Jest and Mocha tests should be displayed at Jenkins `Test Result` dashboard
test
Currently `x-pack` Jenkins job displays detailed results only for the following x-pack tests: * X-Pack API Integration Tests * X-Pack Functional Tests * X-Pack Phantom API Reporting Tests * X-Pack RBAC API Integration Tests * X-Pack SAML API Integration Tests We should also display results for Jest and Mocha unit tests
1.0
Results of the x-pack Jest and Mocha tests should be displayed at Jenkins `Test Result` dashboard - Currently `x-pack` Jenkins job displays detailed results only for the following x-pack tests: * X-Pack API Integration Tests * X-Pack Functional Tests * X-Pack Phantom API Reporting Tests * X-Pack RBAC API Integration Tests * X-Pack SAML API Integration Tests We should also display results for Jest and Mocha unit tests
non_defect
results of the x pack jest and mocha tests should be displayed at jenkins test result dashboard currently x pack jenkins job displays detailed results only for the following x pack tests x pack api integration tests x pack functional tests x pack phantom api reporting tests x pack rbac api integration tests x pack saml api integration tests we should also display results for jest and mocha unit tests
0
1,711
2,603,969,944
IssuesEvent
2015-02-24 19:00:00
chrsmith/nishazi6
https://api.github.com/repos/chrsmith/nishazi6
opened
沈阳龟头出现小疙瘩
auto-migrated Priority-Medium Type-Defect
``` 沈阳龟头出现小疙瘩〓沈陽軍區政治部醫院性病〓TEL:024-3102 3308〓成立于1946年,68年專注于性傳播疾病的研究和治療。位� ��沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌的� ��史悠久、設備精良、技術權威、專家云集,是預防、保健、 醫療、科研康復為一體的綜合性醫院。是國家首批公立甲等�� �隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、東� ��大學等知名高等院校的教學醫院。曾被中國人民解放軍空軍 后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二�� �功。 ``` ----- Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 7:25
1.0
沈阳龟头出现小疙瘩 - ``` 沈阳龟头出现小疙瘩〓沈陽軍區政治部醫院性病〓TEL:024-3102 3308〓成立于1946年,68年專注于性傳播疾病的研究和治療。位� ��沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌的� ��史悠久、設備精良、技術權威、專家云集,是預防、保健、 醫療、科研康復為一體的綜合性醫院。是國家首批公立甲等�� �隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、東� ��大學等知名高等院校的教學醫院。曾被中國人民解放軍空軍 后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二�� �功。 ``` ----- Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 7:25
defect
沈阳龟头出现小疙瘩 沈阳龟头出现小疙瘩〓沈陽軍區政治部醫院性病〓tel: 〓 , 。位� �� 。是一所與新中國同建立共輝煌的� ��史悠久、設備精良、技術權威、專家云集,是預防、保健、 醫療、科研康復為一體的綜合性醫院。是國家首批公立甲等�� �隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、東� ��大學等知名高等院校的教學醫院。曾被中國人民解放軍空軍 后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二�� �功。 original issue reported on code google com by gmail com on jun at
1
64,417
18,670,598,457
IssuesEvent
2021-10-30 16:31:00
theseion/Fuel
https://api.github.com/repos/theseion/Fuel
closed
Error when serializing WideString and WideSymbol inside clusters
Priority-Medium auto-migrated Type-Defect stale
``` Fuel correctly serializes WideString and WideSymbol instances but ONLY when they are serialized as a regular object, that is, when its cluster is asked or when using #encodeReference etc... However, there is a problem when they are serialized directly into the stream by other clusters. Example: FLGlobalCluster >> serialize: anObject on: aWriteStream aWriteStream nextStringPut: (Smalltalk globals keyAtValue: anObject). In this case, we are doing a nextStringPut: but in fact, the symbol (name of a class) can be a WideSymbol and in which case this cluster will not be able to correctly materialize it. To see all problem, check senders of nextStringPut: inside clusters. ``` Original issue reported on code.google.com by `marianopeck` on 25 Aug 2011 at 10:51
1.0
Error when serializing WideString and WideSymbol inside clusters - ``` Fuel correctly serializes WideString and WideSymbol instances but ONLY when they are serialized as a regular object, that is, when its cluster is asked or when using #encodeReference etc... However, there is a problem when they are serialized directly into the stream by other clusters. Example: FLGlobalCluster >> serialize: anObject on: aWriteStream aWriteStream nextStringPut: (Smalltalk globals keyAtValue: anObject). In this case, we are doing a nextStringPut: but in fact, the symbol (name of a class) can be a WideSymbol and in which case this cluster will not be able to correctly materialize it. To see all problem, check senders of nextStringPut: inside clusters. ``` Original issue reported on code.google.com by `marianopeck` on 25 Aug 2011 at 10:51
defect
error when serializing widestring and widesymbol inside clusters fuel correctly serializes widestring and widesymbol instances but only when they are serialized as a regular object that is when its cluster is asked or when using encodereference etc however there is a problem when they are serialized directly into the stream by other clusters example flglobalcluster serialize anobject on awritestream awritestream nextstringput smalltalk globals keyatvalue anobject in this case we are doing a nextstringput but in fact the symbol name of a class can be a widesymbol and in which case this cluster will not be able to correctly materialize it to see all problem check senders of nextstringput inside clusters original issue reported on code google com by marianopeck on aug at
1
214,256
7,268,173,356
IssuesEvent
2018-02-20 09:09:34
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
apps.facebook.com - site is not usable
browser-firefox priority-critical
<!-- @browser: Firefox 60.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0 --> <!-- @reported_with: desktop-reporter --> **URL**: https://apps.facebook.com/gametwist-casino/?fb_source=canvas_bookmark&__fns&hash=Ac0ezUFKugiORVBF **Browser / Version**: Firefox 60.0 **Operating System**: Windows 7 **Tested Another Browser**: No **Problem type**: Site is not usable **Description**: cant open **Steps to Reproduce**: gfx.webrender.all: false gfx.webrender.blob-images: 1 gfx.webrender.enabled: false image.mem.shared: 2 [![Screenshot Description](https://webcompat.com/uploads/2018/2/2d1f6ec2-b541-4f33-aead-a6dc877cf200-thumb.jpg)](https://webcompat.com/uploads/2018/2/2d1f6ec2-b541-4f33-aead-a6dc877cf200.jpg) _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
apps.facebook.com - site is not usable - <!-- @browser: Firefox 60.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0 --> <!-- @reported_with: desktop-reporter --> **URL**: https://apps.facebook.com/gametwist-casino/?fb_source=canvas_bookmark&__fns&hash=Ac0ezUFKugiORVBF **Browser / Version**: Firefox 60.0 **Operating System**: Windows 7 **Tested Another Browser**: No **Problem type**: Site is not usable **Description**: cant open **Steps to Reproduce**: gfx.webrender.all: false gfx.webrender.blob-images: 1 gfx.webrender.enabled: false image.mem.shared: 2 [![Screenshot Description](https://webcompat.com/uploads/2018/2/2d1f6ec2-b541-4f33-aead-a6dc877cf200-thumb.jpg)](https://webcompat.com/uploads/2018/2/2d1f6ec2-b541-4f33-aead-a6dc877cf200.jpg) _From [webcompat.com](https://webcompat.com/) with ❤️_
non_defect
apps facebook com site is not usable url browser version firefox operating system windows tested another browser no problem type site is not usable description cant open steps to reproduce gfx webrender all false gfx webrender blob images gfx webrender enabled false image mem shared from with ❤️
0
84,058
16,444,691,054
IssuesEvent
2021-05-20 18:05:39
mozilla-mobile/focus-ios
https://api.github.com/repos/mozilla-mobile/focus-ios
closed
Update Carthage dependencies
code health
With iOS 12, a lot of our Carthage dependencies have been updated, and we should update them to ensure they keep working and bugs are ironed out!
1.0
Update Carthage dependencies - With iOS 12, a lot of our Carthage dependencies have been updated, and we should update them to ensure they keep working and bugs are ironed out!
non_defect
update carthage dependencies with ios a lot of our carthage dependencies have been updated and we should update them to ensure they keep working and bugs are ironed out
0
76,726
26,567,021,673
IssuesEvent
2023-01-20 21:22:37
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
closed
Element has memory leak (previous report was deleted)
T-Defect X-Needs-Info
### Steps to reproduce 1. Use various Element Desktop features. ### Outcome #### What did you expect? Element is not computing powers and electric energy vamp. Freedom of speech, use nickname "Element has memory leak". #### What happened instead? Element is computing powers and electric energy vamp. Banned in everyone Matrix and Element rooms and spaces for nick with reason "Help vamp". ![Element memory leak 2023](https://user-images.githubusercontent.com/24779886/212490876-3036c72f-5e59-46d2-81da-6fce85756774.jpg) ### Operating system _No response_ ### Application version 1.11.17 ### How did you install the app? _No response_ ### Homeserver _No response_ ### Will you send logs? No
1.0
Element has memory leak (previous report was deleted) - ### Steps to reproduce 1. Use various Element Desktop features. ### Outcome #### What did you expect? Element is not computing powers and electric energy vamp. Freedom of speech, use nickname "Element has memory leak". #### What happened instead? Element is computing powers and electric energy vamp. Banned in everyone Matrix and Element rooms and spaces for nick with reason "Help vamp". ![Element memory leak 2023](https://user-images.githubusercontent.com/24779886/212490876-3036c72f-5e59-46d2-81da-6fce85756774.jpg) ### Operating system _No response_ ### Application version 1.11.17 ### How did you install the app? _No response_ ### Homeserver _No response_ ### Will you send logs? No
defect
element has memory leak previous report was deleted steps to reproduce use various element desktop features outcome what did you expect element is not computing powers and electric energy vamp freedom of speech use nickname element has memory leak what happened instead element is computing powers and electric energy vamp banned in everyone matrix and element rooms and spaces for nick with reason help vamp operating system no response application version how did you install the app no response homeserver no response will you send logs no
1
211,602
16,328,848,364
IssuesEvent
2021-05-12 06:29:08
adrianwyard/jwplayer-enhancements
https://api.github.com/repos/adrianwyard/jwplayer-enhancements
closed
Test hh:mm:ss time
ready for testing
The RSS times are expressed in hh:mm:ss rather than total seconds, so that conversion will need to be made.
1.0
Test hh:mm:ss time - The RSS times are expressed in hh:mm:ss rather than total seconds, so that conversion will need to be made.
non_defect
test hh mm ss time the rss times are expressed in hh mm ss rather than total seconds so that conversion will need to be made
0
7,350
6,916,280,473
IssuesEvent
2017-11-29 01:39:27
codeforboston/cliff-effects
https://api.github.com/repos/codeforboston/cliff-effects
opened
Conditional Logic for Header Improvement
infrastructure
Currently the `Header` file has a [hacky line](https://github.com/codeforboston/cliff-effects/blob/dev/src/components/Header.js#L14) that makes it only display if the current path is '/'. This is pretty fragile because changing the path can cause the header to display on the home page. We should find a more robust way to toggle the header visibility off on the home page.
1.0
Conditional Logic for Header Improvement - Currently the `Header` file has a [hacky line](https://github.com/codeforboston/cliff-effects/blob/dev/src/components/Header.js#L14) that makes it only display if the current path is '/'. This is pretty fragile because changing the path can cause the header to display on the home page. We should find a more robust way to toggle the header visibility off on the home page.
non_defect
conditional logic for header improvement currently the header file has a that makes it only display if the current path is this is pretty fragile because changing the path can cause the header to display on the home page we should find a more robust way to toggle the header visibility off on the home page
0
203,032
7,057,317,348
IssuesEvent
2018-01-04 16:02:50
WordPress/gutenberg
https://api.github.com/repos/WordPress/gutenberg
closed
Gallery: full-screen image preview
Blocks Media Priority Low [Type] Enhancement
It would be nice to be able to view gallery images without leaving the page that contains the gallery. A couple of examples in the wild: - https://jetpack.com/support/tiled-galleries/ - http://photoswipe.com/ While this feature is supported in Jetpack, I think it would be a great fit for Gutenberg, and common enough to warrant inclusion in core.
1.0
Gallery: full-screen image preview - It would be nice to be able to view gallery images without leaving the page that contains the gallery. A couple of examples in the wild: - https://jetpack.com/support/tiled-galleries/ - http://photoswipe.com/ While this feature is supported in Jetpack, I think it would be a great fit for Gutenberg, and common enough to warrant inclusion in core.
non_defect
gallery full screen image preview it would be nice to be able to view gallery images without leaving the page that contains the gallery a couple of examples in the wild while this feature is supported in jetpack i think it would be a great fit for gutenberg and common enough to warrant inclusion in core
0
137,413
20,142,079,562
IssuesEvent
2022-02-09 00:59:51
Kaiserreich/Kaiserreich-4
https://api.github.com/repos/Kaiserreich/Kaiserreich-4
reopened
JBS - Al-Hasa concession duplicated
Working as Designed
**Quick questions** OS: Windows 10 HOI4 version: 1.11.5 Kaiserreich version: Master 2/5/22 List any other mods used: Music and Model Masters Were you using Steam? Yes Were you in multiplayer? No Which expansions do you NOT have? I have all **Explanation of the issue:** Granting the Al-Hasa concession via focus duplicates the oil, meaning both JBS and the benefactor can use the oil **Steps to reproduce:** 1. Win the war against Najd 2. Continue focuses, grant the oil concession to TPC or DAMAG **Possible cause:** **Screenshots:** ![Not Concession 1](https://user-images.githubusercontent.com/53159932/152665905-806b391a-0600-43c1-981b-ff3ee5a303c1.png) ![Not Concession 2](https://user-images.githubusercontent.com/53159932/152665909-ade562f9-0302-4ed1-9e2d-aadb0b66d3f1.png) ![image](https://user-images.githubusercontent.com/53159932/152665914-121a07e5-56d4-4659-9adf-892637a6a58a.png)
1.0
JBS - Al-Hasa concession duplicated - **Quick questions** OS: Windows 10 HOI4 version: 1.11.5 Kaiserreich version: Master 2/5/22 List any other mods used: Music and Model Masters Were you using Steam? Yes Were you in multiplayer? No Which expansions do you NOT have? I have all **Explanation of the issue:** Granting the Al-Hasa concession via focus duplicates the oil, meaning both JBS and the benefactor can use the oil **Steps to reproduce:** 1. Win the war against Najd 2. Continue focuses, grant the oil concession to TPC or DAMAG **Possible cause:** **Screenshots:** ![Not Concession 1](https://user-images.githubusercontent.com/53159932/152665905-806b391a-0600-43c1-981b-ff3ee5a303c1.png) ![Not Concession 2](https://user-images.githubusercontent.com/53159932/152665909-ade562f9-0302-4ed1-9e2d-aadb0b66d3f1.png) ![image](https://user-images.githubusercontent.com/53159932/152665914-121a07e5-56d4-4659-9adf-892637a6a58a.png)
non_defect
jbs al hasa concession duplicated quick questions os windows version kaiserreich version master list any other mods used music and model masters were you using steam yes were you in multiplayer no which expansions do you not have i have all explanation of the issue granting the al hasa concession via focus duplicates the oil meaning both jbs and the benefactor can use the oil steps to reproduce win the war against najd continue focuses grant the oil concession to tpc or damag possible cause screenshots
0
241,627
20,152,573,695
IssuesEvent
2022-02-09 13:48:46
blockframes/blockframes
https://api.github.com/repos/blockframes/blockframes
closed
add a script to run e2e tests with Cypress in incognito mode
Dev - Test / Quality Assurance DevOps
add a small script so we can open the test in incognito mode with one line of code. That might be useful in the future if we want to test without any cache issues.
1.0
add a script to run e2e tests with Cypress in incognito mode - add a small script so we can open the test in incognito mode with one line of code. That might be useful in the future if we want to test without any cache issues.
non_defect
add a script to run tests with cypress in incognito mode add a small script so we can open the test in incognito mode with one line of code that might be useful in the future if we want to test without any cache issues
0
669
3,964,688,323
IssuesEvent
2016-05-03 02:43:27
comozilla/Parapara-Canvas-Editor
https://api.github.com/repos/comozilla/Parapara-Canvas-Editor
closed
Viewクラスたちを継承できるようにしたい!
architecture code enhancement wontfix
`ColorPickerView`、`LineWidthPickerView`は、どちらも、 コンストラクタで引数として element、drawingConfig を受け取っていて、 それらをメンバにしているところが共通であるため、 継承したい!(jsで継承とかってできるのかなあ)
1.0
Viewクラスたちを継承できるようにしたい! - `ColorPickerView`、`LineWidthPickerView`は、どちらも、 コンストラクタで引数として element、drawingConfig を受け取っていて、 それらをメンバにしているところが共通であるため、 継承したい!(jsで継承とかってできるのかなあ)
non_defect
viewクラスたちを継承できるようにしたい! colorpickerview 、 linewidthpickerview は、どちらも、 コンストラクタで引数として element、drawingconfig を受け取っていて、 それらをメンバにしているところが共通であるため、 継承したい!(jsで継承とかってできるのかなあ)
0
22,932
3,727,389,565
IssuesEvent
2016-03-06 08:05:14
godfather1103/mentohust
https://api.github.com/repos/godfather1103/mentohust
closed
关于mentohust的.log生成问题
auto-migrated Priority-Medium Type-Defect
``` 我阅读了mentohust.c的代码 但是很多地方不懂 不知道mentohust.log是怎么生成的 我希望有人能指点一下 我想把mentohust.log生成html格式 然后软链接到/www下 这样通过openwrt的http链接就能察看mentohust的认证情况了 Linux下输入法不好用 有错别字请忽略 ``` Original issue reported on code.google.com by `592...@gmail.com` on 12 Nov 2012 at 8:09
1.0
关于mentohust的.log生成问题 - ``` 我阅读了mentohust.c的代码 但是很多地方不懂 不知道mentohust.log是怎么生成的 我希望有人能指点一下 我想把mentohust.log生成html格式 然后软链接到/www下 这样通过openwrt的http链接就能察看mentohust的认证情况了 Linux下输入法不好用 有错别字请忽略 ``` Original issue reported on code.google.com by `592...@gmail.com` on 12 Nov 2012 at 8:09
defect
关于mentohust的 log生成问题 我阅读了mentohust c的代码 但是很多地方不懂 不知道mentohust log是怎么生成的 我希望有人能指点一下 我想把mentohust log生成html格式 然后软链接到 www下 这样通过openwrt的http链接就能察看mentohust的认证情况了 linux下输入法不好用 有错别字请忽略 original issue reported on code google com by gmail com on nov at
1
447,229
12,886,339,181
IssuesEvent
2020-07-13 09:19:52
googleapis/google-api-dotnet-client
https://api.github.com/repos/googleapis/google-api-dotnet-client
closed
How to read group emails
api: gmail priority: p2 type: question
Hello, I'm trying to read from and send emails to g suite group. I enabled domain wide delegation. I am able to read any users mailbox (I just need to change the email address in `CreateWithUser` when creating credential). But I can not make it work for groups. When I create credential as `CreateWithUser("user@domain.com")`, the request `Messages.List("group@domain.com")` fails on `Delegation denied for user@domain.com`. When I create credential as `CreateWithUser("group@domain.com")`, I get `Client is unauthorized to retrieve access tokens using this method.` `user@domain.com` is owner of `group@domain.com` My code: ``` var Scopes = new[] { "https://mail.google.com", "https://www.googleapis.com/auth/gmail.compose", "https://www.googleapis.com/auth/gmail.modify", "https://www.googleapis.com/auth/gmail.readonly" }; var serviceAccount = Convert.FromBase64String("base64ServiceAccount"); var serviceAccountCredential = ServiceAccountCredential.FromServiceAccountData(new MemoryStream(serviceAccount)); var googleCredential = GoogleCredential .FromServiceAccountCredential(serviceAccountCredential); var scopedCredentials = (ServiceAccountCredential)googleCredential .CreateScoped(Scopes) .CreateWithUser("user@domain.com") .UnderlyingCredential; var service = new GmailService(new BaseClientService.Initializer() { HttpClientInitializer = scopedCredentials, ApplicationName = "App Name", }); var request = service.Users.Messages.List("group@domain.com"); var response = request.Execute(); ```
1.0
How to read group emails - Hello, I'm trying to read from and send emails to g suite group. I enabled domain wide delegation. I am able to read any users mailbox (I just need to change the email address in `CreateWithUser` when creating credential). But I can not make it work for groups. When I create credential as `CreateWithUser("user@domain.com")`, the request `Messages.List("group@domain.com")` fails on `Delegation denied for user@domain.com`. When I create credential as `CreateWithUser("group@domain.com")`, I get `Client is unauthorized to retrieve access tokens using this method.` `user@domain.com` is owner of `group@domain.com` My code: ``` var Scopes = new[] { "https://mail.google.com", "https://www.googleapis.com/auth/gmail.compose", "https://www.googleapis.com/auth/gmail.modify", "https://www.googleapis.com/auth/gmail.readonly" }; var serviceAccount = Convert.FromBase64String("base64ServiceAccount"); var serviceAccountCredential = ServiceAccountCredential.FromServiceAccountData(new MemoryStream(serviceAccount)); var googleCredential = GoogleCredential .FromServiceAccountCredential(serviceAccountCredential); var scopedCredentials = (ServiceAccountCredential)googleCredential .CreateScoped(Scopes) .CreateWithUser("user@domain.com") .UnderlyingCredential; var service = new GmailService(new BaseClientService.Initializer() { HttpClientInitializer = scopedCredentials, ApplicationName = "App Name", }); var request = service.Users.Messages.List("group@domain.com"); var response = request.Execute(); ```
non_defect
how to read group emails hello i m trying to read from and send emails to g suite group i enabled domain wide delegation i am able to read any users mailbox i just need to change the email address in createwithuser when creating credential but i can not make it work for groups when i create credential as createwithuser user domain com the request messages list group domain com fails on delegation denied for user domain com when i create credential as createwithuser group domain com i get client is unauthorized to retrieve access tokens using this method user domain com is owner of group domain com my code var scopes new var serviceaccount convert var serviceaccountcredential serviceaccountcredential fromserviceaccountdata new memorystream serviceaccount var googlecredential googlecredential fromserviceaccountcredential serviceaccountcredential var scopedcredentials serviceaccountcredential googlecredential createscoped scopes createwithuser user domain com underlyingcredential var service new gmailservice new baseclientservice initializer httpclientinitializer scopedcredentials applicationname app name var request service users messages list group domain com var response request execute
0
378,897
26,343,446,011
IssuesEvent
2023-01-10 19:44:15
dagger/dagger
https://api.github.com/repos/dagger/dagger
opened
Write common quickstart guide
area/documentation
### What is the issue? Create the structure and text for the common quickstart guide.
1.0
Write common quickstart guide - ### What is the issue? Create the structure and text for the common quickstart guide.
non_defect
write common quickstart guide what is the issue create the structure and text for the common quickstart guide
0
62,437
17,023,922,915
IssuesEvent
2021-07-03 04:34:39
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
closed
Nominatim doesn't find street names without number
Component: nominatim Priority: minor Resolution: duplicate Type: defect
**[Submitted to the original trac issue database at 12.42pm, Thursday, 2nd July 2015]** The problem occurs in all applications using nominatim. If only a streetname is given in the city of berne, it doesnt find it. e.g. "Birkenweg Bern" -> doesn't find the Street "Birkenweg" in the City of Berne. It only finds other Birkenweg in other villages. If I type "Birkenweg 61 Bern" it finds "61, Birkenweg, Bern"(in the city of Berne) -> with the first Search it should also find the Birkenweg in Bern. --> the same problem occurs with other streets.
1.0
Nominatim doesn't find street names without number - **[Submitted to the original trac issue database at 12.42pm, Thursday, 2nd July 2015]** The problem occurs in all applications using nominatim. If only a streetname is given in the city of berne, it doesnt find it. e.g. "Birkenweg Bern" -> doesn't find the Street "Birkenweg" in the City of Berne. It only finds other Birkenweg in other villages. If I type "Birkenweg 61 Bern" it finds "61, Birkenweg, Bern"(in the city of Berne) -> with the first Search it should also find the Birkenweg in Bern. --> the same problem occurs with other streets.
defect
nominatim doesn t find street names without number the problem occurs in all applications using nominatim if only a streetname is given in the city of berne it doesnt find it e g birkenweg bern doesn t find the street birkenweg in the city of berne it only finds other birkenweg in other villages if i type birkenweg bern it finds birkenweg bern in the city of berne with the first search it should also find the birkenweg in bern the same problem occurs with other streets
1
171,160
27,071,206,481
IssuesEvent
2023-02-14 07:02:50
microsoft/WSA
https://api.github.com/repos/microsoft/WSA
closed
Use TRICHROME_64_32 Webview
by-design feature-request
### Is your feature request related to a problem? Please describe WSA currently uses 32_64 Legacy Webview, because use32bitAbi=true, the webview process is 32-bit ### Describe the solution you'd like https://chromium.googlesource.com/chromium/src.git/+/HEAD/docs/android_native_libraries.md https://source.chromium.org/chromium/chromium/src/+/main:build/util/android_chrome_version.py This will improve performance, also provide a browser for WSA, and greatly reduce the size ### Describe alternatives you've considered _No response_ ### Please specify the version of Windows Subsystem for Android 2211.40000.7.0
1.0
Use TRICHROME_64_32 Webview - ### Is your feature request related to a problem? Please describe WSA currently uses 32_64 Legacy Webview, because use32bitAbi=true, the webview process is 32-bit ### Describe the solution you'd like https://chromium.googlesource.com/chromium/src.git/+/HEAD/docs/android_native_libraries.md https://source.chromium.org/chromium/chromium/src/+/main:build/util/android_chrome_version.py This will improve performance, also provide a browser for WSA, and greatly reduce the size ### Describe alternatives you've considered _No response_ ### Please specify the version of Windows Subsystem for Android 2211.40000.7.0
non_defect
use trichrome webview is your feature request related to a problem please describe wsa currently uses legacy webview because true the webview process is bit describe the solution you d like this will improve performance also provide a browser for wsa and greatly reduce the size describe alternatives you ve considered no response please specify the version of windows subsystem for android
0
72,041
23,903,595,779
IssuesEvent
2022-09-08 21:19:27
primefaces/primeng
https://api.github.com/repos/primefaces/primeng
opened
tieredMenu: hover on submenu no supported
defect
### Describe the bug Hello, I am using angular 9 and prime ng 9; I was create a menu using "tieredMenu" and I want to show the menu when I hover to the icon. I added in the HTML : `(mouseenter)="hoverMenuEnter()" (mouseleave)="hoverMenuLeave()"` and for TS : ` public hoverMenuEnter() { const menuRestaurant = document.querySelectorAll('#menu li.ui-menuitem'); menuRestaurant[7].classList.remove('inactive'); menuRestaurant[7].classList.add('ui-menuitem-active'); } public hoverMenuLeave() { const menuRestaurant2 = document.querySelectorAll('#menu li.ui-menuitem'); menuRestaurant2[7].classList.remove('ui-menuitem-active'); menuRestaurant2[7].classList.add('inactive'); }` the problem now when I hover on any icon of the menu the submenu is showed. How can I show just when I hover on item num 8. thanks in advance ### Environment Angular: Version 9 PrimeNg : version 9 ### Reproducer _No response_ ### Angular version 9.1.15 ### PrimeNG version 9.1.3 ### Build / Runtime Angular CLI App ### Language ES6 ### Node version (for AoT issues node --version) 16.16.0 ### Browser(s) Chrome ### Steps to reproduce the behavior _No response_ ### Expected behavior _No response_
1.0
tieredMenu: hover on submenu no supported - ### Describe the bug Hello, I am using angular 9 and prime ng 9; I was create a menu using "tieredMenu" and I want to show the menu when I hover to the icon. I added in the HTML : `(mouseenter)="hoverMenuEnter()" (mouseleave)="hoverMenuLeave()"` and for TS : ` public hoverMenuEnter() { const menuRestaurant = document.querySelectorAll('#menu li.ui-menuitem'); menuRestaurant[7].classList.remove('inactive'); menuRestaurant[7].classList.add('ui-menuitem-active'); } public hoverMenuLeave() { const menuRestaurant2 = document.querySelectorAll('#menu li.ui-menuitem'); menuRestaurant2[7].classList.remove('ui-menuitem-active'); menuRestaurant2[7].classList.add('inactive'); }` the problem now when I hover on any icon of the menu the submenu is showed. How can I show just when I hover on item num 8. thanks in advance ### Environment Angular: Version 9 PrimeNg : version 9 ### Reproducer _No response_ ### Angular version 9.1.15 ### PrimeNG version 9.1.3 ### Build / Runtime Angular CLI App ### Language ES6 ### Node version (for AoT issues node --version) 16.16.0 ### Browser(s) Chrome ### Steps to reproduce the behavior _No response_ ### Expected behavior _No response_
defect
tieredmenu hover on submenu no supported describe the bug hello i am using angular and prime ng i was create a menu using tieredmenu and i want to show the menu when i hover to the icon i added in the html mouseenter hovermenuenter mouseleave hovermenuleave and for ts public hovermenuenter const menurestaurant document queryselectorall menu li ui menuitem menurestaurant classlist remove inactive menurestaurant classlist add ui menuitem active public hovermenuleave const document queryselectorall menu li ui menuitem classlist remove ui menuitem active classlist add inactive the problem now when i hover on any icon of the menu the submenu is showed how can i show just when i hover on item num thanks in advance environment angular version primeng version reproducer no response angular version primeng version build runtime angular cli app language node version for aot issues node version browser s chrome steps to reproduce the behavior no response expected behavior no response
1
13,352
2,754,387,780
IssuesEvent
2015-04-25 16:35:54
cakephp/cakephp
https://api.github.com/repos/cakephp/cakephp
closed
Serializing a Collection results in error when unserializing and manipulating it
Defect ORM
I found this while caching some database results, that ended up wrapped in a Collection. When serializing the collection _compile_ returns, the unserialized Collection would return ``` PHP Fatal error: Uncaught exception 'LogicException' with message 'The object is in an invalid state as the parent constructor was not called' in ... ``` when trying to perform any operation on it. If the case is that _any_ collection will fail if reconstructed from a serialization, then we should document that and throw an Exception when trying to serialize, but I'm not sure that's the case, and I'm not familiar with the internals of Colleciton and it's friends. Happy to implement and document this, but would like to be sure first :)
1.0
Serializing a Collection results in error when unserializing and manipulating it - I found this while caching some database results, that ended up wrapped in a Collection. When serializing the collection _compile_ returns, the unserialized Collection would return ``` PHP Fatal error: Uncaught exception 'LogicException' with message 'The object is in an invalid state as the parent constructor was not called' in ... ``` when trying to perform any operation on it. If the case is that _any_ collection will fail if reconstructed from a serialization, then we should document that and throw an Exception when trying to serialize, but I'm not sure that's the case, and I'm not familiar with the internals of Colleciton and it's friends. Happy to implement and document this, but would like to be sure first :)
defect
serializing a collection results in error when unserializing and manipulating it i found this while caching some database results that ended up wrapped in a collection when serializing the collection compile returns the unserialized collection would return php fatal error uncaught exception logicexception with message the object is in an invalid state as the parent constructor was not called in when trying to perform any operation on it if the case is that any collection will fail if reconstructed from a serialization then we should document that and throw an exception when trying to serialize but i m not sure that s the case and i m not familiar with the internals of colleciton and it s friends happy to implement and document this but would like to be sure first
1
243,070
20,360,889,690
IssuesEvent
2022-02-20 17:12:38
raphaelvallat/pingouin
https://api.github.com/repos/raphaelvallat/pingouin
closed
TestParametric::test_pandas fails with dtype mismatch on 32-bit platforms
docs/testing:book:
I’m helping to update the `python-pingouin` package in Fedora Linux. One test, `TestParametric::test_pandas`, is failing on 32-bit platforms (`i686` and `armv7hl`). I can’t easily tell if the actual problem here is in `pingouin`, `pandas`, or somewhere else (`scipy`, `pandas-flavor`, …). ``` =================================== FAILURES =================================== __________________________ TestParametric.test_pandas __________________________ self = <pingouin.tests.test_pandas.TestParametric testMethod=test_pandas> def test_pandas(self): """Test pandas method. """ # Test the ANOVA (Pandas) aov = df.anova(dv='Scores', between='Group', detailed=True) assert aov.equals(pg.anova(dv='Scores', between='Group', detailed=True, data=df)) aov3_ss1 = df_aov3.anova(dv='Cholesterol', between=['Sex', 'Drug'], ss_type=1) aov3_ss2 = df_aov3.anova(dv='Cholesterol', between=['Sex', 'Drug'], ss_type=2) aov3_ss2_pg = pg.anova(dv='Cholesterol', between=['Sex', 'Drug'], data=df_aov3, ss_type=2) assert not aov3_ss1.equals(aov3_ss2) assert aov3_ss2.round(3).equals(aov3_ss2_pg.round(3)) # Test the Welch ANOVA (Pandas) aov = df.welch_anova(dv='Scores', between='Group') assert aov.equals(pg.welch_anova(dv='Scores', between='Group', data=df)) # Test the ANCOVA aov = df_anc.ancova(dv='Scores', covar='Income', between='Method').round(3) assert aov.equals(pg.ancova(data=df_anc, dv='Scores', covar='Income', between='Method').round(3)) # Test the repeated measures ANOVA (Pandas) aov = df.rm_anova(dv='Scores', within='Time', subject='Subject', detailed=True) assert aov.equals(pg.rm_anova(dv='Scores', within='Time', subject='Subject', detailed=True, data=df)) # FDR-corrected post hocs with Hedges'g effect size ttests = df.pairwise_ttests(dv='Scores', within='Time', subject='Subject', padjust='fdr_bh', effsize='hedges') assert ttests.equals(pg.pairwise_ttests(dv='Scores', within='Time', subject='Subject', padjust='fdr_bh', effsize='hedges', data=df)) # Pairwise Tukey tukey = df.pairwise_tukey(dv='Scores', between='Group') assert tukey.equals(pg.pairwise_tukey(data=df, dv='Scores', between='Group')) # Test two-way mixed ANOVA aov = df.mixed_anova(dv='Scores', between='Group', within='Time', subject='Subject', correction=False) assert aov.equals(pg.mixed_anova(dv='Scores', between='Group', within='Time', subject='Subject', correction=False, data=df)) # Test parwise correlations corrs = data.pairwise_corr(columns=['X', 'M', 'Y'], method='spearman') corrs2 = pg.pairwise_corr(data=data, columns=['X', 'M', 'Y'], method='spearman') assert corrs['r'].equals(corrs2['r']) # Test partial correlation corrs = data.partial_corr(x='X', y='Y', covar='M', method='spearman') corrs2 = pg.partial_corr(x='X', y='Y', covar='M', method='spearman', data=data) assert corrs['r'].equals(corrs2['r']) # Test partial correlation matrix (compare with the ppcor package) corrs = data.iloc[:, :5].pcorr().round(3) np.testing.assert_array_equal(corrs.iloc[0, :].to_numpy(), [1, 0.392, 0.06, -0.014, -0.149]) # Now compare against Pingouin's own partial_corr function corrs = data[['X', 'Y', 'M']].pcorr() corrs2 = data.partial_corr(x='X', y='Y', covar='M') assert np.isclose(corrs.at['X', 'Y'], corrs2.at['pearson', 'r']) # Test rcorr (correlation matrix with p-values) # We compare against Pingouin pairwise_corr function corrs = df_corr.rcorr(padjust='holm', decimals=4) corrs2 = df_corr.pairwise_corr(padjust='holm').round(4) assert corrs.at['Neuroticism', 'Agreeableness'] == '*' assert (corrs.at['Agreeableness', 'Neuroticism'] == str(corrs2.at[2, 'r'])) corrs = df_corr.rcorr(padjust='holm', stars=False, decimals=4) assert (corrs.at['Neuroticism', 'Agreeableness'] == str(corrs2.at[2, 'p-corr'].round(4))) corrs = df_corr.rcorr(upper='n', decimals=5) corrs2 = df_corr.pairwise_corr().round(5) assert corrs.at['Extraversion', 'Openness'] == corrs2.at[4, 'n'] assert corrs.at['Openness', 'Extraversion'] == str(corrs2.at[4, 'r']) # Method = spearman does not work with Python 3.5 on Travis? # Instead it seems to return the Pearson correlation! > df_corr.rcorr(method='spearman') aov = Source SS DF1 DF2 ... F p-unc np2 eps 0 Group 5.459963 1 58 ......064929 0.998751 2 Interaction 5.167192 2 116 ... 2.727996 0.069545 0.044922 NaN [3 rows x 9 columns] aov3_ss1 = Source SS DF MS F p-unc np2 0 Sex 3.362769 1.0 3.362769 3.461...62 2.0 0.561181 0.577636 0.564168 0.018007 3 Residual 61.205378 63.0 0.971514 NaN NaN NaN aov3_ss2 = Source SS DF MS F p-unc np2 0 Sex 3.419789 1.0 3.419789 3.520...62 2.0 0.561181 0.577636 0.564168 0.018007 3 Residual 61.205378 63.0 0.971514 NaN NaN NaN aov3_ss2_pg = Source SS DF MS F p-unc np2 0 Sex 3.419789 1.0 3.419789 3.520...62 2.0 0.561181 0.577636 0.564168 0.018007 3 Residual 61.205378 63.0 0.971514 NaN NaN NaN corrs = Neuroticism Extraversion ... Agreeableness Conscientiousness Neuroticism - ... 500 Conscientiousness -0.36801 0.06459 ... 0.15867 - [5 rows x 5 columns] corrs2 = X Y method ... p-unc BF10 power 0 Neuroticism Extraversion pe... 0.059 0.06035 9 Agreeableness Conscientiousness pearson ... 0.00037 31.243 0.94638 [10 rows x 10 columns] self = <pingouin.tests.test_pandas.TestParametric testMethod=test_pandas> ttests = Contrast A B Paired ... p-corr p-adjust BF10 hedges 0 Time August January True .... 4.232 -0.482547 2 Time January June True ... 0.310194 fdr_bh 0.232 -0.169520 [3 rows x 13 columns] tukey = A B mean(A) ... T p-tukey hedges 0 Control Meditation 5.567851 ... -2.289903 0.023202 -0.339918 [1 rows x 9 columns] pingouin/tests/test_pandas.py:114: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.10/site-packages/pandas_flavor/register.py:29: in __call__ return method(self._obj, *args, **kwargs) args = () kwargs = {'method': 'spearman'} method = <function rcorr at 0xbb3880b8> self = <pandas_flavor.register.register_dataframe_method.<locals>.inner.<locals>.AccessorMethod object at 0xa8881f10> pingouin/correlation.py:1050: in rcorr mat = self.corr(method=method).round(decimals) decimals = 3 ffp = <function format_float_positional at 0xc3ab3028> method = 'spearman' padjust = None pearsonr = <function pearsonr at 0xbbb59e38> pval_stars = {0.001: '***', 0.01: '**', 0.05: '*'} self = Neuroticism Extraversion Openness Agreeableness Conscientiousness 0 2.47917 4.20833 3.93750 ...3 3.39583 499 2.54167 3.56250 3.14583 3.45833 2.89583 [500 rows x 5 columns] spearmanr = <function spearmanr at 0xbbb5f388> stars = True tif = <function triu_indices_from at 0xc39efcd0> upper = 'pval' /usr/lib/python3.10/site-packages/pandas/core/frame.py:9376: in corr correl = libalgos.nancorr_spearman(mat, minp=min_periods) cols = Index(['Neuroticism', 'Extraversion', 'Openness', 'Agreeableness', 'Conscientiousness'], dtype='object') idx = Index(['Neuroticism', 'Extraversion', 'Openness', 'Agreeableness', 'Conscientiousness'], dtype='object') mat = array([[2.47917, 4.20833, 3.9375 , 3.95833, 3.45833], [2.60417, 3.1875 , 3.95833, 3.39583, 3.22917], [2.... 3. ], [2.08333, 3.66667, 3.58333, 3.45833, 3.39583], [2.54167, 3.5625 , 3.14583, 3.45833, 2.89583]]) method = 'spearman' min_periods = 1 numeric_df = Neuroticism Extraversion Openness Agreeableness Conscientiousness 0 2.47917 4.20833 3.93750 ...3 3.39583 499 2.54167 3.56250 3.14583 3.45833 2.89583 [500 rows x 5 columns] self = Neuroticism Extraversion Openness Agreeableness Conscientiousness 0 2.47917 4.20833 3.93750 ...3 3.39583 499 2.54167 3.56250 3.14583 3.45833 2.89583 [500 rows x 5 columns] pandas/_libs/algos.pyx:415: in pandas._libs.algos.nancorr_spearman ??? _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > ??? E ValueError: Buffer dtype mismatch, expected 'const intp_t' but got 'long long' pandas/_libs/algos.pyx:938: ValueError ``` On 32-bit Linux platforms, `long long` is normally 64-bit but `intp_t` is 32-bit, which explains what is happening but not why it is happening. I can easily do any tests that are needed on these platforms to try to figure out where the root issue is, but some ideas regarding what to look for would be very helpful.
1.0
TestParametric::test_pandas fails with dtype mismatch on 32-bit platforms - I’m helping to update the `python-pingouin` package in Fedora Linux. One test, `TestParametric::test_pandas`, is failing on 32-bit platforms (`i686` and `armv7hl`). I can’t easily tell if the actual problem here is in `pingouin`, `pandas`, or somewhere else (`scipy`, `pandas-flavor`, …). ``` =================================== FAILURES =================================== __________________________ TestParametric.test_pandas __________________________ self = <pingouin.tests.test_pandas.TestParametric testMethod=test_pandas> def test_pandas(self): """Test pandas method. """ # Test the ANOVA (Pandas) aov = df.anova(dv='Scores', between='Group', detailed=True) assert aov.equals(pg.anova(dv='Scores', between='Group', detailed=True, data=df)) aov3_ss1 = df_aov3.anova(dv='Cholesterol', between=['Sex', 'Drug'], ss_type=1) aov3_ss2 = df_aov3.anova(dv='Cholesterol', between=['Sex', 'Drug'], ss_type=2) aov3_ss2_pg = pg.anova(dv='Cholesterol', between=['Sex', 'Drug'], data=df_aov3, ss_type=2) assert not aov3_ss1.equals(aov3_ss2) assert aov3_ss2.round(3).equals(aov3_ss2_pg.round(3)) # Test the Welch ANOVA (Pandas) aov = df.welch_anova(dv='Scores', between='Group') assert aov.equals(pg.welch_anova(dv='Scores', between='Group', data=df)) # Test the ANCOVA aov = df_anc.ancova(dv='Scores', covar='Income', between='Method').round(3) assert aov.equals(pg.ancova(data=df_anc, dv='Scores', covar='Income', between='Method').round(3)) # Test the repeated measures ANOVA (Pandas) aov = df.rm_anova(dv='Scores', within='Time', subject='Subject', detailed=True) assert aov.equals(pg.rm_anova(dv='Scores', within='Time', subject='Subject', detailed=True, data=df)) # FDR-corrected post hocs with Hedges'g effect size ttests = df.pairwise_ttests(dv='Scores', within='Time', subject='Subject', padjust='fdr_bh', effsize='hedges') assert ttests.equals(pg.pairwise_ttests(dv='Scores', within='Time', subject='Subject', padjust='fdr_bh', effsize='hedges', data=df)) # Pairwise Tukey tukey = df.pairwise_tukey(dv='Scores', between='Group') assert tukey.equals(pg.pairwise_tukey(data=df, dv='Scores', between='Group')) # Test two-way mixed ANOVA aov = df.mixed_anova(dv='Scores', between='Group', within='Time', subject='Subject', correction=False) assert aov.equals(pg.mixed_anova(dv='Scores', between='Group', within='Time', subject='Subject', correction=False, data=df)) # Test parwise correlations corrs = data.pairwise_corr(columns=['X', 'M', 'Y'], method='spearman') corrs2 = pg.pairwise_corr(data=data, columns=['X', 'M', 'Y'], method='spearman') assert corrs['r'].equals(corrs2['r']) # Test partial correlation corrs = data.partial_corr(x='X', y='Y', covar='M', method='spearman') corrs2 = pg.partial_corr(x='X', y='Y', covar='M', method='spearman', data=data) assert corrs['r'].equals(corrs2['r']) # Test partial correlation matrix (compare with the ppcor package) corrs = data.iloc[:, :5].pcorr().round(3) np.testing.assert_array_equal(corrs.iloc[0, :].to_numpy(), [1, 0.392, 0.06, -0.014, -0.149]) # Now compare against Pingouin's own partial_corr function corrs = data[['X', 'Y', 'M']].pcorr() corrs2 = data.partial_corr(x='X', y='Y', covar='M') assert np.isclose(corrs.at['X', 'Y'], corrs2.at['pearson', 'r']) # Test rcorr (correlation matrix with p-values) # We compare against Pingouin pairwise_corr function corrs = df_corr.rcorr(padjust='holm', decimals=4) corrs2 = df_corr.pairwise_corr(padjust='holm').round(4) assert corrs.at['Neuroticism', 'Agreeableness'] == '*' assert (corrs.at['Agreeableness', 'Neuroticism'] == str(corrs2.at[2, 'r'])) corrs = df_corr.rcorr(padjust='holm', stars=False, decimals=4) assert (corrs.at['Neuroticism', 'Agreeableness'] == str(corrs2.at[2, 'p-corr'].round(4))) corrs = df_corr.rcorr(upper='n', decimals=5) corrs2 = df_corr.pairwise_corr().round(5) assert corrs.at['Extraversion', 'Openness'] == corrs2.at[4, 'n'] assert corrs.at['Openness', 'Extraversion'] == str(corrs2.at[4, 'r']) # Method = spearman does not work with Python 3.5 on Travis? # Instead it seems to return the Pearson correlation! > df_corr.rcorr(method='spearman') aov = Source SS DF1 DF2 ... F p-unc np2 eps 0 Group 5.459963 1 58 ......064929 0.998751 2 Interaction 5.167192 2 116 ... 2.727996 0.069545 0.044922 NaN [3 rows x 9 columns] aov3_ss1 = Source SS DF MS F p-unc np2 0 Sex 3.362769 1.0 3.362769 3.461...62 2.0 0.561181 0.577636 0.564168 0.018007 3 Residual 61.205378 63.0 0.971514 NaN NaN NaN aov3_ss2 = Source SS DF MS F p-unc np2 0 Sex 3.419789 1.0 3.419789 3.520...62 2.0 0.561181 0.577636 0.564168 0.018007 3 Residual 61.205378 63.0 0.971514 NaN NaN NaN aov3_ss2_pg = Source SS DF MS F p-unc np2 0 Sex 3.419789 1.0 3.419789 3.520...62 2.0 0.561181 0.577636 0.564168 0.018007 3 Residual 61.205378 63.0 0.971514 NaN NaN NaN corrs = Neuroticism Extraversion ... Agreeableness Conscientiousness Neuroticism - ... 500 Conscientiousness -0.36801 0.06459 ... 0.15867 - [5 rows x 5 columns] corrs2 = X Y method ... p-unc BF10 power 0 Neuroticism Extraversion pe... 0.059 0.06035 9 Agreeableness Conscientiousness pearson ... 0.00037 31.243 0.94638 [10 rows x 10 columns] self = <pingouin.tests.test_pandas.TestParametric testMethod=test_pandas> ttests = Contrast A B Paired ... p-corr p-adjust BF10 hedges 0 Time August January True .... 4.232 -0.482547 2 Time January June True ... 0.310194 fdr_bh 0.232 -0.169520 [3 rows x 13 columns] tukey = A B mean(A) ... T p-tukey hedges 0 Control Meditation 5.567851 ... -2.289903 0.023202 -0.339918 [1 rows x 9 columns] pingouin/tests/test_pandas.py:114: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.10/site-packages/pandas_flavor/register.py:29: in __call__ return method(self._obj, *args, **kwargs) args = () kwargs = {'method': 'spearman'} method = <function rcorr at 0xbb3880b8> self = <pandas_flavor.register.register_dataframe_method.<locals>.inner.<locals>.AccessorMethod object at 0xa8881f10> pingouin/correlation.py:1050: in rcorr mat = self.corr(method=method).round(decimals) decimals = 3 ffp = <function format_float_positional at 0xc3ab3028> method = 'spearman' padjust = None pearsonr = <function pearsonr at 0xbbb59e38> pval_stars = {0.001: '***', 0.01: '**', 0.05: '*'} self = Neuroticism Extraversion Openness Agreeableness Conscientiousness 0 2.47917 4.20833 3.93750 ...3 3.39583 499 2.54167 3.56250 3.14583 3.45833 2.89583 [500 rows x 5 columns] spearmanr = <function spearmanr at 0xbbb5f388> stars = True tif = <function triu_indices_from at 0xc39efcd0> upper = 'pval' /usr/lib/python3.10/site-packages/pandas/core/frame.py:9376: in corr correl = libalgos.nancorr_spearman(mat, minp=min_periods) cols = Index(['Neuroticism', 'Extraversion', 'Openness', 'Agreeableness', 'Conscientiousness'], dtype='object') idx = Index(['Neuroticism', 'Extraversion', 'Openness', 'Agreeableness', 'Conscientiousness'], dtype='object') mat = array([[2.47917, 4.20833, 3.9375 , 3.95833, 3.45833], [2.60417, 3.1875 , 3.95833, 3.39583, 3.22917], [2.... 3. ], [2.08333, 3.66667, 3.58333, 3.45833, 3.39583], [2.54167, 3.5625 , 3.14583, 3.45833, 2.89583]]) method = 'spearman' min_periods = 1 numeric_df = Neuroticism Extraversion Openness Agreeableness Conscientiousness 0 2.47917 4.20833 3.93750 ...3 3.39583 499 2.54167 3.56250 3.14583 3.45833 2.89583 [500 rows x 5 columns] self = Neuroticism Extraversion Openness Agreeableness Conscientiousness 0 2.47917 4.20833 3.93750 ...3 3.39583 499 2.54167 3.56250 3.14583 3.45833 2.89583 [500 rows x 5 columns] pandas/_libs/algos.pyx:415: in pandas._libs.algos.nancorr_spearman ??? _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > ??? E ValueError: Buffer dtype mismatch, expected 'const intp_t' but got 'long long' pandas/_libs/algos.pyx:938: ValueError ``` On 32-bit Linux platforms, `long long` is normally 64-bit but `intp_t` is 32-bit, which explains what is happening but not why it is happening. I can easily do any tests that are needed on these platforms to try to figure out where the root issue is, but some ideas regarding what to look for would be very helpful.
non_defect
testparametric test pandas fails with dtype mismatch on bit platforms i’m helping to update the python pingouin package in fedora linux one test testparametric test pandas is failing on bit platforms and i can’t easily tell if the actual problem here is in pingouin pandas or somewhere else scipy pandas flavor … failures testparametric test pandas self def test pandas self test pandas method test the anova pandas aov df anova dv scores between group detailed true assert aov equals pg anova dv scores between group detailed true data df df anova dv cholesterol between ss type df anova dv cholesterol between ss type pg pg anova dv cholesterol between data df ss type assert not equals assert round equals pg round test the welch anova pandas aov df welch anova dv scores between group assert aov equals pg welch anova dv scores between group data df test the ancova aov df anc ancova dv scores covar income between method round assert aov equals pg ancova data df anc dv scores covar income between method round test the repeated measures anova pandas aov df rm anova dv scores within time subject subject detailed true assert aov equals pg rm anova dv scores within time subject subject detailed true data df fdr corrected post hocs with hedges g effect size ttests df pairwise ttests dv scores within time subject subject padjust fdr bh effsize hedges assert ttests equals pg pairwise ttests dv scores within time subject subject padjust fdr bh effsize hedges data df pairwise tukey tukey df pairwise tukey dv scores between group assert tukey equals pg pairwise tukey data df dv scores between group test two way mixed anova aov df mixed anova dv scores between group within time subject subject correction false assert aov equals pg mixed anova dv scores between group within time subject subject correction false data df test parwise correlations corrs data pairwise corr columns method spearman pg pairwise corr data data columns method spearman assert corrs equals test partial correlation corrs data partial corr x x y y covar m method spearman pg partial corr x x y y covar m method spearman data data assert corrs equals test partial correlation matrix compare with the ppcor package corrs data iloc pcorr round np testing assert array equal corrs iloc to numpy now compare against pingouin s own partial corr function corrs data pcorr data partial corr x x y y covar m assert np isclose corrs at at test rcorr correlation matrix with p values we compare against pingouin pairwise corr function corrs df corr rcorr padjust holm decimals df corr pairwise corr padjust holm round assert corrs at assert corrs at str at corrs df corr rcorr padjust holm stars false decimals assert corrs at str at round corrs df corr rcorr upper n decimals df corr pairwise corr round assert corrs at at assert corrs at str at method spearman does not work with python on travis instead it seems to return the pearson correlation df corr rcorr method spearman aov source ss f p unc eps group interaction nan source ss df ms f p unc sex residual nan nan nan source ss df ms f p unc sex residual nan nan nan pg source ss df ms f p unc sex residual nan nan nan corrs neuroticism extraversion agreeableness conscientiousness neuroticism conscientiousness x y method p unc power neuroticism extraversion pe agreeableness conscientiousness pearson self ttests contrast a b paired p corr p adjust hedges time august january true time january june true fdr bh tukey a b mean a t p tukey hedges control meditation pingouin tests test pandas py usr lib site packages pandas flavor register py in call return method self obj args kwargs args kwargs method spearman method self inner accessormethod object at pingouin correlation py in rcorr mat self corr method method round decimals decimals ffp method spearman padjust none pearsonr pval stars self neuroticism extraversion openness agreeableness conscientiousness spearmanr stars true tif upper pval usr lib site packages pandas core frame py in corr correl libalgos nancorr spearman mat minp min periods cols index neuroticism extraversion openness agreeableness conscientiousness dtype object idx index neuroticism extraversion openness agreeableness conscientiousness dtype object mat array method spearman min periods numeric df neuroticism extraversion openness agreeableness conscientiousness self neuroticism extraversion openness agreeableness conscientiousness pandas libs algos pyx in pandas libs algos nancorr spearman e valueerror buffer dtype mismatch expected const intp t but got long long pandas libs algos pyx valueerror on bit linux platforms long long is normally bit but intp t is bit which explains what is happening but not why it is happening i can easily do any tests that are needed on these platforms to try to figure out where the root issue is but some ideas regarding what to look for would be very helpful
0
805,036
29,505,939,944
IssuesEvent
2023-06-03 10:06:15
NikkelM/Random-YouTube-Video
https://api.github.com/repos/NikkelM/Random-YouTube-Video
opened
[UI] Adaptive page width for smaller width screens
Priority: Normal UI
Using `@media`, the width of the page can be increased on smaller width screens. Applies to all full-screen pages
1.0
[UI] Adaptive page width for smaller width screens - Using `@media`, the width of the page can be increased on smaller width screens. Applies to all full-screen pages
non_defect
adaptive page width for smaller width screens using media the width of the page can be increased on smaller width screens applies to all full screen pages
0
51,811
3,014,252,020
IssuesEvent
2015-07-29 14:01:08
georgjaehnig/serchilo-drupal
https://api.github.com/repos/georgjaehnig/serchilo-drupal
closed
Calls count should exclude example calls
Priority: should Type: bug
Calculation of shortcut calls count should exclude example calls.
1.0
Calls count should exclude example calls - Calculation of shortcut calls count should exclude example calls.
non_defect
calls count should exclude example calls calculation of shortcut calls count should exclude example calls
0
25,586
4,408,200,424
IssuesEvent
2016-08-12 00:14:42
ophrescue/RescueRails
https://api.github.com/repos/ophrescue/RescueRails
closed
Fix Adoption App Sorting
Defect OPH_Request
Get it to work like Dogs Sorting / Filtering Or Maybe get those Filter Buttons to Work
1.0
Fix Adoption App Sorting - Get it to work like Dogs Sorting / Filtering Or Maybe get those Filter Buttons to Work
defect
fix adoption app sorting get it to work like dogs sorting filtering or maybe get those filter buttons to work
1
38,751
19,533,202,481
IssuesEvent
2021-12-30 21:42:02
openfoodfacts/smooth-app
https://api.github.com/repos/openfoodfacts/smooth-app
closed
Weird wait time while initializing the barcode scanner
scanning performance scan
### What - [ ] Weird wait time while initializing the barcode scanner ### Video https://user-images.githubusercontent.com/1689815/147754415-220b0ae6-84db-4966-8ce6-b1d4084efa20.mp4
True
Weird wait time while initializing the barcode scanner - ### What - [ ] Weird wait time while initializing the barcode scanner ### Video https://user-images.githubusercontent.com/1689815/147754415-220b0ae6-84db-4966-8ce6-b1d4084efa20.mp4
non_defect
weird wait time while initializing the barcode scanner what weird wait time while initializing the barcode scanner video
0
86,614
15,755,697,345
IssuesEvent
2021-03-31 02:14:13
lokesh5654/gittest
https://api.github.com/repos/lokesh5654/gittest
opened
CVE-2020-7751 (High) detected in pathval-1.1.0.tgz
security vulnerability
## CVE-2020-7751 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>pathval-1.1.0.tgz</b></p></summary> <p>Object value retrieval given a string path</p> <p>Library home page: <a href="https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz">https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz</a></p> <p>Path to dependency file: /gittest/package.json</p> <p>Path to vulnerable library: gittest/node_modules/pathval/package.json</p> <p> Dependency Hierarchy: - chai-4.2.0.tgz (Root Library) - :x: **pathval-1.1.0.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> This affects all versions of package pathval. <p>Publish Date: 2020-10-26 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7751>CVE-2020-7751</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.2</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: High - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2020-7751 (High) detected in pathval-1.1.0.tgz - ## CVE-2020-7751 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>pathval-1.1.0.tgz</b></p></summary> <p>Object value retrieval given a string path</p> <p>Library home page: <a href="https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz">https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz</a></p> <p>Path to dependency file: /gittest/package.json</p> <p>Path to vulnerable library: gittest/node_modules/pathval/package.json</p> <p> Dependency Hierarchy: - chai-4.2.0.tgz (Root Library) - :x: **pathval-1.1.0.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> This affects all versions of package pathval. <p>Publish Date: 2020-10-26 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7751>CVE-2020-7751</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.2</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: High - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_defect
cve high detected in pathval tgz cve high severity vulnerability vulnerable library pathval tgz object value retrieval given a string path library home page a href path to dependency file gittest package json path to vulnerable library gittest node modules pathval package json dependency hierarchy chai tgz root library x pathval tgz vulnerable library vulnerability details this affects all versions of package pathval publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required high user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href step up your open source security game with whitesource
0
35,322
7,697,864,863
IssuesEvent
2018-05-18 20:26:57
megandalster/bmac-warehouse
https://api.github.com/repos/megandalster/bmac-warehouse
closed
New shipments -- add a "Preview" button where the weights are calculated by the software
Priority-Medium Type-Defect auto-migrated
``` This should be added to the editShipment.php script, and the button should be at the bottom of the page alongside the "Save" button. See the revised shipment form in Figure 24 of the design document. Also on that form, notice the "Add More" button, where the user can add more products to the shipment. ``` Original issue reported on code.google.com by `al...@bowdoin.edu` on 9 Mar 2015 at 8:47
1.0
New shipments -- add a "Preview" button where the weights are calculated by the software - ``` This should be added to the editShipment.php script, and the button should be at the bottom of the page alongside the "Save" button. See the revised shipment form in Figure 24 of the design document. Also on that form, notice the "Add More" button, where the user can add more products to the shipment. ``` Original issue reported on code.google.com by `al...@bowdoin.edu` on 9 Mar 2015 at 8:47
defect
new shipments add a preview button where the weights are calculated by the software this should be added to the editshipment php script and the button should be at the bottom of the page alongside the save button see the revised shipment form in figure of the design document also on that form notice the add more button where the user can add more products to the shipment original issue reported on code google com by al bowdoin edu on mar at
1