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 |
|---|---|---|---|---|---|---|
584,904,620 | node | Inspector pause at beginning of recently parsed function will crash | This is a bug upstream which started once we landed V8 8.1. Opening this issue to keep track of the upstream bug, so we remember to backport once it's fixed.
The bug is unlikely to affect users unless they are using the Inspector protocol to automatically pause a script. The bug happens when the inspector pauses rig... | v8 engine,inspector | low | Critical |
584,916,953 | pytorch | tensorboard add_graph 's "operator_export_type" | ## tensorboard add_graph 's "operator_export_type"
`torch.utils.tensorboard add_graph` have "operator_export_type"(kwargs) in torch 1.1
but now we can not use this kwargs in torch 1.2 and later? (or similar kwargs)
The remove is from https://github.com/pytorch/pytorch/pull/23000
With "operator_export_type", ... | module: tensorboard,oncall: visualization | low | Minor |
584,949,537 | pytorch | undefined symbols when using libtorch and ITK | I build pytorch and libtorch from source(ubuntu18.04, anaconda, pytorch1.2.0, cuda9.2,ITK5.0,gcc7.5).
```
-- Caffe2: CUDA detected: 9.2
-- Caffe2: CUDA nvcc is: /usr/local/cuda-9.2/bin/nvcc
-- Caffe2: CUDA toolkit directory: /usr/local/cuda-9.2
-- Caffe2: Header version is: 9.2
-- Found cuDNN: v7.6.3 (include: /... | module: build,triaged | low | Critical |
584,967,185 | flutter | SizedBox height is ignored when child Image has BoxFit.fill In An AppBar | I have wrap image by sizedBox and set height = 1 , also set height of image but image still get max height of appbar
my code
```
AppBar(
title: Text('My Favourite'),
centerTitle: true,
actions: <Widget>[
Padding(
padding: const EdgeInsets.only(right: 8.0)... | framework,f: material design,a: quality,a: images,has reproducible steps,found in release: 3.0,found in release: 3.1,team-design,triaged-design | low | Minor |
585,118,643 | rust | rustc --crate-type flag should display valid values | Hello,
When we provide wrong value for the `--emit` flag, we will get a list of valid values. This is not the case for `--crate-type` flag, which should also display valid values.
The `--emit` example:
```
$ cargo rustc -- --emit=asd
Compiling tokio v0.2.13 (/host/tokio/tokio)
error: unknown emission type:... | E-easy,A-diagnostics,T-compiler,D-papercut,A-CLI | low | Critical |
585,137,173 | rust | Consider adding #[must_use] to std::process::Child | I fixed a bug that was caused by not calling `.wait()` on a `std::process::Child`. See [the issue](https://github.com/denisidoro/navi/issues/267) for the details. I'm not exactly sure how the bug manifested itself, but I noticed that not waiting for the child process whose stdin or stdout is inherited from the parent p... | C-enhancement,T-libs-api,A-process | low | Critical |
585,143,894 | flutter | EditableText does not respect TextCapitalization when value is pasted from clipboard | <!-- 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... | a: text input,framework,a: quality,has reproducible steps,P2,found in release: 3.7,found in release: 3.8,team-framework,triaged-framework | low | Critical |
585,154,654 | go | x/build/dashboard: atLeastGo1/atMostGo1 helpers handle non-release branches incorrectly | As a follow-up to #37953, we can improve the `atLeastGo1` and `atMostGo1` helpers so that they operate closer to what the name suggests, and report only whether the Go version meets a certain number. Right now they report suboptimal results on non-release branches in some situations.
For example, the `master` branch... | Builders,NeedsInvestigation | low | Minor |
585,190,576 | terminal | Ctrl+C should not cancel ReadFile/ReadConsole when the signal is handled and the console is in VT input mode | Run this C program on Linux:
```c
#include <signal.h>
#include <unistd.h>
int main()
{
char buf[4096];
signal(SIGINT, SIG_IGN);
write(STDOUT_FILENO, "reading: ", 9);
ssize_t len = read(STDIN_FILENO, buf, sizeof(buf));
write(STDOUT_FILENO, buf, len);
return 0;
}
```
Sinc... | Product-Conhost,Area-Server,Issue-Task | low | Minor |
585,190,724 | create-react-app | add hot reload modules for templates | for example
```js
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import * as serviceWorker from './serviceWorker';
const rootEl = document.getElementById('root')
ReactDOM.render(
<App />,
rootEl
)
if (module.hot) {
module.hot.accept('... | issue: proposal,needs triage | low | Minor |
585,205,745 | godot | 3d artifact is generated by ProceduralSky (blue circles at the top/bottom) | **Godot version:**
3.2.1
**OS/device including version:**
Win10/GTX1060
**Issue description:**
The spatial editor in editor and game modes contains a strange graphical artifact that could not be selected or removed.

2. `flutter create`
3. Check out... | team,tool,P3,team-tool,triaged-tool | low | Minor |
585,256,421 | pytorch | zip(list, tuple) throws an non-actionable error message | ```python
@torch.jit.script
def test_iterable_tree():
t = Tuple[int] = (1)
l: List[int] = [2, 3]
zip(t, l)
```
Error message,
```
Can not iterate over a module list or tuple with a value that does not have a statically determinable length
```
Expected
```
type Tuple with static length and... | oncall: jit,triaged,days,TSRootCause:TypeChecking,TSUsability | low | Critical |
585,276,713 | kubernetes | Provide simulation endpoints for local persistent/ephemeral volumes | **What would you like to be added**:
The scheduler's [SharedLister](https://github.com/kubernetes/kubernetes/blob/master/pkg/scheduler/listers/listers.go#L49) interface defines APIs to retrieve listers for nodes and pods. The backing implementation used in the scheduler is based on the nodeinfo Snapshot. This schedu... | sig/scheduling,sig/storage,kind/feature,lifecycle/frozen,needs-triage | medium | Critical |
585,287,095 | pytorch | JIT does not support class instance attribute type annotation | From PEP 526, https://www.python.org/dev/peps/pep-0526/#class-and-instance-variable-annotations.
These 2 use cases are supported in Python3.
```py
@torch.jit.script
class Test:
_ea_centers: List[int] # instance attribute type hint.
def __init__(self):
self.t = []
self.t.append(1)
... | oncall: jit,triaged,enhancement,days | low | Minor |
585,306,066 | terminal | Duplicating a tab/pane without a valid profile should still duplicate the settings from that tab | This is a follow-up from PR #4429, and bug #2455
> I actually don't hate the idea of just duplicating the settings for the existing control. In that scenario, we'd probably just ignore the settings for that profile in the actual file, and just use whatever settings the control currently has. This might require some ... | Area-UserInterface,Product-Terminal,Issue-Task,Priority-3 | low | Critical |
585,315,534 | opencv | opencv 4.2.0 built with contrib 4.2.0 | Compiling opencv 4.2.0 built with contrib 4.2.0 seems to be the toughest job in the world.
So, can you just share a release of opencv 4.2.0 with contrib 4.2.0? I will be grateful. | duplicate,wontfix,category: contrib,category: infrastructure | low | Minor |
585,321,812 | pytorch | Customize batch size based on gpu id | ## 🚀 Feature
Right now after choosing the batch size we cannot choose how many batches each gpu should have...
## Motivation
This is not important when the memory of gpus are the same.
BUT if we have 3 gpus with different memory then it will be really helpful to have the power to choose how many batches to give ... | triaged,enhancement,module: data parallel | low | Critical |
585,344,437 | terminal | Device portal in Windows Terminal | <!--
🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
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... | Issue-Feature,Area-Extensibility,Product-Terminal | low | Critical |
585,355,963 | TypeScript | Iteration using for of does not recognize optional arrays in generic mapped types | **TypeScript Version:** 3.8.3
**Search Terms:**
mapped for of array optional undefined generic
**Code**
```ts
type OptionalArrays = {
a: Array<string>|undefined;
b: Array<number>|undefined;
}
function test1<K extends keyof OptionalArrays>(value: OptionalArrays[K]) {
for (const item of (va... | Bug | low | Minor |
585,358,848 | pytorch | Autograd Engine leaks reentrant threadpool threads on deletion | This is not a huge problem in general but we should have a similar mechanism as we do for the device worker threads [here](https://github.com/pytorch/pytorch/blob/12f0052eee599ae85c78ccb22c17ae41cc221ff2/torch/csrc/autograd/engine.cpp#L233-L254) that tries it's best to clean things up when possible.
cc @ezyang @SsnL @... | module: autograd,triaged,better-engineering | low | Minor |
585,371,542 | three.js | Layers: Feature request to not render children of non-matching object or mark an object as an endpoint for testing layers | ## Description of the problem
If I have the following object hierarchy:
```
Scene (layer = default)
- Camera (layer = 0,1)
- Other camera (layer = default)
- Group (layer = default)
- Group (layer = default)
- Group (layer = 1) <-- this object doesn't match "Other camera"
- Object3D (lay... | Enhancement | low | Minor |
585,427,787 | create-react-app | Docs for how to use the dev proxying feature with the local network feature, if possible | ### Is your proposal related to a problem?
For my web app I use `http-proxy-middleware` as mentioned in [the CRA docs](https://create-react-app.dev/docs/proxying-api-requests-in-development/) in a `setupProxy.js` file to proxy API requests to a locally running API server like so:
```js
app.use(proxy("/api", { ... | issue: proposal,needs triage | low | Minor |
585,432,722 | pytorch | Segfault when using misaligned data pointer (from joblib) | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
Segmentation fault on read-only numpy array.
Might be related to #33001.
## To Reproduce
Steps to reproduce the behavior:
```py
import torch
import numpy as np
def create_memmap_backed_data(data):
import os.path
import tem... | module: crash,triaged,module: numpy | low | Critical |
585,469,571 | youtube-dl | site add request - nickelodeon.dk | ## Checklist
- [ x] I'm reporting a new site support request
- [ x] I've verified that I'm running youtube-dl version **2020.03.08**
```
$ youtube-dl --version
2020.03.08
```
- [ x] I've checked that all provided URLs are alive and playable in a browser
- [ x] I've checked that none of provided URLs violate... | site-support-request | low | Critical |
585,485,433 | flutter | CurvedGradient non-linear gradient colors | ## Use case
I would like to render a non-linear gradient of colors in a rectangle.
## Proposal
Support a [Curves](https://api.flutter.dev/flutter/animation/Curves-class.html) parameter to a `CurvedGradient` class, similar to [LinearGradient](https://api.flutter.dev/flutter/painting/LinearGradient-class.html),... | c: new feature,framework,P3,team-framework,triaged-framework | low | Major |
585,501,572 | flutter | Support for HLS on desktop browsers for video_player_web | ## Use case
I have a HLS stream and I want to built an app which works on both mobile and web.
Currently there is no browser support for HLS on desktop browsers. (Except legacy Edge 🙈)
https://caniuse.com/#feat=http-live-streaming
## Proposal
Is there a possibility to include HLS support as part of the packag... | c: new feature,platform-web,p: video_player,package,P3,team-web,triaged-web | medium | Critical |
585,511,816 | godot | Video doesnt play correctly after export to android | **Godot version: Godot 3.2.stable.official**
**OS/device including version: Linux mint export to android**
**Issue description: video player getting slower and slower after export to android**
**Steps to reproduce: create in videoplayer node and export it to android**
**Minimal reproduction project: the vid... | platform:android,topic:core | low | Major |
585,521,892 | rust | Idea: guaranteed-zero padding for niches | As suggested [here](https://github.com/rust-lang/unsafe-code-guidelines/issues/174#issuecomment-599160855), one option to gain more layout optimizations would be (either for all `repr(Rust)` types or with per-type opt-in) to use a different kind of padding.
Right now, padding bytes may contain arbitrary data, and ca... | C-enhancement,T-compiler,A-layout,C-optimization | medium | Critical |
585,527,629 | flutter | shlock .upgrade_lock fails on exFAT file system: shlock not supported | On the mac, this problem bothered me for a day, and finally I found that when my hard disk is formatted as exfat, the error occurs when I execute flutter, so I can only format the hard disk to other formats, and by the way Those who run into this issue need to be alert. | tool,platform-mac,d: api docs,a: error message,P3,team-tool,triaged-tool | low | Critical |
585,529,171 | flutter | [video_player] Allow creating a video player controller from bytes stream (e.g., Uint8List) | Can someone play videos from Memory : something Like : `VideoPlayerController.memory(Unit8List)`.
There are already the features `.file()` , `.asset()` , `.network()` . Maybe you can add the `.memory()` constructor . | c: new feature,p: video_player,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | medium | Major |
585,541,307 | pytorch | Documentation doesn't cover MWE using launch.py script | ## 📚 Documentation
Documentation related to `torch.nn.parallel.DistributedDataParallel()` don't include any examples of how to properly use it in combination with `launch.py`
The screenshot below from `launch.py` shows one can call their script e.g. `main.py` using `launch.py` but gives no proper example on how ... | todo,oncall: distributed,triaged | low | Minor |
585,548,312 | vscode | Make extension defined task types work in code-workspace files | - VSCode Version: 1.43.1
- OS Version: Windows 10
Steps to Reproduce:
1. Create new workspace
2. Add script in `scripts` of `package.json` as follow: `"buildfordebug": "tsc --project ./tsconfig.json --outDir ./out",`
3. Create default `tsconfig.json`
4. Setup `launch` in `workspace` with following configurati... | feature-request,tasks | low | Critical |
585,553,195 | flutter | After editing TextField, app auto focuses on back button; instead of next available a11y element on iOS | See internal b/151685565.
Steps to Reproduce:
- Construct a page with a TextField and a Button
```
const Text('Testing TextField A11y'),
TextField(controller: TextEditingController()),
FilledButton(onPressed: () { },child: const Text('button'),),
```
- Double-Tap TextField to edit it
- Then ... | a: text input,platform-ios,framework,f: material design,a: accessibility,customer: money (g3),has reproducible steps,found in release: 3.7,team-design,triaged-design | low | Major |
585,555,731 | flutter | !_dirty exception in widgets/framework.dart | Internal bug: b/151816668
```
01-01 01:25:24.911 9424 9424 I launcher: flutter: ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════
01-01 01:25:24.911 9424 9424 I launcher: flutter: The following assertion was thrown while rebuilding dirty elements:
01-01 01:25... | framework,dependency: dart,customer: dream (g3),a: error message,P2,team-framework,triaged-framework | low | Critical |
585,556,698 | rust | Place &str in specific linker sections | In the usecase I am working on I want to store the string from `core::any::type_name` in a specific linker section to create an instrumentation tool for Embedded Rust micro controllers.
If the string is placed in `.rodata` it does not affect the tool, but when having only a few kB of memory storing these strings in th... | A-linkage,T-lang,C-feature-request | low | Critical |
585,571,312 | opencv | Need both Real & Imaginary values as pairs from getGaborKernel() function | ##### System information (version)
- OpenCV => 4.2
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2019
##### Detailed description
I am trying to use the Gabor Filter on some images of paper fibres, and ultimately generate a 2 bit gray code, based on the coefficients of the comp... | feature,category: imgproc | low | Minor |
585,583,655 | go | cmd/go: go get makes too many requests to a Git repository via HTTP | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.14 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Not tested.
### What operating system and processor architect... | NeedsInvestigation,modules | low | Critical |
585,609,531 | rust | Weird error for mutable references in a loop | I tried this code:
```rust
fn noop(v: &mut i32) -> Option<&mut i32> {
Some(v)
}
pub fn f(v: &mut Vec<i32>) -> Option<&mut i32> {
for item in v {
if let Some(res) = noop(item) {
return Some(res);
}
let _ = &*item;
}
None
}
```
I expected to see thi... | C-enhancement,A-diagnostics,T-compiler,fixed-by-polonius | low | Critical |
585,637,224 | ant-design | slider 在ie11 下 iframe 包裹时按住鼠标拖动到iframe外放开鼠标,再移入时还是会触发拖动进度 | - [ ] 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://codepen.io/mraiguo/pen/xxGaEVy?editors=0010](https://codepen.io/mraiguo/pen/xxGaEVy?editors=0010)
### Steps to reproduce
1. 按住slider的点拖动... | Internet Explorer,Inactive | low | Minor |
585,661,270 | godot | Running the project on a dual monitors incorrectly displays project. | **Godot version:** v3.2.1.stable.official
**OS/device including version:** MacOS Catalina 10.15.3
**Issue description:**
The project is not displayed correctly in a multi-monitor setup where the Editor and Project start on different monitors.
I put the following as a debug statement in an element's `_draw` ... | bug,platform:macos,topic:porting | low | Critical |
585,661,273 | flutter | Way to stop PageStorageKey being shared by nested scrollables | <!-- Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
* https://flutter.dev/
* https://api.flutter.dev/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you hav... | c: new feature,framework,f: scrolling,c: proposal,P3,team-framework,triaged-framework | medium | Critical |
585,669,986 | rust | HRTBs: "implementation is not general enough", but it is | [Playground link](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=dd8b42df59f46cea2ed646339ad1d024)
```rust
trait MyFn<'a> {}
impl<'a, F> MyFn<'a> for F where
F: FnOnce(&'a i32) -> &'a i32 {}
fn foo<F>(f: F) where F: for<'a> MyFn<'a> {}
// This works:
// fn foo<F>(f: F) where F:... | A-lifetimes,A-trait-system,A-closures,T-lang,T-compiler,C-bug,A-higher-ranked | high | Critical |
585,673,764 | pytorch | hasSpecialCase INTERNAL ASSERT FAILED: We don't have an op for aten::to but it isn't a special case. | ## Stack trace
```
RuntimeError: hasSpecialCase INTERNAL ASSERT FAILED at /pytorch/torch/csrc/jit/passes/alias_analysis.cpp:300, please report a bug to PyTorch. We don't have an op for aten::to but it isn't a special case. (analyzeImpl at /pytorch/torch/csrc/jit/passes/alias_analysis.cpp:300)
frame #0: c10::Error::E... | oncall: jit,triaged | low | Critical |
585,677,011 | flutter | Enable "hot reload" (not just "hot restart") for Flutter Web | Latest update: https://github.com/flutter/flutter/issues/53041#issuecomment-1367615679
----
Hello!
Trying the web development currently in beta version. actually quite satisfied as the browser reloads very quick. Only annoying thing is that the hot restart doesn't work properly, imho.
Please check on this.
Be... | c: new feature,dependency: dart,t: hot reload,customer: crowd,a: debugging,platform-web,c: proposal,P2,c: parity,customer: chilli,team-web,triaged-web | low | Critical |
585,691,615 | neovim | Grid-based UI widgets | Per https://github.com/neovim/neovim/pull/11745, we have `nvim_buf_set_extmark` that anchors some decoration to a buffer position.
I propose we extend this functionality to allow interactive extmarks, i.e. UI widgets (or controls).
In order to support flexible UI elements, the following features should be provide... | enhancement,ui-extensibility | low | Critical |
585,706,642 | flutter | App is crashing (sigterm) where are the logs? | I have a fairly mature project that has been running pretty well on flutter, however sometimes the app will just up and crash without error, no logs. Nothing. It just shuts down with the last two lines from the debug log
```
Lost connection to device.
Exited (sigterm)
```
Are there any tools or methods I could... | c: crash,platform-android,tool,P2,team-android,triaged-android | low | Critical |
585,717,853 | rust | Better diagnostics when calling "ouroboros method" | This code gives a somewhat hard to understand error message:
```rust
struct S<'a> {
p: &'a (),
unit: (),
}
impl<'a> S<'a> {
fn ouroboros_me(&'a mut self) {
self.p = &self.unit;
}
}
fn main() {
let unit = ();
let mut s = S { p: &unit, unit: () };
s.ouroboros_me();
... | C-enhancement,A-diagnostics,A-lifetimes,T-compiler,D-confusing | low | Critical |
585,725,398 | go | proposal: testing: calculate 'grain' in different way if specifying -benchtime=Nx | Benchmarks running with 'RunParallel' calculates the 'grain' value based on the previous iteration number and previous duration, while the value might be fuzzy if -benchtime=Nx is specified since the auto adjustment phase is skipped and the previous iteration number is always 1, resulting in a much smaller 'grain' (mos... | Proposal | low | Minor |
585,735,198 | javascript | Reconsider capIsNew: false for new-cap | With `eslint-config-airbnb-base@8.0.0` the code
```js
class Example {}
module.exports = Example();
```
would result in the error:
example.js:2:18: A function with a name starting with an uppercase letter should only be used as a constructor. [Error/new-cap]
As a result of #1090, which set `capIsNew: fals... | question | low | Critical |
585,737,328 | TypeScript | [Feature] allow use `xxx is Type` with async function | <!-- 🚨 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 |
585,752,564 | go | net: cannot send multicast using ListenPacket("udp4", "") on Windows 10 (1909) | <!--
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 go1.14.1 windows/amd64
</pre>
### Does this issue reproduce with the la... | OS-Windows,NeedsInvestigation | low | Critical |
585,758,602 | youtube-dl | Support for Ekeeda.com | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | site-support-request | low | Critical |
585,795,877 | flutter | Suggestion: decouple more widgets from Android/iOS design guidelines | ## Use case
The number of platforms that Flutter officially targets to a reasonable level of stability has grown beyond just Android and iOS to include the web, Windows, macOS, and Linux. Yet most of the widgets the SDK provides are still tied to the design guidelines/systems of those two mobile OSes. This seriously... | c: new feature,framework,f: material design,f: cupertino,c: proposal,team-design,triaged-design | medium | Critical |
585,803,868 | godot | Custom C++ module and XCode dSYM fail | **Godot version:**
3.2.1-stable
**OS/device including version:**
Target iOS: 9.0 (arm64)
XCode: 11.3.1
macOS: 10.15.3
**Issue description:**
Trying to build a XCode project for arm64 and generation of dSYM file is giving warnings (but module works):
https://i.imgur.com/ZBUwarq.png
When building **without... | bug,platform:ios,topic:buildsystem | low | Critical |
585,808,784 | youtube-dl | New site support: ERR | Arhiiv | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | site-support-request | low | Critical |
585,811,537 | flutter | BinaryMessenger::Send does not indicate success | Internal b/148508316
The underlying FlutterDesktopMessengerSend [2] returns a boolean, which is swallowed. Even though undocumented, from the implementation it seems that this return value indicates success.
If BinaryMessenger::Send [1] (and transitively, MethodChannel::InvokeMethod [3]) propagate this value, cal... | engine,customer: dream (g3),P2,team-engine,triaged-engine | low | Critical |
585,818,224 | TypeScript | Narrowing via property check fails when adding parent type to declaration | **TypeScript Version:** 3.8.3
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
- property check refinement
**Expected behavior:** No error, type is narrowed to `SubA`.
**Actual behavior:** Type is narrowed to `never` and produces an error.
... | Needs Investigation | low | Critical |
585,819,094 | flutter | [Nitpick] Change "Lost connection to device" wording for platforms that the debugger is running on | In the case of Mac, Web, Windows, Linux Flutter builds, It doesn't make sense to lose connection to the device, unless the actual device turns off, etc. Seeing this error message on macOS made me curious as to what actually DID happen. However, "Lost connection to device" definitely isn't what happened and I believe it... | c: new feature,tool,a: quality,c: proposal,P3,team-tool,triaged-tool | low | Critical |
585,833,176 | rust | Consider printing the query stack on ICE, even without RUST_BACKTRACE. | It's valuable information, including to the user, since it may point to a very specific part of the code (before they even report the ICE to us), and it's always available (even without debuginfo).
We could even print the query stack like a set of diagnostic messages, highlighting the span that was provided with `tc... | C-enhancement,T-compiler | low | Critical |
585,843,237 | go | runtime: high startup address space usage (RLIMIT_AS) on Linux AMD64 | <!--
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.14 linux/amd64
</pre>
### Does this issue reproduce w... | NeedsInvestigation,compiler/runtime | medium | Critical |
585,845,781 | go | proposal: database/sql: Check if Tx has already been committed or rolled back | I have a use case where I would like to know if Tx has already been committed or rolledback. I can't track this information myself because it's for a package that is intended to be used by third parties.
Currently I have to perform a "fake" query on the Tx to check if it returns `sql.ErrTxDone`. This is ok if the tr... | Proposal | low | Major |
585,848,485 | rust | "type annotations needed" in signature with HRTB | [Playground link](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=da3e2bffa666c55c2d7f099587c57cd4)
```rust
fn foo<F>(f: F) where
F: for<'a> FnOnce(&'a i32) -> &'a i32,
F: FnOnce(&'static i32) -> &'static i32
{}
```
produces:
```
error[E0282]: type annotations needed
--... | A-diagnostics,A-trait-system,T-compiler,C-bug,A-higher-ranked | low | Critical |
585,860,947 | rust | `#[track_caller]` should inherit through specialization ancestors, too? | The current [implementation of `#[track_caller]`](https://github.com/rust-lang/rust/issues/47809) allows trait methods to have the annotation, including at their definition site. When applied in a trait definition, the attribute has effect on all impls. @eddyb [raised the question in code review](https://github.com/rus... | T-lang,T-compiler,A-specialization,F-specialization,F-track_caller | low | Minor |
585,940,515 | TypeScript | Incomprehensible incompatibility around Partial, Conditional types and Generics. |
**TypeScript Version:** 3.9.0-dev.20200322
**Search Terms:** partial, conditional types
**Code**
```ts
type SafePartial<T> = T extends {} ? Partial<T> : any;
interface QB<TRecord extends {}> {
insert(record: SafePartial<TRecord>): void;
}
async function insert1<TRecord extends {}>(qb: QB<TRecor... | Needs Investigation | low | Critical |
585,968,056 | flutter | Poor video scaling quality | Playing video, the text in video has obvious jag. Both occur on android and ios.

source video:
[IMG_8828.zip](https://github.com/flutter/flutter/files/4367567/IMG_8828.zip)
| engine,customer: alibaba,a: video,a: quality,p: video_player,package,c: rendering,P2,team-engine,triaged-engine | low | Major |
586,060,476 | godot | Re-evaluate "use precise math checks" epsilon size | These lines were added in a32b26dfa26f2a039bf9c84b90d10666bcf785c9 "Several fixes to make GLES2 on HTML5 work much better".
https://github.com/godotengine/godot/blob/ed9a0d0484411e631b0cc927e46dc234054d5ae5/core/math/math_defs.h#L53-L59
I don't think that this code makes sense as-is. With single-precision floats,... | discussion,topic:core | low | Major |
586,152,092 | TypeScript | new Map() infers type only from the first item in the iterable | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Needs Investigation | low | Critical |
586,189,230 | pytorch | The BatchNorm error in `DataParallel` | `https://github.com/open-mmlab/mmdetection/issues/2312`
I debug this error. I set breakpoint in
```
# /opt/anaconda3/lib/python3.7/site-packages/torch/nn/parallel/parallel_apply.py
with torch.cuda.device(device):
# this also avoids accidental slicing of `input` if it is a Tensor
... | module: nn,triaged,module: data parallel | low | Critical |
586,249,171 | vscode | Should we use namespacing in the CLI | @Microsoft/vscode
https://github.com/microsoft/vscode/issues/92031 is requesting a terminal CLI to enable things like creating a new tab and splitting the current tab which would align with the capabilities of many terminals (including [Windows Terminal](https://github.com/microsoft/terminal/blob/master/doc/user-doc... | feature-request,under-discussion,workbench-cli | medium | Major |
586,310,300 | flutter | Flutter should include popover as part of the default widget library | Flutter should include popovers as part of the default widget library.
It would be good to have an option to select what direction the popover opens in as well as allowing anything the user wants in the popover. On iOS the popovers have a blur background.
iOS: https://developer.apple.com/design/human-interface-gu... | c: new feature,framework,a: tablet,f: routes,would be a good package,c: proposal,P3,team-framework,triaged-framework | medium | Major |
586,349,013 | pytorch | Get hold of Backward graph from a C++ module. | Hi Guys
@huzecong @ezyang @gqchen @albanD
Is there a way we could get hold of Backward Graph in C++ code .
We have a custom FPGA and asic & we would like to perform training on a multi-chips HW asics, they are similar to nvidia GPU's and we would like to interconnect them the way nvidia DGZ servers do and want ... | oncall: jit | low | Major |
586,361,071 | go | x/tools/gopls: support change signature refactoring | See https://github.com/microsoft/vscode-go/issues/3122 for the original request.
> **Is your feature request related to a problem? Please describe.**
> I use IntelliJ and VS Code - both for development. VS Code usually for my open source contributions. I noticed that IntelliJ has this cool feature to change the def... | FeatureRequest,gopls,Tools,Refactoring | medium | Critical |
586,399,291 | rust | Print comments in MIR dumps aligned to the longest line | The comments in the following snippet should be aligned, otherwise they are hard to read, especially in larger blocks with lots of indentation changes.
```
StorageLive(_1); // bb0[0]: scope 0 at $DIR/const_allocation.rs:8:5: 8:8
StorageLive(_2); // bb0[1]: scope 0 at... | A-pretty,C-enhancement,T-compiler,A-MIR | low | Minor |
586,400,441 | rust | Constants in MIR dumps are too verbose | As an example take
```
_2 = const {alloc0+0: &&[(std::option::Option<i32>, &[&str])]}; // bb0[2]: scope 0 at $DIR/const_allocation.rs:8:5: 8:8
// ty::Const
// + ty: &&[(std::option::Option<i32>, &[&str])]
... | A-pretty,C-enhancement,T-compiler,A-MIR | low | Minor |
586,459,049 | flutter | `flutter pub run build_runner build` loses interactive prompts | I have a project that uses `built_value` with `build_runner`. If I do:
1. `flutter clean`
2. `flutter pub get`
3. `flutter pub run build_runner build`
I get an error:
> [INFO] Checking for unexpected pre-existing outputs....
> [INFO] Found 2 declared outputs which already exist on disk. This is likely beca... | c: new feature,tool,has reproducible steps,P3,found in release: 2.5,found in release: 2.6,team-tool,triaged-tool | low | Critical |
586,484,142 | flutter | ctrl-c in the middle of a flutter tool build leaves cache in bad state tool can't recover from | I think what I did was:
1. Changed branch on the flutter sdk repo
2. Invoked the tool, which wiped out the cache
3. Before it could finish downloading, I aborted the process with ctrl-c.
```
~/git/flutter-app$ flutter analyze
Building flutter tool...
/Users/fujino/bin/flutter: line 46: /Users/fujino/git/flut... | tool,a: first hour,P2,team-tool,triaged-tool | low | Critical |
586,484,728 | rust | rustc compiles function that is never used | <!--
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.
-->
`rustc` seems to compile never used functions in traits:
```rust
// Note: both trait and fn are private and never used
trait NeverUsed {
fn never_u... | A-trait-system,T-compiler,C-bug | low | Critical |
586,510,088 | pytorch | Raspberry Pi Zero build fails | ## 🐛 Bug
Cannot build from source on Raspberry Pi Zero 1.3
## To Reproduce
Steps to reproduce the behavior:
1. Install prequisite packages
2. Clone GitHub respository to local folder
3. Export flags for build
```
export USE_CUDA=OFF
export USE_DISTRIBUTED=OFF
export USE_MKLDNN=OFF
export USE_NNPACK=... | module: build,triaged | low | Critical |
586,532,555 | rust | Move from {{closure}}#0 syntax to {closure#0} for (def) path components. | Today if a path refers to unnamed defs such as closures, it's printed using double braces e.g. for the following example, `rustc` refers to `Foo` as `main::{{closure}}#0::Foo`:
```rust
fn main() {
|| {
struct Foo;
let () = Foo;
// ^^ expected struct `main::{{closure}}#0::Foo`, found `... | C-cleanup,T-compiler,A-MIR | low | Major |
586,554,835 | thefuck | Recognize K8s commands? | Hi guys,
Have a Possibility of implementation to recognize K8s commands in future? | enhancement,help wanted | low | Major |
586,577,827 | rust | MIR dump const Allocation printing of large relocation ids | After #69916 the MIR dump of const `Allocation`s can result in things like
```
0x80 │ 00 00 00 00 00 00 00 00 00 00 ╾alloc11+0╼ 00 00
0x90 │ ╾alloc12+99 (4 ptr bytes)╼ 00 00 00 00 00 00 00 00 00 00 00 00
```
where even just the `alloc12+99` would be too wide on 32 bit systems.
We should find better ... | A-pretty,C-enhancement,T-compiler,A-MIR,A-const-eval | low | Minor |
586,588,132 | terminal | Add a setting to control vertical antialiasing | <!--
🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
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-Rendering,Product-Terminal,Issue-Task | low | Critical |
586,600,172 | ant-design | After Drawer's getContianer changes, its createPortal's container does not change immediately | - [ ] 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/anniuleixing-ant-design-demo-kdz7o)
### ... | Inactive | low | Minor |
586,617,088 | terminal | Terminal: add support for Window Manipulation (CSI t, resize), or reject it explicitly (and force a client resize) | Notes from @j4james:
> Note that this is a problem for all the VT resizing sequences too. For example, you'll get the same problem resizing the screen from within a bash shell like this:
>
> ```
> printf "\e[8;10;10t"
> ```
>
> And if you want to make `mode` work, then you'll probably want to start with ... | Area-VT,Product-Terminal,Issue-Task,In-PR,Priority-2 | high | Critical |
586,669,704 | create-react-app | Add a "retry" option to "Something is already running on port X" message | ### Is your proposal related to a problem?
<!--
Provide a clear and concise description of what the problem is.
For example, "I'm always frustrated when..."
-->
Whenever I get the "Something is already running on port X" message it's because I was working on another project and left it running. My response... | issue: proposal,needs triage | low | Minor |
586,690,554 | create-react-app | a small change in the doc of deployment on github pages | ### Is your proposal related to a problem?
I've stuck for a long time on deploying my react-app to the Github pages. After several trial and errors, I finally figured out that I didn't do **Step1** correct: **Add homepage to package.json**
The difference of react-app folder name and my github repository name tric... | issue: proposal,needs triage | low | Critical |
586,744,528 | electron | Expose macOS app presentation options | <!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-... | enhancement :sparkles:,platform/macOS | low | Minor |
586,773,049 | youtube-dl | axios.com video not supported | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | site-support-request | low | Critical |
586,780,727 | create-react-app | Upgrade to htm-webpack-plugin 4 | ### Is your proposal related to a problem?
<!--
Provide a clear and concise description of what the problem is.
For example, "I'm always frustrated when..."
-->
the [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) released a [new major yesterday](https://dev.to/jantimon/html-webpack-p... | issue: proposal,needs triage | low | Minor |
586,809,842 | flutter | [flutter-tools] Help text for "flutter symbolize" is a little cray cray | Running "flutter symbolize -h" produced:
```
~ $ flutter symbolize -h
Symbolize a stack trace from an AOT compiled flutter application.
Usage: flutter symbolize [arguments]
-h, --help Print this
... | tool,a: quality,P2,team-tool,triaged-tool | low | Critical |
586,815,235 | youtube-dl | Please support Globe Wien | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | site-support-request | low | Critical |
586,841,279 | vue-element-admin | tagview 外面的el-scrollbar 不出现滚动条 | ## Question(提问)
tagview 增加到一定个数时 外面的el-scrollbar 不出现滚动条,必须改变窗口大小才会出来
#### Steps to reproduce(问题复现步骤)
#### Screenshot or Gif(截图或动态图)
| bug | low | Minor |
586,899,868 | pytorch | Why C++ version libtorch so slow | my code is sample
` torch::jit::getProfilingMode() = false;`
` torch::jit::setGraphExecutorOptimize(false);`
` torch::Tensor tensor = torch::zeros({1,3, 1280, 1280},at::kFloat);`
` torch::jit::script::Module model = torch::jit::load("./psenet.pt");`
`model.eval();`
`std::vector<torch::jit::IValu... | oncall: jit,triaged | low | Major |
586,957,136 | rust | Code inference fails for several levels of indirection case | I tried this code:
```rust
pub fn bar(f: Option<impl Fn(usize, usize) -> usize>) {
}
pub fn mai() {
let arr = vec![vec![3;10];10];
bar(Some(|i,j| arr[i][j]));
}
```
Which fails with:
```
error[E0282]: type annotations needed
--> src/lib.rs:6:20
|
| bar(Some(|i,j| arr[i][j]));
|... | A-closures,T-compiler,A-inference,C-bug | low | Critical |
586,957,960 | rust | Per-module control of overflow checks? | For arithmetic that happens inside Miri, I am quite paranoid that we may have an overflow issue, so I spent a lot of time last week-end to go over every occurrence of `+`/`-`/`*` and replace them all by `checked_*` operations. That has not made code more readable, and I am worried I might have missed some cases.
I a... | T-lang,C-feature-request | low | Minor |
586,966,568 | terminal | Mouse selection should begin and end at nearest cell boundary | <!--
🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
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-TerminalControl,Product-Terminal,Issue-Task,In-PR,Priority-3 | low | Critical |
586,979,268 | go | encoding/base64: imprecise error for the base64-decoding input with an invalid length | <!--
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.14 darwin/amd64
</pre>
### Does this issue reproduce ... | NeedsInvestigation | low | Critical |
587,030,535 | excalidraw | [Brainstorm] Teams use case | Multiple people reached out to me telling me that they’d like to start using excalidraw for their company. They said that Figma and Notion had good support for teams.
I haven’t really used any of them so don’t know the details of what that means. Please comment with all the features that they provide that would make... | discussion | low | Major |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.