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 |
|---|---|---|---|---|---|---|
580,658,406 | neovim | blend shows emojis behind window or popup | - `nvim --version`:
```
NVIM v0.5.0-416-g2b00d1d09
Build type: Release
LuaJIT 2.1.0-beta3
Compilation: /Applications/Xcode-10.1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -DNDEBUG -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-protot... | enhancement,display,unicode 💩 | low | Critical |
580,757,905 | TypeScript | Type inference regression (regression) | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 -->
<!--
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker.
Please help us by doing the following steps before logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the CONT... | Bug | low | Critical |
580,770,200 | godot | Tree not processing if the the tab is not active in WASM | **Godot version:**
3.2.1
**OS/device including version:**
Firefox 73
**Issue description:**
When running a project in the browser, the tree pauses if you leave the tab. Timers are paused and no functions are fired. This is particularly an issue in online turn games when someone leaves the tab to check another webs... | discussion,platform:web,topic:porting,confirmed,documentation | medium | Major |
580,771,059 | go | x/text/cmd/gotext: generate for one GOOS/GOARCH from a different GOOS/GOARCH | I maintain a Go program for Windows that uses CGo, but I mostly develop from Linux. I use gotext, which means a file has in it:
`//go:generate go run golang.org/x/text/cmd/gotext -srclang=en update -out=zgotext.go -lang=en,fr,ja,sl`
The problem is that in order for gotext to look at the right source files, GOOS=w... | NeedsInvestigation | low | Major |
580,793,618 | pytorch | CPU softmax performance poor when dim is not the last dimension | ```
import torch
import torch.nn.functional as F
import time
x = torch.rand(1, 3072, 1024)
NITER = 100
s = time.time()
for _ in range(NITER):
out = F.softmax(x, dim=1)
e = time.time()
time_per_iter = (e - s) / NITER
print('time per iter (ms)', time_per_iter / 1000)
print('GB/s', (x.numel() * x.e... | module: performance,module: cpu,triaged | low | Major |
580,914,687 | deno | chmod doesn't work on Windows | In Node, the following is observed on Windows:
```typescript
const fs = require('fs');
fs.chmodSync('test_file.txt', 0o000); //makes the file read-only
fs.chmodSync('test_file.txt', 0o777); //makes the file writable
```
However, in Deno (v0.36.0) no file mode I tested changed the read-only attribute in any wa... | feat,windows,public API | low | Major |
580,969,275 | pytorch | General Purpose Faulty RPC Agent | ## 🚀 Feature
#33636 will introduce failure injection for PyTorch Distributed tests using `FaultyProcessGroupAgent`, a child class of `ProcessGroupAgent` whose methods can be overriden with faulty implementations.
As @pritamdamania87 suggested, we should make this framework more general-purpose, and make `FaultyPr... | oncall: distributed,triaged,better-engineering,module: rpc | low | Critical |
581,010,830 | rust | fn item can't coerce to trait object when a trait bound has a lifetime parameter | <!--
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.
-->
```rust
trait Trait<'a> {}
impl<'a, T> Trait<'a> for T {}
fn func<'a, T: Trait<'a>>(x: &'a str) {}
const CONST: &dyn for<'a> Fn(&'a str) = &func::<i3... | A-lifetimes,T-lang,T-compiler,C-bug,A-coercions | low | Critical |
581,030,163 | pytorch | incomplete implementation doubt | I created a incomplete implementation of stand alone self attention, I have certain doubts regarding it, should I create a pull request with [WIP], to iterate and figure out solutions to mistakes in my implementation.
cc @albanD @mruberry @jbschlosser @walterddr @mikaylagawarecki | module: nn,triaged | low | Major |
581,077,700 | scrcpy | CODM Controls | Hi.
I have now been able to get SCRCPY up and running between PC / Samsung phone.
I can see my mouse and control the phone.
But how do I now setup the controls to allow me to use the keyboard and mouse for CODM in place of my phone?
Thanks | input events,mouse capture | low | Minor |
581,162,623 | TypeScript | Function implementation that returns literal types is not assignable to widened overload | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Bug | low | Critical |
581,184,107 | go | os/exec: status of FDs >= len(cmd.ExtraFiles)+3 is undocumented | #### What version of Go are you using (`go version`)?
go version go1.14 linux/amd64
#### What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOOS="linux"
#### What did you do?
Invocation: `$ parent-cmd 0<a 1>b 2>c 3>d 4>e 5>f`
```go
cmd := exec.Command("child-cmd")
c... | Documentation,help wanted,NeedsFix | low | Major |
581,189,975 | godot | Nested dublicated Viewport+ViewportContainer blocking GUI | **Godot version:** 3.2.1
**OS/device including version:** Fedora 30
**CPU:** Intel Core i5-8250U (x86_64)
**GPU:** Integrated/Intel UHD Graphics 620
**Issue description:**
Nested dublicated Viewport+ViewportContainer blocks gui so it's not possible to interact with GUI
**Steps to reproduce:**
1) Create... | bug,topic:gui | low | Minor |
581,209,203 | flutter | TextField: Keyboard not showing on `autofocus: true` after app is paused then resumed in Android | <!-- 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: text input,platform-android,framework,f: material design,has reproducible steps,P2,found in release: 3.0,found in release: 3.1,team-text-input,triaged-text-input | low | Critical |
581,231,929 | TypeScript | Show return type, when hovering `return` statement | ## Search Terms
return type, completion
<!-- List of keywords you searched for before creating this issue. Write them down here so that others can find this suggestion more easily -->
## Suggestion
As of now, if I hover the `return` statement in a function, I don't get any autocompletion. However, this would be a... | Suggestion,Awaiting More Feedback | low | Minor |
581,239,558 | pytorch | Add ability to return a copy to Module's state_dict member function. | ## 🚀 Feature
<!-- A clear and concise description of the feature proposal -->
Add the ability for the `Module`'s `state_dict` member function to optionally provide detached copies of the module's internal state. Probably controlled with a keyword argument `copy=False`.
## Motivation
<!-- Please outline the mo... | module: nn,triaged,enhancement | low | Minor |
581,262,293 | rust | Move lexer punctuation confusables list to `unicode-security` crate and sync it with newest Unicode version. | Now that Unicode 13 is released, maybe we should bump the unicode version. | C-enhancement,A-Unicode,T-compiler | low | Major |
581,274,405 | scrcpy | Is there a way to simulate swipe gesture? | Scrcpy is an amazing tool! It has been extremely helpful for me.
I'm trying to figure out if there is a way to simulate swipe gestures. For example, when I use ctrl+n to see notifications, the only way I can dismiss a notification is to use the left mouse button to click on the notification and then swipe my mouse. ... | input events | low | Major |
581,330,599 | TypeScript | Unrecognised JSDoc Namepath | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Bug,Domain: JSDoc | low | Critical |
581,344,382 | godot | Light2D on isometric TileMap issue without Ysort (or Quadrant set to 1) | **Godot version:** 3.2.1
**OS/device including version:** Windows 10
**Issue description:**
Light2D produce weird behavior on isometric tilemap without Ysorting or with a Quadrant higher than 1. It's a bit problematic because on my test adding Ysort make me go from 500fps to 50fps and with a batch quadrant to 1 ... | bug,topic:rendering,confirmed | low | Critical |
581,408,948 | terminal | Swap panes | Right now, after splitting my screen onto two panes, I cannot find a way to swap the panes between each other.
In tmux it's possible to move/swap opened panes in different ways.
Moving panes around in tmux:
```
C-a { move the current pane to the previous position
C-a } move the current pane t... | Help Wanted,Area-UserInterface,Product-Terminal,Issue-Task | low | Major |
581,421,086 | opencv | 22 modules (main and contrib) depend on opencv_flann module (cv::flann::Index instead of cv::DescriptorMatcher) | ##### System information (version)
<!-- Example
- OpenCV => 4.2
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2017
-->
- OpenCV => master (2a52e44bc605bf73502dee0e0e3954bcda19a246)
- Operating System / Platform => Kubuntu 19.10
- Compiler => GCC g++ 9
##### Detailed descriptio... | feature,priority: low,category: build/install | low | Minor |
581,427,398 | godot | Slider not able to slide on Touchscreen Devices | **Godot version:**
3.1.2 stable official
**OS/device including version:**
Mac which I am coding on 10.14.6
**Issue description:**
Hslider not sliding on touchscreen devices.
**Device Information:**
iphone 6, software version 12.4.5
**Steps to reproduce:**
(Run this project on an iPhone or similar touch... | bug,platform:ios | low | Minor |
581,440,412 | create-react-app | Support pnpm/don't default to yarn lock | There are various places that treat `npm`/`yarn` as a binary choice. [`pnpm`](https://pnpm.js.org/) also exists and is pretty mature (and there may be others).
https://github.com/facebook/create-react-app/blob/fa85f030de6843667202f912de841c276275df00/packages/create-react-app/createReactApp.js#L249
At the least i... | issue: proposal,needs triage | low | Minor |
581,443,983 | pytorch | Unsupported ONNX op (Upsample 3D, bicubic) contrary to documentation | ## 🐛 Bug
NotImplementedError for nn.Upsample ONNX conversion when documented argument specs are met (3D input, bicubic interpolation)
## To Reproduce
Steps to reproduce the behavior:
1. Create a module with `nn.Upsample(scale_factor=(4, 4), mode='bicubic')`
2. Provide a 3D example input when running `torc... | module: nn,triaged,module: vision | low | Critical |
581,518,319 | godot | [3.x] Autocomplete fails when typing the key before the value in a dictionary | **Godot version:**
Godot 3.2.stable.official
**OS/device including version:**
Windows 10 home
**Issue description:**
When adding a key to the dictionary, the autocomplete does not work until I enter the value. The workaround is to start by entering `:any_value` then moving the cursor back and entering the key ... | bug,topic:gdscript,topic:editor | low | Minor |
581,541,809 | go | x/pkgsite: consider reducing footer size | A spiritual cousin to #37110 perhaps
### What is the URL of the page with the issue?
https://pkg.go.dev/github.com/CloudyKit/jet?tab=doc
### What is your user agent?
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36
### Screensh... | NeedsInvestigation,pkgsite,UX,pkgsite/frontend | low | Minor |
581,601,104 | node | perf_hooks/trace_events - nested measurements don't work as expected | <!--
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... | trace_events | low | Critical |
581,612,194 | youtube-dl | IMVBox | <!--
######################################################################
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 |
581,655,922 | PowerToys | [PowerRename] Insert String in Position x | Would be nice to have a option to insert a string on Position x from start / end because at the moment its imposible? to make a prefix / suffix on all files of a directory?
there is a other request to have variables to be set / used for renaming - maybe this could be used to insert a string on a free position too.
... | Issue-Docs,Product-PowerRename | medium | Major |
581,681,028 | rust | Compiler error wrongly suggests to borrow | We noticed that if a `HashMap<&str, T>` is instanced and a get is performed using `String` as a key, the rust compiler suggests to use a reference `&String` instead, but that solution won't compile.
For example, given this code
```rust
use std::collections::HashMap;
fn main() {
let mut m: HashMap<&str, u32... | A-diagnostics,T-compiler,C-bug | low | Critical |
581,682,673 | rust | Statics don't support alignments larger than the page size | Example code:
```rust
#[repr(align(0x100000))]
struct Aligned(u8);
static X: Aligned = Aligned(0);
fn main() {
let x = Aligned(0);
println!("{:#x}", &x as *const _ as usize);
println!("{:#x}", &X as *const _ as usize);
println!("{:#x}", Box::into_raw(Box::new(Aligned(0))) as usize);
}
```... | O-linux,P-high,T-compiler,O-windows-gnu,O-windows-msvc,I-unsound,A-target-specs,C-bug,E-needs-investigation,A-align | medium | Major |
581,736,669 | tensorflow | TF saved model Assertion Error ( Called a function referencing variables which have been deleted ) | I am facing an issue . When returning a ```tf.saved_model.load``` object inside a function and then try to use it, it is not working.
I am having a file ```sample.py```
```
#### sample.py
import tensorflow as tf
def load_model(model_dir):
# Load Model
loaded = tf.saved_model.load(model_dir)
... | type:bug,comp:apis,TF 2.11 | medium | Critical |
581,744,299 | excalidraw | Compress before sending over network | Because we are encrypting all the data, we can’t use the browser provided compression to reduce the size of the payloads.
Here are some findings from a quick survey:
Chrome starts to ship gzip compression in 80. https://twitter.com/addyosmani/status/1228989899686260736?s=21 This is great because a lot of our traf... | enhancement,collaboration | low | Major |
581,787,847 | rust | Failure to unify concrete type with associated 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.
-->
I tried [this code](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=d2e06fa09bf3b1123cc6e62e1a31c595):
```rust
trait Refable<'a... | A-associated-items,T-compiler,C-bug,A-coercions | low | Critical |
581,791,689 | excalidraw | Better touch handling | - [ ] abort first touch if a second `pointerdown` (i.e. for pan/zoom) occurs before the first pointer moves too far
- fixes issues with selection, pan/zooming while making lines
- [ ] tests!
- [ ] maybe: support releasing one finger from a two-finger gesture to switch back to select/edit mode (the reverse currentl... | mobile | low | Minor |
581,802,187 | terminal | Question: TCSAFLUSH equivalent for Windows console host? | Hello,
On Unix systems, when setting up a terminal for 'raw' processing, you have the option of passing `TCSAFLUSH` to `tcsetattr()`. The description of it is as follows:
> the change occurs after all output written to the object referred by fd has been transmitted, and all input that has been received but not re... | Issue-Feature,Product-Conhost,Area-Server | low | Minor |
581,805,434 | flutter | [Desktop] Switch to app when using select widget mode | We have this functionality when using simulators and emulators, but not with desktop. After clicking select widget mode, the IDE is still focused. | framework,f: inspector,a: desktop,P3,team-framework,triaged-framework | low | Major |
581,807,003 | pytorch | keepdim for Tensor.select? | ## 🚀 Feature
I noticed quite some Tensor functions had a `keepdim` boolean param, tho not [`Tensor.select`](https://pytorch.org/docs/stable/tensors.html#torch.Tensor.select), where behavior is now what one would expect for `keepdim=False`.
Would it maybe be an idea to add this parameter there as well?
| triaged,function request,module: viewing and reshaping | low | Minor |
581,807,409 | create-react-app | Remove "[HMR] Waiting for update signal from WDS..." log | ### Is your proposal related to a problem?
I like my logs when things are working well. Right now for all my create-react-apps, I have this annoying "[HMR] Waiting for update signal from WDS..." log that pollutes my console.
.
It'd be great if we kept it pe... | discussion | low | Critical |
581,812,073 | node | Piping `process.stdin` to `child.stdin` leaves behind an open handle | * **Version**: `13.11.0` (tried on `8.3.0` too, same result)
* **Platform**: Linux
* **Subsystem**: Ubuntu `19.10`
### What steps will reproduce the bug?
`foo.c`
```c
#include <stdio.h>
int main() {
char str[100];
gets(str);
puts(str);
return 0;
}
```
Compile it:
```bash
$ gcc -o foo ... | stream | medium | Critical |
581,933,134 | go | cmd/go: redact passwords in urls in "go bug" | When a user submits an issue, we also need the user to file the output of `go env`(many users don't use go bug command), so we should replace any non-empty password in GOPROXY environment by default. The string form replaces password in the original URL with "[redacted]". Like `go get -x`:
```
MBA:/tmp$ go get -x -... | NeedsDecision,GoCommand | low | Critical |
581,959,572 | rust | OOM (huge memory usage) during release compilation with include_str of 100MB | When compiling a project of mine, my PC with 32GB of RAM went OOM. I reduced the problem to the following code:
```rust
use std::collections::HashMap;
static TESTDATA: &str = include_str!("../testdata");
fn parse_testdata() -> HashMap<(), ()> {
let mut map = HashMap::new();
for line in TESTDATA.line... | P-medium,T-compiler,regression-from-stable-to-stable,I-compilemem,C-bug,ICEBreaker-Cleanup-Crew | low | Critical |
582,060,382 | ant-design | 增加表格筛选父级字段高亮 | - [x] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate.
### What problem does this feature solve?
增加筛选父级字段高亮

GIProbe's extents covers both objects. As you can see it works properly only... | topic:rendering,documentation | low | Minor |
582,082,418 | pytorch | Is it possible to run an object detection android app by using Pytorch Mobile? | Hi, I want to use Pytorch Mobile if it is possible to run the trained mobilenet-ssd model with my dataset on Android.
So I just want to know whether it is possible or not. Does it depend on app development because Pytorch mobile can support the model perfectly?
| triaged,module: android | low | Minor |
582,232,686 | godot | Opening a file with write flag and calling get_as_text() just blocks the game | **Godot version:**
3.2
**OS/device including version:**
Windows 10
**Issue description:**
The following minimal program blocks the game instead of throwing an error like would be expected:
```
func _ready():
var file := File.new()
file.open("test.txt", File.WRITE)
var test = file.get_as_text()
print(... | bug,topic:core,confirmed | low | Critical |
582,259,041 | youtube-dl | Support Vue Mastery | ## Checklist
<!--
Carefully read and work through this check list in order to prevent the most common mistakes and misuse of youtube-dl:
- First of, make sure you are using the latest version of youtube-dl. Run `youtube-dl --version` and ensure your version is 2020.03.08. If it's not, see https://yt-dl.org/update ... | site-support-request | low | Critical |
582,302,566 | opencv | unstable frame count | Hi,
I am getting different frame count for the same video on different machines.
**Code used to find frame count:**
```
import cv2
cap= cv2.VideoCapture("2653582916.mp4")
i=0
while(cap.isOpened()):
ret, frame = cap.read()
if ret == False:
break
i+=1
print(i)
```
**Output on machin... | bug,category: videoio | medium | Major |
582,372,238 | angular | Service Worker "Quota exceeded" can break all JS (ERR_FAILED) | <!--🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅
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,effort2: days,help wanted,freq1: low,area: service-worker,state: confirmed,P3 | low | Critical |
582,404,927 | go | cmd/go: document/clarify how `go env` infers `CC` and `CXX` when not set. | <!--
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 linux/amd64
</pre>
### Does this issue reproduce... | Documentation,NeedsFix | low | Critical |
582,433,756 | rust | found a bug in the borrow checker | <!--
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
fn main() {
let mut zero = &mut 0;
let mut one = 1;
{
let mut _r = &mut zero;
let mut y = &mut one;
... | A-borrow-checker,T-compiler,C-bug,fixed-by-polonius | low | Critical |
582,437,283 | rust | Type Parameter Name becomes “_” in Part of Error Message | ```rust
fn main() {
let x1 = [Ok(1), Ok(0)];
}
```
([Playground](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=bc4501ab19de8c78f0c5326351412108))
Errors:
```
Compiling playground v0.0.1 (/playground)
error[E0282]: type annotations needed for `[std::result::Result<i32... | C-enhancement,A-diagnostics,T-compiler,D-papercut | low | Critical |
582,451,922 | pytorch | Semantic differences between forward and backward of upsampling2d/3d in channels last (NHWC, NDHWC) format. | ## 🚀 Feature
Preserving memory input memory format in upsampling nearest model op. Forward and backward.
## Motivation
At the moment, upsample nearest kernels, forward and backward, return output in the contiguous format, ignoring the input memory format. For example, if the input was channel last the output wi... | triaged,module: memory format | low | Minor |
582,460,106 | pytorch | [JIT] Tensor.add_ incorrect schema matching on overloads | # Reproduce
```
#!/usr/bin/env python3
import torch
from torch import Tensor
from torch.testing import FileCheck
from torch.testing._internal.common_utils import TestCase
class JitAtenOp(TestCase):
def test_use_in_place_add(self):
"""
For native::add_(..), JIT chose the wrong overl... | oncall: jit,triaged | low | Critical |
582,463,081 | rust | Bad diagnostic for match ergonomics | This is a reopening of https://github.com/rust-lang/rust/issues/51743 to not lose track of the diagnostic issue which still remains to this day.
Match ergonomics can create quite confusing errors.
For instance:
```rust
fn main() {
let option = MyOption::MySome(String::new());
option.take();
}
enum... | E-hard,C-enhancement,A-diagnostics,P-low,T-compiler,E-medium | low | Critical |
582,466,414 | TypeScript | TypeScript import suggestion not showing symlinked modules | *TS Template added by @mjbvz*
**TypeScript Version**: 3.8.3
**Search Terms**
- yarn yarn2
---
[ts-yarnv2-symlink.zip](https://github.com/microsoft/vscode/files/4334696/ts-yarnv2-symlink.zip)
Issue Type: <b>Bug</b>
Open the included project and run `yarn` at root to initialize everything. This is a `yar... | Needs Investigation | low | Critical |
582,508,899 | go | x/crypto/acme: better document Register behavior when account already exists | Currently when `Client.Register` is called and an account already exists the behavior diverges based on the server implementation. If the server is pre-8555 it just returns the account object and no error, if it is 8555 compliant it returns no account object and a `ErrAccountAlreadyExists` error. In the latter case it ... | Documentation,NeedsInvestigation | low | Critical |
582,513,268 | node | RFC: update Pull Requests with summary of CI failures | `ncu-ci` is quite useful to get summary of failures in our CI, but it still requires us to use an external program to fetch the information from Jenkins. We could use our `github-bot` to post the information generated by `ncu-ci` back to the PR, either as a new comment or by editing the bot's comment on that PR. This w... | meta | low | Critical |
582,520,490 | flutter | viewport.dart: Failed assertion: 'correctedOffset.isFinite': is not true.` | ## Steps to Reproduce
1. Run `flutter create bug`.
2. Replace main.dart with [this one](https://gist.github.com/afitz0/dd59f55b85e28900727b145d23de526a).
3. Run app, click FAB.
**Expected results:** List scrolls to the bottom.
**Actual results:** `'package:flutter/src/rendering/viewport.dart': Failed asserti... | c: crash,framework,f: scrolling,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-framework,triaged-framework | low | Critical |
582,529,304 | thefuck | Feature request - "fuck" for "fuck" that's misspelled | If I say fruck or fuk, I want to say "fuck" and it should give me the corrent version of the first fuck. | wontfix | medium | Critical |
582,546,242 | electron | Better support for --js-flags and other CLI arguments in a packaged app | ### Preflight Checklist
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have s... | enhancement :sparkles: | medium | Critical |
582,570,463 | pytorch | NO_CUDA and NO_DISTRIBUTED referenced in docs | ## 📚 Documentation
The old build variables NO_CUDA and NO_DISTRIBUTED are referenced in CONTRIBUTING.md
| module: docs,triaged | low | Minor |
582,576,170 | TypeScript | Structural Comparison of Circular Tuples | **TypeScript Version:** 3.8.2
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** structure, resolve, compare, equality, type, mismatch, circular, tuple, cycle, recursive
**Code**
I'm trying to represent some type information for runtime use. I de... | Bug,Domain: Conditional Types,Rescheduled | low | Critical |
582,607,721 | pytorch | [torch.jit.script] Support tensor indexing after an Ellipsis | ## 🚀 Feature
Support Tensor indexing after an ellipsis: right now the following code:
```python
@torch.jit.script
def zero_diag(inputs: torch.Tensor) -> torch.Tensor:
dim = inputs.shape[-1]
inputs[..., torch.range(0, dim), torch.range(0, dim)] = 0
```
fails with:
```
Ellipses followed by tens... | oncall: jit,triaged,enhancement | low | Minor |
582,612,265 | pytorch | [torch.jit.script] Allow `range` to index into Tensor | ## 🚀 Feature
Support using `range` objects as indexes into a Tensor.
Right now, code like:
```
@torch.jit.script
def f(inputs):
inputs[range(5), range(5)]
```
will fail with
```
RuntimeError:
range cannot be used as a value:
File "<ipython-input-120-c84b77ea824c>", line 3
@torch.jit.script
... | oncall: jit,triaged,enhancement | low | Critical |
582,618,860 | terminal | Strange behavior with ENABLE_VIRTUAL_TERMINAL_INPUT | ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT | # Environment
```none
Windows build number: Microsoft Windows [Version 10.0.19041.153]
PowerShell Core 7.0.0
.NET Core 3.1.200
```
# Steps to reproduce
C# program:
```csharp
using System;
using System.Diagnostics;
using System.Text;
using static Vanara.PInvoke.Kernel32;
namespace Test
{
sta... | Product-Conhost,Help Wanted,Area-Input,Issue-Bug,Priority-2,Area-CookedRead | medium | Critical |
582,661,302 | flutter | “Lost connection to device.” Frequently occurs in Desktop Embedding | <!-- 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... | tool,platform-windows,a: desktop,P2,team-windows,triaged-windows | low | Critical |
582,675,372 | rust | Pattern matching on constant in nested macro invocation | I am not sure if this is bug or known issue, but I came across strange behavior when trying to match constant expression in macro:
```rust
macro_rules! format_index {
(0) => ("_0");
}
pub fn main() {
println!("{}",format_index!(0)); // This line compiles
}
```
This code works just fine, as expected ... | A-macros | low | Critical |
582,678,462 | pytorch | [jit] `__hash__` magic method is missing | ```python
class X(object):
def __init__(self):
pass
def __hash__(self):
return 2
@torch.jit.script
def fn():
x = X()
return hash(x)
print(fn())
```
should work but errors out
cc @suo | oncall: jit,low priority | low | Critical |
582,700,170 | godot | GPU Driver crash on GLES 3 on Geforce 210 | >What hardware I have?
Geforce 210
>What's my issue?
Windows and Windows manager crash if you switch to the GLES 3 mode or create a GLES 3 project.
>What version
It keeps happening since 3.2 | bug,topic:rendering,confirmed,crash | low | Critical |
582,715,174 | TypeScript | Destructured tuple elements are no longer literals | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Bug,Help Wanted | low | Critical |
582,750,380 | rust | Confusing error message with `str::parse` | The following code:
```rust
fn bar() -> Result<(), std::num::ParseIntError> {
let a = "Hello".parse()?;
Ok(())
}
fn main() {}
```
gives the following error message:
```
error[E0277]: the trait bound `(): std::str::FromStr` is not satisfied
--> src/main.rs:2:21
|
2 | let a = "Hello".p... | C-enhancement,A-diagnostics,T-compiler | low | Critical |
582,761,177 | terminal | Epic: Make input and output mode process state instead of global state | Notes:
> The input and output modes are global state, and while we're thinking about what it would take to change that we're definitely concerned about backwards compatibility.
> When an application exits and leaves the console in a state different from the one it has when it launched (which can happen for a number... | Product-Conhost,Area-Server,Issue-Scenario | low | Critical |
582,787,298 | rust | Possibly improve the `err.stash(...)`ing API's macro friendliness | E.g. consider implementing https://github.com/rust-lang/rust/pull/69537#issuecomment-593082200 at some point. Right now, we will allow overwriting a stashed diagnostic, so when combined with macros, the diagnostics after the first one will be of worse quality. | C-enhancement,A-diagnostics,P-low,A-macros,T-compiler | low | Minor |
582,836,393 | pytorch | Flaky test test_ctc_loss_cuda on Windows | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
```
======================================================================
ERROR: test_ctc_loss_cuda (__main__.TestAutogradDeviceTypeCUDA)
----------------------------------------------------------------------
Traceback (most recent call l... | high priority,module: autograd,module: cuda,triaged,module: flaky-tests | low | Critical |
582,858,945 | pytorch | Extend nn.functional.softmax for arbitrary dimensions | ## 🚀 Feature
<!-- A clear and concise description of the feature proposal -->
Allow dim in softmax to be: dim (python:int or tuple of python:ints).
## Motivation
<!-- Please outline the motivation for the proposal. Is your feature request related to a problem? e.g., I'm always frustrated when [...]. If this is r... | module: nn,triaged,function request | low | Major |
582,897,181 | pytorch | Set the number of CUDAStream | ## 🚀 Feature
Allow setting the number of `CUDAStream` in the stream pools
## Motivation
When running multiple inferences using different streams from different threads, the current concurrency limit is 32 (as stated in https://github.com/pytorch/pytorch/blob/master/c10/cuda/CUDAStream.h). We're using T4 which all... | feature,module: cuda,triaged | low | Minor |
582,912,585 | svelte | Conditional bind:this (allow undefined and conditional targets) | **Is your feature request related to a problem? Please describe.**
It has a lot of possible applications. Here's the latest problem I faced today.
I have a big paginated list, that has page buttons in the bottom of the list, and I want to scroll the list to the first item whenever I change the page. I want to use... | feature request,awaiting submitter,temp-stale | low | Major |
582,915,050 | terminal | ReadFile: Ctrl+Z sends EOF even if console is in 'raw' mode | # Environment
```none
Windows build number: Microsoft Windows [Version 10.0.19041.153]
.NET Core 3.1.200
```
# Steps to reproduce
C# program:
```csharp
using System;
using System.Diagnostics;
using System.Text;
using static Vanara.PInvoke.Kernel32;
namespace Test
{
static class Program
... | Product-Conhost,Help Wanted,Area-Server,Issue-Bug,Priority-2,Impact-Compatibility | low | Critical |
582,923,889 | pytorch | Addition of Siamese loss or contrastive loss function | ## 🚀 Feature
I would like to contribute to the pytorch (in python and c++) by adding the [ contrastive loss/siamese_margin_loss](http://yann.lecun.com/exdb/publis/pdf/hadsell-chopra-lecun-06.pdf) function which is usually implemented for siamese networks
## Motivation
I have been working on siamese networks... | feature,module: loss,triaged | low | Major |
582,943,539 | ant-design | labelInValue property does not work on antd <Select> | - [x] 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://codesandbox.io/s/antd-reproduction-template-2etxo)
### St... | Inactive | low | Minor |
582,982,209 | pytorch | Expanded tensors don't work as registered buffers | ## 🐛 Bug
Consider the following code ([gist](https://gist.github.com/heiner/4e8b34c3edd66a04b11e8a3798e14656)):
```python
import torch
from torch import nn
class Module(nn.Module):
def __init__(self):
super(Module, self).__init__()
self.register_buffer("mybuf", torch.arange(12).vi... | module: nn,module: error checking,triaged,module: partial aliasing | low | Critical |
583,018,269 | flutter | Multicast_MDNS not working on iOS | ## MDNS don't work in iOS
Hello,
I'm using the MDNS function, it works well on Android but not on iOS :
```
Future<void> _incrementCounter() async{
print('Start function');
const String name = '_chromecast._tcp.local';
final MDnsClient client = MDnsClient();
await client.start();
pr... | platform-ios,package,p: multicast_dns,P2,team-ios,triaged-ios | low | Critical |
583,019,832 | pytorch | libtorch memory leak | ## 🐛 Bug
result in memory leak when use libtorch. but i think that it is very strange. because i only define `torch::DeiviceType` , then got **bug1**
### bug1
```
still reachable: 884,654 bytes in 13,927 blocks of which reachable via heuristic: stdstring :436062 bytes in 5832 blocks
```
### bug2
```
possibl... | module: cpp,module: memory usage,triaged | low | Critical |
583,078,249 | vscode | Variable substitution with environment - allow for fallback to default | <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search existing issues to avoid creating duplicates. -->
<!-- Describe the feature you'd like. -->
When doing variable substitution with environment (at debugging launch, but could be useful for tasks too - `${en... | feature-request,variable-resolving | medium | Critical |
583,082,178 | node | HTTP2 does not support system Host | set a "domain ip" mapping in system host file, it does not work when use
http2.connect('https://domain').
The error shows:
`events.js:174
throw er; // Unhandled 'error' event
^
Error [ERR_HTTP2_ERROR]: Protocol error
at Http2Session.onSessionInternalError [as error] (internal/http2/core.js:6... | http2 | low | Critical |
583,084,643 | vscode | Git - Version control does not honor "remote.origin.push" git config. | - VSCode Version: 1.41.1
- OS Version: Cent OS 7
Steps to Reproduce:
1. Set the push to git config
```git config --global remote.origin.push refs/heads/master:refs/for/master```
2. Use the push context menu on version control tab.
git config is not considered.
git output shows the following command used t... | help wanted,feature-request,git | low | Minor |
583,084,712 | youtube-dl | Support Laracasts | ## Checklist
- [x] I'm reporting a new site support request
- [x] I've verified that I'm running youtube-dl version **2020.03.08**
- [x] I've checked that all provided URLs are alive and playable in a browser
- [x] I've checked that none of provided URLs violate any copyrights
- [x] I've searched the bugtracker fo... | site-support-request | low | Critical |
583,090,939 | rust | `unused_parens` is not emitted for exprs used in macro. | ```rust
fn main() {
let x = vec![((8))];
println!("Hello, world!, {:?}",x);
}
```
and
```rust
fn main() {
println!("Hello, world!, {:?}", ((8)));
}
```
do not have any warnings while
```rust
fn main() {
let x = ((8));
println!("Hello, world!, {:?}",x);
}
```
emits `unused_parens... | A-lints,A-macros,T-compiler,C-bug,L-unused_parens | low | Minor |
583,139,306 | vscode | Terminal doesn't flush all line data before firing onExit | - VSCode Version: 1.43.0
- OS Version: Windows 10 version 1809
- Does this issue occur on the latest insiders build?: Yes
- Does this issue occur when all extensions are disabled?: Yes
Steps to Reproduce:
1. Create a `Task` which uses `CustomExecution` to output to a `PseudoTerminal` and specify one or more `P... | bug,tasks,terminal-process | low | Critical |
583,161,582 | electron | Treat DevTools windows as regular windows | ### 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/... | enhancement :sparkles: | low | Minor |
583,164,348 | svelte | animate:flip glitches when each block is updated during animation | When a list iterated in a keyed `each` block is updated while some of its elements are being animated with the `animate:flip` directive, all the current animations glitch.
https://svelte.dev/repl/7197a0f2d51d47f8b9b2d6e7aa5d401c?version=3.20.1 | temp-stale | low | Major |
583,180,736 | flutter | LocalizationsDelegate should use the supportedLocales listed in MaterialApp | ## Use case
When creating a class that extends `LocalizationsDelegate`, it is required to `@override isSupported` returning a bool if the locale is supported.
That's a bit redundant given that the MaterialApp's localizationsDelegate and supportedLocales property already required listing of the supported locales.... | framework,f: material design,a: internationalization,c: proposal,team-design,triaged-design | low | Minor |
583,185,891 | flutter | prefixIconError or a boolean in the InputDecoration props ? | <!-- 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: text input,framework,f: material design,c: proposal,team-design,triaged-design | low | Critical |
583,216,162 | godot | Jitter in projects | **Godot version:**
3.11 & 3.2.1
**OS/device including version:**
Windows 10
**Issue description:**
I have jitter every ~2 seconds in my Godot projects. Did some test and reduced it to the basics.
I included a simple sample project with a moving kinematicbody2D that moves with:
move_and_collide(Vector2(120,0)... | bug,topic:rendering,topic:physics | low | Critical |
583,226,214 | PowerToys | Add taskbar separators | # Summary of the new feature/enhancement
I have my apps grouped in the taskbar by function (e.g. all my text/code editors are next to each other, all my email/chat apps are next to each other, all my browsers, office apps, games, etc.) Having some sort of space or vertical bar between the groups would improve the le... | Idea-New PowerToy,Product-Tweak UI Design | medium | Major |
583,232,577 | rust | `unused_parens` never checks expressions behind references | ```rust
fn main() {
let _ = &(5);
// This does not warn
}
```
[playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=4f7d927326c626229ddbc94b96fc2e71)
@rustbot modify labels: +T-compiler
| A-lints,T-compiler,C-bug,L-unused_parens | low | Critical |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.