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
551,086,780
terminal
Code Health: Consider disabling warning C26440
In one of the PRs I'm working on, I found I was getting errors from the audit mode build because it wanted me to declare certain methods as `noexcept` (warning [C26440](https://docs.microsoft.com/en-us/visualstudio/code-quality/c26440)). But the methods in question were calling the `std:array::at` method, which throws ...
Product-Meta,Issue-Task,Area-CodeHealth
low
Critical
551,094,860
flutter
[web] Improve api_conform_test.dart
In the engine, we use [`web_sdk/test/api_conform_test.dart`](https://github.com/flutter/engine/blob/master/web_sdk/test/api_conform_test.dart) to keep the API surface of `dart:ui` implementations in sync (native and web). Currently, we only check for classes, constructors, and public methods in classes. There are a ...
engine,platform-web,c: proposal,P2,team-web,triaged-web
low
Minor
551,103,567
TypeScript
Type unification not working for nested types
**TypeScript Version:** 3.7.2, 3.6.3, 3.5.1 (but not 3.3.3) **Search Terms:** type unification **Explanation for the code:** We have a collection of different document types (think Firebase's Cloud Firestore if you're familiar with that). Each document type of which has a type associated with it which contains...
Bug,Domain: Variance Relationships
low
Critical
551,104,806
rust
Suggest examples of format specifiers in error messages
This is [real code](https://twitter.com/Sunjay03/status/1217930353874276352) that someone I am helping learn Rust wrote today. It's a problem you could easily stare at for hours and never figure it out. Especially if you're new to using format strings. The code actually looks **correct** (from a distance). ```rust ...
C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics
low
Critical
551,118,828
go
cmd/compile: set prologue_end on every arch
As of Go 1.11 and commit https://github.com/golang/go/commit/7bac2a95f65418ec18d1fb5f30ae47e91980f30c support was added to put information about the end of the function prologue into the produced DWARF information, however it currently only works for x86. Ideally the DWARF information produced is consistent across a...
NeedsDecision,Debugging,compiler/runtime
low
Major
551,123,300
excalidraw
Ability to Print directly from the editor
Like Google Drive is doing it.. Generating a PDF out of it and sending it to print. Then it's up to the user to download as PDF or send it directly to printer. I'm sure people would do that just to post them somewhere on their whiteboards :)
enhancement,pdf
low
Major
551,129,768
vscode
Please address the security of vscode and plugins when opening files with secrets
When opening a file that contains secrets, how does vscode address security, especially as it concerns any plugins that may be installed and send those secrets to a remote URL. See also: https://stackoverflow.com/q/47404582/172207
under-discussion
low
Minor
551,151,015
tensorflow
Add python dev (alpha version) for testing and building in CI
Add python dev in CI can efficiently avoid the problem in next release. it it can make TensorFlow always support latest python stable release.
stat:awaiting tensorflower,type:feature
low
Major
551,159,707
TypeScript
Expose more internal api for making language service plugins.
## Search Terms language service plugin api refactor codefix vscode ## Suggestion * `ts.refactor.registerRefactor` A more standard way to make refactor rather than hook the language servies functions. And refactor is a rare api that I do not need to write ui code or command for vscode. * `ts.textChan...
Suggestion,Awaiting More Feedback
low
Minor
551,165,536
pytorch
Save LocalResponceNorm as a single aten node when convert a pytorch model to jit model
## πŸš€ Feature Suppose we have a model using LRN layer. When using torch.jit.trace(model, input) to convert it to jit model, I see it will be translated to a lot of subtle operations like, ``` #%input4.1 is the tensor to be normalized. %386 : Tensor = aten::mul(%input4.1, %input4.1) # code/fingerprint_v1.jit.py:...
oncall: jit,triaged
low
Minor
551,286,794
flutter
CustomScrollView systematically initializes the first child of every SliverList/SliverGrid sliver
Having a `CustomScrollView` with many slivers and stateful widgets inside these slivers, I noticed that the first child of each sliver is always initialized, even though they are way off screen (beyond the cache extent). It happens with `SliverGrid` as well as `SliverList`. Reproduction: ```dart class MyApp extend...
framework,f: scrolling,d: api docs,has reproducible steps,P3,found in release: 3.7,found in release: 3.9,team-framework,triaged-framework
low
Critical
551,293,096
rust
Feature request: Make queries more discoverable
We already have the `rustc_queries!` macro, so we should create a script (similar to clippy's `clippy_dev update_lints`) that builds a list of queries with their arguments and description to add to the rustc guide, to make existing queries more discoverable.
T-compiler,A-docs,C-feature-request,A-query-system
low
Minor
551,339,041
go
cmd/go: add option to propagate '-D' flags to SWIG
Related with #18339. When building a package using go + swig, it would be great if we could provide custom flags to swig (specially -D flags). One example where this would be needed is when we need to pass -DSWIGWORDSIZE64 or -DSWIGWORDSIZE32 so swig can properly generate its bindings.
NeedsInvestigation
low
Minor
551,349,783
nvm
macOS Catalina: unable to retrieve the right shell
#### Operating system and version: macOS Catalina. #### `nvm debug` output: as no `nvm` command becomes available, it's hard to answer this one. #### `nvm ls` output: as no `nvm` command becomes available, it's hard to answer this one. #### How did you install `nvm`? install script in readme #### What s...
shell: zsh,OS: Mac OS,installing nvm: profile detection,pull request wanted
low
Critical
551,350,581
flutter
ListView itemExtent breaks Dismissible
## Steps to Reproduce If a ListView has itemExtent, dismissible will not remove itself. **Expected results:** <details><summary>Click to see gif, Without ItemExtent</summary> <img src="https://user-images.githubusercontent.com/11790350/72607194-286faa00-38ee-11ea-89f8-b1007982e4b6.gif" width="360"> </details> ...
framework,f: material design,f: scrolling,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design
low
Major
551,363,013
flutter
GlowingOverscrollIndicator showLeading / showTrailing false does not work
Trying to use **GlowingOverscrollIndicator** widget to disable overscrolls on child widgets that scroll. Minimal example code, attempts to DISABLE both top and bottom overscrolls, but they persist. Expected behaviour is that neither top or bottom of list overscroll 'color flushes' appear when the user overscrolls ... b...
platform-android,framework,f: scrolling,has reproducible steps,P2,found in release: 3.7,found in release: 3.8,team-android,triaged-android
low
Critical
551,378,298
rust
Specialization should allow for delegation to default trait method implementation
Given the following trait: ```rust trait Trait { fn test(&self) { println!("default implementation"); } } ``` To provide a default specialization on `Trait::test`, `test` must be redefined; ```rust impl<T> Trait for T { default fn test(&self) { println!("default implementation"); } } ``` However thi...
T-lang,A-specialization,C-feature-request,F-specialization,F-associated_type_defaults
low
Major
551,410,752
flutter
Allow shadow to be set on Icon
I'd like to give `Icon`s a shadow. `Icon` uses `RichText` which can be given a shadow through its `TextStyle` shadow property. However, `Icon` doesn't expose the property and its `TextStyle` disables inheritance for `DefaultTextStyle`.
c: new feature,framework,f: material design,c: proposal,P3,team-design,triaged-design
low
Minor
551,414,001
flutter
TextField: Allow showSelectionHandles=true even if readOnly=true
## Use case I'm using my own custom keyboard to input text into a text field. To prevent the default "soft input panel" (keyboard) to show on focus and other events we can use readOnly=true + showCursor=true. This is according to issue #16863 (see this commenthttps://github.com/flutter/flutter/issues/16863#issuecomm...
a: text input,c: new feature,framework,f: material design,c: proposal,P3,team-design,triaged-design
low
Minor
551,448,499
pytorch
Problem with multiprocessing, custom __getstate__ with Tensors and forkserver
## πŸ› Bug **TL;DR**: multiprocessing forkserver / spawn + custom class with `__getstate__` returning tensors give ```python RuntimeError: unable to resize file <filename not specified> to the right size ``` ### Context Suppose the user created a custom class which holds a (large) list of torch tensors insid...
module: multiprocessing,module: serialization,triaged
low
Critical
551,503,679
godot
-Wduplicated-branches compilation warnings on Linux/X11 builds.
**Godot version:** 3.2 master, 0aefec24548edbb96e4991ede4465473e0c225e1 **OS/device including version:** Ubuntu 18.04.3 LTS VM (32 and 64-bit) gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1) **Issue description:** ``` scons -j4 p=x11 tools=yes target=debug debug_symbols=yes optimize=speed warnings=extr...
enhancement,platform:linuxbsd,topic:core,topic:buildsystem
low
Critical
551,526,995
pytorch
Pytorch JIT Compilation Does Not Finish (Infinite Loop?) for Deeper Models
## πŸ› Bug The Torchscript JIT compilation does not finish for a deep model (~4K layers). Is this a fundamental limitation? If so, what are alternative techniques to optimize the performance of PyTorch with deep models (hundreds of thousands of layers)? <!-- A clear and concise description of what the bug is. --> ...
oncall: jit,triaged
low
Critical
551,535,615
pytorch
torch.bartlett_window not jitable
## πŸ› Bug ``` In [1]: import torch In [2]: method = torch.bartlett_window ...
oncall: jit,triaged
low
Critical
551,540,584
godot
Viewport doesn't resize with XFCE when using maximize button or using docking feature
**Godot version:** 3.2.beta6 and 3.1.2.stable **OS/device including version:** Manjaro stable with XFCE Kernel: 5.4.2-1-MANJARO **Issue description:** I have a Viewport in a ViewportContainer (set to full_rect) and set the size of the Viewport in the `process` function to the rect_size of the ViewportContain...
bug,platform:linuxbsd,topic:gui
low
Minor
551,576,209
pytorch
Possible ProcessGroup::Work::abort correctness issue
## πŸ› Bug https://github.com/pytorch/pytorch/pull/29928 added an abort API to `ProcessGroup::SendWork` and `ProcessGroup::RecvWork` that is designed to support the following functionality: ``` auto sendWork = pg.send(tensors, dst) sendWork->wait(); // block for the write to complete // in some separate thread ...
oncall: distributed,triaged,module: rpc
low
Critical
551,584,596
pytorch
[jit] Calling `torch.jit.script` on `@staticmethod`s which in turn call other `@staticmethod`s results in a `TypeError`
## πŸ› Bug Calling `torch.jit.script` on `@staticmethod`s that in turn call other `@staticmethod`s results in an internal error. ## To Reproduce ```Python3 class Foo: @staticmethod def bar(): return Foo.whiz() @staticmethod def whiz(): return 1 torch.jit.script(Foo.bar) ``` Resul...
oncall: jit,triaged
low
Critical
551,585,318
godot
Export variable not shown in inspector when using external script editor
**Godot version:** 3.2.rc1.mono **OS/device including version:** Linux 5.4.12-1-MANJARO **Issue description:** I wrote a GDscript, not C#. When I save the exported variables aren't shown in the inspector. I only can see them after I restart Godot. **Steps to reproduce:** - Open a project with the mono ver...
bug,topic:gdscript,topic:editor,confirmed
medium
Critical
551,594,354
rust
Tracking issue for negative impls
Generalized negative impls were introduced in https://github.com/rust-lang/rust/pull/68004. They were split out from "opt-in builtin traits" (https://github.com/rust-lang/rust/issues/13231). ## Work in progress This issue was added in advance of #68004 landed so that I could reference it from within the code. It...
A-trait-system,T-lang,B-unstable,C-tracking-issue,F-negative_impls,I-lang-nominated,S-tracking-impl-incomplete,S-tracking-needs-summary
high
Critical
551,596,842
TypeScript
Investigate eagerly returning more information about suggestions
## Problem Suggestions VS Code have three broad UX parts: - Name/label. Primary identifier for a suggestion, such as `foo`. - Details. Type information or auto import info, such as `string`. - Documentation. Js doc info and additional details about the suggestion item Currently VS Code only shows the details ...
Suggestion,Awaiting More Feedback
medium
Critical
551,602,729
TypeScript
Ignored error in class constructor causes method usage errors to be ignored
**TypeScript Version:** 3.5.3 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** ts-ignore in class constructor class method no error on parameter usage **Code** ```ts class Foo { bar: string constructor(bar: string) { this.bar = ba...
Bug
low
Critical
551,603,855
vue
Generate distinct paths for supporting .vue files in sourcemaps
### What problem does this feature solve? Hello Vue πŸ‘‹ I'm working on our [new JavaScript debugger](https://github.com/microsoft/vscode-js-debug) for VS Code, and ran into some problems when trying out Vue. The default vue-cli setup creates several supporting .vue scripts. For instance, open the Chrome devtools and...
discussion,improvement
medium
Critical
551,614,864
pytorch
Backward `Functional.conv3d` is slow when cuDNN is enabled
## πŸ› Bug Profiling shows that my backward pass through `conv3d` is between 7 and 15 times slower than forward. Setting `torch.backends.cudnn.enabled = False` brings it down to parity with forward. ## To Reproduce ```Python3 torch.backends.cudnn.enabled = True input = torch.rand(1, 2, 33, 33, 33, device="c...
module: cudnn,module: cuda,triaged
low
Critical
551,620,613
rust
`#[used]` should work on functions
Currently `#[used]` only works on static items. It would be more consistent and useful if it also worked on functions. My motivation for this is to prevent some cases of user errors when using `cortex-m-rt`'s `#[exception]` and `#[interrupt]` attributes. As can be seen in [this test](https://github.com/rust-embedded...
A-linkage,A-attributes,T-lang,C-feature-request,WG-embedded
low
Critical
551,631,741
rust
Compiler crashes with SIGSEGV when compiling core library with static relocation model
So, I'm compiling Rust programs to run on MS-DOS (386 real mode). This requires a static relocation model, and I can get many programs to compile and run by passing ``-C relocation-model=static`` during compilation and making sure that my linker flags include ``-fno-pie``. However, things went wrong when I tried to hoo...
A-linkage,T-compiler,C-bug
low
Critical
551,634,265
flutter
[a11y] matchesSemantics is missing fields on SemanticsNode, such as transform
Ideally, matchesSemantics has every field on SemanticsNode
a: tests,framework,a: accessibility,P3,team-framework,triaged-framework
low
Minor
551,636,441
flutter
Cannot detect taps on PlatformViews
If you have a `GestureDetector` parent of a `PlatformView`, then the `onTap` of the `GestureDetector` is not called even when the `PlatformView` has no gesture detectors. I wrote a test case showing the issue: ```dart testWidgets('PlatformViewSurface works with GestureDetector parent', (WidgetTester tester) asy...
framework,f: gestures,a: platform-views,P2,a: plugins,team-framework,triaged-framework
low
Major
551,638,484
pytorch
Migrate processGroup::async_work to use Future
Now we have generic Future in pyTorch codebase, see PR #29579. We can consider to migrate processGroup::async_work to use Future as well, so that we have generic handling for async work processing, and benefit from all the future improvement of the generic Future like timer and error handling and etc. cc @piete...
oncall: distributed,triaged
low
Critical
551,653,630
vscode
Readonly ranges/lines in the editors
In the Cosmos DB extension exploration, documents are opened as JSON files, which can be edited ![image](https://user-images.githubusercontent.com/2230985/72649220-eb2d0b80-3931-11ea-9c12-feabda6d8205.png) They may have user defined properties, as well as several database-defined properties. Editing these is poss...
feature-request,editor-core
low
Minor
551,663,765
pytorch
Make _rpc_sync_torchscript and _rpc_async_torchscript work with autograd profiler
This is to follow up PR #32197, we should make the torch script call work with auto grad profiler. cc @suo
oncall: jit,triaged
low
Minor
551,667,234
godot
Selection doesn't work as well while freelooking in the viewport
**Godot version:** Godot 3.2 RC1 **OS/device including version:** Windows 10 1903 **Issue description:** Commit #34801 made me aware of the ability to select nodes while freelooking in the viewport. However, it seems that the ability to select things is significantly less accurate while freelook is activ...
bug,topic:editor,confirmed,usability,topic:3d
low
Minor
551,685,401
rust
LLVM error compiling core and builtin functions using 16-bit pointers in data layout
I'm trying to compile Rust code to run in 386 real mode, where pointers larger than 2^16 aren't meaningful, even though there are 32-bit registers to work with. It works if I use full 32-bit pointers, but this is quite wasteful, so I've written my target JSON file to specify 16-bit pointers with 16-bit alignment in the...
A-LLVM,T-compiler,C-bug
low
Critical
551,686,416
TypeScript
No error from noUnusedLocals option on ambient local variable in module file
<!-- 🚨 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...
Bug
low
Critical
551,704,948
flutter
Make the _DatePickerDialog easier to driver with Flutter driver
The Material date picker dialog is pretty hard, verging on impossible (to selected dates from previous/future years) to control via the Flutter Driver due to the lack of keys on some elements. It would be great to have keys on the main elements so that they can be tapped by the driver. The useful elements to have w...
a: tests,framework,f: material design,f: date/time picker,t: flutter driver,a: quality,c: proposal,P3,team-design,triaged-design
low
Critical
551,708,475
flutter
[Web] Stuck at "Attempting to connect to browser instance"
My web project compiles without error, but on launch, the browser opens with a blank page and Android Studio shows "Attempting to connect to browser instance" indefinitely. Just ran Flutter upgrade now. The console in the browser shows ``` Uncaught TypeError: Cannot read property 'core' of undefined at com...
tool,platform-web,P2,team-web,triaged-web
low
Critical
551,730,261
TypeScript
Allow `#`-private names in parameter property positions
<!-- 🚨 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
551,731,930
flutter
[webview_flutter] add onReceivedTitle
need a way to get title in time, android webview and ios wkwebview both provide the callback to listen the changes of title.
c: new feature,p: webview,package,c: proposal,team-ecosystem,P3,triaged-ecosystem
low
Major
551,732,652
rust
--pretty=expanded fails after calling cbindgen in cdylib crate
# Preface This one is a bit of a doozy and I can't tell if it's a rustc issue or a cbindgen issue or both, so I'm going to cross-report them so both projects can be aware. I don't have a minimal reproduction, but it is easily reproducible in my repo. Repo: https://github.com/BVE-Reborn/bve-reborn Working Comm...
A-pretty,T-compiler,requires-nightly
low
Critical
551,735,661
create-react-app
Need to credit caniuse-lite in produced web app?
### Is your proposal related to a problem? I'm not expert on software licenses, but from what I gathered, when deploying an javascript application bundle to production and serving it on a web server, this counts as distribution of statically linked software, where I need to follow the licenses of all javascript npm ...
issue: proposal,needs triage
low
Major
551,743,286
go
x/crypto: add BLAKE3 support
<!-- 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.13.5 linux/amd64 </pre> ### Does this issue reproduce...
NeedsDecision,FeatureRequest
medium
Critical
551,745,005
rust
Support hiding specific stackframes from backtrace by marking on the original functions.
Recently `#[track_caller]` usages has landed on nightly channel, which is really great! However i want to request a little more here. Currently ```rust fn main() { panic!("foo"); } ``` output is: ```text thread 'main' panicked at 'foo', src/main.rs:2:5 stack backtrace: 0: backtrace::backtrace::libunwin...
A-runtime,T-lang,C-feature-request
low
Major
551,747,678
godot
Text in the help section of the editor doesn't scale with font settings
**Godot version:** 3.2.rc1 **OS/device including version:** Linux / Pop_OS **Issue description:** The text in the help section of the editor stays the same size no matter if `main_font_size` is changed in the editor settings. ![help_font](https://user-images.githubusercontent.com/3285214/72661841-13227a80-39d...
enhancement,topic:editor,confirmed,usability
low
Major
551,756,143
neovim
Debug Adapter Protocol implementation
Termdebug only works for gdb, which is a major disappointment for the users who've wanted an integrated debugger for years, but don't compile in gcc (or perhaps not at all). [Vimspector](https://github.com/puremourning/vimspector) implements the [Debug Adapter Protocol](https://microsoft.github.io/debug-adapter-prot...
enhancement,plugin,lua
high
Critical
551,756,406
node
we should publish and compare benchmark results some where
It would be cool if we would offer a way to let endusers run the benchmarks complet and submit results with some added data so we can compare the results against diffrent cpu and other metrics.
benchmark
low
Minor
551,761,250
create-react-app
Support for setting default scripts-version from template.json
### 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..." --> I've been maintaining universal-react-scripts, a version of react-scripts which includes SSR support. I've recently been trying to merge in the ch...
issue: proposal,needs triage
low
Minor
551,763,848
godot
Joint2D doesn't react to KinematicBody2D
**Godot version:** 3.1.2. **OS/device including version:** Win 10 **Issue description:** Attaching PinJoint2D, DampenedSprintJoint2D or GrooveJoint2D doesn't affect KinematicBody2d either using position, global_position, move_and_slide() or move_and_colide(). **Steps to reproduce:** Joining 2x KinematicBody2D or...
bug,confirmed,topic:physics
low
Minor
551,770,022
godot
Snapping Controls margins doesn't work after rotating their Rect
**Godot version:** Godot 3.2.rc1 **OS/device including version:** Solus 4 Gnome **Issue description:** When ou try to drag the margin of a rotated Control node they don't snap anymore. Might be related to #23030 **Steps to reproduce:** 1. Add a Control to the scene 2. Activate snap to grid 3. Try to move...
enhancement,topic:editor
low
Critical
551,771,622
pytorch
[JIT] Compile group of functions/modules
## πŸš€ Feature I would like to be able to jit compile a group of functions or modules in order to serialize the obtained library in a single file so that later can be loaded in C++. ## Motivation The main motivation for this feature is to port Kornia to C++ avoiding the massive effort to re-implement the whole ...
oncall: jit,triaged
low
Minor
551,771,703
go
cmd/go: error: unrecognized command line option '-rdynamic' when cross-compiling to ARM with -pie
I'm not sure if this is supposed to work, i.e `-buildmode pie` for ARM, but nothing seems to suggest it shouldn't. ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.13.6 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What operating ...
help wanted,NeedsInvestigation
medium
Critical
551,773,282
youtube-dl
Broken/Misfunctioning Site: VIU
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
geo-restricted
low
Critical
551,774,799
flutter
[in_app_purchase] Add documentations to explain: How to detect if an auto renewal subscription is cancelled on iOS.
I am using in_app_purchase package for Auto-renewal Subscription. In my case, it's working perfectly for android but for Ios when a user cancels the subscription it is still showing purchase status is purchased. How can I detect if a user cancelled the subscription on IOS. /// Gets past purchases ```dart Future<L...
platform-ios,d: api docs,p: in_app_purchase,package,P3,team-ios,triaged-ios
low
Critical
551,776,607
TypeScript
Support safe index access for noImplicitAny
It is hard to use noImplicitAny without enabling suppressImplicitAnyIndexErrors on the current TypeScript. ## Search Terms noImplicitAny suppressImplicitAnyIndexErrors ## Suggestion Provide safe indexes without explicit type declarations to avoid unsafe index access errors. ## Use Cases - for-in - O...
Suggestion,Awaiting More Feedback
low
Critical
551,802,414
rust
Let custom codegen backends opt out of LTO
For example cg_clif doesn't support LTO. Unfortunately enabling LTO makes the linker code always omit object files, so attempting to use `-Clto=yes` will result in a linker error. It is not practical to just not pass `-Clto=yes`, as many crates enable it in their `Cargo.toml`. I would like to be able to make cg_clif te...
A-linkage,A-codegen,T-compiler,C-feature-request,A-cranelift
low
Critical
551,819,862
deno
Release musl builds
Previously I was able to use `--target x86_64-unknown-linux-musl` on rusty_v8 and deno (excluding the plugin). https://github.com/denoland/rusty_v8/issues/49 > It's unclear to me if it's best to _only_ target x86_64-unknown-linux-musl or to additionally support it. e.g. sccache seems to [_only_ provide binaries fo...
build,suggestion
high
Critical
551,821,853
TypeScript
Duplicate identifier errors when using @types inside a Windows junction
This is a dupe of #11333, but that issue was marked as closed/fixed (and locked... why?). It's not. It should be reopened and _actually_ fixed. It's also unrelated to 'npm link'. **IMPORTANT**: my `e:\work` directory is a JUNCTION point to `y:\work` node: 13.5.0 npm: 6.13.4 tsc: 3.7.5 index.ts: ``...
Bug
low
Critical
551,838,953
go
proposal: x/crypto/argon2: add API variants to support a buffer pool
argon2.Key() & .IDKey() appear to thrash memory by allocating a (typically) large buffer and using it once. https://github.com/golang/crypto/blob/master/argon2/argon2.go#L157 This might not scale well where every login on a high-traffic site calls this API to check a password. Could API variants be added which t...
Proposal,Proposal-Hold,Proposal-Crypto
medium
Critical
551,839,690
flutter
A convenient way to clip children to their parent's content without pixel overflow errors.
## Use case Animations are key to fluid UI, and flutter heavily endorses that. However, when it comes to revealing and hiding elements, pixel overflow often comes in the way. The current method of ignoring pixel overflow is to wrap your widget in a Wrap or an Expanded widget. Both of those are far less than ideal...
framework,c: proposal,P3,team-framework,triaged-framework
low
Critical
551,841,825
go
cmd/go: build fails when %go_import is used in SWIG interfaces
<!-- 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.13.5 linux/amd64 </pre> ### What operating system and processor arc...
help wanted,NeedsInvestigation
low
Critical
551,845,092
vue
the string constructor cannot be used as a `key`
### Version 2.6.11 ### Reproduction link [https://codesandbox.io/s/practical-shaw-br23c](https://codesandbox.io/s/practical-shaw-br23c) ### Steps to reproduce Open the codesandbox and you'll see a warning like `[Vue warn]: Duplicate keys detected: 'constructor'. This may cause an update error.` ...
bug,discussion
low
Critical
551,845,972
flutter
IconButton seems to be missing Semantics(container: true)
Internal bug: b/147830016 Comparing [RawMaterialButton](https://github.com/flutter/flutter/blob/8665e13801fe6b53a0e67866d2ee6cd5ef2083f4/packages/flutter/lib/src/material/button.dart#L458) to [IconButton](https://github.com/flutter/flutter/blob/8665e13801fe6b53a0e67866d2ee6cd5ef2083f4/packages/flutter/lib/src/materi...
framework,f: material design,a: accessibility,customer: money (g3),team-design,triaged-design
low
Critical
551,854,843
vscode
[folding] Support for toggle fold/unfold recursively
I love the toggle fold command, because I can use the same keyboard shortcut to fold and unfold (I'm using space bar with a when expression that checks to see if I'm in normal mode [vim extension]). However, the fold/unfold recursively does not have a toggle. I have unfold recursively set to shift+space, but I wish I c...
feature-request,editor-folding
low
Major
551,856,034
TypeScript
Typo in `String#match` (lib.es2015.symbol.wellknown)
<!-- 🚨 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 CONT...
Bug,Domain: lib.d.ts
low
Critical
551,879,867
youtube-dl
VIU.TV : Unable to download
Video can be played online on browser. >youtube-dl.exe --version 2020.01.15 >youtube-dl.exe --list-subs https://www.viu.tv/encore/the-republic/the-republice1anothe r-blissful-week [generic] the-republice1another-blissful-week: Requesting header WARNING: Falling back on generic information extractor. [generic...
geo-restricted
low
Critical
551,883,546
pytorch
torchvision
Hi all, when I'm trying to run the script of vae tutorial I get this error: RuntimeError Traceback (most recent call last) <ipython-input-8-284baaea67b6> in <module> ----> 1 import torchvision 2 from torchvision import transforms ~/virtualenv/lib/python3.6/site-packages/torch...
triaged,module: vision
low
Critical
551,889,556
flutter
Looping List & Keep alive
## Steps to Reproduce <!-- You must include full steps to reproduce so that we can reproduce the problem. --> 1. Run `flutter create bug`. 2. Update the files as follows: <details> <summary>main.dart</summary> ```dart import 'package:flutter/material.dart'; import 'package:bug/infinite_carousel_slide...
framework,f: scrolling,c: proposal,P3,team-framework,triaged-framework
low
Critical
551,903,401
opencv
Undefined symbols for architecture x86_64 while linking CXX libraries opencv 3.4.9 under osx 10.13.6 with CUDA
##### System information (version) - OpenCV => 3.4.9 - Operating System / Platform => OSX 10.13.6 (17G10021) - Compiler => XCode 9.2 (clang llvm 900.0.39.2) - CUDA => 9.1.128 ##### Detailed description I am trying to compile and install opencv 3.4.9 with CUDA support under osx 10.13.6 through CMake-gui (3.1...
category: build/install,category: gpu/cuda (contrib),platform: ios/osx
low
Critical
551,908,278
godot
ClassDB errors and extreme editor lag.
**Godot version:** 3.2 RC1 **OS/device including version:** Win10 64-bit **Issue description:** Was editing a script in Sublime, and returned to the Godot script editor. It had some syntax errors, but the console also put out a lot of errors about ClassDB and became incredibly laggy to use. Had to restart ...
bug,topic:gdscript,topic:editor
low
Critical
551,923,956
pytorch
How to accelerate the compiling of pytorch
## ❓ Questions and Help ### Please note that this issue tracker is not a help form and this issue will be closed. We have a set of [listed resources available on the website](https://pytorch.org/resources). Our primary means of support is our discussion forum: - [Discussion Forum](https://discuss.pytorch.org/)...
module: build,triaged
low
Minor
551,926,836
rust
Semantics of MIR assignments, around aliasing, ordering, and primitives.
In today's MIR, an indirect assignment like `*p = *q;` is similar to, but not exactly the same as: ```rust tmp = *q; *p = tmp; ``` The differences are: * performance: they only produce the same codegen for primitives * this is assuming `tmp` isn't used elsewhere, allowing codegen to treat it like an SSA value,...
T-lang,T-compiler,A-MIR,A-miri
medium
Major
551,936,924
TypeScript
strictPropertyInitialization option doesn't work with computed properties
<!-- 🚨 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...
Suggestion,Awaiting More Feedback
low
Critical
551,941,963
pytorch
KL divergence for diagonal Gaussian distributions
## πŸš€ Feature - Extend the KL divergence method for two `torch.distributions.Independent` to be as the one in [pyro](https://github.com/pyro-ppl/pyro/blob/dev/pyro/distributions/kl.py#L19). This recursively falls back to the base distribution to compute the KL divergence but is more flexible in terms of the shared dim...
module: distributions,feature,triaged
low
Critical
551,948,634
TypeScript
VS Code variable inspection / watch does not work for default imports in NodeJS environment
**TypeScript Version:** 3.7.5 **VSCode Version:** 1.41.1 2019-12-18 **Search Terms:** VSCode TypeScript Default Import Renamed Can't Debug Watch Inspect **Code** filea.ts ```ts const a: string = "hello"; export default a; ``` fileb.ts ```ts import a from "./filea" console.log(a); ``` tsconfig....
Bug
low
Critical
551,958,954
rust
Scan is overly specialized
Here is the existing type signature for std::iter::scan: `fn scan<St, B, F>(self, initial_state: St, f: F) -> Scan<Self, St, F> where F: FnMut(&mut St, Self::Item) -> Option<B>, ` If I were to use a verbose name for `scan` as implemented now, I would call it `map_with_state_until`, this means that if I just wa...
T-libs-api,C-feature-request,A-iterators
medium
Critical
551,963,286
pytorch
Build without MKL is not possible when MKL is installed
Hello, I was planning to make some benchmark with different BLAS implementation on CPU so I built several Pytorch package with BLAS=Eigen/OpenBLAS/ATLAS/MKL. Sadly something unexpected occurred: All version are linked to libmkl! Here is an example with the Eigen flavor: ``` python3 -c 'import torch; print(to...
module: build,triaged,module: mkl
low
Critical
551,975,209
rust
Wrong error message (E401) when storing the result of a generic const fn inside a const member of a generic function
I tried this code, assuming the result of `size_of::<T>()` would be considered a constant value since it would be known at function monomorphization: ```rust const fn size_plus_one<T:Sized>() -> usize { const size: usize = ::core::mem::size_of::<T>(); size + 1 } ``` This resulted in the following c...
C-enhancement,A-diagnostics,T-compiler
low
Critical
551,978,313
TypeScript
noImplicitAny, noImplicitThis fixers don't apply interface type within IIFE
**TypeScript Version:** 3.8.0-dev.20200119 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** noImplicitAny noImplicitThis codefix fix iife export **Code** ```ts (function () { interface Container { member: string; retur...
Bug
low
Minor
551,983,095
youtube-dl
PLATZI / 403 FORBIDDEN
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
account-needed
low
Critical
551,985,241
TypeScript
Strange behaviour with assignability and generics
**TypeScript Version:** 3.7.2 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** * 'any[]' is assignable to the constraint of type 'A', but 'A' could be instantiated with a different subtype of constraint 'any[]' * https://stackoverflow.com/questions...
Needs Investigation
low
Critical
551,992,242
godot
Deleting elements from Enum that is used in an export var creates inconsistencies
**Godot version:** tested in 3.1+, also tested in 3.2.beta6 **OS/device including version:** Windows 10 **Issue description:** When using enums in var exports, whenever i would delete an element from the enum in the beginning of the enum-list, all the places, where i use this enum in an export, the choice ...
bug,topic:editor
low
Minor
551,993,466
rust
Associated type behind a *mut unecessarily results in invariant subtyping
Consider the following code ([playpen](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=a73ee6a15b31f56b93fae74c447ea628)) ```rust pub trait Data { type Elem; } pub struct ViewRepr<A>(A); impl<'a, A> Data for ViewRepr<&'a A> { type Elem = A; } pub struct ArrayBase<D: Data...
A-type-system,A-associated-items,T-lang,T-types
low
Critical
551,994,398
flutter
Phantom margin in stack/row
I am getting this strange margin in the top of the container who is in the stack. I didn't manage to remove it in any way. ## Steps to Reproduce I made Pad reproducing my problem: https://dartpad.dev/3cff37d88cb391d15ffa13db818d5408 ## Flutter doctor ``` [√] Flutter (Channel dev, v1.14.1, on Microsoft Wind...
framework,f: material design,has reproducible steps,P2,found in release: 3.3,found in release: 3.5,team-design,triaged-design
low
Major
552,001,694
godot
Gui styles are shrinking edges of texture
**Godot version:** 3.2 beta 4 **OS/device including version:** Windows 10 pro education 64 bit **Issue description:** styles are shrinking edges of texture on buttons when they edges should not be modified at all. here is a picture of the edges being half the size then they should be ![image](https://user-im...
bug,topic:gui
low
Critical
552,019,587
TypeScript
`export as namespace` still allows access via properties in module files
**TypeScript Version:** 3.8.0-dev.20200119 **Search Terms:** export as namespace **Code** someModule.d.ts: ```ts export function foo (bar: string): void; export as namespace someModule; ``` index.ts: ```ts import { foo } from './someModule'; someModule.foo; window.someModule.foo; globalThis....
Bug
low
Critical
552,040,549
pytorch
DistributedStreamSampler: support stream sampler in distributed setting
## πŸš€ Feature DistributedStreamSampler: support stream sampler in distributed setting ## Motivation A new class `torch::data::samplers::DistributedStreamSampler` both works in distributed setting like `torch::data::samplers::DistributedSequentialSampler` and works with `torch::data::datasets::StreamDataset` li...
oncall: distributed,module: cpp,triaged
low
Minor
552,049,113
godot
Tilemap world_to_map() does not get the correct tile in combination with Raycast2D
**Godot version:** 3.1 stable, 3.2 rc1 **OS/device including version:** Win7 **Issue description:** When casting a ray onto a tilemap to detect a tile, I would expect for world_to_map() to return the Tile directly behind the ray collision point, in the direction of the ray, not on the right and below the collisi...
discussion
low
Major
552,058,006
pytorch
Is there a way to use SYSTEM_INSTALLED 3rdparty libraries?
I just wonder if there is a way to build pytorch based on my **SYSTEM** packages which are already installed, instead of building pytorch with those submodule 3rdparty libraries? Is that possible? And how to do that with one command? Is ```console python setup.py build ``` preferred? Or **cmake** is prefer...
module: build,triaged
low
Minor
552,061,943
rust
Expose `type_name()` method on Any.
In a similar spirit to #61533, it would be nice if the Any trait contained an auto implemented method akin to: ```rust fn type_name(&self) -> &'static str { std::any::type_name::<T>() } ``` This way it would be a lot easier print and surface errors like accidentally trying to cast `Box<T>` to `T` because `&B...
T-libs-api,C-feature-request,A-intrinsics
low
Critical
552,084,669
flutter
Appbar on iphone x take too much space on top
Using appbar on iphone especially iphone x take too much top space Comparison: on left (native app - Google translate) on right (flutter app) ![E93BD8B4-CA46-44D5-BC3D-A9C3A5B95A96](https://user-images.githubusercontent.com/41800/72701943-9f71a080-3b83-11ea-8faf-dbd8fa7a83c9.png) After debugging, i found out t...
e: device-specific,platform-ios,framework,f: material design,a: fidelity,P3,team-design,triaged-design
low
Critical
552,097,590
pytorch
MAGMA libraries
If you have a question or would like help and support, please ask at our [forums](https://discuss.pytorch.org/). If you are submitting a feature request, please preface the title with [feature request]. If you are submitting a bug report, please fill in the following details. ## Issue description After success...
module: binaries,module: build,triaged
low
Critical
552,150,500
flutter
[url_launcher] - PlatformException on ios 13.3 when opening a docx file
## Steps to Reproduce Steps to reproduce: 1. install url_launcher plugin 2. try to open a url that points to an uploaded docx file somewhere 3. native view opens up and PlatformException is thrown **Expected results:** No exception is thrown (maybe I can open the file also?) **Actual results:** iOS op...
c: crash,platform-ios,p: url_launcher,package,P2,team-ios,triaged-ios
low
Critical
552,152,356
flutter
How to get the visible bounds of widget ?
How to get the VisibleClipBounds of Widget? My requirement to get the current bounds of the widget after is moved some sort of distance using Positioning Widget. Example: In Windows, I will get the Graphics.VisibleClipBounds. Why? am asking this for re-using case and to avoid to re-paint on the drawn positi...
c: new feature,framework,P3,team-framework,triaged-framework
low
Minor