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
497,130,323
flutter
Check if route contains a specific coordinates or not
<!-- 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,p: maps,package,c: proposal,team-ecosystem,P3,triaged-ecosystem
low
Critical
497,211,721
rust
Incorrect suggestion given private function
In `constants.rs` I have a private method: `fn defaultConfig() -> bool { ... }`. If I import all members into another file using: `use crate::constants::*`, then call `defaultConfig`, I get the following error: ``` error[E0425]: cannot find function `defaultConfig` in this scope --> src/playgame.rs:28:18 ...
A-diagnostics,A-visibility,T-compiler,C-bug,A-suggestion-diagnostics,D-invalid-suggestion
low
Critical
497,222,976
terminal
Support multi-code-point characters in TerminalInput::HandleKey
# Description of the new feature/enhancement Starting with #2836 key events containing combinations like <kbd>Shift</kbd><kbd>.</kbd> (here: US keyboard layout) will be mapped to their matching, potentially non-ASCII, counterparts (here: <kbd>></kbd>). This is achieved using the [`ToUnicodeEx` method](https://docs....
Issue-Feature,Product-Conhost,Area-Input,Product-Terminal
low
Minor
497,233,535
flutter
App crashes on hot restart with custom FlutterApplication
<!-- 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: crash,tool,t: hot reload,P2,team-tool,triaged-tool
low
Critical
497,238,115
rust
Tracking issue for reserved impl `impl<T> From<!> for T`
## Background This is a **tracking issue** for a temporary limitation related to the `From` trait and the `!` type. Specifically, we wish to eventually add an impl like the following: ```rust impl<T> From<!> to T { } ``` We cannot do so now because it would overlap with existing impls. Specifically, the impl...
A-trait-system,T-lang,C-tracking-issue,S-tracking-perma-unstable
low
Minor
497,247,689
node
Impossible to catch error during tls.connect(duplex)
* **Version**: 10.16.3 * **Platform**: Ubuntu 16.04.1 * **Subsystem**: tls There seems to be no way to catch synchronous error of underlying duplex stream during `tls.connect` operation. Code sample: ```javascript const stream = require('stream'); const tls = require('tls'); const async = false; process.on...
tls
low
Critical
497,282,202
opencv
SIGABRT by cv::Exception on ocl.cpp:4908 -> CV_Assert(u->origdata == data);
I'm having a lot of intermittent buy frequent aborts raised by this assertion: https://github.com/opencv/opencv/blob/47007224445af3dce8dadb11174df14d81fd5a34/modules/core/src/ocl.cpp#L4908 inside a loop doing face detection and tracking. It usually happens on the tracking part, FaceEngine.hpp:135 I'm not sure ...
category: ocl
low
Critical
497,283,914
go
x/tools/benchmark: support parsing custom metrics
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.13 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</summary...
NeedsInvestigation,Tools
low
Critical
497,299,063
flutter
MergeSemantics crashes when wrapping a recognizer-containing TextSpan
When wrapping a `RichText` (and its `TextSpan` children) with `MergeSemantics`, a crash will be triggered if one of the `TextSpan`s has a `recognizer` set. ## Steps to Reproduce Run this: ```dart import 'package:flutter/gestures.dart'; import 'package:flutter/material.dart'; import 'package:url_launcher/...
c: crash,platform-ios,framework,a: accessibility,a: typography,platform-linux,a: desktop,has reproducible steps,P2,found in release: 3.0,found in release: 3.1,team-framework,triaged-framework
low
Critical
497,309,621
pytorch
torch::nn::Sequential not compatible with torch::nn::RNN
## πŸ› Bug (Note from @VitalyFedyunin: CPP implementation fails to report input/hidden sizes errors properly and returns cryptic asserts instead. Actual error hides is this line https://github.com/pytorch/pytorch/blob/420b37f3c67950ed93cd8aa7a12e673fcfc5567b/aten/src/ATen/native/cudnn/RNN.cpp#L1231 and similar for mi...
module: cpp,module: nn,triaged
low
Critical
497,338,435
rust
std::process::Command doesn't follow Unix signal safety in forked child
**Update (2022-12-12)**: The issue description is outdated, but [some problems remain](https://github.com/rust-lang/rust/issues/64718#issuecomment-1346099608). These lines from spawn can cause a deadlock. It's wrong to assume that you can lock in the parent and the unlock in the child. Read man 2 fork and man 7 sign...
P-medium,I-unsound,C-bug,E-needs-mcve,T-libs,O-unix,A-process
low
Major
497,370,280
go
cmd/go: provide package path for main packages to cmd/compile
Can cmd/go provide cmd/compile with the full package path to the source package, even when compiling main packages? When benchmarking cmd/compile changes, it's useful to key stuff by `myimportpath` (i.e., the `-p` command-line flag) and just spit everything across an entire "go build -a std cmd" build into a single ...
NeedsDecision,FeatureRequest
low
Minor
497,373,848
terminal
Add Registry Key Check/Set in Feature Tests
We need to add a way to check and set the registry keys in the feature tests. One important registry key to check/set is the wrap key.
Product-Conhost,Issue-Task,Area-CodeHealth
low
Minor
497,374,172
go
x/perf/cmd/benchstat: GitHub markdown table output
GitHub supports tables in markdown format: https://help.github.com/en/articles/organizing-information-with-tables It would be handy if benchstat could easily output in this format for pasting benchstat output into issues.
NeedsInvestigation,FeatureRequest
low
Major
497,384,175
pytorch
Support FPGA Xilinx
Hello, World! We are a group intending to accelerate some Pytorch operations on Xilinx UltraScale FPGAs. However, we are a little lost to where to begin to port the functions. From what we could see, we think we can start from the CUDA implementation and modify it to use the OpenCL API and add an FPGA device type...
triaged,module: backend
medium
Major
497,389,678
go
go/packages: return information on missing imports
`gopls` currently has some handling for packages that were imported but not found by `go/packages`. This is something that `go/packages` could return more effectively, either through its errors or through an additional field.
NeedsFix
low
Critical
497,428,767
flutter
[video_player] black (first?) frame on iOS
<!-- Thank you for using Flutter! If you are looking for support, please check out our documentation or consider asking a question on Stack Overflow: * https://flutter.dev/ * https://api.flutter.dev/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you hav...
platform-ios,p: video_player,package,has reproducible steps,P2,found in release: 2.2,team-ios,triaged-ios
low
Critical
497,462,460
vscode
[html] Jump to after next opening HTML tag
It would be great if there were a keyboard shortcut which moved the cursor to within the next HTML element, right after the opening tag. This would be really useful, because Emmet is great for building out the structure, but then I have to type in the data and it's a lot of mouse clicking / arrow keys. For example, ...
feature-request,html
low
Minor
497,465,771
go
cmd/go: clarify error message when importing a package that could be (but isn't) in the main module
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.13 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></summary><br><p...
help wanted,NeedsFix,modules
low
Critical
497,479,999
opencv
Cannot read ONNX model, error in reshape_layer.cpp, function 'computeShapeByReshapeMask'
#### System information (version) - OpenCV => 4.1.1 (master branch, commit a74fe2ec01d9218d06cb7675af633fc3f409a6a2) - Operating System / Platform => Debian Linux 64 Bit - Compiler => gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1) ##### Detailed description Error while trying to read pretrained ONNX DNN m...
feature,category: dnn,category: dnn (onnx)
low
Critical
497,536,537
opencv
Ill-defined distortion model found by calibrateCamera
Hi everyone, The calibrateCamera() function can return distortion coefficients `k1, k2... k6` that lead to a distortion model that is ill-defined. The denominator of the radial distortion part `(1 + k4 r^2 + k5 r^4 + k6 r^6)` can have roots `r_i` such that `r_i^2 = ((u-cx)/fx)^2 + ((v-cy)/fy)^2` for some real-valued...
category: calib3d
low
Minor
497,591,519
svelte
Passing values from slot to parent
From the documentation of slots it seems it should be possible to bind values of a component to a slot: > Slots can be rendered zero or more times, and can pass values back to the parent using props. The parent exposes the values to the slot template using the `let:` directive. but it seems that the real situatio...
feature request
high
Critical
497,635,505
react
[eslint-plugin-react-hooks] allow configuring custom hooks as "static"
<!-- Note: if the issue is about documentation or the website, please file it at: https://github.com/reactjs/reactjs.org/issues/new --> **Do you want to request a *feature* or report a *bug*?** Feature/enhancement **What is the current behavior?** Currently the eslint plugin is unable to understand w...
Type: Enhancement,Component: ESLint Rules
high
Critical
497,673,271
TypeScript
compilerOptions support TDZ error option
According to the PR of #32221 , to prevent such problem like: ```typescript (function () { function cleanup() { console.log(A); // throw error } cleanup(); const A = 1; }()); ``` this snippet will compile into: ```javascript (function () { function cleanup() { ...
Suggestion,Awaiting More Feedback
low
Critical
497,676,410
youtube-dl
Wicked Weasel
<!-- ###################################################################### 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
497,705,224
electron
sendInputEvent doesn't work for iframe/webview
I'm trying to interact with an embedded video _using manual mouse input_ via `webContents.sendInputEvent` api. It stopped working in 5-0-x. ### Issue Details * **Electron Version:** * 5-0-x, 6-0-x * **Operating System:** * Win10 (1903), macOS 10.14.6 * **Last Known Working Electron version:** * 4.2.10...
platform/windows,platform/macOS,bug :beetle:,status/confirmed,5-0-x,6-1-x,10-x-y,component/webcontents,25-x-y,26-x-y
medium
Major
497,828,301
pytorch
[jit] Bad error when instantiating TorchScript class with incorrect types
If the Python object has a different type for an attribute than the TorchScript class, then the error is a pybind miscast: in `__init__` of a module: ```python self.x = BalancedPositiveNegativeSampler(1, 2) ``` ```python @torch.jit.script class BalancedPositiveNegativeSampler(object): """ This clas...
oncall: jit,triaged,jit-backlog
low
Critical
497,863,544
neovim
:terminal output slows down editor when handling large output
<!-- Before reporting: search existing issues and check the FAQ. --> - `nvim --version`: v0.5.0-dev - Operating system/version: Ubuntu 19.04 - Terminal name/version: gnome-terminal - `$TERM`: xterm-256color ### Steps to reproduce using `nvim -u NORC` ``` nvim -u NORC :vs | term i yes ``` ### Actual...
enhancement,performance,terminal
low
Major
497,865,881
go
proposal: net: add BufferedPipe (buffered Pipe)
If one wants to connect two Go libraries which use the `net` interfaces, the only cross platform way to do it with the standard library is to use the loopback. The only in-process way to do it is to create a socket pair with syscall.Socketpair and go from FD -> `*os.File` -> `net.Conn`. This is a fairly manual process,...
Proposal,Proposal-Hold
medium
Critical
497,897,084
pytorch
[jit] Default args don't work with TorchScript classes
```python import torch @torch.jit.script class X(object): def __init__(self, a=2, y=3): self.a = a self.y = y @torch.jit.script def fn(): return X() ``` ``` __init__(ClassType<X> self, Tensor a, Tensor y) -> (None): Argument a not provided. : at ../test.py:11:11 @torch.jit.sc...
oncall: jit,triaged,jit-backlog
low
Minor
497,927,855
opencv
Make OpenCV an Official Emscripten Port
Hello, OpenCVJS should be added to the [Emscripten port list]( https://github.com/emscripten-ports) so there will be official support for using OpenCV in C++ when compiling C++ to WASM using Emscripten. From the [emscripten page]( https://emscripten.org/docs/compiling/Building-Projects.html#building-projects) here is...
priority: low,category: javascript (js)
low
Minor
497,940,094
rust
Parallel rustc spends a lot of time creating threads
[After some discussion on zulip](https://rust-lang.zulipchat.com/#narrow/stream/187679-t-compiler.2Fwg-parallel-rustc/topic/slowdown.20compiling.20Cargo/near/176509042) it looks like `rayon` will immediately spawn all threads for the thread pool on startup, but this isn't neessarily suitable for rustc's use case. In a ...
C-enhancement,I-compiletime,T-compiler,WG-compiler-parallel
low
Major
497,948,376
pytorch
[RFC] RRef Protocol
With @pritamdamania87 @gqchen @aazzolini @satgera @xush6528 @zhaojuanmao Master Design Doc: * Distributed Model Parallel Design: #23110 Main RRef PRs: #25499 #25169 ### Background RRef stands for Remote REFerence. Each RRef is owned by a single worker (i.e., owner) and can be used by multiple users. The...
triaged,module: rpc
low
Critical
497,976,551
go
proposal: x/sync: pass errgroup.WithContext's derived context directly
Since API changes are something that is now possible to do with module versions, I thought it would be worth mentioning one that gnaws at me pretty frequently. We use contexts heavily in my code-base, and it comes up moderately often that we want a cancellable or deadline-respecting `sync.WaitGroup`, and for this pu...
Proposal
low
Critical
497,982,467
go
net/http: Client round-robin across persistent connections
When connecting directly to a service spread across multiple hosts with DNS "load-balancing" it would be ideal if `http.Client` could round-robin requests over persistent connections to the multiple hosts listed in the A record. Right now, if you want to ensure that load is balanced the only practical option is to d...
NeedsInvestigation,FeatureRequest
low
Major
497,983,700
flutter
Add an ABI stability check to the embedder API.
c: new feature,team,engine,e: embedder,P3,team-engine,triaged-engine
low
Minor
498,006,734
go
proposal: spec: extended type inference for make and new
### Rationale Currently in Go, type inference works in one direction and one direction only: From the values of an assignment to the variable declarations. In other words, given some expression with a statically-determinable type, which is basically every expression, the type of a declaration can be omitted. This al...
LanguageChange,Proposal,dotdotdot,LanguageChangeReview
medium
Critical
498,011,573
flutter
initialize Google maps plugin by providing API key at runtime
Is there anyway to provide the google maps api key from the code base rather than the manifest? I would like to be able to read the api key from our server before initializing google maps. Thank you!
c: new feature,p: maps,customer: product,package,c: proposal,team-ecosystem,P2,triaged-ecosystem
low
Critical
498,056,507
pytorch
Matrix corresponding to convolution by a 2D kernel (convmtx2)
## πŸš€ Feature A function `convmtx2` such that convmtx2(kernel, image.shape[1:]) @ image.flatten() == torch.nn.functional.conv2d(image[None], kernel)[0].flatten() for any tensors `image` of shape `(in_channels, image_height, image_width)` and `kernel` of shape `(out_channels, in_channels, kernel_height, kerne...
feature,module: nn,triaged
medium
Major
498,105,458
pytorch
Importing tensorboard jams CUDA device selection
## πŸ› Bug On a multi-GPU environment, it is common to set `os.environ['CUDA_VISIBLE_DEVICES']` to select one GPU. However I have found that importing `torch.utils.tensorboard` leads to an unexpected behavior in this context. I have two Titan Xp GPUs on an Ubuntu 16.04.5 server. Setting `os.environ['CUDA_VISIBLE_D...
triaged,module: tensorboard
low
Critical
498,202,881
kubernetes
Ephemeral storage doesn't account for deleted files with open handles
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: A pod that ...
kind/bug,sig/node,help wanted,priority/important-longterm,lifecycle/frozen,needs-triage
medium
Critical
498,216,576
pytorch
setup.py install error
When I performed the steps to "python setup.py install", the following error occurred. ------------------------------------------------------------------ make: *** No rule to make target 'install'. Stop. Building wheel torch-1.3.0a0+a395c31 -- Building version 1.3.0a0+a395c31 cmake --build . --target install --co...
module: build,triaged
low
Critical
498,223,876
terminal
Optionally persist font size changes when changed with CTRL+Mousewheel
<!-- 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨 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...
Area-Settings,Product-Terminal,Issue-Task
low
Critical
498,232,832
create-react-app
Add scss import pattern to allow importing all css/scss files from folder
### 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..." --> Since I'm using scss modules, I have a main scss file with some common rules that's being imported in .jsx file. In this main scss file, I need to...
issue: proposal,needs triage
low
Major
498,240,724
go
cmd/compile: inline functions that are called only once
### What version of Go are you using (`go version`)? <pre> $ go version go version devel +211932b Mon Sep 23 22:33:23 2019 +0000 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes. ### What did you do? Take the following functions as an example: ```go func f(n int) int { va...
Performance,NeedsDecision,compiler/runtime
low
Major
498,254,012
three.js
Anaglyph 3D - set it to zero parallax: 0 discrepancy at camera (currently set to negative parallax)
It's rather amazing that threejs has an anaglyph component - thanks heaps, this is a fantastic tool! One question regarding anaglyph parallax setting: currently it is using negative parallax, as in, the zero point is further away from the viewer, and there is disparity both at a distance zero and far away (see scree...
Addons
low
Minor
498,280,881
node
http.ClientRequest with Upgrade header sometimes hangs on first request
* **Version**: 12.10.0 (also checked on 12.9.1) * **Platform**: macOS 10.14.6 β€” Darwin 18.7.0 Darwin Kernel Version 18.7.0: Tue Aug 20 16:57:14 PDT 2019; root:xnu-4903.271.2~2/RELEASE_X86_64 x86_64 * **Subsystem**: http Connecting to a newly started `http.Server` with a `http.ClientRequest` using `Connection: Upgr...
http,macos
low
Critical
498,308,527
go
spec: clarify when calling recover stops a panic
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> go version go1.13 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What did you do? ```golang package main import "fmt" func...
Documentation,NeedsInvestigation
medium
Critical
498,309,050
kubernetes
Add startup resource requirements
<!-- Please only use this template for submitting enhancement requests --> **What would you like to be added**: I would like startup resources requirements to be added. Now we have `request` and `limits` and I want something like `startup-request` for CPU and RAM. **Why is this needed**: Some applications u...
kind/feature,sig/apps,needs-triage
medium
Critical
498,310,521
pytorch
Google Summer of Code
@soumith Will PyTorch take part in GSoC next year?
triaged
low
Minor
498,321,334
TypeScript
Higher order type inference doesn't work with overloads
@ahejlsberg **TypeScript Version:** typescript@3.7.0-dev.20190925 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** **Code** ```ts interface Curried2<a, b, z> { (a: a, b: b): z; (a: a): (b: b) => z; } interface Curry { <a, b, z>(...
Suggestion
low
Critical
498,323,584
TypeScript
Allow async functions to return union type T | Promise<T>
<!-- 🚨 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
medium
Critical
498,337,138
TypeScript
Disallowing `throw`ing expressions that aren't assignable to `Error`
## Search Terms throw, throwing non-error ## Suggestion Add typechecking to `throw` statement, allowing it to only throw `Error`s and `any`s. Code currently allowed, but with strong potential for bugs: ``` throw null; throw undefined; throw 'foobar'; throw ''; throw 42; throw {foo: 'bar'}; throw po...
Suggestion,Awaiting More Feedback
low
Critical
498,357,192
angular
Optional Routing Parameters issue
# 🐞 bug report ### Affected Package @angular/router ### Is this a regression? Yes, working in angularjs 1.x ### Description Optional Routing Parameters issue Route declaration const routes: Routes = [ { path: '', component: SearchpagesComponent , children: [ { path: ’n...
type: bug/fix,freq2: medium,area: router,state: confirmed,router: URL parsing/generation,P3
medium
Critical
498,466,979
go
doc: document/reassert that last two releases are supported equally
The policy for what does and doesn't get backported is currently documented at https://golang.org/wiki/MinorReleases. > Our default decision should always be to not backport, but fixes for security issues, serious problems with no workaround, and documentation fixes are backported to the most recent two release bran...
Documentation,Proposal,Proposal-Accepted
high
Minor
498,514,936
go
x/build: add more race detector builders
We should have one for every supported race detector config. We currently have: ``` darwin/amd64 freebsd/amd64 linux/amd64 windows/amd64 ``` We'd need to add: ``` netbsd/amd64 linux/arm64 linux/ppc64le ``` @bradfitz When attempting to rebuild the .syso files as part of #33309 , I ran into these addi...
Builders,NeedsFix,new-builder
low
Minor
498,550,359
go
encoding/json: Unmarshal & json.(*Decoder).Token report different values for SyntaxError.Offset for the same input
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.13 freebsd/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...
help wanted,NeedsInvestigation
low
Critical
498,555,742
flutter
Use Raw Input api to support >5 mouse clicks and other devices
We might need this api to support joysticks, game controller and distinguish between different devices of the same kind (e.g. two mice connected)
framework,platform-windows,a: desktop,P3,team-windows,triaged-windows
low
Minor
498,558,401
flutter
TextField/TextFormField labelText and hintText should be right-aligned with TextDirection.rtl
There is forgotten attribute **write** for the `labelText of(TextFormField or TextField)` from right to left. I tried with `textAlign`, `textDirection`. Although, it works with `hintText` and the user input, it doesn't work with the `labelText`. ![Screenshot](https://user-images.githubusercontent.com/15935347/656...
a: text input,c: new feature,framework,f: material design,a: internationalization,P2,team-text-input,triaged-text-input
low
Major
498,587,256
PowerToys
Bring back the floating toolbars in taskbar
# Summary of the new feature/enhancement A long time ago and until Windows 7, people could create **toolbars** on the taskbar and then **drag them off the taskbar**, either leaving them floating on the desktop or **attaching them on a different desktop edge** – like the top, left or right. Those toolbars _**could even...
Idea-New PowerToy,Product-Tweak UI Design
low
Major
498,601,573
flutter
ReorderableListView requires child keys to be identical across builds
Internally ReorderableListView creates a GlobalObjectKey per child, where that key's value is the child's key. GlobalObjectKey uses the identical compare function to determine equality. This means that if child keys are regenerated on each build pass, the ReorderableListView subtree will rebuild, even if the keys co...
framework,f: material design,P2,team-design,triaged-design
low
Major
498,617,312
rust
Tracking issue for RFC 2523, `#[cfg(version(..))]`
This is a tracking issue for `#[cfg(version(..))]` (rust-lang/rfcs#2523). **Steps:** - [x] Implement the RFC (cc @rust-lang/compiler -- can anyone write up mentoring instructions?) - [ ] Adjust documentation ([see instructions on rustc-guide][doc-guide]) - [ ] Stabilization PR ([see instructions on rustc-guide]...
B-RFC-approved,T-lang,C-tracking-issue,S-blocked,F-cfg_version
high
Critical
498,617,958
rust
Tracking issue for RFC 2523, `#[cfg(accessible(::path::to::thing))]`
This is a tracking issue for `#[cfg(accessible(::path::to::thing))]` (rust-lang/rfcs#2523). ## Steps - [ ] Implement the RFC: partially done in https://github.com/rust-lang/rust/pull/69870 - [ ] Adjust documentation ([see instructions on rustc-guide][doc-guide]) - [ ] Stabilization PR ([see instructions on rust...
B-RFC-approved,T-lang,C-tracking-issue,F-cfg_accessible,S-tracking-ready-to-stabilize,S-tracking-impl-incomplete
high
Critical
498,627,033
pytorch
[BUG Report]Integrate libtorch to ffmpeg but memory leak happened!
## πŸ› Bug ``` <!-- A clear and concise description of what the bug is. --> ==58309== 3,120 (1,800 direct, 1,320 indirect) bytes in 15 blocks are definitely lost in loss record 14,673 of 15,041 ==58309== at 0x4C2A4C3: operator new(unsigned long) (vg_replace_malloc.c:344) ==58309== by 0x287075D3: c10::cuda::CU...
module: build,triaged,module: vision
low
Critical
498,640,505
flutter
Crashing when trying to get dart extension on VSCode
Flutter crash report; please file at https://github.com/flutter/flutter/issues. ## command flutter packages get ## exception NoSuchMethodError: NoSuchMethodError: The method '[]' was called on null. Receiver: null Tried calling: []("androidPackage") ``` #0 Object.noSuchMethod (dart:core-patch/obj...
c: crash,tool,platform-windows,a: first hour,P2,team-tool,triaged-tool
low
Critical
498,776,028
flutter
ChangeNotifier.notifyListeners does not block execution if one listener fails
Consider the following code: ```dart void main() { final notifier = ValueNotifier(0); notifier.addListeners(() { throw Error(); }); notifier.notifyListeners(); print('reached'); } ``` Then the `print('reached')` is executed even although the previous line throws an exception. This is usu...
c: new feature,framework,d: api docs,c: proposal,P2,team-framework,triaged-framework
low
Critical
498,822,259
godot
glTF importer ignores "-colonly" import hint on Blender empty objects
**Godot version:** Both 3.1.1 and 202440a **OS/device including version:** Ubuntu 19.10 **Issue description:** Documentation on [import hints](https://docs.godotengine.org/en/latest/getting_started/workflow/assets/importing_scenes.html#import-hints) states that: > Option β€œ-colonly” can also be used wi...
bug,confirmed,topic:import,topic:3d
medium
Critical
498,858,215
TypeScript
TS3.6 regression: Map constructor overloads
**TypeScript Version:** 3.7.0-dev.20190917 **Search Terms:** Map constructor overload array concatenation **Code** ```ts const M1 = new Map([ ['k', {a: 1, b: 'a...
Needs Investigation
low
Critical
498,859,470
pytorch
Statically checked tensor shapes
## πŸš€ Feature (Long term request, mostly to gather feedback on our current experiment) We would like to extend the `Tensor` class with the description of its dimensions shape and values, to enable static checking of tensor operations w.r.t. to shapes (e.g. detecting an illegal call to `Tensor.mm` statically rather t...
module: internals,feature,triaged
high
Critical
498,862,344
youtube-dl
New PokΓ©mon TV Player Support
<!-- ###################################################################### 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
498,874,841
puppeteer
Feature Request: Composition Events (Keyboard API)
We're using Puppeteer at WordPress, where we've created a custom editor. One thing we keep running into is bugs around input composition. Every now and then things break, and we're not able to create tests for it with Puppeteer. It would be great if Puppeteer provided an additional `keyboard` API to simulate composing ...
feature,confirmed
low
Critical
498,902,845
flutter
Failed: ./flutter/tools/gn --android --runtime-mode debug --android-cpu x86
My Engine branch is v1.9.1-hotfixes when i try to gen android_debug_x86 by commend ``` ./flutter/tools/gn --android --runtime-mode debug --android-cpu x86 ``` falid message is fellows: ``` Generating GN files in: out/android_debug_x86 ERROR Unresolved dependencies. //flutter/lib/snapshot:generate_snapshot_b...
engine,d: api docs,P2,team-engine,triaged-engine
low
Critical
498,939,963
godot
Listener doesn't output sound if there's no Camera on the scene
Hit this when trying to use `AudioStreamPlayer3D` in a 2-D world to get its advanced panning/rotation support. Essentially I'm syncing the X and Z coordinates of `AudioStreamPlayer3D` nodes with the X and Y coordinates of a `Node2D` parent, as well as their rotations. This seems to work OK for sound sources, but it fai...
bug,discussion,confirmed,topic:audio
low
Critical
498,955,780
vscode
[api] Allow extensions to determine if a position is within a fold
This has been the most demanded feature of VSCodeVim: [VSCodeVim/Vim#1004](https://github.com/VSCodeVim/Vim/issues/1004) for over 3 years. The main problem with Folds and Vim is that some motions will skip right over folded areas (like moving up/down). We need to know if we are in a folded area so we can iterate the...
feature-request,api,VIM
high
Critical
499,003,094
go
cmd/go: misleading 'use of internal package not allowed' in GOPATH mode when a subtree vendors its own package
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.12.7 linux/amd64 </pre> ### Does this issue reproduce with the latest release? ### What operating system and processor architecture are you...
NeedsFix
low
Critical
499,009,717
electron
BrowserWindow's size get's clamped to monitor's bounds
### Preflight Checklist * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have sea...
platform/windows,bug :beetle:,status/confirmed,5-0-x,component/BrowserWindow,7-1-x,10-x-y
medium
Critical
499,053,422
godot
Godot produces confusing error when a variable identifier shadows a keyword
**Godot version:** 3.1.1 **Issue description:** Godot doesn't allow scripts to create identifers which shadow keywords, this is good and makes sense. Godot serves an error which doesn't help the developer notice when they have misused a keyword however, which leads to confusion. > Parser Error: Expected identif...
enhancement,topic:gdscript
low
Critical
499,063,732
flutter
Embedder API should warn when software and GL renderer backing stores are mixed.
Currently, it is embedder responsibility to be consistent with the client rendering API of the backing stores being used with the custom compositor. However, mixing them will lead to significant performance issues (if it works at all in the case of a software root surface renderer config and a an OpenGL compositor back...
engine,e: embedder,P2,team-engine,triaged-engine
low
Critical
499,128,390
TypeScript
Investigate altering extension priorities for wildcard loading
Our rules for loading files from wildcard matches prioritize `.d.ts` files over `.json` files (and at the same priority as `.js` files). Now that we support declaration files for `.json` and `.js` files, this is undesirable, as when declarations are emitted in-place (ie, with `emitDeclarationsOnly`), subsequent compila...
Bug,Fix Available
low
Minor
499,134,357
flutter
flutter_root/testing requires dart runtime to be linked in separately to build embedding test.
When we build embedding unit test executable we usually have to link ``` "$flutter_root/testing" "//third_party/dart/runtime:libdart_jit" ``` together. Otherwise, build will fail. We should refactor flutter_root/testing or create a new target that include both group so that we do not have to explicitly link bot...
engine,e: embedder,P3,team-engine,triaged-engine
low
Minor
499,139,029
TypeScript
Rewrite `getAccessibleSymbolChain` for performance
`getAccessibleSymbolChain` is one of the oldest parts of the compiler - remaining today mostly unchanged (barring support for new features) from when it was used in the old text-based declaration emitter. `getAccessibleSymbolChain` is used to, given a `[symbol, scope]` pair, find a series of symbols whose exports can b...
Domain: Declaration Emit,Experience Enhancement,Domain: Performance
low
Major
499,155,031
vscode
ctrl + click "go to definition" clashes with ctrl + click "follow link"
@AngusWR commented on [Wed Sep 25 2019](https://github.com/microsoft/vscode-python/issues/7591) ## Environment data - VS Code version: Version: 1.38.1 - Extension version (available under the Extensions sidebar): Version: 2019.9.34911 - OS and version: Windows 10 Pro 1903 18362.356 - Python version (& distribu...
bug,editor-symbols
medium
Major
499,164,228
TypeScript
How to pass along .d.ts comment on function that returns a class extending React.Component
From: https://stackoverflow.com/questions/58088678/how-to-pass-along-d-ts-comment-on-function-that-returns-a-class-extending-react?noredirect=1#comment102571859_58088678 I've got a .d.ts file I'm writing for an npm module teselagen-react-components that is a set of functions/react components. Here is a subset of the...
Bug,Domain: Quick Info
low
Major
499,178,541
go
go/internal/gcimporter: single source of truth for decoder logic
It's somewhat tedious to have to maintain go/internal/gcimporter in both the standard repo and in x/tools. Can we find a better solution here? E.g., we vendor a bunch of other x/ repos into the main build. Could we do that for x/tools/go/internal/gcimporter too? I know go/internal/gcimporter is more aggressive ab...
NeedsInvestigation
low
Minor
499,187,007
flutter
No scrollbar in (infinite) list widget.
While following and completing the instructions on [Write your first app](https://flutter.dev/docs/get-started/codelab#step-4-create-an-infinite-scrolling-listview), the resulting application does have an infinite scrolling list, but there is no (updating) scroll bar to show the "progress" of the list. I would expec...
c: new feature,framework,f: scrolling,platform-web,a: desktop,P2,team-framework,triaged-framework
low
Major
499,213,929
pytorch
conv2d Memory usage is too largeοΌ› pytorch 1.1.0
## πŸ› Bug Some specific situations, such as batch_size = 32, in/out_channels = 128, h = 1, w = 128 and kernel_size = 7, Memory usage is too large. if kernel_size = 5, Memory usage is a few MB; but if kernel_size = 7, Memory usage can reach 10GB! ## To Reproduce you can run this code and test different situati...
module: dependency bug,module: cudnn,module: memory usage,module: convolution,triaged
low
Critical
499,217,041
youtube-dl
youtube-dl auto-completion in not working in ubuntu 18.04
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
question
low
Critical
499,246,780
TypeScript
Language service doesn't output neither errors nor crashes
Language service doesn't output errors even when it crashes in these months. So developers can't report neither bugs nor crashes of language service. And this behavior hides type errors. <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** 3.4.0...
Needs Investigation
low
Critical
499,249,195
pytorch
Batched Dataloader
## πŸš€ Feature Add a mode to `Dataset` that enables fetching data in batches instead of item-by-item. ## Motivation If model training takes relatively small individual examples as an input, like in the case of training on tabular data, the python interpreter overhead of fetching data becomes so large that hinders t...
feature,module: dataloader,triaged
low
Major
499,306,174
terminal
Add support for roaming settings.json or storing it elsewhere
<hr> > **Note**: πŸ“Œ Pinned comment: **https://github.com/microsoft/terminal/issues/2933#issuecomment-536652883** <hr> # Description of the new feature/enhancement I have three different computers that I use for work. I keep my PowerShell profile in a GitHub repository and dot source it in my local PowerSh...
Issue-Feature,Help Wanted,Area-Settings,Product-Terminal
high
Critical
499,328,204
go
cmd/go: go get -insecure requires GIT_SSL_NO_VERIFY
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.13 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are ...
NeedsInvestigation
low
Critical
499,335,004
terminal
Feature Request: Icon buttons to start relevant shell types
Feature request: Add icon buttons to the Windows Terminal title bar for the installed shell types (instead of the current drop down menu). Each button would start the relevant shell type. The buttons could have tool tip/mouse over for the shell type label/description. The feature would enable one click start of the...
Issue-Feature,Area-UserInterface,Area-Extensibility,Product-Terminal
low
Minor
499,385,703
vue
Prevent Vue.use to be used without options parameter unless it's specified as optional (with `?`)
### What problem does this feature solve? **Reproduction link** Please see: https://tinyurl.com/y5mlgqqh **Steps to reproduce** 1. write a plugin 2. overload Vue.use ( see the given link above for detail ) **What is expected?** During compiling it fails, because the types are not matching. **What is act...
improvement,typescript
low
Critical
499,433,382
material-ui
[material-ui] useMediaQuery('print') doesn't work when print started from window.print
- [X] The issue is present in the latest release. - [X] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. ## Current Behavior 😯 Demo: https://codesandbox.io/embed/gifted-bohr-cxrdm Chrome: `useMediaQuery('print')` matches o...
docs,external dependency,hook: useMediaQuery,ready to take
low
Major
499,440,053
flutter
Snapping ScrollPhysics
Hi, After some tinkering and Googling all over the place I became super frustrated with the API / lack of documentation for `ScrollPhysics`. On Android you can use what's called a [SnapHelper](https://developer.android.com/reference/android/support/v7/widget/LinearSnapHelper) inside your RecyclerView (analogous t...
framework,a: fidelity,f: scrolling,a: quality,c: proposal,P3,team-framework,triaged-framework
low
Major
499,449,816
angular
Using ++ and -- in Angular expressions
<!--πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”… Oh hi there! πŸ˜„ To expedite issue processing please search open and closed issues before submitting a new one. Existing issues often contain information about workarounds, resolution, or progress updates. πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…οΏ½...
feature,workaround1: obvious,freq2: medium,area: core,core: basic template syntax,P4,feature: under consideration,feature: votes required
medium
Critical
499,450,309
pytorch
AnyValueTest.CorrectlyAccessesIntWhenCorrectType UBSAN failure: owncast of address 0x60300105d750 which does not point to an object of type 'Holder<const int>' Sep 27 00:01:03 0x60300105d750: note: object is of type 'torch::nn::AnyModule::Value::Holder<int>'
In https://github.com/pytorch/pytorch/pull/26927 I turn on libtorch tests in our ASAN build. I subsequently get this UBSAN error ``` Sep 27 00:01:02 [ RUN ] AnyValueTest.CorrectlyAccessesIntWhenCorrectType Sep 27 00:01:03 /var/lib/jenkins/workspace/caffe2/../torch/csrc/api/include/torch/nn/modules/container/...
module: build,module: cpp,triaged
low
Critical
499,477,671
pytorch
Lint rule to test for creation of tensor in native/ without options()
A longstanding hazard in native function writing is to forget to pass `options()` of an appropriate tensor to intermediates you build. Failing to do so can lead to Tensor-Variable confusion. Example: #26966 We should have a lint rule that detects if you mess this up. Probably could be as simple as a regex.
module: build,module: lint,triaged,better-engineering
low
Minor
499,538,664
vscode
Expanding semantic theming to support semantically embedded languages for colorization
## Overview Languages like Razor (and I imagine HTML for custom attributes) typically have scenarios where portions of the document are semantically a different language. In Razor this happens frequently through the use of TagHelpers or in Blazor: ```Razor <form asp-antiforgery="ViewBag.ShouldRenderAntiforgery"...
under-discussion,semantic-tokens
low
Minor
499,545,052
godot
Problem relocating a vertex of Curve2D
**Godot version:** 3.1.1 mono **OS/device including version:** win10 64bits **Issue description:** The movement of the sprite begins to have strange movements after 5/10 seconds. This seems to happen because one of the vertices of the curve2D is being moved in each frame. **Steps to reproduce:** Simply ex...
bug,topic:core,confirmed
low
Minor