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 |
|---|---|---|---|---|---|---|
739,183,594 | go | runtime: TestCrashDumpsAllThreads fails on various openbsd architectures | The `TestCrashDumpsAllThreads` test fails consistently on openbsd/mips64:
```
--- FAIL: TestCrashDumpsAllThreads (3.99s)
crash_unix_test.go:150: found 0 instances of main.loop; expected 4
crash_unix_test.go:151: SIGQUIT: quit
PC=0x85fdc m=5 sigcode=0
goroutine 0 [idle]:
... | OS-OpenBSD,NeedsInvestigation,compiler/runtime | low | Critical |
739,205,227 | vscode | Allow `createWebviewPanel` to open tab in preview mode | It would be nice if webviews tabs could have an option to open in a preview mode, similar to how editor tabs do.
More context: https://github.com/microsoft/vscode-pull-request-github/issues/113 | feature-request,api,webview | low | Minor |
739,207,907 | angular | refactor: implement a consist logging approach in the framework | As a follow up to #34763 this issue is to provide a place to discuss and track the idea.
There are a number of logging approaches in the current codebase, including direct use of `console.log`, use of the injectable `Console` service; sometimes guarded by dev-mode and sometimes not. | area: common,area: router,area: core,P4,cross-cutting: tree-shaking | low | Major |
739,209,796 | ant-design | Disable submit button while submitting | - [X] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate.
### What problem does this feature solve?
I want to disable my form submit button without adding an additional state on every form.
### What does the proposed API look ... | 💡 Feature Request,Inactive | low | Major |
739,232,655 | pytorch | Error while trying to load a pretrained ResNet34 VTN (Video Transformer Network) model in Android | Hi,
I have been trying run a pretrained ResNet34 VTN model in android. The pretrained model (ResNet34-VTN) can be downloaded here: https://download.01.org/opencv/openvino_training_extensions/models/action_recognition/resnet_34_vtn_rgb_ucf101_s1.pth
I have followed the following example: https://heartbeat.fritz.ai... | triaged,oncall: mobile | low | Critical |
739,251,081 | rust | Better account for invalid `async fn main() {}` | The following
```rust
async fn main() {
}
```
[produces a lot of output](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=d1fd5d05934ea779d55be47c00c2912f) that is not quite good:
```
error[E0277]: `main` has invalid return type `impl Future`
--> src/main.rs:1:17
|
1 | async f... | A-diagnostics,T-compiler,D-verbose | low | Critical |
739,253,217 | pytorch | Input dimension check for `torch.gather` | ## 🐛 Bug
The input dimension check was dropped somewhere between PyTorch 1.5.1 and 1.6.
## To Reproduce
The following code runs successfully. However, the `index` argument has incompatible dimensions and should raise an exception.
```python
import torch
torch.manual_seed(0)
input = torch.rand(4, 2)
ind... | module: error checking,triaged | low | Critical |
739,264,220 | TypeScript | Generic constrained to function: parameter is incorrectly inferred as `any` | <!-- 🚨 STOP 🚨 STOP 🚨 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 before lo... | Suggestion,Experience Enhancement | low | Critical |
739,291,186 | flutter | Integrate "dart fix" into flutter tool | This issue is to discuss whether/how we should integrate "dart fix" into flutter tool. Two useful integrations I could see are:
1. Make `flutter fix` available to apply available fixes to my current fluter project (this command would probably just pipe through to "dart fix").
2. Prompt users after upgrading to a ne... | tool,c: proposal,P2,team-tool,triaged-tool | low | Major |
739,292,376 | flutter | Videoplayer's network repeats the request multiple times in a second | When using `VideoPlayerController.network()`, the request to that resource is repeated many times.
initState of the controller:
```
void initState() {
super.initState();
_videoController = VideoPlayerController.network(widget.videoUrl)
..initialize().then((value) {
_videoController.setLoo... | p: video_player,package,team-ecosystem,P2,triaged-ecosystem | low | Major |
739,294,621 | PowerToys | [PowerRename] Replace content of the file as well as the name | Hi!
I would like an extension on this tool, I have been making great use of it but I would like the whole team to use this tool.
What could be very usefull is a replace inside the files for certain texts, for example I use this to quickly make copies of a repository we made in C# and make that a new template.
We c... | Idea-Enhancement,Idea-New PowerToy,Product-PowerRename | low | Major |
739,305,215 | TypeScript | Inline JSDoc tags don't work in comments that start with plain text | TS *mostly* supports inline tags, even though they're not standard, but the implementation is quirky since it's best-effort, not really a committed feature. Specifically, an inline tag works if the line starts with a non-inline tag, or is a line following such a line:
```
/** @param foo @see foo.bar */
```
or
... | Suggestion,Awaiting More Feedback | low | Major |
739,323,650 | react | Feature suggestion: Allow custom list of hooks to ignore on exhaustive-deps | The `exhaustive-deps` lint rule doesn't require setters from `useState`, dispatch from `useReducer`, and refs from `useRef` in dependencies, because we know for sure those will never change. I'd like to be able to add additional custom hooks to that "safe list". I understand this is potentially very dangerous, but we h... | Type: Feature Request,Component: ESLint Rules | medium | Critical |
739,352,973 | TypeScript | Quick Fix command for missing React component imports does not work without React in the scope even with the new JSX factory enabled in Next.js that makes the React import unnecessary | <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search existing issues to avoid creating duplicates. -->
<!-- Also please test using the latest insiders build to make sure your issue has not already been... | Bug | medium | Critical |
739,361,625 | go | crypto/cipher: GCM AEAD can be created with a custom nonce OR tag size, but not both | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.15 windows/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes, any version, any OS, any CPU.
### What did you do?
I need to do AES GCM with both a custom nonce _and_ a custom tag size - 16 and 1... | NeedsInvestigation | low | Critical |
739,384,696 | pytorch | Allow add_embedding to have dict for metadata | ## 🚀 Feature
I would like to be able to see in tensorboard more than one metadata type. Therefore, it should allow me to send a dictionary rather than a list in the `add_embedding` function.
## Motivation
This is a feature of tensorboard that we don't have today. However, it seems most of it is already there wi... | triaged,module: tensorboard | low | Minor |
739,402,615 | vscode | unexpected/unnecessary text refreshing |

Issue Type: <b>Bug</b>
1) From "File"->"Open Recent", you'll get something similar to the attached snapshot, where two lines of text are hightlighted in blue.
2) Keep moving mouse up and down (to si... | bug,linux,menus,upstream-issue-linked,chromium | low | Critical |
739,463,924 | angular | Ivy: Clarification of why "class" input is handled differently in template and host | # 🐞 bug report
### Affected Package
The issue is caused by package @angular/core
### Is this a regression?
Yes, likely: In Angular 9.0 (with Ivy) this bug was not present.
### Description
This issue is based on the fix for #35383 (PR: #35889).
The behaviour of how host bindings get populated int... | area: core,core: styling bindings,state: needs more investigation,P3 | low | Critical |
739,476,856 | flutter | Lazy sliver lists should provide some kind of warning if on any frame children have a zero width/height in the main axis | E.g. a vertical list of widgets that initially all have a height of 0 should report a warning that a seemingly lazy list is actually loading all possible slivers in the first frame because the height of each child came in as zero. | c: new feature,framework,c: API break,c: performance,f: scrolling,a: debugging,a: error message,perf: memory,perf: speed,P3,team-framework,triaged-framework | low | Major |
739,478,266 | flutter | Slivers should report a warning if they take "too long" to build | Similar to https://github.com/flutter/flutter/issues/70147 but somewhat opposite.
Creating a list of slivers that do too much work is a common source of jank that may be difficult to diagnose. For example, if you have a list of slivers that all have to parse something (e.g. markdown or larg/complex SVG), you may see... | c: new feature,framework,c: performance,f: scrolling,a: debugging,perf: speed,P3,team-framework,triaged-framework | low | Major |
739,517,988 | deno | Proposal: Module Loader API | With ES Modules, it is effectively impossible to do "hot module reloading" of the modules, as ES Module specification is fairly strict that once the module is resolve and its two pass instantiation is done, that is the end of the road for the module and cannot be replaced.
When you are mocking/testing/etc. though, i... | cli,suggestion,needs discussion | high | Critical |
739,545,078 | vscode | Ubuntu `lxc profile show default > default.yml'` on zsh fails to redirect | Issue Type: <b>Bug</b>
From settings select shell `/bin/zsh` or `/usr/bin/zsh`
then if in the vscode terminal, I redirect output of lxc profile I get an empty file. This is true for the snap installs of both `code` and `code-insiders`
```
% lxc profile show default > t1.yml
% wc t1.yml
0 0 0 t1.yml
```
If... | bug,help wanted,linux,snap | low | Critical |
739,547,158 | pytorch | error: reference to __host__ function 'parallel_for<thrust::cuda_cub::for_each_f...' in __host__ __device__ function | I try to use clang10 with cuda10.2 to compile pytorch v1.6.0 instead of nvcc, when compiling 'pytorch/caffe2/operators/piecewise_linear_transform_op.cu'
`/usr/bin/clang++ -D__CUDACC__ -MD -MF /home/pytorch/build/caffe2/CMakeFiles/torch_cuda.dir/operators/torch_cuda_generated_piecewise_linear_transform_op.cu.o.NVCC-dep... | module: build,module: cuda,triaged | low | Critical |
739,552,619 | create-react-app | TypeError: Cannot read property 'exports' of undefined function getModuleExports(moduleId) { return __webpack_require__.c[moduleId].exports; } | Hey guys,
I've recently upgraded `create-react-app` to version 4.0.0 and got blew problem in dev environment (running `yarn start`, no error in building phase, but getting error in runtime when we launch the browser):
 generated by `torch.jit.trace().save()` using Pytorch. Then, I converted it to TorchScript, loaded, and finally executed the script ... | oncall: jit,triaged | low | Critical |
739,579,148 | TypeScript | Type subscope for local type aliases | <!-- 🚨 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 |
739,649,373 | godot | TileMap/TileSet: AtlasTile priority cannot be utilized since update_cell_bitmask() won't call atlastile_get_subtile_by_priority() | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
<!-- Specify commit hash if using non-official build. -->
3.2.3 with mono
**OS/device including version:**
<!-- Specify GPU model, drivers, and the ... | bug,topic:core | low | Minor |
739,655,375 | storybook | Build storybook with production react | The [largest package in the vendors bundle](https://app.packtracker.io/organizations/184/projects/150/commits/c1e2477b3d6378d933af8eb612f8a30eeb939c9f/explore) is `react-dom.development.js` at a whopping 840k. If we can use the production bundle we might be able to get a nice performance boost. | dependencies,help wanted,performance issue | low | Major |
739,660,933 | storybook | Bundle optimizations: UI libraries | We use a number of [large libraries](https://app.packtracker.io/organizations/184/projects/150/commits/c1e2477b3d6378d933af8eb612f8a30eeb939c9f/explore) which may have smaller drop-in alternatives
- overlay-scrollbars 359kb => ???
- react-hotkeys 310kb => X only used once
- react-color 161kb => react-colorful (5% ... | performance issue | low | Minor |
739,677,333 | angular | Create dynamic component loading documentation | <!--🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅
Oh hi there! 😄
To expedite issue processing please search open and closed issues before submitting a new one.
Existing issues often contain information about workarounds, resolution, or progress updates.
🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅... | P4,needs: discussion,feature: votes required,area: docs | medium | Critical |
739,678,118 | go | fmt: more doc needed for Formatter | Current (go1.15, tip) documentation of interface [`fmt.Formatter`](https://tip.golang.org/pkg/fmt/#Formatter):
> Formatter is implemented by any value that has a Format method. The implementation controls how State and rune are interpreted, and may call Sprint(f) or Fprint(f) etc. to generate its output.
This is in... | Documentation,help wanted,NeedsInvestigation | low | Major |
739,703,924 | godot | UI inconsistencies in exported variables | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
3.2.3
**OS/device including version:**
NA
**Issue description:**
There are several inconsistencies in how Godot displays exported variables tha... | enhancement,topic:editor,usability | low | Minor |
739,711,429 | vscode | Adopt Linux Repo publishing v3 | > Currently our Publishing system has a limitation that if there are a lot of publishing activity to that repository, the repository is in a corrupted state until all ongoing publishing gets completed to that repository. Usually it gets auto resolved once all publishing to that repository is completed.
> If you are us... | feature-request,linux,engineering | low | Minor |
739,721,956 | flutter | [PlatformViews] iOS fontweight renders incorrectly | I make the method swzzile for UIFont's system API to change custom font for my App, just like : +systemFontOfSize:, +boldSystemFontOfSize:, +italicSystemFontOfSize:, +systemFontOfSize:weight:
Then the flutter render text by my custom font, but the fontweight is wrong, w500 will render to w400, that's why???
flutt... | platform-ios,engine,a: typography,a: platform-views,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-ios,triaged-ios | low | Critical |
739,722,153 | flutter | AppBar is not clickable after setting primary to false on iOS | <!-- 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... | platform-ios,framework,f: material design,f: gestures,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design | low | Critical |
739,725,844 | rust | Alternative highlighting for Rust code block in rustdoc | Context https://twitter.com/imperioworld_/status/1325916530257833984 cc @GuillaumeGomez
# Description
I'm the author of https://github.com/Hywan/inline-c-rs/. It allows to write C code inside Rust. It's a super basic `proc_macro` that transforms the code into a string (with some extra manipulations), which is sa... | T-rustdoc,C-feature-request,A-markdown-parsing | medium | Critical |
739,739,585 | rust | Moving all elements out of a Vec generates worse assembly since 1.45 | <!--
Thank you for filing a regression report! 🐛 A regression is something that changed between versions of Rust but was not supposed to.
Please provide a short summary of the regression, along with any information you feel is relevant to replicate it.
-->
I was looking for the best way to move all elements out ... | P-medium,T-compiler,regression-from-stable-to-stable | low | Major |
739,746,732 | go | net/http/httputil: DumpResponse return error when ContentLength=2 with Body length 0, but it's a response for http.MethodHead request | <!--
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.15.4 linux/amd64
</pre>
### Does this issue reproduce... | NeedsInvestigation | low | Critical |
739,757,768 | svelte | Duplicated <meta> tags on initial page using <svelte:head> | Using component to compose head contents from an object as Head.svelte:
```
<svelte:head>
{#if title}
<title>{title}</title>
{/if}
{#if meta}
{#each Object.entries(meta) as [ name, content ]}
<meta {name} {content} />
{/each}
{/if}
</svelte:head>
```
By including this componen... | stale-bot,temp-stale | low | Minor |
739,864,446 | pytorch | Pytorch 1.7.0 with cuda 11.1.1 and cudnn 8.0.5 | Hi, currently cuda 11.1.1 and cudnn 8.0.5 are both available, according to former replies from Nvidia engineers, they will bring performance improvement to 3080/3090 GPUs.
The requested feature is when will PyTorch officially support them?
Thanks
cc @ezyang @seemethere @malfet @walterddr @pytorch/pytorch-dev-infra @... | module: cuda,oncall: releng,module: ci,triaged,enhancement | medium | Major |
739,922,745 | scrcpy | Menu items would be welcome | **Is your feature request related to a problem? Please describe.**
No.
**Describe the solution you'd like**
That in the menu of the desktop scrcpy app the actions are available, e.g. zoom, screen off, rotate, pull notifications, etc.
Now I have to remember keyboard shortcuts which is very 'msdos' like.
| feature request | low | Minor |
739,960,568 | storybook | Module not found: Error: Can't resolve on Windows. Virtual file does not account for windows path sep. | **Describe the bug**
https://github.com/storybookjs/storybook/blob/next/lib/core/src/server/preview/iframe-webpack.config.ts#L111
String replacement does not account for Windows path separator.
**To Reproduce**
Use windows style file paths.
```
module.exports = {
stories: [
path.join(__dirname, "../... | bug,compatibility with other tools,has workaround,core | low | Critical |
739,969,396 | flutter | [flutter_tools] support custom flutter build output directory | Hello Guys!
I need change the android build files to other HD with more space, but after do this i got a error;

Steps to reproduce:
1. run > flutter create .
2. Edit build.gradle ( androi... | c: new feature,platform-android,tool,a: build,has reproducible steps,P2,team-tool,triaged-tool,found in release: 3.19,found in release: 3.20 | low | Critical |
739,974,865 | TypeScript | [BUG] union type generic extends child class with generic method | **TypeScript Version:** all, tested from 3.3 to 4.2
**Search Terms:** union type generic extends child class with generic method
**Code**
```ts
class A<GValue> {
a<GKey extends GValue>(value: GKey): void {}
}
class B<GValue> extends A<GValue> {
a<GKey extends GValue>(value: GKey): void {}
}
... | Needs Investigation | low | Critical |
740,017,075 | godot | [TRACKER] Unit tests to add or improve | Our unit test coverage is currently fairly low. We'd like to increase our unit test coverage; any help is welcome.
**Interested in writing new unit tests?** See the [unit tests documentation](https://docs.godotengine.org/en/latest/development/cpp/unit_testing.html) and [compiling instructions](https://docs.godotengine... | good first issue,tracker,topic:tests | high | Critical |
740,084,198 | pytorch | How to install Pytorch on AIX7.2 without internet access? | I am trying to install Pytorch on AIX7.2 server without internet access. I have pytorch-1.0.2.tar.gz from PYPI website and run the PIP installation as ```python -m pip install Flask --no-build-isolation --no-index --find-links ./ $pkg``` where $pkg is pytorch-1.0.2.tar.gz. However, it has the following error. How to... | module: build,triaged | low | Critical |
740,088,144 | pytorch | Common dunder methods fail when called directly | ## 🐛 Bug
Many common dunder methods fail when called directly. The error message is `RuntimeError: Tried to access nonexistent attribute or method ...`, which is thrown in `SimpleValue::attr` (sugared_value.cpp:83). Specifically, the issue is the failed call in `BuiltinFunction::tryCreate` (sugared_value.cpp:189). ... | oncall: jit,days | low | Critical |
740,091,487 | flutter | felt should not ask for `ENGINE_PATH` | When running `felt test --integration-tests-only` the command fails with the following:
```
Please set ENGINE_PATH environment variable.
+ exit 1
ERROR: Failed to clone flutter repo. Exited with exit code 1
```
I expected it to work without specifying the path because `felt` already [resolves the engine path]... | team,engine,platform-web,P2,team-web,triaged-web,e: engine-tool | low | Critical |
740,091,684 | flutter | InteractiveViewer scrolls ListView while zooming in and out with a mouse/trackpad | ## Steps to Reproduce
1. Clone https://github.com/flutter/gallery.
2. In the main.dart file change the GalleryApp with the app class bellow (it just wraps the `MaterialApp` with `InteractiveViewer`)
2. Run it on Web (Chrome)
3. Place the cursor over the Material list and...
3. Using a Mouse with scroll wheel, sc... | framework,f: material design,a: desktop,a: mouse,has reproducible steps,P2,found in release: 3.7,found in release: 3.11,team-framework,triaged-framework | low | Critical |
740,100,938 | flutter | Guidance for background isolate creation | <!-- 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... | engine,d: api docs,P2,a: plugins,team-engine,triaged-engine | low | Critical |
740,101,745 | go | x/net: expose LOWER_UP flag in NICs | <!--
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 1.15.4
</pre>
### Does this issue reproduce with the latest release... | NeedsInvestigation | low | Critical |
740,147,093 | rust | Heavy usage of traits & generics causes incredibly slow compile times & code bloat | [`differential-datalog`](https://github.com/vmware/differential-datalog/tree/master/rust/template/differential_datalog) makes heavy use of [`timely-dataflow`](https://github.com/TimelyDataflow/timely-dataflow) and [`differential-dataflow`](https://github.com/TimelyDataflow/differential-dataflow). When using this librar... | I-compiletime,T-compiler,C-bug,I-heavy | low | Critical |
740,165,308 | pytorch | ARM Mac 16-core Neural Engine | ## 🚀 Feature
Support 16-core Neural Engine in PyTorch
## Motivation
PyTorch should be able to use the Apple 16-core Neural Engine as the backing system.
## Pitch
Since the ARM macs have uncertain support for external GPUS. It would be wise to support the Apple Neural Engine.
## Alternatives
Use AMD6... | feature,triaged | high | Critical |
740,178,014 | terminal | Terminal should support Taskbar.AppId so that different Terminal groups can glom separately on the taskbar | <!--
🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING:
1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement.
2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl... | Help Wanted,Area-UserInterface,Product-Terminal,Issue-Task | medium | Critical |
740,178,336 | flutter | Confusing error message from flutter tools when verifying a broken Android Studio version. | #69517 Steps to Reproduce
1. Create a broken Android Studio client with missing permissions to the Java version.
2. Run flutter doctor
You will get the error
```
null. The flutter tool cannot access the file or directory.
Please ensure that the SDK and/or project is installed in a location that has
read/write... | tool,a: first hour,a: quality,P2,team-tool,triaged-tool | low | Critical |
740,185,309 | pytorch | pyre not able to infer the type of torch.jit.script | ## 🐛 Bug
It seems pyre is not compatible with torch.jit.script decorator. It also cannot find some attributes of module.
## To Reproduce
Steps to reproduce the behavior:
```
# pyre-fixme[56]: Pyre was not able to infer the type of the decorator
# `torch.jit.ignore`.
@torch.jit.ignore
def ge... | oncall: jit | low | Critical |
740,230,135 | pytorch | DCNv2 Layers | ## 🚀 Feature
<!-- A clear and concise description of the feature proposal -->
## Motivation
DCNv2 is a very widely used layer type in modern computer vision models ([example implementation](https://github.com/CharlesShang/DCNv2)). However, due to the third party implementation, several features remain incompati... | module: nn,triaged,function request | low | Minor |
740,252,674 | go | x/blog/content: images and embedded YouTube content in pkgsite-redesign.article renders poorly on mobile | 
The recent blog post on pkg.go.dev renders poorly on mobile browsers. | NeedsFix | low | Minor |
740,269,651 | storybook | Spurious warnings on Docs tab | In the 6.1 beta there are two new warnings in the Docs tab:
1. `storyFn is deprecated and will be removed in Storybook 7.0.`
2. Unable to find source for story ID 'xxx--yyy'
| bug,addon: docs | low | Major |
740,271,462 | flutter | Build native UI testing support for Windows plugins | file_selector shows native UI, so automated testing for it will require building out native UI test support for Windows in `integration_test`. It seems like WinAppDriver is the recommended approach for UI testing. | platform-windows,package,a: desktop,P2,team-windows,triaged-windows | low | Minor |
740,271,570 | flutter | Build native UI testing support for macOS plugins | file_selector shows native UI, so automated testing for it will require building out native UI test support for macOS in `integration_test`. We will almost certainly want to use XCUITest for this, as on iOS. | platform-mac,package,a: desktop,P2,team-macos,triaged-macos | low | Minor |
740,271,721 | flutter | Build native UI testing support for Linux plugins | file_selector shows native UI, so automated testing for it will require building out native UI test support for Linux in `integration_test`. | platform-linux,package,a: desktop,P2,team-linux,triaged-linux | low | Minor |
740,276,688 | pytorch | GPU acceleration for Apple's M1 chip? | ## 🚀 Feature
Hi,
I was wondering if we could evaluate PyTorch's performance on Apple's new M1 chip. I'm also wondering how we could possibly optimize Pytorch's capabilities on M1 GPUs/neural engines.
I know the issue of supporting acceleration frameworks outside of CUDA has been discussed in previous issues l... | module: performance,triaged | high | Major |
740,297,350 | flutter | Disable tool crash logging when running with a locally built engine | These crashes tend not to be informative and are generally not possible to reproduce/fix without access to the locally built engine.
/cc @jonahwilliams | c: crash,tool,P2,team-tool,triaged-tool | low | Critical |
740,304,535 | flutter | dartdoc.dart generate pubspec.yaml doesn't use Dart language versioning | Split off from https://github.com/flutter/flutter/issues/70084, reported by @mit-mit
The logic in `dev/tool/dartdoc.dart` calculates package versions by writing a temporary pubspec.yaml file. This file doesn't have an SDK constraint, so it's language version is undefined.
```dart
// Create the pubspec.yaml... | tool,c: proposal,P3,team-tool,triaged-tool | low | Major |
740,360,180 | TypeScript | Preserve property comment and insert @default value, if provided | ## Search Terms
default initial initializer value preserve comment tsdoc type options option bag
## Suggestion
As the title suggests, insert a `@default` comment to the TSDoc AST if an initializer is provided, preserving the original comment.
## Use Cases
I have a default value for an option and I want t... | Suggestion,Awaiting More Feedback | low | Minor |
740,362,148 | deno | Make resources implement Transferable | Related to #5965 (and possibly others)
It would be really nice if resources could be Transferable between web workers. This would allow for proper multi-threading for HTTP and WebSocket servers.
This can provide multiple benefits:
- Isolated code exposure.
If someone finds a exploit it has a lower likelihoo... | deno_core,suggestion | medium | Major |
740,417,294 | TypeScript | Type check TS file instead of index.d.ts in node_modules leads to build error that cannot be ignored | <!-- 🚨 STOP 🚨 STOP 🚨 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 before lo... | Needs Investigation | low | Critical |
740,419,375 | flutter | [Video Player] - Clockwise android recorded videos are displayed as black screen with audio on iOS devices | I'm working in an app that records media (image/video) using android/iOS devices and then upload that media to Firebase Storage. All recorded videos are working fine, just one edge case:
Videos recorded in clockwise mode (landscape-right rotated) in Android devices are shown as black screen with audio in iOS devices... | platform-ios,p: video_player,package,P2,team-ios,triaged-ios | low | Major |
740,477,942 | godot | AnimationPlayer with local-to-scene animation in inherited scene unnecessarily makes resource built-in to that scene | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
<!-- Specify commit hash if using non-official build. -->
3.2.3
**OS/device including version:**
<!-- Specify GPU model, drivers, and the backend (G... | discussion,topic:core | low | Minor |
740,484,771 | go | runtime/pprof: NewCPUProfile + cpuProfile.Start to allow profile configuration | > I think SetCPUProfileRate is, albeit confusing, still functioning. It needs to be called in the right order with StartCPUProfile. Last time I looked (~a month ago), it probably prints some warnings, but it does change the rate.
>
> The pprof package doesn't seem to have a way to set the profiling rate. Not sure if ... | help wanted,Proposal,Proposal-Accepted,compiler/runtime | medium | Critical |
740,490,677 | flutter | Flutter build bundle does not work with symlinks on Windows | ## Steps to Reproduce
<!-- Please tell us exactly how to reproduce the problem you are running into. -->
1. Create (or use) a Flutter application with these attributes:
- Has an asset in the pubspec specified as a directory.
- The asset in the specified directory is a symlink to a file elsewhere.
2. On Win... | platform-android,tool,platform-windows,a: build,has reproducible steps,P2,found in release: 3.7,found in release: 3.9,team-android,triaged-android | low | Critical |
740,498,991 | flutter | [local_auth] Support Linux | ## Use case
The `local_auth` package is useful when handling sensitive data in Flutter applications. In my case, I am processing encrypted, sensitive messages which I would obviously like to protect. Especially on Desktop systems in the professional environment, lots of sensitive data is being processed. That is why... | platform-linux,p: local_auth,package,a: desktop,P3,team-linux,triaged-linux | medium | Major |
740,506,768 | transformers | Add POINTER model | # 🌟 New model addition
## Model description
[POINTER](https://github.com/dreasysnail/POINTER) is a progressive and non-autoregressive text generation pre-training approach, published on EMNLP 2020 by Microsoft Research. POINTER generates fluent text in a progressive and parallel manner. With empirical logarithmi... | New model | low | Major |
740,526,422 | rust | Destructor of one struct field depends on other without any correlation | I have a struct with 2 fields. Destructor of one field depends on the other without any correlation (at least I don't see any). Below is a short snippet showing the bugged behaviour. Main code can be found on this stackoverflow post: [StackOverflow question](https://stackoverflow.com/questions/64769867/destructor-of-on... | A-lifetimes,A-trait-system,A-DSTs,T-compiler,C-bug | low | Critical |
740,526,795 | flutter | RouteAware didPushNext not called when initial route creates multiple routes | Consider an initial route like "/screen2" - this initial route automatically leads to the creation of both "/" and "/screen2", with the 2nd screen placed on top of the first. Both widgets are instantiated, both widgets are initialized, both widgets are built, and if both screens implement `RouteAware`, then both screen... | framework,f: routes,has reproducible steps,P2,found in release: 3.7,found in release: 3.8,team-framework,triaged-framework | low | Critical |
740,529,145 | next.js | Ensure Next.js is correctly respecting `NODE_ENV` | Next.js should unconditionally use `NODE_ENV=development` and `NODE_ENV=production` for `next dev` and `next build` respectively in the following areas:
- [ ] `.env.*` loading
- [ ] Client-side bundle inlining
- [ ] Server-render time
- [x] `next/babel` plugin internal mode (#20679)
- [x] Webpack mode (#20679)
... | bug,Webpack | medium | Major |
740,581,212 | pytorch | Conda package should install libtorch in the standard location | `conda install pytorch=1.7 -c pytorch` has the header and libs under python dirs, for example `$CONDA_PREFIX/lib/python3.8/site-packages/torch/include/torch/script.h`.
It should install libtorch under `$CONDA_PREFIX/{include,lib}`.
Maybe we can have a separate `libtorch` conda package for users who do not need py... | module: binaries,module: build,triaged | low | Minor |
740,592,391 | ant-design | Cascader 支持onSearch事件,让用户可以自己处理搜索逻辑 | - [ ] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate.
### What problem does this feature solve?
在数据量大的时候Cascader组件中生成plattenOptions耗时严重(300ms/次),如果一个页面多个组件示例,且生成的plattenOptions一样,则会造成不必要的耗时. 所以需要将生成plattenOptions的逻辑由用户统一处理
... | help wanted,💡 Feature Request,Inactive | low | Minor |
740,622,298 | pytorch | Cudnn header files should be copied into build package as well | ## 🚀 Feature
Cudnn headers should be copied to build package as well.
## Motivation
Logically, we have copied the cudnn dlls to build package, the head files should be copied as well.
In reality, If the user is using C++ frontend, he/she might need to set CUDNN_INCLUDE_DIR in CMAKE, It'd better to keep the head ... | module: windows,triaged,windows-triaged | medium | Critical |
740,634,763 | go | cmd/go: add a flag to ignore build constraints when listing packages | I realise that the point of `go list` is to list packages, and I realise that one must generally obey build constraints when loading packages. For example, it makes no sense to try to type-check all the Go files in a package while ignoring build constraints, because there will likely be duplicate definition errors if d... | NeedsFix,FeatureRequest,GoCommand,Tools | medium | Critical |
740,642,648 | go | runtime: Goexit doesn't crash the program | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.15.4 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</summar... | NeedsInvestigation,compiler/runtime | low | Critical |
740,660,816 | go | html/template: escapes + to + | As far as I know, the `+` character has no special meaning when used as: `<p> This is a plus "+" sign</p>`. However html/template's escaping analysis thinks otherwise. What strikes me as odd is that `template.HTMLEscaper("+")` doesn't provide the same behaviour, even when skipping the [allocation optimisation check](ht... | NeedsDecision | medium | Major |
740,673,181 | ant-design | Tabs结合Popover会渲染两次Popover | - [ ] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate.
### Reproduction link
[https://stackblitz.com/edit/react-ua4iau?file=index.js](https://stackblitz.com/edit/react-ua4iau?file=index.js)
### Steps to reproduce
Tabs中addI... | 🐛 Bug,help wanted,Inactive | low | Minor |
740,674,331 | godot | Astar2D Inconsistent with tie-breaking decision in path traversal | **Godot version: 3.2.stable**
**OS/device including version: Ubuntu 18.04.4 LTS x86_64**
Astar2D path finding is not consistent due to the use of OAHashMap. The tie breaker for choosing points that are equivalent in distance from any current point is decided by which was first iterated in the [OAHashMap as seen... | enhancement,topic:core,confirmed | low | Critical |
740,682,046 | go | encoding/json: Unmarshal inserts map keys when the value is not appropriate for the map type | ```go
package main
import (
"fmt"
"encoding/json"
)
func main() {
var x map[string]int
err := json.Unmarshal([]byte(`{"a":1,"b":"c"}`), &x)
fmt.Printf("x = %#v, err = %s", x, err)
}
```
Output:
```
x = map[string]int{"a":1, "b":0}, err = json: cannot unmarshal string into Go value of type int
... | NeedsFix | low | Critical |
740,736,064 | godot | Export variable not shown in Inspector after resolving script error by modifying parent script | **Godot version:** 3.2.3
**OS/device including version:** not graphics-related
**Issue description & Steps to reproduce:**
I have a base scene and an inherit scene named `Base.tscn` and `Derived.tscn`. Each of them has a script that's named accordingly. And `Derived.gd` inherits from `Base.gd`.
```gdscrip... | bug,topic:gdscript,topic:editor | low | Critical |
740,742,447 | vscode | Reveal comments in diff editor when navigating with the keyboard | Microsoft/vscode#67509
Repro:
1. Turn on tab key moves focus mode
2. Focus the second comment in the document, with the first being out of the viewport:

3. Press shift+tab a few times until the ... | feature-request,comments | low | Minor |
740,777,715 | rust | Suggest using -- --nocapture if tests run for too long | When tests ran via `cargo test` take too long, a message like the following shows on the console:
```
running 1 test
test foo ... test foo has been running for over 60 seconds
```
I would like it if this little note could be updated to say something like the following, to help discoverability of the `--nocaptu... | C-enhancement,A-diagnostics,T-compiler,A-libtest | low | Minor |
740,782,804 | pytorch | Make libtorch modular | ## 🚀 Feature
libtorch binaries have grown substantially over the last releases, to a point where this is a problem because we need to ship our software on DVD.
## Motivation
We are currently upgrading from libtorch 1.4 to 1.7 in order to support Ampere GPUs.
We noticed that torch.dll is larger, new CUDA dlls (... | module: binaries,module: build,triaged,module: selective build | low | Major |
740,794,689 | terminal | Allow CUI apps to provide a WT profile through the registry | I know the first reaction of the Windows Terminal team will be that JSON is much better than the registry, especially for WSL users, and in most cases I agree, but hear me out on this one.
Windows Terminal automatically detects and add profiles for Microsoft-provided shells and WSL distros, populating the new-tab me... | Issue-Feature,Area-Settings,Product-Terminal | low | Major |
740,822,162 | TypeScript | String literal rename doesn't work in object unions | <!-- 🚨 STOP 🚨 STOP 🚨 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 before lo... | Bug,Domain: Refactorings | low | Critical |
740,839,195 | create-react-app | Export a subset of react-scripts build config for usage in dependencies | Hello,
As many, I think, I often want to split my projects into multiple submodules.
But CRA doesn't build dependencies outside of src.
So each time I create a submodule, I have to create a rollup config which reproduces quite exactly the same build config as in react-scripts files. And I try to maintain it when... | issue: proposal,needs triage | low | Minor |
740,840,734 | pytorch | Attempted to read a PyTorch file with version 3, but the maximum supported version for reading is 2 | ## 🐛 Bug
Torch models saved in PyTorch 1.7 fail to load when loaded on 1.4, both as state-dicts and TorchScript models.
## To Reproduce
Steps to reproduce the behavior:
Training Environment:
1. Trained model using PyTorch 1.7.0, saved using torch.save(model.state_dict())
2. Convert model to TorchScript.... | module: serialization,triaged | low | Critical |
740,854,352 | flutter | [mobile] Selected DropdownMenuItem isn't highlighted on mobile only | ## Steps to Reproduce
1. Run the code following on the mobile simulator or physical mobile device
<details>
<summary>code sample</summary>
```dart
/// Flutter code sample for DropdownButton
// @dart = 2.9
// This sample shows a `DropdownButton` with a large arrow icon,
// purple text style, and bold pu... | c: regression,platform-android,platform-ios,framework,f: material design,f: focus,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design | low | Major |
740,883,171 | vscode | command tooltip and keyboard shortcut name should be the same. | <!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ -->
<!-- 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. -->
Please use the same terms throughout the appli... | debt,search | low | Major |
740,889,376 | rust | Transparently retrying `Interrupted` `waitpid` calls is not always appropriate | NB: this issue is just some rambling based on some drive-by review I've done elsewhere. I think its a genuine and useful thing to track, but its not something I hold strong opinions about.
Currently the `Child::wait` call on UNIX systems is implemented to retry in case the `waitpid` call gets interrupted, due to its... | C-bug,T-libs,O-unix,A-process | low | Minor |
740,907,150 | flutter | [web] Line with stroke width 0 not hairline when canvas is scaled | Drawing lines with (the default) strokeWidth 0 on web acts more like strokeWidth 1, it scales when the canvas is scaled. It should always produce a 1-pixel line.
## Steps to Reproduce - run this code in DartPad
```dart
import 'package:flutter/material.dart';
import 'dart:ui';
void main() {
runApp(MyApp()... | platform-web,c: rendering,e: web_html,has reproducible steps,P2,found in release: 3.3,found in release: 3.5,team-web,triaged-web | low | Minor |
741,051,590 | pytorch | Eliminate redundant device guards in generic dispatch key kernel wrappers | We codegen device guards into kernel wrappers for backends that need them, so kernel implementors don't have to.
Currently, we also generate device guards into *generic* kernel wrappers. But being generic, we should be able to assume that if these kernels wind up calling any backend-specific kernels, those will do ... | module: performance,triaged,module: dispatch | low | Minor |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.