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 |
|---|---|---|---|---|---|---|
721,690,641 | create-react-app | Create-react-app does not work with USB drive | ### Describe the bug
When I run: 'create-react-app test-app --verbose'. I get the following message:
npm verb stack RangeError: Maximum call stack size exceeded
npm verb stack at RegExp.test (<anonymous>)
npm verb stack at isDepOptional (C:\Program Files\nodejs\node_modules\npm\lib\install\deps.js:432:4... | needs triage,issue: bug report | low | Critical |
721,697,041 | create-react-app | [v4] Fast Refresh should not be enabled for old ReactDOM versions | If Fast Refresh is unavailable then we should fall back to full reloads. Currently, if you use CRA 4 with an old version of React (e.g. 15) it just doesn't do anything on edit.
| stale,needs triage,issue: bug report | low | Minor |
721,708,262 | go | x/build: prevent submission of CL with an outstanding wait-* hashtag | There is a convention of using a wait-* hashtag to indicate a CL is waiting on some specific item before progress can be made. This is described in issue #10658, which may need to be resolved more before progress can be made here.
I suspect it may be helpful to to have an automatic mechanism that prevents a CL from ... | Builders,NeedsInvestigation | low | Minor |
721,710,012 | pytorch | A race problem of JIT cpp extensions in distributed setting | When compiling JIT cpp extensions in distributed setting for **the first time** on a machine, processes will have race problems in creating the temporary directory for compilation. This always halts the program.
```
File "/home/zhuzhaoc/.local/envs/drug/lib/python3.7/site-packages/torch/utils/cpp_extension.py", l... | oncall: jit,days | low | Critical |
721,715,215 | go | testing: show diffs for incorrect output from Example tests | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.15.1 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... | Proposal,Proposal-Accepted | medium | Critical |
721,808,278 | TypeScript | Provide flag for projects to ban compile-time side-effects in root files | ## Search Terms
- pure
- side-effects
- elision
- global-modifying
## Suggestion
<!-- A summary of what you'd like to see added or changed -->
A new `tsconfig` flag should be added that bans compile-time side-effects in project root files. This idea was [originally proposed by @andrewbranch in response to ... | Suggestion,Awaiting More Feedback | low | Critical |
721,808,838 | angular | In Ivy, pipes in projected content uses viewProviders from a host component where ViewEngine did not | Closely related to: https://github.com/angular/angular/issues/36146
# π bug report
### Affected Package
@angular/core
### Is this a regression?
Yes.
Worked with VE.
Half worked after the bugfix that closed https://github.com/angular/angular/issues/36146.
Half is broken
### Description
This time the ... | regression,area: core,core: di,core: pipes,P4 | low | Critical |
721,828,766 | pytorch | torch.distributions.half_normal.HalfNormal.cdf returns negative values | ## π Bug
I've been using `torch.distributions` for a bit of probability work and noticed a strange behavior where `torch.distributions.HalfNormal` returns a _negative value_ for some CDF scores -- something that is typically bound between 0 and 1.
## To Reproduce
Steps to reproduce the behavior:
```
from t... | module: distributions,triaged | low | Critical |
721,870,697 | rust | feature(isa_attribute) / #[instruciton_set()] not present in the unstable book | this has been implemented in Nightly but not added to be unstable book. | C-enhancement,A-docs,requires-nightly,F-isa_attribute | low | Minor |
721,876,292 | flutter | [Flutter Engine] cross-compile vs host build | Flutter engine build scripts needs work in determining a host vs a cross-compile build.
Currently if the cross-compile matches the host machine architecture, it treats it like a host build.
I would suggest differentiating a host vs cross-compile using the sysroot value. If the sysroot value doesn't match the hos... | engine,c: proposal,P3,team-engine,triaged-engine | low | Minor |
721,879,210 | pytorch | [chore] Test pybind11 2.6.0 (RC 2?) | There [is a bug](https://bugs.python.org/issue41237) in CPython 3.9.0 (already fixed in 3.9 and master) that breaks pybind11 extensions slightly, causing them to exhibit UB (on macOS, usually segfaults on process exit). While this will be fixed in CPython 3.9.1, and has [already been patched](https://github.com/conda-f... | module: build,module: ci,triaged,enhancement | medium | Critical |
721,892,497 | pytorch | [JIT] Inconsistent behavior of torchScript parser in python and c++ | ## π Bug
<!-- A clear and concise description of what the bug is. -->
I am trying to writing some unit tests for torchScript interpreter with utilization of torch.jit.fork. In detail, I tried to compile the following script in C++ with the complie API provided in JIT:
```
const auto moduleExample = R"JIT(
de... | oncall: jit | low | Critical |
721,926,650 | pytorch | Complex Number support for torch.nn modules | ## π Feature
This issue is meant to roll up the conversation for how PyTorch intends to extend complex number support to nn module.
## Motivation
Complex Neural Networks are quickly becoming an active area of research and it would be useful for the users to be able to create modules with complex valued paramete... | module: nn,triaged,module: complex | low | Major |
721,929,648 | pytorch | JIT: error in LSTM with `flatten_parameters` | ## π Bug
Segfault error when tried to convert JIT on LSTM with `flatten_parameters()`.
## To Reproduce
Steps to reproduce the behavior:
```
class MyModel(nn.Module):
def __init__(self):
super(MyModel, self).__init__()
self.rnn = nn.LSTM(10, 20, 2)
def forward(self, x):
... | oncall: jit | low | Critical |
721,945,565 | rust | Feature request: Use 'trampolines' to make most of the body of a generic function non-generic | A common pattern in Rust, especially in the standard library, is to have two versions of a function: one generic and one with the actual implementation. For example, `Error::new()` immediately delegates to a non-generic function `_new()`:
https://github.com/rust-lang/rust/blob/5565241f65cf402c3dbcb55dd492f172c473d4ce/... | E-hard,A-codegen,I-compiletime,T-compiler,C-feature-request,I-heavy,A-mir-opt,A-monomorphization | medium | Critical |
721,951,539 | TypeScript | Type Selection Queries | This might be a bit of a crazy idea, but here goes: to enable loose coupling between components we sometimes write Pick<Type, 'a' | 'b' | 'c'>
It would be nice if we could create a type query to select properties with a similar syntax to GraphQL:
e.g:
```
prop: AType[{a, b, c: { d }]
```
This would be equi... | Suggestion,Awaiting More Feedback | low | Minor |
721,969,012 | go | runtime: heap pageAlloc.searchAddr strategy may be wrong | i read the heap alloc code. and find the pageAlloc.searchAddr may have a problem, as the comment say
i hope someone can review it @mknyszek
```
type pageAlloc struct {
// The address to start an allocation search with. It must never
// point to any memory that is not contained in inUse, i.e.
// inUse.con... | NeedsInvestigation,compiler/runtime | low | Minor |
722,032,577 | flutter | styling PopupMenuDivider divider color | in this simple implementation code i added some `PopupMenuButton` items into `AppBar` actions argument and now i want to styling `PopupMenuDivider` color which that have default color.
i try to use `ThemeData` but i get error:
```dart
ThemeData(
child: const PopupMenuDivider(
height: 10,
),
),
```
... | framework,f: material design,c: proposal,team-design,triaged-design | low | Critical |
722,049,658 | pytorch | Reduce "reserved" memory by PyTorch. | I am using Facebook's Detectron-2 custom training.
But I am getting error for: **RuntimeError: CUDA out of memory. Tried to allocate 48.00 MiB (GPU 0; 15.90 GiB total capacity; 14.55 GiB already allocated; 33.81 MiB free; 15.08 GiB reserved in total by PyTorch)**
Installing PyTorch:
```
## install dependencies... | module: cuda,module: memory usage,triaged | low | Critical |
722,073,449 | pytorch | [Feature] Imbalanced batch scattering in th.nn.DataParallel | ## π Feature
<!-- A clear and concise description of the feature proposal -->
When, say 4 GPUs (e.g. Titan Xp with 12 gigs of video memory) are shared among a group of people, the balanced (default) data scattering (i.e. sizes of sub-batches scattered across these cards are nearly the same) may not be flexible eno... | triaged,enhancement,module: data parallel | low | Minor |
722,074,140 | pytorch | Code asserts when register new aten operations' implementation thru "c10::RegisterOperators::op" API. | ## π Bug
Because the "c10::RegisterOperators::Options::impl_unboxedOnlyKernel" has been removed in #42841, the user cannot create the KernelFunction with unboxed kernel only.
The code asserts whenever uses c10::RegisterOperators::op to add the new kernel to the Dispatch table.
## To Reproduce
Use the old API... | module: internals,triaged | low | Critical |
722,091,542 | godot | Exported int variables only display as sliders if their stepsize is set to something other that 1 | **Godot version:**
3.2.3.stable
**OS/device including version:**
Windows 10 Pro v.2004 / Inspiron 7373 Core i7-8550U / Intel(R) UHD Graphics 620
**Issue description:**
Exported int variables don't show up as sliders. If you set the step size to something else that 1, they do. For some reason it works to se... | bug,topic:editor,confirmed,usability | medium | Critical |
722,093,056 | godot | "Align Transform with View" and "Align Rotation with View" only work if the 3D viewport is focused | **Godot version:** 3.2.3 and `master` (https://github.com/godotengine/godot/commit/0e7e25d488287517d54da221a69a8085b9ecd17d)
**OS/device including version:** Fedora 32, GeForce GTX 1080 (NVIDIA 450.66)
**Issue description:**
The "Align Transform with View" and "Align Rotation with View" 3D viewport menu option... | bug,topic:editor,usability,topic:3d | low | Minor |
722,101,129 | rust | E0271 displays wrong span for "required by this bound" | When compiling https://github.com/paritytech/polkadot/pull/1795/commits/828048247c644476c0b1e4acdaaf641f09cd49a3 with `cargo check -p polkadot-service`, I (correctly) receive several error messages, one of which is this E0271:
```
error[E0271]: type mismatch resolving `<OverseerSubsystemContext<Box<(dyn polkadot_no... | A-diagnostics,T-compiler,C-bug | low | Critical |
722,122,150 | rust | Error messages suggest lifetime annotations for stack references in some cases (E 106 instead of E 515) | In a training, I was presented with the following code that someone wrote:
```rust
struct Point {
x: i32,
y: i32,
}
fn x_diff(a: &Point, b: &Point) -> &i32 {
let diff = b.x - a.x;
return &diff;
}
fn main() {
let a = Point{ x: 1, y: 2 };
let b = Point{ x: 3, y: 4 };
let c =... | C-enhancement,A-diagnostics,A-lifetimes,T-compiler,D-newcomer-roadblock | low | Critical |
722,140,294 | vscode | API to trigger a refresh of the OUTLINE (DocumentSymbols) | I recreate the issue https://github.com/Microsoft/vscode/issues/71454 because it was closed.
My need is that I have a XML Language Server which supports settings for configuring symbols (like show/hide XML attributes, XML text nodes in the outline). When those settings are saved, I would like to refresh the outline.... | feature-request,api,outline | medium | Critical |
722,155,792 | pytorch | GPU memory leak when registering a forward hook with "self" access | ## π Bug
First of all, I am not sure if this issue relates to PyTorch or Python. However, since it happens only on GPUs, I am suspecting that it relates to PyTorch. Apologies if this is not a PyTorch problem.
I found a GPU memory leak (or better to say garbage collection issue) when I register a function with `s... | module: cuda,module: memory usage,triaged,has workaround | low | Critical |
722,169,386 | youtube-dl | Select the best quality with a unified extension | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | request | low | Critical |
722,199,406 | flutter | Google Sign In / Android - missing Guava Proguard rules | When trying to build release, I am getting proguard errors:
```
Note: the configuration refers to the unknown class 'com.google.android.gms.common.api.internal.BasePendingResult$ReleasableResultGuardian'
Warning: com.google.common.util.concurrent.FuturesGetChecked$GetCheckedTypeValidatorHolder$ClassValueValidator$... | c: crash,platform-android,t: gradle,p: google_sign_in,package,a: release,P3,team-android,triaged-android | low | Critical |
722,237,450 | TypeScript | Declaration merging can be inconsistent | **TypeScript Version:** 4.0.3
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
- module
- declare
- merging
- declaration
**Code**
_Source_ file `index.ts`:
```ts
import { foo } from "./foo.ts"
console.log(foo({ fooField: "hello" }))
``... | Needs Investigation,Rescheduled | low | Critical |
722,238,924 | flutter | Ink widget inside ListView is buggy | I have ListView with Ink widgets which are updating with a little delay. And there is a bug with rendering of the list.
<img width="417" alt="Screenshot 2020-10-15 at 14 11 27" src="https://user-images.githubusercontent.com/5296407/96116076-93d3c000-0ef0-11eb-9168-e77c64e5e6f7.png">
Reproducing example (click fab a... | framework,f: material design,f: scrolling,c: rendering,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-design,triaged-design | low | Critical |
722,266,795 | vscode | Remote-SSH & WSL: Support trash | <img width="208" alt="Screen Shot 2019-10-31 at 10 15 06 PM" src="https://user-images.githubusercontent.com/20842215/67997768-fd00eb80-fc2b-11e9-9d54-bfcbf705de51.png">
Issue Type: <b>Feature Request</b>
On my vscode remote-ssh (Ubuntu), I can only delete file permanently, which caused many troubles. Could vscode r... | feature-request,WSL,remote,file-io,ssh | high | Critical |
722,273,250 | godot | Contrast of lines against environment is minimal | **Godot version:**
v3.2.2.stable.mono.official
**OS/device including version:**
Mac OS 10.14 Mojave on Macbook Pro 2013 13"
**Issue description:**
There is very minimal contrast between the lines that define borders of things such as collision shapes and the environment and i cannot seem to find any kind of fi... | discussion,topic:editor | low | Minor |
722,288,258 | flutter | [Android] Add ability to use a theme for splash screen in addition to launch screen | I've followed the [documentation](https://flutter.dev/docs/development/ui/advanced/splash-screen) on how to create a launch and splash screen in Android and came up with [this example](https://github.com/Pavel-Sulimau/flutter_android_splash_screen_theming), but it's not so clear to me **how I can make the splash screen... | c: new feature,framework,f: material design,a: quality,c: proposal,a: layout,team-design,triaged-design | low | Minor |
722,309,749 | TypeScript | Cryptic error message without --noImplicitAny | **TypeScript Version:** 4.1.0-dev.20201015
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** noImplicitAny
In the JS mode given the class inheritance hierarchy A -> B -> C, when B code refers to class declaration (e.g. in a `clone()` method) and th... | Bug | low | Critical |
722,357,779 | rust | proc-macro receives warnings only when used within `macro_rules!` macros | A proc-macro that generates code with the partial same span as the input, receive warnings in the generated code only when used within `macro_rules!` macros. (does not receive warnings if used outside `macro_rules!` macros.)
*This originally reported in https://github.com/taiki-e/pin-project/pull/298* ([playground](... | A-lints,A-macros,C-bug | low | Critical |
722,359,694 | svelte | global css should be removed when component which injected it gets destroyed | **To Reproduce**
https://svelte.dev/repl/385622e1aa2d4dd1a538a649761ef50a?version=3.29.0
**Expected behavior**
I don't really know if this is working as expected, but in a component oriented context i would expect to work the way i'm describing here: Global CSS injected should be removed after the component that c... | temp-stale | medium | Major |
722,360,685 | rust | Intra-doc links do not work in markdown files | I tried this code:
```markdown
# Hello
Link to [std::process::Command]
```
I expected to see this happen: Rustdoc generates a link to https://doc.rust-lang.org/std/process/struct.Command.html
Instead, this happened: Rustdoc writes the literal text `[std::process::Command]`
This might be a little tricky... | T-rustdoc,E-medium,C-feature-request,A-intra-doc-links,A-markdown-parsing | low | Critical |
722,383,204 | node | Headers with the same name are combined into one entry in `http2` | Version: 14.13.1
Platform: macOS, Darwin Kernel Version 19.6.0
### What steps will reproduce the bug?
```sh
$ node
Welcome to Node.js v14.13.1.
Type ".help" for more information.
> (() => {
... const http2 = require("http2");
... const client = http2.connect("https://www.httpbin.org");
... const re... | http2 | low | Critical |
722,390,749 | go | runtime: debugCheckBP = true crashes compiler compilation on Windows | Using 8cd75f3da094931c59636b85a87b4f680a208799 (and also 1.15.3) with enabling `debugBP = true` it crashes the compiler compilation on Windows. On Linux, it compiles fine.
Reporting to ensure that this isn't an indication of a bug somewhere.
Here's the line I changed:
https://github.com/golang/go/blob/28e549dec3... | OS-Windows,NeedsInvestigation,compiler/runtime | low | Critical |
722,433,183 | node | Some statements have already been executed when debugger stops at line breakpoint | <!--
Thank you for reporting an issue.
This issue tracker is for bugs and issues found within Node.js core.
If you require more general support please file an issue on our help
repo. https://github.com/nodejs/help
Please fill in as much of the template below as you're able.
Version: output of `node -v`
P... | inspector | low | Critical |
722,485,146 | flutter | From "flutter run" the app shows "In iOS 14+, debug mode Flutter apps can only be launched from Flutter tooling..." warning | <!-- 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: regression,c: crash,platform-ios,engine,a: debugging,P2,team-ios,triaged-ios | low | Critical |
722,489,629 | pytorch | Make Undefined reprensentable in DispatchKeySet. | followup for https://github.com/pytorch/pytorch/pull/46352
Currently Undefined is not representable in DispatchKeySet, but it has valid use cases as a runtime dispatch key. We should just make Undefined a normal key. | triaged,enhancement | low | Minor |
722,496,776 | ant-design | Add callbacks to Upload itemRender function | - [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?
Our use case for this is to offer a file uploader with a "replace" button that does remove add at once(we have restricted the f... | Inactive | low | Minor |
722,532,577 | godot | Cannot extend the base `Texture` class via script | **Godot version:**
3.2.2-stable
**OS/device including version:**
Windows 10
**Issue description:**
Impossible to create a new instance of a custom texture implemented via script which inherits `Texture`:
```gdscript
extends Texture
class_name CustomTexture
```
` it would make a new runtime. This lead to confusing errors at runtime like 'reactor gone' which gave no hint of what actually went wrong: https://github.com/rust-lang/rust-clippy/issues/6088
Fortunatel... | A-lints,T-compiler,C-feature-request | low | Critical |
722,568,149 | go | x/tools/gopls: gopls is confused by //line directives | go1.15.1 darwin/amd64
Files with //line directives confuse gopls, for instance no hover returned, and no diagnostics generated.
In
```
//line a.y:1
package main
func main() {
var err error
err.Error()
}
```
hovering on `Error` returns nothing, but it hovers fine without the `//line` comment.
Likew... | gopls,Tools | low | Critical |
722,583,738 | pytorch | Custom ops get stuck in multiprocess data loader under certain environments | ## π Bug
`torchaudio` has custom ops which are written on top of `libsox` and bound via `TORCH_LIBRARY`.
Some ops get stuck when **all of the following conditions are met**;
- Called in `DataLoader` with `num_workers > 0`
- Python `3.6` or `3.7`
- `macOS`.
They *work fine* on `Linux`, `Python 3.8 of macOS... | module: dataloader,triaged,module: deadlock,module: custom-operators | low | Critical |
722,586,193 | rust | Type inference results in accessing a private type, causing a compilation error | <!--
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 ([playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=6e39f95bda095067bac36b7020c1a7e2)):
```rust
mod... | A-diagnostics,A-visibility,T-compiler,A-inference,C-bug | low | Critical |
722,594,738 | godot | execute with debug -d, get_stack() results in wrong stack trace from a another thread | **Godot version:**
Godot Engine v3.2.3.stable.mono.official
**OS/device including version:**
Windows 10 x64
**Issue description:**
I want get debug informations from a running application.
The application is started from a editor plugin with the OS.execute command and debug option -d
To collect debug informa... | bug,topic:gdscript,topic:editor | low | Critical |
722,599,626 | TypeScript | Simpler Expression of Complex Type Conditions | ## Search Terms
Multiple, type, condition, expression, no, extra, case, and, or
<!-- List of keywords you searched for before creating this issue. Write them down here so that others can find this suggestion more easily -->
## Suggestion
I often find myself repeating sub-branches of conditional types, which... | Suggestion,Awaiting More Feedback | low | Major |
722,672,311 | rust | Old vtable example fails with: "error: untyped pointers are not allowed in constant" | While trying to play around with `raw::TraitObject` I found this thread [internals.rust-lang.org/...](https://internals.rust-lang.org/t/compile-time-access-to-vtable/9794) and in particular this code example [play.rust-lang.org/...](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=45ec73295c7b66... | A-trait-system,T-compiler,C-bug,A-const-eval,requires-nightly,A-raw-pointers | low | Critical |
722,675,562 | vscode | Git - Removing a folder from multi-root workspace does not remove repo | <!-- β οΈβ οΈ 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,help wanted,git,good first issue | low | Critical |
722,676,977 | flutter | Add TimeOfDay parsing for Localizations | `MaterialLocalizations` has methods to format and parse a date, but only format for time.
A localized parsing method for time should be added. | c: new feature,framework,f: material design,a: internationalization,c: proposal,team-design,triaged-design | low | Minor |
722,704,451 | pytorch | send_object/recv_object APIs for c10d | ## π Feature
We should expose 2 APIs, `send_object` and `recv_object` to send picklable, non-tensor objects with send/recv semantics, similar to what is done for RPC arguments (but without using RPC). We will allow these APIs to take in a `rank` argument to address the source/destination of the send/recv similar to t... | oncall: distributed,triaged,module: c10d | low | Minor |
722,706,950 | rust | Tracking Issue for `remainder` methods for `str` split iterators | <!--
Thank you for creating a tracking issue! π Tracking issues are for tracking a
feature from implementation to stabilisation. Make sure to include the relevant
RFC for the feature if it has one. Otherwise provide a short summary of the
feature and link any relevant PRs or issues, and remove any sections that ar... | T-libs-api,B-unstable,C-tracking-issue,A-iterators,A-str,Libs-Tracked | medium | Critical |
722,711,719 | bitcoin | Proposed Timeline for Legacy Wallet and BDB removal | What to review next: #31378
***
Here is a proposed timeline for the move from legacy wallets to descriptor wallets, and at the same time, bdb to sqlite, culminating with the removal of both legacy wallets and bdb. Even though the wallet type and the wallet storage format are orthogonal to each other, as noted in ... | Feature,Wallet | medium | Critical |
722,722,651 | storybook | Alt + Left keyboard shortcut doesn't really work | **Describe the bug**
The Alt + Left keyboard shortcut doesn't really work well. It goes to the previous story, but then immediately switches back to the current story. It also conflicts with the browser itself, which uses the same shortcut for navigating backwards.
This was filed previously as issue #8759 but nothi... | question / support,ui | low | Critical |
722,749,354 | godot | [Bullet] Bullet Ignores RigidBody Damping Settings When They Are Zero | **Godot version:** 3.2.3 Standard x64
**OS/device including version:** Windows 7 Pro x64
**Issue description:**
In the Bullet physics engine, setting the linear or angular damping of a RigidBody to zero has no effect; the engine will ignore the setting and use the default value in the project settings. The only way ... | bug,topic:physics | low | Minor |
722,758,800 | storybook | Line height in Typeset component is broken | **Describe the bug**
Line height in `Typeset` component is broken. `Typeset` component should allow to provide `lineHeights` prop which will be corresponding to `fontSizes` prop. That way we can create proper presentation of font (we always need to define lineHeight to get the best look from the font for a given font... | bug,theming,addon: docs,block: description | low | Critical |
722,795,424 | rust | Incorrect "private type in public interface" diagnostic | In the example below, `fn a` is marked as leaking the private type `NotPublic` to a public interface, but `fn a` is no more visible than `NotPublic` is.
```rust
trait NotPublic {}
mod inner {
use super::NotPublic;
pub fn a<T>(_a: T) where T: NotPublic {}
}
```
([Playground](https://play.rust... | C-enhancement,A-lints,A-diagnostics,A-visibility,T-compiler,A-suggestion-diagnostics,D-papercut | low | Critical |
722,795,595 | flutter | Tabs invisible by default when not in AppBar | Tabs. If they're in an AppBar, it all works great. If they're not, then the background is white and the default color is white and they disappear. Seems like we should somehow be making the AppBar set the theme for the TabBar to use? ...and then default the TabBar theme to work when it's on a Material?
Consider:
``... | framework,f: material design,a: first hour,has reproducible steps,found in release: 3.3,found in release: 3.7,team-design,triaged-design | low | Minor |
722,797,862 | flutter | Tab/TabBar/TabBarView documentations improvements | It would be great if we added the following information to the docs for tab-related widgets:
* Sample code.
* Diagram showing how the whole thing breaks down (e.g. pointing to a Tab, a TabBar, a TabBarView, etc).
* Information about how to override the theme. For example, where the colors come from for text, for t... | framework,f: material design,d: api docs,team-design,triaged-design | low | Major |
722,799,317 | terminal | Opening a pane while another is animating locks it to a smaller size forever | 1.5.2892.0.
If I go crazy on alt-shift-+, I get this:

| Issue-Bug,Area-UserInterface,Product-Terminal,Priority-3 | low | Minor |
722,901,902 | flutter | [webview_flutter] : Route with WebView page is shown below the previous route when using SurfaceAndroidWebView() | I tried to use SurfaceAndroidWebView() as below:
```
void initState() {
super.initState();
if (Platform.isAndroid) WebView.platform = SurfaceAndroidWebView();
}
```
The result is the new route with WebView is launched below the previous route. Even the WebView is underneath the previous page, WebView s... | platform-android,engine,a: existing-apps,a: platform-views,p: webview,package,has reproducible steps,P2,found in release: 2.2,found in release: 2.5,team-android,triaged-android | low | Major |
723,005,509 | go | crypto/cipher: A performance optimization idea of βcryptoβ lib for ARM-arch |
### What version of Go are you using (`go version`)?
<pre>
$ go version 1.14.4
</pre>
When I run AES-CBC performance analysis on amd64 and arm64 platforms, I found that functionοΌ`func xorBytes(dst, a, b []byte) int` and `func safeXORBytes(dst, a, b []byte, n int)` (in crypto/cipher/xor_generic.go) on arm64-ar... | NeedsInvestigation | low | Major |
723,031,528 | flutter | It should be possible to customize the language, copyright and company name in the exe file meta data | ## Use case
I want to customize the language, copyright and company name in the exe file meta data.
The company name is currently limited to the package name which doesn't really make sense.
The copyright is currently defined as `Copyright (C) {{year}} {{organization}}. All rights reserved.` which makes sense as... | tool,c: proposal,P3,team-tool,triaged-tool | low | Minor |
723,034,848 | flutter | Add back iOSVersionStyle option to CupertinoActivityIndicator to allow catering to iOS13 and iOS14 | <!-- 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,a: fidelity,f: cupertino,c: proposal,team-design,triaged-design | medium | Critical |
723,043,894 | ant-design | Opening modal with a backdrop flickering if bootstrap css included | - [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://stackblitz.com/edit/react-maljyb?file=index.js](https://stackblitz.com/edit/react-maljyb?file=index.js)
### Steps to reproduce
- Open ht... | π Bug,Inactive | low | Major |
723,062,004 | godot | Localization remap doesn't work for Ogg Vorbis sounds, when language is changed at run-time | **Godot version:**
v3.2.3
**OS/device including version:**
Windows 10
**Issue description:**
- When language is changed real-time, remapping the sounds doesn't work.
- Same bug is when trying to play from AudioStream or AudioStream2D.
- Works fine is specific language is selected as default (project settings... | bug,topic:core,confirmed,topic:audio | low | Critical |
723,070,777 | flutter | Request for Irish (ga) Locale Support | ## Use case
Whilst adding I18N support for my app, I discovered that Irish (ga) is not one of the supported languages in the flutter_localizations package.
## Proposal
Please consider adding it as one of the supported languages.
| framework,a: internationalization,c: proposal,P3,team-framework,triaged-framework | low | Major |
723,079,253 | create-react-app | Release react-scripts with #8768 included | ### Is your proposal related to a problem?
The problem is described nicely in #8768: Right now jest tests that depend on @ai's nanoevents or nanoid don't work.
### Describe the solution you'd like
It seems #8768 was supposed to end up in a 3.4.2 release, but this hasn't happened. Instead 3.4.2 (and 3.4.3) have... | issue: proposal,needs triage | low | Minor |
723,083,994 | flutter | Usage of form validators doesn't feel right - Proposal for better return type | Hello,
I am right now building some form in flutter using `TextFormField`s as described here https://flutter.dev/docs/cookbook/forms/validation.
The `validator` parameter of `TextFormField` is defined as some` typedef FormFieldValidator<T> = String Function(T value)`.
It might seem like a small thing, but this f... | a: text input,framework,f: material design,c: proposal,team-design,triaged-design | low | Critical |
723,090,721 | TypeScript | Mixin with union as base class | <!-- π¨ 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,In Discussion | low | Critical |
723,110,717 | flutter | [google_maps_flutter_web] Add "draggableCursor" option | It would be really nice if the "draggableCursor" option could be added to change the cursor style. By default its the hand icon. | c: new feature,p: maps,platform-web,package,c: proposal,P3,team-web,triaged-web | low | Minor |
723,136,617 | youtube-dl | ERROR: Unsupported URL: | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | question | low | Critical |
723,210,122 | ant-design | Filter treeNodes in Tree component on search | - [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'm using a searchable Tree component. I would like to be able to filter treeNodes on search, so that matched treeNodes are shown... | help wanted,π‘ Feature Request,Inactive | low | Major |
723,212,011 | pytorch | C++ API: Training and inference of torchscript modules on multiple GPU | <!-- Please outline the motivation for the proposal. Is your feature request related to a problem? e.g., I'm always frustrated when [...]. If this is related to another GitHub issue, please link here too -->
At the moment, `torch::nn::parallel::data_parallel` (in file [data_parallel.h](https://github.com/pytorch/pytor... | oncall: jit | low | Minor |
723,229,920 | storybook | De-dupe glob resolutions before passing to webpack | _Originally posted by @ndelangen in https://github.com/storybookjs/storybook/issues/3968#issuecomment-709998495_
> Interesting @felipenmoura . So the idea is that when you have multiple globs that resolve to the same story, some race condition is triggered that blows up the startup time?
I'm hoping that in the fu... | configuration babel / webpack,performance issue | low | Minor |
723,248,432 | opencv | SVD::compute(E, D, U, Vt);it dont make E = U diag(1,1,0) V | ##### System information (version)
<!-- Example
- OpenCV => 4.2
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2017
-->
- OpenCV => :grey_question:
- Operating System / Platform => :grey_question:
- Compiler => :grey_question:
##### Detailed description
<!-- your description... | incomplete | low | Critical |
723,260,678 | pytorch | [META] Assert that expected libraries appear in libtorch | ## π Feature
We should create an expected list of files to appear in libtorch to test that libtorch was build correctly.
## Motivation
With #44257, we should expect that pytorch_jni libs appear in libtorch bundles on all platforms. This currently doesn't happen because of upstream cmake issues in fbjni.
##... | triaged,module: static linking,enhancement | low | Minor |
723,274,511 | neovim | add autocmd-event for setloclist/setqflist | ### Actual behaviour
There is only an event emitted before and after a command as run that Vim considers to be relevant for the quickfix or location list (e.g. `:grep`). But the lists can be set by basically everyone, causing no event the user could listen to.
### Expected behaviour
An event gets thrown when ever ... | enhancement,needs:vim-patch,events,quickfix | low | Major |
723,279,018 | pytorch | Advanced indexing: allow combining Boolean & integer index | ## π Feature
In NumPy, this works:
```
>>> a = np.ones((2, 3, 4))
>>> b = np.ones((2, 3), dtype=bool)
>>> a[b, 2] = 1
```
In PyTorch (master branch), it doesn't:
```
>>> a = torch.ones(2, 3, 4)
>>> b = torch.ones(2, 3, dtype=bool)
>>> a[b, 2] = 1
IndexError: The shape of the mask [2, 3] at index 1 does n... | triaged,module: numpy,module: advanced indexing,function request | low | Critical |
723,338,653 | TypeScript | Variadic tuple inference does not work well with generics (e.g. currying array) | **TypeScript Version:** 4.1.0-dev.20201015 (also 4.0.3)
**Search Terms:** variadic tuples, generics, curry, inference
**Code**
```ts
function curry<T extends unknown[], U extends unknown[], R>(f: (...args: [...T, ...U]) => R, ...a: T) {
return (...b: U) => f(...a, ...b);
}
function _map<T, U>(mapFn:... | Needs Investigation | low | Critical |
723,412,707 | go | math/big: big.Int `fmt.Formatter` implementation should support `%q` | I suggest a small quality-of-life improvement to the `*big.Int` type to support printing as a quoted string. `*big.Int` implements `fmt.Formatter` and (contrary to the documentation) supports the `s` verb, printing the integer in decimal format. This allows you to do:
<pre>
fmt.Printf("My int: %s\n", big.NewInt(1))... | NeedsInvestigation | low | Minor |
723,440,721 | TypeScript | Set esModuleInterop to "true" by default | ## Search Terms
* esModuleInterop
## Suggestion
Change [`esModuleInterop`](https://www.typescriptlang.org/tsconfig#esModuleInterop) from being an opt-in to instead be an opt-out, taking one step further towards deprecating the non-`esModuleInterop` mode and make `esModuleInterop` the only supported mode going ... | Suggestion,In Discussion | low | Major |
723,474,557 | vscode | Safari/iPadOS: UI affordance for non default cursor style | <!-- β οΈβ οΈ 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... | ux,under-discussion,safari,ios-ipados | low | Critical |
723,504,922 | flutter | Linter: Undefined symbol GrDirectContext::MakeVulkan | In flutter/vulkan/vulkan_window.cc, the call to `GrDirectContext::MakeVulkan` is undefined when SK_VULKAN is not defined.
If clang-tidy supports runs with a `-D` or similar mechanism for symbols, we could try running with that defined. Otherwise, we should disable linting immediately at the call site, for that line... | team,engine,from: sanitizer,P2,team-engine,triaged-engine | low | Minor |
723,507,618 | flutter | Lint: undefined symbols {FLUTTER_ENGINE,SKIA,DART}_VERSION | In flutter/shell/version/version.cc, `FLUTTER_ENGINE_VERSION`, `SKIA_VERSION`, `DART_VERSION` are defined by the build rules in shell/version/BUILD.gn.
If clang-tidy supports defining symbols via an option like `-D`, we should do that. | team,engine,from: sanitizer,P2,team-engine,triaged-engine | low | Minor |
723,524,551 | angular | Expand size-tracking to include first-party Angular libraries | Currently the size tracking only captures holistic metrics (e.g. angular.io) and more granular example apps (hello world). We may want to track more granularly by building cases for:
- [ ] Hello world with forms
- [ ] Hello world with router
- [ ] Hello world with forms + router
- [ ] Hello world with forms + rou... | feature,area: dev-infra,P4 | low | Minor |
723,526,928 | TypeScript | TS auto-complete does not correctly understand parameter spread | <!-- β οΈβ οΈ 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,Domain: Completion Lists | low | Critical |
723,528,512 | pytorch | cannot call rpc.init_rpc twice within a single process | ## π Bug
Initializing rpc twice within the same process fails
## To Reproduce
Steps to reproduce the behavior:
1. python [rpc_init.py](https://gist.github.com/froody/56929cb775d6e0e0db20792f32b68d14)
actual output:
```
Traceback (most recent call last):
File "rpc_bug.py", line 30, in <module>
... | high priority,oncall: distributed,triaged,module: rpc | low | Critical |
723,551,080 | node | fs: inconsistent options treatment between rm() and rmdir() | <!--
Thank you for reporting an issue.
This issue tracker is for bugs and issues found within Node.js core.
If you require more general support please file an issue on our help
repo. https://github.com/nodejs/help
Please fill in as much of the template below as you're able.
Version: output of `node -v`
P... | fs | low | Critical |
723,563,277 | flutter | Use Fade transitions on Dialog, Snackbar, Menu etc. as per Material Design Spec | ## Use case
The Material Design Guidelines say that Dialogs, Snackbars, Menus and FloatingActionButtons should use the [Fade transition](https://material.io/design/motion/the-motion-system.html#fade)
I think [this video](https://kstatic.googleusercontent.com/files/4bf2ddbf50d779f37d88f276b831fad1aad78a23379a87d2b71... | framework,a: animation,f: material design,c: proposal,team-design,triaged-design | low | Minor |
723,564,919 | go | cmd/gofmt: rewrite removes comments | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.15 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes (with 1.15.3)
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go env</code> Outpu... | NeedsInvestigation | low | Critical |
723,586,949 | flutter | 99th_percentile_frame_rasterizer_time_millis needs 2 tests: a fresh install and a rerun | After https://github.com/flutter/flutter/pull/68128 was landed the flutter_gallery is uninstalled between tests. This has the affect that the shader cache is thrown out. Now `99th_percentile_frame_rasterizer_time_millis` is showing a reading for an app without a full shader cache. It would be nice if we could tweak ... | a: tests,engine,team: benchmark,P2,team-engine,triaged-engine | low | Minor |
723,597,048 | three.js | alphaTest with fixed mipmap level sample | When using `alphaTest` the alpha value from map is used where the corresponding mipmap level has been used, but this causes objects to "dissolve" quickly, leaves of trees for example will disappear quickly and they end up as blank trunks.
By sampling the map for alphaTest with a fixed level this problem disappears/g... | Suggestion | medium | Major |
723,611,667 | pytorch | Cannot script when a static method or cross module function calls custom op | ## π Bug
<!-- A clear and concise description of what the bug is. -->
## To Reproduce
```python
import tempfile
import torch
import torch.utils.cpp_extension
from utils import test
CUSTOM_OP_CPP_SRC = '''#include <torch/script.h>
TORCH_LIBRARY(test, m) {
m.def("test", [](const std::string& st... | oncall: jit,module: cpp-extensions,internals,module: torchbind | low | Critical |
723,735,002 | scrcpy | Remember window position | When I turn on Scrcpy, I move the window to the bottom right corner every time. So on my Acer Swift 5 with a touch screen it is very convenient to operate the phone with the right hand. Is it possible to make the previous window position remember, or to be able to specify the window position when running Scrcpy?
Ace... | feature request | low | Minor |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.