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
545,878,194
vscode
Provide a way to debug extensions to hint syntax for advanced breakpoints
Right now, when you try to create a hit count breakpoint, you're given this: ![image](https://user-images.githubusercontent.com/2230985/71839627-7c69cb80-3070-11ea-93ef-1cbc2c468ffa.png) And log points like so: ![image](https://user-images.githubusercontent.com/2230985/71839774-cf438300-3070-11ea-98ac-3c2dad8c...
debug,under-discussion
low
Critical
545,909,675
godot
Colored emojis' outlines are broken when defined as a fallback for DynamicFont
**Godot version:** 24281cd **Issue description:** If a `DynamicFont` with `outline` bigger than 0 has colored emojis defined as a fallback font, their outlines will be drawn incorrectly, likely drawing the outlines of the broken characters of the main. **Minimal reproduction project:** [example.zip](https://gi...
bug,confirmed,topic:gui
low
Critical
545,944,422
go
all: simplify standard library examples
Over the last few years, Go standard library has done a great job by improving the examples coverage. However, some of the examples are difficult to read or too comprehensive to be a reference for basic usage. Standard library examples can help more if they were simpler and more copy/paste-able. More comprehensive s...
Documentation,help wanted,NeedsInvestigation
low
Major
545,944,868
pytorch
torch.masked_select out argument can easily be misused, because output shape is dynamically computed
## 🐛 Bug <!-- A clear and concise description of what the bug is. --> Unexpected behavior of `masked_select`, likely due to `out` option should be contiguous but was not clarified in the doc. ## To Reproduce Steps to reproduce the behavior: ```python x, m, z = torch.ones((4,3,2)), torch.zeros((4,3), dtyp...
high priority,triaged,module: numpy,module: safe resize
low
Critical
545,950,893
rust
Expose `abort` function from core
It seems like `core` knows how to abort a program (it has `core::intrinsics::abort`), but only `std` exposes this functionality. In some rare cases, a potentially unwinding panic might lead to unsoundness, where an abort would do a better job. A good example is [the implementation of `Arc`](https://github.com/rust-l...
T-lang,T-libs-api,C-feature-request,WG-embedded
low
Major
545,981,567
TypeScript
Weird error message for mixed exported/non-exported declarations under `isolatedModules`
```ts // @isolatedModules: true export function bar() { } interface bar { } export { bar as MyThing }; ``` **Expected**: I actually don't know 😄. I think it should just work though. **Actual**: Unclear error message In nightlies (3.8+), the message is currently ``` Re-exporting a type when ...
Suggestion,Needs Proposal
low
Critical
545,983,573
node
rmdirsync doesn't throw error when symlinked path is passed as argument in windows node 12
I have written a simple code to pin down the issue. Env: Windows Node version: 12 ```js const fs = require('fs'); fs.mkdirSync("tmp"); fs.symlinkSync(".", "tmp/out"); console.log(`fs.existSync(tmp/out) : ${fs.existsSync('tmp/out')}`); fs.rmdirSync('tmp/out'); ``` Execution in CI: Node 12 ```sh Build st...
fs
low
Critical
546,005,120
node
Provide built-in implementations of module linker, initializeImportMeta, importModuleDynamically
**Is your feature request related to a problem? Please describe.** When using vm.SourceTextModule we have to implement a linker, initializeImportMeta, and importModuleDynamically, even if we just want the default behavior of built-in module support. There are many subtle ways to get that wrong. **Describe the sol...
vm
low
Major
546,008,976
rust
Mutable borrow of field with autoref vs ref mut
I've been playing around with a singly-linked-list. It turns out that this method, which I had hoped might compile with help of non-lexical-lifetimes, does not compile: struct Recursive { child: Option<Box<Recursive>> } impl Recursive { fn mut_back(&mut self) -> &mut Self { ...
A-lifetimes,T-compiler,A-NLL,NLL-complete,NLL-polonius
low
Critical
546,014,369
vscode
Copying text from a Markdown document inserts non-breaking spaces instead of regular spaces
Issue Type: <b>Bug</b> 1. Install VSCode on an entirely new machine that has never had it before (this is to show that extensions and settings have no impact on this behaviour). 2. Create a new Markdown document with several words in it, separated by regular spaces. 3. Copy the contents of the Markdown document ...
windows,under-discussion,editor-clipboard
low
Critical
546,031,879
TypeScript
JSDoc property name is not parsed as expected when non-alphanumeric characters are present and intellisense not showing properties
*TS Template added by @mjbvz* **TypeScript Version**: 3.8.0-dev.20200104 **Search terms**: - jsdoc / jsdocs - completionInfo --- <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Also pleas...
Suggestion,Needs Proposal
low
Minor
546,036,777
pytorch
Compile libtorch by source code failed.
Hi,guys, i am a newer for pytorch and libtorch, and i want to compile the libtorch by source official code,but there are some problem happened.I compile the source official code by this(https://github.com/pytorch/pytorch/blob/master/docs/libtorch.rst) guide directly(i don't compile the pytorch),but the problem happene...
module: binaries,module: cpp,triaged
low
Critical
546,053,528
go
net: udp listener should use received ip address for sending
<!-- 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.12.1 linux/amd64 </pre> ### Does this issue reprodu...
NeedsInvestigation
low
Critical
546,083,478
PowerToys
Quick Display adjustment PowerToy
End users are asking for a tool to quickly toggle settings of their monitors. Via taskbar, this should be a quick, easy thing. Proposed spot, context menu inside PowerToys's systray icon Edit from @Aaron-Junker: Also add shortcuts to do these actions. **Features** - Adjust Resolution per monitor (#27) - set...
Idea-New PowerToy,Product-Display management
high
Critical
546,142,082
pytorch
`index_add_` with multidimensional index
## 🚀 Feature Allow multidimensional index in `index_add_` ## Motivation `index_add_` is similar to `scatter_add_` with the index applied on RHS rather than LHS. Unfortunately, currently `scatter_add_` allows multidimensional index while `index_add_` allows 1D index only. Allowing multidimensional index can ma...
triaged,module: advanced indexing,function request
low
Major
546,160,271
TypeScript
Returned tuples don't match compatible types when using function union types
The first error is especially odd. **TypeScript Version:** 3.7.x-dev.20200104 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** **Code** ```ts type C1 = (a: 1) => [0]; type C2 = (a: 2) => [number]; type C3 = (a: 3) => undefined; declare...
Bug
low
Critical
546,224,521
youtube-dl
MTV.it
<!-- ###################################################################### 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
546,253,814
terminal
Incorrect Font Fallback Behavior (we fall back to Segoe UI sometimes!)
_notes from @DHowett_ - we're also falling back to `Segoe UI Symbol` when box-drawing glyphs don't exist. We should have a smart internal font fallback table that we consult _even when we allow customization in #2664._ <!-- This bug tracker is monitored by Windows Terminal development team and other technical folks...
Area-Rendering,Issue-Bug,Product-Terminal,Priority-2
low
Critical
546,273,923
go
x/crypto/blake2s: add 224bit variant
<!-- 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`)? irrelevant ### Does this issue reproduce with the latest release? yes ### What opera...
NeedsInvestigation,FeatureRequest
low
Critical
546,291,030
flutter
Inconsistent behavior of RawKeyboardListener on different devices/Android versions
I am trying to get my flutter app to react to events generated when media keys are pressed on a little bluetooth keyboard paired with my android device. Here's the code snippet that builds the widget I use to evaluate the scenario. ![raw-keyboard-listener-code](https://user-images.githubusercontent.com/1816194/71...
a: text input,platform-android,framework,engine,P2,team-design,triaged-design
low
Major
546,332,298
TypeScript
Suggestion: optional globals
<!-- 🚨 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
546,344,574
terminal
Polish Commandline Help MessageBox to be at least like, but at best better than, `msiexec /?`
Follow-up task from #4023 ## actual ![image](https://user-images.githubusercontent.com/18356694/71906238-4d665f00-312f-11ea-98c4-24333c9417cc.png) ## expected ![image](https://user-images.githubusercontent.com/18356694/71906281-5f480200-312f-11ea-8e00-a6576163364c.png) (ideally with monospace text too) ...
Help Wanted,Area-UserInterface,Product-Terminal,Issue-Task,Priority-3,Area-Commandline,good first issue
low
Major
546,388,290
vscode
API to programatically expand/collapse tree view
### Request An API on TreeView which allows extensions to expand or collapse their contributed views within the view container. That is, expand/collapse the view itself, not the items in the view. ### Example Use Case If I have a view container with multiple contributed views, not all views may be relevant all...
feature-request,api,tree-views
medium
Critical
546,397,780
rust
Implementation of std::net::TcpListener::shutdown
Is there any reason why it does not exist yet besides putting in the effort of writing it?
T-libs-api,C-feature-request
low
Major
546,406,254
svelte
<input> elements in an {#if} that depends on the input value do not fire on:input before they disappear
**Describe the bug** When you create an input that can be removed because of an if clause around it that depends on the input value, the last `on:input` event of the <input> is not fired because it seems to disappear too quickly. **Logs** ![Console log showing only three outputs](https://user-images.githubusercont...
feature request,temp-stale,documentation
low
Critical
546,406,535
go
all: stop using non-libc system calls on OpenBSD
Upcoming changes to the OpenBSD kernel will prevent system calls from being made unless they are coming from libc.so (with some exceptions, for example, a static binary). There are also likely to be changes to the APIs used for system calls. As such, the Go runtime (and other packages) need to stop using direct syscall...
help wanted,OS-OpenBSD,NeedsFix
high
Critical
546,409,387
go
net: error message for ListenIP is confusing
# net.ListenIP The documentation of `net.ListenIP` says: ``` The network must be an IP network name; see func Dial for details. ``` However using one of the documented IP network names (like "ip" or "ip4") causes the function to return an error on Linux; e.g. `unknown network ip`. According to #7439: ``` ...
Documentation,NeedsInvestigation
low
Critical
546,417,762
pytorch
I'm not able to build pytorch with tensorrt (current master)
## Issue description I'm not able to build pytorch with tensorrt (current master) ``` In file included from ../caffe2/contrib/tensorrt/tensorrt_tranformer.cc:16:0: ../caffe2/opt/backend_cutting.h:5:10: fatal error: nomnigraph/Representations/NeuralNet.h: No such file or directory #include "nomnigraph/Representati...
module: build,triaged
low
Critical
546,426,016
flutter
Consider copying MultiChildRenderObjectWidget.children
One of the problems with the Flutter model is that developers can accidentally or intentionally mutate the Widget tree via mutating MultiChildRenderObjectWidget.children. See https://github.com/dart-lang/sdk/issues/27755. I think there might be a performance reason to copy the children. It depends on how often the ...
framework,c: performance,c: proposal,perf: speed,P2,team-framework,triaged-framework
low
Critical
546,443,548
vscode
Ability to drag and drop breakpoints
Issue Type: <b>Feature Request</b> The ability to move breakpoints, especially those that are conditional, would be considerably easier than having to delete a breakpoint and then recreate it with the same condition information on another line. Drag and drop functionality would work pretty well here I imagine. VS...
feature-request,debug
medium
Critical
546,446,233
rust
ICE in unsized fn params: tried to statically allocate unsized place
The following ICE's in nightly: ```Rust #![feature(unsized_fn_params)] fn main() { let f: fn([u8]) = |_| {}; let slice: Box<[u8]> = Box::new([1; 8]); f(*slice); } ``` <details> <summary>Backtrace:</summary> ``` Compiling playground v0.0.1 (/playground) thread 'rustc' panicked...
A-codegen,T-compiler,C-bug,requires-nightly,F-unsized_fn_params
low
Critical
546,465,702
flutter
Flutter Inspect Widget tool does not work well with overlays
When using overlays, like Dialogs, Drawers, etc, the Select Widget mode of the inspector selects the underlying widget and not the actual widget clicked. This has always been the case, at least since Public Beta 3. Here's a gif of it in action. As you can see, it highlighted the underlying `BottomNavigationBarItem` i...
framework,f: inspector,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-framework,triaged-framework
low
Major
546,466,343
TypeScript
Allow .d.ts files to represent anonymous class expressions with `private` members
Re-opening of #30355 That other issue is labeled "working as intended" so instead of this feature being a bug report, it is a feature request.
Suggestion,Awaiting More Feedback
medium
Critical
546,478,055
flutter
Add orElse or a fallback to Navigator.popUntil()
<!-- Thank you for using Flutter! If you are looking for support, please check out our documentation or consider asking a question on Stack Overflow: * https://flutter.dev/ * https://api.flutter.dev/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you hav...
c: new feature,framework,f: routes,c: proposal,P3,team-framework,triaged-framework
low
Critical
546,487,415
go
cmd/go: reject vN.*.*+incompatible as a version if vN/go.mod exists
(From a [golang-nuts thread](https://groups.google.com/d/topic/golang-nuts/eRt5gD5pIhQ/discussion).) ### What version of Go are you using (`go version`)? <pre> ~$ go version go version devel +7d98da8d31 Tue Jan 7 19:53:19 2020 +0000 linux/amd64 </pre> ### What did you do? Run `go get` in module mode, req...
NeedsDecision,modules
low
Critical
546,536,836
go
cmd/compile: manually CSE |-combined rules?
We know that rewrite rules containing `|` have a lot of shared subexpressions. Instead of expanding and generating one rewrite rule per expanded rule, we could instead loop over all op tuples, much as CL 213703 proposes we do for commutative ops. Note that this only works for |-expansions that aren't for the top level ...
NeedsInvestigation,compiler/runtime
low
Minor
546,574,646
rust
Incompatible type error should explain when types come from default type parameters
```rust trait Trait<T = ()> { fn foo() -> T; } struct S; impl Trait for S { fn foo() -> u32 { 0 } } ``` produces: ``` error[E0053]: method `foo` has an incompatible type for trait --> src/lib.rs:28:17 | 22 | fn foo() -> T; | - type in trait ... 28 | fn foo() ...
C-enhancement,A-diagnostics,T-compiler,D-confusing
low
Critical
546,585,039
TypeScript
Either understand const arrow assertions or give better errors on them
As mentioned by @threehams in https://github.com/microsoft/TypeScript/issues/35838#issuecomment-569832017, people are pretty confused about the rules for assertion functions, and I don't blame them. For example ```ts const assert = (blah: unknown): asserts blah => { throw "hai"; } let x: string | undefined;; as...
Suggestion,In Discussion,Domain: Error Messages,Experience Enhancement,Rescheduled
medium
Critical
546,616,354
pytorch
RPC and dist_autograd should respect no_grad mode
It might be helpful to allow using RPCs to do some non-autograd actions within an autograd context. For example, it will be useful to support the following use case: ```python with dist_autograd.context(): # this RPC should add send/recv functions rpc_sync(dst, some_func, args=(some_tensor)) with t...
feature,triaged,module: rpc
low
Minor
546,623,569
opencv
Are there plans to support .NET Core?
RT
feature,priority: low
low
Minor
546,624,024
flutter
Difficulties when implementing custom text layout for vertical Mongolian script
Since issue #35994 was closed without being solved, this issue an attempt to follow the [advice](https://github.com/flutter/flutter/issues/35994#issuecomment-571277992) from @Hixie to open a specific use case example and describe the bugs that prevent it from being implemented. ## What I am trying to do Take Mong...
c: new feature,framework,engine,a: internationalization,a: typography,c: proposal,P2,team-engine,triaged-engine
low
Critical
546,625,306
go
encoding/csv: writer.UseCRLF will change \n to \r\n in data field
<!-- 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 reprodu...
NeedsInvestigation
low
Critical
546,649,524
vue-element-admin
设置了 mock ,但是请求的 url 上没有包含 mock 这个字符串
## Question(提问) <!-- 提问之前,请确定你已经过自己的努力,尝试解决过这个问题。 若是代码相关问题,请不要只截图,请提供在线 demo,以便节约彼此的时间。 Before asking a question, please make sure that you have tried your best to solve this problem. If it's a code-related issue, please don't just take screenshots. Please provide an online demo to save each ot...
enhancement :star:
low
Minor
546,656,731
flutter
Use a system default font on flutter
## Use case Flutter apps need to use a system font for displaying a plain text. I guess I can use FontLoader to use a default system font on Android with a plugin but it would be really great to have this feature supported by engine. Samsung, LG or other vendors using Android has a feature that users can change a s...
c: new feature,framework,f: material design,a: typography,customer: crowd,c: proposal,dependency: android,P2,team-design,triaged-design
low
Critical
546,664,552
excalidraw
Hint: Press shift to move elements faster with keyboard
When we move an element with keyboard, it is slow. Providing some way to speed it will be useful for power users.
enhancement
low
Major
546,677,361
angular
createAngularJSTestingModule() breaks tests when used multiple times across unrelated spec files
# 🐞 bug report ### Affected versions This bug is present since the very beginning (March, 22th, 2019) when `createAngularJSTestingModule()` was first added to `@angular/upgrade/static/testing` (there have only been two commits in that file, `angular\packages\upgrade\static\testing\src\create_angularjs_testing_modu...
type: bug/fix,workaround1: obvious,area: upgrade,state: confirmed,P5
low
Critical
546,713,297
rust
Spurious and unrelated error when using a macro variable (expr)
After some more consideration I'm starting to think this is an issue with rust's macro system rather than any of the used macros; see https://github.com/rust-lang/futures-rs/issues/2026. Note the `($should_succeed:expr)`. If `$should_succeed` is used at all in the block starting at line 85, I get an error that `id` ...
A-macros,T-compiler,C-bug
low
Critical
546,736,765
pytorch
Support sparse inputs for torch.block_diag
## 🚀 Feature The blkdiag method is defined clearly in https://github.com/pytorch/pytorch/issues/31932 https://github.com/pytorch/pytorch/issues/31932 suggests blkdiag should create a dense Tensor, which may also be helpful in some case. However, considering graph neural networks, we always want a sparse block...
module: sparse,triaged,module: tensor creation,function request
low
Major
546,740,715
node
Inspector does not initialize when using CreateEnvironment
Inspector does not initialize when using CreateEnvironment. So occur crash in the code below. (inspector_agent()->client_ is null) > https://github.com/nodejs/node/blob/1a552f614b4ec2b9faf0bf932ad4e6ef4fdcaf01/src/node_worker.cc#L79-L80 > https://github.com/nodejs/node/blob/3e79c004fdb93d01618fd90f0df934ac12c62353/s...
embedding
low
Critical
546,743,004
pytorch
error when building pytorch 1.1.0 from source
## 🐛 Bug When building pytorch 1.1.0 from source with explicitly setting `-D_GLIBCXX_USE_CXX11_ABI=0`, I met such error: ``` pytorch/build/lib/libcaffe2_gpu.so: undefined reference to `gloo::getCudaPCIBusID(int)' pytorch/build/lib/libcaffe2_gpu.so: undefined reference to `gloo::EnforceNotMet::EnforceNotMet(char co...
module: build,triaged
low
Critical
546,777,198
flutter
Window geometry is incorrect after switching displays
When a flutter app gets moved from a hidpi display to a normal one, the window geometry can get messed up so that the window contents are offset vertically by the difference between the window height, and twice the window height. Or something like that - it's weird. Here is a video that makes the issue clear: [fl...
e: device-specific,framework,engine,platform-mac,c: rendering,a: desktop,P2,team-macos,triaged-macos
low
Critical
546,781,113
godot
ScollContainer's ScrollBar doesn't interact other than mouse.
**Godot version:** 3.1.2 **OS/device including version:** Windows 10 **Issue description:** VScrollBarr doesn't get focus when the button inside ScrollContainer/VBoxContainer is focused and action "ui_right" is pressed. ScrollContainer.get_v_scrollbar( ).value and max_value doesn't represent position or range...
bug,topic:core,confirmed
low
Critical
546,783,241
flutter
driver.tap based on x,y co-ordinates
How to do driver.tap based on x,y coordinates on the device
a: tests,c: new feature,framework,d: api docs,t: flutter driver,P3,team-framework,triaged-framework
low
Major
546,796,831
godot
GraphEdit doesn't use the closest ports when dragging
**Godot version:** 8b5992f6658a125f63424a687e15e75ccd36906c **Issue description:** When dragging out from a GraphNode it doesn't use the closest port. **Steps to reproduce:** Put two GraphNode ports close to another and try dragging out from them until the issue happens. This can be done in VisualScript...
bug,confirmed,usability,topic:gui
low
Minor
546,829,224
opencv
dnn(permute): reduce permute to reshape (or transpose) whenever possible and work inplace
##### System information (version) - OpenCV => 4.2.0 - Operating System / Platform => Ubuntu 18.04 - Compiler => GCC 7.4 ##### Detailed description Vast majority of permute operations can be reduced to a reshape or a 2d-transpose. The reshape operation can be skipped entirely and the transpose operation can be...
optimization,feature,category: dnn
low
Major
546,877,221
rust
Add ability to ignore tests at runtime.
For medium–large scale projects, or projects that have a lot of integrations with third party services. It would nice to be able to ignore tests based on the environment the tests are being run in. One example would be to run tests if an environment variable is present. You can workaround this with something like th...
T-lang,T-dev-tools,C-feature-request,A-libtest
medium
Critical
546,957,258
pytorch
Function request: logerfc, logerfcx special functions
## 🚀 Feature Implement the `erfcx(x)` special function, which computes `exp(x^2) * erfc(x)` in a numerically stable way. Also for convenience, add `logerfc(x) = log(erfc(x))` and `logerfcx(x) = log(erfcx(x))`. `erfcx` is available in many numerical packages, such as [Matlab](https://www.mathworks.com/help/matlab...
module: numerical-stability,triaged,module: numpy,function request,module: special
low
Major
546,976,888
flutter
[web] Canvas.saveLayer does not work in HTML mode
```dart canvas.drawRect(...); canvas.saveLayer(null, Paint()..blendMode = BlendMode.multiply); canvas.drawRect(...); canvas.restore(); ``` This works fine when running Flutter on Android and looks like this: [![Screen capture][1]][1] When running the same code in Flutter Web, it looks like this (`saveLa...
engine,platform-web,c: rendering,e: web_html,has reproducible steps,P3,team-web,triaged-web,found in release: 3.13,found in release: 3.17
medium
Major
546,985,671
rust
`Pin` is unsound due to transitive effects of `CoerceUnsized`
Split out from #66544. It is possible to exploit `Pin` on nightly Rust (but not stable) by creating smart pointers that implement `CoerceUnsized` but have strange behavior. See [the dedicated internals thread](https://internals.rust-lang.org/t/the-pin-unsoundness-and-coerceunsized/11593) for more details -- also, pleas...
P-medium,T-lang,I-unsound,C-bug,E-needs-mcve,requires-nightly,F-coerce_unsized
low
Major
547,010,743
godot
Shadows are bugged with tiles in tilemaps
**Godot version:** 3.1.2 stable **OS:** RebornOS (kernel version: Linux 5.4.2-arch1-1 x86_64) **Issue description:** Look at picture ![DeepinScreenshot_20200108183708](https://user-images.githubusercontent.com/45467622/72001500-e4bdd600-3245-11ea-8891-249b44bfcbce.png) I tried to google it but nothing **Steps to r...
bug,topic:rendering,topic:2d
low
Critical
547,034,115
pytorch
JIT tests are linked directly into libtorch and register operators even when unused
The two custom classes defined in [test/cpp/jit/test_custom_class.cpp](https://github.com/pytorch/pytorch/blob/7f723cbd8a53c85722af14d8749559de1992cd9b/test/cpp/jit/test_custom_class.cpp#L49-L61) will register new jit operators as soon as the library is loaded. This lead to different operators being registered if we...
oncall: jit,triaged
low
Minor
547,034,622
go
proposal: text/template: revise execution model
Go's template packages (`text/template`, `html/template`) do in general work really well. But there are some issues that are hard/impossible to work around. In the current implementation, a `Template` struct is mirrored in both packages, and while there is some separation of parsing and execution to allow for concur...
v2,Proposal
medium
Critical
547,041,392
PowerToys
touch/update timestamp for Windows-GUI in file-context-menu
PowerToy-suggestion scenario: I move a bunch of files from folder A to folder B (which contains several hundred files). From my perspective they're "new" in folder B. And ordering my files by "date modified" is an important part of my organization. However "date modified" does not update, if files or folders me...
Idea-New PowerToy
low
Major
547,046,636
flutter
Consider not setting overflow:hidden on text with no max lines
We currently set `overflow:hidden` on all `<p>`, but only those with maxlines need it. In general, clipping is considered an expensive operation, so avoiding it could have performance benefits. It's hard to tell how much cost this incurs in our case, but filing it anyway, so we can measure and fix it, or just blindly f...
engine,c: performance,platform-web,c: proposal,perf: speed,e: web_html,P3,team-web,triaged-web
low
Major
547,059,765
kubernetes
Improve CRD openapi serving speed
CustomResourcePublishOpenAPI e2e tests are [flaky](https://github.com/kubernetes/kubernetes/issues/86418) because the time for a given CRD change to get reflected in the openapi spec exceeds the 30s timeout. Here is a analysis for the worst case-- assuming three CRD changes were made at the same time (change A&B by...
priority/important-soon,sig/scalability,sig/api-machinery,kind/feature,area/custom-resources,lifecycle/frozen
low
Major
547,078,288
godot
Array out of bounds in libtheora
**Godot version:** Godot 3.2 beta 5 **OS/device including version:** Ubuntu 19.10 **Issue description:** Backtrace ``` thirdparty/libtheora/state.c:327:37: runtime error: left shift of 1 by 63 places cannot be represented in type 'long int' thirdparty/libtheora/state.c:576:19: runtime error: left shift of negat...
bug,topic:thirdparty
low
Critical
547,105,280
TypeScript
Generator prototype ignored
**TypeScript Version:** 3.8.0-dev.20200107 **Search Terms:** generator, iterator, prototype, inherit **Code** ```ts function* gen() { while (true) { yield "something"; } } gen.prototype.test = () => { console.log("OK"); }; gen().test(); ``` **Expected behavior:** No errors...
Suggestion,Awaiting More Feedback
low
Critical
547,108,971
terminal
Remove usages of old safe math
There are approximately 79 uses of old safe math. (a.k.a. the `LongAdd`, `ShortAdd`, and friends from `intsafe.h`). This task represents removing them and transitioning them to an appropriate safe/saturating math function from the chromium safe math library introduced in #4144. After removing usages of the old sa...
Product-Conhost,Help Wanted,Product-Conpty,Issue-Task,Area-CodeHealth
low
Minor
547,122,006
kubernetes
Remove VerifyVolumeAttached for CSI Plugin
/cleanup /assign VerifyVolumeAttach functionality for CSI is handled by default by the [csi-attacher v2.1+](https://github.com/kubernetes-csi/external-attacher/blob/v2.1.0/CHANGELOG-2.1.md). The in-tree verification is a no-op since it just looks at the `VolumeAttachment.Status.Attached` field which is not an accur...
sig/storage,kind/feature,lifecycle/frozen
low
Minor
547,124,336
flutter
InkWell.onLongPress cancels ripple animation
I am trying to build a button that increments a number when the user taps on it, then continues to increment that number every `x` milliseconds while the user continues to long press the button. If I try out this code sample, it behaves as expected. The number is incremented one time, and the ripple effect works pro...
framework,f: material design,f: gestures,customer: crowd,has reproducible steps,found in release: 3.3,customer: flex,found in release: 3.7,team-design,triaged-design
low
Major
547,142,101
go
crypto/tls: Client Side TLS Authentication fails for certs with long fields
### What version of Go are you using (`go version`)? <pre> go version go1.13.4 linux/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><br><pre> GO11...
NeedsInvestigation
low
Critical
547,174,150
go
x/playground: out of memory crashing
I was looking at the logs for the playground and see lots of crashes like: ``` A 2020-01-08T22:59:11Z fatal error: runtime: out of memory A 2020-01-08T22:59:11Z A 2020-01-08T22:59:11Z runtime stack: A 2020-01-08T22:59:11Z runtime.throw(0xbc60ed, 0x16) A 2020-01-08T22:59:11Z /usr/local/go/src/runti...
NeedsInvestigation
low
Critical
547,191,654
go
cmd/go: include source dir in cache key when ${SRCDIR} is present in cgo header
What I did: * have a project including cgo headers using `${SRCDIR}` * move that project to a new directory * build Result: `ld: warning: directory not found for option '-L/Users/josh/...redacted...` The redacted directory is the previous directory pointed to by the `${SRCDIR}` directive in the cgo source...
NeedsFix,GoCommand
low
Critical
547,200,280
tensorflow
Define variable shape at restore/load, allow direct restoring of variables prior to calling __build__ (non-lazy variable loading from checkpoint)
<em>Please make sure that this is a feature request. As per our [GitHub Policy](https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md), we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:feature_template</em> **System information** - TensorFlo...
stat:awaiting tensorflower,type:feature,comp:ops
medium
Critical
547,239,758
pytorch
Reuse spawned subprocesses in RPC tests
## 🚀 Enhancement Investigating the possibility to reuse spawned subprocesses for `test_rpc_spawn.py` would be super helpful. The current test suite takes > 5 mins to complete, while the `test_rpc_fork` that we removed in https://github.com/pytorch/pytorch/pull/29827 completed much faster. I'm thus assuming that the r...
triaged,better-engineering,module: rpc
low
Minor
547,250,603
flutter
Widget testing is failed when tapping outside of the display area
<!-- Thank you for using Flutter! If you are looking for support, please check out our documentation or consider asking a question on Stack Overflow: * https://flutter.dev/ * https://api.flutter.dev/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you hav...
a: tests,framework,f: gestures,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-framework,triaged-framework
low
Critical
547,256,240
flutter
When popping a route, controls should reacquire focus without opening the keyboard or scrolling to make visible.
I have number of pages and all of them are kind of forms with some `TextFields`. In each page, I am entering some data in `TextField` and then moving to the next page either by clicking next button directly (Key Board is Visible) or by clicking back button to dismiss keyboard then clicking next button. After the n...
a: text input,framework,f: routes,f: focus,has reproducible steps,P2,team-framework,triaged-framework,found in release: 3.19,found in release: 3.20
low
Critical
547,274,413
flutter
Hero Animations with Popup Route
## Steps to Reproduce Created a custom page route to act / create a bottom sheet, doing this leads to Hero widget not working at all. Created a dartPad example to showoff the problem ==> https://dartpad.dev/e79bd9adf6845857e0829ec6fe5a4a55 **Target Platform:** All ## Logs <!-- Finally, paste the ou...
c: new feature,framework,a: animation,f: routes,P3,team-framework,triaged-framework
low
Major
547,432,807
rust
TcpStream bind before connect
We now have `TcpStream::connect` and `TcpStream::connect_timeout` to create a `TcpStream`. But there is no option for us to do before calling `connect()`, in particular, `bind()` to the source address. Proposal: ```rust fn connect_with<A>(bind_addr: &SocketAddr, A: addr) -> io::Result<TcpStream> where A:...
T-libs-api,C-feature-request
low
Major
547,471,314
godot
LineEdit last characters disappear with text align=right and using a Dynamic font with char_space>0
**Godot version:** Godot 3.1 release / 3.2-beta 5 **OS/device including version:** Windows 10 / GTX 1060 **Issue description:** I have used a DynamicFont with char_space=2 in a LineEdit. If you set the alignment to left, center, or fill everything works fine, but after changing the aligment of the LineEdit ...
bug,confirmed,topic:gui
low
Critical
547,481,140
TypeScript
Narrow number literal types with comparison
## Search Terms constant number literals narrowing comparison ## Suggestion Narrow number literal type not only with (non)equality, but also with less-than etc. This request is only about throwing away non-matching literals, and not about full-blown `number` narrowing. ## Use Cases This could be used to...
Suggestion,In Discussion
low
Critical
547,545,186
vscode
Git - 'Revert selected ranges' should work on individual lines, not hunks
- VS Code version: Code 1.41.1 (26076a4de974ead31f97692a0d32f90d735645c0, 2019-12-18T15:04:31.999Z) - OS version: Linux x64 4.15.0-72-generic (Ubuntu 16) - Does this issue occur when all extensions are disabled?: Yes `Revert selected ranges` reverts any hunks in which there is a cursor. This is annoying when one...
bug,help wanted,git
low
Major
547,569,026
PowerToys
The ProjectTemplate doesn't show up when using the search box in VS
It's also missing the required tags: ``` <LanguageTag>C++</LanguageTag> <PlatformTag>windows</PlatformTag> <ProjectTypeTag>extension</ProjectTypeTag> ```
Issue-Bug,Area-Project Template
low
Major
547,609,834
pytorch
Trying to disable cuda to run torch on OSX run it on CPU
``` anaconda3/envs/meshcnn/lib/python3.6/site-packages/torch/cuda/__init__.py", line 95, in _check_driver raise AssertionError("Torch not compiled with CUDA enabled") AssertionError: Torch not compiled with CUDA enabled ``` Seems this is where I need to tell it to use the CPU but kinda stuck in this file ...
module: build,module: cuda,triaged
low
Critical
547,614,218
rust
Unhelpful highlighting in type inference error
MWE of a type inference error that came up in a real project: https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=cd3198d1a30439a01ca2cfa3a78b1124 The user should fix this error by adding an explicit type for the {integer} literal `1` (i.e. 1u32 or 1u64), since these could do completely differen...
C-enhancement,A-diagnostics,T-compiler,A-inference,D-confusing
low
Critical
547,622,043
flutter
Support data: URIs in Image.network
## Use case For testing purposes, we produce data samples which contain data URIs for pre-loaded image URLs. This ensures that the tests are fast and hermetic. We'd like to transparently pass these data URIs to Image.network as this means we don't have to modify the production code just for testing purposes (and ...
a: tests,c: new feature,framework,customer: dream (g3),a: images,P3,team-framework,triaged-framework
low
Major
547,634,123
rust
Type inference can't resolve type of output of `dyn Future` inside of `impl Fn` inside of Vec
This code ([Playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=2fb9d4046178e9fd1d5f61c2ec80b034)) ```rust fn get_closure_vec(length: usize) -> Vec<impl Fn() -> Box<dyn std::future::Future<Output = usize>>> { vec![|| Box::new(async { 5 }) as Box<_>; length] } ``` gives error `...
T-lang,T-compiler,A-inference,A-impl-trait,C-bug
low
Critical
547,635,684
rust
`repr(C)` is not respected for enums with uninhabited variants
Uninhabited `repr(C)` enums are size zero, _not_ the size of their discriminant. [For instance](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=ab603e5a7bb2d0894ea22595bfdf599e): ```rust enum Never {} #[repr(C, u64)] enum E { _X(Never), _Y(Never), } fn main (){ use cor...
T-compiler,C-bug,T-opsem,A-repr
low
Critical
547,642,648
svelte
Portal in examples section
Can we add this Portal repl in the examples section? https://github.com/sveltejs/svelte/issues/3088#issuecomment-505785516 ```svelte <script> // src/components/Portal.svelte import { onMount, onDestroy } from 'svelte' let ref let portal onMount(() => { portal = document.createElement('div') portal.c...
temp-stale,documentation
low
Major
547,642,653
godot
`ResourceSaver.save` error in tool script: `get_multiple_md5: Condition ' !f ' is true.`
**Godot version:** Godot Engine v3.1.2.stable.official **OS/device including version:** Mac OS 10.14.6 **Issue description:** Usage of `ResourceSaver.save(name, texture)` produce sometime the following error : ` ERROR: get_multiple_md5: Condition ' !f ' is true. Continuing..: At: core/os/file_acces...
bug,topic:core,confirmed,crash
low
Critical
547,668,770
terminal
Investigate independent input source for Swap Chain Panel
While reading some background documentation on how this whole co* stuff worked, I noticed that `SwapChainPanel` apparently has a provision to let background threads potentially mess with the chain instead of having to jump to the UI thread to do so: https://docs.microsoft.com/en-us/uwp/api/windows.ui.xaml.controls.s...
Help Wanted,Area-Rendering,Product-Terminal,Issue-Task
low
Minor
547,674,602
opencv
CV_Assert does not properly use global namespace lookups
If a user does something like this: ```c++ namespace X { namespace cv { auto my_function(::cv::InputArray img) -> ::cv::Mat_<uchar> { CV_Assert(img.channels() == 3); } } } ``` , the code will fail to compile with failed lookup of `cv::Error`. ```bash error: no member named 'Error' in namespace 'X::...
bug,priority: low,category: build/install
low
Critical
547,686,231
flutter
PaginatedDataTable footer likely won't handle text zoom correctly
As pointed out by @Hixie [here](https://github.com/flutter/flutter/pull/47555/files/b3deb9139d0df48a7df442afcf03c94dedb3b487#diff-243d50d685c9399394efa4693f2ac703R488), the footer for a `PaginatedDataTable` likely won't handle text zoom correctly.
framework,f: material design,team-design,triaged-design
low
Minor
547,693,576
go
x/sys/windows: Some types should be available for non-Windows GOOS targets
<!-- 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 darwin/amd64 </pre> ### Does this issue reproduc...
OS-Windows,NeedsDecision,compiler/runtime
medium
Critical
547,708,367
pytorch
gradients inside gradient checkpoint
## 🚀 Feature allowing the use of `torch.autorgrad.grad` and `loss.backward` inside `torch.utils.checkpoint.checkpoint` ## Motivation Enclosing the entire training steps inside a checkpoint could improve significantly the memory cost for the gradient computation in large scale hyperparameter optimization (HO) and...
module: checkpoint,module: autograd,triaged,enhancement
low
Minor
547,722,501
godot
Using `discard` in a shader has different outcome depending on where it is placed
Godot 3.2 beta5 Windows 10 64 bits OpenGL ES 3.0 Renderer: GeForce GTX 1060 6GB/PCIe/SSE2 When `discard` is used to fade opaque objects, the result is either correct or noisy depending on where the `discard` is placed. I thought it did not matter because the result is not getting rendered, but apparently it still ...
bug,topic:rendering,confirmed
low
Critical
547,739,985
kubernetes
DeletionTimestamp set after grace period is respected does not include grace period time
Dear Kubernetes-Team: I ran an experiment with an application that does not exit after Kubelet sends an inital SIGTERM signal. The specified grace-period is respected and the pod is deleted after the grace period finishes. The deletionTimestamp on the inital delete event seems to include the grace-period, but th...
kind/bug,priority/backlog,sig/node,lifecycle/frozen,triage/accepted
medium
Critical
547,746,512
flutter
Consider changing the Color.lerp implementation to more naturally handle transparency
Simply run with dart pad and press the FAB button. I'm not show is AnimatedContainer problem or SKIA colour rendering problem. ``` dart import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return...
engine,a: animation,c: API break,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-engine,triaged-engine
low
Critical
547,774,564
terminal
Add more `CommandlineTest` tests for `wt.exe` commandlines
Test excessively long text. Test empty text. Test text with ridiculous Unicode points in it like RTL/LTR/ZWJ/BOM. Test with invalid Unicode characters like the 0x80 0xc0 version of null. _Originally posted by @miniksa in https://github.com/microsoft/terminal/pull/4023_
Help Wanted,Product-Terminal,Issue-Task,Area-CodeHealth
low
Minor
547,774,908
terminal
Make a fuzzer for the `wt.exe` commandlines
We should probably make a fuzzer for this. _Originally posted by @miniksa in https://github.com/microsoft/terminal/pull/4023_
Help Wanted,Product-Terminal,Issue-Task,Area-CodeHealth
low
Minor