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
686,526,843
go
x/pkgsite: pre-load docker images for CI
We should pre-load docker images for CI, so that they don't timeout. Example: https://source.cloud.google.com/results/invocations/c1541d77-7aba-4344-983b-8ea400cad638/targets/golang%2Fpkgsite%2Fgcp_ubuntu%2Fpresubmit/log /cc @findleyr
Builders,NeedsInvestigation,pkgsite
low
Minor
686,527,200
material-ui
[Localization] Add test cases
## Summary πŸ’‘ Recently with https://github.com/mui-org/material-ui/pull/22293 I broke the locales, but no tests caught this. We should cover the localization with tests, so this won't happen again.
test,ready to take
low
Major
686,532,512
go
cmd/objdump: can't read from a pipe
`cmd/internal/objfile.Open` requires that the passed file is seekable, which prevents using a pipe to pass in an object to analyze. e.g., ```bash $ cat ../bin/go | go tool objdump /dev/stdin objdump: open /dev/stdin: unrecognized object file ``` On the other hand, connecting the file directly does work: ...
NeedsFix,compiler/runtime
low
Critical
686,551,686
rust
Should there be a `Once::try_call_once`
I wonder if `Once` should have a `try_call_once` method for failable initialization, which accepts a `FnOnce() -> Result<(), E>`. `OnceCell` has a `get_or_try_init` method which can fail, so I think it would make sense for `Once` to have a failable initialisation method as well. Note that due to lack of failable in...
T-libs-api,C-discussion
low
Minor
686,555,804
pytorch
c10::string_view pybind11 custom type caster.
## πŸš€ Feature <!-- A clear and concise description of the feature proposal --> We have custom [type casters for pybind11](https://github.com/pytorch/pytorch/blob/11a40410e755b1fe74efe9eaa635e7ba5712846b/torch/csrc/utils/pybind.h#L26). pybind11 has support for std::string_view from C++17 onward and we've seen goo...
triaged,enhancement,module: pybind
low
Major
686,564,884
youtube-dl
certain video won't download when downloaded with a playlist/channel
Hey, I've been running with this issue for several years now. My problem is that when I try to download an entire youtube channel (as .m4a since i'm downloading music channels only) some of the songs i try to download won't download with this command : youtube-dl -o "musiques\%%(title)s.%%(ext)s" -f 140 --down...
question
low
Minor
686,578,673
go
x/pkgsite: add option to group/filter importers
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What is the URL of the page with the issue? one example is https://pkg.go.dev/github.com/Azure/go-ansiterm?tab=importedby ### What is your user agent? Not applicable ### Screenshot Not applicable ### What d...
NeedsInvestigation,FeatureRequest,pkgsite
low
Minor
686,591,181
storybook
Unable to set environment variables
**Describe the bug** I'm setting up my project to use [env-cmd](https://www.npmjs.com/package/env-cmd) to set environment variables using different `.env.{environment}` files (ex. `.env.dev`, `.env.staging`, etc). Unfortunately storybook isn't loading my environment variables. I've also tried setting environment var...
feature request,has workaround,core
medium
Critical
686,608,649
three.js
EXRLoader - non-image parts
I am not able to parse the following EXR file with EXRLoader. It has the bit 9 of flags set - β€œlong names”, and the bit 10 - "nonimage parts". The compression is ZIP and is already supported by EXRLoader. Could you implement the missing features? https://drive.google.com/file/d/1fuQXEjaiLu9tUibvVdQKwlr0W289SzKO/v...
Enhancement,Loaders
low
Major
686,618,878
pytorch
Exploring supporting some cases of `__bool__` on Proxy
From @bradleyhd: > Would anyone here mind speaking about the reasons behind the __bool__ impl of Proxy always raising an Exception and the risks of not doing things this way? I'm trying to hack my way through symbolically tracing a dper exported module and am encountering this left and right, e.g. with every use of t...
triaged,module: fx
low
Minor
686,639,232
rust
Transmute from one function pointer to another produces "can't transmute zero-sized type"
<!-- 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. --> Compiling the following cursed code: ```rust use std::ffi::CStr; #[repr(C)] struct ObjCObject { isa: isize } #[repr(transparent)] #[derive(...
A-diagnostics,T-compiler,C-bug,A-raw-pointers,A-zst
low
Critical
686,663,924
pytorch
test_doc_template is not working correctly
## πŸ› Bug Currently the `test_doc_template` is ```python def test_doc_template(self) -> None: from torch._torch_docs import __file__ as doc_file from torch._torch_docs import multi_dim_common, single_dim_common, factory_common_args, factory_like_common_args with o...
module: tests,triaged
low
Critical
686,743,036
flutter
Add-to-app sample isn't straightforward to execute
In order to run the sample app at https://github.com/flutter/samples/tree/master/add_to_app/ios_fullscreen I had to perform the following steps before the app would build and run on device: ```sh cd ../flutter_module sed -i 's/dev.flutter.example.flutterModule/dev.flutter.gaaclarke.flutterModule/g' pubspec.yaml flu...
platform-ios,d: examples,a: quality,a: existing-apps,P3,team-ios,triaged-ios
low
Major
686,745,899
rust
rustdoc: please provide way to filter out out-of-document included resources
I run `cargo doc` quite a lot because I like to have documents locally. This means I can work without an internet connection; it means docs load very quickly; it means they are the versions I have selected; and it provides better privacy because it means no-one outside my systems is seeing which docs I load when. H...
T-rustdoc,C-feature-request
low
Minor
686,765,998
pytorch
Make `torch.Generator` picklable
## πŸš€ Feature It would be nice to make `torch.Generator` picklable to checkpoint and restore random number generator states, as well as enabling `copy.deepcopy` of `Module`s and other classes that store the random state. ## Motivation I'm currently rewriting https://github.com/Yusufma03/pfrnns, which samples parti...
feature,module: serialization,triaged
low
Minor
686,832,207
terminal
Add test for null Profile.StartingDirectory
# Description of the new feature/enhancement `"startingDirectory": null` has significant value. It inherits the starting directory of its parent process. There is no testing today that covers this case.
Product-Terminal,Issue-Task,Area-CodeHealth
low
Minor
686,839,649
pytorch
Some largeCUDATensorTest fails with OOM when running with the entire test suit, but not when running standalone
As discussed in https://github.com/pytorch/pytorch/pull/43257, when working on https://github.com/pytorch/pytorch/pull/43092, I observed that after I changed some unrelated things, the `test_reduction_split` starts to fail with OOM. The failure only happens when running this test together with other tests. When ran sta...
module: tests,triaged
low
Critical
686,855,182
pytorch
[FX] List unpacking is broken
List unpacking in Python calls `__iter__` of the object being unpacked. We introspect the bytecode to look for UNPACK_SEQUENCE bytecodes: https://github.com/pytorch/pytorch/blob/0bf27d64f49cb7b801a7be3bde08ab2f5ca7448d/torch/fx/proxy.py#L59 But that is not sufficient, there is a callchain within the Python interp...
triaged,module: fx
low
Critical
686,890,673
pytorch
Syncbatchnorm and DDP
## πŸ› Bug Running DDP with BatchSyncNorm. The training will run for a couple of batches and the all GPUs fall off the bus. The training runs fine without BatchSyncNorm. This issue occurs in two models, deeplabv3 and another model, that I have tested so far. ## To Reproduce ``` os.environ['MASTER_A...
oncall: distributed,module: cuda,triaged
low
Critical
686,902,478
youtube-dl
[UFLASHTV] Support
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
site-support-request
low
Critical
687,003,058
rust
TcpStream with non_blocking mode and read_to_end() leads to incomplete message
I ran in to this problem: I have a TcpStream set on non_blocking(true). When I read from it, depending on the delay after I send the http request, it may drop some data of the reponse or not. It shouldn't work like this anyway. Moreover, it seems like that read_to_end will end when meeting EOF. How will this beha...
C-bug,T-libs,A-io
low
Major
687,005,929
pytorch
named tensor INTERNAL ASSERT FAILED when indexing with a list.
## πŸ› Bug We get a internal assertion failure when trying to index named tensors like this: `named_tensor[[0]]`. The error message says `RuntimeError: false INTERNAL ASSERT FAILED` and `Unknown DispatchKey: Named` ## To Reproduce Here is the output from an interactive python session: ``` (nn) jbss@rig1:~$ pyt...
triaged,module: named tensor
low
Critical
687,056,256
flutter
Documentation for web support and integration
Flutter API docs should clearly specify features unavailable in the web and the known issues related to specific widgets. Basic web features should be well documented. For example many of the features which completely depend on the browser can be achieved by using `package:js`. However this is not documented anywhere.
d: api docs,platform-web,P2,team-web,triaged-web
low
Major
687,084,372
go
x/net/http2: expose which TLS cipher suites are HTTP/2 safe
Launching a web server with the SSL ciphers list taken from the TLS package does not work. I get the following error, that I can't get around programatically: `http2: TLSConfig.CipherSuites index 5 contains an HTTP/2-approved cipher suite (0x1301), but it comes after unapproved cipher suites. With this configuration...
NeedsInvestigation
medium
Critical
687,108,761
go
cmd/cgo: Null pointer is accessed in C code, causing the stack to be destroyed
<!-- Please answer these questions before submitting your issue. Thanks! For questions please use one of our forums: https://github.com/golang/go/wiki/Questions --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.14.3 linux/amd64 </pre> ### Does this issue reproduce...
NeedsInvestigation,compiler/runtime
low
Critical
687,113,408
node
doc: Buffer.prototype.byteLength is undocumented
# πŸ“— API Reference Docs Problem - **Subsystem**: buffer ## Location Affected URL(s): - https://nodejs.org/api/buffer.html ## Description Buffer instances have a undocumented `.byteLength` property. We should document it. Docs only exist for the static method `Buffer.byteLength` but not for `Buffer.p...
buffer,doc
low
Major
687,117,070
godot
Confusing representation of empty string in array
**Godot version:** 3.2.2.stable & d30c3d0 (current master) **OS/device including version:** not graphics related **Issue description:** Can't distinguish between `[]` and `[""]` by printing them out. The output shows `[]` for both of them. ``` print([]) print([""]) print(["A","B"]) print(["A","", "B...
topic:core
low
Critical
687,137,451
flutter
Android Autofill fails on projects created before Flutter 1.12
Autofill doesn't work on Android when a project has been created with an older, pre-v1.12 version of Flutter. Autofill worked fine for us on iOS, but on Android the debug autofill provider would tell us that no autofill hints were found on the text field. This is reproducible: 1. Downgrade to a pre-v1.12 versi...
framework,f: material design,d: api docs,P3,team-design,triaged-design
low
Critical
687,143,409
youtube-dl
download biggest file size
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
question
low
Critical
687,153,778
flutter
Draggable hit testing improvements
<!-- 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...
framework,f: material design,c: proposal,team-design,triaged-design
low
Critical
687,159,023
vscode
[cli] specify command that runs on window open
<!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> I would like to launch VS Code and start a specific command on startup. That would reliably allow for task-specific configurations of VS Code on startup. #### Proposed API: * `--run-command <command_name> [--cmd-arg <command_argument>] *` * `--r...
feature-request,workbench-cli
medium
Major
687,171,980
terminal
While mouse over on titlebar, allow to react to Ctrl+MouseScroll human-events on to active tab.
<!-- 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨 I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING: 1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement. 2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl...
Help Wanted,Area-Input,Product-Terminal,Issue-Task,Priority-3
low
Critical
687,187,948
electron
SimpleURLLoader does not work with register*Protocol
### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/...
platform/windows,platform/linux,bug :beetle:,status/confirmed,8-x-y,9-x-y,10-x-y,11-x-y
low
Major
687,203,129
go
cmd/cgo: CFLAGS not passed in godefs mode
### What version of Go are you using (`go version`)? Master, 1.15, 1.14.7 and 1.13.13 ### What operating system and processor architecture are you using (`go env`)? Found on aix/ppc64, but same on linux/amd64 ### What did you do? The `#cgo CFLAGS` directive is ignored when using `-godefs` mode. The following...
NeedsFix,compiler/runtime
low
Minor
687,207,063
rust
Inconsistent iterator optimization
I'm not sure if this is the fault of const propagation (probably not?), but these [examples](https://rust.godbolt.org/z/EjW13c) ([more examples, but a lot more messy](https://rust.godbolt.org/z/Ks48Ke)) result in unexpected code. In some instances, the function bodies are evaluated and are replaced by a constant val...
A-const-eval,A-mir-opt
low
Major
687,212,270
rust
Next-generation syntax highlighting for rustdoc
At the moment, rustdoc uses only the lexer to do syntax highlighting (#75775). This has the benefits of simplicity & performance, and gets us 80% of the way quality wise, but it is not perfect. For example, lexer-based highlighting can't properly detect contextual keywords, glued/split operators, etc. We can and pr...
T-rustdoc,E-hard,C-enhancement,A-markdown-parsing
low
Major
687,213,672
excalidraw
Zooming shouldn't deselect elements
I understand this was added in https://github.com/excalidraw/excalidraw/pull/1333 to fix a pinch zooming issue, but this implem has the following downsides: - It removes active selection during zoom which was already present before we started zooming, and only reinstates it after zooming is done (and with a delay). ...
bug,mobile
low
Critical
687,272,985
material-ui
[Pagination] Mobile?
- [ ] The issue is present in the latest release. - [X] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. ## Current Behavior 😯 ![image](https://user-images.githubusercontent.com/4027842/91452450-a4bc6980-e88f-11ea-8703-32bd9a4...
new feature,component: pagination
low
Major
687,282,670
rust
Late unused trait import warnings do not suggest removing
```rust struct S; impl S { fn foo(&self) {} } pub mod bar { pub struct T; pub trait Trait { fn foo(&self) {} } } use bar::T; use bar::Trait; pub fn main() { S.foo(); } ``` A tool-only suggestion to remove `use bar::T` is emitted but no such suggestion is emitted ...
C-enhancement,A-diagnostics,A-trait-system,T-compiler
low
Minor
687,339,145
pytorch
checkpoint restore of optimizers changes dtype of Floating-point state
## πŸ› Bug PR #3658, in fixing an issue related to loading optimizers state on a different device, goes too far and makes floating-point state the same dtype as the parameters. This can result in a loss of precision when the state is higher precision than the parameters. In fairseq, we are working around with intrica...
module: optimizer,triaged
low
Critical
687,343,419
pytorch
torch.optim mentions legacy Variable
## πŸ“š Documentation ![image](https://user-images.githubusercontent.com/5652049/91463487-70c65180-e859-11ea-90d6-3a83df442108.png) We can change this to "tensors that require grad" cc @jlin27
module: docs,triaged
low
Minor
687,393,535
flutter
[web] Back button makes app title back to default one
Not sure whether it is a bug or feature request. **Steps to Reproduce** I have used following possibilities to set app title (which changes name of the browser tab): - Title widget - SystemChrome.setApplicationSwitcherDescription - onGenerateTitle in MaterialApp - title in MaterialApp It changes browser ta...
framework,f: routes,a: quality,platform-web,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-web,triaged-web
low
Critical
687,404,991
terminal
DISCUSSION: Is my app running in Terminal?
I've been using !((BOOL) SendMessage(GetConsoleWindow(), WM_GETICON, 0, 0)) Other ideas? Thanks. - Vince
Issue-Question,Needs-Tag-Fix
medium
Critical
687,442,390
rust
Increasingly slow compilation as more levels of `async` are added in Rust 1.46
I upgraded from 1.45 to 1.46 today and a crate I'm working on seems to hang forever while compiling. I've attempted to create a somewhat minimal test case. For convenience here's a repo that includes the code below: https://github.com/nicholasbishop/rust146hang Cargo.toml: ```toml [package] name = "rust146hang" ...
E-needs-test,I-compiletime,T-compiler,I-compilemem,C-bug,A-async-await,I-hang,AsyncAwait-Triaged,E-needs-mcve,ICEBreaker-Cleanup-Crew
high
Major
687,451,129
godot
Billboard mode is wrong in VR
**Godot version:** 3.2.2.stable **OS/device including version:** Windows 10, GLES3 **Issue description:** Billboard mode is useful for putting names/labels above objects and characters in VR. Unfortunately it spins around on its axis whenever you move your head. If you rotate your head from left to right the...
bug,topic:rendering,topic:xr
low
Critical
687,467,545
rust
Filesystem warning supress-ability
As described previously here https://github.com/termux/termux-packages/issues/4921#issue-565954999 this warning appears when incrementally compiling on the Android device, and there seems to be no way to disable it. The more linked libraries are there within the workspace the more this warning pops up, consuming the...
C-enhancement,A-diagnostics,O-android,P-medium,T-compiler,A-incr-comp
low
Minor
687,493,937
rust
Tracking Issue for inline const patterns (RFC 2920)
This is a tracking issue for the RFC "Inline `const` expressions and patterns" (rust-lang/rfcs#2920). Const expressions have been stabilized, but patterns have not The feature gate for the issue is `#![feature(inline_const_pat)]`. This was originally a tracking issue for const blocks in both expression and pattern...
B-RFC-approved,T-lang,T-compiler,C-tracking-issue,A-const-eval,F-inline_const,S-tracking-needs-summary,F-inline_const_pat
high
Critical
687,518,030
terminal
Use a Clip rect for Pane animations instead of the Width/Height
_follow up from #7364_ Looking at [this doc](https://docs.microsoft.com/en-us/windows/uwp/design/motion/storyboarded-animations#dependent-and-independent-animations): > An animation is independent if it has any of these characteristics: > > * The Duration of the animation is 0 seconds (see Warning) > * The ...
Help Wanted,Area-UserInterface,Product-Terminal,Issue-Task,Priority-3
low
Minor
687,518,418
node
doc: esm: explain `* as alias` behaviour with cjs modules
# πŸ“— API Reference Docs Problem <!-- Thank you for wanting to make nodejs.org better! This template is for issues with the Node.js API reference documentation. For problems with nodejs.org beyond the API reference documentation, please open an issue using the issue tracker for our site repository. h...
doc,module,esm
low
Minor
687,551,511
godot
[3.2] Nested inspector areas collapse when editing other objects, causing an invalid scroll position.
**Godot version:** 3.2.2 Stable Not reproducible in master 7a62b94bcae4da685144ce11aa6f1c8ad19b7c71 **OS/device including version:** Manjaro 20.1 **Issue description:** Please see this [reproduction video](https://youtu.be/5xCBWtSXPPM). **Steps to reproduce:** 1. Expand some nested inspectors until there ...
bug,topic:editor
low
Minor
687,568,944
flutter
"Hot Reload received invalid response" ... "Error while starting Kernel isolate task" on hot reload
## Steps to Reproduce 1. Run app via connected device 2. Wait until app is running 3. Doesn't matter if I make changes or don't make changes to the code 4. Hot reload **Expected results:** Expecting hot reload to work **Actual results:** Receive this error about half of the time: ``` Performing h...
c: crash,tool,dependency: dart,t: hot reload,customer: crowd,a: annoyance,P2,team-tool,triaged-tool
low
Critical
687,614,755
three.js
Handle redirects in loaders
I just got an issue in model-viewer that I don't think I can solve at that level: https://github.com/google/model-viewer/issues/1484 This seems like a reasonable request, but I'm not sure how much surgery it would require. Of course I'm thinking of GLTFLoader specifically, but I imagine some other loaders could also...
Suggestion,Loaders
low
Minor
687,632,674
pytorch
Using Dataparallel with multi input error. Input and parameter tensors are not at the same device, found input tensor at cpu and parameter tensor at cuda:0
File "train_pytorch.py", line 169, in <module> output = net([train1[0], train1[1], train1[2], train1[3], train1[4]]) File "/gpfs/u/home/EXPS/EXPSxyli/scratch/miniconda/lib/python3.7/site-packages/torch/nn/modules/module.py", line 550, in __call__ result = self.forward(*input, **kwargs) File "/gpfs/u/hom...
triaged,module: data parallel
low
Critical
687,637,112
flutter
Add a Split widget
## Use case Flutter desktop support is maturing and being more widely used. This creates a need for widgets which support uses that are more common in desktop vs mobile UI's. A very common need for desktop apps is to display a responsive master-detail, 2 pane UI, where the user is able to resize the proportion o...
c: new feature,framework,f: material design,c: proposal,a: desktop,P3,team-framework,triaged-framework
medium
Critical
687,641,419
rust
Add support for exporting symbols in binary
When creating an executable, even if you mark a function pub, the resulting file will not export the function. This is handled by this line: https://github.com/rust-lang/rust/blob/b97e9b5dc74e705cd01603c5f735652a04460a60/src/librustc_codegen_ssa/back/linker.rs#L508 There seems to be no way to get around this, aside f...
A-linkage,C-enhancement
low
Minor
687,699,322
rust
Remove the tidy exceptions of custom-named tests module in std
In https://github.com/rust-lang/rust/pull/75979#discussion_r478452260, Petrochenkov suggests to merge `src/thread/local/dynamic_tests.rs` to `src/thread/local/tests.rs`. Note that `dynamic_tests` mod is gated any platform cfgs but tests mod is. I'm not sure what would need to be done but one should wait until #75979...
A-testsuite,C-enhancement
low
Minor
687,776,476
vscode
Windows Magnifier not following active menuitem
<!-- ⚠️⚠️ 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,accessibility,windows,under-discussion,menus
low
Critical
687,865,624
flutter
Slow frame during startup after the first frame is hard to capture and causes bi-modal worst frame metrics
The slow frame could be as slow as 1.7s as noticed in [these plots][1]. It is first noticed in https://github.com/flutter/flutter/issues/60559#issuecomment-681147504 because the newly added host-independent (e2e) perf tests have such low overhead that it captures them with a high probability before the engine sends out...
team,engine,c: performance,customer: product,perf: speed,P2,team-engine,triaged-engine
low
Major
687,878,013
pytorch
OSError: /lib64/libc.so.6: version `GLIBC_2.14' not found
## ❓ 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: binaries,triaged
low
Critical
687,915,406
go
time: Time has different precision depending on the operating system
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.13.12 darwin/amd64 </pre> ### Does this issue reproduce with the latest release? <pre> $ go version go version go1.15 darwin/amd64 $ go run main.go 2020-08-28 10:37:50.388561 +0200 CEST m=+0.000120847 </pre> <pre>...
NeedsInvestigation
low
Critical
687,942,917
pytorch
Error : lib/libstdc++.so.6: version `CXXABI_1.3.11 not found
## ❓ Questions and Help I am using centos7, gcc version is 4.8.5 and list is till up to CXXABI_1.3.10. I don't have admin control, i am just a local user. I used to conda to install it. Pytorch is in the library, but when program is run this is the error i get. ### Please note that this issue tracker is not a help ...
module: binaries,module: build,triaged
low
Critical
688,044,916
TypeScript
Debug Failure. Illegal value: 200 in signatureToSignatureDeclarationHelper
<!-- 🚨 STOP 🚨 STOP 🚨 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 before lo...
Bug
low
Critical
688,052,063
go
cmd/asm: ARM64 NEON floating point instructions (VFABD VFMAX, VFMAXNM, VFMINNM VFMIN VFADD, VFSUB VFMUL, VFDIV VFMLA, VFMLS VCVT*)
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.15 linux/arm64 </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><...
help wanted,NeedsInvestigation,compiler/runtime
low
Critical
688,059,866
pytorch
JIT fails sanity checks during tracing torch.rand_like
```python import torch class TestModule(torch.nn.Module): def forward(self, x): return x + torch.rand_like(x) trace_input = torch.zeros([1], device='cuda', dtype=torch.float32) module = torch.jit.trace_module(TestModule(), dict(forward=(trace_input,))) ``` ``` TracingCheckError: Tracing f...
oncall: jit
low
Critical
688,163,185
go
x/mobile/cmd/gomobile: proposal: `-race` flag
I propose to add `-race` flag to `gomobile` command, as the regular go command does. This should be useful to detect race conditions. @hyangah, @dmitshur Any thoughts?
NeedsInvestigation,mobile
low
Minor
688,187,196
godot
Particles and tilemap tres animations do not stop during debug
**Godot version:** 3.2.2 stable **OS/device including version:** linux mint 64bit **Issue description:** When you pause a game and enter debug mode, two things happen to particles and tres tilemap animated tiles: 1. particles still run but at about 5% of normal speed 2. tilemap sprites with a tres anim...
bug,topic:editor,topic:particles
low
Critical
688,222,026
vscode
Copy/paste from custom titlebar doesn't work in markdown previews
Issue Type: <b>Bug</b> 1. Open a markdown file for editing 2. Open the preview view 3. Select some text in the preview 4. Choose context menu entry "Copy" 5. Navigate to external program 6. Paste Expected: text from VSCode appears Actual: Only a blank space is pasted VS Code version: Code 1.47.3 (91899dc...
bug,help wanted,windows,webview,titlebar
low
Critical
688,285,835
TypeScript
index types not discoverable across files (via find-all-references)
<!-- ⚠️⚠️ 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,Domain: Symbol Navigation
low
Critical
688,286,628
rust
rustc `-Clink-dead-code` causes MSVC linker to produce invalid binaries when LLVM InstrProf counters are enabled
This reports a bug with the `-C link-dead-code` option is enabled, when targeting MSVC and when LLVM InstrProf counter reports are enabled. The bug is probably not specific to InstrProf, but InstrProf sets the conditions for exposing the bug. I hope someone with better familiarity with the `-C link-dead-code` option...
I-ICE,T-compiler,O-windows-msvc,C-bug,link-dead-code
low
Critical
688,298,895
godot
Release InputEvent event doesn't match with move event on Android
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** <!-- Specify commit hash if using non-official build. --> 3.2 branch after rc4: 6b5102cf907c7c1bae1e866a794bae1cc02d0fae Also happens on 3.2.3.rc4 *...
bug,platform:android,topic:input
low
Critical
688,303,649
next.js
Dynamic Routes in Symlinks is not working
# Bug report ## Describe the bug Dynamic Routes in symlinks is not working ## To Reproduce I don't think github repos support symlink commits so this is how you can reproduce this: In project folder: ``` mkdir pages/nolink echo "export default function Post() {return <div>Works</div>}" > "pages/nolink...
good first issue,Navigation
low
Critical
688,309,514
godot
Half Resolution breaks path editing.
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** <!-- Specify commit hash if using non-official build. --> Godot 3.2.2 rc2 mono **OS/device including version:** Macbook Pro 2015, Big Sur **Issue...
bug,topic:editor,confirmed,topic:3d
low
Minor
688,311,638
excalidraw
Remove PWA (SW) until guaranteed fix
Since we've introduced PWA and the underlying Service Worker we've been getting cache invalidation issues. We've been unable to resolve this reliably to this day (see https://github.com/excalidraw/excalidraw/issues/2083). The issue is compounded by collaboration because several clients may have slightly diverging ve...
SW-caching,pwa
medium
Major
688,324,802
go
x/pkgsite: package build and doc links/images lack a11y features
Package build and godoc links/images lack accessibility features to indicate the semantic content of the image. E.g. Alt text displayed is β€œBuild Status,” but lacks β€œPassing,” which is the more important information. If possible, use plain text to display build status, or set alt text dynamically.
NeedsInvestigation,pkgsite,pkgsite/frontend
low
Minor
688,340,936
go
database/sql: SetConnMaxIdleTime without SetConnMaxLifetime has no effect
<!-- 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 devel +b5c8d88bba Tue Aug 25 12:10:40 2020 -0400 darwin/amd64...
NeedsInvestigation
low
Critical
688,352,866
flutter
[web] `felt build` sometimes does not run the `web_engine_sources` target before compiling
Steps to reproduce: 1. Mess up the content of a source file in `web_ui/lib/src/engine` (in my case it was `engine/src/flutter/lib/web_ui/lib/src/engine/canvaskit/color_filter.dart`), run `felt build`. See a list of compile-time errors as expected. 2. Try to fix these errors. 2. run `felt build`, or `ninja -C out/h...
team,engine,platform-web,P2,team-web,triaged-web,e: engine-tool
low
Critical
688,357,981
go
cmd/compile: don't compile some unexported, inlined functions
If a function is: * inlined at all call sites * not exported * not referred to by value (any uses of the function are as a static call) * not present in any interface types in its containing package then we don't need to compile that function. I suspect that these conditions are frequently met, cheap to che...
help wanted,ToolSpeed,NeedsInvestigation,compiler/runtime
low
Major
688,363,766
TypeScript
Editors need a way to determine whether they are talking to an official TS Server
Otherwise, they will obliviously forward events from the server to our official telemetry system and we'll have confusing noise in our data (e.g. stacks that don't match our source or asserts that don't exist). The most secure approach would be to cryptographically hash the official tsserver.js and have the editor o...
Infrastructure
low
Minor
688,367,330
flutter
ImageFilter.blur bright edges and clip when resizing
ImageFiltered with ImageFilter.blur has this strange clip/border effect that is affected by size. This causes some jank when resizing a desktop window on both macOS and Windows: <img src="https://i.gyazo.com/a152e27c491eb04c46a3ee1d3e597807.gif" height="400" /> And jank when resizing the filtered widget in genera...
framework,engine,a: quality,a: images,c: rendering,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-engine,triaged-engine
low
Major
688,379,185
vscode
API for horizontal scroll position in TextEditor
<!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> I would pleased to have an API on `TextEditor` allowing to get and set the horizontal scroll position, as well as an event to react to changes. I am developing an extension which compares files in multiple text editors and having synchronized scrolling...
feature-request,api,editor-api
medium
Major
688,416,491
pytorch
Buffers are moved to another device by copy and not in-place
## πŸ› Bug Hi guys. The issue was noticed in `pytorch 1.5.1` (it is likely also present in `1.6.0`). I'm not sure is it's a bug or a feature. I have my own nn.Module where I register some parameters and buffers (call `register_buffer()` on some torch.Tensor-s). When I move the module to another device using `m....
triaged
low
Critical
688,417,059
pytorch
Move randperm() to DistributionTemplates
To [support randperm](https://github.com/pytorch/csprng/issues/71) in [csprng](https://github.com/pytorch/csprng) it's required to templatize with RNG and move randperm implementation to DistributionTemplates.h, cpu/DistributionTemplates.h and cuda/DistributionTemplates.h Add a test in cpu_rng_test.cpp See: http...
triaged,module: random,csprng
low
Minor
688,419,731
TypeScript
Cannot assign generic type aliases that should be equivalent.
Cannot assign generic type aliases that should be equivalent. Simple test case: ```ts export type Example<TData> = (data: TData | null | undefined) => string | null; function foo<T>() { let x: Example<T> = undefined!; let y: Example<T | null | undefined> = undefined!; y = x; let ...
Bug,Fix Available
low
Critical
688,469,487
godot
Godot 3.2.3 RC4 / 3.2.2-Stable "Couldn't open external text editor, using internal" error when trying to use VS Code
**Godot version:** Godot 3.2.3 RC4 non-mono build **OS/device including version:** Windows 10 GLES3 **Issue description:** I created a new project and configured Godot to use an external editor (Visual Studio Code). Upon creating a GDScript file VS Code does not open it - it reverts back to the old editor...
bug,platform:windows,topic:editor
low
Critical
688,493,971
node
regression: `require.resolve()` caches `package.json` when it shouldn't
<!-- Thank you for reporting an issue. This issue tracker is for bugs and issues found within Node.js core. If you require more general support please file an issue on our help repo. https://github.com/nodejs/help Please fill in as much of the template below as you're able. Version: output of `node -v` P...
module
low
Critical
688,497,016
storybook
Maximum update depth exceeded depending on order of decorators
**Describe the bug** I think that this bug is an effect of a combination between the react-final-form and storybook implementations, possibly it's a problem when the decorator contain a component that uses render prop. It's also possible that this is entirely a problem with react-final-form but I've never seen this is...
question / support,compatibility with other tools,react
low
Critical
688,500,547
PowerToys
[KBM] Specify multiple targets applications
## πŸ“ Provide a description of the new feature It would be great to have the possibility to specify multiple targets in "Remap shortcuts" (comma separated, semicolon separated or space separated) ![image](https://user-images.githubusercontent.com/19806799/91634027-7359b000-e9ed-11ea-9c8b-13373ef2b0ca.png) ______...
Idea-Enhancement,Help Wanted,Product-Keyboard Shortcut Manager
medium
Critical
688,503,292
rust
regression: #[forbid(unreachable_code)] incompatible with the Try ('?') operator
<!-- 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 #![forbid(unreachable_code)] #[allow(dead_code)] // Remove warning. fn foo() -> Option<()> { Some(0)?; None //...
A-lints,E-needs-test,P-low,T-compiler,C-bug
low
Critical
688,506,238
go
x/pkgsite: handle packages from an archived repo specially
If a repo has been archived (as described for GItHub [here](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/archiving-repositories)), we should reduce its search rank, and add an indicator to its pages.
NeedsInvestigation,FeatureRequest,pkgsite
low
Major
688,514,851
rust
Removing FatalErrors from StringReader
[`StringReader`](https://github.com/rust-lang/rust/blob/1dc748fb3d2c54f536e6abd74f1ad34b3624f640/src/librustc_parse/lexer/mod.rs#L30) uses a bunch of Fatal (panicking) errors: https://github.com/rust-lang/rust/blob/1dc748fb3d2c54f536e6abd74f1ad34b3624f640/src/librustc_parse/lexer/mod.rs#L30 (search for `.raise`) ...
C-cleanup,A-diagnostics,A-parser,T-compiler
low
Critical
688,547,540
excalidraw
Further simplify simple line editing?
#2090 added rotation to lines, which greatly improved the UX. Have we considered moving 2 points entirely away from the "bounding box" idea? This reintroduces normalization, but instead of having no angles (situation pre-2090), it would the assumption that new lines are created at 0 angle. Like this: <img width="...
discussion
low
Major
688,551,595
TypeScript
Tuple should be readonly by default
Any tuples can mutate, this entails incorrect typing **TypeScript Version:** 4.1.0-dev.20200828 **Search Terms:** "readonly tuple" "immutable tuple" **Code** ```ts const exampleSort: [number, string] = [2, '1']; exampleSort.sort(); exampleSort // Type: [number, string], RealType: [string, number] ...
Suggestion,Awaiting More Feedback
medium
Critical
688,558,876
excalidraw
Cmd/ctrl-drag of parent element should unbind it from all bound elements
Holding Cmd/ctrl while dragging bindable element should unbind currently bound linear elements from it. ![excal_feat_unbind_via_cmd](https://user-images.githubusercontent.com/5153846/91640989-ca797800-ea21-11ea-8191-3c7288d5e016.gif) /cc @xixixao do you want to take this on?
bug
low
Minor
688,563,940
TypeScript
Tolerate invalid identifier syntax errors in list parsing
## Search Terms parser variable name list identifiers ## Suggestion Instead of aborting parsing a list when an invalid identifier is reached, have the parser emit a syntax error but otherwise parsing. In other words: it should successfully parse lists such as variable declarations as if the identifiers were va...
Suggestion,Experience Enhancement
low
Critical
688,573,940
vscode
Workbench hovers don't support equivalent of "editor.hover.sticky" setting
The workbench hovers (custom views, terminal) don't support the "editor.hover.sticky" setting, which is IMO desired, but there is no equivalent setting There is also the "editor.hover.delay", but not sure if it matters as much to support this or not (again with its own version IMO) /cc @alexr00
feature-request,workbench-hover
low
Major
688,575,542
flutter
We need richtext text support, similar to Android (TextView.setText(html)) or iOS (TextView.attributedText=html)
As Flutter is moving into Desktop and Web, it's become more important that we can create large blocks of text, with a variety of bold, italics, embedded links and other styling. The current solution is to use TextSpan's which is very limited in their use case, are cumbersome to write, and hard to read. Other pla...
c: new feature,framework,a: typography,customer: crowd,c: proposal,P3,team-framework,triaged-framework
medium
Major
688,583,191
opencv
Compilation warnings when compiling in release and checking strict aliasing
##### System information (version) Seen on (but not dependent on the OS or compiler): - OpenCV => latest (branch master + branch 3.4) - Operating System / Platform => Windows 64 Bit - Compiler => mingw64 ##### Detailed description The "-Wstrict-aliasing" option (added when ENABLE_NOISY_WARNINGS is set) give...
priority: low,category: build/install
low
Minor
688,593,276
excalidraw
alt-drag should not modify original element
Currently, `alt-drag` duplicates in such a way that we swap the original element with a new one (with new seed and shape) instead of the one being dragged. This is undesirable. :warning: Don't forget to adapt arrow binding as it accounts for current, incorrect behavior, and there are no specs for binding so you won'...
bug
low
Minor
688,595,774
excalidraw
Configured grid size
Hey As a user, I would have configured grid size to have the possibility to stick some points to grid corners. I read the topic here: https://github.com/excalidraw/excalidraw/pull/1788 but I didn't find any final thoughts... I can propose the next idea: <img width="369" alt="Screenshot 2020-08-29 at 22 59 47" src="...
enhancement,discussion
low
Major
688,604,808
vscode
Multi line "Copy Message" from problems panel.
Version: 1.48.2 Ubuntu 20.04 deb package Currently when observing the problems view, I can use shift to click to select multiple problems (lines). When I subsequently right click and select "Copy Message", it only copies one of the selected lines. It would be nice if I was able to copy the entire contents (or any s...
feature-request,error-list
low
Minor