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
592,976,950
godot
Path2D shouldn't be editable with tool other than select
**Godot version:** 3.2.1 **Issue description:** I was really surprised when I tried to measure something with Ruler Tool and it added a point to my Path2D. I was slightly less surprised (but still) when I tried to move my Path2D with Move Tool and it also added a point. Polygon2D doesn't do this. When you use M...
enhancement,topic:editor,usability
low
Minor
593,003,290
flutter
Nested packages won't work
## Steps to Reproduce The idea here is to create a package that will evolve along with one or more applications that use it. The logical course of action is to create a nested package inside an application so we can modify and debug the package while the application evolves, also, keeping the dependencies of this pa...
tool,c: proposal,P3,team-tool,triaged-tool
low
Critical
593,007,920
godot
Custom compile of godot engine doesn't work with GDNative C++
**Godot version:** 3.2.1-stable.custom **OS/device including version:** Windows 10.0.18362 Visual Studio 2019 **Issue description:** If I compile 3.2.1 godot engine, then run a game that uses a C++ GDNativeScript dll, the dll is sometimes (not always) receiving garbage parameters. But the same dll works fine...
discussion,topic:gdextension
low
Critical
593,070,904
rust
Infinite recursion is not catched by the compiler.
Hi, consider this code: ```rust #![deny(unconditional_recursion)] struct Object { } impl Object { // RENAME HERE: fn foo(&self) -> f32 { 7.0 } } impl ToObject for Object { fn to_object(&self) -> &Object { self } } trait ToObject { fn to_object(&se...
C-enhancement,A-lints,T-compiler
low
Critical
593,111,910
flutter
[Web] open link in a new tab on mouse wheel click
On a flutter web page, center clicking on links does not open it in a new tab - instead it wants to scroll up and down. Is this standard behavior? Will this change to feel like a normal web page?
c: new feature,framework,a: fidelity,f: gestures,platform-web,P3,team-web,triaged-web
low
Minor
593,118,302
pytorch
MKLDNN_conv2d 2X slower than the native TH implementation
## 🐛 Bug It seems the mkldnn_convolution runs 2X slower than native thnn_conv2d_forward(use MKL for gemm). <!-- A clear and concise description of what the bug is. --> ## To Reproduce ``` import torch import torch.nn.functional as F import numpy as np from timeit import Timer num = 50 N = 1...
module: performance,module: cpu,triaged,module: mkldnn
low
Critical
593,145,689
react-native
xcode 11.4 build fatal error: module map file xxx/Build/Products/Debug-iphoneos/YogaKit/YogaKit.modulemap' not found
Please provide all the information requested. Issues that do not follow this format are likely to stall. ## Description fatal error: module map file '/Users/miaohao/Library/Developer/Xcode/DerivedData/apex_baojia2-cdczyhhwbgshmtbdymitajpzamao/Build/Products/Debug-iphoneos/YogaKit/YogaKit.modulemap' not found ## ...
Platform: iOS,Impact: Crash,Tool: Xcode
high
Critical
593,245,624
pytorch
Build PyTorch-1.4.0 from source failed
## 🐛 Bug I am trying to build pytorch 1.4.0 from source and i am seeing this error. ``` gmake: *** [all] Error 2 Traceback (most recent call last): File "setup.py", line 755, in <module> build_deps() File "setup.py", line 316, in build_deps cmake=cmake) File "/local/home/yingleiz/workspace/...
module: build,triaged
low
Critical
593,260,376
pytorch
Copy activations from one parts to another part in tensor, but report error
## 🐛 Bug I want to copy the activations from one region in image (tensor, shape=(3, 800, 800)) to another region with same shape, and after dealing with parts of dataset, a bug will be reported. ValueError: could not broadcast input array from shape (3,97,39) into shape (3,97,40) Parts of my code is : tmp = im...
triaged
low
Critical
593,278,424
PowerToys
[Run][WindowWalker plugin] Allow spaces to be treated as implicit AND operators
# Summary of the new feature/enhancement I usually know the application I'm searching for. If I have 20 or 30 open powershell consoles it would be convenient if I could type "power foo" and have the search results be the intersection of searching for "power" AND "foo" rather than the current mechanism of searching ...
Idea-Enhancement,Product-PowerToys Run,Priority-2,Run-Plugin
low
Major
593,297,583
react-native
ScrollView doesn't scroll to focused element
## Environment Android API: 28 Device: AndroidTV emulator and Xiaomi MI BOX React Native: 0.61.5 ## Description Sometimes ScrollView doesn't scroll to currently focused element on AndroidTV devices. Looks like issue is triggered because of two scroll events, one from _ReactScrollView.java_ _arrowScroll_ method a...
Help Wanted :octocat:,Platform: Android,Component: ScrollView,Newer Patch Available,Needs: Attention
low
Critical
593,312,022
youtube-dl
please add for https://aikidojournal.vhx.tv/
<!-- ###################################################################### 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
593,325,440
TypeScript
Exclude<keyof T, 'x'> should be assignable to Exclude<Exclude<keyof T, 'x'>, 'x'>
<!-- Please try to reproduce the issue with the latest published version. It may have already been fixed. For npm: `typescript@next` This is also the 'Nightly' version in the playground: http://www.typescriptlang.org/play/?ts=Nightly --> **TypeScript Version:** 3.8.3 <!-- Search terms you tried before logging ...
Bug
low
Critical
593,345,042
terminal
Feature request: Parenthesis matching in text
Wonderful work. This might finally persuade some of us Mac diehards to move to Windows! **Request**: Create a new feature to allow the user to invoke parenthesis matching in text by double clicking on a parenthesis, anywhere in the terminal. If a match exists, the text from the clicked parenthesis until the matching...
Area-TerminalControl,Area-Extensibility,Product-Terminal,Issue-Task
low
Minor
593,372,195
vscode
vscode://file/ URI not working from chromium
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Also please test using the latest insiders build to make sure your issue has not already been...
bug,upstream,linux,snap
low
Critical
593,405,287
flutter
EventChannel.setStreamHandler(null) should cancel previous Stream Handler
## Use case Plugin may publish continuous values using an EventChannel. As plugins go through lifecycle, they should clean up event channels in the same way that method call handlers are cleaned up: By setting the handler on the channel to null. EventChannel's do pose a little more complexity as they have a `...
platform-android,engine,c: proposal,P3,team-android,triaged-android
low
Minor
593,413,018
flutter
[animations] [proposal] OpenContainer not inherit closed/openColor from app theme
<!-- 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,package,c: proposal,p: animations,team-ecosystem,P3,triaged-ecosystem
low
Critical
593,428,772
flutter
Talkback does not honor scopesRoute unless namesRoute and label are also set
When creating a Semantics widget with `scopesRoute` set to true, iOS VO will honor that and focus the top element when a new widget is inserted into the tree with that property set, but Android's TalkBack will not, unless namesRoute and label are also set. The following code shows the problem: ``` import 'packag...
platform-android,framework,engine,a: accessibility,f: routes,customer: amplify,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-android,triaged-android
low
Major
593,437,200
TypeScript
Add feature to re-declare variable
## Search Terms redeclare variable, re-declare variable, augment variable, merge variable declaration, declaration override ## Suggestion define a `redeclare` keyword which allows re-declaration of a typed variable. e.g. ```typescript redeclare var foo: { prop: string }; ``` ## Use Cases <!-- What...
Suggestion,Awaiting More Feedback
low
Major
593,456,958
TypeScript
Exposing canonical filename logic
## Search Terms canonical filename ## Suggestion I'd like to re-use the get-canonical-filename logic: https://github.com/microsoft/TypeScript/blob/d68295e74e4897f588e73edf72089eb238904f02/src/compiler/core.ts#L1906-L1909 ## Use Cases I want to use `ts.resolveModuleName` and the accompanying `ts.createModuleRe...
API
low
Minor
593,464,679
PowerToys
Queue files automatically on copy/move to same target
Maybe I'm asking too much of PowerToys but I would really like to see a feature like this: Make it possible to automatically queue files when copying different files to the same harddisk. I just hate that Windows itself is just starting to copy everything simultaneously. This is ok if the targets are different de...
Idea-New PowerToy
medium
Major
593,469,075
go
x/tools/gopls: show progress report when gopls is downloading a module
@ardan-bkennedy suggested that we should try to use the progress reporting functionality of LSP to indicate when a module is being downloaded by go/packages. Otherwise, we just have a slow save that don't give the user any indication that `gopls` is communicating with the network. This will be tricky because only go...
FeatureRequest,gopls,Tools
low
Major
593,524,168
node
doc: Should `runMain()` and `globalPaths` of module add in doc?
By chance, I find `runMain()` method was used in [babel-node](https://github.com/babel/babel/blob/master/packages/babel-node/src/_babel-node.js#L207) but it can't be found in API. I also checked issue and code, but nothing. ```bash $ git grep runMain $(git rev-list --all doc/api/modules.md) -- doc/api/modules.m...
doc,module
low
Minor
593,531,757
TypeScript
isolatedModules doesn't respect enabled preserveConstEnum option what the project might be build with
## Search Terms isolatedModules, preserveConstEnum, const enum ## Suggestion The compiler should respect/understand that the package/module was compiled with enabled `preserveConstEnums` compiler option. ## Use Cases Let's say we have a project written in TypeScript, which uses const enums. The projec...
Suggestion,Awaiting More Feedback,Fix Available
medium
Critical
593,555,230
TypeScript
Lib dependencies are transitive
<!-- 🚨 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,In Discussion
low
Critical
593,566,749
flutter
ScrollController jumpTo fails assertion 'activity.isScrolling': is not true
## Steps to Reproduce Code in words: I start of with an CustomScrollView with an initial offset. If the user scrolls to the top from this initial offset, I will direct him to another screen. But if the user scrolls to the top from another offset, i want the ScrollController to jump back to the initial offset. ...
c: crash,framework,f: scrolling,has reproducible steps,P2,workaround available,found in release: 3.7,found in release: 3.9,team-framework,triaged-framework
low
Critical
593,577,304
pytorch
TensorOptions shouldn't provide default values
TensorOptions shouldn't be in the business of providing default values for missing properties. TensorOptions provides a simple kwargs-like structure for ferrying around the bundle of Tensor-relevant properties in C++, in a multitude of contexts. Semantically it's a struct holding a bunch of `optional`s, nothing mor...
triaged,better-engineering
low
Minor
593,586,059
create-react-app
Pin babel-preset-react-app to a minor core-js version as per core-js readme
### Is your proposal related to a problem? I've been trying to polyfill ```Promise.allSettled``` for Edge by using react-app-polyfill/stable but failing. My expectation was that it should work since react-app-polyfill@1.0.6 depends on core-js@3.6.4 and ```Promise.allSettled``` was moved into core-js/stable on v3.2.0...
issue: proposal,needs triage
low
Minor
593,635,593
flutter
[Web] Early errors are not reported to the flutter tools
In Flutter for Web, errors are only sent after the main.dart.js script loads, this means that, unfortunately, errors from things like _loading_ that main.dart.js, or from script errors in external scripts, are not always reported to the flutter tools. This leads to frustrated users that don't know/forget about the b...
tool,platform-web,P3,team-web,triaged-web
low
Critical
593,643,376
PowerToys
[Image Resizer] Show "Resize pictures" on all supported formats
**Resize pictures** should appear when right-clicking on any image format with a corresponding WIC codec. This would mean that installing things like following would make it appear. - [HEIF Image Extensions](https://www.microsoft.com/p/heif-image-extensions/9pmmsr1cgpwg) - [Raw Image Extension](https://www.microsof...
Idea-Enhancement,Product-Image Resizer
low
Major
593,644,515
PowerToys
[Settings][Image Resizer] Allow reordering the default sizes
You should be able to drag-and-drop reorder the default sizes in the **Settings** dialog.
Product-Settings,Area-User Interface,Product-Image Resizer,Priority-3
low
Major
593,650,284
rust
deeply-nested chain hangs with Item = u32
<!-- Thank you for filing a bug report! 🐛 Please provide a short summary of the bug, along with any information you feel relevant to replicating the bug. --> I tried this code: ```rust pub fn foo() -> Box<Iterator<Item = u32>> { use std::iter::empty; Box::new(empty() .chain(empty()) ...
A-LLVM,T-compiler,C-bug,I-hang
low
Critical
593,656,143
TypeScript
'declare method' quick fix for adding a private method
<!-- 🚨 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,Help Wanted,Good First Issue
medium
Critical
593,657,611
opencv
CUDA Canny missing edges near image border
##### System information (version) - OpenCV => 2.4.13.6 and 3.4 (example for 3.4 shown below) - Operating System / Platform => Windows 64 Bit - Compiler => Visual Studio 2017 ##### Detailed description Noticed that the CPU implementation of Canny will produce edges up to the image border, while the GPU/CUDA ve...
category: imgproc,category: gpu/cuda (contrib),incomplete
low
Minor
593,659,172
flutter
[Material] Add focus state, highlight state, and keyboard shortcuts to RangeSlider
Related Slider bug: https://github.com/flutter/flutter/issues/48905 The RangeSlider solution should be similar, but having 2 thumbs makes this more tricky.
c: new feature,framework,f: material design,c: proposal,P3,team-design,triaged-design
low
Critical
593,667,351
pytorch
[JIT] Tensor method API behavior discrepancy, Tensor.detach(..)
In Python, `Tensor.detach()` does not copy the tensor storage. In-place value changes update the original tensor. See doc, https://pytorch.org/docs/stable/autograd.html#torch.Tensor.detach. ```py b = a.detach() b -= c ``` a is changed as well. More examples in https://github.com/pytorch/pytorch/issues/6990 ...
needs reproduction,oncall: jit,triaged
low
Minor
593,677,131
TypeScript
Support bigint literals in const enums
<!-- 🚨 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
593,681,613
pytorch
JITed GRU too slow
## 🐛 Bug It is advertised, that forward pass of JITed RNNs (e.g. GRU) is as fast as cuDNN implementation. But it is not the case. ## To Reproduce Steps to reproduce the behavior: See here: https://gist.github.com/usamec/af21be7b83e6b1a3f38c26136af811f3 ## Expected behavior Forward pass is as fast as...
high priority,triage review,oncall: jit,triaged
low
Critical
593,705,197
pytorch
C++ tensor print doesn't show requires_grad and grad_fn like Python tensor print
In Python, we have the following tensor print behavior: ```python >>> x=torch.ones(2, 2, requires_grad=True) >>> x tensor([[1., 1.], [1., 1.]], requires_grad=True) >>> y=x*2 >>> y tensor([[2., 2.], [2., 2.]], grad_fn=<MulBackward0>) ``` However in C++, we have the following behavior: ```cpp ...
module: printing,module: cpp,triaged
low
Minor
593,737,212
rust
Multiple associated type-parametrized bounds fail to resolve
With this source ```rust use core::marker::PhantomData; pub trait Wrap<T> { type Wrapper; } fn fail< T, C: Trait<<WrapMarker as Wrap<T>>::Wrapper> + Wrap<<C as Trait<<WrapMarker as Wrap<T>>::Wrapper>>::Assoc>, >() { } fn succeed< T, C: Trait<PhantomData<T>> + Wrap<<C as...
A-trait-system,A-associated-items,T-compiler,C-bug,A-lazy-normalization
low
Critical
593,755,467
rust
rustdoc's treatment of cross-crate ("imported") files is suboptimal.
@bjorn3 noted in https://github.com/rust-lang/rust/issues/70025#issuecomment-606566181 that single files missing disables `[src]` links for *the entire crate*. That's not ideal UX, we should render as many source files as we can possible load. <hr/> And there's also the paths `rustdoc` uses (see https://github.c...
T-rustdoc,C-enhancement
low
Minor
593,762,503
flutter
macOS project doesn't run pod install for me when building
flutter created a project with `--enable-macos-desktop` turned on. added ```yaml dependencies: graphql: ^3.0.0 ``` to dependencies. flutter run CLI just returned ``` Launching lib/main.dart on macOS in debug mode... ** BUILD FAILED ** Building macOS application... Exception: Build process f...
platform-mac,a: desktop,a: build,P2,team-macos,triaged-macos
low
Critical
593,773,175
PowerToys
[Image Resizer] Better support for HEiC image formats
Can HEIC images be catered for in ImageResizer
Help Wanted,Product-Image Resizer
medium
Major
593,774,651
angular
TestBed: Error: Directive SomePipe has no selector, please add it!
<!--🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅 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. 🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅...
type: bug/fix,area: testing,freq2: medium,regression,area: compiler,state: confirmed,P3,compiler: jit
low
Critical
593,782,329
node
Exception while running 'es' benchmarks
* **Version**: master * **Platform**: Linux x64 * **Subsystem**: console? ### What steps will reproduce the bug? Running the 'es' benchmarks. ### How often does it reproduce? Is there a required condition? Not often it seems, not sure if it's specific to any 'es' benchmark. ### What is the expected beh...
benchmark
low
Critical
593,789,517
flutter
Ability to use ParagraphBuilder & Paragraph in other isolates
I need to calculate metrics for thousands of paragraphs in a way that doesn't lead to UI jank. Therefore I'd like to Instantiate a ParagraphBuilder and build a Paragraph in a separate isolate to pass back metrics to the main isolate. This is currently not possible. Related issues: #10647 #13343 _(I'm ope...
engine,c: proposal,P3,team-engine,triaged-engine
low
Critical
593,796,472
go
cmd/go: -buildmode=c-shared without specifying output file fails does not add .dll extension on Windows and .so extension on linux
<!-- 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...
help wanted,OS-Windows,NeedsInvestigation,GoCommand
low
Critical
593,838,043
flutter
[macos] force touch trackpad support.
There's currently no way to react to force touch actions on MacOS systems with a force touch trackpad. Related issues: #23604
c: new feature,engine,platform-mac,a: desktop,P3,team-macos,triaged-macos
low
Major
593,907,087
pytorch
About tensorboard in pytorch record graph in different state
## ❓ Questions and Help I want to save a model graph which changed along with training. For example, if the training epoch > 5, the model has a new structure. If I need to save both models' graph, how should I do? or can I achieve this? the graph will be overwritten if I save the model twice. ## Environment - Pyto...
triaged,oncall: visualization
low
Minor
593,962,892
rust
Generate better memcpy code for types with alignment padding
Consider the type `S0` below, which has 9 bytes of payload data, but because of alignment requirements its size is 16 bytes. It implements `Copy`, so it can be cloned and copied by `memcpy`. rustc tends to emit 9-byte `memcpy` calls for it in several cases, even though it would be legal to emit `memcpy` calls of size a...
A-LLVM,I-slow,C-enhancement,T-compiler
low
Major
593,966,839
rust
Switching from `impl` to `dyn` changes lifetime inference (maybe?)
I'm not really sure how to report this bug, as I'm not even sure it actually is a bug in Rust, due to my not understanding enough how lifetimes are at work in this example. So I'll just give the code and try to explain (it's quite long, so I've just put it on the playground). The interesting code is at the bottom of...
C-enhancement,A-diagnostics,A-lifetimes,T-compiler
low
Critical
593,978,378
flutter
Add keyline to Material Scaffold
The spacing methods in material spec appear to intentionally be open to the designers interpretation. In particular, Material offers *keylines* for adjusting spacing for child widgets, as described at the bottom of the [Spacing section](https://material.io/design/layout/spacing-methods.html#spacing) and illustrated in ...
c: new feature,framework,f: material design,a: quality,c: proposal,P3,team-design,triaged-design
low
Minor
593,995,263
godot
Godot crashed and won't start again. Renaming the folder or exe resolves the problem
**Godot version:** 3.2.1-stable_win64 **OS/device including version:** Windows 10 1909 (OS Build 18363.729) **Issue description:** Hi, I am unsure if this issue is with Godot or with Windows, but anyway: - Godot was running. - (probably unrelated but for completeness) I downloaded robisplash.zip from https:...
bug,topic:editor,crash
low
Critical
594,013,578
rust
Missing write coalescing
Function `make_constant()` writes a constant to `S`. Optimally it would be a single 16-byte write to memory, but in fact it generates four separate writes. Function `make()` writes a nonconstant and a constant. Ideally it would generate two writes (one nonconstant, one constant), or perhaps an OR followed by a single w...
A-LLVM,C-enhancement,A-codegen,T-compiler
low
Minor
594,085,965
tensorflow
Named Dimensions
**System information** - TensorFlow version (you are using): 2.1 - Are you willing to contribute it (Yes/No): No **Describe the feature and the current behavior/state.** Currently, TensorFlow ops receive axes as integer indices, e.g. `tf.reduce_sum(tensor, axis=(2, 3))`. Keep track of axes after applying seve...
stat:awaiting tensorflower,type:feature,comp:ops
low
Major
594,116,650
java-design-patterns
Rule engine design pattern
**Description:** The Rules design pattern is a behavioral design pattern that enables the encapsulation of business rules into isolated, reusable units. This pattern allows for the dynamic application of business logic at runtime and promotes the separation of concerns, making the system more modular and easier to main...
info: help wanted,epic: pattern,type: feature
medium
Major
594,138,176
flutter
"Welcome to Flutter" and "Waiting for lock" messages break --machine commands
`sudo flutter channel --version --machine` is responding with a non json output, this break other toolkit/ci-cd that are relying on this `--machine` flag https://github.com/go-flutter-desktop/go-flutter/issues/384. ```sh $ sudo flutter channel --version --machine Woah! You appear to be trying to run flutter ...
tool,P2,team-tool,triaged-tool
low
Critical
594,143,696
rust
Compiler error references non-existent/undefined lifetimes?
I'm trying to box the `impl Future` returned from an `async fn`; to that end, I tried wrapping it in a closure that does the boxing: ```rust let _clousre = |r: &Request<'_>| Box::new(index_get(r)); ``` (`index_get` is an `async fn`.) I expected to see this happen: Well, I had hoped it would compile! I do...
A-diagnostics,A-lifetimes,A-closures,T-compiler,C-bug,D-confusing
low
Critical
594,153,875
TypeScript
Use a data object instead of function closures for oldPrograms
## Search Terms structured clone algorithm, oldProgram, function closure ## Suggestion Create some transformer that transforms a `Program` to an `OldProgram`, which, instead of using function closures, would store the data, necessary for "rehydrating" a program, directly on the `OldProgram` object. The `crea...
Suggestion,In Discussion
low
Major
594,211,043
rust
BinaryHeap::peek_mut borrow check error (previously worked with -Z polonius)
The code below ([playground](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=8129d2dbcf17e4027fe851e877a31988)) gives an apparently spurious borrow check error. Intuitively, I would expect the first mutable borrow of `heap` to end when `p` is consumed by `PeekMut::pop`. I probably wouldn’t be f...
A-borrow-checker,T-compiler,C-bug,NLL-polonius
low
Critical
594,252,932
create-react-app
Line numbers reported in TypeScript syntax errors can be incorrect
Sometimes syntax errors have the wrong line numbers. Needless to say, this is confusing. ### Environment ``` Environment Info: current version of create-react-app: 3.4.1 running from /Users/sophiebits/.npm/_npx/57068/lib/node_modules/create-react-app System: OS: macOS High Sierra 10.13.6 ...
issue: needs investigation,issue: bug report
low
Critical
594,258,068
flutter
AnnotatedRegion not working on iOS (to set status bar icon color)
Internal: b/153083915 [Videos in attached bug] I am currently trying to use the suggested AnnotatedRegion widget in order to control the status bar icon color. Basically, after going to a new page which sets the status bar icon color, then going back to the original page, the original page status bar icon color i...
platform-ios,framework,customer: money (g3),a: layout,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-ios,triaged-ios
low
Critical
594,269,964
pytorch
torch.multinomial is misnamed.
The [multinomial distribution](https://en.wikipedia.org/wiki/Multinomial_distribution) has two inputs: weights <i><b>p</b></i> and the number of trials <i>N</i>, and one output the number of results in each category <b>n</b>. Note that the concept of with or without replacement doesn't enter the picture, and the output...
module: distributions,triaged,module: ux
low
Minor
594,281,795
vue
.once modifier did'nt perform as expected if my event handler return null
### Version 2.6.11 ### Reproduction link [https://jsfiddle.net/q0v6m8dr/1/](https://jsfiddle.net/q0v6m8dr/1/) ### Steps to reproduce 1. bind a handler to an event which with a '.once' modifier 3. set null for the hanlder's return value 2. trigger the event, and trigger again ### What is exp...
improvement
low
Minor
594,287,465
go
x/image/tiff: add 32bit float grayscale support
Please add support for 32bit float grayscale tiff images. This is a common format in scientific and medical imaging.
NeedsInvestigation,FeatureRequest
low
Major
594,350,903
godot
[TRACKER] List of unused signals
**Godot version:** 4.0.dev.custom_build. 321ce4d4c **Issue description:** With help of https://github.com/qarmin/godot_signal_checker (which could be rewritten to python to be able to put it inside CI in Godot repository) I found lot of potential unused signals with this methodology: Added signals have at the...
bug,topic:core,topic:editor,tracker
low
Major
594,356,205
rust
Consider renaming (`Re`)`EarlyBound` to `ReParam` and (`Re`)`LateBound` to `Bound`.
This convention would be slightly less confusing due to aligning better with `Ty` and `ty::Const`. On the other hand, the early-bound vs late-bound terminology is so baked-in that this might be hard. cc @rust-lang/wg-traits @matthewjasper
C-cleanup,A-type-system,A-lifetimes,T-compiler,T-types
low
Minor
594,455,718
pytorch
[JIT] Huge delay (1274s vs 0.031s) when running scripted model
## 🐛 Bug When a model that worked properely on a pure python is scripted, it works with a huge delay (1274s vs 0.031s before scripting), while the result at last is the same. Below are timings for processing 2 copies of the same image. Note that sometimes it is the 1st image that is processed very slowly, while ...
high priority,oncall: jit,triaged
low
Critical
594,459,259
pytorch
[DISCUSSION] Better user experience for debugging on Windows
## Background With https://github.com/pytorch/pytorch/pull/36039, we are now printing the traceback of exceptions in the command prompt. For example, before this change, if we throw an exception `c10::Error(SourceLocation, msg)`, it will only print something like `(no backtrace available)` But now we will get somethin...
module: build,module: windows,triaged
low
Critical
594,464,609
godot
GDScript cannot always infer types
**Godot version:** 3.2.1 **OS/device including version:** Windows 10 The gdscript editor cannot seem to infer object types most of the time making it impossible to get popup help for near enough all objects. Without this functionality, coding is near impossible, especially for newcomers or those wishing to ensu...
topic:gdscript
low
Major
594,482,184
create-react-app
create-react-app should allow TypeScript imports outside `src`
### Is your proposal related to a problem? Code reuse is a good thing. It is not uncommon that a backend and a frontend can use the same code, and live in the same repository. The need for sharing code is particularly strong with TypeScript type definitions, because developers on the backend and the frontend want to...
issue: proposal,needs triage
high
Critical
594,490,729
rust
Running rustdoc on code using quote generates false lint warnings for unused_braces
I tried this code: ```toml [package] name = "repro" version = "0.1.0" edition = "2018" [dependencies] quote = "=1.0.3" ``` ```rust use quote::quote; pub fn repro() { let many = [1, 2, 3]; let _together = quote! { #(#many),* }; } ``` I think this is a basic and common us...
A-lints,P-medium,T-compiler,regression-from-stable-to-stable,C-bug,ICEBreaker-Cleanup-Crew
medium
Critical
594,494,222
go
encoding/xml: XMLName value of embedded structs type not used in Marshaller
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.14.1 windows/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</summa...
NeedsInvestigation
low
Critical
594,513,291
electron
MacOS: "Ask for a Review" functionality using SKStoreReviewController API
Update: you can find a paid bounty for this issue here: https://bountify.co/electron-call-macos-requestreview-api First working solution gets the bounty. Payout will continue to increase until a solution is found. I will make it public domain if the submitter doesn't. --- For electron on MacOs, how do we call ...
enhancement :sparkles:,platform/macOS
medium
Critical
594,546,665
godot
Switching views overlays 3D image on 2D view
Current master branch: 94fab213482fd944debc50e255e7b395d391cc33 Windows 10 (latest NVIDIA drivers) As in GIF. Of course that's not proper use of views, nodes I've put are for 3D usage, but I can't recall that previous versions preserved similar behavior of caching 3D image on top of 2D view. ![godot-overlay](htt...
bug,topic:rendering,topic:editor
low
Minor
594,581,603
youtube-dl
operadeparis.fr
<!-- ###################################################################### 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
594,610,642
rust
Wasteful duplication between incremental build dirs and normal artifacts.
Incremental compilation reuses object files by storing *a copy* of them in the incremental cache directory, which is then copied into the `rlib`. This results to build dirs which are twice as big as they need to be (which then gets multiplied by the number of stale artifacts that aren't removed by any tool AFAICT). ...
C-enhancement,T-compiler,A-incr-comp,I-heavy
low
Minor
594,614,832
react
Provide a renderer-agnostic equivalent of setNativeProps()
Dan asked me to open up an issue: https://twitter.com/dan_abramov/status/1246883821477339139 My proposal is to extend React with a small hook that allows us to mutate nodes without causing render. React has no official means to deal with fast occurring updates and libraries like react-spring and framer-motion alread...
Type: Feature Request,Type: Discussion
medium
Critical
594,618,948
flutter
Flutter Build iOS Fails - /tmp/Runner.dst/Applications/Runner.app does not exist
## Command flutter build iOS fails. I search the Internet but unable to find a solution. I have attached a build fail.txt file located at https://github.com/churchevent/ChurchEvents/issues/1#issue-594615884 The last thing I did before building the project was 'Clean Build Folder' from Xcode, and 'Flutter Clean...
c: crash,platform-ios,tool,t: xcode,P3,team-ios,triaged-ios
low
Minor
594,673,423
godot
Exported variable setter function called during typing
**Godot version:** 3.2.1 stable **OS/device including version:** Windows 10 18363 **Issue description:** If an exported variable has a a setter function and its script is running in tool mode, the setter function is called every time the user types a new letter. For example, typing the value "icon" calls the s...
discussion,topic:editor
low
Critical
594,704,933
flutter
Overscrolling outer scrollview / SliverAppBar.stretch does not work in NestedScrollView
<details> <summary>code sample</summary> ```bash DefaultTabController( length: 2, child: NestedScrollView( physics: BouncingScrollPhysics(), headerSliverBuilder: (context, innerScrolled) => <Widget>[ SliverOverlapAbs...
framework,f: material design,f: scrolling,has reproducible steps,P2,workaround available,team-design,triaged-design,found in release: 3.16,found in release: 3.20
low
Critical
594,710,930
node
Always call Socket#setTimeout in HTTP ClientRequest#setTimeout
<!-- Thank you for suggesting an idea to make Node.js better. Please fill in as much of the template below as you're able. --> **Is your feature request related to a problem? Please describe.** Hello there. Currently, `ClientRequest#setTimeout` and `Socket#setTimeout` has different behavior. `ClientRequest#...
http
low
Minor
594,840,066
pytorch
Half type promotion with Numpy arrays is incorrect
Sample script: ``` import torch t = torch.tensor((1,), dtype=torch.float16) arr = np.array((1,), dtype=np.int32) print(t + arr) ``` Result: `tensor([2.], dtype=torch.float64)` The result of these operations should be the widest float type. E.g. np.int64 + torch.float16 should produce a torch.float16 te...
triaged,module: numpy
low
Minor
594,866,095
pytorch
Some tutorials cannot be found from both side panel and tutorial welcome page
## 🐛 Bug Some tutorials cannot be accessed via Tutorial Home Page or PyTorch Tutorial side panel. Their links are missing. To access these tutorials, I search Google ## To Reproduce Steps to reproduce the behavior: 1. Go to https://pytorch.org/tutorials/ 1. These tutorials are not found in both side panel...
module: docs,triaged
low
Critical
594,872,172
go
proposal: net/http, net/http/httptrace: add mechanism for tracing request serving
For the purpose of accurate request tracing when serving HTTP requests (for both HTTP/1.x and HTTP/2), it would be ideal if `http.Handler`s could obtain a `time.Time` representing the time of first byte of the request. In this context, time of first byte would be the best estimate of the instant when the go process ...
Proposal,Proposal-Hold
medium
Critical
594,902,977
excalidraw
excalidraw CLI
Hi there, I was wondering, what if we have a CLI for excalidraw? ```bash excalidraw my-drawing.excalidraw ``` This will open a browser. If `my-drawing.excalidraw` already exists, it will load it. When user clicks "save" button, it won't show the dialog but quietly save to `my-drawing.excalidraw`. ```bas...
enhancement
medium
Critical
594,957,481
ant-design
fixed Table 勾選列後,欄位位置錯誤
- [ ] 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://imgur.com/mdLgADn](https://imgur.com/mdLgADn) ### Steps to reproduce 點擊checkbox ### What is expected? https://imgur.com/peLrVBk #...
Internet Explorer,Inactive
low
Major
594,965,035
PowerToys
Windows File Explorer folder global keyboard shortcuts
# Summary of the new feature/enhancement System wide Explorer keyboard shortcuts for User folders (Desktop, Documents, Downloads, ...). This would allow to make the current Explorer window go to that Folder instantly, instead, of clicking/tabbing etc. This behavior is available on macOS Finder for some folders (...
Idea-New PowerToy,Product-File Explorer
low
Major
594,969,511
flutter
VerticalDivider is unusable out of the box
## 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: main.dart ``` import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @overri...
framework,f: material design,a: quality,has reproducible steps,found in release: 3.3,found in release: 3.7,team-design,triaged-design
low
Critical
594,970,013
vscode
Terminal canvas context loss is not handled
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Also please test using the latest insiders build to make sure your issue has not already been...
bug,upstream,upstream-issue-linked,terminal-rendering
low
Critical
594,991,753
react
Bug: Server hydration mistmatch and radio group with defaultChecked
<!-- Please provide a clear and concise description of what the bug is. Include screenshots if needed. Please test using the latest version of the relevant React packages to make sure your issue has not already been fixed. --> When hydrating from the server, whenever there's a mismatch in the initially check...
Type: Bug,Component: DOM,Component: Server Rendering
low
Critical
595,056,524
flutter
CustomScrollView should not scroll when pointer down starts on Sliver App Bar
When using SliverAppBar you can scroll the view by only touching the app bar, that is really weird. Dragging inside SliverAppBar should not affect the scroll of the scroll view. Also it would be interesting to block scrolling also to SliverPersistentHeader when is collapsed. https://dartpad.dartlang.org/7c108022...
c: new feature,framework,f: material design,f: scrolling,a: quality,has reproducible steps,P3,found in release: 3.3,found in release: 3.5,team-design,triaged-design
low
Minor
595,059,784
godot
.obj do not have correct material colors when imported directly . .
**Godot version:** Godot 3.2 . . **OS/device including version:** Windows 10, from Blender 3D . . . **Issue description:** When I import a 100 % white material from Blender, on an .obj, which are nice because they are easy to work with, for static objects, props, it's like the ' 100 % white ' becomes slightly ...
discussion,topic:rendering
low
Critical
595,105,699
rust
Extraneous documentation in src/doc
While exploring rustup's doc functionality I found a bunch of outdated documentation, e.g. `guide-strings.html`. Nearly all of documentation in the top level `src/doc` is out of date, both in terms of content and style, and it doesn't seem like anyone is interested in maintaining them. The generated output is about ~80...
C-cleanup,T-rustdoc
low
Major
595,136,528
godot
Can't access parent's named enum from match statement
**Godot version:** 3.2.1 **OS/device including version:** Arch Linux *(kernel 5.5.13)* **Issue description:** Godot throws an error when I try to access a named enum from a parent inside a `match` statement. If I change to be a classic `if/elif/else` block, it works fine. The error is `built-in:8 - Parse Error...
bug,topic:gdscript
low
Critical
595,138,996
pytorch
[JIT] support list of nn.Module in torchscript
## 🚀 Feature Let torchsciprt support list of nn.Module ## Motivation Many projects (like detectron2) use list of modules instead of nn.ModuleList to avoid complex namespace of model parameters, but currently torchscript does not support this property. To make these projects scriptable, we must replace list of...
triage review,oncall: jit,triaged,enhancement
medium
Major
595,146,488
rust
E0597: `lock` does not live long enough (surprising error, the message could be more helpful)
I tried compiling this code: ```rust fn main() { let lock = std::sync::Mutex::new(10); if let Ok(_) = lock.try_lock() {} } ``` Error: ``` error[E0597]: `lock` does not live long enough --> src/main.rs:3:20 | 3 | if let Ok(_) = lock.try_lock() {} | ^^^^----------- ...
A-borrow-checker,T-compiler,C-bug
low
Critical
595,150,642
pytorch
RuntimeError CUDA error despite CUDA available and GPU supported
Got the following error (on Ubuntu 18.04 with PyTorch 1.14, Nvidia driver version 440.64, CUDA toolkit 10.1, GPU GeForce GTX Titan) despite PyTorch saying CUDA and CUDNN are available: RuntimeError: CUDA error: no kernel image is available for execution on the device Script to reproduce: ``` import torch pri...
module: binaries,module: cuda,module: error checking,triaged
low
Critical
595,159,513
flutter
Cupertino route/transition should block touch events
I think block any touch events during Cupertino transition is reasonable.
platform-ios,framework,a: fidelity,f: cupertino,f: routes,c: proposal,P2,has partial patch,team-design,triaged-design
low
Major
595,163,882
youtube-dl
Evisco link download
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this che...
site-support-request
low
Critical