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
855
labels
stringlengths
4
721
body
stringlengths
1
261k
index
stringclasses
13 values
text_combine
stringlengths
96
261k
label
stringclasses
2 values
text
stringlengths
96
240k
binary_label
int64
0
1
651,499
21,481,218,352
IssuesEvent
2022-04-26 17:56:18
Marco-Sulla/python-frozendict
https://api.github.com/repos/Marco-Sulla/python-frozendict
closed
[BUG] Memory leak in __hash__()
bug Priority High
Welcome! You should write in your Bug Report: I found a case where `frozendict` does not free memory. The old v1 implementation does free memory in this situation. OS version (https://www.google.com/search?channel=fs&q=check+os+version&ie=utf-8&oe=utf-8): your OS version ``` $ uname -r 3.10.0-1160.59.1.el7.x86_64 ``` Python3 version (python3 -V -V): your Python version 3.7.6 Steps to reproduce: ```py import resource import frozendict print("frozendict version:", frozendict.__version__) print() c = 0 while True: mapping = {} fz = frozendict.frozendict({i: i for i in range(1000)}) none = mapping.setdefault(fz, None) if (c % 10000) == 0: max_rss = resource.getrusage(resource.RUSAGE_SELF).ru_maxrss print(f"iteration: {c}, max rss: {max_rss} kb") c += 1 ``` Actual result (with the python stack trace if present): the result you see ``` frozendict version: 2.3.0 iteration: 0, max rss: 32196 kb iteration: 10000, max rss: 1793552 kb iteration: 20000, max rss: 3554452 kb iteration: 30000, max rss: 5315972 kb iteration: 40000, max rss: 7076784 kb iteration: 50000, max rss: 8838472 kb ``` Note that this will use up memory rather fast on your machine.
1.0
[BUG] Memory leak in __hash__() - Welcome! You should write in your Bug Report: I found a case where `frozendict` does not free memory. The old v1 implementation does free memory in this situation. OS version (https://www.google.com/search?channel=fs&q=check+os+version&ie=utf-8&oe=utf-8): your OS version ``` $ uname -r 3.10.0-1160.59.1.el7.x86_64 ``` Python3 version (python3 -V -V): your Python version 3.7.6 Steps to reproduce: ```py import resource import frozendict print("frozendict version:", frozendict.__version__) print() c = 0 while True: mapping = {} fz = frozendict.frozendict({i: i for i in range(1000)}) none = mapping.setdefault(fz, None) if (c % 10000) == 0: max_rss = resource.getrusage(resource.RUSAGE_SELF).ru_maxrss print(f"iteration: {c}, max rss: {max_rss} kb") c += 1 ``` Actual result (with the python stack trace if present): the result you see ``` frozendict version: 2.3.0 iteration: 0, max rss: 32196 kb iteration: 10000, max rss: 1793552 kb iteration: 20000, max rss: 3554452 kb iteration: 30000, max rss: 5315972 kb iteration: 40000, max rss: 7076784 kb iteration: 50000, max rss: 8838472 kb ``` Note that this will use up memory rather fast on your machine.
priority
memory leak in hash welcome you should write in your bug report i found a case where frozendict does not free memory the old implementation does free memory in this situation os version your os version uname r version v v your python version steps to reproduce py import resource import frozendict print frozendict version frozendict version print c while true mapping fz frozendict frozendict i i for i in range none mapping setdefault fz none if c max rss resource getrusage resource rusage self ru maxrss print f iteration c max rss max rss kb c actual result with the python stack trace if present the result you see frozendict version iteration max rss kb iteration max rss kb iteration max rss kb iteration max rss kb iteration max rss kb iteration max rss kb note that this will use up memory rather fast on your machine
1
331,251
10,062,796,494
IssuesEvent
2019-07-23 02:47:43
siddhi-io/siddhi
https://api.github.com/repos/siddhi-io/siddhi
closed
Cache & Bloom Filter support for Siddhi event store
priority/high type/new-feature
**Description:** There is no caching support is available for Siddhi store implementation (specifically for RDBMS stores). It would be really handy and helpful for various use cases if we have a caching approach. Bloom Filter would be helpful to avoid unnecessary IO calls when it comes to external store implementation (eg: RDBMS store). This will helpfull for definitely not in set cases. **Affected Siddhi Version:** v5.x.x
1.0
Cache & Bloom Filter support for Siddhi event store - **Description:** There is no caching support is available for Siddhi store implementation (specifically for RDBMS stores). It would be really handy and helpful for various use cases if we have a caching approach. Bloom Filter would be helpful to avoid unnecessary IO calls when it comes to external store implementation (eg: RDBMS store). This will helpfull for definitely not in set cases. **Affected Siddhi Version:** v5.x.x
priority
cache bloom filter support for siddhi event store description there is no caching support is available for siddhi store implementation specifically for rdbms stores it would be really handy and helpful for various use cases if we have a caching approach bloom filter would be helpful to avoid unnecessary io calls when it comes to external store implementation eg rdbms store this will helpfull for definitely not in set cases affected siddhi version x x
1
183,189
6,678,159,710
IssuesEvent
2017-10-05 13:23:15
pytorch/pytorch
https://api.github.com/repos/pytorch/pytorch
closed
import error
dependency bug high priority
i install the pytorch successfully, but when i import it, error happened.the error is: >import torch Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/local/lib/python3.6/site-packages/torch/__init__.py", line 53, in <module> from torch._C import * ImportError: dlopen(/usr/local/lib/python3.6/site-packages/torch/_C.cpython-36m-darwin.so, 10): Symbol not found: _PySlice_AdjustIndices Referenced from: /usr/local/lib/python3.6/site-packages/torch/_C.cpython-36m-darwin.so Expected in: flat namespace in /usr/local/lib/python3.6/site-packages/torch/_C.cpython-36m-darwin.so ps: macOS10.12 python3.6 pytorch0.1.12 i even install in ubuntu17.04, but still failure.
1.0
import error - i install the pytorch successfully, but when i import it, error happened.the error is: >import torch Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/local/lib/python3.6/site-packages/torch/__init__.py", line 53, in <module> from torch._C import * ImportError: dlopen(/usr/local/lib/python3.6/site-packages/torch/_C.cpython-36m-darwin.so, 10): Symbol not found: _PySlice_AdjustIndices Referenced from: /usr/local/lib/python3.6/site-packages/torch/_C.cpython-36m-darwin.so Expected in: flat namespace in /usr/local/lib/python3.6/site-packages/torch/_C.cpython-36m-darwin.so ps: macOS10.12 python3.6 pytorch0.1.12 i even install in ubuntu17.04, but still failure.
priority
import error i install the pytorch successfully but when i import it error happened the error is import torch traceback most recent call last file line in file usr local lib site packages torch init py line in from torch c import importerror dlopen usr local lib site packages torch c cpython darwin so symbol not found pyslice adjustindices referenced from usr local lib site packages torch c cpython darwin so expected in flat namespace in usr local lib site packages torch c cpython darwin so ps i even install in but still failure
1
816,621
30,604,787,384
IssuesEvent
2023-07-22 21:38:16
Haidoe/arc
https://api.github.com/repos/Haidoe/arc
closed
Missing flows: Forgot Password and Create an account
priority-high style fix
## Bug Report **Reporter: ❗️** @StephanyJade **Describe the bug: ❗️** The Forgot Password and Create and account CTA in the login page are not working, therefore I couldn’t test the flow. **Steps to reproduce: ❗️** 1. Click on Forgot Password 2. Click on Don't have an account? Create one **Screenshots or Video** <img width="478" alt="image" src="https://github.com/Haidoe/arc/assets/128421316/a0267de4-0d8c-44cf-a234-aa79654b454a"> **Expected behavior: ❗️** Each CTA should open their corresponding flow. **Actual behavior: ❗️** CTAs are disable. **Additional context:** Please add the underline to indicate hyperlinks. Design reference: <img width="530" alt="image" src="https://github.com/Haidoe/arc/assets/128421316/f196e1da-bb3f-4362-b711-6f00c7aa20cf"> **Follow up checklist: ❗️** - [ ] Add Assignee - [x] Label priority ( priority-low, priority-medium, priority-high ) - [ ] Label Milestone ( Alpha, Beta ) - [x] Label Issue Type ( Style, Code, API )
1.0
Missing flows: Forgot Password and Create an account - ## Bug Report **Reporter: ❗️** @StephanyJade **Describe the bug: ❗️** The Forgot Password and Create and account CTA in the login page are not working, therefore I couldn’t test the flow. **Steps to reproduce: ❗️** 1. Click on Forgot Password 2. Click on Don't have an account? Create one **Screenshots or Video** <img width="478" alt="image" src="https://github.com/Haidoe/arc/assets/128421316/a0267de4-0d8c-44cf-a234-aa79654b454a"> **Expected behavior: ❗️** Each CTA should open their corresponding flow. **Actual behavior: ❗️** CTAs are disable. **Additional context:** Please add the underline to indicate hyperlinks. Design reference: <img width="530" alt="image" src="https://github.com/Haidoe/arc/assets/128421316/f196e1da-bb3f-4362-b711-6f00c7aa20cf"> **Follow up checklist: ❗️** - [ ] Add Assignee - [x] Label priority ( priority-low, priority-medium, priority-high ) - [ ] Label Milestone ( Alpha, Beta ) - [x] Label Issue Type ( Style, Code, API )
priority
missing flows forgot password and create an account bug report reporter ❗️ stephanyjade describe the bug ❗️ the forgot password and create and account cta in the login page are not working therefore i couldn’t test the flow steps to reproduce ❗️ click on forgot password click on don t have an account create one screenshots or video img width alt image src expected behavior ❗️ each cta should open their corresponding flow actual behavior ❗️ ctas are disable additional context please add the underline to indicate hyperlinks design reference img width alt image src follow up checklist ❗️ add assignee label priority priority low priority medium priority high label milestone alpha beta label issue type style code api
1
154,502
5,919,983,807
IssuesEvent
2017-05-22 19:06:08
metasfresh/metasfresh-webui-frontend
https://api.github.com/repos/metasfresh/metasfresh-webui-frontend
opened
Yellow pulse effect w/o data change
priority:high type:bug
### Type of issue Bug ### Current behavior When initially open a record in any window then the included tabs rows have the yellow pulse effect, although no data is changed. ### Expected behavior Shall only have yellow pulse effect when data has been changed. ### Steps to reproduce Open the sales window initially in main view. Can also easily be reproduced in any window when pressing refresh button. ![image](https://cloud.githubusercontent.com/assets/13365687/26324267/635c33da-3f32-11e7-9465-c9b2efa1c4b4.png)
1.0
Yellow pulse effect w/o data change - ### Type of issue Bug ### Current behavior When initially open a record in any window then the included tabs rows have the yellow pulse effect, although no data is changed. ### Expected behavior Shall only have yellow pulse effect when data has been changed. ### Steps to reproduce Open the sales window initially in main view. Can also easily be reproduced in any window when pressing refresh button. ![image](https://cloud.githubusercontent.com/assets/13365687/26324267/635c33da-3f32-11e7-9465-c9b2efa1c4b4.png)
priority
yellow pulse effect w o data change type of issue bug current behavior when initially open a record in any window then the included tabs rows have the yellow pulse effect although no data is changed expected behavior shall only have yellow pulse effect when data has been changed steps to reproduce open the sales window initially in main view can also easily be reproduced in any window when pressing refresh button
1
207,601
7,131,579,370
IssuesEvent
2018-01-22 11:32:00
wso2/product-apim
https://api.github.com/repos/wso2/product-apim
closed
Sample-scenarios: document gives running instructions to a location inside the pack
2.2.0 Priority/Highest Type/Docs
In [1] it states the following ``` Running the sample to populate the sample data Start the wso2am-2.2.0-updateX distribution. Go to <API-M_HOME>/sample-scenarios. Execute the run.sh file. Enter the scenario number as 1, when prompted. ``` But from wso2am-2.1.0-update6 pack the sample-scenarios location is not there inside the pack. Please direct to the correct location where the sample can be accessed from. [1] https://docs.wso2.com/display/AM2xx/Managing+Public%2C+Partner+vs+Private+APIs+Sample+Documentation
1.0
Sample-scenarios: document gives running instructions to a location inside the pack - In [1] it states the following ``` Running the sample to populate the sample data Start the wso2am-2.2.0-updateX distribution. Go to <API-M_HOME>/sample-scenarios. Execute the run.sh file. Enter the scenario number as 1, when prompted. ``` But from wso2am-2.1.0-update6 pack the sample-scenarios location is not there inside the pack. Please direct to the correct location where the sample can be accessed from. [1] https://docs.wso2.com/display/AM2xx/Managing+Public%2C+Partner+vs+Private+APIs+Sample+Documentation
priority
sample scenarios document gives running instructions to a location inside the pack in it states the following running the sample to populate the sample data start the updatex distribution go to sample scenarios execute the run sh file enter the scenario number as when prompted but from pack the sample scenarios location is not there inside the pack please direct to the correct location where the sample can be accessed from
1
220,635
7,369,315,292
IssuesEvent
2018-03-13 02:01:17
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
Single player worlds with "allow friends to join" have maxslots set to 1
High Priority
I think I may have caused this - will look into it.
1.0
Single player worlds with "allow friends to join" have maxslots set to 1 - I think I may have caused this - will look into it.
priority
single player worlds with allow friends to join have maxslots set to i think i may have caused this will look into it
1
245,935
7,892,921,408
IssuesEvent
2018-06-28 16:20:42
Dallas-Makerspace/tracker
https://api.github.com/repos/Dallas-Makerspace/tracker
closed
LDAP Open to public internet
Priority/HIGH bug
## Expected Behavior Active Directory servers secured ## Actual Behavior Shodan crawled physical.dallasmakerspace.org and documented 636 as open along with publishing internal ip space from prdc1's certificate ## Steps to Reproduce the Problem 1. visit https://www.shodan.io/host/47.190.37.3#636 1. `nmap -p 636 physical.dallasmakerspace.org` on any machine external of dms.local ## Specifications (The version of the project, operating system, hardware etc.)
1.0
LDAP Open to public internet - ## Expected Behavior Active Directory servers secured ## Actual Behavior Shodan crawled physical.dallasmakerspace.org and documented 636 as open along with publishing internal ip space from prdc1's certificate ## Steps to Reproduce the Problem 1. visit https://www.shodan.io/host/47.190.37.3#636 1. `nmap -p 636 physical.dallasmakerspace.org` on any machine external of dms.local ## Specifications (The version of the project, operating system, hardware etc.)
priority
ldap open to public internet expected behavior active directory servers secured actual behavior shodan crawled physical dallasmakerspace org and documented as open along with publishing internal ip space from s certificate steps to reproduce the problem visit nmap p physical dallasmakerspace org on any machine external of dms local specifications the version of the project operating system hardware etc
1
641,104
20,818,204,048
IssuesEvent
2022-03-18 12:48:45
vignetteapp/vignette-web
https://api.github.com/repos/vignetteapp/vignette-web
closed
Blog Page
enhancement priority:high
We have noticed the amount of interest the project has getting so it is of importance that we must have a way to communicate our updates in a lengthy and monthly manner. The blog page can use the layout from Casper, Ghost CMS's default theme, to ease implementation.
1.0
Blog Page - We have noticed the amount of interest the project has getting so it is of importance that we must have a way to communicate our updates in a lengthy and monthly manner. The blog page can use the layout from Casper, Ghost CMS's default theme, to ease implementation.
priority
blog page we have noticed the amount of interest the project has getting so it is of importance that we must have a way to communicate our updates in a lengthy and monthly manner the blog page can use the layout from casper ghost cms s default theme to ease implementation
1
323,673
9,873,136,772
IssuesEvent
2019-06-22 11:39:35
nimona/go-nimona
https://api.github.com/repos/nimona/go-nimona
opened
Implement client
Priority: High
Implement a client package that exposes a simplified version of the nimona internals for application developers. - [ ] Create new client - [ ] Identities - [ ] Attach - [ ] Exchange - [ ] Send - [ ] Handle - [ ] Graph - [ ] Subscribe - [ ] Sync - [ ] Put - [ ] Get - [ ] Aggregate - [ ] Subscribe - [ ] Append - [ ] Get
1.0
Implement client - Implement a client package that exposes a simplified version of the nimona internals for application developers. - [ ] Create new client - [ ] Identities - [ ] Attach - [ ] Exchange - [ ] Send - [ ] Handle - [ ] Graph - [ ] Subscribe - [ ] Sync - [ ] Put - [ ] Get - [ ] Aggregate - [ ] Subscribe - [ ] Append - [ ] Get
priority
implement client implement a client package that exposes a simplified version of the nimona internals for application developers create new client identities attach exchange send handle graph subscribe sync put get aggregate subscribe append get
1
648,683
21,192,004,209
IssuesEvent
2022-04-08 18:33:51
paleobot/pbot-dev
https://api.github.com/repos/paleobot/pbot-dev
closed
Support for user groups
enhancement high priority
We've already spec'd this out in detail, but in short there will be a User Group node class (specific name TBD). All other nodes will be attached to at least one User Group. Of special note is the `Public` user group, which has some special characteristics: 1) once made public cannot be made unpublic; 2) once made public cannot be deleted from database (only soft deleted); 3) version history is reset upon being made public. See #33 and #32
1.0
Support for user groups - We've already spec'd this out in detail, but in short there will be a User Group node class (specific name TBD). All other nodes will be attached to at least one User Group. Of special note is the `Public` user group, which has some special characteristics: 1) once made public cannot be made unpublic; 2) once made public cannot be deleted from database (only soft deleted); 3) version history is reset upon being made public. See #33 and #32
priority
support for user groups we ve already spec d this out in detail but in short there will be a user group node class specific name tbd all other nodes will be attached to at least one user group of special note is the public user group which has some special characteristics once made public cannot be made unpublic once made public cannot be deleted from database only soft deleted version history is reset upon being made public see and
1
611,737
18,976,224,932
IssuesEvent
2021-11-20 02:46:39
cse110-fa21-group2/cse110-fa21-group2
https://api.github.com/repos/cse110-fa21-group2/cse110-fa21-group2
opened
[IMPLEMENT] main.js - Populate saved recipes from localStorage on initial app load
high priority 5 points
# Feature Name main.js - Populate saved recipes from localStorage on initial app load # User Story Our users would like to be able to access their saved recipes Details: - Fetch saved recipe cards from localstorage - navigate to saved recipe page - add save button action to every card and page to update the saved recipe page so we don't have to handle it when we open the page
1.0
[IMPLEMENT] main.js - Populate saved recipes from localStorage on initial app load - # Feature Name main.js - Populate saved recipes from localStorage on initial app load # User Story Our users would like to be able to access their saved recipes Details: - Fetch saved recipe cards from localstorage - navigate to saved recipe page - add save button action to every card and page to update the saved recipe page so we don't have to handle it when we open the page
priority
main js populate saved recipes from localstorage on initial app load feature name main js populate saved recipes from localstorage on initial app load user story our users would like to be able to access their saved recipes details fetch saved recipe cards from localstorage navigate to saved recipe page add save button action to every card and page to update the saved recipe page so we don t have to handle it when we open the page
1
48,406
2,998,140,412
IssuesEvent
2015-07-23 12:29:49
jayway/powermock
https://api.github.com/repos/jayway/powermock
closed
Mocking fails if class is not public or protected when doing signed mocking.
bug imported Milestone-Release1.0 Priority-High
_From [johan.ha...@gmail.com](https://code.google.com/u/105676376875942041029/) on October 23, 2008 11:31:21_ When doing signed mocking we change the package name from x.y.z to powermock.x.y.z. CGLib then fails to create a mock if the class to mock is neither public or protected. An easy solution would be to change the visibility of all classes loaded by our classloader to public. _Original issue: http://code.google.com/p/powermock/issues/detail?id=32_
1.0
Mocking fails if class is not public or protected when doing signed mocking. - _From [johan.ha...@gmail.com](https://code.google.com/u/105676376875942041029/) on October 23, 2008 11:31:21_ When doing signed mocking we change the package name from x.y.z to powermock.x.y.z. CGLib then fails to create a mock if the class to mock is neither public or protected. An easy solution would be to change the visibility of all classes loaded by our classloader to public. _Original issue: http://code.google.com/p/powermock/issues/detail?id=32_
priority
mocking fails if class is not public or protected when doing signed mocking from on october when doing signed mocking we change the package name from x y z to powermock x y z cglib then fails to create a mock if the class to mock is neither public or protected an easy solution would be to change the visibility of all classes loaded by our classloader to public original issue
1
11,367
2,610,115,393
IssuesEvent
2015-02-26 18:35:47
chrsmith/scribefire-chrome
https://api.github.com/repos/chrsmith/scribefire-chrome
closed
Drupal support
auto-migrated Milestone-1.2 Priority-High Type-Enhancement
``` Hi! I love Scribefire for Firefox. But I want to move my browsing to Safari. Am I missing something? I can't see how to configure the Safari extension to work with a Drupal blog. ``` ----- Original issue reported on code.google.com by `robert%r...@gtempaccount.com` on 1 Jul 2010 at 11:00
1.0
Drupal support - ``` Hi! I love Scribefire for Firefox. But I want to move my browsing to Safari. Am I missing something? I can't see how to configure the Safari extension to work with a Drupal blog. ``` ----- Original issue reported on code.google.com by `robert%r...@gtempaccount.com` on 1 Jul 2010 at 11:00
priority
drupal support hi i love scribefire for firefox but i want to move my browsing to safari am i missing something i can t see how to configure the safari extension to work with a drupal blog original issue reported on code google com by robert r gtempaccount com on jul at
1
206,260
7,110,953,891
IssuesEvent
2018-01-17 12:36:05
spring-projects/spring-boot
https://api.github.com/repos/spring-projects/spring-boot
closed
Ensure that incubating Gradle API is not part of any of the Gradle plugin's public API
priority: high type: enhancement
The problem can be observed when build info generation is enabled. Sample build script to reproduce the warning: ```gradle buildscript { repositories { mavenCentral() maven { url 'https://repo.spring.io/milestone/' } } dependencies { classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.0.0.M7' } } apply plugin: 'org.springframework.boot' springBoot { buildInfo() } ``` The warning itself: ```shell $ ./gradlew projects --warning-mode=all > Configure project : The property(Class) method has been deprecated and is scheduled to be removed in Gradle 5.0. Please use the ObjectFactory.property(Class) method instead. at build_74a8d8t7twxo4kla2mf7jb5h1$_run_closure1.doCall(/home/vedran/dev/projects/gradle-sample/build.gradle:14) (Run with --stacktrace to get the full stack trace of this deprecation warning.) > Task :projects ------------------------------------------------------------ Root project ------------------------------------------------------------ Root project 'gradle-sample' No sub-projects To see a list of the tasks of a project, run gradlew <project-path>:tasks For example, try running gradlew :tasks BUILD SUCCESSFUL in 0s 1 actionable task: 1 executed ```
1.0
Ensure that incubating Gradle API is not part of any of the Gradle plugin's public API - The problem can be observed when build info generation is enabled. Sample build script to reproduce the warning: ```gradle buildscript { repositories { mavenCentral() maven { url 'https://repo.spring.io/milestone/' } } dependencies { classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.0.0.M7' } } apply plugin: 'org.springframework.boot' springBoot { buildInfo() } ``` The warning itself: ```shell $ ./gradlew projects --warning-mode=all > Configure project : The property(Class) method has been deprecated and is scheduled to be removed in Gradle 5.0. Please use the ObjectFactory.property(Class) method instead. at build_74a8d8t7twxo4kla2mf7jb5h1$_run_closure1.doCall(/home/vedran/dev/projects/gradle-sample/build.gradle:14) (Run with --stacktrace to get the full stack trace of this deprecation warning.) > Task :projects ------------------------------------------------------------ Root project ------------------------------------------------------------ Root project 'gradle-sample' No sub-projects To see a list of the tasks of a project, run gradlew <project-path>:tasks For example, try running gradlew :tasks BUILD SUCCESSFUL in 0s 1 actionable task: 1 executed ```
priority
ensure that incubating gradle api is not part of any of the gradle plugin s public api the problem can be observed when build info generation is enabled sample build script to reproduce the warning gradle buildscript repositories mavencentral maven url dependencies classpath org springframework boot spring boot gradle plugin apply plugin org springframework boot springboot buildinfo the warning itself shell gradlew projects warning mode all configure project the property class method has been deprecated and is scheduled to be removed in gradle please use the objectfactory property class method instead at build run docall home vedran dev projects gradle sample build gradle run with stacktrace to get the full stack trace of this deprecation warning task projects root project root project gradle sample no sub projects to see a list of the tasks of a project run gradlew tasks for example try running gradlew tasks build successful in actionable task executed
1
298,031
9,194,972,314
IssuesEvent
2019-03-07 00:25:23
QuantEcon/lecture-source-jl
https://api.github.com/repos/QuantEcon/lecture-source-jl
closed
Link Editing
high-priority
@XiaojunGuan You'll see that the RST files have been reorganized into subdirectories within the umbrella RST directory. We've updated all the links that cross directories, i.e. ``` `link text <../some_dir/foo>` ``` But we also need to adopt this structure for links to files in the same directory. That is, every document link should be of the form above. **Note** that this only applies to document links (i.e., `:doc:` tags), and not references which trickle up from toctrees (i.e., `:ref:`). Also note that sphinx won't work unless you update to the latest (if you want to `make jupyter`, but I don't think that's required). Same workflow as usual --- check out a branch, work in PR, etc. Let me know if I left anything unclear.
1.0
Link Editing - @XiaojunGuan You'll see that the RST files have been reorganized into subdirectories within the umbrella RST directory. We've updated all the links that cross directories, i.e. ``` `link text <../some_dir/foo>` ``` But we also need to adopt this structure for links to files in the same directory. That is, every document link should be of the form above. **Note** that this only applies to document links (i.e., `:doc:` tags), and not references which trickle up from toctrees (i.e., `:ref:`). Also note that sphinx won't work unless you update to the latest (if you want to `make jupyter`, but I don't think that's required). Same workflow as usual --- check out a branch, work in PR, etc. Let me know if I left anything unclear.
priority
link editing xiaojunguan you ll see that the rst files have been reorganized into subdirectories within the umbrella rst directory we ve updated all the links that cross directories i e link text but we also need to adopt this structure for links to files in the same directory that is every document link should be of the form above note that this only applies to document links i e doc tags and not references which trickle up from toctrees i e ref also note that sphinx won t work unless you update to the latest if you want to make jupyter but i don t think that s required same workflow as usual check out a branch work in pr etc let me know if i left anything unclear
1
384,959
11,406,464,863
IssuesEvent
2020-01-31 14:22:34
chocolatey/chocolatey.org
https://api.github.com/repos/chocolatey/chocolatey.org
closed
JS errors on Install and Verify Package pages
2 - Working Bug Priority_HIGH
### What You Are Seeing? On both the Verify Package (step 2 of uploading a package) page and on the Install page, there is a JS error of `'querySelectorAll' of undefined`. On the Install page, this is causing the install steps area not to work, where users type in their URL of choice and it is inserted into the correct area of the designated install script below. ### What is Expected? I would expect these 2 pages not to have JS errors and for all to be working as it should. ### How Did You Get This To Happen? (Steps to Reproduce) 1. Visit https://chocolatey.org/install 2. Open up developer tools and notice the JS error 3. Type a URL in into Step 4, and notice it does not change in the designated install scripts area.
1.0
JS errors on Install and Verify Package pages - ### What You Are Seeing? On both the Verify Package (step 2 of uploading a package) page and on the Install page, there is a JS error of `'querySelectorAll' of undefined`. On the Install page, this is causing the install steps area not to work, where users type in their URL of choice and it is inserted into the correct area of the designated install script below. ### What is Expected? I would expect these 2 pages not to have JS errors and for all to be working as it should. ### How Did You Get This To Happen? (Steps to Reproduce) 1. Visit https://chocolatey.org/install 2. Open up developer tools and notice the JS error 3. Type a URL in into Step 4, and notice it does not change in the designated install scripts area.
priority
js errors on install and verify package pages what you are seeing on both the verify package step of uploading a package page and on the install page there is a js error of queryselectorall of undefined on the install page this is causing the install steps area not to work where users type in their url of choice and it is inserted into the correct area of the designated install script below what is expected i would expect these pages not to have js errors and for all to be working as it should how did you get this to happen steps to reproduce visit open up developer tools and notice the js error type a url in into step and notice it does not change in the designated install scripts area
1
168,281
6,368,349,786
IssuesEvent
2017-08-01 09:01:38
vmware/harbor
https://api.github.com/repos/vmware/harbor
closed
404 on 443 port when deployed with .ova
area/ui priority/high target/1.2.0
The guys working on .ova suggest we should redirect or render a message, otherwise it will confuse the user upgraded from 1.1.x @steven-zou I think you mentioned this right? I couldn't find the issue, so opening this one to track this part of the work.
1.0
404 on 443 port when deployed with .ova - The guys working on .ova suggest we should redirect or render a message, otherwise it will confuse the user upgraded from 1.1.x @steven-zou I think you mentioned this right? I couldn't find the issue, so opening this one to track this part of the work.
priority
on port when deployed with ova the guys working on ova suggest we should redirect or render a message otherwise it will confuse the user upgraded from x steven zou i think you mentioned this right i couldn t find the issue so opening this one to track this part of the work
1
242,270
7,840,310,245
IssuesEvent
2018-06-18 15:58:59
OpenNebula/one
https://api.github.com/repos/OpenNebula/one
closed
Add support for RX queues for virt-io NICS
Category: Core & System Category: Drivers - Network Category: Sunstone Priority: High Sponsored Status: Accepted Type: Feature
# Enhancement Request ## Description <!-- Brief description of the new functionality --> This issue is to add support for NIC queues. This is supported for 'virtio' driver, [more information here](https://libvirt.org/formatdomain.html#elementsDriverBackendOptions). It needs to add (only for model `virtio`): `<driver name='vhost' queues='5'/>` ## Use case <!-- How are you going to use this new feature? --> <!-- Why do you need it? --> Improve latency on guests ## Interface Changes <!-- Describe any changed to current interfaces --> <!-- incluing Sunstone, CLI or/and API --> New attribute for NIC: `NIC = [ NETWORK = "My net", VIRTIO_QUEUES=5 ]` Future support for other driver tunables will use that namespace VIRTIO_ Suntone Interface needs to expose this parameter. **IMPORTANT** This should be supported also for attach nics. <!--////////////////////////////////////////////--> <!-- THIS SECTION IS FOR THE DEVELOPMENT TEAM --> <!-- BOTH FOR BUGS AND ENHANCEMENT REQUESTS --> <!-- PROGRESS WILL BE REFLECTED HERE --> <!--////////////////////////////////////////////--> # Progress Status - [ ] Branch created - [ ] Code committed to development branch - [ ] Testing - QA - [ ] Documentation - [ ] Release notes - resolved issues, compatibility, known issues - [ ] Code committed to upstream release/hotfix branches - [ ] Documentation committed to upstream release/hotfix branches
1.0
Add support for RX queues for virt-io NICS - # Enhancement Request ## Description <!-- Brief description of the new functionality --> This issue is to add support for NIC queues. This is supported for 'virtio' driver, [more information here](https://libvirt.org/formatdomain.html#elementsDriverBackendOptions). It needs to add (only for model `virtio`): `<driver name='vhost' queues='5'/>` ## Use case <!-- How are you going to use this new feature? --> <!-- Why do you need it? --> Improve latency on guests ## Interface Changes <!-- Describe any changed to current interfaces --> <!-- incluing Sunstone, CLI or/and API --> New attribute for NIC: `NIC = [ NETWORK = "My net", VIRTIO_QUEUES=5 ]` Future support for other driver tunables will use that namespace VIRTIO_ Suntone Interface needs to expose this parameter. **IMPORTANT** This should be supported also for attach nics. <!--////////////////////////////////////////////--> <!-- THIS SECTION IS FOR THE DEVELOPMENT TEAM --> <!-- BOTH FOR BUGS AND ENHANCEMENT REQUESTS --> <!-- PROGRESS WILL BE REFLECTED HERE --> <!--////////////////////////////////////////////--> # Progress Status - [ ] Branch created - [ ] Code committed to development branch - [ ] Testing - QA - [ ] Documentation - [ ] Release notes - resolved issues, compatibility, known issues - [ ] Code committed to upstream release/hotfix branches - [ ] Documentation committed to upstream release/hotfix branches
priority
add support for rx queues for virt io nics enhancement request description this issue is to add support for nic queues this is supported for virtio driver it needs to add only for model virtio use case improve latency on guests interface changes new attribute for nic nic future support for other driver tunables will use that namespace virtio suntone interface needs to expose this parameter important this should be supported also for attach nics progress status branch created code committed to development branch testing qa documentation release notes resolved issues compatibility known issues code committed to upstream release hotfix branches documentation committed to upstream release hotfix branches
1
134,416
5,226,099,169
IssuesEvent
2017-01-27 20:16:50
magnolo/newhere
https://api.github.com/repos/magnolo/newhere
closed
New users cannot login after verification
bug high priority NGO
An NGO makes a new user account, we verify it (switch on in CMS), but then they can't login. When they try to login, the following error message shows: "Your account has not been verified. Did you get mail?" ![picture device independent bitmap 1](https://cloud.githubusercontent.com/assets/22840489/21008126/a1699600-bd40-11e6-8366-6ee63ecf0094.jpg) Ideally no error message would show and they would be able to log in as normal. We can all login as normal with our accounts, but any new account holders not. Our translators can also login and their accounts were made relatively recently - therefore, maybe this has something to do with the different rights allocation e.g. user, admin, etc. Safari + 10.12.1 Mac OS
1.0
New users cannot login after verification - An NGO makes a new user account, we verify it (switch on in CMS), but then they can't login. When they try to login, the following error message shows: "Your account has not been verified. Did you get mail?" ![picture device independent bitmap 1](https://cloud.githubusercontent.com/assets/22840489/21008126/a1699600-bd40-11e6-8366-6ee63ecf0094.jpg) Ideally no error message would show and they would be able to log in as normal. We can all login as normal with our accounts, but any new account holders not. Our translators can also login and their accounts were made relatively recently - therefore, maybe this has something to do with the different rights allocation e.g. user, admin, etc. Safari + 10.12.1 Mac OS
priority
new users cannot login after verification an ngo makes a new user account we verify it switch on in cms but then they can t login when they try to login the following error message shows your account has not been verified did you get mail ideally no error message would show and they would be able to log in as normal we can all login as normal with our accounts but any new account holders not our translators can also login and their accounts were made relatively recently therefore maybe this has something to do with the different rights allocation e g user admin etc safari mac os
1
347,435
10,430,110,631
IssuesEvent
2019-09-17 05:40:37
HSBNE/hsbneportal
https://api.github.com/repos/HSBNE/hsbneportal
closed
Meeting and Cause Proxies
enhancement high priority
One feature I've been asked for a bit is for members to be able to record proxies against meetings online so they don't have to fill out the email proforma. If members could do this while logged into the portal that would validate their identity and recording it online as well as sending an email to the secretary as per our incorporation rules would be brilliant. This will likely also require the implementation of a calendar that records meetings and whether they're general or attached to a cause. I put together a framework of this a while back at https://porthack.hsbne.org/members/proxy/sendproxy.php but well, it does nothing except look nice right now.
1.0
Meeting and Cause Proxies - One feature I've been asked for a bit is for members to be able to record proxies against meetings online so they don't have to fill out the email proforma. If members could do this while logged into the portal that would validate their identity and recording it online as well as sending an email to the secretary as per our incorporation rules would be brilliant. This will likely also require the implementation of a calendar that records meetings and whether they're general or attached to a cause. I put together a framework of this a while back at https://porthack.hsbne.org/members/proxy/sendproxy.php but well, it does nothing except look nice right now.
priority
meeting and cause proxies one feature i ve been asked for a bit is for members to be able to record proxies against meetings online so they don t have to fill out the email proforma if members could do this while logged into the portal that would validate their identity and recording it online as well as sending an email to the secretary as per our incorporation rules would be brilliant this will likely also require the implementation of a calendar that records meetings and whether they re general or attached to a cause i put together a framework of this a while back at but well it does nothing except look nice right now
1
722,485
24,864,112,380
IssuesEvent
2022-10-27 10:31:16
AY2223S1-CS2113-F11-4/tp
https://api.github.com/repos/AY2223S1-CS2113-F11-4/tp
closed
Ensure Unique IDs
type.Task priority.High
- When creating a new Patient, ensure that there isn't an existing patient in the system with the same ID
1.0
Ensure Unique IDs - - When creating a new Patient, ensure that there isn't an existing patient in the system with the same ID
priority
ensure unique ids when creating a new patient ensure that there isn t an existing patient in the system with the same id
1
783,510
27,534,662,259
IssuesEvent
2023-03-07 01:58:44
AlphaWallet/alpha-wallet-ios
https://api.github.com/repos/AlphaWallet/alpha-wallet-ios
closed
awallet://wc regression
Bug High Priority
It looks like the native deeplink `awallet://` does not work for `/wc` (WalletConnect V1) anymore. https://user-images.githubusercontent.com/851393/222998440-4629831c-c32a-48e6-9cb5-ef4101ee9837.MP4 It would be great if native deep links remain usable. Universal deep links are not sufficient and highly unreliable, see the following screenshot why: <img width="744" alt="Screenshot 2023-03-05 at 18 10 02" src="https://user-images.githubusercontent.com/851393/222997950-52fab8ab-7000-4abc-952f-937acfa2802c.png"> On iOS universal deep links are optimistic, if internet connectivity is not sufficient or safari deems a universal link is not a direct trigger of a user click, it will send you either to the app store or will stay in safari without opening the native app at all. The "universal" in universal link, means that the content can be displayed in the browser, which is not true for a wallet connection and nobody should rely on universal links when connecting to mobile wallets on a mobile device. You can test the behavior yourself here: https://depayfi.github.io/widgets/demo.connect.html
1.0
awallet://wc regression - It looks like the native deeplink `awallet://` does not work for `/wc` (WalletConnect V1) anymore. https://user-images.githubusercontent.com/851393/222998440-4629831c-c32a-48e6-9cb5-ef4101ee9837.MP4 It would be great if native deep links remain usable. Universal deep links are not sufficient and highly unreliable, see the following screenshot why: <img width="744" alt="Screenshot 2023-03-05 at 18 10 02" src="https://user-images.githubusercontent.com/851393/222997950-52fab8ab-7000-4abc-952f-937acfa2802c.png"> On iOS universal deep links are optimistic, if internet connectivity is not sufficient or safari deems a universal link is not a direct trigger of a user click, it will send you either to the app store or will stay in safari without opening the native app at all. The "universal" in universal link, means that the content can be displayed in the browser, which is not true for a wallet connection and nobody should rely on universal links when connecting to mobile wallets on a mobile device. You can test the behavior yourself here: https://depayfi.github.io/widgets/demo.connect.html
priority
awallet wc regression it looks like the native deeplink awallet does not work for wc walletconnect anymore it would be great if native deep links remain usable universal deep links are not sufficient and highly unreliable see the following screenshot why img width alt screenshot at src on ios universal deep links are optimistic if internet connectivity is not sufficient or safari deems a universal link is not a direct trigger of a user click it will send you either to the app store or will stay in safari without opening the native app at all the universal in universal link means that the content can be displayed in the browser which is not true for a wallet connection and nobody should rely on universal links when connecting to mobile wallets on a mobile device you can test the behavior yourself here
1
239,706
7,799,934,128
IssuesEvent
2018-06-09 02:19:26
tine20/Tine-2.0-Open-Source-Groupware-and-CRM
https://api.github.com/repos/tine20/Tine-2.0-Open-Source-Groupware-and-CRM
closed
0006266: automatic deactivation of vacation message
Feature Request Felamimail Mantis high priority
**Reported by pschuele on 16 Apr 2012 11:29** automatic deactivation of vacation message - if sieve server supports it (require date + relational), put it in script **Additional information:** info for date/relational: http://www.ietf.org/rfc/rfc5260.txt example with date/relational: require [&quot;date&quot;, &quot;relational&quot;, &quot;vacation&quot;]; if allof(currentdate :value &quot;ge&quot; &quot;date&quot; &quot;2007-06-30&quot;, currentdate :value &quot;le&quot; &quot;date&quot; &quot;2007-07-07&quot;) { vacation :days 7 &quot;I&#039;m away during the first week in July.&quot;; }
1.0
0006266: automatic deactivation of vacation message - **Reported by pschuele on 16 Apr 2012 11:29** automatic deactivation of vacation message - if sieve server supports it (require date + relational), put it in script **Additional information:** info for date/relational: http://www.ietf.org/rfc/rfc5260.txt example with date/relational: require [&quot;date&quot;, &quot;relational&quot;, &quot;vacation&quot;]; if allof(currentdate :value &quot;ge&quot; &quot;date&quot; &quot;2007-06-30&quot;, currentdate :value &quot;le&quot; &quot;date&quot; &quot;2007-07-07&quot;) { vacation :days 7 &quot;I&#039;m away during the first week in July.&quot;; }
priority
automatic deactivation of vacation message reported by pschuele on apr automatic deactivation of vacation message if sieve server supports it require date relational put it in script additional information info for date relational example with date relational require if allof currentdate value quot ge quot quot date quot quot quot currentdate value quot le quot quot date quot quot quot vacation days quot i m away during the first week in july quot
1
218,750
7,332,416,918
IssuesEvent
2018-03-05 16:16:23
NCEAS/metacat
https://api.github.com/repos/NCEAS/metacat
closed
Implement SOLR-based search
Category: metacat Component: Bugzilla-Id Priority: High Status: Closed Tracker: Feature
--- Author Name: **ben leinfelder** (ben leinfelder) Original Redmine Issue: 5810, https://projects.ecoinformatics.org/ecoinfo/issues/5810 Original Date: 2013-01-24 Original Assignee: Jing Tao --- This will be an implementation of the DataONE MNQuery() methods.
1.0
Implement SOLR-based search - --- Author Name: **ben leinfelder** (ben leinfelder) Original Redmine Issue: 5810, https://projects.ecoinformatics.org/ecoinfo/issues/5810 Original Date: 2013-01-24 Original Assignee: Jing Tao --- This will be an implementation of the DataONE MNQuery() methods.
priority
implement solr based search author name ben leinfelder ben leinfelder original redmine issue original date original assignee jing tao this will be an implementation of the dataone mnquery methods
1
403,179
11,837,258,874
IssuesEvent
2020-03-23 13:55:30
harmony-one/harmony
https://api.github.com/repos/harmony-one/harmony
closed
Consensus stuck at "Got more transactions"
bug high priority
**Describe the bug** A clear and concise description of what the bug is. On the testnet 3.1, I have to restart the leader and validators on one shard. They all started normally. However, after leader received the TX, the consensus didn't start. The last log message is: ``` {"ip":"54.202.84.153","lvl":"info","msg":"[PUBSUB]","port":"9000","received global msg":116,"sender":"\u003cpeer.ID Qm*X4xPZ6\u003e","t":"2019-05-16T03:59:13.193505004Z"} {"ip":"54.202.84.153","lvl":"info","msg":"NET: received message: Node/Transaction","port":"9000","t":"2019-05-16T03:59:13.193814527Z"} {"ip":"54.202.84.153","lvl":"dbug","msg":"Got more transactions","num":1,"port":"9000","t":"2019-05-16T03:59:13.1939835Z","totalPending":7} {"error":"\u003cnil\u003e","ip":"54.202.84.153","lvl":"info","msg":"[CLIENT]","port":"9000","received group msg":116,"sender":"\u003cpeer.ID Qm*X4xPZ6\u003e","t":"2019-05-16T03:59:13.194079528Z"} {"ip":"54.202.84.153","lvl":"info","msg":"NET: received message: Node/Transaction","port":"9000","t":"2019-05-16T03:59:13.194177112Z"} {"ip":"54.202.84.153","lvl":"dbug","msg":"Got more transactions","num":1,"port":"9000","t":"2019-05-16T03:59:13.194280113Z","totalPending":8} ```
1.0
Consensus stuck at "Got more transactions" - **Describe the bug** A clear and concise description of what the bug is. On the testnet 3.1, I have to restart the leader and validators on one shard. They all started normally. However, after leader received the TX, the consensus didn't start. The last log message is: ``` {"ip":"54.202.84.153","lvl":"info","msg":"[PUBSUB]","port":"9000","received global msg":116,"sender":"\u003cpeer.ID Qm*X4xPZ6\u003e","t":"2019-05-16T03:59:13.193505004Z"} {"ip":"54.202.84.153","lvl":"info","msg":"NET: received message: Node/Transaction","port":"9000","t":"2019-05-16T03:59:13.193814527Z"} {"ip":"54.202.84.153","lvl":"dbug","msg":"Got more transactions","num":1,"port":"9000","t":"2019-05-16T03:59:13.1939835Z","totalPending":7} {"error":"\u003cnil\u003e","ip":"54.202.84.153","lvl":"info","msg":"[CLIENT]","port":"9000","received group msg":116,"sender":"\u003cpeer.ID Qm*X4xPZ6\u003e","t":"2019-05-16T03:59:13.194079528Z"} {"ip":"54.202.84.153","lvl":"info","msg":"NET: received message: Node/Transaction","port":"9000","t":"2019-05-16T03:59:13.194177112Z"} {"ip":"54.202.84.153","lvl":"dbug","msg":"Got more transactions","num":1,"port":"9000","t":"2019-05-16T03:59:13.194280113Z","totalPending":8} ```
priority
consensus stuck at got more transactions describe the bug a clear and concise description of what the bug is on the testnet i have to restart the leader and validators on one shard they all started normally however after leader received the tx the consensus didn t start the last log message is ip lvl info msg port received global msg sender id qm t ip lvl info msg net received message node transaction port t ip lvl dbug msg got more transactions num port t totalpending error ip lvl info msg port received group msg sender id qm t ip lvl info msg net received message node transaction port t ip lvl dbug msg got more transactions num port t totalpending
1
171,925
6,496,859,800
IssuesEvent
2017-08-22 11:53:31
craigsimps/gulp-wp-toolkit
https://api.github.com/repos/craigsimps/gulp-wp-toolkit
closed
Allow multiple .css to be compiled
Priority: High Type: Enhancement
Like we support different combinations of JavaScript files being configured to be concatenated and minified, we should allow the same for CSS files. Right now, the `build:css` task is hard-coded around `style.scss` to `style.css`. This means it's not reusable to build files like `editor-style.css`, or `edd.css`. Having a `css` configuration block might also be the start of a workaround for #3. Initially, it may be that all individual `.scss` go through the same build process, but ideally, we may want to configure the list of middleware items (i.e. only certain files pass through the RTL procedure).
1.0
Allow multiple .css to be compiled - Like we support different combinations of JavaScript files being configured to be concatenated and minified, we should allow the same for CSS files. Right now, the `build:css` task is hard-coded around `style.scss` to `style.css`. This means it's not reusable to build files like `editor-style.css`, or `edd.css`. Having a `css` configuration block might also be the start of a workaround for #3. Initially, it may be that all individual `.scss` go through the same build process, but ideally, we may want to configure the list of middleware items (i.e. only certain files pass through the RTL procedure).
priority
allow multiple css to be compiled like we support different combinations of javascript files being configured to be concatenated and minified we should allow the same for css files right now the build css task is hard coded around style scss to style css this means it s not reusable to build files like editor style css or edd css having a css configuration block might also be the start of a workaround for initially it may be that all individual scss go through the same build process but ideally we may want to configure the list of middleware items i e only certain files pass through the rtl procedure
1
631,031
20,142,176,913
IssuesEvent
2022-02-09 01:08:31
schmouk/vcl
https://api.github.com/repos/schmouk/vcl
closed
Use OpenCV as much as possible with already implemented code
enhancement High Priority
Let's take the most benefit of OpenCV code and enhance it with **vcl** specifics. See also issues #117 and #125 which both relate to this issue.
1.0
Use OpenCV as much as possible with already implemented code - Let's take the most benefit of OpenCV code and enhance it with **vcl** specifics. See also issues #117 and #125 which both relate to this issue.
priority
use opencv as much as possible with already implemented code let s take the most benefit of opencv code and enhance it with vcl specifics see also issues and which both relate to this issue
1
652,016
21,518,442,497
IssuesEvent
2022-04-28 12:12:36
Betarena/scores
https://api.github.com/repos/Betarena/scores
closed
Leagues Table HomePage Widget - Story
enhancement high priority
:sparkles: **Leagues table** :sparkles: As a Betarena user I want  to be able to access the league table of the most important international competitions so that I can check the team's positions and other relevant data ### Description: The goal is to allow the users to check the team's positions and other competition-relevant information for the most important leagues in the user's country. ### Available on: This widget is only available on the Desktop and tablet versions. ### Acceptance Criteria: - [x] The available league list should differ depending on the visitor's GEO; - [x] The promotion, relegation, and another state should follow the color codes defined; - [x] 8 different competitions available; - [x] The sorted leagues should respect the endpoint on Hasura: leagues_filtered_country - [x] BACKEND: Get all team information from the provider (update content monthly) https://soccer.sportmonks.com/api/v2.0/teams/: football_teams - [x] BACKEND: Get all leagues information from the provider (update content monthly) https://soccer.sportmonks.com/api/v2.0/leagues: football_leagues - [x] BACKEND: Add the standings data to the PostgreSQL - scores_football_standings * - [x] BACKEND: Data updated every hour; - [x] FRONTEND: Dropdown with 8 leagues (league_name), position, - [x] Add the translations available at: scores_standings_home_widget_translations; * "id": 77452836, "name": "Regular Season", "league_id": 648, "season_id": 18215, "round_id": 241300, "round_name": 38, "type": "Group Stage", "stage_id": 77452836, "stage_name": "Regular Season", "resource": "stage", "standings": { "data": [ { "position": 1, "team_id": 3427, "team_name": "Atlético Mineiro", "round_id": 241300, "round_name": 38, "group_id": null, "group_name": null, "overall": { "games_played": 38, "won": 26, "draw": 6, "lost": 6, "goals_scored": 67, "goals_against": 34, "points": 84 }, "home": { "games_played": 19, "won": 17, "draw": 1, "lost": 1, "goals_scored": 42, "goals_against": 13, "points": 52 }, "away": { "games_played": 19, "won": 9, "draw": 5, "lost": 5, "goals_scored": 25, "goals_against": 21, "points": 32 }, "total": { "goal_difference": "33", "points": 84 }, "result": "CONMEBOL Libertadores", "points": 84, "recent_form": "DWWWL", "status": null **Resources** Figma Design: https://www.figma.com/file/4SlIPyxRBX2qg1eLaPUk9U/BetArena---Working?node-id=32%3A1635 New Repo Link: https://github.com/Betarena/scores_standings_home_widget Diagram: https://whimsical.com/betarena-scores-standings-small-widget-BMmoEd4RTWeKQbB9MWdVnZ
1.0
Leagues Table HomePage Widget - Story - :sparkles: **Leagues table** :sparkles: As a Betarena user I want  to be able to access the league table of the most important international competitions so that I can check the team's positions and other relevant data ### Description: The goal is to allow the users to check the team's positions and other competition-relevant information for the most important leagues in the user's country. ### Available on: This widget is only available on the Desktop and tablet versions. ### Acceptance Criteria: - [x] The available league list should differ depending on the visitor's GEO; - [x] The promotion, relegation, and another state should follow the color codes defined; - [x] 8 different competitions available; - [x] The sorted leagues should respect the endpoint on Hasura: leagues_filtered_country - [x] BACKEND: Get all team information from the provider (update content monthly) https://soccer.sportmonks.com/api/v2.0/teams/: football_teams - [x] BACKEND: Get all leagues information from the provider (update content monthly) https://soccer.sportmonks.com/api/v2.0/leagues: football_leagues - [x] BACKEND: Add the standings data to the PostgreSQL - scores_football_standings * - [x] BACKEND: Data updated every hour; - [x] FRONTEND: Dropdown with 8 leagues (league_name), position, - [x] Add the translations available at: scores_standings_home_widget_translations; * "id": 77452836, "name": "Regular Season", "league_id": 648, "season_id": 18215, "round_id": 241300, "round_name": 38, "type": "Group Stage", "stage_id": 77452836, "stage_name": "Regular Season", "resource": "stage", "standings": { "data": [ { "position": 1, "team_id": 3427, "team_name": "Atlético Mineiro", "round_id": 241300, "round_name": 38, "group_id": null, "group_name": null, "overall": { "games_played": 38, "won": 26, "draw": 6, "lost": 6, "goals_scored": 67, "goals_against": 34, "points": 84 }, "home": { "games_played": 19, "won": 17, "draw": 1, "lost": 1, "goals_scored": 42, "goals_against": 13, "points": 52 }, "away": { "games_played": 19, "won": 9, "draw": 5, "lost": 5, "goals_scored": 25, "goals_against": 21, "points": 32 }, "total": { "goal_difference": "33", "points": 84 }, "result": "CONMEBOL Libertadores", "points": 84, "recent_form": "DWWWL", "status": null **Resources** Figma Design: https://www.figma.com/file/4SlIPyxRBX2qg1eLaPUk9U/BetArena---Working?node-id=32%3A1635 New Repo Link: https://github.com/Betarena/scores_standings_home_widget Diagram: https://whimsical.com/betarena-scores-standings-small-widget-BMmoEd4RTWeKQbB9MWdVnZ
priority
leagues table homepage widget story sparkles leagues table sparkles as a betarena user i want  to be able to access the league table of the most important international competitions so that i can check the team s positions and other relevant data description the goal is to allow the users to check the team s positions and other competition relevant information for the most important leagues in the user s country available on this widget is only available on the desktop and tablet versions acceptance criteria the available league list should differ depending on the visitor s geo the promotion relegation and another state should follow the color codes defined different competitions available the sorted leagues should respect the endpoint on hasura leagues filtered country backend get all team information from the provider update content monthly football teams backend get all leagues information from the provider update content monthly football leagues backend add the standings data to the postgresql scores football standings backend data updated every hour frontend dropdown with leagues league name position add the translations available at scores standings home widget translations id name regular season league id season id round id round name type group stage stage id stage name regular season resource stage standings data position team id team name atlético mineiro round id round name group id null group name null overall games played won draw lost goals scored goals against points home games played won draw lost goals scored goals against points away games played won draw lost goals scored goals against points total goal difference points result conmebol libertadores points recent form dwwwl status null resources figma design new repo link diagram
1
57,813
3,083,993,435
IssuesEvent
2015-08-24 12:46:13
VertNet/webapp
https://api.github.com/repos/VertNet/webapp
closed
ApplicationError 7
API bug Download priority priority-high
During downloads, under circumstances currently mysterious, an unknown error exception is thrown. This may result in loss of downloaded records or of download files altogether. ApplicationError: 7 Traceback (most recent call last): File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 1536, in __call__ rv = self.handle_exception(request, response, e) File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 1530, in __call__ rv = self.router.dispatch(request, response) File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 1278, in default_dispatcher return route.handler_adapter(request, response) File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 1102, in __call__ return handler.dispatch() File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 572, in dispatch return self.handle_exception(e, self.app.debug) File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 570, in dispatch return method(*args, **kwargs) File "/base/data/home/apps/s~vertnet-portal/tuco.375280118385007457/vertnet/service/download.py", line 97, in post files.finalize(writable_file_name) File "/base/data/home/runtimes/python27/python27_lib/versions/1/google/appengine/api/files/file.py", line 568, in finalize f.close(finalize=True) File "/base/data/home/runtimes/python27/python27_lib/versions/1/google/appengine/api/files/file.py", line 291, in close self._make_rpc_call_with_retry('Close', request, response) File "/base/data/home/runtimes/python27/python27_lib/versions/1/google/appengine/api/files/file.py", line 427, in _make_rpc_call_with_retry _make_call(method, request, response) File "/base/data/home/runtimes/python27/python27_lib/versions/1/google/appengine/api/files/file.py", line 252, in _make_call _raise_app_error(e) File "/base/data/home/runtimes/python27/python27_lib/versions/1/google/appengine/api/files/file.py", line 186, in _raise_app_error raise UnknownError(e) UnknownError: ApplicationError: 7
2.0
ApplicationError 7 - During downloads, under circumstances currently mysterious, an unknown error exception is thrown. This may result in loss of downloaded records or of download files altogether. ApplicationError: 7 Traceback (most recent call last): File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 1536, in __call__ rv = self.handle_exception(request, response, e) File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 1530, in __call__ rv = self.router.dispatch(request, response) File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 1278, in default_dispatcher return route.handler_adapter(request, response) File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 1102, in __call__ return handler.dispatch() File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 572, in dispatch return self.handle_exception(e, self.app.debug) File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 570, in dispatch return method(*args, **kwargs) File "/base/data/home/apps/s~vertnet-portal/tuco.375280118385007457/vertnet/service/download.py", line 97, in post files.finalize(writable_file_name) File "/base/data/home/runtimes/python27/python27_lib/versions/1/google/appengine/api/files/file.py", line 568, in finalize f.close(finalize=True) File "/base/data/home/runtimes/python27/python27_lib/versions/1/google/appengine/api/files/file.py", line 291, in close self._make_rpc_call_with_retry('Close', request, response) File "/base/data/home/runtimes/python27/python27_lib/versions/1/google/appengine/api/files/file.py", line 427, in _make_rpc_call_with_retry _make_call(method, request, response) File "/base/data/home/runtimes/python27/python27_lib/versions/1/google/appengine/api/files/file.py", line 252, in _make_call _raise_app_error(e) File "/base/data/home/runtimes/python27/python27_lib/versions/1/google/appengine/api/files/file.py", line 186, in _raise_app_error raise UnknownError(e) UnknownError: ApplicationError: 7
priority
applicationerror during downloads under circumstances currently mysterious an unknown error exception is thrown this may result in loss of downloaded records or of download files altogether applicationerror traceback most recent call last file base data home runtimes lib versions third party py line in call rv self handle exception request response e file base data home runtimes lib versions third party py line in call rv self router dispatch request response file base data home runtimes lib versions third party py line in default dispatcher return route handler adapter request response file base data home runtimes lib versions third party py line in call return handler dispatch file base data home runtimes lib versions third party py line in dispatch return self handle exception e self app debug file base data home runtimes lib versions third party py line in dispatch return method args kwargs file base data home apps s vertnet portal tuco vertnet service download py line in post files finalize writable file name file base data home runtimes lib versions google appengine api files file py line in finalize f close finalize true file base data home runtimes lib versions google appengine api files file py line in close self make rpc call with retry close request response file base data home runtimes lib versions google appengine api files file py line in make rpc call with retry make call method request response file base data home runtimes lib versions google appengine api files file py line in make call raise app error e file base data home runtimes lib versions google appengine api files file py line in raise app error raise unknownerror e unknownerror applicationerror
1
429,566
12,426,058,737
IssuesEvent
2020-05-24 19:17:48
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
www.google.com - see bug description
browser-firefox engine-gecko ml-needsdiagnosis-false ml-probability-high priority-critical
<!-- @browser: Firefox 64.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:64.0) Gecko/20100101 Firefox/64.0 --> <!-- @reported_with: desktop-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/53273 --> **URL**: https://www.google.com/search?client=firefox-b&q=shiva **Browser / Version**: Firefox 64.0 **Operating System**: Windows 7 **Tested Another Browser**: Yes Internet Explorer **Problem type**: Something else **Description**: not start **Steps to Reproduce**: fire fox not start . aaaaaaaaaaa <details> <summary>Browser Configuration</summary> <ul> <li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20181206201918</li><li>channel: release</li><li>hasTouchScreen: false</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li> </ul> </details> [View console log messages](https://webcompat.com/console_logs/2020/5/c436f471-aee7-4379-9c0a-9ef04663b66b) _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
www.google.com - see bug description - <!-- @browser: Firefox 64.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:64.0) Gecko/20100101 Firefox/64.0 --> <!-- @reported_with: desktop-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/53273 --> **URL**: https://www.google.com/search?client=firefox-b&q=shiva **Browser / Version**: Firefox 64.0 **Operating System**: Windows 7 **Tested Another Browser**: Yes Internet Explorer **Problem type**: Something else **Description**: not start **Steps to Reproduce**: fire fox not start . aaaaaaaaaaa <details> <summary>Browser Configuration</summary> <ul> <li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20181206201918</li><li>channel: release</li><li>hasTouchScreen: false</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li> </ul> </details> [View console log messages](https://webcompat.com/console_logs/2020/5/c436f471-aee7-4379-9c0a-9ef04663b66b) _From [webcompat.com](https://webcompat.com/) with ❤️_
priority
see bug description url browser version firefox operating system windows tested another browser yes internet explorer problem type something else description not start steps to reproduce fire fox not start aaaaaaaaaaa browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel release hastouchscreen false mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️
1
80,607
3,568,150,581
IssuesEvent
2016-01-26 03:08:16
sumpatel/Software-Testing-a1
https://api.github.com/repos/sumpatel/Software-Testing-a1
closed
[Verified] Withdraws an inaccurate amount of money from Checking Account
High Priority High Severity
Function Tested: Withdrawing money Initial State of System: Off Steps to reproduce: 1. Press "ON" 2. Enter 200 for number of $20 bills. 3. Enter the valid card and password combination. 4. Click 4 for "Balance Inquiry" 5. Click 1 for "Checking" 6. The receipt will say that there is $100.00 for TOTAL BAL and AVAILABLE. 7. Click 1 to make another transaction 8. Click 1 again for "Withdrawal" 9. Click 1 again for "Checking" 10. Then click 2 for $40 Expected Outcome: Withdraw $40 leaving $60 in checking account. Actual Outcome: Withdraws $60 leaving $40 in account. All options offset by 1, so $20 withdraws $40, $40 -> $60, and so on until $200 which withdraws $20.
1.0
[Verified] Withdraws an inaccurate amount of money from Checking Account - Function Tested: Withdrawing money Initial State of System: Off Steps to reproduce: 1. Press "ON" 2. Enter 200 for number of $20 bills. 3. Enter the valid card and password combination. 4. Click 4 for "Balance Inquiry" 5. Click 1 for "Checking" 6. The receipt will say that there is $100.00 for TOTAL BAL and AVAILABLE. 7. Click 1 to make another transaction 8. Click 1 again for "Withdrawal" 9. Click 1 again for "Checking" 10. Then click 2 for $40 Expected Outcome: Withdraw $40 leaving $60 in checking account. Actual Outcome: Withdraws $60 leaving $40 in account. All options offset by 1, so $20 withdraws $40, $40 -> $60, and so on until $200 which withdraws $20.
priority
withdraws an inaccurate amount of money from checking account function tested withdrawing money initial state of system off steps to reproduce press on enter for number of bills enter the valid card and password combination click for balance inquiry click for checking the receipt will say that there is for total bal and available click to make another transaction click again for withdrawal click again for checking then click for expected outcome withdraw leaving in checking account actual outcome withdraws leaving in account all options offset by so withdraws and so on until which withdraws
1
234,615
7,723,918,229
IssuesEvent
2018-05-24 13:48:18
SmartlyDressedGames/Unturned-3.x-Community
https://api.github.com/repos/SmartlyDressedGames/Unturned-3.x-Community
closed
Issue Closure Notice
Priority: High Status: Answered Type: Question
I'm currently going through and closing a lot of the issues here, as it's turned more into a customer support forum than a task list which means I hadn't been posting the actual tasks here anymore. I've also closed the old feature requests because having them on "backlog" may give false hope when I have no current intention of working on them, but they are still accessible under closed issues so that they can be referred to and browsed.
1.0
Issue Closure Notice - I'm currently going through and closing a lot of the issues here, as it's turned more into a customer support forum than a task list which means I hadn't been posting the actual tasks here anymore. I've also closed the old feature requests because having them on "backlog" may give false hope when I have no current intention of working on them, but they are still accessible under closed issues so that they can be referred to and browsed.
priority
issue closure notice i m currently going through and closing a lot of the issues here as it s turned more into a customer support forum than a task list which means i hadn t been posting the actual tasks here anymore i ve also closed the old feature requests because having them on backlog may give false hope when i have no current intention of working on them but they are still accessible under closed issues so that they can be referred to and browsed
1
420,497
12,238,789,363
IssuesEvent
2020-05-04 20:26:27
silverbackis/api-components-bundle
https://api.github.com/repos/silverbackis/api-components-bundle
closed
Timestamped fixes
High Priority v2
- [x] serialization groups to ensure they are always returned... or groups can be configured... implement same as publishable. - [x] hook into requests instead of doctrine events (purpose of API is to handle events). The helper can have a method available should people want to trigger events in commands etc. Similar to Uploadable
1.0
Timestamped fixes - - [x] serialization groups to ensure they are always returned... or groups can be configured... implement same as publishable. - [x] hook into requests instead of doctrine events (purpose of API is to handle events). The helper can have a method available should people want to trigger events in commands etc. Similar to Uploadable
priority
timestamped fixes serialization groups to ensure they are always returned or groups can be configured implement same as publishable hook into requests instead of doctrine events purpose of api is to handle events the helper can have a method available should people want to trigger events in commands etc similar to uploadable
1
706,903
24,288,150,133
IssuesEvent
2022-09-29 01:36:26
CS3219-AY2223S1/cs3219-project-ay2223s1-g33
https://api.github.com/repos/CS3219-AY2223S1/cs3219-project-ay2223s1-g33
closed
[Collaboration UI] Join/Leave Notification Handling
Module/Front-End Status/High-Priority
# Description This is a continuation of #108 and #120 by removing the send message function calls on the frontend. # Parent Tasks - #107
1.0
[Collaboration UI] Join/Leave Notification Handling - # Description This is a continuation of #108 and #120 by removing the send message function calls on the frontend. # Parent Tasks - #107
priority
join leave notification handling description this is a continuation of and by removing the send message function calls on the frontend parent tasks
1
830,372
32,004,380,379
IssuesEvent
2023-09-21 14:03:53
prysmaticlabs/prysm
https://api.github.com/repos/prysmaticlabs/prysm
opened
GetProposerDuties should not write the proposer ID cache
Bug Priority: High
### Describe the bug There are other bugs in the implementation that need to be fixed in separate PRs. - [ ] GetProposerDuties currently writes the payload ID cache for every single proposal. The endpoint should not touch this cache and simply return the duties. - [ ] StateBySlot should be advanced to the start of the epoch - [ ] The caller needs to use the return to cache the proposer indices of the validator clients being served. ### Has this worked before in a previous version? _No response_ ### 🔬 Minimal Reproduction nah ### 🔥 Error _No response_ ### 🌍 Platform(s) _No response_ ### What version of Prysm are you running? (Which release) _No response_ ### Anything else relevant (validator index / public key)? _No response_
1.0
GetProposerDuties should not write the proposer ID cache - ### Describe the bug There are other bugs in the implementation that need to be fixed in separate PRs. - [ ] GetProposerDuties currently writes the payload ID cache for every single proposal. The endpoint should not touch this cache and simply return the duties. - [ ] StateBySlot should be advanced to the start of the epoch - [ ] The caller needs to use the return to cache the proposer indices of the validator clients being served. ### Has this worked before in a previous version? _No response_ ### 🔬 Minimal Reproduction nah ### 🔥 Error _No response_ ### 🌍 Platform(s) _No response_ ### What version of Prysm are you running? (Which release) _No response_ ### Anything else relevant (validator index / public key)? _No response_
priority
getproposerduties should not write the proposer id cache describe the bug there are other bugs in the implementation that need to be fixed in separate prs getproposerduties currently writes the payload id cache for every single proposal the endpoint should not touch this cache and simply return the duties statebyslot should be advanced to the start of the epoch the caller needs to use the return to cache the proposer indices of the validator clients being served has this worked before in a previous version no response 🔬 minimal reproduction nah 🔥 error no response 🌍 platform s no response what version of prysm are you running which release no response anything else relevant validator index public key no response
1
582,754
17,369,558,066
IssuesEvent
2021-07-30 12:11:28
zephyrproject-rtos/sdk-ng
https://api.github.com/repos/zephyrproject-rtos/sdk-ng
closed
Footprint increase
bug priority: high
A significant footprint increase has been reported for the SDK 0.13.0-* releases. For `samples/net/sockets/coap_client` with `nrf52840dk_nrf52840` **0.12.4** ``` Memory region Used Size Region Size %age Used FLASH: 116016 B 1 MB 11.06% SRAM: 28320 B 256 KB 10.80% IDT_LIST: 0 GB 2 KB 0.00% ``` **0.13.0-rc3** ``` Memory region Used Size Region Size %age Used FLASH: 143080 B 1 MB 13.65% SRAM: 30336 B 256 KB 11.57% IDT_LIST: 0 GB 2 KB 0.00% ``` This increase happened after the commits in the PR #333, which switched to using the upstream crosstool-ng newlib nano build process.
1.0
Footprint increase - A significant footprint increase has been reported for the SDK 0.13.0-* releases. For `samples/net/sockets/coap_client` with `nrf52840dk_nrf52840` **0.12.4** ``` Memory region Used Size Region Size %age Used FLASH: 116016 B 1 MB 11.06% SRAM: 28320 B 256 KB 10.80% IDT_LIST: 0 GB 2 KB 0.00% ``` **0.13.0-rc3** ``` Memory region Used Size Region Size %age Used FLASH: 143080 B 1 MB 13.65% SRAM: 30336 B 256 KB 11.57% IDT_LIST: 0 GB 2 KB 0.00% ``` This increase happened after the commits in the PR #333, which switched to using the upstream crosstool-ng newlib nano build process.
priority
footprint increase a significant footprint increase has been reported for the sdk releases for samples net sockets coap client with memory region used size region size age used flash b mb sram b kb idt list gb kb memory region used size region size age used flash b mb sram b kb idt list gb kb this increase happened after the commits in the pr which switched to using the upstream crosstool ng newlib nano build process
1
367,872
10,862,376,159
IssuesEvent
2019-11-14 13:11:35
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
opened
[0.9.0 staging-1249] Big FPS drop at big depths
High Priority
Step to reproduce: - create new world. - make deep hole to zero point (use /test elevator and delete elevator) - look down from top position. I have FPS near 90-100: ![image](https://user-images.githubusercontent.com/45708377/68859638-c7aed000-06f8-11ea-820f-04eb2c35e369.png) - look up from zero point. I have FPS near 15-20: ![image](https://user-images.githubusercontent.com/45708377/68859729-f3ca5100-06f8-11ea-8333-11be51ee9aa9.png) For bigger FPS drop you can make hole wider. In 8.3.0 I had slight FPS drop from 100 to 70.
1.0
[0.9.0 staging-1249] Big FPS drop at big depths - Step to reproduce: - create new world. - make deep hole to zero point (use /test elevator and delete elevator) - look down from top position. I have FPS near 90-100: ![image](https://user-images.githubusercontent.com/45708377/68859638-c7aed000-06f8-11ea-820f-04eb2c35e369.png) - look up from zero point. I have FPS near 15-20: ![image](https://user-images.githubusercontent.com/45708377/68859729-f3ca5100-06f8-11ea-8333-11be51ee9aa9.png) For bigger FPS drop you can make hole wider. In 8.3.0 I had slight FPS drop from 100 to 70.
priority
big fps drop at big depths step to reproduce create new world make deep hole to zero point use test elevator and delete elevator look down from top position i have fps near look up from zero point i have fps near for bigger fps drop you can make hole wider in i had slight fps drop from to
1
567,595
16,887,347,219
IssuesEvent
2021-06-23 03:16:21
wso2/ballerina-plugin-vscode
https://api.github.com/repos/wso2/ballerina-plugin-vscode
closed
Change the Label of the Ballerina Doc command
Area/Commands Priority/High Type/Improvement
<a href="https://github.com/nadeeshaan"><img src="https://avatars.githubusercontent.com/u/1329674?v=4" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [nadeeshaan](https://github.com/nadeeshaan)** _Tuesday May 04, 2021 at 06:44 GMT_ _Originally opened as https://github.com/ballerina-platform/plugin-vscode/issues/385_ ---- **Description:** In the current implementation, the label of the Ballerina doc command in VSCode shows as `Ballerina: Document` which is confusing. What if we have a label which is bit more descriptive. Suggestion: `Document the Package` which is tallied with the ballerina cli manual's description
1.0
Change the Label of the Ballerina Doc command - <a href="https://github.com/nadeeshaan"><img src="https://avatars.githubusercontent.com/u/1329674?v=4" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [nadeeshaan](https://github.com/nadeeshaan)** _Tuesday May 04, 2021 at 06:44 GMT_ _Originally opened as https://github.com/ballerina-platform/plugin-vscode/issues/385_ ---- **Description:** In the current implementation, the label of the Ballerina doc command in VSCode shows as `Ballerina: Document` which is confusing. What if we have a label which is bit more descriptive. Suggestion: `Document the Package` which is tallied with the ballerina cli manual's description
priority
change the label of the ballerina doc command issue by tuesday may at gmt originally opened as description in the current implementation the label of the ballerina doc command in vscode shows as ballerina document which is confusing what if we have a label which is bit more descriptive suggestion document the package which is tallied with the ballerina cli manual s description
1
278,311
8,639,074,476
IssuesEvent
2018-11-23 17:00:58
robot-lab/judyst-link-analysis
https://api.github.com/repos/robot-lab/judyst-link-analysis
closed
Поиск ссылок на НК и ГК
priority/high type/feature type/task
# Task request ## Цель задачи Добавить возможность поиск ссылок на Налоговый и Гражданский кодексы. ## Решение задачи Реализовать соответствующие классы в link_handler
1.0
Поиск ссылок на НК и ГК - # Task request ## Цель задачи Добавить возможность поиск ссылок на Налоговый и Гражданский кодексы. ## Решение задачи Реализовать соответствующие классы в link_handler
priority
поиск ссылок на нк и гк task request цель задачи добавить возможность поиск ссылок на налоговый и гражданский кодексы решение задачи реализовать соответствующие классы в link handler
1
822,450
30,872,767,520
IssuesEvent
2023-08-03 12:30:39
hack4impact-uiuc/mentee
https://api.github.com/repos/hack4impact-uiuc/mentee
closed
Login Page Improvements
frontend high priority
<!-- Template credits to from https://github.com/codeforamerica/howto --> ## Description Login flow is in need of an improvement in the following areas... Issues can be made for each section -- please reference this issue # ### Mobile Responsiveness <img width="351" alt="Screen Shot 2023-05-16 at 9 28 06 PM" src="https://github.com/hack4impact-uiuc/mentee/assets/28935000/cf4eff9f-fa16-4336-ab72-d4b07eda0f76"> - Large gaps between elements - Confusing user experience on login button ### Loading Indicators Improvements https://github.com/hack4impact-uiuc/mentee/assets/28935000/504b0544-464c-48c5-9522-0f8a60765a2c - Semi-hidden loading indicator - Suggestion: Spinning indicators from antd ### Account Type Flow <img width="853" alt="Screen Shot 2023-05-16 at 9 31 32 PM" src="https://github.com/hack4impact-uiuc/mentee/assets/28935000/cb6f186b-e204-4678-896d-35a794734c50"> #### Suggestions #### Mobile/Tablet/Desktop for Account type selection ![image](https://github.com/hack4impact-uiuc/mentee/assets/28935000/48d1204d-cb42-4d0d-a553-a20789930413) ![image](https://github.com/hack4impact-uiuc/mentee/assets/28935000/41e9e3e2-823c-410e-b9de-12b204135904) #### Login Page ![image](https://github.com/hack4impact-uiuc/mentee/assets/28935000/a510fc71-8c2c-4dec-8c75-1cc0157787c9) There are two potential routes: 1. Follow this design flow which is more in line with other modern login flows 2. Instead of a two-part login-flow instead just have a dropdown at the top to select an account type then a login-button I recommend either one of these instead of the current design due to the fact that it isn't really mobile-friendly nor will it be scalable if there are multiple account types.
1.0
Login Page Improvements - <!-- Template credits to from https://github.com/codeforamerica/howto --> ## Description Login flow is in need of an improvement in the following areas... Issues can be made for each section -- please reference this issue # ### Mobile Responsiveness <img width="351" alt="Screen Shot 2023-05-16 at 9 28 06 PM" src="https://github.com/hack4impact-uiuc/mentee/assets/28935000/cf4eff9f-fa16-4336-ab72-d4b07eda0f76"> - Large gaps between elements - Confusing user experience on login button ### Loading Indicators Improvements https://github.com/hack4impact-uiuc/mentee/assets/28935000/504b0544-464c-48c5-9522-0f8a60765a2c - Semi-hidden loading indicator - Suggestion: Spinning indicators from antd ### Account Type Flow <img width="853" alt="Screen Shot 2023-05-16 at 9 31 32 PM" src="https://github.com/hack4impact-uiuc/mentee/assets/28935000/cb6f186b-e204-4678-896d-35a794734c50"> #### Suggestions #### Mobile/Tablet/Desktop for Account type selection ![image](https://github.com/hack4impact-uiuc/mentee/assets/28935000/48d1204d-cb42-4d0d-a553-a20789930413) ![image](https://github.com/hack4impact-uiuc/mentee/assets/28935000/41e9e3e2-823c-410e-b9de-12b204135904) #### Login Page ![image](https://github.com/hack4impact-uiuc/mentee/assets/28935000/a510fc71-8c2c-4dec-8c75-1cc0157787c9) There are two potential routes: 1. Follow this design flow which is more in line with other modern login flows 2. Instead of a two-part login-flow instead just have a dropdown at the top to select an account type then a login-button I recommend either one of these instead of the current design due to the fact that it isn't really mobile-friendly nor will it be scalable if there are multiple account types.
priority
login page improvements template credits to from description login flow is in need of an improvement in the following areas issues can be made for each section please reference this issue mobile responsiveness img width alt screen shot at pm src large gaps between elements confusing user experience on login button loading indicators improvements semi hidden loading indicator suggestion spinning indicators from antd account type flow img width alt screen shot at pm src suggestions mobile tablet desktop for account type selection login page there are two potential routes follow this design flow which is more in line with other modern login flows instead of a two part login flow instead just have a dropdown at the top to select an account type then a login button i recommend either one of these instead of the current design due to the fact that it isn t really mobile friendly nor will it be scalable if there are multiple account types
1
265,020
8,335,666,338
IssuesEvent
2018-09-28 03:42:23
IntelVCL/Open3D
https://api.github.com/repos/IntelVCL/Open3D
closed
handle build warnings
bug high priority
The VS/Windows build shows a number of warnings: - warning C4316, 20 - warning C4018, 25 - warning LNK4221, 4 All warnings need to be addressed. Double check Linux and macOS.
1.0
handle build warnings - The VS/Windows build shows a number of warnings: - warning C4316, 20 - warning C4018, 25 - warning LNK4221, 4 All warnings need to be addressed. Double check Linux and macOS.
priority
handle build warnings the vs windows build shows a number of warnings warning warning warning all warnings need to be addressed double check linux and macos
1
529,454
15,389,016,105
IssuesEvent
2021-03-03 11:31:17
wso2/product-apim
https://api.github.com/repos/wso2/product-apim
opened
"Revision 1" is displayed as already "Deployed" when the Default API is created only
API-M 4.0.0 Priority/High Type/Bug
### Description: "Revision 1" is displayed as already "Deployed" when the Default Pizzashack API is created only. ### Steps to reproduce: 1. Go to Publisher 2. Deploy sample API When checked the LC state of the API in Lifecycles tab, it is displayed as "Created". But Lifecycle history list has an event as "LC has changed from CREATED to PUBLISHED" ![image](https://user-images.githubusercontent.com/2484781/109799041-85890500-7c41-11eb-8c9f-fd80473e11f9.png) And in "Deployments" tab, "Revision 1" is displayed as "Deployed". This is critical as the default API is used by many and it should behave correctly. ### Affected Product Version: APIM-4.0.0-Alpha ### Environment details (with versions): - OS: - Client: - Env (Docker/K8s): --- ### Optional Fields #### Related Issues: <!-- Any related issues from this/other repositories--> #### Suggested Labels: <!--Only to be used by non-members--> #### Suggested Assignees: <!--Only to be used by non-members-->
1.0
"Revision 1" is displayed as already "Deployed" when the Default API is created only - ### Description: "Revision 1" is displayed as already "Deployed" when the Default Pizzashack API is created only. ### Steps to reproduce: 1. Go to Publisher 2. Deploy sample API When checked the LC state of the API in Lifecycles tab, it is displayed as "Created". But Lifecycle history list has an event as "LC has changed from CREATED to PUBLISHED" ![image](https://user-images.githubusercontent.com/2484781/109799041-85890500-7c41-11eb-8c9f-fd80473e11f9.png) And in "Deployments" tab, "Revision 1" is displayed as "Deployed". This is critical as the default API is used by many and it should behave correctly. ### Affected Product Version: APIM-4.0.0-Alpha ### Environment details (with versions): - OS: - Client: - Env (Docker/K8s): --- ### Optional Fields #### Related Issues: <!-- Any related issues from this/other repositories--> #### Suggested Labels: <!--Only to be used by non-members--> #### Suggested Assignees: <!--Only to be used by non-members-->
priority
revision is displayed as already deployed when the default api is created only description revision is displayed as already deployed when the default pizzashack api is created only steps to reproduce go to publisher deploy sample api when checked the lc state of the api in lifecycles tab it is displayed as created but lifecycle history list has an event as lc has changed from created to published and in deployments tab revision is displayed as deployed this is critical as the default api is used by many and it should behave correctly affected product version apim alpha environment details with versions os client env docker optional fields related issues suggested labels suggested assignees
1
655,417
21,689,745,309
IssuesEvent
2022-05-09 14:25:02
zeyneplervesarp/swe574-javagang
https://api.github.com/repos/zeyneplervesarp/swe574-javagang
closed
Change minutes to hours for time credits
enhancement backend high priority difficulty-medium
The balance of the users have been implemented with minutes, they should be hours. Refactor the domain, dto, service classes and the faker objects in load database class.
1.0
Change minutes to hours for time credits - The balance of the users have been implemented with minutes, they should be hours. Refactor the domain, dto, service classes and the faker objects in load database class.
priority
change minutes to hours for time credits the balance of the users have been implemented with minutes they should be hours refactor the domain dto service classes and the faker objects in load database class
1
244,723
7,879,288,694
IssuesEvent
2018-06-26 13:00:54
11ty/eleventy
https://api.github.com/repos/11ty/eleventy
closed
Shortcodes
enhancement high-priority large-task
I'm wondering how shortcodes might be handled. I really like how Hugo uses shortcodes (https://gohugo.io/content-management/shortcodes/) but they would be even better if they could be run through node scripts (Hugo is written in Golang and has no support for this currently). Essentially, I'd expect to be able to write little snippets that take arguments, referencing a script that outputs markup and injects it back as part of the processed template. E.g. ```md {{shortcodeName arg1="foo" arg2="bar"}} ``` would run a script called `shortcodeName.js` that takes "foo" and "bar" then exports/returns markup with those values processed somehow.
1.0
Shortcodes - I'm wondering how shortcodes might be handled. I really like how Hugo uses shortcodes (https://gohugo.io/content-management/shortcodes/) but they would be even better if they could be run through node scripts (Hugo is written in Golang and has no support for this currently). Essentially, I'd expect to be able to write little snippets that take arguments, referencing a script that outputs markup and injects it back as part of the processed template. E.g. ```md {{shortcodeName arg1="foo" arg2="bar"}} ``` would run a script called `shortcodeName.js` that takes "foo" and "bar" then exports/returns markup with those values processed somehow.
priority
shortcodes i m wondering how shortcodes might be handled i really like how hugo uses shortcodes but they would be even better if they could be run through node scripts hugo is written in golang and has no support for this currently essentially i d expect to be able to write little snippets that take arguments referencing a script that outputs markup and injects it back as part of the processed template e g md shortcodename foo bar would run a script called shortcodename js that takes foo and bar then exports returns markup with those values processed somehow
1
409,696
11,967,028,120
IssuesEvent
2020-04-06 05:34:13
ballerina-platform/ballerina-lang
https://api.github.com/repos/ballerina-platform/ballerina-lang
opened
Kafka consumers not connecting to SASL_PLAIN brokers
Area/StandardLibs Component/Kafka Priority/High Type/Bug
**Description:** > Kafka consumers cannot connect to brokers with `SASL_PLAIN` authentication. > Root cause for the error is how the additional properties are handled by the consumer. > This is reported at [ballerina-dev google group](https://groups.google.com/d/msg/ballerina-dev/dYsrpk7Oxdw/smNO1nX6AwAJ) > Ideally, we should support this, without using the additional parameters. **Steps to reproduce:** > Try to connect to a Kafka broker with SASL_PLAIN authentication.
1.0
Kafka consumers not connecting to SASL_PLAIN brokers - **Description:** > Kafka consumers cannot connect to brokers with `SASL_PLAIN` authentication. > Root cause for the error is how the additional properties are handled by the consumer. > This is reported at [ballerina-dev google group](https://groups.google.com/d/msg/ballerina-dev/dYsrpk7Oxdw/smNO1nX6AwAJ) > Ideally, we should support this, without using the additional parameters. **Steps to reproduce:** > Try to connect to a Kafka broker with SASL_PLAIN authentication.
priority
kafka consumers not connecting to sasl plain brokers description kafka consumers cannot connect to brokers with sasl plain authentication root cause for the error is how the additional properties are handled by the consumer this is reported at ideally we should support this without using the additional parameters steps to reproduce try to connect to a kafka broker with sasl plain authentication
1
492,065
14,175,994,089
IssuesEvent
2020-11-12 22:37:02
NikitaKit1998/datakyt
https://api.github.com/repos/NikitaKit1998/datakyt
closed
Create database
priority: high type: good first issue
**Is your feature request related to a problem? Please describe.** Create scripts that will populate the database described in the [doc](https://github.com/NikitaKit1998/datakyt/blob/main/docs/diagram.md) **Describe the solution you'd like** * [x] file create_database.sql * [x] file create_table.sql * [x] README how to to expand PostgreSQL for Linux
1.0
Create database - **Is your feature request related to a problem? Please describe.** Create scripts that will populate the database described in the [doc](https://github.com/NikitaKit1998/datakyt/blob/main/docs/diagram.md) **Describe the solution you'd like** * [x] file create_database.sql * [x] file create_table.sql * [x] README how to to expand PostgreSQL for Linux
priority
create database is your feature request related to a problem please describe create scripts that will populate the database described in the describe the solution you d like file create database sql file create table sql readme how to to expand postgresql for linux
1
60,435
3,129,349,685
IssuesEvent
2015-09-09 00:30:08
WkSavage/NSS-SpaghettiCode
https://api.github.com/repos/WkSavage/NSS-SpaghettiCode
opened
I kinda broke everything
GAME BREAKING High Priority NEED REVIEW
yeah.... an impaitent pull fucked the code... to what extent i dont know. recloning to desktop and i will fix and merge any remaining baystation stuff.
1.0
I kinda broke everything - yeah.... an impaitent pull fucked the code... to what extent i dont know. recloning to desktop and i will fix and merge any remaining baystation stuff.
priority
i kinda broke everything yeah an impaitent pull fucked the code to what extent i dont know recloning to desktop and i will fix and merge any remaining baystation stuff
1
60,514
3,130,258,624
IssuesEvent
2015-09-09 08:24:31
mantidproject/mantid
https://api.github.com/repos/mantidproject/mantid
closed
Provide correct vertical shift in SANS GUI
Component: SANS Priority: High
There seems to be an issue with shifing the detectors on top of each other. From Richard: >As previously suspected by Ann, the front detector vertical “shift” and its fit mechanism seems to be fitting to erroneous values. (Lower right of “reduction settings gui”.) >(Is this another distribution vs histogram issue? – I get a different shift if I change the Q binning from log to linear) > We need a ticket to investigate this please, needs to be working by start of next cycle and ideally sooner still. > Any data set will be OK for a test.
1.0
Provide correct vertical shift in SANS GUI - There seems to be an issue with shifing the detectors on top of each other. From Richard: >As previously suspected by Ann, the front detector vertical “shift” and its fit mechanism seems to be fitting to erroneous values. (Lower right of “reduction settings gui”.) >(Is this another distribution vs histogram issue? – I get a different shift if I change the Q binning from log to linear) > We need a ticket to investigate this please, needs to be working by start of next cycle and ideally sooner still. > Any data set will be OK for a test.
priority
provide correct vertical shift in sans gui there seems to be an issue with shifing the detectors on top of each other from richard as previously suspected by ann the front detector vertical “shift” and its fit mechanism seems to be fitting to erroneous values lower right of “reduction settings gui” is this another distribution vs histogram issue – i get a different shift if i change the q binning from log to linear we need a ticket to investigate this please needs to be working by start of next cycle and ideally sooner still any data set will be ok for a test
1
802,926
29,058,545,231
IssuesEvent
2023-05-15 01:57:00
steedos/steedos-platform
https://api.github.com/repos/steedos/steedos-platform
closed
[Bug]: 批准过程审批页面,批准操作后,页面不会刷新,一直停在批准页面上
bug done priority: High
### Description <img width="1920" alt="image" src="https://user-images.githubusercontent.com/26241897/234748319-fea759e3-02b3-4d26-a252-cd6a0a0545f6.png"> ### Steps To Reproduce 重现步骤 发起批准过程,用户审批页面 ### Version 版本 2.4.15-beta.5&1.2.6-beta.10
1.0
[Bug]: 批准过程审批页面,批准操作后,页面不会刷新,一直停在批准页面上 - ### Description <img width="1920" alt="image" src="https://user-images.githubusercontent.com/26241897/234748319-fea759e3-02b3-4d26-a252-cd6a0a0545f6.png"> ### Steps To Reproduce 重现步骤 发起批准过程,用户审批页面 ### Version 版本 2.4.15-beta.5&1.2.6-beta.10
priority
批准过程审批页面,批准操作后,页面不会刷新,一直停在批准页面上 description img width alt image src steps to reproduce 重现步骤 发起批准过程,用户审批页面 version 版本 beta beta
1
399,573
11,757,098,776
IssuesEvent
2020-03-13 13:02:12
codeforsapporo/covid19
https://api.github.com/repos/codeforsapporo/covid19
closed
What's newの取り扱い
Priority: High デザイン データワーク
## 起こっている問題 / Occurred problem What's new的な領域があるが * 情報の取得元はどこにする? * 更新は手動?自動? ## スクリーンショット / Screenshot <img width="506" alt="スクリーンショット 2020-03-07 14 53 41" src="https://user-images.githubusercontent.com/3221619/76137736-85344900-6083-11ea-94f5-76bdc3768584.png"> ## 期待する見せ方・挙動 / Expected behavior * このissueで議論したく
1.0
What's newの取り扱い - ## 起こっている問題 / Occurred problem What's new的な領域があるが * 情報の取得元はどこにする? * 更新は手動?自動? ## スクリーンショット / Screenshot <img width="506" alt="スクリーンショット 2020-03-07 14 53 41" src="https://user-images.githubusercontent.com/3221619/76137736-85344900-6083-11ea-94f5-76bdc3768584.png"> ## 期待する見せ方・挙動 / Expected behavior * このissueで議論したく
priority
what s newの取り扱い 起こっている問題 occurred problem what s new的な領域があるが 情報の取得元はどこにする? 更新は手動?自動? スクリーンショット screenshot img width alt スクリーンショット src 期待する見せ方・挙動 expected behavior このissueで議論したく
1
154,202
5,915,724,544
IssuesEvent
2017-05-22 08:39:52
DMSC-Instrument-Data/lewis
https://api.github.com/repos/DMSC-Instrument-Data/lewis
closed
Run adapter in separate thread
enhancement highest priority
For #195 it will be necessary to run adapters in separate threads, because of some problems we've been seeing in different scenarios where the things done in one cycle are very long for some reason. This is particularly pronounced with pcaspy. Before implementing multiple adapters, where this multi-threading will most likely be a strict requirement, we should figure out how this is done for one adapter.
1.0
Run adapter in separate thread - For #195 it will be necessary to run adapters in separate threads, because of some problems we've been seeing in different scenarios where the things done in one cycle are very long for some reason. This is particularly pronounced with pcaspy. Before implementing multiple adapters, where this multi-threading will most likely be a strict requirement, we should figure out how this is done for one adapter.
priority
run adapter in separate thread for it will be necessary to run adapters in separate threads because of some problems we ve been seeing in different scenarios where the things done in one cycle are very long for some reason this is particularly pronounced with pcaspy before implementing multiple adapters where this multi threading will most likely be a strict requirement we should figure out how this is done for one adapter
1
85,195
3,687,885,653
IssuesEvent
2016-02-25 10:24:03
ceylon/ceylon-sdk
https://api.github.com/repos/ceylon/ceylon-sdk
opened
native impls of HashMap / HashSet / ArrayList
collection high priority PERFORMANCE
It was suggested by @jvasileff that the performance of `HashMap` is limited by the use of our cross-platform `Array` abstraction. If so, then it should be possible to improve performance on the JVM by creating a `native("jvm")` implementation of `HashMap` that uses a Java array directly. We should try that, and see how much of a difference it makes. If it makes a major difference, we would do the same for `HashSet` and `ArrayList`. We should also try creating `native("jvm")` implementations of these classes which simply wrap Java's `HashMap` / `HashSet` / `ArrayList`, and see how that impacts performance.
1.0
native impls of HashMap / HashSet / ArrayList - It was suggested by @jvasileff that the performance of `HashMap` is limited by the use of our cross-platform `Array` abstraction. If so, then it should be possible to improve performance on the JVM by creating a `native("jvm")` implementation of `HashMap` that uses a Java array directly. We should try that, and see how much of a difference it makes. If it makes a major difference, we would do the same for `HashSet` and `ArrayList`. We should also try creating `native("jvm")` implementations of these classes which simply wrap Java's `HashMap` / `HashSet` / `ArrayList`, and see how that impacts performance.
priority
native impls of hashmap hashset arraylist it was suggested by jvasileff that the performance of hashmap is limited by the use of our cross platform array abstraction if so then it should be possible to improve performance on the jvm by creating a native jvm implementation of hashmap that uses a java array directly we should try that and see how much of a difference it makes if it makes a major difference we would do the same for hashset and arraylist we should also try creating native jvm implementations of these classes which simply wrap java s hashmap hashset arraylist and see how that impacts performance
1
324,310
9,887,490,902
IssuesEvent
2019-06-25 09:19:16
carbon-design-system/carbon
https://api.github.com/repos/carbon-design-system/carbon
closed
DataTable - sticky header v10.3/4 implementation
priority: high type: enhancement 💡
ref milestone plan: https://github.com/carbon-design-system/carbon/issues/2416 ref original issue request: https://github.com/carbon-design-system/carbon/issues/1587 ref akira's first look at merging (now closed): https://github.com/carbon-design-system/carbon/pull/2711/ --- this issue will specify what we plan to design, spec out, and implement as part of this milestone of work. for any requests in #1587 that are not covered here, we can revisit as part of a later milestone. **what we plan to implement this milestone** - DataTable's full header being sticky - solutions for technical limitations around this implementation - design specs and guidance as necessary **tasks** - [ ] design spec - [x] learn @jnm2377 's existing implementation - [ ] merge existing functionality into new monorepo - [ ] further improvements to sticky header architecture/implementation as it makes sense
1.0
DataTable - sticky header v10.3/4 implementation - ref milestone plan: https://github.com/carbon-design-system/carbon/issues/2416 ref original issue request: https://github.com/carbon-design-system/carbon/issues/1587 ref akira's first look at merging (now closed): https://github.com/carbon-design-system/carbon/pull/2711/ --- this issue will specify what we plan to design, spec out, and implement as part of this milestone of work. for any requests in #1587 that are not covered here, we can revisit as part of a later milestone. **what we plan to implement this milestone** - DataTable's full header being sticky - solutions for technical limitations around this implementation - design specs and guidance as necessary **tasks** - [ ] design spec - [x] learn @jnm2377 's existing implementation - [ ] merge existing functionality into new monorepo - [ ] further improvements to sticky header architecture/implementation as it makes sense
priority
datatable sticky header implementation ref milestone plan ref original issue request ref akira s first look at merging now closed this issue will specify what we plan to design spec out and implement as part of this milestone of work for any requests in that are not covered here we can revisit as part of a later milestone what we plan to implement this milestone datatable s full header being sticky solutions for technical limitations around this implementation design specs and guidance as necessary tasks design spec learn s existing implementation merge existing functionality into new monorepo further improvements to sticky header architecture implementation as it makes sense
1
279,621
8,671,200,046
IssuesEvent
2018-11-29 18:29:52
conveyal/trimet-mod-otp
https://api.github.com/repos/conveyal/trimet-mod-otp
closed
WES Mode Label
high priority
Under Travel Options - Filter Transit Modes, please change the commuter rail label from 'Wes' to 'WES'.
1.0
WES Mode Label - Under Travel Options - Filter Transit Modes, please change the commuter rail label from 'Wes' to 'WES'.
priority
wes mode label under travel options filter transit modes please change the commuter rail label from wes to wes
1
498,181
14,402,765,666
IssuesEvent
2020-12-03 15:16:52
dita-ot/dita-ot
https://api.github.com/repos/dita-ot/dita-ot
closed
Profile DITA OT speed on very large DITA project
priority/high
One of our end users shared their 50k topic DITA project with us. It has about 2k DITA submaps. I started profiling it using JProfiler, one of the problems I encountered is that we are using linkedlists in GenMapAndTopicListModule instead of Linkedhashsets which would yield better results when checked with contains() <img width="662" alt="Screen Shot 2020-09-02 at 2 38 03 PM" src="https://user-images.githubusercontent.com/1005979/91978466-d2406180-ed2c-11ea-92ed-ef3beb00e8cf.png">
1.0
Profile DITA OT speed on very large DITA project - One of our end users shared their 50k topic DITA project with us. It has about 2k DITA submaps. I started profiling it using JProfiler, one of the problems I encountered is that we are using linkedlists in GenMapAndTopicListModule instead of Linkedhashsets which would yield better results when checked with contains() <img width="662" alt="Screen Shot 2020-09-02 at 2 38 03 PM" src="https://user-images.githubusercontent.com/1005979/91978466-d2406180-ed2c-11ea-92ed-ef3beb00e8cf.png">
priority
profile dita ot speed on very large dita project one of our end users shared their topic dita project with us it has about dita submaps i started profiling it using jprofiler one of the problems i encountered is that we are using linkedlists in genmapandtopiclistmodule instead of linkedhashsets which would yield better results when checked with contains img width alt screen shot at pm src
1
753,852
26,364,552,330
IssuesEvent
2023-01-11 15:39:42
vaticle/typedb-client-python
https://api.github.com/repos/vaticle/typedb-client-python
closed
Client-side timeout
type: bug priority: high
Client-python does not set a client-side timeout, and will stall forever if the network gets interrupted **Grakn version**: 1.5 **Reproducible step**: 1. Start grakn: `grakn server start` 2. Run the **python-equivalent** of the following Java queries using client-python: ``` try (GraknClient.Session session = new GraknClient("localhost:48555").session("grakn")) { while (true) { GraknClient.Transaction tx = session.transaction(Transaction.Type.WRITE); tx.execute(Graql.match(var("x").sub("thing")).get()); System.out.println("query"); tx.commit(); } } ``` 3. Pause grakn in the middle: `kill -STOP <grakn process id>` 4. Observe that the queries will stall and never times out **TODO** 1. The client should be able to set a timeout when instantiating the client. We need to set a default, eg., 15 seconds. ``` client1 = new Grakn(DEFAULT_URI, 20) // timeout set to 20 seconds client2 = new Grakn(DEFAULT_URI) // timeout set to the default timeout, eg., 15 seconds ``` 2. The provided timeout value should be used to set the deadline of GRPC requests.
1.0
Client-side timeout - Client-python does not set a client-side timeout, and will stall forever if the network gets interrupted **Grakn version**: 1.5 **Reproducible step**: 1. Start grakn: `grakn server start` 2. Run the **python-equivalent** of the following Java queries using client-python: ``` try (GraknClient.Session session = new GraknClient("localhost:48555").session("grakn")) { while (true) { GraknClient.Transaction tx = session.transaction(Transaction.Type.WRITE); tx.execute(Graql.match(var("x").sub("thing")).get()); System.out.println("query"); tx.commit(); } } ``` 3. Pause grakn in the middle: `kill -STOP <grakn process id>` 4. Observe that the queries will stall and never times out **TODO** 1. The client should be able to set a timeout when instantiating the client. We need to set a default, eg., 15 seconds. ``` client1 = new Grakn(DEFAULT_URI, 20) // timeout set to 20 seconds client2 = new Grakn(DEFAULT_URI) // timeout set to the default timeout, eg., 15 seconds ``` 2. The provided timeout value should be used to set the deadline of GRPC requests.
priority
client side timeout client python does not set a client side timeout and will stall forever if the network gets interrupted grakn version reproducible step start grakn grakn server start run the python equivalent of the following java queries using client python try graknclient session session new graknclient localhost session grakn while true graknclient transaction tx session transaction transaction type write tx execute graql match var x sub thing get system out println query tx commit pause grakn in the middle kill stop observe that the queries will stall and never times out todo the client should be able to set a timeout when instantiating the client we need to set a default eg seconds new grakn default uri timeout set to seconds new grakn default uri timeout set to the default timeout eg seconds the provided timeout value should be used to set the deadline of grpc requests
1
485,370
13,964,601,010
IssuesEvent
2020-10-25 18:49:14
hackcambridge/hc2020-prototype
https://api.github.com/repos/hackcambridge/hc2020-prototype
opened
Auth0 portal behaving weirdly
bug high priority
Rohit and Valerie report that they cannot access the `Sponsors Dashboard` as the authentication portal is not forwarding them to a Google sign-in page, but rather an Auth0 page. I managed to reproduce this by polluting the cookies and a corresponding reset of cookies fixes it. We need to explore what cookie(s) actually cause that problem and fix it.
1.0
Auth0 portal behaving weirdly - Rohit and Valerie report that they cannot access the `Sponsors Dashboard` as the authentication portal is not forwarding them to a Google sign-in page, but rather an Auth0 page. I managed to reproduce this by polluting the cookies and a corresponding reset of cookies fixes it. We need to explore what cookie(s) actually cause that problem and fix it.
priority
portal behaving weirdly rohit and valerie report that they cannot access the sponsors dashboard as the authentication portal is not forwarding them to a google sign in page but rather an page i managed to reproduce this by polluting the cookies and a corresponding reset of cookies fixes it we need to explore what cookie s actually cause that problem and fix it
1
790,742
27,835,113,016
IssuesEvent
2023-03-20 08:56:55
gama-platform/gama
https://api.github.com/repos/gama-platform/gama
closed
In fullscreen toolbar icons are barely visible on windows
😱 Bug About UI Priority High V. 1.9.0
**Describe the bug** When running a simulation in fullscreen on windows, the toolbar icons are super tiny for some reason, making them barely visible/usable, see around the slider at the bottom left-corner: ![image](https://user-images.githubusercontent.com/6374469/226237575-514bee02-830e-4207-9062-0fa983c3cb14.png) The problem occurs independent of scaling ratio, second screen (or not) and of the `dpi override` settings, tested on two different computers. It happens with 2d displays as well as 3d. **To Reproduce** Steps to reproduce the behavior: 1. Open any model with a display 2. add the `fullscreen` facet if not already there 3. See error **Expected behavior** Buttons are clearly visible
1.0
In fullscreen toolbar icons are barely visible on windows - **Describe the bug** When running a simulation in fullscreen on windows, the toolbar icons are super tiny for some reason, making them barely visible/usable, see around the slider at the bottom left-corner: ![image](https://user-images.githubusercontent.com/6374469/226237575-514bee02-830e-4207-9062-0fa983c3cb14.png) The problem occurs independent of scaling ratio, second screen (or not) and of the `dpi override` settings, tested on two different computers. It happens with 2d displays as well as 3d. **To Reproduce** Steps to reproduce the behavior: 1. Open any model with a display 2. add the `fullscreen` facet if not already there 3. See error **Expected behavior** Buttons are clearly visible
priority
in fullscreen toolbar icons are barely visible on windows describe the bug when running a simulation in fullscreen on windows the toolbar icons are super tiny for some reason making them barely visible usable see around the slider at the bottom left corner the problem occurs independent of scaling ratio second screen or not and of the dpi override settings tested on two different computers it happens with displays as well as to reproduce steps to reproduce the behavior open any model with a display add the fullscreen facet if not already there see error expected behavior buttons are clearly visible
1
329,283
10,014,367,805
IssuesEvent
2019-07-15 17:20:38
ABenchM/abm-frontend
https://api.github.com/repos/ABenchM/abm-frontend
closed
Download link for the published collection is not visible at the available collection page.
bug high priority
**Describe the bug** A reference to the published collection should be visible under Zenodo DOI reference header on the available collection page.
1.0
Download link for the published collection is not visible at the available collection page. - **Describe the bug** A reference to the published collection should be visible under Zenodo DOI reference header on the available collection page.
priority
download link for the published collection is not visible at the available collection page describe the bug a reference to the published collection should be visible under zenodo doi reference header on the available collection page
1
785,678
27,622,275,799
IssuesEvent
2023-03-10 01:51:07
AY2223S2-CS2113-T15-4/tp
https://api.github.com/repos/AY2223S2-CS2113-T15-4/tp
closed
Add the Flashcard class and set up the update due date formulas
type.Story priority.High
And probably some other important classes that we will need for all features. Hopefully I will be able to do it by tonight Thu 9 Mar.
1.0
Add the Flashcard class and set up the update due date formulas - And probably some other important classes that we will need for all features. Hopefully I will be able to do it by tonight Thu 9 Mar.
priority
add the flashcard class and set up the update due date formulas and probably some other important classes that we will need for all features hopefully i will be able to do it by tonight thu mar
1
649,355
21,280,218,947
IssuesEvent
2022-04-14 00:25:39
bounswe/bounswe2022group1
https://api.github.com/repos/bounswe/bounswe2022group1
closed
Class Diagram: Annotation Text
Priority: High Status: Review Needed Type: Task Status: Completed
![text](https://user-images.githubusercontent.com/74719781/161840582-ccd6a7e5-dedc-4688-9877-6e2c239f3e83.PNG) Annotation Text has fields such as text, color, and font spefications. Also has getter and setter methods for these.
1.0
Class Diagram: Annotation Text - ![text](https://user-images.githubusercontent.com/74719781/161840582-ccd6a7e5-dedc-4688-9877-6e2c239f3e83.PNG) Annotation Text has fields such as text, color, and font spefications. Also has getter and setter methods for these.
priority
class diagram annotation text annotation text has fields such as text color and font spefications also has getter and setter methods for these
1
207,251
7,126,593,960
IssuesEvent
2018-01-20 12:20:06
unitystation/unitystation
https://api.github.com/repos/unitystation/unitystation
closed
Items only placeable on left side of table
High Priority bug help wanted
# Preliminary information ## Category BUG ## Bug: Release or Development? BETA 3 # Report ## Current Behavior When you want to place an item on a table, it only works on the left-side of the table. No mater if that is the far or close side. ## Expected/Wanted/Requested Behavior You should be able to place items everywhere on the table tile. ## Steps to Reproduce Please enter the steps to reproduce the bug or behaviour: 1. try and place item on right side of table 2. try and place item on left side of table 3. ## OS used: OSX ## System specifications mbpr 2012 (late) ## Network 5 to 25ms ping
1.0
Items only placeable on left side of table - # Preliminary information ## Category BUG ## Bug: Release or Development? BETA 3 # Report ## Current Behavior When you want to place an item on a table, it only works on the left-side of the table. No mater if that is the far or close side. ## Expected/Wanted/Requested Behavior You should be able to place items everywhere on the table tile. ## Steps to Reproduce Please enter the steps to reproduce the bug or behaviour: 1. try and place item on right side of table 2. try and place item on left side of table 3. ## OS used: OSX ## System specifications mbpr 2012 (late) ## Network 5 to 25ms ping
priority
items only placeable on left side of table preliminary information category bug bug release or development beta report current behavior when you want to place an item on a table it only works on the left side of the table no mater if that is the far or close side expected wanted requested behavior you should be able to place items everywhere on the table tile steps to reproduce please enter the steps to reproduce the bug or behaviour try and place item on right side of table try and place item on left side of table os used osx system specifications mbpr late network to ping
1
457,473
13,157,245,592
IssuesEvent
2020-08-10 12:24:12
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
[0.9.0 staging-1706] Auth returns invite error when trying to login in-game
Category: Tech Priority: High Status: Fixed
History has happened on stagingland 1. Acc1 has bought and send invite to Email2 (account has not been existed) 2. Email2 go with link from the email and register Acc2 3. Acc2 is entering a SITE account SUCCESSFULLY. 4. Acc2 is going to launch a game and log in 5. Acc2 is sad, he could not log in ![Inkedbandicam 2020-08-06 16-21-03-465_LI](https://user-images.githubusercontent.com/27898520/89528607-c5e7e800-d804-11ea-892d-01dacfee6125.jpg) 6. And now site is rejecting him too, painfully ![bandicam 2020-08-06 16-50-44-410](https://user-images.githubusercontent.com/27898520/89528776-10696480-d805-11ea-8f7b-d5b7ec86e4ab.jpg) It's coming from here #17328
1.0
[0.9.0 staging-1706] Auth returns invite error when trying to login in-game - History has happened on stagingland 1. Acc1 has bought and send invite to Email2 (account has not been existed) 2. Email2 go with link from the email and register Acc2 3. Acc2 is entering a SITE account SUCCESSFULLY. 4. Acc2 is going to launch a game and log in 5. Acc2 is sad, he could not log in ![Inkedbandicam 2020-08-06 16-21-03-465_LI](https://user-images.githubusercontent.com/27898520/89528607-c5e7e800-d804-11ea-892d-01dacfee6125.jpg) 6. And now site is rejecting him too, painfully ![bandicam 2020-08-06 16-50-44-410](https://user-images.githubusercontent.com/27898520/89528776-10696480-d805-11ea-8f7b-d5b7ec86e4ab.jpg) It's coming from here #17328
priority
auth returns invite error when trying to login in game history has happened on stagingland has bought and send invite to account has not been existed go with link from the email and register is entering a site account successfully is going to launch a game and log in is sad he could not log in and now site is rejecting him too painfully it s coming from here
1
630,608
20,114,599,193
IssuesEvent
2022-02-07 18:08:55
ctm/mb2-doc
https://api.github.com/repos/ctm/mb2-doc
opened
consider adding a deterministic hash on client side when transitioning to craftpoker.com
chore high priority easy
Strongly consider adding a deterministic hash on the client side before transitioning to craftpoker.com. The current login process sends the password candidate to the server over HTTPS, where the server "immediately" hashes it using [rust-argon2](https://docs.sru-systems.com/rust-argon2/1.0.0/argon2/) before using argon2's [verify_encoded](https://docs.sru-systems.com/rust-argon2/1.0.0/argon2/fn.verify_encoded.html) function to determine if it is correct. Only the hash is stored in the database (and the database itself is encrypted at rest). Additionally, mb2 uses a `Password` type that doesn't implement `Display` and whose `Debug` implementation does not reveal the underlying text. As such, it's unlikely for that password candidate to be revealed, even in debug logging. However, if we add a deterministic hash on the client, it will be _impossible_ for the password candidate to be revealed, although that means all the existing password hashes (which is what is stored in the database) will no longer be valid. One way to deal with that is to support both the old way and the new way and have all new users use the new way. Then when an existing user logs in, convert that user from old to new. Another way to do it is to have a "great reset" where users basically have to update (or at least re-enter) their passwords on the new system. I'm leaning toward doing a great reset, but as part of the transition to craftpoker.com. I'll be changing players ids anyway at that time and presumably I'll do the transition before we have a great influx of users. To prevent myself from forgetting about this, I've labeled this issue `high priority` even though the transition to craftpoker.com is not impending.
1.0
consider adding a deterministic hash on client side when transitioning to craftpoker.com - Strongly consider adding a deterministic hash on the client side before transitioning to craftpoker.com. The current login process sends the password candidate to the server over HTTPS, where the server "immediately" hashes it using [rust-argon2](https://docs.sru-systems.com/rust-argon2/1.0.0/argon2/) before using argon2's [verify_encoded](https://docs.sru-systems.com/rust-argon2/1.0.0/argon2/fn.verify_encoded.html) function to determine if it is correct. Only the hash is stored in the database (and the database itself is encrypted at rest). Additionally, mb2 uses a `Password` type that doesn't implement `Display` and whose `Debug` implementation does not reveal the underlying text. As such, it's unlikely for that password candidate to be revealed, even in debug logging. However, if we add a deterministic hash on the client, it will be _impossible_ for the password candidate to be revealed, although that means all the existing password hashes (which is what is stored in the database) will no longer be valid. One way to deal with that is to support both the old way and the new way and have all new users use the new way. Then when an existing user logs in, convert that user from old to new. Another way to do it is to have a "great reset" where users basically have to update (or at least re-enter) their passwords on the new system. I'm leaning toward doing a great reset, but as part of the transition to craftpoker.com. I'll be changing players ids anyway at that time and presumably I'll do the transition before we have a great influx of users. To prevent myself from forgetting about this, I've labeled this issue `high priority` even though the transition to craftpoker.com is not impending.
priority
consider adding a deterministic hash on client side when transitioning to craftpoker com strongly consider adding a deterministic hash on the client side before transitioning to craftpoker com the current login process sends the password candidate to the server over https where the server immediately hashes it using before using s function to determine if it is correct only the hash is stored in the database and the database itself is encrypted at rest additionally uses a password type that doesn t implement display and whose debug implementation does not reveal the underlying text as such it s unlikely for that password candidate to be revealed even in debug logging however if we add a deterministic hash on the client it will be impossible for the password candidate to be revealed although that means all the existing password hashes which is what is stored in the database will no longer be valid one way to deal with that is to support both the old way and the new way and have all new users use the new way then when an existing user logs in convert that user from old to new another way to do it is to have a great reset where users basically have to update or at least re enter their passwords on the new system i m leaning toward doing a great reset but as part of the transition to craftpoker com i ll be changing players ids anyway at that time and presumably i ll do the transition before we have a great influx of users to prevent myself from forgetting about this i ve labeled this issue high priority even though the transition to craftpoker com is not impending
1
491,882
14,173,581,242
IssuesEvent
2020-11-12 18:33:21
wso2/product-is
https://api.github.com/repos/wso2/product-is
closed
Duplicate attributes for the same attribute name in SCIM2 Extensions
Priority/High Severity/Critical bug reviewed_511
In the latest scim2-schema-extension.config, there are 2 attributes defined for the same attribute name 'value' urn:ietf:params:scim:schemas:extension:enterprise:2.0:User:pendingEmails.value urn:ietf:params:scim:schemas:extension:enterprise:2.0:User:manager.value As a result, manager.value gets overridden by the other attribute. We need to fix this in charon level or define a different attribute name for pendingEmails.value. [1] https://github.com/wso2-extensions/identity-inbound-provisioning-scim2/blob/master/features/org.wso2.carbon.identity.scim2.common.feature/resources/scim2-schema-extension.config#L169
1.0
Duplicate attributes for the same attribute name in SCIM2 Extensions - In the latest scim2-schema-extension.config, there are 2 attributes defined for the same attribute name 'value' urn:ietf:params:scim:schemas:extension:enterprise:2.0:User:pendingEmails.value urn:ietf:params:scim:schemas:extension:enterprise:2.0:User:manager.value As a result, manager.value gets overridden by the other attribute. We need to fix this in charon level or define a different attribute name for pendingEmails.value. [1] https://github.com/wso2-extensions/identity-inbound-provisioning-scim2/blob/master/features/org.wso2.carbon.identity.scim2.common.feature/resources/scim2-schema-extension.config#L169
priority
duplicate attributes for the same attribute name in extensions in the latest schema extension config there are attributes defined for the same attribute name value urn ietf params scim schemas extension enterprise user pendingemails value urn ietf params scim schemas extension enterprise user manager value as a result manager value gets overridden by the other attribute we need to fix this in charon level or define a different attribute name for pendingemails value
1
414,827
12,112,015,331
IssuesEvent
2020-04-21 13:11:31
marklogic-community/pipes
https://api.github.com/repos/marklogic-community/pipes
closed
Toggles are not working correctly
bug fixed-in-master high-priority
It seems that Toggles are not correctly working (this might have impact on one of our POCs): The `mapValues` has a `wildcarded` toggle which is default `false`: ` { "type": "toggle", "name": "wildcarded", "default": false, "values": [] } ` And: `this.wildcarded = this.addWidget("toggle","wildcarded", false, function(v){}, {} );` However if you start pipes and add "string"-> "map values", then the default is true: ![image](https://user-images.githubusercontent.com/9380618/78506080-99995d80-7777-11ea-9914-10925cd23c9f.png)
1.0
Toggles are not working correctly - It seems that Toggles are not correctly working (this might have impact on one of our POCs): The `mapValues` has a `wildcarded` toggle which is default `false`: ` { "type": "toggle", "name": "wildcarded", "default": false, "values": [] } ` And: `this.wildcarded = this.addWidget("toggle","wildcarded", false, function(v){}, {} );` However if you start pipes and add "string"-> "map values", then the default is true: ![image](https://user-images.githubusercontent.com/9380618/78506080-99995d80-7777-11ea-9914-10925cd23c9f.png)
priority
toggles are not working correctly it seems that toggles are not correctly working this might have impact on one of our pocs the mapvalues has a wildcarded toggle which is default false type toggle name wildcarded default false values and this wildcarded this addwidget toggle wildcarded false function v however if you start pipes and add string map values then the default is true
1
642,019
20,865,416,689
IssuesEvent
2022-03-22 06:25:35
AlphaWallet/alpha-wallet-ios
https://api.github.com/repos/AlphaWallet/alpha-wallet-ios
closed
New iOS Release Fails to Read the True ETH Balance and Can't Send
High Priority
The new update for iOS fails to read the ETH balance on the info page and also it doesn't allow send the token. Observe that the main page shows the balance in ETH but not the value in USD. I attach screenshots. ![image](https://user-images.githubusercontent.com/100842739/159209968-fe938028-6dc7-4153-aecf-aa09b88a68ac.png) ![image](https://user-images.githubusercontent.com/100842739/159209985-a7dbfd41-209e-4557-b525-e1a81dc93c36.png)
1.0
New iOS Release Fails to Read the True ETH Balance and Can't Send - The new update for iOS fails to read the ETH balance on the info page and also it doesn't allow send the token. Observe that the main page shows the balance in ETH but not the value in USD. I attach screenshots. ![image](https://user-images.githubusercontent.com/100842739/159209968-fe938028-6dc7-4153-aecf-aa09b88a68ac.png) ![image](https://user-images.githubusercontent.com/100842739/159209985-a7dbfd41-209e-4557-b525-e1a81dc93c36.png)
priority
new ios release fails to read the true eth balance and can t send the new update for ios fails to read the eth balance on the info page and also it doesn t allow send the token observe that the main page shows the balance in eth but not the value in usd i attach screenshots
1
124,350
4,912,417,630
IssuesEvent
2016-11-23 08:59:46
code-corps/code-corps-api
https://api.github.com/repos/code-corps/code-corps-api
closed
Rename StripePlan to StripeConnectPlan
high priority in progress S
# Problem We need to rename `StripePlan` to `StripeConnectPlan`
1.0
Rename StripePlan to StripeConnectPlan - # Problem We need to rename `StripePlan` to `StripeConnectPlan`
priority
rename stripeplan to stripeconnectplan problem we need to rename stripeplan to stripeconnectplan
1
578,542
17,147,460,651
IssuesEvent
2021-07-13 16:04:39
bennyboer/bbb_app
https://api.github.com/repos/bennyboer/bbb_app
closed
Fix `dart_sip_ua` dependency (see comments)
bug high priority size: small
hello, i try to build the app with flutter 1.22.6 but there is many errors comes , is there any build instruction ??? kind regards
1.0
Fix `dart_sip_ua` dependency (see comments) - hello, i try to build the app with flutter 1.22.6 but there is many errors comes , is there any build instruction ??? kind regards
priority
fix dart sip ua dependency see comments hello i try to build the app with flutter but there is many errors comes is there any build instruction kind regards
1
168,566
6,378,196,161
IssuesEvent
2017-08-02 12:07:19
roschaefer/story.board
https://api.github.com/repos/roschaefer/story.board
opened
Close inside of cms for public view
Priority: high User Story
As an editor, i want that lists of tcs, triggers etc. and views of all elements should be non-viewable for not-log-in-users in order to produce my story undisturbed and keep the gifts for readers secret.
1.0
Close inside of cms for public view - As an editor, i want that lists of tcs, triggers etc. and views of all elements should be non-viewable for not-log-in-users in order to produce my story undisturbed and keep the gifts for readers secret.
priority
close inside of cms for public view as an editor i want that lists of tcs triggers etc and views of all elements should be non viewable for not log in users in order to produce my story undisturbed and keep the gifts for readers secret
1
664,757
22,287,142,146
IssuesEvent
2022-06-11 20:21:03
spnda/BlockProt
https://api.github.com/repos/spnda/BlockProt
closed
[Bug]: Users unable to access inventories always as it is random.
bug fixed high priority
### Version of BlockProt v1.1.0 - Spigot Plugin ### Description of the bug I have set permissions using luckyperms which also uses perms from essentialsX on a 1.19 server. I have followed the plugin instructions and still have the problem. I have 3 ranks, default, mod, and admin. The only permissions from the blockprot are .lock and .info which is given to the default account which all 3 ranks inherit. I am admin but do not have the blockprot .admin or.bypass. No one has these permissions. I am able to access chest and furnaces that are not locked but other people with the exact same chest cannot access it. It will force close the inventory if they touch the inventory of the chest or their own inventory. This happens with pre-generated chest and chest placed manually. It is very random per player/per inventory when this happens. Is this a known issue or a fix for this? Would love to keep this plugin on the server but cannot keeps spending 5-15 minutes trying to fix it with each user that gets on the server. ### Steps to reproduce 1. I am admin rank on my server but do not have op and inherit .lock and .info 2. I have another player who is default rank which has .lock and .info as well 3. The chest is unlocked but they cannot access their inventory or the chest inventory as it will force close the chest 4. If they lock it, sometimes they have the same issue but after about 60 seconds it all of a sudden works. 5. Breaking the chest will fix it for the individual for about 30 seconds and then the same issue happens. Again, it is random as when it works or not. 6. I rarely run into this issue with my own chest but do not have any advanced permissions that would be helping me have advantage which is the confusing part. 7. For this plugin, we all have the same exact permissions. ### Additional context _No response_
1.0
[Bug]: Users unable to access inventories always as it is random. - ### Version of BlockProt v1.1.0 - Spigot Plugin ### Description of the bug I have set permissions using luckyperms which also uses perms from essentialsX on a 1.19 server. I have followed the plugin instructions and still have the problem. I have 3 ranks, default, mod, and admin. The only permissions from the blockprot are .lock and .info which is given to the default account which all 3 ranks inherit. I am admin but do not have the blockprot .admin or.bypass. No one has these permissions. I am able to access chest and furnaces that are not locked but other people with the exact same chest cannot access it. It will force close the inventory if they touch the inventory of the chest or their own inventory. This happens with pre-generated chest and chest placed manually. It is very random per player/per inventory when this happens. Is this a known issue or a fix for this? Would love to keep this plugin on the server but cannot keeps spending 5-15 minutes trying to fix it with each user that gets on the server. ### Steps to reproduce 1. I am admin rank on my server but do not have op and inherit .lock and .info 2. I have another player who is default rank which has .lock and .info as well 3. The chest is unlocked but they cannot access their inventory or the chest inventory as it will force close the chest 4. If they lock it, sometimes they have the same issue but after about 60 seconds it all of a sudden works. 5. Breaking the chest will fix it for the individual for about 30 seconds and then the same issue happens. Again, it is random as when it works or not. 6. I rarely run into this issue with my own chest but do not have any advanced permissions that would be helping me have advantage which is the confusing part. 7. For this plugin, we all have the same exact permissions. ### Additional context _No response_
priority
users unable to access inventories always as it is random version of blockprot spigot plugin description of the bug i have set permissions using luckyperms which also uses perms from essentialsx on a server i have followed the plugin instructions and still have the problem i have ranks default mod and admin the only permissions from the blockprot are lock and info which is given to the default account which all ranks inherit i am admin but do not have the blockprot admin or bypass no one has these permissions i am able to access chest and furnaces that are not locked but other people with the exact same chest cannot access it it will force close the inventory if they touch the inventory of the chest or their own inventory this happens with pre generated chest and chest placed manually it is very random per player per inventory when this happens is this a known issue or a fix for this would love to keep this plugin on the server but cannot keeps spending minutes trying to fix it with each user that gets on the server steps to reproduce i am admin rank on my server but do not have op and inherit lock and info i have another player who is default rank which has lock and info as well the chest is unlocked but they cannot access their inventory or the chest inventory as it will force close the chest if they lock it sometimes they have the same issue but after about seconds it all of a sudden works breaking the chest will fix it for the individual for about seconds and then the same issue happens again it is random as when it works or not i rarely run into this issue with my own chest but do not have any advanced permissions that would be helping me have advantage which is the confusing part for this plugin we all have the same exact permissions additional context no response
1
284,798
8,750,785,884
IssuesEvent
2018-12-13 20:15:14
geneontology/go-ontology
https://api.github.com/repos/geneontology/go-ontology
closed
Status - GO release and PAINT annotations
high priority
Hi @cmungall What is the status on PAINT annotations integration (and export) in the GO database? For example this family have been modified in July - this is not yet showing up in AmiGO (annotation should be deleted): TMS1 | Vacuolar membrane protein of unknown function |   | L-serine transmembrane transporter activity |   | GO_Central | Saccharomyces cerevisiae S288C | IBA | PANTHER:PTN000043695 | serine incorporator pthr10383 |   | SGD_REF:S000185201 | 20150303 Thanks, Pascale
1.0
Status - GO release and PAINT annotations - Hi @cmungall What is the status on PAINT annotations integration (and export) in the GO database? For example this family have been modified in July - this is not yet showing up in AmiGO (annotation should be deleted): TMS1 | Vacuolar membrane protein of unknown function |   | L-serine transmembrane transporter activity |   | GO_Central | Saccharomyces cerevisiae S288C | IBA | PANTHER:PTN000043695 | serine incorporator pthr10383 |   | SGD_REF:S000185201 | 20150303 Thanks, Pascale
priority
status go release and paint annotations hi cmungall what is the status on paint annotations integration and export in the go database for example this family have been modified in july this is not yet showing up in amigo annotation should be deleted vacuolar membrane protein of unknown function   l serine transmembrane transporter activity   go central saccharomyces cerevisiae iba panther serine incorporator   sgd ref thanks pascale
1
348,707
10,451,735,103
IssuesEvent
2019-09-19 13:26:31
ahmedkaludi/accelerated-mobile-pages
https://api.github.com/repos/ahmedkaludi/accelerated-mobile-pages
closed
Issue with the post titles in single page (two H2 tags if logo is not inserted)
Urgent [Priority: HIGH] bug
There is an issue with the post titles in the single pages changed from H1 to H2, If the logo is inserted then it is working fine if not h1 is replaced with h2 tag in a single page. Ref link: https://moldedeletras.com/opake/amp/ Ref ticket: https://secure.helpscout.net/conversation/950861414/81433?folderId=3126461
1.0
Issue with the post titles in single page (two H2 tags if logo is not inserted) - There is an issue with the post titles in the single pages changed from H1 to H2, If the logo is inserted then it is working fine if not h1 is replaced with h2 tag in a single page. Ref link: https://moldedeletras.com/opake/amp/ Ref ticket: https://secure.helpscout.net/conversation/950861414/81433?folderId=3126461
priority
issue with the post titles in single page two tags if logo is not inserted there is an issue with the post titles in the single pages changed from to if the logo is inserted then it is working fine if not is replaced with tag in a single page ref link ref ticket
1
177,937
6,588,687,339
IssuesEvent
2017-09-14 05:05:02
mantidproject/mantid
https://api.github.com/repos/mantidproject/mantid
closed
runPythonScript causing crash
Priority: High
In muon analysis the code crashes when runPythonScript is called. To reproduce the bug: 1. load some data into muon analysis 2. Change to the data analysis tab 3. Get an error message I have had the crash on both windows and unix.
1.0
runPythonScript causing crash - In muon analysis the code crashes when runPythonScript is called. To reproduce the bug: 1. load some data into muon analysis 2. Change to the data analysis tab 3. Get an error message I have had the crash on both windows and unix.
priority
runpythonscript causing crash in muon analysis the code crashes when runpythonscript is called to reproduce the bug load some data into muon analysis change to the data analysis tab get an error message i have had the crash on both windows and unix
1
578,752
17,152,993,374
IssuesEvent
2021-07-14 00:24:54
Thorium-Sim/thorium
https://api.github.com/repos/Thorium-Sim/thorium
opened
Deletion of Tasks
priority/high type/feature
### Requested By: Bracken ### Priority: High ### Version: 3.3.1 I don't know if you're up for this, but we need a way to be able to delete a task so that it doesn't continue a flow when and if time needs to be rewound for some reason. If I dismiss a task and it starts something automatically, then we have a problem, and sometimes rewinding time requires us to back up steps. I can reissue the flow, but I can't delete ones that got placed. Help?
1.0
Deletion of Tasks - ### Requested By: Bracken ### Priority: High ### Version: 3.3.1 I don't know if you're up for this, but we need a way to be able to delete a task so that it doesn't continue a flow when and if time needs to be rewound for some reason. If I dismiss a task and it starts something automatically, then we have a problem, and sometimes rewinding time requires us to back up steps. I can reissue the flow, but I can't delete ones that got placed. Help?
priority
deletion of tasks requested by bracken priority high version i don t know if you re up for this but we need a way to be able to delete a task so that it doesn t continue a flow when and if time needs to be rewound for some reason if i dismiss a task and it starts something automatically then we have a problem and sometimes rewinding time requires us to back up steps i can reissue the flow but i can t delete ones that got placed help
1
96,881
3,974,529,613
IssuesEvent
2016-05-04 22:36:31
ualbertalib/HydraNorth
https://api.github.com/repos/ualbertalib/HydraNorth
closed
date_uploaded mapping
priority:high size:small
According to the decision made on the Date Summit and following discussions with @sfarnel and @anayram , date_uploaded should use: info:fedora/fedora-system:def/model#createdDate to reflect the original date when the object first entered any of our systems. So current mapping need to be changed from dcterms:dateSubmitted to reflect this decision. This will also be reflected in the data change in #977
1.0
date_uploaded mapping - According to the decision made on the Date Summit and following discussions with @sfarnel and @anayram , date_uploaded should use: info:fedora/fedora-system:def/model#createdDate to reflect the original date when the object first entered any of our systems. So current mapping need to be changed from dcterms:dateSubmitted to reflect this decision. This will also be reflected in the data change in #977
priority
date uploaded mapping according to the decision made on the date summit and following discussions with sfarnel and anayram date uploaded should use info fedora fedora system def model createddate to reflect the original date when the object first entered any of our systems so current mapping need to be changed from dcterms datesubmitted to reflect this decision this will also be reflected in the data change in
1
728,719
25,089,672,777
IssuesEvent
2022-11-08 04:31:48
Azekthi/RibbonMasters
https://api.github.com/repos/Azekthi/RibbonMasters
closed
Add search field for Pokemon species selection
enhancement high priority
I suppose this is more of a QoL improvement than anything else. Mobile users aren't able to search through the list of Pokemon species like PC users are able to. The current selection feature is functional, although they can greatly benefit from a search function instead of scrolling through a long list of items.
1.0
Add search field for Pokemon species selection - I suppose this is more of a QoL improvement than anything else. Mobile users aren't able to search through the list of Pokemon species like PC users are able to. The current selection feature is functional, although they can greatly benefit from a search function instead of scrolling through a long list of items.
priority
add search field for pokemon species selection i suppose this is more of a qol improvement than anything else mobile users aren t able to search through the list of pokemon species like pc users are able to the current selection feature is functional although they can greatly benefit from a search function instead of scrolling through a long list of items
1
340,140
10,267,241,837
IssuesEvent
2019-08-23 00:38:19
byu-animation/dccpipe
https://api.github.com/repos/byu-animation/dccpipe
closed
automatic Alembic Export isn't working consistently when publishing
Maya bug priority: high
Alembic export isn't working for sets. 1. Create a prop 2. Create a set 3. Reference the prop 4. Export Error: "No valid root nodes were selected" Problem: alembic export mel command isn't using the right root node in the command. Maybe because the top level node isn't tagged right? Maybe because the wrong root node is grabbed.
1.0
automatic Alembic Export isn't working consistently when publishing - Alembic export isn't working for sets. 1. Create a prop 2. Create a set 3. Reference the prop 4. Export Error: "No valid root nodes were selected" Problem: alembic export mel command isn't using the right root node in the command. Maybe because the top level node isn't tagged right? Maybe because the wrong root node is grabbed.
priority
automatic alembic export isn t working consistently when publishing alembic export isn t working for sets create a prop create a set reference the prop export error no valid root nodes were selected problem alembic export mel command isn t using the right root node in the command maybe because the top level node isn t tagged right maybe because the wrong root node is grabbed
1
143,776
5,523,322,972
IssuesEvent
2017-03-20 05:59:01
ajency/Listr
https://api.github.com/repos/ajency/Listr
opened
On assigning a catalog to user 'Robiul', when viewed form robiuls account - The notification display message needs to be changed
High priority
1. Assigned a catalog to robiul H 2. Logged in from robiul's account 3. Open the notification panel -shows message 'has been assigned a Catalog 138' Expected: Should read - you have been assigned a Catalog 138 ![image](https://cloud.githubusercontent.com/assets/11714762/24089727/ba25363a-0d5f-11e7-82b0-2fb76b1b066b.png)
1.0
On assigning a catalog to user 'Robiul', when viewed form robiuls account - The notification display message needs to be changed - 1. Assigned a catalog to robiul H 2. Logged in from robiul's account 3. Open the notification panel -shows message 'has been assigned a Catalog 138' Expected: Should read - you have been assigned a Catalog 138 ![image](https://cloud.githubusercontent.com/assets/11714762/24089727/ba25363a-0d5f-11e7-82b0-2fb76b1b066b.png)
priority
on assigning a catalog to user robiul when viewed form robiuls account the notification display message needs to be changed assigned a catalog to robiul h logged in from robiul s account open the notification panel shows message has been assigned a catalog expected should read you have been assigned a catalog
1
321,517
9,799,774,738
IssuesEvent
2019-06-11 15:01:50
input-output-hk/jormungandr
https://api.github.com/repos/input-output-hk/jormungandr
closed
Error when verifying transaction with fee
Priority - High bug subsys-transaction
**Describe the bug** What I think is a valid transaction is not getting accepted by the node when using fees. **To Reproduce** I'm creating a transaction with the following commands ```sh jcli transaction new > tx jcli transaction add-input 55762218e5737603e6d27d36c8aacf8fcd16406e820361a8ac65c7dc663f6d1c 0 1000000000000 --staging tx jcli transaction add-output $(cat address) 10000 --staging tx jcli transaction finalize ta1sn9u0nxmnfg7af8ycuygx57p5xgzmnmgtaeer9xun7hly6mlgt3pjp0h0rrq782p7z4auve0s4l72egyc88f49mzm8lwuaw7xnw52udky79t3s --fee-coefficient 8 --fee-constant 10 --staging tx ``` Transaction info shows the following (implying the transaction is balanced actually balanced) ```sh jcli transaction info --fee-coefficient 8 --fee-constant 10 --staging >>> txTransaction `de27321313dfe713b530266dd912c4ffee1ab822ec5df6b40d51a900e2d047ad' (finalizing) Input: 1000000000000 Output: 999999999966 Fees: 34 Balance: 0 - 55762218e5737603e6d27d36c8aacf8fcd16406e820361a8ac65c7dc663f6d1c:0 1000000000000 + ta1ssnr5pvt9e5p009strshxndrsx5etcentslp2rwj6csm8sfk24a2wu27hujgyzl4mlc736jaztykud5tqrxw5gd6esmw7rx5zujdzw3ahcaskk 10000 + ta1sn9u0nxmnfg7af8ycuygx57p5xgzmnmgtaeer9xun7hly6mlgt3pjp0h0rrq782p7z4auve0s4l72egyc88f49mzm8lwuaw7xnw52udky79t3s 999999989966 ``` I have this in the genesis config ```yaml linear_fee: constant: 10 coefficient: 8 certificate: 0 ``` After signing it and sending it to the node, I'm getting the following error from the logs of the rest api ``` - fragment_id: 8ca71424b2e7494d5f7bfd1c1b2cf5154b7468a439e99449a9023ef29b103c1e last_updated_at: "2019-06-10T18:51:37.035303063Z" received_at: "2019-06-10T18:50:57.470363704Z" received_from: Rest status: Rejected: reason: "Inputs, outputs and fees are not balanced, transaction with 1000000000000 input and 1000000000034 output" ``` **Expected behavior** The transaction gets accepted in block. **Additional context** I'm not getting this error when not setting fees (constant 0, coefficient 0), and I think the problem may be that the validation is checking inputs == inputs + fee in [this line](https://github.com/input-output-hk/rust-cardano/blob/6991be0ea796abee4418d1143b5a36065884d2b0/chain-impl-mockchain/src/ledger.rs#L620) but I may be wrong
1.0
Error when verifying transaction with fee - **Describe the bug** What I think is a valid transaction is not getting accepted by the node when using fees. **To Reproduce** I'm creating a transaction with the following commands ```sh jcli transaction new > tx jcli transaction add-input 55762218e5737603e6d27d36c8aacf8fcd16406e820361a8ac65c7dc663f6d1c 0 1000000000000 --staging tx jcli transaction add-output $(cat address) 10000 --staging tx jcli transaction finalize ta1sn9u0nxmnfg7af8ycuygx57p5xgzmnmgtaeer9xun7hly6mlgt3pjp0h0rrq782p7z4auve0s4l72egyc88f49mzm8lwuaw7xnw52udky79t3s --fee-coefficient 8 --fee-constant 10 --staging tx ``` Transaction info shows the following (implying the transaction is balanced actually balanced) ```sh jcli transaction info --fee-coefficient 8 --fee-constant 10 --staging >>> txTransaction `de27321313dfe713b530266dd912c4ffee1ab822ec5df6b40d51a900e2d047ad' (finalizing) Input: 1000000000000 Output: 999999999966 Fees: 34 Balance: 0 - 55762218e5737603e6d27d36c8aacf8fcd16406e820361a8ac65c7dc663f6d1c:0 1000000000000 + ta1ssnr5pvt9e5p009strshxndrsx5etcentslp2rwj6csm8sfk24a2wu27hujgyzl4mlc736jaztykud5tqrxw5gd6esmw7rx5zujdzw3ahcaskk 10000 + ta1sn9u0nxmnfg7af8ycuygx57p5xgzmnmgtaeer9xun7hly6mlgt3pjp0h0rrq782p7z4auve0s4l72egyc88f49mzm8lwuaw7xnw52udky79t3s 999999989966 ``` I have this in the genesis config ```yaml linear_fee: constant: 10 coefficient: 8 certificate: 0 ``` After signing it and sending it to the node, I'm getting the following error from the logs of the rest api ``` - fragment_id: 8ca71424b2e7494d5f7bfd1c1b2cf5154b7468a439e99449a9023ef29b103c1e last_updated_at: "2019-06-10T18:51:37.035303063Z" received_at: "2019-06-10T18:50:57.470363704Z" received_from: Rest status: Rejected: reason: "Inputs, outputs and fees are not balanced, transaction with 1000000000000 input and 1000000000034 output" ``` **Expected behavior** The transaction gets accepted in block. **Additional context** I'm not getting this error when not setting fees (constant 0, coefficient 0), and I think the problem may be that the validation is checking inputs == inputs + fee in [this line](https://github.com/input-output-hk/rust-cardano/blob/6991be0ea796abee4418d1143b5a36065884d2b0/chain-impl-mockchain/src/ledger.rs#L620) but I may be wrong
priority
error when verifying transaction with fee describe the bug what i think is a valid transaction is not getting accepted by the node when using fees to reproduce i m creating a transaction with the following commands sh jcli transaction new tx jcli transaction add input staging tx jcli transaction add output cat address staging tx jcli transaction finalize fee coefficient fee constant staging tx transaction info shows the following implying the transaction is balanced actually balanced sh jcli transaction info fee coefficient fee constant staging txtransaction finalizing input output fees balance i have this in the genesis config yaml linear fee constant coefficient certificate after signing it and sending it to the node i m getting the following error from the logs of the rest api fragment id last updated at received at received from rest status rejected reason inputs outputs and fees are not balanced transaction with input and output expected behavior the transaction gets accepted in block additional context i m not getting this error when not setting fees constant coefficient and i think the problem may be that the validation is checking inputs inputs fee in but i may be wrong
1
510,935
14,849,879,000
IssuesEvent
2021-01-18 02:45:26
grannypron/uaf_levels
https://api.github.com/repos/grannypron/uaf_levels
opened
Error when calling Reduce spell
bug game39 high priority
Same problem as Reduce spell. In this one, though, we should force a saving throw, I think because no one would want to be reduced in PoR. ![uaf_00137](https://user-images.githubusercontent.com/19980049/104866747-4dd23200-590d-11eb-9215-0cb4ff570be2.png)
1.0
Error when calling Reduce spell - Same problem as Reduce spell. In this one, though, we should force a saving throw, I think because no one would want to be reduced in PoR. ![uaf_00137](https://user-images.githubusercontent.com/19980049/104866747-4dd23200-590d-11eb-9215-0cb4ff570be2.png)
priority
error when calling reduce spell same problem as reduce spell in this one though we should force a saving throw i think because no one would want to be reduced in por
1
737,072
25,499,398,122
IssuesEvent
2022-11-28 01:38:30
Co-Laon/claon-server
https://api.github.com/repos/Co-Laon/claon-server
closed
게시글 상세 조회시 게시글 작성자 여부 반환 필요
refactor priority: high
## Describe PostDetailResponseDto에 자신의 게시글인지 확인할 수 있는 플래그 추가 ## (Optional) Solution Please describe your preferred solution -
1.0
게시글 상세 조회시 게시글 작성자 여부 반환 필요 - ## Describe PostDetailResponseDto에 자신의 게시글인지 확인할 수 있는 플래그 추가 ## (Optional) Solution Please describe your preferred solution -
priority
게시글 상세 조회시 게시글 작성자 여부 반환 필요 describe postdetailresponsedto에 자신의 게시글인지 확인할 수 있는 플래그 추가 optional solution please describe your preferred solution
1
211,993
7,225,817,620
IssuesEvent
2018-02-10 01:17:01
craftercms/craftercms
https://api.github.com/repos/craftercms/craftercms
closed
[studio-ui] dropdown followed by a repeat group does not render properly in content form
bug priority: high
### Expected behavior * Dropdown should have proper padding around it and should not "clip" into the repeat control ### Actual behavior <img width="1079" alt="screen shot 2018-01-30 at 12 00 32 pm" src="https://user-images.githubusercontent.com/169432/35579864-ab7d5762-05b5-11e8-8923-bfcdce97e1ad.png"> <img width="1095" alt="screen shot 2018-01-30 at 12 00 18 pm" src="https://user-images.githubusercontent.com/169432/35579944-e8e1598c-05b5-11e8-87ef-7c8bfb8c9333.png"> ### Steps to reproduce the problem * Create a simple form definition as shown above * Open form * Note rendering defect ### Log/stack trace (use https://gist.github.com) ### Specs Studio Version Number: 3.1.0-SNAPSHOT-0fe618 Build Number: 0fe618ef33e5f9a1593a5555b3efcc1bc7276641 Build Date/Time: 01-30-2018 11:12:20 -0500 #### Browser Chrome
1.0
[studio-ui] dropdown followed by a repeat group does not render properly in content form - ### Expected behavior * Dropdown should have proper padding around it and should not "clip" into the repeat control ### Actual behavior <img width="1079" alt="screen shot 2018-01-30 at 12 00 32 pm" src="https://user-images.githubusercontent.com/169432/35579864-ab7d5762-05b5-11e8-8923-bfcdce97e1ad.png"> <img width="1095" alt="screen shot 2018-01-30 at 12 00 18 pm" src="https://user-images.githubusercontent.com/169432/35579944-e8e1598c-05b5-11e8-87ef-7c8bfb8c9333.png"> ### Steps to reproduce the problem * Create a simple form definition as shown above * Open form * Note rendering defect ### Log/stack trace (use https://gist.github.com) ### Specs Studio Version Number: 3.1.0-SNAPSHOT-0fe618 Build Number: 0fe618ef33e5f9a1593a5555b3efcc1bc7276641 Build Date/Time: 01-30-2018 11:12:20 -0500 #### Browser Chrome
priority
dropdown followed by a repeat group does not render properly in content form expected behavior dropdown should have proper padding around it and should not clip into the repeat control actual behavior img width alt screen shot at pm src img width alt screen shot at pm src steps to reproduce the problem create a simple form definition as shown above open form note rendering defect log stack trace use specs studio version number snapshot build number build date time browser chrome
1
80,010
3,549,534,439
IssuesEvent
2016-01-20 18:23:35
ChimpLab/riosdevida-theme
https://api.github.com/repos/ChimpLab/riosdevida-theme
closed
Location Animation
Bug High Priority
The JS animation looks bad if you click on the same link. There should be no animation if the link has active class. This is for all views.
1.0
Location Animation - The JS animation looks bad if you click on the same link. There should be no animation if the link has active class. This is for all views.
priority
location animation the js animation looks bad if you click on the same link there should be no animation if the link has active class this is for all views
1
382,888
11,339,519,528
IssuesEvent
2020-01-23 02:20:10
malaquiasdev/studio-ghibli-worker
https://api.github.com/repos/malaquiasdev/studio-ghibli-worker
closed
Create a Scrapy flow to get the imdb_id from search/keyword page
Priority: High Status: Complete
**Is your feature request related to a problem? Please describe.** The first step of this worker is fetch the imdb id of each content returned by search/keyword page. **Describe the solution you'd like** 1. request the page: https://www.imdb.com/search/keyword/?keywords=studio-ghibli 2. get the div object with `class="lister-list"` 3. for each `class="lister-item mode-detail"` inside of **lister-list** get the div with `class="lister-item-image ribbonize"` 4. the div `class="lister-item-image ribbonize"` has a property called **data-tconst**. The **data-const is the imdb_id**. **Describe alternatives you've considered** **Additional context**
1.0
Create a Scrapy flow to get the imdb_id from search/keyword page - **Is your feature request related to a problem? Please describe.** The first step of this worker is fetch the imdb id of each content returned by search/keyword page. **Describe the solution you'd like** 1. request the page: https://www.imdb.com/search/keyword/?keywords=studio-ghibli 2. get the div object with `class="lister-list"` 3. for each `class="lister-item mode-detail"` inside of **lister-list** get the div with `class="lister-item-image ribbonize"` 4. the div `class="lister-item-image ribbonize"` has a property called **data-tconst**. The **data-const is the imdb_id**. **Describe alternatives you've considered** **Additional context**
priority
create a scrapy flow to get the imdb id from search keyword page is your feature request related to a problem please describe the first step of this worker is fetch the imdb id of each content returned by search keyword page describe the solution you d like request the page get the div object with class lister list for each class lister item mode detail inside of lister list get the div with class lister item image ribbonize the div class lister item image ribbonize has a property called data tconst the data const is the imdb id describe alternatives you ve considered additional context
1
482,979
13,917,001,790
IssuesEvent
2020-10-21 04:55:51
AY2021S1-CS2113T-F11-1/tp
https://api.github.com/repos/AY2021S1-CS2113T-F11-1/tp
closed
As a user, I can edit my profile after adding
priority.High profile type.Story
so that I can reflect my latest data (height, weight, or expected weight) in the database.
1.0
As a user, I can edit my profile after adding - so that I can reflect my latest data (height, weight, or expected weight) in the database.
priority
as a user i can edit my profile after adding so that i can reflect my latest data height weight or expected weight in the database
1
383,980
11,372,273,642
IssuesEvent
2020-01-28 01:14:24
ucbtrans/opt
https://api.github.com/repos/ucbtrans/opt
opened
Error saving .opt config with controllers
High Priority bug
I added a controller, and now get this exception when trying to save the config: java.lang.NullPointerException at opt.data.Scenario.lambda$to_jaxb$10(Scenario.java:405) at java.base/java.util.stream.ReferencePipeline$7$1.accept(ReferencePipeline.java:271) at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1654) at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:484) at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:474) at java.base/java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:913) at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) at java.base/java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:578) at opt.data.Scenario.to_jaxb(Scenario.java:406) at opt.data.FreewayScenario.to_jaxb(FreewayScenario.java:618) at opt.data.Project.to_jaxb(Project.java:165) at opt.data.ProjectFactory.save_project(ProjectFactory.java:73) at opt.AppMainController.onClickMenuFileSaveAs(AppMainController.java:527) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at com.sun.javafx.reflect.Trampoline.invoke(MethodUtil.java:76) at jdk.internal.reflect.GeneratedMethodAccessor49.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at com.sun.javafx.reflect.MethodUtil.invoke(MethodUtil.java:273) at com.sun.javafx.fxml.MethodHelper.invoke(MethodHelper.java:83) at javafx.fxml.FXMLLoader$MethodHandler.invoke(FXMLLoader.java:1782) at javafx.fxml.FXMLLoader$ControllerMethodEventHandler.handle(FXMLLoader.java:1670) at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:86) at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:238) at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:191) at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:58) at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114) at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:74) at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:49) at javafx.event.Event.fireEvent(Event.java:198) at javafx.scene.control.MenuItem.fire(MenuItem.java:465) at com.sun.javafx.scene.control.ContextMenuContent$MenuItemContainer.doSelect(ContextMenuContent.java:1380) at com.sun.javafx.scene.control.ContextMenuContent$MenuItemContainer.lambda$createChildren$12(ContextMenuContent.java:1333) at com.sun.javafx.event.CompositeEventHandler$NormalEventHandlerRecord.handleBubblingEvent(CompositeEventHandler.java:218) at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:80) at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:238) at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:191) at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:59) at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:58) at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114) at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56) at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114) at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56) at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114) at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56) at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114) at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:74) at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:54) at javafx.event.Event.fireEvent(Event.java:198) at javafx.scene.Scene$MouseHandler.process(Scene.java:3851) at javafx.scene.Scene$MouseHandler.access$1200(Scene.java:3579) at javafx.scene.Scene.processMouseEvent(Scene.java:1849) at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2588) at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:397) at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:295) at java.base/java.security.AccessController.doPrivileged(Native Method) at com.sun.javafx.tk.quantum.GlassViewEventHandler.lambda$handleMouseEvent$2(GlassViewEventHandler.java:434) at com.sun.javafx.tk.quantum.QuantumToolkit.runWithoutRenderLock(QuantumToolkit.java:390) at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:433) at com.sun.glass.ui.View.handleMouseEvent(View.java:556) at com.sun.glass.ui.View.notifyMouse(View.java:942) at com.sun.glass.ui.win.WinApplication._runLoop(Native Method) at com.sun.glass.ui.win.WinApplication.lambda$runLoop$3(WinApplication.java:174) at java.base/java.lang.Thread.run(Thread.java:834)
1.0
Error saving .opt config with controllers - I added a controller, and now get this exception when trying to save the config: java.lang.NullPointerException at opt.data.Scenario.lambda$to_jaxb$10(Scenario.java:405) at java.base/java.util.stream.ReferencePipeline$7$1.accept(ReferencePipeline.java:271) at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1654) at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:484) at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:474) at java.base/java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:913) at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) at java.base/java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:578) at opt.data.Scenario.to_jaxb(Scenario.java:406) at opt.data.FreewayScenario.to_jaxb(FreewayScenario.java:618) at opt.data.Project.to_jaxb(Project.java:165) at opt.data.ProjectFactory.save_project(ProjectFactory.java:73) at opt.AppMainController.onClickMenuFileSaveAs(AppMainController.java:527) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at com.sun.javafx.reflect.Trampoline.invoke(MethodUtil.java:76) at jdk.internal.reflect.GeneratedMethodAccessor49.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at com.sun.javafx.reflect.MethodUtil.invoke(MethodUtil.java:273) at com.sun.javafx.fxml.MethodHelper.invoke(MethodHelper.java:83) at javafx.fxml.FXMLLoader$MethodHandler.invoke(FXMLLoader.java:1782) at javafx.fxml.FXMLLoader$ControllerMethodEventHandler.handle(FXMLLoader.java:1670) at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:86) at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:238) at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:191) at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:58) at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114) at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:74) at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:49) at javafx.event.Event.fireEvent(Event.java:198) at javafx.scene.control.MenuItem.fire(MenuItem.java:465) at com.sun.javafx.scene.control.ContextMenuContent$MenuItemContainer.doSelect(ContextMenuContent.java:1380) at com.sun.javafx.scene.control.ContextMenuContent$MenuItemContainer.lambda$createChildren$12(ContextMenuContent.java:1333) at com.sun.javafx.event.CompositeEventHandler$NormalEventHandlerRecord.handleBubblingEvent(CompositeEventHandler.java:218) at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:80) at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:238) at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:191) at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:59) at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:58) at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114) at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56) at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114) at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56) at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114) at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56) at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114) at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:74) at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:54) at javafx.event.Event.fireEvent(Event.java:198) at javafx.scene.Scene$MouseHandler.process(Scene.java:3851) at javafx.scene.Scene$MouseHandler.access$1200(Scene.java:3579) at javafx.scene.Scene.processMouseEvent(Scene.java:1849) at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2588) at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:397) at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:295) at java.base/java.security.AccessController.doPrivileged(Native Method) at com.sun.javafx.tk.quantum.GlassViewEventHandler.lambda$handleMouseEvent$2(GlassViewEventHandler.java:434) at com.sun.javafx.tk.quantum.QuantumToolkit.runWithoutRenderLock(QuantumToolkit.java:390) at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:433) at com.sun.glass.ui.View.handleMouseEvent(View.java:556) at com.sun.glass.ui.View.notifyMouse(View.java:942) at com.sun.glass.ui.win.WinApplication._runLoop(Native Method) at com.sun.glass.ui.win.WinApplication.lambda$runLoop$3(WinApplication.java:174) at java.base/java.lang.Thread.run(Thread.java:834)
priority
error saving opt config with controllers i added a controller and now get this exception when trying to save the config java lang nullpointerexception at opt data scenario lambda to jaxb scenario java at java base java util stream referencepipeline accept referencepipeline java at java base java util arraylist arraylistspliterator foreachremaining arraylist java at java base java util stream abstractpipeline copyinto abstractpipeline java at java base java util stream abstractpipeline wrapandcopyinto abstractpipeline java at java base java util stream reduceops reduceop evaluatesequential reduceops java at java base java util stream abstractpipeline evaluate abstractpipeline java at java base java util stream referencepipeline collect referencepipeline java at opt data scenario to jaxb scenario java at opt data freewayscenario to jaxb freewayscenario java at opt data project to jaxb project java at opt data projectfactory save project projectfactory java at opt appmaincontroller onclickmenufilesaveas appmaincontroller java at java base jdk internal reflect nativemethodaccessorimpl native method at java base jdk internal reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at java base jdk internal reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java base java lang reflect method invoke method java at com sun javafx reflect trampoline invoke methodutil java at jdk internal reflect invoke unknown source at java base jdk internal reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java base java lang reflect method invoke method java at com sun javafx reflect methodutil invoke methodutil java at com sun javafx fxml methodhelper invoke methodhelper java at javafx fxml fxmlloader methodhandler invoke fxmlloader java at javafx fxml fxmlloader controllermethodeventhandler handle fxmlloader java at com sun javafx event compositeeventhandler dispatchbubblingevent compositeeventhandler java at com sun javafx event eventhandlermanager dispatchbubblingevent eventhandlermanager java at com sun javafx event eventhandlermanager dispatchbubblingevent eventhandlermanager java at com sun javafx event basiceventdispatcher dispatchevent basiceventdispatcher java at com sun javafx event eventdispatchchainimpl dispatchevent eventdispatchchainimpl java at com sun javafx event eventutil fireeventimpl eventutil java at com sun javafx event eventutil fireevent eventutil java at javafx event event fireevent event java at javafx scene control menuitem fire menuitem java at com sun javafx scene control contextmenucontent menuitemcontainer doselect contextmenucontent java at com sun javafx scene control contextmenucontent menuitemcontainer lambda createchildren contextmenucontent java at com sun javafx event compositeeventhandler normaleventhandlerrecord handlebubblingevent compositeeventhandler java at com sun javafx event compositeeventhandler dispatchbubblingevent compositeeventhandler java at com sun javafx event eventhandlermanager dispatchbubblingevent eventhandlermanager java at com sun javafx event eventhandlermanager dispatchbubblingevent eventhandlermanager java at com sun javafx event compositeeventdispatcher dispatchbubblingevent compositeeventdispatcher java at com sun javafx event basiceventdispatcher dispatchevent basiceventdispatcher java at com sun javafx event eventdispatchchainimpl dispatchevent eventdispatchchainimpl java at com sun javafx event basiceventdispatcher dispatchevent basiceventdispatcher java at com sun javafx event eventdispatchchainimpl dispatchevent eventdispatchchainimpl java at com sun javafx event basiceventdispatcher dispatchevent basiceventdispatcher java at com sun javafx event eventdispatchchainimpl dispatchevent eventdispatchchainimpl java at com sun javafx event basiceventdispatcher dispatchevent basiceventdispatcher java at com sun javafx event eventdispatchchainimpl dispatchevent eventdispatchchainimpl java at com sun javafx event eventutil fireeventimpl eventutil java at com sun javafx event eventutil fireevent eventutil java at javafx event event fireevent event java at javafx scene scene mousehandler process scene java at javafx scene scene mousehandler access scene java at javafx scene scene processmouseevent scene java at javafx scene scene scenepeerlistener mouseevent scene java at com sun javafx tk quantum glassvieweventhandler mouseeventnotification run glassvieweventhandler java at com sun javafx tk quantum glassvieweventhandler mouseeventnotification run glassvieweventhandler java at java base java security accesscontroller doprivileged native method at com sun javafx tk quantum glassvieweventhandler lambda handlemouseevent glassvieweventhandler java at com sun javafx tk quantum quantumtoolkit runwithoutrenderlock quantumtoolkit java at com sun javafx tk quantum glassvieweventhandler handlemouseevent glassvieweventhandler java at com sun glass ui view handlemouseevent view java at com sun glass ui view notifymouse view java at com sun glass ui win winapplication runloop native method at com sun glass ui win winapplication lambda runloop winapplication java at java base java lang thread run thread java
1
726,432
24,999,203,786
IssuesEvent
2022-11-03 05:41:26
AY2223S1-CS2103T-W15-1/tp
https://api.github.com/repos/AY2223S1-CS2103T-W15-1/tp
closed
[PE-D][Tester B] Edit command does not allow edit to be done on contact with the same name
bug priority.High
![image.png](https://raw.githubusercontent.com/PeiYee88/ped/main/files/cf25ef4c-98dc-49b7-b5f0-5e581e0ffcef.png) In my opinion, I think edit should be allowed unless all the other fields are the same. Quite common to have the same name <!--session: 1666942944315-ae116179-fb18-4cf4-94b2-7dad168c8a9a--> <!--Version: Web v3.4.4--> ------------- Labels: `type.FeatureFlaw` `severity.Medium` original: PeiYee88/ped#11
1.0
[PE-D][Tester B] Edit command does not allow edit to be done on contact with the same name - ![image.png](https://raw.githubusercontent.com/PeiYee88/ped/main/files/cf25ef4c-98dc-49b7-b5f0-5e581e0ffcef.png) In my opinion, I think edit should be allowed unless all the other fields are the same. Quite common to have the same name <!--session: 1666942944315-ae116179-fb18-4cf4-94b2-7dad168c8a9a--> <!--Version: Web v3.4.4--> ------------- Labels: `type.FeatureFlaw` `severity.Medium` original: PeiYee88/ped#11
priority
edit command does not allow edit to be done on contact with the same name in my opinion i think edit should be allowed unless all the other fields are the same quite common to have the same name labels type featureflaw severity medium original ped
1
178,727
6,617,926,398
IssuesEvent
2017-09-21 05:22:13
geoff-maddock/events-tracker
https://api.github.com/repos/geoff-maddock/events-tracker
closed
Menu - Responsiveness
high priority
Check out the menu at all sizes and make sure it collapses appropriately. - [ ] Fix how some parts of the menu drop down as the menu collapses
1.0
Menu - Responsiveness - Check out the menu at all sizes and make sure it collapses appropriately. - [ ] Fix how some parts of the menu drop down as the menu collapses
priority
menu responsiveness check out the menu at all sizes and make sure it collapses appropriately fix how some parts of the menu drop down as the menu collapses
1
433,918
12,512,325,418
IssuesEvent
2020-06-02 22:29:46
pytorch/pytorch
https://api.github.com/repos/pytorch/pytorch
closed
hardsigmoid cuda_dispatch_ptr INTERNAL ASSERT FAILED
high priority module: cuda module: nn quansight-nack topic: assert failure triaged
## 🐛 Bug <!-- A clear and concise description of what the bug is. --> `F.hardsigmoid()` does not work with cuda tensors ## To Reproduce Steps to reproduce the behavior: ```python import torch torch.nn.functional.hardsigmoid(torch.randn(5).cuda()) ``` ``` RuntimeError Traceback (most recent call last) <ipython-input-1-4519d961c4ef> in <module>() 1 import torch ----> 2 torch.nn.functional.hardsigmoid(torch.randn(5).cuda()) /usr/local/lib/python3.6/dist-packages/torch/nn/functional.py in hardsigmoid(input, inplace) 1586 if inplace: 1587 return torch._C._nn.hardsigmoid_(input) -> 1588 return torch._C._nn.hardsigmoid(input) 1589 1590 RuntimeError: cuda_dispatch_ptr INTERNAL ASSERT FAILED at /pytorch/aten/src/ATen/native/DispatchStub.h:78, please report a bug to PyTorch. DispatchStub: missing CUDA kernel ``` ## Expected behavior A cuda tensor with 5 elements, hardsigmoid applied. ## Environment PyTorch version: 1.5.0+cu101 Is debug build: No CUDA used to build PyTorch: 10.1 OS: Ubuntu 18.04.3 LTS GCC version: (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 CMake version: version 3.12.0 Python version: 3.6 Is CUDA available: Yes CUDA runtime version: 10.1.243 GPU models and configuration: GPU 0: Tesla K80 Nvidia driver version: 418.67 cuDNN version: /usr/lib/x86_64-linux-gnu/libcudnn.so.7.6.5 Versions of relevant libraries: [pip3] numpy==1.18.3 [pip3] torch==1.5.0+cu101 [pip3] torchsummary==1.5.1 [pip3] torchtext==0.3.1 [pip3] torchvision==0.6.0+cu101 [conda] Could not collect ## Additional context Google colab, GPU instance. cc @ezyang @gchanan @zou3519 @ngimel @albanD @mruberry
1.0
hardsigmoid cuda_dispatch_ptr INTERNAL ASSERT FAILED - ## 🐛 Bug <!-- A clear and concise description of what the bug is. --> `F.hardsigmoid()` does not work with cuda tensors ## To Reproduce Steps to reproduce the behavior: ```python import torch torch.nn.functional.hardsigmoid(torch.randn(5).cuda()) ``` ``` RuntimeError Traceback (most recent call last) <ipython-input-1-4519d961c4ef> in <module>() 1 import torch ----> 2 torch.nn.functional.hardsigmoid(torch.randn(5).cuda()) /usr/local/lib/python3.6/dist-packages/torch/nn/functional.py in hardsigmoid(input, inplace) 1586 if inplace: 1587 return torch._C._nn.hardsigmoid_(input) -> 1588 return torch._C._nn.hardsigmoid(input) 1589 1590 RuntimeError: cuda_dispatch_ptr INTERNAL ASSERT FAILED at /pytorch/aten/src/ATen/native/DispatchStub.h:78, please report a bug to PyTorch. DispatchStub: missing CUDA kernel ``` ## Expected behavior A cuda tensor with 5 elements, hardsigmoid applied. ## Environment PyTorch version: 1.5.0+cu101 Is debug build: No CUDA used to build PyTorch: 10.1 OS: Ubuntu 18.04.3 LTS GCC version: (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 CMake version: version 3.12.0 Python version: 3.6 Is CUDA available: Yes CUDA runtime version: 10.1.243 GPU models and configuration: GPU 0: Tesla K80 Nvidia driver version: 418.67 cuDNN version: /usr/lib/x86_64-linux-gnu/libcudnn.so.7.6.5 Versions of relevant libraries: [pip3] numpy==1.18.3 [pip3] torch==1.5.0+cu101 [pip3] torchsummary==1.5.1 [pip3] torchtext==0.3.1 [pip3] torchvision==0.6.0+cu101 [conda] Could not collect ## Additional context Google colab, GPU instance. cc @ezyang @gchanan @zou3519 @ngimel @albanD @mruberry
priority
hardsigmoid cuda dispatch ptr internal assert failed 🐛 bug f hardsigmoid does not work with cuda tensors to reproduce steps to reproduce the behavior python import torch torch nn functional hardsigmoid torch randn cuda runtimeerror traceback most recent call last in import torch torch nn functional hardsigmoid torch randn cuda usr local lib dist packages torch nn functional py in hardsigmoid input inplace if inplace return torch c nn hardsigmoid input return torch c nn hardsigmoid input runtimeerror cuda dispatch ptr internal assert failed at pytorch aten src aten native dispatchstub h please report a bug to pytorch dispatchstub missing cuda kernel expected behavior a cuda tensor with elements hardsigmoid applied environment pytorch version is debug build no cuda used to build pytorch os ubuntu lts gcc version ubuntu cmake version version python version is cuda available yes cuda runtime version gpu models and configuration gpu tesla nvidia driver version cudnn version usr lib linux gnu libcudnn so versions of relevant libraries numpy torch torchsummary torchtext torchvision could not collect additional context google colab gpu instance cc ezyang gchanan ngimel alband mruberry
1
723,945
24,913,117,005
IssuesEvent
2022-10-30 04:10:56
wso2/product-apim
https://api.github.com/repos/wso2/product-apim
closed
Service catalogue feature
Severity/Critical Type/New Feature Priority/High
The main objective of the Service Catalog would be to create a connection between API Management and Integration layers by making integration services discoverable to the API Management layer.
1.0
Service catalogue feature - The main objective of the Service Catalog would be to create a connection between API Management and Integration layers by making integration services discoverable to the API Management layer.
priority
service catalogue feature the main objective of the service catalog would be to create a connection between api management and integration layers by making integration services discoverable to the api management layer
1
239,489
7,799,727,468
IssuesEvent
2018-06-09 00:00:38
tine20/Tine-2.0-Open-Source-Groupware-and-CRM
https://api.github.com/repos/tine20/Tine-2.0-Open-Source-Groupware-and-CRM
closed
0005060: allow to configure name schema when importing new users
Admin Feature Request Mantis high priority
**Reported by pschuele on 9 Nov 2011 12:01** **Version:** Maischa (2011-05-4) allow to configure name schema when importing new users - add option to import definition - allow 2 schema in the first run: -&gt; lastname + first 2 chars of firstname -&gt; first char of firstname + lastname
1.0
0005060: allow to configure name schema when importing new users - **Reported by pschuele on 9 Nov 2011 12:01** **Version:** Maischa (2011-05-4) allow to configure name schema when importing new users - add option to import definition - allow 2 schema in the first run: -&gt; lastname + first 2 chars of firstname -&gt; first char of firstname + lastname
priority
allow to configure name schema when importing new users reported by pschuele on nov version maischa allow to configure name schema when importing new users add option to import definition allow schema in the first run gt lastname first chars of firstname gt first char of firstname lastname
1
518,198
15,025,489,453
IssuesEvent
2021-02-01 21:10:04
eddieantonio/predictive-text-studio
https://api.github.com/repos/eddieantonio/predictive-text-studio
closed
Extract most of the logic in Upload.svelte
app enhancement refactoring 🔥 High priority
For valid code quality reasons and some silly technical limitations, we should avoid writing tonnes of TypeScript code within Svelte files. Unfortunately, some of our components, like `Upload.svelte` have most of their logic written directly in Svelte. Most of this code should be extracted to a dedicated `.ts` file, to facilite type-checking, correct source mapping, and code organziation in general!
1.0
Extract most of the logic in Upload.svelte - For valid code quality reasons and some silly technical limitations, we should avoid writing tonnes of TypeScript code within Svelte files. Unfortunately, some of our components, like `Upload.svelte` have most of their logic written directly in Svelte. Most of this code should be extracted to a dedicated `.ts` file, to facilite type-checking, correct source mapping, and code organziation in general!
priority
extract most of the logic in upload svelte for valid code quality reasons and some silly technical limitations we should avoid writing tonnes of typescript code within svelte files unfortunately some of our components like upload svelte have most of their logic written directly in svelte most of this code should be extracted to a dedicated ts file to facilite type checking correct source mapping and code organziation in general
1
784,900
27,588,965,623
IssuesEvent
2023-03-08 22:18:35
FCP-INDI/C-PAC
https://api.github.com/repos/FCP-INDI/C-PAC
opened
✨ Seamless ingress of fmriprep outputs
feature 2 - High Priority engine BIDS
### Related problem It's not easy (or possible) to directly ingress already-computed outputs into C-PAC from other pipelines (or specifically fmriprep) in order to perform further processing. ### Proposed feature The ability to ingress fmriprep output data directly into the C-PAC resource pool, so that users can then proceed to perform further processing. Example: pulling in the `confounds.tsv` and also the BOLD time series that has already been preprocessed and warped to template; then, C-PAC can proceed with denoising and anything else, including calculating connectomes and other derivatives. Note: C-PAC v1.8+ has code/infrastructure to allow ingress of already-computed data into the resource pool, but needs to be expanded to make the process seamless. ### Acceptance criteria - [ ] New field in the data configuration YAML which holds the path to an fmriprep output directory - [ ] Each possible layout of fmriprep outputs able to be pulled into C-PAC flexibly without issues (i.e. surface on or off) - [ ] Clearly-defined user flow: if the user has preprocessing selected in the pipeline config, and already-preprocessed data is pulled in, C-PAC needs to handle this safely ### Alternatives _No response_ ### Additional context There is also the question and possibility of forking. It's possible we can have the user provide an fmriprep output directory and also select a modified version of the `fmriprep-options` preconfig which includes denoising and derivatives, and have C-PAC write out the end result of both for comparison easily.
1.0
✨ Seamless ingress of fmriprep outputs - ### Related problem It's not easy (or possible) to directly ingress already-computed outputs into C-PAC from other pipelines (or specifically fmriprep) in order to perform further processing. ### Proposed feature The ability to ingress fmriprep output data directly into the C-PAC resource pool, so that users can then proceed to perform further processing. Example: pulling in the `confounds.tsv` and also the BOLD time series that has already been preprocessed and warped to template; then, C-PAC can proceed with denoising and anything else, including calculating connectomes and other derivatives. Note: C-PAC v1.8+ has code/infrastructure to allow ingress of already-computed data into the resource pool, but needs to be expanded to make the process seamless. ### Acceptance criteria - [ ] New field in the data configuration YAML which holds the path to an fmriprep output directory - [ ] Each possible layout of fmriprep outputs able to be pulled into C-PAC flexibly without issues (i.e. surface on or off) - [ ] Clearly-defined user flow: if the user has preprocessing selected in the pipeline config, and already-preprocessed data is pulled in, C-PAC needs to handle this safely ### Alternatives _No response_ ### Additional context There is also the question and possibility of forking. It's possible we can have the user provide an fmriprep output directory and also select a modified version of the `fmriprep-options` preconfig which includes denoising and derivatives, and have C-PAC write out the end result of both for comparison easily.
priority
✨ seamless ingress of fmriprep outputs related problem it s not easy or possible to directly ingress already computed outputs into c pac from other pipelines or specifically fmriprep in order to perform further processing proposed feature the ability to ingress fmriprep output data directly into the c pac resource pool so that users can then proceed to perform further processing example pulling in the confounds tsv and also the bold time series that has already been preprocessed and warped to template then c pac can proceed with denoising and anything else including calculating connectomes and other derivatives note c pac has code infrastructure to allow ingress of already computed data into the resource pool but needs to be expanded to make the process seamless acceptance criteria new field in the data configuration yaml which holds the path to an fmriprep output directory each possible layout of fmriprep outputs able to be pulled into c pac flexibly without issues i e surface on or off clearly defined user flow if the user has preprocessing selected in the pipeline config and already preprocessed data is pulled in c pac needs to handle this safely alternatives no response additional context there is also the question and possibility of forking it s possible we can have the user provide an fmriprep output directory and also select a modified version of the fmriprep options preconfig which includes denoising and derivatives and have c pac write out the end result of both for comparison easily
1
783,581
27,537,418,754
IssuesEvent
2023-03-07 05:16:54
MariCornelio/markdown-links
https://api.github.com/repos/MariCornelio/markdown-links
closed
Convertir absoluta
API Priority: High
Realizar unas función que convierta en absoluta una ruta si fue ingresada como relativa
1.0
Convertir absoluta - Realizar unas función que convierta en absoluta una ruta si fue ingresada como relativa
priority
convertir absoluta realizar unas función que convierta en absoluta una ruta si fue ingresada como relativa
1
596,796
18,143,986,871
IssuesEvent
2021-09-25 04:48:49
roq-trading/roq-issues
https://api.github.com/repos/roq-trading/roq-issues
opened
[roq-api] Utility functions did not handle Error::FAILED correctly
bug high priority support
There are utility functions to check for various states of requests and orders. These functions will generally group e.g. error codes into "completed", "failed", "maybe completed", etc. The enumerated value `Error::FAILED` is used as an escape-hatch only used for handling non-OMS exceptions. These exceptions are truly exceptional -- they're not part of the normal OMS flow. Problem: The utility functions did not correctly categorize `Error::FAILED` causing down-stream use-cases to not handle this case correctly.
1.0
[roq-api] Utility functions did not handle Error::FAILED correctly - There are utility functions to check for various states of requests and orders. These functions will generally group e.g. error codes into "completed", "failed", "maybe completed", etc. The enumerated value `Error::FAILED` is used as an escape-hatch only used for handling non-OMS exceptions. These exceptions are truly exceptional -- they're not part of the normal OMS flow. Problem: The utility functions did not correctly categorize `Error::FAILED` causing down-stream use-cases to not handle this case correctly.
priority
utility functions did not handle error failed correctly there are utility functions to check for various states of requests and orders these functions will generally group e g error codes into completed failed maybe completed etc the enumerated value error failed is used as an escape hatch only used for handling non oms exceptions these exceptions are truly exceptional they re not part of the normal oms flow problem the utility functions did not correctly categorize error failed causing down stream use cases to not handle this case correctly
1
265,400
8,353,805,666
IssuesEvent
2018-10-02 11:19:41
edenlabllc/ehealth.api
https://api.github.com/repos/edenlabllc/ehealth.api
closed
Demo, Preprod tokens problem, (HRIS tests)
kind/support priority/high
Необходимо обновить токены (демо, препрод). При тестировании по проекту HRIS - данные не валидны, а также сегодня поступают массовые жалобы от МИС. Информация по результатам тестирования здесь https://drive.google.com/file/d/0B5A4tisi0ko2dVhsWnA4R0tTbVdmbHd6eW5NeW1xRkpSbUhr/view?usp=sharing. Использовались токены по ранее предоставленной ссылке: https://docs.google.com/document/d/1pi40OZQ3ajKHmXHFHApoJiVRLLgx4iJVl8bNi93qzW8/edit.
1.0
Demo, Preprod tokens problem, (HRIS tests) - Необходимо обновить токены (демо, препрод). При тестировании по проекту HRIS - данные не валидны, а также сегодня поступают массовые жалобы от МИС. Информация по результатам тестирования здесь https://drive.google.com/file/d/0B5A4tisi0ko2dVhsWnA4R0tTbVdmbHd6eW5NeW1xRkpSbUhr/view?usp=sharing. Использовались токены по ранее предоставленной ссылке: https://docs.google.com/document/d/1pi40OZQ3ajKHmXHFHApoJiVRLLgx4iJVl8bNi93qzW8/edit.
priority
demo preprod tokens problem hris tests необходимо обновить токены демо препрод при тестировании по проекту hris данные не валидны а также сегодня поступают массовые жалобы от мис информация по результатам тестирования здесь использовались токены по ранее предоставленной ссылке
1
361,996
10,721,953,102
IssuesEvent
2019-10-27 08:02:35
AY1920S1-CS2103T-T12-3/main
https://api.github.com/repos/AY1920S1-CS2103T-T12-3/main
opened
Display entries as dots indicator on calendar
priority.High
Display training and performance entries on calendar at respective dates
1.0
Display entries as dots indicator on calendar - Display training and performance entries on calendar at respective dates
priority
display entries as dots indicator on calendar display training and performance entries on calendar at respective dates
1
577,258
17,106,581,806
IssuesEvent
2021-07-09 18:48:26
broadinstitute/long-read-pipelines
https://api.github.com/repos/broadinstitute/long-read-pipelines
opened
Restore branch protection for main
high priority
The auto version bump enforced in the github actions needs to be configured to play nicely with branch protection rules: otherwise the auto bump will NOT be able to merge the version-bump changes. The branch protection rule is turned off for now to not mess with the version bump, so everyone who wants to merge changes to the main, please submit a PR. Thanks!
1.0
Restore branch protection for main - The auto version bump enforced in the github actions needs to be configured to play nicely with branch protection rules: otherwise the auto bump will NOT be able to merge the version-bump changes. The branch protection rule is turned off for now to not mess with the version bump, so everyone who wants to merge changes to the main, please submit a PR. Thanks!
priority
restore branch protection for main the auto version bump enforced in the github actions needs to be configured to play nicely with branch protection rules otherwise the auto bump will not be able to merge the version bump changes the branch protection rule is turned off for now to not mess with the version bump so everyone who wants to merge changes to the main please submit a pr thanks
1