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 |
|---|---|---|---|---|---|---|
726,107,392 | go | x/tools/gopls: add a mechanism for marking a setting deprecated in documentation | We currently have a way of notifying users that they are using a deprecated setting, but it would also be nice to mark the deprecation in the documentation. This way, we could surface the deprecation in the `package.json` and smoothly transition users off of an outdated setting.
/cc @heschik @hyangah
Edit: This ... | Documentation,NeedsInvestigation,gopls,Tools | low | Minor |
726,131,987 | go | cmd/compile: inconsistent error message when identifier begins with invalid character | ### What version of Go are you using (`go version`)?
go version go1.15.2 darwin/amd64
### What did you do?
I tried to compile the following program: https://play.golang.org/p/379msfdOuwi
```Go
package main
func main() {
var 3x = 3
3x := 3
var $x = 3
$x := 3
}
```
### What did you expect to see?
``... | NeedsInvestigation,compiler/runtime | low | Critical |
726,141,892 | pytorch | Loss functions for complex tensors | ## 🚀 Feature
Loss functions in `torch.nn` module should support complex tensors whenever the operations make sense for complex numbers.
## Motivation
Complex Neural Nets are an active area of research and there are a few issues on GitHub (for example, https://github.com/pytorch/pytorch/issues/46546#issuecommen... | module: nn,triaged,module: complex,complex_autograd | low | Critical |
726,152,634 | create-react-app | Let jsxImportSource be configurable through tsconfig.json | ### Is your proposal related to a problem?
Right now it's only suggested for `tsconfig.json` to set `"jsx": "react"` but it's not enforced.
TS 4.1 will bring new JSX-related option ([`jsxImportSource`](https://github.com/weswigham/TypeScript/blob/e02e55f2f99384a30c6c99d7cd944459e1b4cdc4/src/compiler/commandLineP... | issue: proposal,needs triage | high | Critical |
726,169,526 | three.js | NodeMaterial: Support MaterialX Standard Nodes | I'd like to suggest that we work toward supporting equivalents of the MaterialX Standard Nodes within NodeMaterial. That is not necessarily to say that everything needs to be named the same, but ideally it should be possible to compose any given MaterialX node from, say, <5 three.js nodes. A lot of the standard nodes a... | Suggestion,Bounty | high | Critical |
726,188,313 | pytorch | Autograd support for the tensor multiplication of sparse tensors | ## 🚀 Feature
<!-- A clear and concise description of the feature proposal -->
Autograd support for the tensor multiplication of sparse tensors (sparse * sparse, sparse * dense).
## Motivation
<!-- Please outline the motivation for the proposal. Is your feature request related to a problem? e.g., I'm always f... | module: sparse,module: autograd,triaged,function request | low | Critical |
726,203,220 | pytorch | Trying to compile PyTorch for sm_30 fails with `error: identifier “__ldg” is undefined` | ## ❓ Questions and Help
Hi, after I run “python setup.py install”, I get this error :
[3894/5004] Building NVCC (Device) obj…cuda_generated_THCTensorTopKShort.cu.o
FAILED: caffe2/CMakeFiles/torch_cuda.dir//aten/src/THC/generated/torch_cuda_generated_THCTensorTopKShort.cu.o
cd /home/ionur1/pytorch/build/caffe2/C... | module: build,module: cuda,triaged | low | Critical |
726,301,702 | react | Feature request: A useLayoutEffect with read/write batching across a tree | Today, `useLayoutEffect` can be used for synchronous read/writes across the DOM.
```javascript
useLayoutEffect(() => {
// Write
ref.current.style.transform = ""
// Read
const box = ref.current.getBoundingClientRect()
})
```
For a single instance of a single component, this works well. But if this... | Type: Feature Request,Component: Reconciler,Component: Hooks | medium | Critical |
726,333,415 | flutter | setSystemUIOverlayStyle doesn't support hot-restart on Xiaomi Mi9 SE | ## Steps to Reproduce
1. Run your app. Status-bar is semi-trasparent.
2. Add the following code into your `main` function:
```dart
await SystemChrome.setSystemUIOverlayStyle(
SystemUiOverlayStyle.light.copyWith(statusBarColor: custom_colors.mainWhite),
);
```
3. Make a hot-reload. Status bar turns **bl... | e: device-specific,engine,a: layout,P2,team-engine,triaged-engine | low | Major |
726,374,274 | vscode | vscode.debug.startDebugging should support named automatic (dynamic) and global (user settings) debug configurations | <!-- ⚠️⚠️ 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'd like to use `vscode.debug.startDebugging` ... | debug,under-discussion | medium | Critical |
726,401,284 | kubernetes | RFE: Kubectl wait for multiple conditions | **What would you like to be added**:
I'd like `kubectl wait` to support multiple wait conditions at once so these are evaluated on the resource with the same ResourceVersion. Like:
```
kubectl wait <resource> --for='condition=Available=True' --for='condition=Progressing=False' --for='condition=Degraded=False
```
... | priority/backlog,area/kubectl,kind/feature,sig/cli,needs-triage | medium | Major |
726,458,999 | storybook | Vue ArgsTable missing prop if slot with same name | **Describe the bug**
If I define a prop and a slot with the same name, `ArgsTable` only displays the `slot`
**To Reproduce**
Create a vue component with a prop and slot using the same name.
See component example below.
**Screenshots**
**Using the same name**

/usr/local/google/home/bcmills/bin/gomote: devel +1f48afe8db Fri Oct 16 14:26:34 2020 -0400
path golang.org/x/build/cmd/gomote
mod golang.... | OS-Plan9,Builders,NeedsInvestigation | low | Critical |
726,541,718 | vscode | [html] Unecessary warning when script contains quotes on the same line as an onFoo attribute using the same quotes | <!-- ⚠️⚠️ 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,html | low | Critical |
726,549,376 | rust | Lint on calling `to_owned` on a reference | The `ToOwned` trait has a blanket impl for `T: Clone`. Since references implement `Clone`, it's possible to call `&SomeNonCloneType.to_owned()` - this returns a new reference `&SomeNonCloneType`, *not* an owned `SomeNonCloneType`. This can result in a confusing error message:
```rust
struct Foo;
fn main() {
... | A-lints,T-compiler,C-bug | low | Critical |
726,567,985 | pytorch | Future returned by RPC should print a warning message on destruction if it's not waited | #46559 mentioned that it's hard to debug async RPC, as the error is only thrown when users call `Future.wait()` but users might miss that.
@lw suggested that, to have a better user experience, one option could be let the [Future](https://github.com/pytorch/pytorch/blob/master/aten/src/ATen/core/ivalue_inl.h#L308) o... | oncall: distributed,module: bootcamp,triaged,enhancement,module: rpc | low | Critical |
726,569,064 | pytorch | Converting object detector model to TorchScript | Hi,
Currently I try to convert this https://github.com/yhenon/pytorch-retinanet implentation of retinanet to torchscript so be able to make inference in c++ environment. But faced with some problems.
P5_x : torch.Tensor = self.P5_1(C5) , in this line I had an error as : Tried to access nonexistent attribute or met... | oncall: jit | low | Critical |
726,584,028 | angular | Better documentation for multiple projects within one workspace | ### Bug Report or Feature Request (mark with an `x`)
```
- [ ] bug report -> please search issues before submitting
- [ ] feature request
- [x] documentation improvement request
```
Regarding: https://github.com/angular/angular-cli/wiki/stories-multiple-projects
It would be nice to have a better documentatio... | P4,area: docs | low | Critical |
726,623,444 | flutter | Regression in timeToFirstFrameRasterizedMicros flutter_gallery_ios32__start_upsmoke_catalina_start_up_ios | See https://flutter-flutter-perf.skia.org/e/?begin=1603144085&end=1603212591&keys=Xe58c4638b290dfd947817edd92e937ac&num_commits=50&request_type=1&xbaroffset=22096.
First occurred at https://github.com/flutter/flutter/pull/68538, so I'm wondering if this caused by the test and not really the regression. @jonahwilliam... | c: regression,tool,c: performance,perf: speed,team: benchmark,P2,team-tool,triaged-tool | low | Minor |
726,627,754 | create-react-app | Cannot add license key to generated package.json file in template | <!--
Please note that your issue will be fixed much faster if you spend about
half an hour preparing it, including the exact reproduction steps and a demo.
If you're in a hurry or don't feel confident, it's fine to report bugs with
less details, but this makes it less likely they'll get fixed soon... | needs triage,issue: bug report | low | Critical |
726,645,503 | storybook | Question: Does a plugin exists to simulate safe-area-inset margins ? | # Does a plugin exists to simulate safe-area-inset margins with storybook ?
Typicaly for tablets or mobile devices.
# Goal
Don't waste time testing on the devices, but test directly in storybook
Thanks a lot for your help !
| feature request,addon: viewport | medium | Critical |
726,645,964 | go | doc: introduce a page for CI best practices | Most CI scripts and defaults do just the basics: `go test ./...`
There are many more commands that likely make sense for a majority of projects, and some are well known, but we don't have a single place to document and maintain them well. For example:
* Enforce `gofmt` from a specific version of Go, e.g. `test -z... | Documentation,NeedsInvestigation | medium | Critical |
726,662,050 | PowerToys | Bluetooth device button remapping | Add support for remapping Bluetooth headset (or surface pen) button remapping.
_What is the expected behaviour of the proposed feature? What is the scenario this would be used?_
For example, Surface buds have a swipe gesture that can only be used to change PowerPoint slide, but it would be beyond great if you co... | Idea-New PowerToy | low | Major |
726,669,013 | godot | Integer division generates warnings even if you cast | **Godot version:**
3.2.2
**OS/device including version:**
linux
**Issue description:**
Godot does not have 'integer' division methods. so whenever you divide with integers you get a warning for every line polluting the debug pane. Even if you cast your division to an int, you still get the warning, i.e. th... | bug,topic:gdscript,confirmed | medium | Critical |
726,707,301 | pytorch | Excluding image processing operators due to no opencv | I was able to compile pytorch from source. Yes, it runs. However, there was a warning letting me know that Opencv was not found. I am running pytorch in the same virtual environment in which I have opencv running (import cv2 works).
I am running on ubuntu 18.04.
I did look at CMakeLists.txt but found no indicatio... | module: build,triaged | low | Minor |
726,738,799 | TypeScript | Object destructuring with default empty object generates wrong type | **TypeScript Version:** 4.0.3
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
destructuring
object destructuring
object destructuring default
**Code**
```ts
const random = () =>
new Date().getTime() % 2 === 0 ? { prop1: 1, prop2: 2, pr... | Bug,Help Wanted | low | Critical |
726,752,776 | storybook | Storybooks styles leak in to the components iframe | Storybook applies unscoped styles to the iframe which style user components
**Reproduction**
1. Create a new project with `create-react-app`
2. Add storybook with `npx sb init`
3. Create a new story with the content:
```html
<h1>H1 Headline</h1>
<h2>H2 Headline</h2>
<h3>H3 Headline</h3>
```
4. Have a lo... | question / support,has workaround,theming | low | Major |
726,765,406 | vscode | Use safer test for Location in argument processor | In https://github.com/microsoft/vscode/pull/109049, we tried to pass an argument to a command that has properties named `uri` and `range`, and got caught by this line: https://github.com/microsoft/vscode/blob/8c91bd827848f1710d055c39d80d04c59bb55463/src/vs/workbench/api/common/extHostCommands.ts#L69 trying to convert i... | api,under-discussion | low | Minor |
726,803,008 | rust | Unclear lifetime error instead of "cannot move out of mutable reference" | This code:
```rust
struct S<'a, T>(&'a mut T);
impl<'a, T> S<'a, T> {
fn get(&mut self) -> &'a mut T {
self.0
}
}
```
Gives this error:
```
error[E0312]: lifetime of reference outlives lifetime of borrowed content...
--> src/lib.rs:5:9
|
5 | self.0
| ^^^^^^
... | C-enhancement,A-diagnostics,A-borrow-checker,T-compiler | low | Critical |
726,810,832 | transformers | Unexpected/wrong handling of added special tokens in special_tokens_mask (GPT1, BERT, possibly others) | ## Environment info
<!-- You can run the command `transformers-cli env` and copy-and-paste its output below.
Don't forget to fill out the missing fields in that output! -->
- `transformers` version: 3.1.0
- Platform: Linux-5.4.0-52-generic-x86_64-with-glibc2.29
- Python version: 3.8.5
- PyTorch versio... | WIP | low | Major |
726,820,067 | ant-design | Title Location API property for the Statistic component | - [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?
There is a use case where the layout of the statistic component requires the title to appear below the value instead of above the... | Inactive | low | Minor |
726,856,805 | flutter | Update isolate callbacks in settings to accept an additional DartIsolate parameter. | Now that isolate initialization has been reworked to only return a fully running isolate, running test assertions on the isolate that verify various phases of the isolate prior to launch is harder since the caller doesn't have a handle to the isolate on which to run assertions. Pass a const reference to the isolate as ... | engine,P2,team-engine,triaged-engine | low | Minor |
726,877,660 | tensorflow | tensor.numpy() from GPU model prediction very slow | **System information**
- Have I written custom code (as opposed to using a stock example script provided in TensorFlow): yes
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Linux (Colab)
- TensorFlow installed from (source or binary): Binary
- TensorFlow version (use command below): 2.3.0
- Python versi... | stat:awaiting tensorflower,comp:gpu,type:performance,TF 2.3,TF 2.7 | low | Major |
726,890,855 | PowerToys | [Run] Improve Win32 icon loading | `IShellItem` class is used to get win32 icons and it is slow. Image cache was introduced to fix this issue, which stores icons after the first query of a win32 app. However, this still suffers from lag on the first query of a win32 app.
Issue #7271 could possibly happen because of this lag.
EDIT: also see #470... | Issue-Bug,Product-PowerToys Run,Area-Quality | low | Major |
726,933,311 | rust | Add automated tool to ensure new feature gates are documented | This would be part of a larger effort to automate documentation updates. The
issue is that updates to the compiler may require updates to documentation, but
it's not as simple as just updating a doc comment; you may need to:
- Update the rustc-dev-guide
- Update the unstable book
- Update the reference
- etc.
The goa... | T-compiler,T-bootstrap,A-docs,C-feature-request,A-meta | low | Minor |
726,945,525 | flutter | [webview_flutter] Hybrid Compostion slows down animation | ## Details
### Reproduce
https://github.com/Sunbreak/webview_gesture.repro
1. run the `webview_gesture` on emulator/phone
2. swipe slow from right to left (It feels smoothy without hybrid-composition by default)
3. uncomment the `if (Platform.isAndroid) WebView.platform = SurfaceAndroidWebView();`
4. retry ... | platform-android,a: platform-views,p: webview,package,P2,team-android,triaged-android | low | Critical |
726,994,324 | youtube-dl | Option to download audio before video | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | request | low | Critical |
727,006,852 | ant-design | Even if I passed a type to useform, form.validateFields Always return Store type | - [ ] 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/strange-lalande-vjk9j?file=/src/App.tsx)
... | Inactive | low | Minor |
727,045,335 | godot | 2d/use_pixel_snap breaks Sprite position when scaling a 1x1 sprite | <!-- 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:rendering | low | Critical |
727,086,460 | rust | Incorrect trait bound resolution in the presence of associated types | <!--
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.
-->
The following code:
```rust
pub trait Foo<T> {
type FooType;
}
pub trait Bar {
type BarType;
}
pub struct ConcreteBar;
impl Bar fo... | A-trait-system,A-associated-items,T-compiler,C-bug | low | Critical |
727,110,362 | youtube-dl | Request support for site https://tlc.de/sendungen/ |
## 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.09.20. If it's not, see https://yt-dl.org/updat... | site-support-request | low | Critical |
727,127,292 | flutter | flutter driver add a interface to mock listview fling action | I want to mock the listview fling action just like a person quickly scroll the listview. And i want to do it by test_driver to watch the fling effectiveness。
| a: tests,framework,t: flutter driver,c: proposal,P3,team-framework,triaged-framework | low | Minor |
727,138,075 | opencv | Building x86_64h architecture fails (Mac) | ##### System information (version)
- OpenCV => 4.5
- Operating System / Platform => macOS 10.15.7
- Compiler => Xcode 12
##### Detailed description
I can successfully build OpenCV framework for x86_64 using the provided script (platforms/osx dir). When requesting the x86_64h architecture, the CMake tests fai... | question (invalid tracker),priority: low,category: build/install,platform: ios/osx | low | Critical |
727,138,718 | PowerToys | [KBM] Add a global emacs / Vim like short cut | ## 📝 Provide a description of the new feature
_What is the expected behavior of the proposed feature? What is the scenario this would be used?_
I expect to have a global emacs like shortcut like Mac. which is <C-a> goes to home of the line, <C-e> goes to the end of the line. this could be done via shortcut rema... | Idea-Enhancement,Product-Keyboard Shortcut Manager | medium | Major |
727,156,284 | vscode | [json] symlink prevents JSON schema from updating validation | <!-- ⚠️⚠️ 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,json | low | Critical |
727,182,707 | create-react-app | --scripts-version install from tgz on windows not working | when i use verdaccio it download for me tgz file .I can only install this with git bash
npx create-react-app ./ --scripts-version C:\Users\user\Downloads\codeslon-react-scripts-3.4.1.tgz
but when i use vscode cmd it crash and producing - (probably because it doesn't know how to deal with .tgz)
Unexpected error. P... | stale,needs triage,issue: bug report | low | Critical |
727,198,070 | vscode | Dispatching KeyboardEvent on Webview fails to work only on Windows. | Dispatching KeyboardEvents on Webview fails to work only on Windows.
Version: 1.51.0-insider (user setup)
Commit: 9f7a586124ca121bba906b44eb8356691617957e
Date: 2020-10-22T00:49:16.002Z
Electron: 9.3.2
Chrome: 83.0.4103.122
Node.js: 12.14.1
V8: 8.3.110.13-electron.0
OS: Windows_NT x64 10.0.18363
Steps to R... | bug,help wanted,windows,webview | low | Major |
727,228,574 | go | net/http: should stop logging received GOAWAY | ### What version of Go are you using (`go version`)?
<pre>
$ go version 1.15.3
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
N/A
### What did you do?
We see a lot of logging:
```
http2: received GOA... | NeedsInvestigation | low | Critical |
727,241,141 | vscode | Text cursor indicator displays incorrect | Issue Type: <b>Bug</b>
In windows 10 > settings > Ease of Access > Text cursor
Turn on text cursor indicator.
The indicator displays incorrect.

VS Code version: Code 1.50.1 (d2e414d9e4239a252d1ab... | bug,accessibility,windows,editor-rendering | low | Critical |
727,249,970 | pytorch | torch.eye not supported for sparse layout | Steps to reproduce the behavior:
1. Call torch.eye with layout = torch.sparse_coo
Below is a code sample:
import torch
x = torch.eye(4, layout=torch.sparse_coo, device=torch.device('cuda'))
print(x)
## Actual behavior
Traceback (most recent call last):
File "sparse_tensor.py", line 46, in <module>
... | module: sparse,triaged,function request | low | Critical |
727,254,124 | godot | Build process fails when the compiler command contains a space | <!-- 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. -->
003ee8b7c24a4ef4d10efc7f22cc7c4541ab7730
**OS/device including version:**
<!-- Specify GPU... | platform:linuxbsd,topic:buildsystem,needs testing | low | Critical |
727,401,503 | pytorch | A random split function that return the datasets following specific target (label) distribution. | ## 🚀 Feature
A random split function that return the datasets following specific target (label) distribution.
## Motivation
Sometimes, we might want to control the data distribution while splitting the data. For example, uniformly distributed labeled data in semi-supervised learning (10 classes and each class h... | feature,triaged,module: data | low | Minor |
727,446,376 | rust | ICE 'called `Option::unwrap()` on a `None` value', compiler/rustc_metadata/src/rmeta/decoder.rs:975:64 | With this `config.toml`:
```toml
# Includes one of the default files in src/bootstrap/defaults
profile = "compiler"
changelog-seen = 2
[build]
low-priority = true
```
Running `RUST_BACKTRACE=1 ./x.py test` on commit 6b9fbf212a06944ff23325d2d63215805dc3c6c3 without code changes:
```rust
[…]
Building sta... | I-ICE,A-metadata,P-medium,A-visibility,T-compiler,A-incr-comp,C-bug,WG-incr-comp | low | Critical |
727,449,002 | flutter | [webview_flutter] NavigationDecision.prevent not working on Android | Hi, this is my setup
```
Flutter 1.22.2 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 84f3d28555 (7 days ago) • 2020-10-15 16:26:19 -0700
Engine • revision b8752bbfff
Tools • Dart 2.10.2
...
webview_flutter: ^1.0.5
```
As the title says, I am trying to prevent navigation. I... | platform-android,p: webview,package,has reproducible steps,P3,found in release: 2.2,found in release: 2.5,team-android,triaged-android | low | Major |
727,450,949 | rust | `#![cfg(platform)]` causes rustc to ignore `#![allow(...)]` directives | <!--
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
#![cfg(windows)]
#![allow(missing_docs)]
pub fn a_function() {}
```
And ran `RUSTFLAGS="-D missing_docs" cargo check... | A-attributes,A-lints,T-compiler,C-bug | low | Critical |
727,466,202 | pytorch | The documentation for c10::Dict is completely empty. | ## 📚 Documentation
The documentation for c10::Dict is completely empty. I'm trying to run in C++ a traced model that return a dict and I've successfully converted the resulting IValue to c10:Dict with toGenericDict. I haven't actually been able to get any data out of the c10::Dict because nothing I've tried seems t... | module: docs,module: internals,module: cpp,triaged | low | Major |
727,538,274 | godot | Godot doesn't see installed libstdc++6 dynamic library on 32-bit Ubuntu and doesn't run because of this | **Godot version:**
3.2.4-beta1
**OS/device including version:**
Ubuntu 18.04 with installed libstdc++6 package
**Issue description:**
I have tried to run Godot 3.2.4-beta1 on Linux in terminal but it doesn't recognize an libstdc++.so.6 wich (as output in terminal says) is installed on my pc (path is /usr/lib/i386-l... | bug,platform:linuxbsd,topic:buildsystem | low | Major |
727,594,616 | pytorch | PROBLEM WITH INSTALLATION PYTORCH FROM SOURCE | ## ❓ Questions and Help
Hi, after I run "$ python setup.py install" command, I get this error :
```
--
-- ******** Summary ********
-- General:
-- CMake version : 3.18.2
-- CMake command : /home/ionur1/anaconda3/envs/siamfc_cuda/bin/cmake
-- System : Linux
-- C++ c... | module: build,triaged | low | Critical |
727,636,714 | godot | RigidBody2D sometimes reports incorrect collision normal | **Godot version:** 3.2.3.stable
**OS/device including version:** Ubuntu 20.04
**Issue description:**
Under certain circumstances, when colliding near the corner of a `StaticBody2D`, a `RigidBody2D` will report a collision, but the collision normal will be wrong. Furthermore, the `RigidBody2D` won't act as if it ... | bug,topic:physics | low | Minor |
727,691,278 | flutter | package:integration_test polish/runnability | - [ ] Update flutter create template to have a package:integration_test test for package:integration_test 1.0.0
- [ ] IDE plugin team needs to know if this is an integration test, and run it using the right command(s) when running a test
/cc @jonahwilliams @devoncarew @csells @jacob314 @DanTup | a: tests,tool,f: integration_test,P2,d: intellij,team-tool,triaged-tool | low | Minor |
727,700,204 | rust | permit coercion in type ascription | The current implementation of type ascription always equates the type of the expression with the required type (so `e: T` would force `e` to have type `T`). But the original plan was that type ascription would also permit *coercions*, so that one could do e.g. `return x: &dyn Foo` and coerce `x` to the type `dyn Foo` e... | A-type-system,T-compiler,A-coercions,T-types | low | Minor |
727,714,159 | pytorch | torch.utils.tensorboard.SummaryWriter.add_embedding fails for some label_img sizes | ## 🐛 Bug
`torch.utils.tensorboard.SummaryWriter.add_embedding` fails for some label_img sizes.
Suspect that square and non-square width>height works, but non-square width<height fails.
## To Reproduce
```
import torch
from torch.utils.tensorboard import SummaryWriter
writer = SummaryWriter('./')
writer... | triaged,module: tensorboard | low | Critical |
727,728,361 | godot | "Ranlib Library" compile message arbitrarily shows percentage | **Godot version:**
32be9299ba177781d22bffa8e7e848fcca33b860
**Issue description:**
Depending on the OS and the compiler used, the current percentage of the building progress will not show. It seems that only native builds on macOS shows it, and with MinGW it's a gamble.

- create a new file `hello.go`, using the editor's feature
T... | NeedsDecision,gopls,Tools | low | Critical |
727,768,514 | go | x/tools/gopls: trace of error response is missing | I triggered a codeAction that will fail and couldn't find the matching `"Received response ..."` from gopls trace.
The 'Error' entry is from vscode client (in response of the error reply) and doesn't include the message id. This makes it difficult for trace viewer to process the trace.
```
[Trace - 18:36:44.832 P... | gopls,Tools | low | Critical |
727,781,982 | go | runtime, cmd/compile: implicit allocations allowed in the runtime | We have a test in the compiler that ensures that we don't have any implicit allocations in the runtime. We want all allocations that the runtime does to be explicit (to avoid things like self-deadlock when allocating inside malloc).
That test doesn't catch all the allocations. In particular, it doesn't catch the alloc... | NeedsInvestigation,FeatureRequest,compiler/runtime | low | Critical |
727,794,120 | rust | Intra-doc links should be styled according to the kind of their target | Rustdoc generally has fairly consistent ways of styling documentation items. For example, in the default Light theme, structs are magenta, traits are lavender, functions and methods are gold, etc., and are always set in a sans-serif or monospace font. However, this convention does not seem to get applied to intra-docum... | T-rustdoc,C-feature-request,A-intra-doc-links,A-rustdoc-ui | low | Major |
727,809,435 | pytorch | Quantization - we need a better solution for tracking quantization backend settings in a model | ## 🐛 Bug: Quantization - we need a better solution for tracking quantization backend settings in a model
Currently, there are various points of confusion:
1. a target backend (qnnpack / fbgemm) is usually chosen during model preparation, but it is not saved in the model
2. in a Python environment, a global flag `... | oncall: quantization,triaged | medium | Critical |
727,831,934 | rust | Incoherent error when a method and the containing impl require the same trait with different lifetimes | While trying to make the lifetimes work in a `-> impl Iterator` method, I ran into a weird error. Minimal test case:
```rust
trait Trait<'a> {}
struct Struct<'a, T>(&'a T);
impl<'a, T: Trait<'a>> Struct<'a, T> {
pub fn method<'b>(&self)
where
T: Trait<'b>,
{
}
}
```
As far as... | A-lifetimes,A-trait-system,T-compiler,A-impl-trait | low | Critical |
727,837,050 | pytorch | Memory leak when creating new tensors inside nn.DataParallel on multiple GPUs | ## 🐛 Bug
I need to create tensors of different shapes in my module's forward method. When running on multiple GPUs using nn.DataParallel, the memory of the created new tensors is not properly freed, causing huge memory leakage.
## To Reproduce
Steps to reproduce the behavior:
1. Save the following code to ... | oncall: distributed,triaged | low | Critical |
727,840,545 | flutter | Flutter Linux Desktop Japanese input switch | Flutter channel: master
OS: Fedora 33 running on wayland
Input method: ibus-kkc
On default Flutter application input switching doesn't work imminently - starts working when I increase counter and then switch input method.
It works on this sample app:
https://github.com/cbracken/jp_flutter
but when remov... | a: text input,platform-linux,a: desktop,P2,team-linux,triaged-linux | low | Critical |
727,866,343 | create-react-app | Typecheck failing in one of node_modules | I installed one of our private package owned by some other team.
While development getting error after typecheck on that package as below
```
Failed to compile.
/path/to/repo/node_modules/<PACKAGE>/<SOME_FILES>.ts
TypeScript error in /path/to/repo/node_modules/<PACKAGE>/<SOME_FILES>.ts(378,17):
Type 'undefi... | stale,needs triage | low | Critical |
727,950,309 | svelte | Add localization files to your documentation | Hi, I'm middle Front-End developer from Ukraine, and know already 4 frameworks: Vue.js, React, AMP, Svelte.
I want to be a volunteer and popularize your framework into Russian community, so I want to start translate your documentation, tutorials, etc... So how can I make this?
Please add plugin such as "i18n" i... | site,documentation | low | Minor |
727,993,895 | godot | Instanced inherited scene not updated after collision layer change in base scene | **Godot version:** 3.2.3 & current master (d5073c6)
**OS/device including version:** not graphic related
**Issue description:**
After changing the collision layer or collision mask of base scene, inherited scene's default collision layer / mask updates correctly. But instanced derived scene node's default coll... | bug,topic:editor | low | Major |
728,000,176 | PowerToys | Virtual Desktop layout is vert on top of horizontal to give more space | ## 📝Feature request for a better virtual desktops experience
---
The feature request is to increase the number of dimensions for adding virtual desktops from 1 to 2. Being able to have rows of virtual desktops would be a good productivity boost for some. Moving between these desktops could be done with **Ctrl+Win+... | Idea-New PowerToy,Product-Virtual Desktop | low | Major |
728,039,475 | vscode | SCM Input - suggest widget is behind editor | * use safari
* trigger suggest in SCM view
* :bug: the widget is behind the editor
<img width="1472" alt="Screenshot 2020-10-23 at 10 54 01" src="https://user-images.githubusercontent.com/1794099/96978071-41ad2300-151e-11eb-814c-343695929be7.png">
| bug,help wanted,scm,safari | low | Critical |
728,045,306 | pytorch | How to define a new data type in native_functions.yaml? | How to define a new data type in native_functions.yaml?
Such as there is exist a data type "int[]",bu i want a data type "float[]",what sould i do?
Looking forward to your advice, I will be very grateful!
cc @ezyang @bhosmer @smessmer @ljk53 @bdhirsh @ailzhang | module: internals,triaged | low | Minor |
728,073,685 | terminal | Conhost high CPU usage with Windows Terminal closed | <!--
🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
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... | Needs-Repro,Product-Conpty,Area-Server,Issue-Bug,Priority-2 | low | Critical |
728,081,466 | TypeScript | Expose type level api | <!-- 🚨 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 |
728,083,560 | material-ui | [Switch] Use role="switch" | - [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.
## Summary 💡
The switch component is announced like a checkbox, it should be announced like a switch.
## Examples 🌈
I have seen the role used in [react-switch](htt... | accessibility,on hold,component: switch | low | Minor |
728,098,644 | angular | Support ts-ignore, ts-expect-error and ts-nocheck in angular template | In typescript, we can use [`// @ts-ignore` and `// @ts-expect-error`](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-9.html#ts-ignore-or-ts-expect-error) in codes.
Can we add it in template?
For example:
```ts
@Component()
export class FooComponent {
@Input() foo!:string
}
```
... | feature,area: compiler,P4,feature: under consideration | medium | Critical |
728,121,730 | storybook | Incorrect eslint config being applied | While building or running storybook, we're getting a ton of errors from eslint, which are not relevant to us. This is because storybook is using a different eslint config than the one in my project. Even disabling eslint in our craco config is completely ignored.
Building storybook using the `--debug-webpack` flag, ... | question / support,compatibility with other tools,has workaround | low | Critical |
728,140,557 | vscode | Markdown hovers in `IconLabel` shouldn't preclude decoration hovers | See https://github.com/microsoft/vscode/pull/108403#discussion_r504791866 for the whole story. | debt,file-decorations,workbench-hover | low | Minor |
728,143,104 | node | decide the fate of http2.connect(url, { socket }) | <!--
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... | http2 | low | Critical |
728,217,837 | TypeScript | Union of functions with typed `this`, fails with no parameters | **TypeScript Version:** 4.0.2
**Code**
```ts
interface Context {
hello: boolean
}
type OptionsTest =
| ((this: Context) => void)
| ((this: Context) => PromiseLike<any>)
| ((this: Context, done: boolean) => void)
function container (test: OptionsTest) {
}
// This does not wor... | Bug,Help Wanted | low | Minor |
728,220,227 | rust | Move `StorageDead`/`StorageLive` around to allow more optimizations to trigger | #78191 fixes a bug in MatchBranchSimplification but causes it to create some "boilerplate". We should try to optimize it away again. One example is
```diff
- switchInt(_4) -> [false: bb7, otherwise: bb8];
+ StorageLive(_9);
+ _9 = _4;
+ _3 = Ne(_9, const false);
+ Storag... | C-enhancement,T-compiler,A-mir-opt | low | Critical |
728,242,252 | godot | [3.2.4 beta1]Strange bug causes Editor lagging on Mac | <!-- 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.4 beta1
**OS/device including version:**
<!-- Specify GPU model, drivers, and the back... | bug,platform:macos,topic:rendering,topic:editor,needs testing,performance | medium | Critical |
728,253,463 | go | cmd/compile: escape analysis for backing arrays | Go's automatic memory management doesn't rely entirely on garbage collection. Escape analysis provides a faster solution where possible.
Lets apply escape analysis to backing arrays (the arrays behind slices).
### Example
In the next example, if append grows the array, it could put the old array directly back in... | NeedsInvestigation | low | Major |
728,256,114 | go | proposal: x/net/xsrftoken: add new, less error-prone API | See https://github.com/golang/go/issues/42166#issuecomment-732061886 for concrete API.
- - -
# Preface
The only thing that Go provides to protect against [CSRF](https://en.wikipedia.org/wiki/Cross-site_request_forgery) is the [x/net/xsrftoken](https://pkg.go.dev/golang.org/x/net/xsrftoken) package. This is [per... | Security,Proposal,Proposal-Hold | medium | Critical |
728,256,832 | react | Feature Request: Adding filter (search) to react DevTools Profiler | A few months ago, we added a tooltip to react DevTools Profiler (cc @bvaughn), so that for very small components, without clicking on them it is possible to see an overview of why they are re-rendered.
However, still, for a not very big page, there can be tens of re-renders, so it is hard to find the component that yo... | Type: Feature Request,Component: Developer Tools | low | Major |
728,258,328 | flutter | Google Sign In - OAuth Consent Screen Shows Once | I am currently using the Google Sign In package to facilitate Social Sign In and also to request consent with the scope, "https://www.googleapis.com/auth/adwords".
The issue I am having involves the serverauthcode that is generated from the requesting of the above scope. It is known that the package itself has some... | p: google_sign_in,package,team-ecosystem,P2,triaged-ecosystem | low | Major |
728,274,385 | pytorch | Unable to compile from code v1.6.0 | ## 🐛 Bug
FAILED: caffe2/CMakeFiles/op_registration_test.dir/__/aten/src/ATen/core/op_registration/op_registration_test.cpp.o
## To Reproduce
Steps to reproduce the behavior:
Run the snippet below:
export \
CFLAGS="${CFLAGS/-fno-plt/}" \
CXXFLAGS="${CXXFLAGS/-fno-plt/}" \
USE_CUDA=1 \
USE_CUDN... | module: build,triaged | low | Critical |
728,360,282 | create-react-app | Compilation error with react-scripts 4.0.0 ( Can't resolve file ) | latest update of react-scripts to 4.0.0 from 3.4.4 causes a compilation problem.
With 3.4.4 it works, and the file exists
```bash
./src/styles/mycssfile.css
Error: Can't resolve '/images/module/filename.png' in 'D:\dev\workspace\xxxxxxxxx\src\styles'
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! xxxx... | needs triage,issue: bug report | high | Critical |
728,374,432 | flutter | `flutter drive` should not print warning about chrome debug extension | The standard way to run a driver web test is via this command: `flutter drive -d web-server --browser-name=chrome --target=...`. This completes successfully. However, along the way it will print the following confusing messages:
```
Waiting for connection from Dart debug extension at http://localhost:34955
The web... | a: tests,tool,t: flutter driver,platform-web,a: annoyance,P2,team-web,triaged-web | low | Critical |
728,470,579 | create-react-app | Import fails when file contains computed property syntax | ### Describe the bug
The react build fails when an inconsequential line containing the computed property syntax is added to a file. Example:
```javascript
const randomThingy = { ['soda']: 'wizard' };
```
If this line is present in a file, then exports will not work for that file in the build. However, they wor... | needs triage,issue: bug report | low | Critical |
728,475,490 | ant-design | [Tabs] ant-tabs-nav-more missing in mobile view | - [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://ant.design/components/tabs/#components-tabs-demo-slide](https://ant.design/components/tabs/#components-tabs-demo-slide)
### Steps to repr... | 💄 Design,Inactive,📱Mobile Device | medium | Major |
728,504,547 | godot | Moving a gltf file with separate bin file within the editor doesn't move the bin file | **Godot version:**
3.2.3 stable
**OS/device including version:**
Windows 10
**Issue description:**
I got a gltf file from my artist that had a separate bin file and texture. After importing I decided to move the files to another directory, but the editor doesn't move the bin file with the gtlf file which b... | bug,topic:import | low | Critical |
728,507,226 | create-react-app | Error when trying to run an upgraded CRA 4 Typescript project | <!--
Please note that your issue will be fixed much faster if you spend about
half an hour preparing it, including the exact reproduction steps and a demo.
If you're in a hurry or don't feel confident, it's fine to report bugs with
less details, but this makes it less likely they'll get fixed soon... | needs triage,issue: bug report | medium | Critical |
728,514,510 | create-react-app | [v4] What else has been changed in testing ? | I upgraded `react-scripts` in my project from version `3.4.x` to `4.0.0` and testing isn't like before.
I read the changelog, you said that you've upgraded to Jest 26 and now set `resetMocks` to `true` by default in the Jest config! (hmm, this isn't expected), so, I added:
"resetMocks": false,
to make my t... | stale,needs triage | low | Major |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.