id int64 393k 2.82B | repo stringclasses 68
values | title stringlengths 1 936 | body stringlengths 0 256k β | labels stringlengths 2 508 | priority stringclasses 3
values | severity stringclasses 3
values |
|---|---|---|---|---|---|---|
554,631,774 | go | os: document the Process.Pid field | As discussed in https://groups.google.com/forum/#!topic/golang-nuts/ievQGPz1R7k, https://golang.org/cl/4029053 dropped the documentation for the `Pid` field.
I also propose to extend the documentation with something like:
```
The value of Pid after the process has been waited/released is not specified.
```
The r... | Documentation,help wanted,NeedsFix | low | Minor |
554,635,242 | flutter | Why the best preview's resolution is high? | <!-- Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
* https://flutter.dev/
* https://api.flutter.dev/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you hav... | p: camera,package,team-ecosystem,P3,triaged-ecosystem | low | Critical |
554,642,477 | pytorch | Interrupting a DDP worker while using the CUDA MPS server causes CUDA to hang until reboot | ## π Bug
When using the CUDA MPS server, having a DataDistributedParallel worker fail can cause CUDA to hang permanently on the machine until it's rebooted.
I think this is more an NVIDIA bug than a PyTorch bug and I've submitted it to them, but it's something that other PyTorch users are likely to run in to too, ... | oncall: distributed,module: cuda,triaged | low | Critical |
554,644,166 | svelte | CSS isolation bug when components styles is equals and have not used css rule | I think it is optimization side effect.
Likely it can be reproduced only if you have at least one not used css rule.
[See this repl](https://svelte.dev/repl/ddc97886a98741dbbb40e58607aaa265?version=3.17.3)
**See these components:**
Component1.svelte
```svelte
<div class="red"> Red </div>
<style>
.red {
... | bug,temp-stale | low | Critical |
554,644,769 | rust | Exponential Type Blowup when wrapping function | I am implementing a service architecture, where each service can be thought of as middleware. It makes sense to define complex services which need to manage their own complex state as their own structs and implement my `Service` trait for each one. However, for simple operations, e.g. logging or manipulating some argum... | I-compiletime,T-compiler | low | Critical |
554,664,526 | opencv | OPENCV-DNN Using new cfg from Darknet repository causes error | OpenCV 4.2.0
New models from Alexey Darknet repository
CFG: https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/csresnext50-panet-spp-original-optimal.cfg
WEIGHTS: https://drive.google.com/open?id=1_NnfVgj0EDtb_WLNoXV8Mo7WKgwdYZCc
Testing with the new OPENCV-dnn with cuda support I achieve better... | feature,category: dnn | medium | Critical |
554,685,155 | pytorch | Document different gradient wrt to jax when nesting | ## π Bug
The following code results in `0` when the expected answer is `-1`:
```python
def f1(x):
def f2(y):
return y*(x-y)
return torch.autograd.grad(f2(x), x, create_graph=True)[0]
x = torch.tensor(1.0, requires_grad=True)
torch.autograd.grad(f1(x), x)[0]
```
## To Reproduce
Run ... | module: docs,module: autograd,triaged | low | Critical |
554,689,018 | go | x/mobile/cmd/gomobile : Can't generate library for android for the following go package https://github.com/ethereum/go-ethereum/whisper/whisperv6 | <!--
Please answer these questions before submitting your issue. Thanks!
For questions please use one of our forums: https://github.com/golang/go/wiki/Questions
-->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.13.6 windows/amd64
</pre>
### Does this issue reprodu... | NeedsInvestigation,mobile | medium | Critical |
554,710,579 | flutter | Test if a new iOS build exists before uninstalling the old version | ## Use case
I recently tried to reinstall a Flutter app to an iOS device that I hadn't redeployed to in a few weeks.
```
$ flutter install
Installing come.example.my_app to My iPad...
Uninstalling old version...
Could not find application bundle at build/ios/iphoneos/Runner.app; have you run "flutter build ios"... | platform-ios,tool,c: proposal,P3,team-ios,triaged-ios | low | Critical |
554,738,009 | godot | RigidBody2D rotates on collision in 3.2, works fine in 3.1 | **Godot version:**
3.1.2
**OS/device including version:**
Windows 7
**Issue description:**
When opening a 3.1.2 project on any of the version of godot 3.2 it rotates when collison happens. In 3.1.2 it doesn't rotates only moves.
**Steps to reproduce:**
Just make any project where rigidbody collides with so... | discussion,topic:physics | low | Major |
554,746,600 | tensorflow | AttributeError: 'Tensor' object has no attribute 'log_prob' | **System information**
- Have I written custom code (as opposed to using a stock example script provided in TensorFlow): Yes
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Mac OS Catalina (Version: 10.15.2 (19C57))
- TensorFlow installed from (source or binary): binary
- TensorFlow version (use command ... | stat:awaiting tensorflower,type:bug,comp:ops,TF 2.11 | medium | Critical |
554,818,698 | go | cmd/go: test Documentation: Package List Parallelisation | <!--
Please answer these questions before submitting your issue. Thanks!
For questions please use one of our forums: https://github.com/golang/go/wiki/Questions
-->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.13.1 linux/amd64
</pre>
### Does this issue reproduce... | Documentation,NeedsInvestigation | low | Critical |
554,820,444 | go | x/tools: various test failures in TryBot run | ### What version of Go are you using (`go version`)?
https://golang.org/cl/216158
<pre>
$ go tip
</pre>
### Does this issue reproduce with the latest release?
Doesn't seem to reproduce consistently, possibly flaky tests
### What operating system and processor architecture are you using (`go env`)?
... | NeedsInvestigation,Tools | low | Critical |
554,836,638 | TypeScript | Type cast should try to remove readonly modifier | The compiler should try to use mutable versions of readonly tuples when couldn't cast readonly tuples to mutable arrays mainly for usability of `as const`. The performance impact of this would be a little because the condition when this check runs is limited.
<!--
Please try to reproduce the issue with the latest p... | Suggestion,Awaiting More Feedback | low | Critical |
554,843,567 | pytorch | SGD optimizer with deprecation warning | ## π Bug
<!-- A clear and concise description of what the bug is. -->
When using SGD optimizer, I got the deprecation warning. The reason behind this is related to `add_` function in SGD. Should be an easy fix.
## To Reproduce
Steps to reproduce the behavior:
1. Use the following code snippet
```
im... | module: optimizer,triaged,module: deprecation | low | Critical |
554,846,654 | TypeScript | Proposal: Make base class expressions able to access class type parameters | <!-- π¨ STOP π¨ π¦π§π’π£ π¨ πΊπ»πΆπ· π¨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker.
Please help us by doing the following steps before logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the FAQ, especia... | Suggestion,Awaiting More Feedback | low | Critical |
554,854,314 | pytorch | Segmentation Fault (core dumped) with 1.4.0 | ## π Bug
Running a model training in the rapids docker container with 1.4.0 is throwing segmentation fault error while calling `.backward()` function whereas it is working as expected with 1.3.1. please find the below logs.
## Unexpected behavior
```
(rapids) root@dgx:/rapids/my_data/git_repo/clx# nvidia-smi
... | needs reproduction,triaged | low | Critical |
554,856,335 | TypeScript | Handle inlined sources in d.ts maps to support goto definition and other such functionalities | Found as part of #35014 | Needs Investigation | low | Minor |
554,861,543 | flutter | Issues with properties in ThemeData and component properties they affect | **What do each of the properties in ThemeData affect? If I want to change something, say the text style of a particular widget, how do I know which text style to change in ThemeData?**
Take this example: I wanted to have a specific text style for my AppBar (top app bar). I'm not sure if I'm not going about this corr... | framework,f: material design,d: api docs,P2,team-design,triaged-design | low | Minor |
554,863,315 | vscode | Expose a dropdown on the sidebar for extensions | <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search existing issues to avoid creating duplicates. -->
<!-- Describe the feature you'd like. -->
Expose a dropdown on the side bar (see screenshot) to extensions to allow users switch between views within a vie... | feature-request,api,ux,tree-views | medium | Major |
554,866,313 | flutter | Android versionCode calculation conflicts with iOS versioning | I'm currently rolling our recently released Flutter application from `v1.0.0+109` to `v1.0.1+1`. This is expected of an iOS application, as this is now the 1st build of the new version of our application. However, in `gradle_utils:updateLocalProperties`, Flutter uses the build number to calculate the `versionCode`, whi... | tool,framework,t: gradle,t: xcode,c: proposal,P2,team-framework,triaged-framework | low | Major |
554,892,975 | PowerToys | Horizontal scroll | # Summary of the new feature/enhancement
Hi, everybody.
Is it possible to give us a key modifier for mouse horizontal scroll? Something like to hold ALT key and use the scroll button.
Thank you! | Idea-New PowerToy | low | Major |
554,898,989 | rust | Closure capturing itself results in unclear "mismatched types" error | Code:
```rust
fn main() {
let mut r = None;
let c = move || {
let _r = r;
};
r = Some(c);
}
```
Results in this error:
```
error[E0308]: mismatched types
--> src/main.rs:4:13
|
4 | let c = move || {
| _____________^
5 | | let _r = r;
6 | | ... | A-diagnostics,A-closures,T-compiler,C-bug | low | Critical |
554,904,142 | pytorch | User-friendly handling of types and devices | Some changes would make small-scale prototyping more user-friendly in PyTorch:
- Python types are automatically converted to PyTorch types
- integer types are treated numerically equivalent to their floating point version
- device mismatches are handled automatically
The last one is probably the most controvers... | triaged,module: numpy,module: ux | low | Critical |
554,910,503 | TypeScript | cmd+click function name goes to type definition file instead of source | duplicate of microsoft/vscode#68782 but that was closed without fix.
<!-- Use Help > Report Issue to prefill these. -->
- VSCode Version: 1.41.1
- OS Version: macOS 10.14.6
Steps to Reproduce:
1. Create a project folder with 2 files:
lib.js
```js
export const testMethod = (name, params) => {
params &... | Suggestion,Awaiting More Feedback | low | Major |
554,910,558 | rust | "expected bound lifetime parameter, found concrete lifetime" when passing a 'static reference to a closure that returns a future | ```rust
use std::future::Future;
fn main() {
let _ = wrapper(hello);
}
static GLOBAL: i32 = 42;
async fn wrapper<F, FutResp>(f: F)
where
F: Fn(&i32) -> FutResp,
FutResp: Future<Output = ()>,
{
f(&GLOBAL).await
}
async fn hello(_: &i32) {
println!("Hello");
}
```
([Playgrou... | A-diagnostics,A-lifetimes,P-medium,A-closures,T-compiler,C-bug,A-async-await,AsyncAwait-Triaged | low | Critical |
554,910,999 | flutter | [fuchsia] Use FIDL types dart:fuchsia as opposed to Handle | We currently expose every exported object in [fuchsia.dart](https://github.com/flutter/engine/blob/master/shell/platform/fuchsia/dart-pkg/fuchsia/lib/fuchsia.dart) as a raw `Handle` type. We can use the FIDL types instead. | team,engine,platform-fuchsia,P2,team-engine,triaged-engine | low | Minor |
554,928,110 | go | go/parser: bad error message for a badly formed func literal | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version devel +8e0be05ec7 Sun Jan 19 14:04:09 2020 +0000 linux/amd64
$ go list -m golang.org/x/tools
golang.org/x/tools v0.0.0-20200121200311-d456b1cd8c86
$ ... | NeedsFix | low | Critical |
554,929,072 | pytorch | [FYI] MultiheadAttention / Transformer | ### This issue is created to track the progress to refine `nn.MultiheadAttention` and `nn.Transformer`.
Since the release of both modules in PyTorch v1.2.0, we have received a lot of feedback from users, including feature requests, bug fixes and doc improvement. Here is a quick summary of the work items. Feel free ... | proposal accepted,module: nn,triaged | medium | Critical |
554,931,444 | youtube-dl | HiDive - fails to download correct subtitle file or detect multiple subtitle files | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | geo-restricted | low | Critical |
554,953,562 | flutter | Unreadable error message, red font in powershell | ## Steps to Reproduce
<!-- You must include full steps to reproduce so that we can reproduce the problem. -->
1. Run
```
flutter create bug
cd bug
flutter run -d chrome
```
2. Update the files as follows: Add `var c = 1 + 'a';` in a widget build.
3. Press R in powershell
**Expected results:** readable ... | tool,platform-windows,a: quality,has reproducible steps,P3,found in release: 3.0,found in release: 3.1,team-tool,triaged-tool | low | Critical |
554,962,876 | flutter | URL provided to report issue should not have a dot at the end | You can see below that an url to https://github.com/flutter/flutter/issues have been provided. However, it has a dot at the end and so when clicking on it, the browser gave me a 404.
> :\repos\hotcheapdeal>flutter generate
> generating build script... 37.6s
> starting build ... | tool,framework,c: proposal,a: error message,a: triage improvements,P3,team-framework,triaged-framework | low | Critical |
554,967,473 | flutter | [fuchsia] Write a test for exposed handles in dart:fuchsia | There are a few handles exposed in`fuchsia.dart` in `dart:fuchsia`. To write tests for these, it would be useful to have the ability to invoke dart fixtures. This will be enabled by the work that @gw280 is doing on shell_unittests on Fuchsia.
The intent of this issue is to track the writing of these tests. | engine,platform-fuchsia,P2,team-engine,triaged-engine | low | Minor |
554,974,823 | go | x/build: get more coverage with the ssacheck builder | The ssacheck builder currently builds only amd64, and with a fixed random seed.
We should improve on both dimensions.
* CL 216418 lets us provide a random seed. We could generate the random seed and print it to stdout before using it, so that any failure will be reproducible from the log.
* We should either run ... | Builders,NeedsInvestigation | low | Critical |
554,993,002 | godot | parsing a json will pass the json non fatal parse error in the debug | as of #33201 i think json parse errors are returned to the dialogue window, however they are not filtered, making non fatal errors appear there, that actually are a bit misleading to read and do not cause any issue in the paring result dictionary
sometimes when loading _settings from file
(attempting to parse an em... | bug,topic:core | low | Critical |
554,993,294 | opencv | videoio tests causing out of memory error on x86 - Alpine Linux | <!--
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
Please:
* Read the documentation to test with the latest de... | priority: low,category: videoio | low | Critical |
554,998,657 | godot | Reading pixels of an image from two threads causes errors | Godot 3.2 rc3
Windows 10 64 bits
I need to read pixels of an image from multiple threads at once. Since it internally uses a `Write` lock, my expectation was that `lock()` would trigger copy-on-write if it's already locked by another thread. But instead, it produces errors:
```
ERROR: Image must be locked with 'l... | enhancement | low | Critical |
555,006,502 | rust | Add note for to clarify trait restriction for function if we get (in my example "borrow as mutable" error) | Code example
https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=63c770ffce3c7420dd845653f7250b9f
We can try brute force all implementation, dropping trait restriction:
for generic type
for concrete type
If we find some implementation which allow you to get rid of this error (or maybe from all... | C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics,D-papercut | low | Critical |
555,008,423 | vscode | Settings can not show up in search when they are not included in settingsLayout.ts | - Add a setting, excluded from settingsLayout.ts, e.g. `timeline.showView`
- It shows up when I search `time` but not `timel`
- Make sure that there is no bad underlying bug... | bug,debt,settings-editor | low | Critical |
555,013,189 | excalidraw | suggestion: moving to a border of the viewport while resizing/selecting triggers scrolling | enhancement | low | Minor | |
555,013,501 | create-react-app | Allow `devDependencies` in template.json | ### Is your proposal related to a problem?
N/A
<!--
Provide a clear and concise description of what the problem is.
For example, "I'm always frustrated when..."
-->
### Describe the solution you'd like
Allow a user to state deveDependencies for a template by setting devDependencies in the template.json
<!... | issue: proposal,needs triage | low | Major |
555,027,229 | TypeScript | Revaluate default props behavior in JSX functional components | Regarding the recognition of default initializers as part of type checking on functional components, I believe issues #32402 and #31247 should be reevaluated in the light of #34547 and the potential deprecation of defaultProps, and also on the own merits of both issues.
**TypeScript Version:** 3.7.5
**Search Te... | Suggestion,Needs Proposal | low | Minor |
555,036,619 | godot | [GDNative] Misleading godot_x_new_copy/operator_equal functions for array/dictionary/pool arrays | I order to copy an array (same thing for a dictionary and pool array) you should use `godot_array_new_copy` array... but if you want to *copy* the array you should use `godot_array_duplicate` ! :trollface:
The difference comes from the fact godot_array is a cheap structure pointing on a ref counted vector.
Using `... | bug,topic:gdextension | low | Minor |
555,052,266 | opencv | OpenCV java vm crashes should be avoided | ##### System information (version)
- OpenCV 3.4.8
- Operating System / Platform => MacOS HighSierra 10.13.6
- Compiler => Oracle Java 1.8.0_152
##### Detailed description
At http://wiki.bitplan.com/index.php/OpenCV#Issues you'll find two issues that crash the Java VM when a problem occurs in the OpenCV dynamic... | bug,category: java bindings,incomplete,needs reproducer | low | Critical |
555,056,079 | godot | Child in ScrollContainer can be moved when its size is not bigger than the ScrollContainer's size | **Godot version:**
3.2 rc 2
**OS/device including version:**
**Issue description:**
**Steps to reproduce:**
1 add a scrollcontainer, set the rect_size to 1080 X 1080
2 add a colorrect as a child of scrollcontainer, and set the size to 1080 X 1080
3 the colorrect can be dragged around a very large distanc... | bug,topic:gui | low | Minor |
555,058,185 | pytorch | Logical AND and OR for Tensors in C++ API. | ## π Feature
The `at::Tensor` datatype does not have `&` overloaded the way it is in the python API, thus not allowing for boolean element-wise operations between tensors.
## Motivation
I want to call the `at::where()` function with a boolean tensor that is the outcome of the AND of two conditions.
## Pitc... | module: cpp,triaged,function request | low | Minor |
555,064,603 | go | net/http: http.Client.Do() sometimes throws INTERNAL_ERROR when using high number of parallel HTTP/2 requests (regression between 1.12 and 1.13.4) | ### What version of Go are you using (`go version`)?
```
go version go1.13.4 darwin/amd64
```
(also reproduced with 1.13.6)
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
```
GO111MODULE="off"
GOARCH="amd64"... | NeedsInvestigation | low | Critical |
555,071,305 | go | archive/zip: FileHeader struct lacks Unicode Path Extra Field (0x7075) | ### What version of Go are you using (`go version`)?
<pre>
$ go version go1.13.6 windows/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go env</code> Output</summary><br><pre>
... | NeedsInvestigation | low | Critical |
555,086,027 | go | crypto/ed25519: doc of Sign should warn not to prehash messages | Typically, digital signature schemas require the user to first hash the payload and then sign it. Correct me if I am wrong, but this should be true for RSA, DSA and ECDSA.
If my understanding is right, ED25519 seems to be different: it already hashes the message in a way that the collision resistant property is gua... | Documentation,help wanted,NeedsFix | low | Minor |
555,090,001 | flutter | Finished with error: Failed to establish connection with the application instance in Chrome. | I am getting this error when running my project on flutter web:
Launching lib\main.dart on Chrome in debug mode...
Building application for the web...
Attempting to connect to browser instance..
Finished with error: Failed to establish connection with the application instance in Chrome.
This can happen if the we... | tool,dependency: dart,customer: crowd,platform-web,P2,team-web,triaged-web | low | Critical |
555,091,323 | go | gccgo: crash on loop alias reference | ### What version of Go are you using (`go version`)?
<pre>
$ gccgo --version
gccgo (Ubuntu 8.3.0-6) 8.3.0
</pre>
### Does this issue reproduce with the latest release?
True
### What did you do?
```
type A = *struct {
A
}
```
### What did you expect to see?
Fails to compile for `invalid recu... | NeedsInvestigation | low | Critical |
555,105,151 | puppeteer | Error: Protocol error (Page.captureScreenshot): Unable to capture screenshot when taking screenshot of a large viewport | ### Steps to reproduce
**Tell us about your environment:**
* Puppeteer version: 2.0.0
* Platform / OS version: Windows 10 1903 x64
* Node.js version: 10.17
**What steps will reproduce the problem?**
_Please include code that reproduces the issue._
Here is a code snippet that sets large viewport and is ... | bug,upstream,confirmed,P3 | high | Critical |
555,106,596 | svelte | Cannot use yielded value in bind:this inside #each | **Describe the bug**
The title is a bit of a mouthful so I think a simple example explains it better:
https://svelte.dev/repl/2dc797d2d76b4663987a165f898fdd92?version=3.17.3
```
<script>
let name = 'world';
function* foo() {
yield {name: "h", value: 123}
yield {name: 'x', value: 333}
}
let thi... | bug,awaiting submitter,temp-stale | low | Critical |
555,108,082 | opencv | GpuMat as input/output to cv::dnn::Net | ### System information (version)
- OpenCV => 4.2.0
##### APIs that need changes
Suitable APIs for `GpuMat` input:
1. `void setInput(InputArray blob, const String& name = "", double scalefactor = 1.0, const Scalar& mean = Scalar());`
Suitable APIs for `GpuMat` output:
1. `void forward(OutputArrayOfArrays out... | feature,category: gpu/cuda (contrib),RFC,future,category: dnn,effort: few weeks | medium | Critical |
555,117,221 | flutter | [Cocoon] do not show buttons that the user can't access | If the user is not logged in, don't show the rerun or log button that won't work for them.
The behavior today is that the buttons are shown and that clicking them does nothing. I've had it happen where I was logged out and wondering why nothing was happening when I click rerun.
/cc @CaseyHillers | c: new feature,team,team-infra,P2,triaged-infra | low | Minor |
555,117,489 | godot | Update Snapcraft.io version | **Godot version:**
3.1
**OS/device including version:**
Ubuntu/KDE Neon and every platform that supports Snaps
**Issue description:**
When searching for "Godot" on https://snapcraft.io/store this version pops up: https://snapcraft.io/godot-3-1 which looks like a test version and is old.
But if you open ht... | discussion,platform:linuxbsd,topic:porting | medium | Major |
555,127,198 | TypeScript | Function declarations inside function expressions should inherit control flow narrowings of the parent function expression | I am trying to avoid typing null checks for properties that are formerly optional on the outer interface, but are then assigned with default values for the whole context of the function body.
I used a type guard for it, the problem is that the guarded type is lost in a function, but not lost in an arrow function, ev... | Bug | low | Critical |
555,135,193 | flutter | Ability to hide a widget subtree in driver tests | Some advanced users of Flutter would like the ability to mask screenshot goldens so that parts of the screenshot are not used when diffing. There's a very tedious way of doing this in g3 infrastructure so customer:dream was wondering if it is possible to add this type of API to driver:
```dart
flutter_driver.maskWi... | c: new feature,framework,t: flutter driver,customer: dream (g3),P3,team-framework,triaged-framework | low | Minor |
555,138,429 | godot | call_deferred does not take a reference to self causing occasional SEGFAULT in release | calling a deferred method of an object which inherits Reference which emits a signal can cause the game to crash because the deferred function gets called after the reference has been freed.
See attached example where pressing first button will never call the deferred function and emit a signal. In this simple examp... | bug,topic:core,crash | low | Critical |
555,146,992 | material-ui | Feature request: navigation rail | New material component, the navigation rail.
- good for 3 to 7 destinations
- part of the navigation design spec... see the responsive design section to see how this mixes in with other navigation components
https://m3.material.io/components/navigation-rail/overview
## Benchmarks
- | new feature,design: material,package: material-ui | medium | Critical |
555,147,195 | godot | Debugger: variables monitor sections size | **Godot version:**
3.2 rc3
**OS/device including version:**
Win 10
**Issue description:**
Once upon a time we had tiny displays, when I start working as an IT, I had a 13" inch one, it was cool, lacks of space to show things made all the debugging work funny and really crowded...
Now we use to work on 24" a... | enhancement,topic:editor,usability | low | Critical |
555,153,282 | go | x/tools/gopls: go/packages work-around not activated with empty module cache | This error occurs when querying for references on a type with gopls@8fe064f8
<pre>
[Trace - 00:19:52.525 AM] Sending request 'textDocument/references - (15)'.
Params: {"textDocument":{"uri":"file:///some/package/file.go"},"position":{"line":59,"character":26},"context":{"includeDeclaration":true}}
[Error - 00... | NeedsDecision,gopls,Tools | medium | Critical |
555,188,764 | TypeScript | Allow C++-style visibility sections in class bodies | ## Search Terms
public, shorthand, private
## Suggestion
<img width="991" alt="Screen Shot 2020-01-26 at 2 22 29 PM" src="https://user-images.githubusercontent.com/9585787/73132010-78b1df00-4047-11ea-9af7-5c828253287c.png">
See image. Would reduce a lot of clutter for public/private to be consolidated into ... | Suggestion,Awaiting More Feedback | low | Minor |
555,191,588 | flutter | fast-start breaks common workflows and may be slower in some cases | I have two devices, a Pixel 3 XL and a Lenovo TB 8504F. I run my app with `flutter run -d all`. Here are the timings after several back-to-back runs with no changes:
00:00 `flutter run -d all`
00:04 My app's splash screen shows on the Pixel 3 XL
00:05 Pixel 3 XL shows a message that implies I'm not running under t... | tool,t: hot reload,a: first hour,P2,team-tool,triaged-tool | low | Critical |
555,203,999 | godot | Switching scripts with PgUp/PgDn does not work | **Godot version:** 3.2-master
**OS/device including version:** Debian buster amd64
**Issue description:**
I use Ctrl+PgUp/PgDn to switch between scene tabs. (It's a pretty common shortcut from back in Gnome 2, used in gnome-terminal, firefox, and other programs.) I also want to use it to switch between scripts in ... | bug,topic:editor,confirmed,usability | low | Minor |
555,208,459 | vscode | Improve discoverability of Compact Folders option | When somebody wants to disable compact folders people rarely search for terms like "compact folders", but rather for "empty folders", "flattened folders"
Discoverability of this feature could be improved if
- The Settings Search would return Compact Folders for keywords like "empty folders" and "flattened folders... | bug,settings-editor,settings-search | low | Major |
555,220,943 | TypeScript | TypeScript support for .mdx file extensions | # Search Terms
- .mdx
- mdx
- mdx support
## Suggestion
Could or would it be on the road map to allow type checking in non .ts files. In my case i'm specifically wondering if TypeScript can type check React components in .mdx files
## Use Cases
I've written a gatsby plugin [gatsby-mdx-embed](https://gi... | Suggestion,Awaiting More Feedback | high | Critical |
555,228,888 | godot | Different TextEdit preview on HiDPI display | **Godot version:** 3.2 RC3
**OS/device including version:** macOS 10.15.2
**Issue description:**
On a HiDPI display, the TextEdit preview in the editor is inconsistent with the actual one:
<img width="331" alt="screenshot" src="https://user-images.githubusercontent.com/372476/73135842-ff83ad80-4081-11ea-958... | bug,topic:editor,confirmed,topic:gui | low | Minor |
555,239,367 | terminal | CreatePseudoConsole doesn't handle sockets correctly | The documentation of `CreatePseudoConsole` explicitly documents that `CreatePseudoConsole` can be used with sockets:
https://docs.microsoft.com/en-us/windows/console/creating-a-pseudoconsole-session#preparing-the-communication-channels
If we look at the implementation of `CreatePseudoConsole`, we can see it calls... | Help Wanted,Product-Conpty,Issue-Bug,Priority-1,Area-Quality | low | Critical |
555,266,463 | flutter | Show contextual selection menu in Flutter Webview | Internal: b/147976818
As done in Google Docs for Android, we'd like to show a custom action on text highlight in our webview. Here is a screenshot to make it more clear:

We'd like for example to add an a... | c: new feature,p: webview,customer: google,package,c: proposal,team-ecosystem,P2,triaged-ecosystem | low | Major |
555,275,119 | TypeScript | Unneeded temporary introduced for named class expression with static property initializer | ## Search Terms
classes, static properties, temporary variable
## Suggestion
When a class expression is returned from a function, it gets assigned to a temporary variable that is not needed there.
## Use Cases
Less verbose and more clear JavaScript output.
## Examples
Input:
```ts
const f = () =>... | Bug | low | Minor |
555,281,645 | go | x/pkgsite: API for pkg.go.dev | Prior to [pkg.go.dev](https://pkg.go.dev), [godoc.org](https://godoc.org) has had a JSON API that can be used to, among other things, discover importers of a given package.
Example: https://api.godoc.org/importers/golang.org/x/net/html
Given that [pkg.go.dev](https://pkg.go.dev) does a much better job at tracking... | NeedsInvestigation,FeatureRequest,pkgsite | high | Critical |
555,288,274 | godot | Exporting to android now fails with error code 20 | **Godot version:**
72c44bafac6e280b5e1e99b417588624bfb5ecc6
**OS/device including version:**
MacOS 10.15.12
**Issue description:**
When compiling from 72c44bafac6e280b5e1e99b417588624bfb5ecc6 my android export is now broken where it was successful before.
when using a custom build I get this:
```
argument... | enhancement,platform:android,topic:porting,usability | medium | Critical |
555,294,038 | storybook | Addon-docs: Make syntax-highlighter theme configurable | **Is your feature request related to a problem? Please describe.**
React-Syntaxt-Highlighter support a lot of [Prism themes](https://github.com/conorhastings/react-syntax-highlighter/tree/master/src/styles/prism). It would be nice if Storybook provide a way for the user to pick the theme of is choice.
**Describe ... | feature request,addon: docs | medium | Major |
555,300,596 | rust | BufReader::seek -- should this discard the buffer when pos is SeekFrom::Current(0)? | It looks like the stream_position() convenience function is implemented with `stream.seek(SeekFrom::Current(0))`; when called on a BufReader this causes it to discard the inner buffer.
Is this expected? Is it possible to have the BufReader in the case of the position being SeekFrom::Current(0) not discard? | T-libs-api,A-io,C-discussion | low | Minor |
555,314,104 | pytorch | TORCH_CUDA_API export failure on torch::cuda::nccl::detail::throw_nccl_error(ncclResult_t) | ## π Bug
When compiling from source `pytorch 1.4.0` the resulting library `libtorch_python.so` is left with an undefined symbol for `torch::cuda::nccl::detail::throw_nccl_error(ncclResult_t)` (`ImportError: /usr/lib/python3.8/site-packages/torch/lib/libtorch_python.so: undefined symbol: _ZN5torch4cuda4nccl6detail16... | high priority,module: binaries,oncall: releng,triaged,module: nccl,quansight-nack | low | Critical |
555,346,868 | godot | [GDNative] Crash when method returns reference objects | Unlike other Godot objects, Reference objects (like all the `Resource` for instance) are refcounted.
Hence they are not passed as a simple `Object *` but as a `RefPtr`.
This is a trouble for GDNative given it doesn't provide any binding to this `RefPtr` structure (nor any information about how to handle this).
F... | bug,topic:gdextension | low | Critical |
555,349,422 | godot | Mono: Can't attach C# script to SceneTree | **Godot version:**
3.2 Mono RC3
**OS/device including version:**
MXLinux19 64bits
**Issue description:**
After attaching a C# script to the SceneTree I get this error:
IntPtr Godot.Object.GetPtr(Godot.Object ): System.ObjectDisposedException: Cannot access a disposed object.
I can attach a gdscript scrip... | bug,topic:core,confirmed,topic:dotnet | low | Critical |
555,355,092 | pytorch | changed format of trace graph in torch 1.4.0 | ## β Questions
For the following example code, the printed graph in torch 1.4.0 is very different from that in torch 1.3.1. I am wondering is this expected? because many useful fields are removed in torch 1.4.0.
```
import torch
import torch.nn as nn
class Net(nn.Module):
def __init__(self):
su... | oncall: jit,triaged | medium | Major |
555,382,197 | rust | specialization: default impl is used, ignoring the vtable of original value | When I cast a variable to `dyn Trait`, original vtable is ignored, and default implementation is called even if the casted variable has its own implementation.
<del> https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=c184c5f2df18c01d91357da3a0053e4a </del>
I minimized it.
https://play.r... | T-compiler,A-specialization,C-bug,requires-nightly,F-specialization | low | Critical |
555,476,663 | flutter | Camera live filter for photo and video | I'm wondering if there are any plans to support live filters on videos and photos by the official [camera plugin](https://pub.dev/packages/camera). It would be definitely great!
Librarys such as [photofilters](https://github.com/skkallayath/photofilters) could be supported to apply live filters directly on the camer... | c: new feature,p: camera,package,team-ecosystem,P3,triaged-ecosystem | medium | Critical |
555,503,354 | TypeScript | Template decorators. | <!-- π¨ STOP π¨ π¦π§π’π£ π¨ πΊπ»πΆπ· π¨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Needs Investigation | low | Critical |
555,527,387 | go | cmd/go: go list -m reports command-line-arguments when called outside a module | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.14beta1 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes.
### What operating system and processor architectur... | NeedsInvestigation,modules | low | Critical |
555,530,229 | flutter | An infinite loop using PageView | <!-- Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
* https://flutter.dev/
* https://api.flutter.dev/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you hav... | c: new feature,framework,f: scrolling,would be a good package,P3,team-framework,triaged-framework | medium | Critical |
555,537,345 | youtube-dl | Google account challenge authentication fails with 'Unable to log in: HTTP Error 400: Bad Request' | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | duplicate | medium | Critical |
555,551,003 | node | Ability to synchronously drain a thread safe function | **Is your feature request related to a problem? Please describe.**
Since TSFN provides a queue to caching up calls to the creating thread, we don't have the ability to drain the queue if we think it's time to complete the job.
**Describe the solution you'd like**
Add a drain method to synchronously drain the threa... | node-api | low | Minor |
555,601,280 | flutter | flutter version code is different from version code in google play console | When uploading app to playstore I understand that we need our app to have a unique version code for each build and in flutter the version code is said to be what follows + in pubspec.yaml.
e.g ```version: 1.0.0+3``` has a version code of 3 but when I upload my split apk's built using
```flutter build apk --split-per-... | platform-android,tool,t: gradle,c: proposal,a: release,P3,team-android,triaged-android | medium | Major |
555,655,256 | pytorch | [Tensorboard] Problem with subfolders from SummaryWriter | ## Bug
Using the `add_scalars` or the `add_hparams` methods from the `SummaryWriter` in `torch.utils.tensorboard` results in a folder structure with subfolders that each contain further "tfevents" files. As a result, Tensorboard loads them as separate runs which very quickly leads to chaos when trying to distinguish... | triaged,module: tensorboard | medium | Critical |
555,666,715 | material-ui | [Modal] Wrong display of a modal that contain an autofocus input on iPad |
- [x] The issue is present in the latest release.
- [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate.
## Current Behavior π―
When opening a modal that contain an input with autofocus on an iPad, the keyboard is display i... | component: dialog,component: modal | low | Critical |
555,679,562 | godot | Problem in iOS+Android workflow | **Godot version:**
3.2
**OS/device including version:**
MacOS
**Issue description:**
The workflow in https://docs.godotengine.org/en/3.1/getting_started/workflow/export/exporting_for_ios.html#steps-to-link-a-godot-project-folder-to-xcode for iOS is great.
However when adding android exporting to the same pro... | discussion,platform:ios,platform:android,topic:porting | low | Major |
555,691,412 | neovim | complete_check() does not return TRUE for mapped input | <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`: v0.4.3
- `vim -u DEFAULTS` (version: ) behaves differently? NO
- Operating system/version: linux
- Terminal name/version: doesn't matter
- `$TERM`: doesn't matter
### Steps to reproduce using `nvim -u init.vim`
```vim
... | bug-vim,needs:vim-patch | low | Minor |
555,707,707 | go | x/review/git-codereview: skip tests that require "gofmt" binary when it's not available | https://build.golang.org/log/36fc6a856500bd206f0f994b1565fb6badbe7034
```
aix-ppc64 at 6fbdfe48041c883a9f6d8c981a7205b7c327862a building review at f51a73253c4da005cfdf18a036e11185c04c8ce3
β¦
--- FAIL: TestGofmt (0.55s)
gofmt_test.go:46: git-codereview gofmt -l
util_test.go:323: died
stdout:
... | Testing,help wanted,NeedsFix | low | Minor |
555,728,304 | TypeScript | Make it possible to infer superclass type parameters / constructor overload from the `super` call | ## Search Terms
superclass base class generic type infer contextual infer parent generic super constructor
## Suggestion
Make it possible to infer superclass type parameters / constructor overload from the `super` call
## Use Cases
I'm working on an intermediate library with typings for a legacy codebase. ... | Suggestion,Awaiting More Feedback | medium | Critical |
555,772,015 | go | x/pkgsite: partial search doesn't return (any) matches which are "close" or latest | ### What is the URL of the page with the issue?
* https://pkg.go.dev/search?q=goproxytes
* https://pkg.go.dev/search?q=sh
### What is your user agent?
<pre>
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.66 Safari/537.36
</pre>
### Screenshot
Fo... | NeedsInvestigation,pkgsite,pkgsite/search | low | Major |
555,799,909 | pytorch | Second-order gradient cause segfault over time | ## π Bug
Hello, Iβm running a GAN model with some second-order regularization. The training went well at the beginning and the loss decreased. However, after a random period of time, ranging from 3000-8000 updates, the segfault occurs and the training was terminated automatically.
## To Reproduce
run the fol... | needs reproduction,triaged | low | Critical |
555,835,887 | go | cmd/go: list and download may read go.mod unnecessarily | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.14beta1 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
yes
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go env</code> Output</sum... | NeedsFix,modules | low | Critical |
555,859,465 | TypeScript | Case Sensitivity while importing in TypeScript | *TS Template added by @mjbvz*
**TypeScript Version**: 3.8.0-dev.20200108
**Search Terms**
- windows
- case sensitivity
---
Issue Type: <b>Bug</b>
1) Create a file in the tree using right click -> New File
2) Name the file "A-file.ts"
3) Rename the file using right click -> Rename to "a-file.ts"
4) ... | Bug | low | Critical |
555,861,144 | flutter | v2 embedding docs don't explain background plugin cases | This was raised by @ryanheise in [flutter/flutter/issues/47153#issuecomment-578418750](https://github.com/flutter/flutter/issues/47153#issuecomment-578418750):
> The critical thing I was looking for in this project [the android_alarm_manager plugin] was how to initialise the background isolate.
>
> There are vari... | platform-android,engine,d: api docs,a: existing-apps,P2,a: plugins,team-android,triaged-android | low | Major |
555,864,420 | godot | ShaderMaterial doesn't save with sensible defaults | **Godot version:**
3.2 rc3
**OS/device including version:**
ArcoLinux
**Issue description:**
When creating a ShaderMaterial and assigning it a shader, Godot will not supply the shader params with sensible defaults, but instead assign null to anything which wasn't set manually.
```
uniform vec4 base_color : hin... | enhancement,discussion,topic:shaders | low | Critical |
555,889,926 | rust | Tracking issue for future-incompatibility lint `conflicting_repr_hints` | This is the **summary issue** for a bug fix related to `repr(...)` hints. The goal of this page is describe why this change was made and how you can fix code that is affected by it. It also provides a place to ask questions or register a complaint if you feel the change should not be made. For more information on the p... | A-attributes,A-lints,T-compiler,C-future-incompatibility,C-tracking-issue | low | Critical |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.