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 |
|---|---|---|---|---|---|---|
734,981,848 | ant-design | Allow primitive values as table's datasource | - [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?
In complex applications where **normalized** data is managed in a global state like redux, a list component may receive an array ... | help wanted,Inactive | low | Major |
734,985,115 | flutter | ListView+Image first time run on ios get stuck | flutter doctor -v

video linke
[RPReplay_Final1604373139.zip](https://github.com/flutter/flutter/files/5479154/RPReplay_Final1604373139.zip)
this is code:
 in https://pytorch.org/tutorials/intermediate/ddp_tutorial.html 2 to the following:
```
def demo_basic(rank, world_size):... | high priority,triage review,oncall: distributed,triaged | low | Critical |
735,010,745 | rust | rustdoc: Implementations on Foreign Types are not sorted in sidebar | See in the docs for the [`num`](https://docs.rs/num/0.3.0/num/trait.Num.html) crate:

| A-trait-system,C-discussion,T-rustdoc-frontend | low | Minor |
735,019,538 | rust | rustdoc: Strip blank lines from start and end of code blocks | People will often use the `#` character to hide lines that aren't relevant to the example, but rustdoc will display blank lines you leave between `#`-prefixed lines and the visible lines. For example, this source:
```rust
//! ```
//! # #[cfg(any(feature = "alloc", feature = "std"))]
//! # mod test {
//!
//! use... | T-rustdoc,C-enhancement,A-markdown-parsing | low | Minor |
735,080,357 | pytorch | [Feature Request] tensorboard add_graph support for multiple method | ## 🚀 Feature
For a PyTorch model, `add_graph` (in `torch.utils.tensorboard.SummaryWriter`) uses `forward` method of the model to trace the graph.
I propose to support for multiple methods of the model (not only the `forward` method).
I think it only needs a small change in implementation:
- check `input_to... | oncall: visualization | low | Minor |
735,129,581 | PowerToys | [FancyZones] Option to change precedence between "move to last known zone" and "move to active monitor" | ## ℹ Computer information
- PowerToys version: v0.25.0
- PowerToy Utility: Run + Fancy Zones
- Running PowerToys as Admin: Yes
- Windows build number: [run "winver"] 19041.572
This setting only opens on the last known zone even if it is on a different screen.
 LaunchScreen.storyboard in ios/Runner/Base.lproj
3. Run `flutter run`
**Expected results:** <!-- what did you wa... | platform-ios,framework,engine,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-ios,triaged-ios | low | Critical |
735,201,200 | create-react-app | React-scripts v4 ignores the .eslintignore file at the root when using a monorepo | <!--
Please note that your issue will be fixed much faster if you spend about
half an hour preparing it, including the exact reproduction steps and a demo.
If you're in a hurry or don't feel confident, it's fine to report bugs with
less details, but this makes it less likely they'll get fixed soon... | needs triage,issue: bug report | low | Critical |
735,202,976 | godot | High Resouce usage in empty scenes (Profiler) |
**Godot version:**
Godot 3.2.4 beta1 under Linux KaOS
**Issue description:**
I'm in doubt if this is normal, but this is a profiler for a empty scene:

In my current project is worse in the same ... | topic:editor,documentation | low | Minor |
735,203,102 | go | runtime: difficult to find memory leak that is a result lots of defers in a hot loop | <!--
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.3 linux/amd64
</pre>
Cross compiled for GOOS=linux... | NeedsInvestigation,compiler/runtime | low | Critical |
735,206,080 | node | [Proposal] Deprecate --without-intl compilation flag | <!--
Thank you for suggesting an idea to make Node.js better.
Please fill in as much of the template below as you're able.
-->
**Is your feature request related to a problem? Please describe.**
Currently, Node.js supports the compilation with disabled ICU. I think we would benefit from officially deprecating... | i18n-api | medium | Major |
735,215,555 | TypeScript | TypeScript 4.1+: Generic binding too broad in recursive conditional types | **TypeScript Version:** 4.2.0-dev.20201103
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** Recursive Conditional types, generics, tuple types
**Code**
```ts
// A test object
const obj = {
a: '2',
b: {
c: 3,
d: {
... | Needs Investigation | low | Minor |
735,220,556 | kubernetes | requiredDuringSchedulingRequiredDuringExecution status | `requiredDuringSchedulingRequiredDuringExecution` is mentioned [in the documentation](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity) as "In the future we plan to offer",
but I could not find any plan to do so in a near future. None of the workarounds I found until now could hel... | sig/scheduling,sig/node,kind/feature,needs-triage | high | Critical |
735,238,156 | rust | supertraits do not resolve correctly for dynamic dispatch trait bounds | <!--
Thank you for filing a bug report! 🐛 Please provide a short summary of the bug,
along with any information you feel relevant to replicating the bug.
-->
I tried this code:
https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=7e579f79329f28e5441b0291d22d60f9
where `X` is the supert... | T-compiler,C-bug,A-coercions,A-trait-objects | low | Critical |
735,299,049 | neovim | Netrw randomly opens the wrong file | <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`:
```
NVIM v0.4.4
Build type: Release
LuaJIT 2.0.5
Compilation: /usr/bin/clang -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DNDEBUG -DMIN_LOG_LEVEL=3 -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wsh... | bug-vim,netrw | low | Critical |
735,315,838 | rust | Suggest for<'a> syntax when lifetime bounds can't be satisfied | When a function incorrectly specifies lifetime as an argument, but uses a reference borrowed inside the function body:
```rust
async fn actual<'a, BT>(bt: BT) where BT: BoolTrait<'a> {
let v = 42;
bt.check(&v).await;
}
```
it would be helpful to suggest using the higher-rank trait bounds instead. Thi... | C-enhancement,A-diagnostics,A-lifetimes,T-compiler,A-suggestion-diagnostics,D-newcomer-roadblock | low | Critical |
735,357,334 | terminal | always starts on first desktop even when launched from other (sysinternals) | background/justification: I use sysinternals desktops to isolate some automated tests from my main session. When using Windows 10 virtual desktops, processes which are launched by the automated test run can pop up windows on other desktops which can be a nuisance. Using sysinternals desktops I can run the tests on desk... | Issue-Bug,Area-UserInterface,Product-Terminal,Culprit-Centennial | low | Major |
735,363,362 | flutter | Persistent bottom sheet does not respect SafeArea | When showing a persistent bottom sheet `SafeArea` is ignored and does not provide bottom padding:
<img width="511" alt="Screen Shot 2020-11-03 at 16 18 04" src="https://user-images.githubusercontent.com/654041/97996255-34324b80-1df0-11eb-88c6-23f9417c0e35.png">
Code:
```dart
import 'package:flutter/material.dar... | framework,f: material design,found in release: 1.22,found in release: 1.24,team-design,triaged-design | medium | Major |
735,372,857 | opencv | Load EfficientNet Keras implementation with OpenCV dnn | ##### System information (version)
<!-- Example
- OpenCV => 4.2
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2017
-->
- OpenCV => 4.4.0.44 or 4.2
- Operating System / Platform => Ubuntu 18.04.5
- Compiler => Python 3
##### Detailed description
I am trying to load a frozen ... | priority: normal,feature,category: dnn,Hackathon | low | Critical |
735,408,623 | pytorch | Error: invalid use of register | ## 🐛 Bug
When compiling PyTorch from source, this appears, FBGEMM fails with `Error: invalid use of register`.
## To Reproduce
Steps to reproduce the behavior:
1. Compile pytorch from source
2. The following error message will appear:
```
[1125/4743] Building CXX object third_party/fbgemm/CMakeFiles/fb... | module: build,triaged | low | Critical |
735,417,068 | go | runtime: "out of memory allocating heap arena map" on solaris-amd64-oraclerel | [2020-11-03T12:59:51-393f2bb/solaris-amd64-oraclerel](https://build.golang.org/log/6fc90d327776abc66c34c0956d283ab5e4e6235d)
```
--- FAIL: TestVet (6.36s)
--- FAIL: TestVet/lostcancel (57.25s)
vet_test.go:162: error check failed:
Unmatched Errors:
fatal error: out of memory ... | NeedsInvestigation,compiler/runtime | low | Critical |
735,426,332 | flutter | Google map as body of Scaffold breaks drawer | I'm using https://pub.dev/packages/google_maps_flutter as body of Scaffold, and i have drawer with empty container in that Scaffold. If drawer animation is not finished when i press home button, drawer will be unresponsive when i come back in app. This does not happen if body doesn't contain Google maps. For ease of re... | framework,f: material design,p: maps,package,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design | low | Major |
735,429,651 | TypeScript | Declare type to be an import depending on a string literal argument: typeof import(name); | Hello,
It's seems to be difficult to do but there's now a lot of possibilities with the typescript compiler that I wouldn't have thought possible before, so I prefer to ask.
Is there a chance to have this kind of definition:
```ts
declare function require(name: string): typeof import(name) | undefined;
```
I me... | Suggestion,Awaiting More Feedback | low | Minor |
735,433,431 | angular | Angular i18n generates one trans-unit where two are needed. | # 🐞 bug report
### Affected Package
@angular/core
### Is this a regression?
Never worked.
### Description
When using icu for pluralisation the context of the words get lost. Some translations for the same words differ based on context.
## 🔬 Minimal Reproduction
What you first need to know:
**Germ... | area: i18n,P3 | low | Critical |
735,448,183 | vscode | getLanguageConfiguration() API method is missing | <!-- ⚠️⚠️ 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. -->
Currently the [languages](https://code.visualstu... | feature-request,api,languages-basic,api-proposal | medium | Major |
735,495,333 | pytorch | ProcessGroupNCCL NCCL lib version mismatch | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
## To Reproduce
Steps to reproduce the behavior:
```
File "./dlrm.py", line 644, in SparseDataDist
self.backendFuncs.all_to_allv(self.collectiveArgs)
File "/home/ubuntu/param/train/comms/pt/pytorch_nccl_backend.py", line 124, in... | module: binaries,oncall: distributed,triaged | low | Critical |
735,504,892 | go | cmd/go: reconsider "-u=patch" changing the default to "@patch" for other arguments | In [CL 167747](https://golang.org/cl/167747), we implemented support for the `@patch` version query in `go get` for #26812, and made `-u=patch` imply `@patch` for positional arguments that do not specify any other version.
In retrospect, that behavior seems too subtle: it changes the meaning of one argument based on... | NeedsDecision,modules | low | Minor |
735,517,116 | TypeScript | Update Pick to use new key remapping in mapped types | <!-- 🚨 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,Experimentation Needed | low | Critical |
735,530,011 | ant-design | Table column's "responsive" array does not work with multiple breakpoints | - [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.
### Reproduction link
[](https://codesandbox.io/s/antd-reproduction-template-forked-e2ib9?fil... | help wanted,Inactive | low | Major |
735,560,229 | create-react-app | Error migrating to Yarn 2 | ### Describe the bug
**`yarn install` fails when trying to migrate a clean just-created CRA app to the version 2 (Berry)**
### Which terms did you search for in User Guide?
These are marked as closed but guys keep reporting the same issue:
* https://github.com/yarnpkg/berry/issues/719
* https://github.com/... | needs triage,issue: bug report | low | Critical |
735,564,651 | godot | In RichTextLabel indent tags break the placement of meta/url tags if the text is long enough (wraps multiple lines) | **Godot version:**
3.2.2
**OS/device including version:**
Windows 10
**Issue description:**
If you use an indent tag and a url tag in the same RichTextLabel, the click/hover area of the url tag will gradually shift farther and father out until it no longer aligns with the text.
**Steps to reproduce:**... | bug,topic:gui | low | Critical |
735,577,715 | vscode | Render new lines in suggest widget details | <!-- ⚠️⚠️ 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. -->
In reference to the refinement here: https://g... | ux,suggest,under-discussion | low | Minor |
735,583,458 | go | x/tools/gopls: reinitialize snapshot eagerly and asynchronously | Currently, reinitialization of a snapshot is done by the next request to need an initialized snapshot. We should probably do the reinitialization eagerly and asynchronously, while making sure that it is canceled whenever a new snapshot is created. | gopls,Tools | low | Minor |
735,601,006 | pytorch | [Feature request] Stochastic Frank-Wolfe optimizer | Recently, the Frank-Wolfe (FW) Algorithm is becoming more and more popular in Neural Network training due to its versatility and robustness (see e.g. [[1]](https://arxiv.org/abs/2010.07243) or [[2]](https://arxiv.org/abs/2010.05397)). While researching the algorithm in the context of Machine Learning, I implemented the... | feature,module: optimizer,triaged | low | Minor |
735,609,263 | flutter | Suggestion - Adding Shadow box list to CupertinoTabBar Component |
Hey Flutter dev team,
I have been developing an application using only Cupertino components and compared to its Material counterpart, I have noticed that it is not possible for me to add an elevation to CupertinoTabBar. Taking a look at the base code I could see that it is possible to add a Shadowbox component ins... | framework,f: cupertino,c: proposal,team-design,triaged-design | low | Minor |
735,615,221 | pytorch | Quantized modules should properly implement __getstate__ and __setstate__ (copy.deepcopy doesn't work on quantized model) | ## 🐛 Bug
There are various modules in the quantized namespace which inherit from `nn.Module` and override `__getstate__` and `__setstate__`. In some cases, the `__getstate__` and `__setstate__` methods do not properly get/set state of the parent `nn.Module`. This leads to subtle bugs when attempting to copy or in... | oncall: quantization,triaged | low | Critical |
735,624,166 | rust | regression: `panic!` and RUST_BACKTRACE=1 Show Wrong & Non-Informative Function Names when Unwinding | <!--
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.
-->
As I'm learning the language from a book ("_The Complete... | A-runtime,O-windows,A-debuginfo,P-medium,T-compiler,O-windows-msvc,E-help-wanted,C-bug,T-libs | medium | Major |
735,651,504 | flutter | Eliminate remaining logic from flutter_windows.cc | Originally flutter_windows.cc had essentially everything in it; over time most of the code has been moved into classes that correspond to the conceptual classes implied by the C API (FlutterWindowsEngine, FlutterWindowsView, etc.). There is still some logic in flutter_windows.cc itself though, such as FlutterDesktopVie... | team,engine,platform-windows,a: desktop,P3,team-windows,triaged-windows | low | Minor |
735,705,781 | godot | Restarting Godot from Editor Settings might discard unsaved scenes | <!-- 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
**Steps to reproduce:**
1. Create a new scene (don't save it)
2. Do some changes
3... | bug,topic:editor,confirmed | low | Major |
735,746,771 | deno | Feature request: fetch/HttpClient additions for public key pinning | Public key pinning is important for IOT access and security in general. Having just got public key pinning working for accessing the Philips Hue API, here's a list of features that are missing from Deno's `fetch`/`HttpClient` API:
1. Being able to fetch an IP address (there's another bug on this already)
2. Being a... | suggestion,ext/fetch | low | Critical |
735,750,375 | go | x/sys: sizeof st_rdev is 64bits on mips64 | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.13.9 linux/mips64le
</pre>
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go env</code> Output</summary><br><pre>
$ go env
GOHOSTARCH="mips64le"
GOHOSTOS="linux"
... | NeedsInvestigation | low | Minor |
735,752,734 | rust | x.py test --stage 0 src/tools/clippy does not work | <!--
Thank you for filing a bug report! 🐛 Please provide a short summary of the bug,
along with any information you feel relevant to replicating the bug.
-->
```
$ x.py test --stage 0 src/tools/clippy
Updating only changed submodules
Submodules updated in 0.01 seconds
Finished dev [unoptimized + debugin... | T-bootstrap,C-bug,A-contributor-roadblock,A-clippy | medium | Critical |
735,785,633 | pytorch | [jit] support length inference for list comprehension | ## 🚀 Feature
```python
from typing import Dict
class A(nn.Module):
def __init__(self):
super().__init__()
self.x = tuple([0, 1, 2])
self.y = nn.ModuleList([nn.Linear(10, 10)] * 3)
def forward(self, x: Dict[int, torch.Tensor]):
z = tuple([x[idx] for idx in self.x])
... | oncall: jit | low | Critical |
735,787,430 | pytorch | [jit] Properly support slicing of ModuleList | ## 🐛 Bug
## To Reproduce
```python
class A(nn.Module):
def __init__(self):
super().__init__()
self.x = nn.ModuleList([nn.Linear(10, 10)] * 3)
self.y = nn.ModuleList([nn.Linear(10, 10)] * 3)
def forward(self, x):
ret = []
for xx, yy in zip(self.x[1:], se... | oncall: jit | low | Critical |
735,855,651 | pytorch | ConvTranspose1d groups=channels is very slow!!! | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
## To Reproduce
```py
import torch
import torch.nn as nn
import torch.nn.functional as F
device = torch.device('cuda')
x = torch.rand(16, 512, 32).to(device)
m1= nn.ConvTranspose1d(512, 512, 6, stride=3, padding=2, output_padding=... | module: cudnn,module: convolution,triaged | low | Critical |
735,858,565 | pytorch | My demo app uses other package name will crash but org.pytorch.demo | ## 🐛 Bug
My demo app uses other package name will crash but org.pytorch.demo while loading pt.
## To Reproduce
I face a issue.My demo app uses other package name will crash but use org.pytorch.demo as pkgname is OK
Below is my crash stack
01-02 04:32:25.713 32127 32127 E AndroidRuntime: FATAL EXCEPTION: mai... | oncall: mobile | low | Critical |
735,879,874 | terminal | Azure Cloud Shell: Add support for Device Conditional Access | <!--
🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
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,Product-Terminal,Issue-Task,Area-AzureShell,Priority-3 | low | Critical |
735,880,363 | flutter | WebView: support attribute allowsLinkPreview for iOS | In my case, I need to handle long click. But in iOS, when long click will show preview link popup | c: new feature,platform-ios,f: gestures,p: webview,package,c: proposal,P3,team-ios,triaged-ios | low | Major |
735,920,264 | godot | GIProbe effects on non-baked objects too dark | <!-- 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.stable.mono.official
**OS/device including version:**
<!-- Specify GPU model, driver... | topic:rendering | low | Minor |
735,958,337 | pytorch | no member named 'beta1' in 'torch::optim::AdamOptions' | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
## To Reproduce
Steps to reproduce the behavior:
1. In https://pytorch.org/tutorials/advanced/cpp_frontend.html
1. torch::optim::Adam generator_optimizer(
generator->parameters(), torch::optim::AdamOptions(2e-4).beta1(0.5));
1.The... | module: docs,module: optimizer,triaged,actionable | low | Critical |
735,972,686 | flutter | [Feature Request] Allow CuptertinoTabScaffold to have null CupertinoTabBar | ## Use case
I want to use a bottom sheet as the primary means to navigate between different sections of my app, analogously to a tab bar. I want each section to maintain it's own Navigator state, so I am using `CupertinoTabScaffold`. However, I do not need the `CupertinoTabBar` to be visible.
This would also make... | framework,f: cupertino,c: proposal,team-design,triaged-design | low | Minor |
735,981,627 | go | x/sys/windows/mkwinsyscall: generates invalid calls for GOARCH=386 | ### What version of Go are you using (`go version`)?
go version go1.15.3 windows/386
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
set GO111MODULE=
set GOARCH=386
set GOBIN=
set GOCACHE=C:\Users\vagrant\AppData... | OS-Windows,NeedsInvestigation | low | Critical |
735,999,566 | flutter | [In app purchase package] Impossible to test a purchase on iOS. | Hello, I try the example from in app purchase git, I use my bundle id, my purchase is display and work great on android when I clic on the product button. but on my iOS device I have nothing... no error, just nothing, even in the sandbox testfly. Perhaps It's normal to not show pop up to test purchase before production... | platform-ios,p: in_app_purchase,package,P3,team-ios,triaged-ios | low | Critical |
736,016,707 | rust | Tracking Issue for `#![feature(const_cell_into_inner)]` | This is a tracking issue for `#![feature(const_cell_into_inner)]`.
Constantified functions are:
- `UnsafeCell::into_inner`
- `Cell::into_inner`
- `RefCell::into_inner`
- `OnceCell::into_inner`
- ~`Atomic*::into_inner`~ (done)
### Steps
- [x] Implementation (#78728, https://github.com/rust-lang/rust/pull/1... | T-libs-api,C-tracking-issue,A-const-eval,disposition-merge,finished-final-comment-period,Libs-Tracked | low | Major |
736,045,351 | vscode | SCM - support for filesystem path using ssh:// | <!-- ⚠️⚠️ 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. -->
#66046 was closed because Remote Development with ... | feature-request,scm | medium | Critical |
736,081,234 | flutter | TabController addListener invoked multiple times when switching tab index | i found is framework code call twice ~
source code link => [https://github.com/flutter/flutter/blob/master/packages/flutter/lib/src/material/tab_controller.dart#L210](url)
if duration != null notifyListeners() will call twice?
the source code is here ⬇️
```
void _changeIndex(int value, { Duration dura... | framework,f: material design,a: quality,has reproducible steps,found in release: 3.3,found in release: 3.6,team-design,triaged-design | low | Major |
736,125,729 | flutter | Add theme for the PaginatedDataTable and bring it up to Material specs | ## Use case
Let us theme the PaginatedDataTable and bring it up to Material specs.
## Proposal
- Add a theme for the PaginatedDataTable
- Bring it up to Material specs by:
- Replace usages of accentColor with colorScheme.secondaryColor
- https://flutter.dev/go/material-theme-system-updates
- Make s... | c: new feature,framework,f: material design,team-design,triaged-design | low | Minor |
736,139,781 | pytorch | Conv1D formula in docs is wrong | ## 📚 Documentation
in [torch.nn.Conv1d](https://pytorch.org/docs/stable/generated/torch.nn.Conv1d.html) docs the formula that describe the 1D convolution is wrong.
The first symptom that something is odd is that if you compare the formula with [torch.nn.Conv2d](https://pytorch.org/docs/stable/generated/torch.nn.... | module: docs,module: nn,triaged | low | Major |
736,148,144 | go | x/build: make precise Git commit hash → Go version mapping readily available | There are some places in x/build that try to determine a Go version of a Go commit in order to make some decisions (what builders should be run, etc.). So far we've been relying on heuristics to approximate the answer. There's some information in the name of the branch itself. For example, "release-branch.go1.15" can b... | Builders,NeedsInvestigation,FeatureRequest | low | Minor |
736,149,303 | vscode | Horizonal Scrolling through pointer on scroll bar | Issue Type: <b>Feature Request</b>
Often times when I have to scroll through lines, I have to hold Shift key and then scroll. I request to you include a scroll feature so that if the mouse pointer is on the horizontal scroll bar, while scrolling the scroll wheel, it will scroll horizontally.
VS Code version: Code... | feature-request,editor-scrollbar | low | Minor |
736,151,103 | create-react-app | create-react-app doesn't work | <!--
Please note that your issue will be fixed much faster if you spend about
half an hour preparing it, including the exact reproduction steps and a demo.
If you're in a hurry or don't feel confident, it's fine to report bugs with
less details, but this makes it less likely they'll get fixed soon... | needs triage,issue: bug report | low | Critical |
736,201,918 | excalidraw | Ability to set canvas properies via URL (like background color) | It would be useful to be able to set the canvas background color (including alpha channel) via url param. So something like https://excalidraw.com/?backgroundColor=ffffff00
opens a transparent canvas,
or
https://excalidraw.com/#backgroundColor=ebfbee
opens the whiteboard with ebfbee canvas color.
I also woul... | enhancement,discussion | low | Minor |
736,212,568 | flutter | Update flutter wiki's render speed test page | The e2e package has been discontinued.
So as to prevent confusion, the render speed performance test page could either be modified to use the integration_test package or be removed altogether | a: tests,c: new feature,d: wiki,c: proposal,f: integration_test,P3,team-framework,triaged-framework | low | Major |
736,222,794 | storybook | Saving a file on vim throws with 95% emitting fork-ts-checker-webpack-plugin | **Describe the bug**
When using storybook with angular project, and editing in vim, on save, Storybook throws :
```bash
95% emitting fork-ts-checker-webpack-plugin
```
**To Reproduce**
Steps to reproduce the behavior:
1. I created a new angular project with `ng new`
2. installed Storybook right after
3.... | compatibility with other tools,has workaround,performance issue,typescript | low | Critical |
736,228,494 | TypeScript | Don't include full paths in module names in error messages | **TypeScript Version:** 4.0.5 (also tested with `typescript@next`)
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** namespace has no exported member error
**Description**
Currently certain error messages shows _full_ file paths. For example:
... | Suggestion,Experience Enhancement | low | Critical |
736,274,854 | create-react-app | Bug: -webkit-calc doesn't work with var() when compiling css | I've got different animation on android and iphone, that's most likely
connected with top: and left: css props, so i have decided to add prefix
-webkit-calc (I am using calc() and var() for it). But npm run build crashes,
while npm run start works good -_-
React version: 16.13.1
Link to code example:
https:/... | stale,needs triage,issue: bug report | low | Critical |
736,289,935 | pytorch | FX quantization: we should preserve original model class name through the quantization passes | Currently, after a model goes through the FX quantization passes, the original class type and name is not saved. Ideally, we could preserve it as an attribute so it can be used for debugging. Something like
```
class ModelFoo(torch.nn.Module):
...
m = ModelFoo(...)
m_prepared = torch.quantization.prepare_f... | oncall: quantization,low priority,triaged | low | Critical |
736,304,064 | rust | Inefficient bit mask codegen in combination with comparison operators. | Hi. All four test cases should compile to what is essentially a no operation. However the compiler does not omit the unnecessary case_1 and case_2 bit mask operations as it does with case_3 and case_4.
https://play.rust-lang.org/?version=stable&mode=release&edition=2018&gist=5bc8761dc8bebe2fbf7797f47c4a2a26
```ru... | A-LLVM,I-slow,C-enhancement,T-compiler,C-optimization | low | Major |
736,348,703 | vscode | Git - Expose git.publish as a command through Git API | <!-- ⚠️⚠️ 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. -->
The `git.publish` command would be very helpfu... | help wanted,feature-request,git | low | Major |
736,356,801 | pytorch | torch.vmap giving INTERNAL ASSERT FAILED error | ## 🐛 Bug
Hi, I'm trying to use `torch.vmap` for Meta Learning. I wrote a small code snippet but I'm getting the error. `RuntimeError: false INTERNAL ASSERT FAILED at "../c10/core/TensorOptions.h":693, please report a bug to PyTorch. Unknown DispatchKey: Batched` at line 18 of the following script. Any help would b... | triaged,module: vmap | low | Critical |
736,363,794 | TypeScript | Allow non-identifiers to be used for JSXFragmentFactory | <!-- 🚨 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 |
736,374,914 | flutter | Adding "-v" flag to drive-examples command hangs | Steps to reproduce:
1. Apply this diff to https://github.com/flutter/plugin_tools/blob/master/lib/src/drive_examples_command.dart
```git
diff --git a/lib/src/drive_examples_command.dart b/lib/src/drive_examples_command.dart
index 59c6422..8b1fa36 100644
--- a/lib/src/drive_examples_command.dart
+++ b/lib/src/driv... | p: tooling,package,team-ecosystem,P2,triaged-ecosystem | low | Major |
736,387,371 | TypeScript | Incorrect error on legitimate type overlap | <!-- 🚨 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 |
736,428,231 | react | Bug: can not pass some special custom attribute such as `size` | As we know after react 16 we can use any custom attributes in dom elements
but there is a bug which some special attributes (such as `size`) are not forwarding to dom element

React version: 16.1... | Component: DOM,Status: Unconfirmed,Type: Discussion | low | Critical |
736,437,269 | flutter | Can't add Flutter module in Android with many sub apps | So, I've create a Flutter module following the procedure here
https://flutter.dev/docs/development/add-to-app/android/project-setup
and if I create a new simple android project where the root is named 'app' I can add dependency to my flutter module and all is working good.
Problem is that it's not the current ... | c: new feature,framework,engine,a: existing-apps,c: proposal,P3,team-engine,triaged-engine | low | Critical |
736,439,305 | flutter | Felt snapshot is frequently invalid | Pretty much every day I have to delete `.dart_tool/felt.snapshot` because I get a "Signature mismatch" error when trying to run `felt`. We should improve felt's snapshot invalidation logic to make this happen less often.
/cc @nturgut | engine,P3,team-engine,triaged-engine | low | Critical |
736,453,190 | vscode | [json] UI for anyOf settings tooltips needs improvement | <!-- ⚠️⚠️ 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... | feature-request,json | low | Critical |
736,503,707 | rust | Deduplicate code that finds the return type of a future | I've noticed a lot of code being added to different parts of the compiler that all does the same thing.. gives you the return type of an async fn. This issue is to keep track of all those places and eventually deduplicate them. | C-cleanup,T-compiler,A-async-await,AsyncAwait-Triaged | low | Minor |
736,503,777 | flutter | RenderParagraph does not scale WidgetSpan semantics node correctly when the textscalefactor > 1 | ```dart
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Directionality(
textDirection: TextDirection.ltr,
child: Center(
c... | framework,a: accessibility,P2,team-framework,triaged-framework | low | Minor |
736,519,255 | godot | Basis.slerp and Quat tolerance failure errors are misleading and probably too tight |
**Godot version:**
3.2.3.stable
**OS/device including version:**
Windows 10
**Issue description:**
I am sending a player's global_transform position in VR across the network at a low frame rate but filling in the missing frames using interpolation. I do this using the following code to make the interpolat... | bug,topic:core | low | Critical |
736,525,674 | PowerToys | Remove translation of PowerToy module names | Currently items like "Color Picker" got translated. lets be consistent since items like FancyZones won't and will be an issue for getting debug information. | Issue-Bug,Area-Localization | medium | Critical |
736,539,575 | go | gollvm: cross compiling | Dear Sir,
I want to compile a program in the x86_64 environment, this program can run in the aarch64 environment, and I try " go build -o output -gccgoflags="--target=aarch64-linux"", but it cannot work. | NeedsInvestigation | medium | Major |
736,544,398 | TypeScript | export default type | ## Search Terms
export default type
## Suggestion
Allow `export default` for `type`.
## Use Cases
It would be very nice to have `export default type` to match with other default exports such as classes and interfaces.
Right now it looks very inconsistent to be able to export anything as default and on... | Suggestion,Awaiting More Feedback | medium | Critical |
736,576,097 | flutter | [Web] : BlendMode.srcOut and BlendMode.dstOut colorfilters have no effects. | <!-- 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... | framework,engine,platform-web,a: images,e: web_html,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-web,triaged-web | low | Critical |
736,664,258 | rust | Missing comma in 1-tuple type should suggest adding comma there, not removing comma in value | Code:
```rust
fn main() {
let x: (i32) = (1,);
}
```
Current Output:
```
Compiling playground v0.0.1 (/playground)
warning: unnecessary parentheses around type
--> src/main.rs:2:12
|
2 | let x: (i32) = (1,);
| ^^^^^ help: remove these parentheses
|
= note: `#[warn(unu... | C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics,D-incorrect | low | Critical |
736,716,884 | pytorch | unbalanced gpu memory when using DistributedDataParallel | I was using DistributedDataParallel to train a model on single machine 8 gpus. I thought by using DistributedDataParallel, memory on each gpu should be approximately the same, however, there is one gpu with significantly more memory usage. Could anyone know what might cause this? Thanks!
` returns wrong line info on multiline formatted code | **Godot version:**
Godot Engine v3.2.3.stable.mono.official
**OS/device including version:**
Windows 10 /MacOS
**Issue description:**
When using multiline formatted code the get_stack() contains wrong line info
**Steps to reproduce:**
* create a simple scene and put this code into
```gdscript
ext... | bug,topic:gdscript | low | Minor |
736,741,316 | flutter | Debug apk of existing Android app integrated with release version of Flutter module | Hey guys,
Integrated flutter sub module with some screens to our existing Android project.
Trying to figure out if there is an option to build an unsigned debug apk of existing android project with release flutter sub module.
Tried to change flutter variant to "release" but the app still builds with debug flutter... | c: new feature,platform-android,tool,t: gradle,a: existing-apps,P3,team-android,triaged-android | low | Critical |
736,777,494 | react | Bug: Input minLength not working after type changed | I have an input with type password with minLength 8, and i have a toggle to change the type to text (password toggle).
when i type with length < 8 and press submit, it prevent to submit. but, when i toggle the password so it change the type to text and submit the form, it can submitted. btw i using useRef()
React v... | Type: Bug,Browser: Safari,Component: DOM | low | Critical |
736,779,315 | TypeScript | [Question or bug] One fourslash test file might be wrong. | <!-- 🚨 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 |
736,780,810 | go | net: "connectex: invalid argument" when dialing an Artifactory server over IPv6 | Working from home on a company-owned laptop (no admin rights) with Windows 10. From the office everything is OK, from home office the situation is different. The GOPROXY URL is IPv6 and then it gets redirected by the server. I can connect just fine to artifactory (the GOPROXY we use) both from shell and from browser, b... | OS-Windows,NeedsInvestigation | low | Critical |
736,808,989 | vscode | Add a hotkey to go back one level of breadcrumbs | <!-- ⚠️⚠️ 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. -->
VSCode has breadcrumbs feature that looks like... | feature-request,breadcrumbs | low | Major |
736,810,951 | create-react-app | ReactRefresh in monorepo fails to update when more than one react-app present in the page | ### Describe the bug
Unfortunately it is hard to provide a repro repo for this.
in a typescript monorepo(lerna and yarn workspaces enabled) with 2 cra started simultaneous in dev mode updates do not happen as expected.
i have a index.html that loads code from both react apps (meaning it has two different root di... | needs triage,issue: bug report | low | Critical |
736,919,265 | create-react-app | CRA 4 fails to compile when css background-image ulr('url') not resolved | I have a css file that is imported in my react app, it is something like:
styles.css
`.flag {
...
background-image: url("/img/flags.png") !important;
}`
It is imported in my react file -> import './styles.css';
In the previous version of CRA it works well, and when I build the app it was also okay, s... | needs triage,issue: bug report | medium | Critical |
736,921,186 | PowerToys | [Run][New Plugin] Search Edge Profiles | ## 📝 Provide a description of the new feature
When a user searches for Edge it would be nice to see all of the Edge Profiles available to open the correct one. Currently it always opens to the default profile.
_What is the expected behavior of the proposed feature? What is the scenario this would be used?_
Sea... | Idea-Enhancement,Product-PowerToys Run,Run-Plugin | low | Major |
736,930,310 | pytorch | how to use torch.utils.checkpoint + gru with variable length sequence? | I just want to use torch.utils.checkpoint on GRU to save gpu memory.
```py
def check(self, packed):
out, _ = self.rnn(packed)
padded = pad_packed_sequence(out, batch_first=True)
return padded
def forward(self, x, lengths):
"""Handles variable size captions
"""
x = self.embed(x)
... | module: rnn,triaged | low | Critical |
736,935,479 | PowerToys | Support SVGZ for preview and thumbnail | ## 📝 Provide a description of the new feature
_What is the expected behavior of the proposed feature? What is the scenario this would be used?_
Currently only non-compressed SVG files are being displayed on the preview panel and on the file thumbnail. Please add support for the compressed version SVGZ, as it's ... | Idea-Enhancement,Product-File Explorer | low | Major |
736,957,242 | flutter | SafeArea with undesired top padding | ## Steps to Reproduce
<!-- You must include full steps to reproduce so that we can reproduce the problem. -->
1. Run `flutter create bug`.
2. Update the `main.dart` file as follows
<details>
```
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends Stateles... | framework,f: material design,has reproducible steps,found in release: 3.3,found in release: 3.7,team-design,triaged-design | low | Critical |
737,077,180 | flutter | Regression in device lab metrics for flutter_repo_batch | https://flutter-flutter-perf.skia.org/e/?begin=1604242084&end=1604571480&keys=X3a8d39b49bc8119825b0b6aeb766da91&requestType=0&xbaroffset=22352
Affects the following metrics:
flutter_repo_batch MatrixUtils_persp_transformPoint_iteration bench_update_many_child_layers.html.drawFrameDuration.average bench_update_man... | engine,c: performance,dependency: dart,perf: speed,team: benchmark,P2,team-engine,triaged-engine | low | Major |
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.