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 |
|---|---|---|---|---|---|---|
704,680,893 | flutter | Add test to ensure that MetalKit does not get linked into the final Flutter dylib. | A third-party dependency of Flutter may link (but not use) use a framework that is not available on the the minimum supported versions of iOS. A test must be added to ensure we don't get caught out by this. An example of such [a failure is here](https://github.com/flutter/flutter/issues/64017). | a: tests,team,platform-ios,engine,P3,team-ios,triaged-ios | low | Critical |
704,688,242 | pytorch | Support unfold for integral types (long, byte etc) tensors | It would be useful for mode filter that should operate on discrete inputs (for smoothing discrete outptus):
```python
import torch
def mode_pooling1d(tensor, kernel_size, stride, padding):
return torch.nn.functional.unfold(tensor[:, None, None, :], kernel_size = (1, kernel_size), padding = (0, padding), strid... | feature,module: nn,triaged,actionable | low | Critical |
704,691,069 | pytorch | Unite/unify tensor.unfold with F.unfold and make them more performant (zero-copy or little-copy with stride tricks, as in NumPy) | Two versions exist for seemingly same functionality:
1) tensor.unfold supports Long tensors (F.unfold does not: https://github.com/pytorch/pytorch/issues/44989)
2) tensor.unfold returns different shape layout
3) tensor.unfold has differnet argument names: size/step instead of kernel_size/stride
4) tensor.unfold d... | module: nn,triaged,module: ux | low | Major |
704,695,930 | pytorch | [jit] cann't pass class objects across boundary of tracing/scripting | ```python
import torch
import torch.nn as nn
class Foo(object): # noqa: B903
def __init__(self, x, y):
self.x = x
self.y = y
class MyTraceModule(nn.Module):
def __init__(self):
super().__init__()
@staticmethod
@torch.jit.script
def forward_foo(input: Foo)... | oncall: jit,weeks | low | Critical |
704,699,726 | youtube-dl | Can not search more than 20 result with youtube-dl in Google colab (next page problem!) | ## Checklist
<!--
Carefully read and work through this check list in order to prevent the most common mistakes and misuse of youtube-dl:
- Look through the README (http://yt-dl.org/readme) and FAQ (http://yt-dl.org/faq) for similar questions
- Search the bugtracker for similar questions: http://yt-dl.org/search-i... | question | low | Critical |
704,714,437 | node | workers: insufficient detail when cloneable deserialization fails | Suppose we have an internal object that we want to make cloneable to a Worker..
```js
class MyObject extends JSTransferable {
constructor() {}
[kClone]() {
return {
data: {},
deserializeInfo: 'internal/whatever'
};
}
[kDeserialize]({}) {}
}
```
If the `deserializeInfo` p... | worker | low | Critical |
704,736,629 | pytorch | Median / quantile / mode / rank / percentile pooling | Using F.unfold+torch.mode seems much slower than F.max_pooling1d (maybe batches over a wrong dimension?) (single-channel tensor of width 3652642, kernel_size = 128, stride = 1), so a native version should be much faster.
This is useful for smoothing categorical (integral) data like pixel category id maps in image se... | module: performance,triaged,module: sorting and selection,module: pooling | low | Major |
704,779,550 | pytorch | torch.jit saves nonpersistent buffers | ## 🐛 Bug
nonpersistent buffers were added recently: https://github.com/pytorch/pytorch/issues/18056 [doc](https://pytorch.org/docs/master/generated/torch.nn.Module.html?highlight=buffer#torch.nn.Module.register_buffer)
A fantastic addition, but alas it doesn't work with torchscript. It doesn't skip this type of ... | oncall: jit,days | low | Critical |
704,860,942 | rust | Tracking Issue for feature(unix_socket_ancillary_data) | Tracking issue for `feature(unix_socket_ancillary_data)` to extend `UnixStream` and `UnixDatagram` to send and receive ancillary data. For example file descriptors.
### Unresolved Questions
- Review the `SocketAncillary` struct before stabilization to ensure it is compatible with all OSes.
- `fuchsia`, `haiku`, `... | T-libs-api,C-tracking-issue,A-io,Libs-Tracked,O-unix | high | Critical |
704,885,057 | deno | feature proposal: Deno builtin function & ops to create an anonymous pipe. | I propose idea of an additional builtin function `Deno.pipe` to open a new anonymous pipe. The call result ultimately would provide two resource ids which could be used to assemble process pipelines.
The key benefit compared to alternatives:
* Compared to using `Deno.run` with stdout and stdin using the piped opti... | cli,public API,suggestion | low | Major |
704,887,994 | TypeScript | Custom array index types | ## Search Terms
custom array index type
## Suggestion
Arrays are indexed by integers, cool. But they could also be indexed by something equivalent to an integer, like an enum-like class or wrapper around a number. For example:
```ts
class PlayerNumber { constructor(readonly n: number); valueOf() { return this.... | Suggestion,Awaiting More Feedback | low | Critical |
704,896,555 | rust | Tracking Issue for feature(unix_socket_peek) | This is a tracking issue for methods `peek` and `peek_from` on `UnixStream` and `UnixDatagram` (#73761).
The feature gate for the issue is `#![feature(unix_socket_peek)]`.
### Public API
```rust
impl UnixStream {
pub fn peek(&self, buf: &mut [u8]) -> io::Result<usize>
}
impl UnixDatagram {
pub fn p... | T-libs-api,C-tracking-issue,A-io,Libs-Tracked,O-unix | low | Major |
704,903,253 | material-ui | [Autocomplete] With `autoComplete` + `autoHighlight` the highlighted option should appears inline | <!-- Provide a general summary of the issue in the Title above -->
Hi,there. I'm not sure this is a bug or feature. When `<Autocomplete autoComplete autoHighlight />`, the first option not appears inline after the input cursor immediately. It work as expected when selection move up/down.
<!--
Thank you very mu... | component: autocomplete,ready to take | medium | Critical |
704,904,330 | vscode | Add support for new `editor.renderWhitespace` in the View menu | Issue Type: <b>Feature Request</b>
Currently the View menu only supports a boolean `Render Whitespace` menu option. It would be nice if it was improved to support all the new values that the config option `editor.renderWhitespace` supports.
VS Code version: Code 1.49.1 (58bb7b2331731bf72587010e943852e13e6fd3cf, 2... | feature-request,menus | low | Minor |
704,918,351 | PowerToys | [PowerRename] Add option to merge folders with conflicting names after a rename | ## 📝 Provide a description of the new feature
There should be an option to merge folders with conflicting names after renaming.
Given the following folder structure:
```
05-01
05-02
05-03
05-04
06-01
06-02
06-03
06-04
```
I want to remove the dash and the last two digits from the folder names.
I ... | Idea-Enhancement,Product-PowerRename | low | Major |
704,975,563 | flutter | Enforce consistency of UI attached to FlutterEngine | We currently have a concept of having Android UI components being attached to the FlutterEngine and its subcomponents. But they have parallel implementations.
On the one hand, FlutterEngine.getActivityControlSurface expect custom FlutterView-holding activity implementers to register its activity lifecycle via attac... | team,platform-android,engine,P3,team-android,triaged-android | low | Minor |
704,987,861 | godot | 2 active directions when controller D-Pad quickly changes direction | <!-- 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.3 and 3.2.2
**OS/device including version:**
<!-- Specify GPU model, drivers, an... | bug,platform:linuxbsd,confirmed,needs testing,topic:input | low | Major |
704,992,375 | rust | Superfluous errors for missing lifetime in async function argument | In the example below (which is a little convoluted -- sorry, I already spent quite a bit reducing it), I'm getting what amounts to three compiler errors. But, when I fix the cause of the first error by applying the suggested fix, the other two errors go away. It feels like the compiler could be smarter about this and o... | C-enhancement,A-diagnostics,T-compiler,A-async-await,AsyncAwait-Triaged,D-verbose | low | Critical |
704,995,812 | rust | Consider making `htmldocck` more specific | Currently `htmldocck` allows the text in rustdoc tests to be shorter, but not longer than the expected test. So if the actual text were `Option<T` and you wrote `Option<T>`, it would fail the test. But if the actual were `Option<T>` and the expected were `Option<T`, it would pass the test.
This behavior is not super... | A-testsuite,T-rustdoc | low | Minor |
705,001,013 | You-Dont-Know-JS | Chapter 2: Functions, Confusing Grammar | Last sentence in the 7th paragraph is phrased in a confusing way:
> Not all languages treat functions as values, but it's essential for a language to support the functional programming pattern, as JS does.
Some suggested alternatives:
- Not all languages treat functions as values, but it's essential for a langua... | errata | low | Minor |
705,001,480 | go | cmd/doc: match major module versions greater than 1 without needing a /vN suffix | ### What version of Go are you using (`go version`)?
I'm using Go 1.15, but I confirmed that none of the behavior I describe below is any different as of
go version devel +a3868028ac Sat Sep 19 09:43:15 2020 +0000 linux/amd64
### Does this issue reproduce with the latest release?
Yes
### What operati... | help wanted,NeedsFix,modules | low | Major |
705,029,601 | deno | Deno.exit terminates entire process when using run --watch | I'm running my script with `deno run --watch --unstable myscript.ts`. When it encounters a call to `Deno.exit`, the script terminates, including the file watcher.
I expected `Deno.exit` to terminate the script, but keep the file watcher alive. This is how Node's `process.exit` behaves when used with nodemon.
It s... | bug,cli,help wanted,--watch | medium | Major |
705,038,349 | pytorch | torch.distributed launch.py is hanged. (pid, sts) = os.waitpid(self.pid, wait_flags) | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
## To Reproduce
Steps to reproduce the behavior:
1.running in the terminal :python3.5 -m torch.distributed.launch --nproc_per_node=2 --master_addr 127.0.0.2 --master_port 29501 train.py
1.after many epochs training, it randomly hanged, ... | oncall: distributed,triaged | low | Critical |
705,042,711 | rust | Move the doc directory to separate repo | The doc directory contains documentation for various tools and also submodules for various other learning resources. I think it should be moved out to be on its own separate repo. This would help documentation writers like us to clone only the docs without cloning the entire compiler sources. Plus it has become a quite... | A-docs,T-infra,A-meta,A-contributor-roadblock | medium | Major |
705,042,865 | vscode | Add selection to next Find match does not work with Regex Find Mode | <!-- ⚠️⚠️ 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,help wanted,good first issue,editor-find,editor-multicursor | low | Critical |
705,054,795 | go | x/tools/gopls: workspace/didChangeWatchedFiles RegisterCapability globs are too broad | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version devel +06f7e655d1 Fri Sep 18 07:56:50 2020 +0000 linux/amd64
$ go list -m golang.org/x/tools
golang.org/x/tools v0.0.0-20200918232735-d647fc253266
$ ... | help wanted,NeedsFix,gopls,Tools | low | Critical |
705,059,579 | pytorch | torch rpc cannot handle UnsupportedNodeError exception | ## 🐛 Bug
torch/distributed/rpc/internal.py: handle_exception() function (https://github.com/pytorch/pytorch/blob/master/torch/distributed/rpc/internal.py#L177): if the exception is type is UnsupportedNodeError (https://github.com/pytorch/pytorch/blob/master/torch/jit/frontend.py#L105), the program will crash with "... | oncall: distributed,triaged,module: rpc | low | Critical |
705,067,994 | godot | Data being optimized out during debugging in debug builds. | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
3.2.3
**OS/device including version:**
Linux Mint 18.3
Clang 11.0.0
GDB 8.2
**Issue description:**
When debugging in QT creator, occasionally... | topic:buildsystem | low | Critical |
705,071,719 | godot | Auto load singletons broken on *activated* plugin | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
could be related to https://github.com/godotengine/godot/issues/30064
**Godot version:**
Godot Engine v3.2.3.stable.mono.officia
**OS/device including version:**
Win... | topic:editor,topic:plugin | low | Critical |
705,085,167 | rust | rustdoc: Please process top-level README by default | gitlab and crates.io both like to render the toplevel `README` (normally for a Rust crate, `README.md`). rustdoc formats crate-level documentation in `src/lib.rs`.
The result is that for many crates, the `README` contains very useful documentation not replicated in the rustdoc. For example, an introduction, or usa... | T-rustdoc,C-feature-request | low | Major |
705,103,658 | vscode | High Contrast theme's selection is not easily visible in the IntelliSense pop-up. | This has been annoying me for years. The thin dotted line is not good enough to notice which one is the selected one in the IntelliSense pop-up. Below is the screen recording in which I keep pressing up/down arrows to move the selection in the pop-up; you tell me which one is the selected one!
https://imgur.com/a/ET... | themes,accessibility,polish | low | Minor |
705,120,545 | youtube-dl | nana-music.com | <!--
######################################################################
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 |
705,125,536 | godot | Inspector: unable to edit scripts exported using export(Array, Script) | <!-- 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.3 stable
**OS/device including version:**
<!-- Specify GPU model, drivers, and the bac... | bug,topic:editor | low | Minor |
705,136,128 | rust | Build hang on Linux | **Problem**
I am seeing the build process hang at the last few steps when attempting to build [this particular repository](https://github.com/danieldeankon/hypermine) on Linux using either the nightly or the beta toolchain. I've seen this happen for the repository both when building locally (Linux Mint) and in Github'... | E-hard,E-needs-test,P-medium,T-compiler,I-hang | high | Critical |
705,159,596 | PowerToys | Change taskbar to enable different workloads (home, designer, web dev, app dev, ...) | ## Description
I use the taskbar a lot. I would like to see if you guys could implement a feature on powertoys that let you have diferent taskbars and navigate between them. Example: I could have a taskbar for my design apps, other for my productivity apps, other for my programming apps, other for my entertainment a... | Idea-New PowerToy | low | Major |
705,172,787 | go | cmd/go: improve error message for mismatched major versions | related to
https://github.com/golang/go/issues/35732
which remains the top google hit for this error
what does one do to get this simple example to work?
~~~
jaten@jatens-MacBook-Pro ~/etcd-embed $ go build
go: errors parsing go.mod:
/Users/jaten/etcd-embed/go.mod:3: require go.etcd.io/etcd: version "v3.4.... | NeedsFix,modules | low | Critical |
705,183,371 | vscode | Option to combine tabs and title bar | <!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ -->
<!-- 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. -->
I generally use VS Code in fullscreen mode to ma... | feature-request,ux,workbench-tabs,titlebar | high | Critical |
705,200,400 | opencv | QRCodeDetector fails randomly (+samples) | ##### System information (version)
- OpenCV => 4.4.0
- Operating System / Platform => MacOS 10.13.6
- Compiler => Python 3.6.12, Conda / Jupyter notebook
##### Detailed description
I am trying to detect QR codes within several hundred images (each one contains a code). About a third of them fail to read th... | bug,category: objdetect,confirmed | low | Minor |
705,213,779 | pytorch | Custom Datatypes in Tensors | ## 🚀 Feature
<!-- A clear and concise description of the feature proposal -->
The ability to create tensors with custom objects.
## 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 related to another... | triaged,module: numpy,needs research | low | Major |
705,240,658 | rust | When linking statically, native libraries should go inside --start-group/--end-group for robustness | When rustc links rlib libraries, it puts all the libraries inside a `--start-group`/`--end-group` pair, causing the linker to resolve backreferences from a library later in the command line to one earlier in the command line.
However, when rustc links native libraries, it puts libraries on the command line in whatev... | A-linkage,C-bug | medium | Critical |
705,253,324 | flutter | [tool_crash] FileSystemException: Getting current working directory failed, OS Error: No such file or directory, errno = 2 | ## Command
```
flutter run --target lib/dev_main.dart --flavor dev -d [iPhone Xs Max iOS 14.2 18B5052h]
```
## Steps to Reproduce
1. just ```flutter run```
Its ok when my device iOS 14.0 GM with Flutter 1.20.4
## Logs
FileSystemException: Getting current working directory failed, OS Error: No such file or d... | c: crash,tool,P2,team-tool,triaged-tool | low | Critical |
705,265,240 | pytorch | about benchmark issue | Under the condition of benchmark=true, the training is repeated twice, and each training epoch=50, the model trained twice has a much worse effect on the test set. I know that in the case of benchmark=true, it is not reproducible during training, but the result is a bit worse, and the recall rate has dropped from 40.3%... | module: cudnn,triaged | low | Major |
705,268,074 | go | net/http: slow io.Copy(http.ResponseWriter, *os.File) with Content-Length | <!--
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.15.2 linux/amd64
</pre>
### Does this issue reproduce... | help wanted,NeedsInvestigation | medium | Critical |
705,271,020 | create-react-app | npm ERR! Unexpected end of JSON input while parsing near '...vJGOJxbqK+iKkECap63rB' | This error is caused by having a space in your User name (i.e the name of your machine) for instance my machine name is Themba Alex, npx has an issue when such is the case, the solution to this is to open your terminal and run this command:
**npm config edit** afterward go to every line that is starting with
;cac... | stale | low | Critical |
705,324,071 | flutter | [tool_crash] ProcessException: End-of-central-directory signature not found. Either this file is not a zipfile, or it constitutes one disk of a multi-part archive | Detailed error:
`[tool_crash] ProcessException: The command failedStdout:Stderr:[/home/ramamoorthy/snap/flutter/common/flutter/bin/cache/downloads/storage.googleapis.com/flutter_infra/flutter/4654fc6cf6416daae78eac2c211ad84c46e21625/linux-x64/artifacts.zip] End-of-central-directory signature not found. Either thi... | c: crash,tool,platform-linux,P2,team-tool,triaged-tool | low | Critical |
705,503,855 | godot | Match don't match | Found nothing like my issue with : _is:issue "match" in:title label:bug state:open_ searching's filter.
**Godot version:**
Godot Engine v3.2.3.stable.official
**OS/device including version:**
Ubuntu 20.04
GPU : Nvidia GeForce GTX 970
GPU driver : nvidia driver 450 (libre)
Proc : AMD® Ryzen 9 3900x
**... | discussion,topic:gdscript | medium | Critical |
705,530,411 | flutter | [Linux] Image gets rendered with nearest filtering | ## Steps to Reproduce
<!-- You must include full steps to reproduce so that we can reproduce the problem. -->
1. Clone and https://github.com/flutter/gallery.
2.
```
flutter config --enable-linux-desktop
flutter create .
flutter run -d linux
```
**Expected results:**
Flutter logo should be rendered wi... | engine,a: quality,platform-linux,a: images,a: desktop,P2,team-linux,triaged-linux | low | Critical |
705,555,946 | flutter | App crashes when drawing a number of custom painters | ```
F/libc (28298): Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x0 in tid 28379 (1.ui), pid 28298 (cn.plaso.yxt)
*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
Build fingerprint: 'HUAWEI/SCM-W09/HWSCM:10/HUAWEISCM-W09/10.1.0.165C00:user/release-keys'
Revision: '0'
ABI: 'arm64'
... | engine,c: performance,has reproducible steps,P2,c: fatal crash,found in release: 3.3,found in release: 3.6,team-engine,triaged-engine | low | Critical |
705,578,104 | go | math/big: a fast expNN algorithm when n is large |
An improved Montgomery algorithm, up to 50% performance improvement. It utilizes the particularity of low-order multiplication and mod B^n-1 algorithm to reduce the number of calculations. I have written the code in CL, if anybody are interested in this algorithm, I will add the corresponding test and detailed explan... | Performance,NeedsInvestigation | low | Major |
705,628,896 | flutter | Support running integration tests with the Flutter Tool | ## Use case
Integration tests today are run by users using the following command:
```sh
flutter drive \
--driver=test_driver/<driver_file> \
--target=integration_test/<test file>
```
There is some friction when doing things like globbing over and running all tests in the `integration_test/` directory. ... | a: tests,c: new feature,tool,c: proposal,f: integration_test,P3,team-tool,triaged-tool | medium | Major |
705,640,460 | go | x/website: Have home page "Download Go" button point to the install page. | This is an issue requesting a change to documentation.
The "Download Go" button at https://golang.org/ links to a page that is probably not the best install experience for most new users. Now that we have a page from which the user can both download and install Go with simpler steps, we should link to that instead.
... | NeedsInvestigation,website | low | Minor |
705,733,414 | go | x/pkgsite: new major version not surfaced when it does not yet have a release tag | ### What did you do?
In the `pkg.go.dev` search bar, enter `go.etcd.io/etcd` and press the Enter key.
### What did you expect to see?
“The latest major version is v3”, per #37765, due to the existence of a [`module go.etcd.io/etcd/v3`](https://github.com/etcd-io/etcd/blob/353fcf09242749fcab29befe1b44c1c159e209... | NeedsFix,pkgsite | low | Minor |
705,750,370 | create-react-app | Tree shaking only works with process.env.NODE_ENV? | I'm finding that tree shaking only works with `process.env.NODE_ENV` and won't work with `process.env.REACT_APP_[my variable name]`
For example, if I do the following `myModule` is not showing up in my production build.
```
import {myFunction} from './myModule'
if(process.env.NODE_ENV === 'development') {
... | needs triage | medium | Major |
705,767,981 | flutter | Instructions on how to debug errors thrown by native code in plugins | I have been trying to implement subscription purchase for iOS with the plugin **in_app_purchase**. It fails with a non-specific error which makes debugging hard.
It would be great if you had a documentation section on how to debug native code in plugins. I get the impression that the errors are being dumbed down by ... | platform-ios,team-ecosystem,P2,a: plugins,triaged-ecosystem | low | Critical |
705,788,159 | pytorch | Compilation errors on power-pc | ## 🐛 Bug
On power9 I need to pass "-mno-float128" to CC and "-Xcopmiler -mno-float128" to NVCC for it to compiler. IF these flags are not there, there are numerous compiler errors like this:
```
/home/rkube/repos/pytorch/build/nccl/obj/collectives/device/reduce_scatter_prod_f32.o
/usr/include/bits/floatn.h(79)... | module: build,triaged,module: POWER | low | Critical |
705,823,097 | flutter | Local network permission issue on iOS, crash on launch | @jmagman, following up from https://github.com/flutter/flutter/issues/57225
Steps to reproduce:
1. `flutter create testproject3`
2. `cd testproject3`
3. `flutter run -v > output_1.txt`
The app runs on the iPad, and presents the "testproject3 would like to find and connect to devices on your local network" di... | c: crash,platform-ios,tool,e: OS-version specific,P2,team-ios,triaged-ios | low | Critical |
705,851,821 | rust | compiler crash using specialization | I tried this code:
```rust
#![feature(specialization)]
pub enum Either<L,R> {
Left(L),
Right(R),
}
default impl<L,R> From<L> for Either<L,R> {
fn from(l: L) -> Self {
Either::Left(l)
}
}
impl<L,R> From<R> for Either<L,R> {
fn from(r: R) -> Self {
Either::Right(r)
... | T-compiler,C-bug,requires-nightly,F-specialization | low | Critical |
705,870,640 | vscode | Add a new right-aligned "description" property to TreeItems | Similar to the timestamp in the Timeline view, it would be nice to have the ability to have a string that would be rendered right-aligned for each tree item.
Maybe something like:
```ts
export class TreeItem {
label?: string;
description?: string | boolean;
...
endDescription?: string; // or ... | feature-request,api | medium | Major |
705,885,912 | nvm | trying to dl nvm in wsl. nvm wasn't recognized as command in term |
#### Operating system and version:
windows 10 WSL2 w/ unbuntu 20.04
#### `nvm debug` output:
<details>
<!-- do not delete the following blank line -->
```sh
```
</details>
#### `nvm ls` output:
<details>
<!-- do not delete the following blank line -->
```sh
```
</details>
#### How did you ... | OS: windows,needs followup | low | Critical |
705,893,153 | go | x/build/cmd/relui: consider patch version updates to dependencies that become available before minor Go releases | When issuing a minor Go release, we can consider patch updates that may be available to dependencies.
For example, suppose that Go 1.18.3 standard library uses `golang.org/x/mod` at version v1.5.0. When Go 1.18.4 minor release is going to be made, if there is version v1.5.1 of `golang.org/x/mod` published, it seems ... | Builders,NeedsInvestigation,FeatureRequest | low | Minor |
705,924,707 | vscode | Saving with custom editor occasionally displays 'Canceled' error message | <!-- ⚠️⚠️ 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,verification-found,custom-editors,author-verification-requested | low | Critical |
705,935,046 | PowerToys | [KBM] App-specific remapping for keys | This one is really simple. Therefore only two sentences.
I want to use different key mapping for different programs.
It would be great to be able to set a mappings per program.
| Idea-Enhancement,Product-Keyboard Shortcut Manager,Needs-Spec | high | Critical |
705,953,526 | godot | Orphan Resource explorer includes singleton scripts | <!-- 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.2.stable.custom_build.bc8eea3e9
**OS/device including version:**
<!-- Specify GPU ... | bug,topic:editor,confirmed | low | Major |
705,969,136 | node | Proposal: reserve a top-level module for new experimental APIs | It is considered a semver-major to add a new top-level module. As a result, it is very difficult and time-consuming to land new experimental features that should have their own namespace. What I propose is that we introduce a top-level module which would function as a "nursery" of sorts for experimental APIs, allowing ... | discuss,experimental | low | Minor |
705,973,003 | TypeScript | Display operator informaton on mouse-over | <!-- 🚨 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 |
705,977,415 | flutter | HtmlImage.toByteData has surprising behavior | It seems like we should be throwing an exception instead of returning null at https://github.com/flutter/engine/blob/e3444d895545b629370fcf0ddd43f84b361ed306/lib/web_ui/lib/src/engine/html_image_codec.dart#L137
We also ignore the format parameter. It's not really clear to me right now what format we actually return,... | engine,platform-web,a: images,e: web_html,P2,team-web,triaged-web | low | Minor |
706,019,621 | pytorch | Pytorch report INTERNAL ASSERT FAILED at ..\torch\csrc\jit\ir.cpp:1529 when use torch.jit.script to convert to model | ## 🐛 Bug
came across same error as https://github.com/pytorch/pytorch/issues/34707#issue-580449872
output of collect_env.py is:
Collecting environment information...
PyTorch version: 1.4.0
Is debug build: False
CUDA used to build PyTorch: 10.0
ROCM used to build PyTorch: N/A
OS:
GCC version: (GCC) 5.1... | oncall: jit | low | Critical |
706,022,091 | flutter | When use CupertinoPageScaffold in showCupertinoModalPopup without navigationBar,the button at the top does not work |
flutter doctor -v
```
[✓] Flutter (Channel stable, 1.20.2, on Mac OS X 10.15.5 19F101, locale
zh-Hans-CN)
• Flutter version 1.20.2 at /Users/limi/Desktop/flutter
• Framework revision bbfbf1770c (6 weeks ago), 2020-08-13 08:33:09 -0700
• Engine revision 9d5b21729f
• Dart version 2.9.1
•... | platform-ios,framework,f: cupertino,has reproducible steps,found in release: 3.3,found in release: 3.5,team-design,triaged-design | low | Minor |
706,053,714 | TypeScript | Associate HTML Elements and EventMaps in a map | <!-- 🚨 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 |
706,108,577 | godot | Blendshapes and multi-materials work incorrectly | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
3.2.3 stable
**OS/device including version:**
<!-- Specify GPU model, drivers, and the backend (GLES2, GLES3, Vulkan) if graphics-related. -->
- OS:... | bug,topic:rendering | low | Major |
706,117,354 | flutter | flutter web always show a empty page in debug mode | ## Steps to Reproduce
1. ...when i run a flutter web application, it always show a empty page
2. ...if i use device 'chrome web' , it will show 'Syncing files to device Chrome...' all the time
3. ...if i use device 'Web Server web' it will show 'Waiting for connection from Dart debug extension at http://localhost:... | c: crash,tool,engine,dependency: dart,a: debugging,platform-web,P2,team-web,triaged-web | low | Critical |
706,117,702 | PowerToys | [Image Resizer] Option for pixel perfect scaling | I make pixel art and when I saw that PowerToys had an image resizer, I thought my scaling issues were solved! However, it turned out this was not the case, so I'd like to request that a 'Pixel Perfect' mode be implemented into the Image Resizer, so it's possible to resize a small image without any kind of smoothing... ... | Idea-Enhancement,Product-Image Resizer | low | Major |
706,128,195 | go | cmd/go: poor error message for nonmatching go-import tags | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version devel +1e6ad65b43 Tue Sep 8 18:52:38 2020 +0000 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes.
### What operating system and processor architecture are you using (`go env`)?
Catalina, Ma... | NeedsFix,GoCommand | low | Critical |
706,163,761 | godot | Mono: inheritance, 'redeclared' fields (same name) result in unexpected serialization/display behaviour | <!-- 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.3.stable.mono.official
**OS/device including version:**
<!-- Specify GPU model, driver... | bug,topic:editor,topic:dotnet | low | Critical |
706,165,915 | storybook | Webpack devServer config and log verbose | **Describe the bug**
I have try to reduce the amount of log in console (from addon-docs)
So i have configure webpack devServer option to print only errors (and not chunk informations)
I have read the webpack dock https://webpack.js.org/configuration/dev-server/ to configure log level
Indeed, when a error occured in... | question / support,configuration babel / webpack,core | low | Critical |
706,170,314 | pytorch | (prototype) Graph Mode Dynamic Quantization on BERT failure on quantize_dynamic_jit(...) call | ## 🐛 Bug
Attempted to reproduce results from
https://pytorch.org/tutorials/intermediate/dynamic_quantization_bert_tutorial.html#install-pytorch-and-huggingface-transformers
## To Reproduce
Steps to reproduce the behavior:
1. Follow the tutorial under the link above:
`tokenizer = BertTokenizer.from_pret... | triaged,oncall: mobile | low | Critical |
706,178,448 | godot | Node2D position icon shown at offset position after reparenting | **Godot version:** v3.2.3.stable.official & v4.0.dev.calinou.160ad23e5
**OS/device including version:** Not graphics related
**Issue description:**
The godot editor shows a position icon 
On web ```cumulativeBytesLoaded``` a... | c: regression,framework,platform-web,a: images,has reproducible steps,P3,found in release: 3.10,found in release: 3.11,team-web,triaged-web | low | Major |
706,353,819 | storybook | Pre-rendered / SSR (server side rendered) stories | This topic has already occurred several times without any proper solutions or discussions on how to implement this in the future.
https://github.com/storybookjs/storybook/issues/8009
https://github.com/storybookjs/storybook/issues/828
https://github.com/storybookjs/storybook/issues/4271
I think there is definitel... | feature request,performance issue,core | medium | Major |
706,385,340 | go | proposal: runtime: add per-goroutine CPU stats | Per-process CPU stats can currently be obtained via third-party packages like https://github.com/elastic/gosigar. However, I believe that there exists a need for a certain type of applications to be able to understand CPU usage at a finer granularity.
## Example
At a high level in CockroachDB, whenever an applicati... | Proposal | high | Major |
706,400,555 | storybook | My project can't build .mdx files | **Describe the bug**
When I try to build a .mdx docs page I get the following error message in the console:
```
WARNING in ./src/stories/text/Text.stories.mdx 1:0
Module parse failed: Unexpected token (1:0)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process ... | question / support,configuration babel / webpack,mdx | low | Critical |
706,404,686 | godot | EditorPlugin: edit_resource causes Index line = -1 is out of bounds in text_edit.cpp | <!-- 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.3 stable
**OS/device including version:**
<!-- Specify GPU model, drivers, and the bac... | bug,topic:editor,topic:plugin | low | Critical |
706,414,349 | pytorch | Boolean indexing of an ndarray with a torch.tensor mask breaks for size=1 | ## 🐛 Bug
Numpy allows to index arrays with boolean pytorch tensors and usually behaves just like pytorch. However, for a dimension of size 1 a pytorch boolean mask is interpreted as an integer index. As a result, indexing of `np.ones(1)` with a `torch.ones(1, dtype=torch.bool)` returns an error as it tries to acces... | triaged,module: numpy,module: advanced indexing | low | Critical |
706,442,381 | pytorch | Inconsistent wheel name in https://download.pytorch.org/whl/torch_stable.html | ## 🐛 Bug
CPU-only wheel on https://download.pytorch.org/whl/torch_stable.html has a different name for macOS than it does for every other platform
This makes it difficult to use the CPU-only package, since it requires using env markers in the requirements file, which is both non-intuitive, and breaks some workfl... | module: build,triaged | low | Critical |
706,482,256 | angular | Add sideEffects field to zone.js/package.json | # 🚀 feature request
### Relevant Package
zone.js
### Description
zone.js is missing a `sideEffects` field in its package.json. I realize it's pretty side-effect-ful, which is probably why the field wasn't added, but I would think it would benefit optimization to have the sideEffects files clearly marked.
... | area: zones,P3 | low | Minor |
706,484,415 | pytorch | [Feature Request] Add support for Hidden Markov Models in torch.distributions | ## 🚀 Feature
It would be useful to have a basic abstraction class for [Hidden Markov Models](https://en.wikipedia.org/wiki/Hidden_Markov_model) which builds on top of the distribution classes already implemented in the [pytorch distributions](https://pytorch.org/docs/stable/distributions.html#mixturesamefamily) packa... | module: distributions,feature,triaged,needs research | low | Minor |
706,493,411 | TypeScript | Autofill object literal in IDE | <!-- 🚨 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,In Discussion,Domain: Completion Lists | low | Critical |
706,496,049 | youtube-dl | la1ere.francetvinfo.fr | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
- [x] I'm reporting a new site support request
- [x] I've verifie... | site-support-request | low | Critical |
706,502,593 | flutter | Autofill on web is only activated after clicking twice on the TextField | When you create a TextField with `autofillHints`, at least on web the hint is only activate after you click twice on the `TextField`. If you have multiple `TextFields` you can keep on clicking through them all without ever seeing the hints unless you click again once the caret is active in the `TextField`.
Seeing ot... | a: text input,framework,f: material design,platform-web,has reproducible steps,P3,team-web,triaged-web,found in release: 3.19,found in release: 3.21 | medium | Major |
706,506,829 | flutter | CupertinoPicker top and bottom gradient screen no longer appearing | May be related to https://github.com/flutter/flutter/pull/47837

The text is sharp all the way to the edge of the wheel. Natively it should fade out towards the edge.
cc @LongCatIsLooong | c: regression,framework,a: fidelity,f: cupertino,a: quality,P2,team-design,triaged-design | low | Major |
706,507,273 | vscode | VSCode's FileDialog overwrites the file managers (Nautilus) "Show hidden files" setting | <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search existing issues to avoid creating duplicates. -->
<!-- Also please test using the latest insiders build to make sure your issue has not already been... | bug,upstream,linux,electron,workbench-os-integration,confirmed,upstream-issue-pending,native-file-dialog | low | Critical |
706,522,535 | TypeScript | Don't suggest converting custom promise-like returning function to async ones | <!-- 🚨 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,Help Wanted,Domain: Refactorings,Experience Enhancement | low | Critical |
706,525,164 | pytorch | Multiple torch.load in one file | ## 🐛 Bug
`torch.load` fails to load multiple content in one file.
## To Reproduce
```python
with open('test.pkl', 'wb') as f:
torch.save(4, f)
torch.save(5, f)
with open('test.pkl', 'rb') as f:
assert torch.load(f) == 4
assert torch.load(f) == 5
```
Crashes with the following error... | high priority,module: serialization,triaged,module: regression | low | Critical |
706,550,836 | pytorch | Mention accessor/data_ptr for raw memory access in Libtorch index API document and discuss performance implications | *Edit*: @t-vi: Per the discussion, this is more a doc improvement opportunity.
## 🐛 Bug
I have a Libtorch project that has some execution speed issues. I have spent half a day to debug it. It turns out that using index API repetitively is much less efficient compared to using an accessor.
Here is the doc on ind... | module: performance,module: cpp,triaged | low | Critical |
706,594,872 | youtube-dl | Please support concertgebouw.videodock.com | <!--
######################################################################
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 |
706,600,379 | rust | Build on x32 ABI on gentoo | I'm trying to build rustc on gentoo in x32 ABI, and got some error in build system, that i can't fix by itself. I think that I can fix it if I realize it's reason.
First error is wrong folder name ~/rust/build/x86_64-unknown-linux-gnux32**x32**/llvm/build/lib instead ~/rust/build/x86_64-unknown-linux-gnux32/llvm/build... | O-x32 | low | Critical |
706,645,592 | node | HTTP/2 ServerResponse.destroy() has the same effect as ServerResponse.end() | * **Version**: 14.11.0
* **Platform**: `Linux solus 5.6.19-158.current #1 SMP PREEMPT Sun Jul 26 14:17:01 UTC 2020 x86_64 GNU/Linux`
* **Subsystem**: http2
### What steps will reproduce the bug?
```js
const http = require('http2');
const server = http.createServer((request, response) => {
response.writ... | http2 | low | Critical |
706,659,155 | deno | WebSocket Cookies | Since Deno 1.4, there's the Browser's WebSocket api in Deno which is now the preferred way of using WebSockets.
Now in Browsers, it's possible for a site to set cookies which are sent (if valid) with the WebSocket request. In Deno, there's no way of setting these cookies (as there's no "cookie store"), so one has to ... | cli,suggestion | medium | Major |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.