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 |
|---|---|---|---|---|---|---|
516,001,413 | pytorch | RuntimeError: !t.is_cuda() INTERNAL ASSERT FAILED at /pytorch/aten/src/ATen/native/sparse/SparseTensorMath.cpp:591 | ## 🐛 Bug
RuntimeError: !t.is_cuda() INTERNAL ASSERT FAILED at /pytorch/aten/src/ATen/native/sparse/SparseTensorMath.cpp:591
## To Reproduce
File "/home/jinzhu/pro/UIL/GraphMatch/layers.py", line 42, in forward
output = torch.spmm(adj, support)
RuntimeError: !t.is_cuda() INTERNAL ASSERT FAILED at /pytorch... | module: sparse,triaged,module: assert failure | low | Critical |
516,010,604 | TypeScript | Provide a code action to replace a string with a template string | ## Suggestion
Provide a code action on a string to replace the string with a template string.
## Use Cases
Often you start with a normal string and notice that it should better be a template string. See the example below. When the cursor is inside the string, there should be code action provided 'Replace with ... | Suggestion,Experience Enhancement | low | Minor |
516,024,783 | youtube-dl | Unsupported URL: tvzavr.ru | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | site-support-request,geo-restricted | low | Critical |
516,039,993 | youtube-dl | Unsupported URL: ntvplus.tv | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | site-support-request,geo-restricted | low | Critical |
516,044,883 | go | proposal: spec: anonymous struct literals | Currently it is not possible to write a struct literal without mentioning its type (with the exception of struct literals in map and slice composite literals). This can make it extraordinarily hard to write literals for some types. As an extreme example, consider writing a literal initializer for the [sarama.Config](ht... | LanguageChange,Proposal,dotdotdot,LanguageChangeReview | high | Critical |
516,080,655 | flutter | [in_app_purchase] Provide Documentation on "How to verify subscriptions status" | Is it possible to have some docs or guide about how to verify subscriptions status? Thanks in advance (in_app_purchase) | c: new feature,d: api docs,customer: crowd,p: in_app_purchase,package,team-ecosystem,P3,triaged-ecosystem | low | Major |
516,082,030 | material-ui | [Select] Consistency with Autocomplete | <!-- Provide a general summary of the feature in the Title above -->
<!--
Thank you very much for contributing to Material-UI by creating an issue! ❤️
To avoid duplicate issues we ask you to check off the following list.
-->
<!-- Checked checkbox should look like this: [x] -->
- [x] I have searched the ... | design: material,component: select,component: autocomplete | low | Major |
516,097,751 | youtube-dl | Unsupported URL: uma.media | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | site-support-request,geo-restricted | low | Critical |
516,120,555 | pytorch | Inconsistent documentation for in-place functions at https://pytorch.org/docs/stable/torch.html | ## 📚 Documentation
In-place functions are documented inconsistently. For example functions that generate samples from a distribution have a section called "In-place random sampling", however there is no other documentation for other in-place functions.
For example `pow_()` and `log_()` are not documented anywher... | module: docs,triaged | low | Major |
516,142,914 | vscode | [css] support css-variable completion in calc | Issue Type: <b>Bug</b>
The css variable doesn't auto complete in the calc function in the form of var(--css-variable), rather it just stay like this calc(--css-variable), but it is supposed to be like this calc(var(--css-variable)).
Thanks!
VS Code version: Code 1.39.2 (6ab598523be7a800d7f3eb4d92d7ab9a66069390... | feature-request,css-less-scss | low | Critical |
516,146,079 | godot | Integer underflows, overflows and lossy conversions between types | **Godot version:**
3.2.alpha.custom_build. 99cee9038
**OS/device including version:**
Ubuntu 19.10
**Issue description:**
When I compile Godot with all Undefinied Sanitizer options, then I see a lot of errors.
To see errors you need to compile Godot with sanitizers support and special ubsan arguments(integrated... | bug,topic:buildsystem | low | Critical |
516,158,688 | pytorch | Move allgather_coalesced functionality to comm.cpp. | ## 🚀 Feature
Move allgather_coalesced functionality to comm.cpp.
## Motivation
allgather_coalesced does not rely on any backend specific functionality as it just uses process group's allgather. Therefore, by moving it to some more generic place we can get all supported usecases of allgather to be supported for ... | oncall: distributed,triaged | low | Minor |
516,241,219 | pytorch | Support clang+cuda builds | ## 🚀 Feature
<!-- A clear and concise description of the feature proposal -->
This feature request is to officially support building CUDA code with clang and include this build in CI.
This build is not officially supported. (https://github.com/pytorch/pytorch/issues/28417#issuecomment-546501812). There has als... | module: build,triaged,enhancement | low | Critical |
516,257,035 | pytorch | Add Wishart and inverse-Wishart distributions | ## 🚀 Feature
Implement the positive-definite-matrix-valued Wishart and inverse-Wishart distributions, currently missing from `torch.distributions`.
## Motivation
These distributions often pop up in Bayesian analysis as the conjugate priors for the covariance or precision matrix of the multivariate Gaussian. I... | module: distributions,feature,triaged | medium | Major |
516,271,923 | go | proposal: crypto/tls: add support for delegated credentials | This proposal is to add support to the `crypto/tls` package for the new cryptographic protocol, [delegated credentials](https://tools.ietf.org/html/draft-ietf-tls-subcerts-02), which will be an extension to TLS. It's currently in the process of being adopted as a standard by the IETF.
Some benefits:
Key protectio... | Proposal,Proposal-Hold,Proposal-Crypto | low | Major |
516,307,155 | pytorch | Docker issue for Pytorch 1.3 | The issue is related to the issues:
https://github.com/NVIDIA/apex/issues/486
https://github.com/NVIDIA/apex/pull/490
When I try to compline mmdetection with pytorch 1.3 docker I get an error that can be fixed by defining a few environmental variables. It would be nice to be able to perform a compilation without... | module: binaries,module: build,triaged,module: docker | low | Critical |
516,315,320 | rust | Supplying an &&str when an &str is expected missing a suggestion | ```
let a = std::collections::HashMap::<String,String>::new();
let s = "hello";
let _b = a[&s];
^ & not needed, this is already a reference
```
[playground](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=5683da2c27bfe291e8f6c2ba766ea07b)
But the error we c... | C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics,D-papercut | low | Critical |
516,325,885 | TypeScript | Using the "in" operator should make bracket access safe on an object | ## Search Terms
object in keyof bracket operator in
## Suggestion
Checking a key with the "in" operator on an object should make it safe to to use in brackets
## Use Cases
Useful when writing functions that process input JSON/doesn't have a concrete type.
## Examples
```
// Ideally this uses TypeSc... | Suggestion,Awaiting More Feedback | low | Critical |
516,353,958 | flutter | Navigator should notify when a Screen regains focus/reappears | I'm working on a implementation of React Portals for flutter, For now, the way it works is that everytime a portalcontainer is built , it updates a portalplaceholder in another part of the widget tree . I can safely update and implement this when Navigating forward , since it triggers initState , but when navigating b... | c: new feature,framework,d: api docs,f: routes,P2,team-framework,triaged-framework | low | Minor |
516,354,009 | pytorch | Trace of torch.tensor is impressively convoluted | ```
def test_trace_modern_ctor(self):
class MyModule(nn.Module):
def forward(self, x):
return torch.tensor([0.0])
# Shouldn't fail sanity checks
traced_rec = torch.jit.trace(MyModule(), torch.randn(2, 2))
print(traced_rec.graph)
```
gives the ... | oncall: jit,triaged | low | Minor |
516,374,583 | flutter | Implement textWidthBasis on the Web | We are failing some of our `text_test.dart` tests because we do not respect `textWidthBasis`.
/cc @mdebbar | a: tests,framework,f: material design,a: fidelity,platform-web,P2,c: parity,team: skip-test,team-web,triaged-web | low | Minor |
516,386,462 | rust | Struct with allow(dead_code) on an associated function doesn't provoke a warning when unused | https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=200a3cd3b522382da55883b4b12d3872
```rust
#[warn(dead_code)]
struct U(u64);
impl U {
#[allow(dead_code)]
pub fn foo() {}
}
fn main() {
}
```
In this example, whether there is or not `warn(dead_code)`, there's no warning when... | A-lints,T-compiler,L-dead_code | low | Critical |
516,390,013 | rust | Chain iterator adaptor shold drop exhausted subiterator | Consider the following program:
```rust
use std::sync::mpsc::channel;
fn main() {
let (sender, reciever) = channel();
let source = (1..10).map(move |i| {sender.send(i).unwrap(); i});
let sink = reciever;
let iter = source.chain(sink);
for x in iter {
println!("{}", x);
... | C-enhancement,T-libs-api,A-iterators | low | Minor |
516,390,400 | flutter | Improve fidelity of multi-pointer tap and long press gestures | The current implementation of `PrimaryPointerGestureRecognizer` does not precisely reflect the OEM behavior, which affects tap and long press.
Take tap as an example. Consider a button being tapped by 2 pointers (fingers) in the following sequence:
> down1, down2, up1, up2
The OEM behavior is different on differ... | platform-android,framework,a: fidelity,f: gestures,P3,team-android,triaged-android | low | Minor |
516,392,639 | TypeScript | Report candidates on closing list terminators | From @robpalme: https://twitter.com/robpalmer2/status/1190383568612184064
```ts
function base_init() {
{
}
function me() {
}
```
https://www.typescriptlang.org/play/?ssl=8&ssc=1&pln=9&pc=1#code/GYVwdgxgLglg9mABAIwIYGcCmB9GYZQAUAlIgN4BQliNiFAvhRbYqJLAogLaYnnO0GFIA
# Motivation
When an... | Effort: Difficult,Domain: Error Messages,Experience Enhancement | low | Critical |
516,419,984 | flutter | Use unified logging instead of syslog on iOS 13+ | ## Proposal
syslog stopped working on iOS 13. Use os_log unified logging instead of syslog or ASL. | platform-ios,engine,P2,team-ios,triaged-ios | low | Minor |
516,486,743 | flutter | Machine readable output from "flutter build" | Make output from "flutter build" consistent and machine readable. This is related to #8351 (the consistency part), but has different use cases.
## Use case
1. There are automation tools out in the wild, such as [fastlane](https://fastlane.tools/) which help us sign and publish artifacts to Play Store, App Store ... | c: new feature,tool,P3,team-tool,triaged-tool | low | Critical |
516,492,735 | rust | Improve error message when an operator is only implemented for references of a given type | If an operator (for example `std::ops::Sub`) is only implemented for references of a given type and you try to subtract two instances of that type directly, the error message doesn't give a clue that an implementation for references exists.
```rust
use std::ops::Sub;
struct Foo {}
impl Sub<&Foo> for &Foo {
... | C-enhancement,A-diagnostics,A-trait-system,T-compiler,A-suggestion-diagnostics,D-papercut,D-terse | low | Critical |
516,545,983 | flutter | Add more control over RenderSliverMultiBoxAdaptor | ## Use case
I want to create my own `RenderSliver` which would subclassing `RenderSliverMultiBoxAdaptor`. In my custom `RenderSliver`, I want to be able to create or destroy child in any order. To do that I would need to use `_createOrObtainChild` and `_destroyOrCacheChild`. These methods are private to the library ... | c: new feature,framework,f: scrolling,P3,team-framework,triaged-framework | low | Minor |
516,563,176 | react | React DevTools w/ Electron: Profiler "Reload and start profiling" doesn't work due to XMLHttpRequest 'null' origin | **Do you want to request a *feature* or report a *bug*?**
An error gets thrown when using DevTools Profiler on **Electron** with the "**Reload and start profiling**" feature that leaves Profiler in an unexpected state - the profiling session does not end.
I initially opened [the issue over at Electron](https://gi... | Type: Discussion,Component: Developer Tools | medium | Critical |
516,570,781 | go | cmd/cgo: inject preamble before other include directives | ### What version of Go are you using (`go version`)?
<pre>go version go1.13.3 linux/amd64</pre>
### Does this issue reproduce with the latest release?
Yes
### What did you see?
The cgo generated file `_cgo_export.c` includes `stdlib.h` before anything else (see [here](https://github.com/golang/go/blob/8de0bb77... | help wanted,NeedsInvestigation,FeatureRequest,compiler/runtime | medium | Critical |
516,611,913 | flutter | Flutter SDK hangs while building pub.dart.snapshot on ArchLinux Docker when there are missing system dependencies | Building the following Dockerfile:
```Dockerfile
FROM archlinux/base
RUN pacman -Sy bash curl git unzip --noconfirm
RUN git clone -b "stable" https://github.com/flutter/flutter.git "$HOME/flutter"
RUN "$HOME/flutter/bin/flutter" channel "stable"
RUN "$HOME/flutter/bin/flutter" doctor
```
hangs while buildin... | c: crash,tool,dependency: dart,platform-linux,e: OS-version specific,P2,team-tool,triaged-tool | low | Minor |
516,628,338 | pytorch | [FR] script returns subclass of the original module class | ## 🚀 Feature
I would love `jit.script`ed modules to be subclasses of the original ones. Currently, the returned modules are of the same `RecursiveScriptModule` type, making them unusable with `isinstance` calls. While one can get the original name of the module, there is no general way to make the same function work ... | triage review,oncall: jit,triaged,TSUsability,TSRootCause:ModuleInheritance | low | Minor |
516,637,991 | TypeScript | Automatic Brace Insertion (ABI) is undesirable | **TypeScript Version:** 3.7-beta
**Search Terms:** automatic brace insertion ABI syntax error
**Code:**
```ts
function a() {
"Automatic Brace Insertion! (ABI)";
```
**Expected behavior:**
The input is syntactically invalid, so emit should fail regardless of the state of `noEmitOnError`. Other fo... | Suggestion,Awaiting More Feedback | low | Critical |
516,689,868 | youtube-dl | Extractor Error KeyError('vid') | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | account-needed | low | Critical |
516,695,285 | godot | 3D objects get jagged edges in GLES2 (due to low Z-buffer precision on AMD GPUs) | 3.2.alpha3 (same issue existed in previous versions, including 3.1.1 iirc -- and still existed a day or two ago in build `af4fd9de9`)
Windows 7 / ATI Radeon HD 4870
**This happens in GLES2 only** (at least in my case). In GLES3 all seems fine.
I get these weird glitches where the edges of **large** 3D objects ar... | bug,topic:rendering | low | Major |
516,695,526 | pytorch | error: 'SO_REUSEPORT' was not declared in this scope | ## 🐛 Bug
When building from master, the error in the title appears.
## To Reproduce
Steps to reproduce the behavior:
1. checkout master
1. build
## Expected behavior
Build works
## Environment
- PyTorch Version: 1.4 master
- OS (e.g., Linux): Fedora Linux
- How you installed PyTorch (`con... | module: build,triaged,module: third_party | medium | Critical |
516,712,643 | pytorch | "Unknown type constructor" error in TorchScript | ## 🐛 Bug
Scripting functions and classes with initialisation of List, Dict, Tuple fails, if `import typing` is used instead of `from typing import...`: Error "RuntimeError: Unknown type constructor typing.List"
## To Reproduce
Code 1
```
import torch
from typing import List
@torch.jit.script
def MyFunc():
... | oncall: jit,triaged,jit-backlog | low | Critical |
516,769,753 | PowerToys | [FrancyZones] "Move newly created windows to their last known zone" support for PWAs installed from Chromium Edge | # Summary of the new feature/enhancement
Please support those PWAs installed by Chromium Edge which are opened in individual windows on the "Move newly created windows to their last known zone" function, for now they are opened up in a very strange position (mostly out of the screen)
<!--
A clear and concise descri... | Idea-Enhancement,Product-FancyZones,Area-App Compat | low | Major |
516,789,023 | kubernetes | Break the circular dependency in kubelet | This is a pre-requisite issue for https://github.com/kubernetes/kubernetes/issues/84473
## Overview

+ [ ] Break the circular dependency between configMapManager, secretManager and kube... | priority/backlog,area/kubelet,kind/cleanup,sig/node,kind/feature,lifecycle/frozen | low | Major |
516,813,260 | go | runtime: support GOFLAGS=-race everywhere | I'd like to set GOFLAGS=-race on a CI builder. However, some tests invoke the go tool to build for GOOS=js where -race is not supported, leading to this error:
$ GOFLAGS=-race GOOS=js GOARCH=wasm go build std
go build: -race is only supported on linux/amd64, linux/ppc64le, linux/arm64, freebsd/amd64, netbsd... | NeedsDecision,compiler/runtime | low | Critical |
516,825,548 | scrcpy | Could not listen on port 27183 | debain10 安装后启动
```js
2019/11/03 20:47:17.095543 cmd_run.go:880: WARNING: cannot start document portal: read unix @->/run/user/1000/bus: EOF
INFO: scrcpy 1.10 <https://github.com/Genymobile/scrcpy>
/usr/local/share/scrcpy/scrcpy-server.jar: 1 file pushed. 3.0 MB/s (22546 bytes in 0.007s)
listen: Operation not permi... | snap | low | Critical |
516,828,691 | godot | Problem releasing game to appstore | I'm developing a game with this awesome game engine and I want to release my game to appstore. My game uses FB SDK and AdMob and I managed to compile the Godot source for iOS. The game runs fine on simulator and device, But when I archived it in xcode and send it to appstore there is some problems that should be fixed.... | platform:ios,topic:porting | low | Critical |
516,838,853 | svelte | Component Unmount: Allow non-duration based outro animations | I am struggling to use a spring-based animation for component outros (unmounting the DOM element). As far as I can tell, the only way to defer/delay the unmount/outro of a component is to use the `transition` or `out` [directive](https://svelte.dev/docs#in_fn_out_fn) and return an transition object with a specified dur... | feature request,stale-bot,temp-stale | low | Major |
516,859,510 | TypeScript | Please document compiler APIs | Would it be possible to get some documentation on the compiler APIs?
I am working on some TypeScript tooling, and I am using `ts.createSourceFile()` to get the AST for a TypeScript source file. However, the tree in `SourceFile.statements` is missing some information. For example, I need to know the type of an `Expr... | Docs | low | Major |
516,861,527 | rust | Request: mark all integer platform intrinsics as `const` | The platform intrinsics for _floating point_ suffer the standard floating point problems of not being fully deterministic at all times, which is a requirement for const.
However, the platform intrinsics for _integer_ data do not suffer these problems at all. They are plain integer math operations and you can determi... | T-lang,T-libs-api,C-feature-request,A-const-eval | low | Minor |
516,863,909 | angular | ExpressionChangedAfterItHasBeenCheckedError is thrown by ngModel.control.disable() been called | # 🐞 bug report
### Affected Package
The issue is caused by package `@angular/forms`
### Is this a regression?
No.
### Description
I want to disable a form field with NgModel (template-driven form) dynamically with `ngModel.control.disabled()` method call in the `ngAfterViewInit()` hook. It will throw... | type: bug/fix,workaround1: obvious,area: forms,state: confirmed,forms: template-driven,forms: disabling controls,forms: ngModel,forms: change detection,P4 | low | Critical |
516,866,033 | godot | Shift and CRTL+A group selection does not work on the AnimationPlayer Copy Tracks pop up | **Godot version:**
_3.2 alpha 3_
**OS/device including version:**
All
**Issue description:**
When you hold the Shift key and click the bottom track and then the top track or vica versa, and just those tracks are selected rather than all of the tracks which are inbetween those two.
In addition, CTRL+A ... | enhancement,topic:editor,usability | low | Minor |
516,873,798 | godot | When debugging, hovering a variable containing a lot of text makes its tooltip cover the entire screen with white | Godot 3.2 alpha3
When debugging, I hovered some `text` variable in my script which was containing a lot of text (hundreds of lines with some of them having hundreds of characters). Godot tried to show a tooltip with the value inside but that resulted in the tooltip covering the entire editor, curiously without any t... | bug,topic:editor,confirmed | low | Critical |
516,875,564 | go | cmd/trace: Mininum mutator utilization plot window durations range is not consistent across Include options | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.13.4 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture ar... | NeedsInvestigation,compiler/runtime | low | Critical |
516,882,164 | godot | Selecting multiple nodes adds empty RefCounted section in the inspector | **Godot version:**
3.2 alpha3
**Steps to reproduce:**
1. Create 2 nodes (best observable with Node)
2. Select both of them
3. This appears at the bottom of the inspector

I guess it shouldn't be there... | bug,topic:editor,confirmed | low | Minor |
516,894,230 | rust | Unhelpful error message constructing re-exported tuple struct with private fields | If a public tuple struct with private fields is declared in a public module, then instantiated elsewhere, the error message is helpful. For example, the code
```rust
// src/lib.rs
pub mod a {
pub struct Triplet(usize, usize, f64);
}
```
```rust
// src/main.rs
use triplets::a::Triplet;
fn main() {
l... | C-enhancement,A-diagnostics,A-visibility,T-compiler,D-confusing,D-papercut,D-incorrect | low | Critical |
516,897,051 | godot | Opening a scene when an empty scene tab is open should replace the tab | **Godot version:**
3.2 alpha3
**Issue description:**
When you have an empty scene open (no root, no filename assigned) and open another scene, it should replace the empty tab with that scene. You can observe such behavior e.g. in Google Chrome. | enhancement,topic:editor,usability | low | Minor |
516,904,161 | react | "NotFoundError: Failed to execute 'removeChild' on 'Node'" when using React.Fragment <></> with Chrome extension which does not modify the DOM tree below the root div of the React app | This has already been discussed before (#14740), but there wasn't a reproducing example for this kind of issue and I think that my use case is also a bit different.
**Do you want to request a *feature* or report a *bug*?**
I believe this can be considered a bug.
**What is the current behavior?**
In order to rep... | Type: Needs Investigation | high | Critical |
516,908,024 | godot | preload doesn't list as dependency when in build-in script | **Godot version:**
3.2 alpha3
**Issue description:**
When you preload a resource in a script, it will become a dependency of this script, so e.g. when you try to delete the resource, you get a warning about that. However it's not the case with built-in scripts. They should probably add the dependency to the scene. | bug,topic:editor,confirmed | low | Minor |
516,911,234 | TypeScript | Bad `.d.ts` emit for class expression on `module.exports | ## Repro
```js
module.exports.answer = class C {
foo = 10;
bar;
}
```
## Instructions
```sh
tsc --declaration --allowJS --outDir lib ./src/foo.js
```
## Current
```ts
declare class C {
foo: number;
bar: any;
}
export {};
```
## Expected
```ts
declare class C {
foo... | Bug,Domain: Declaration Emit,Domain: JavaScript | low | Minor |
516,931,822 | rust | Incorrect trace for Item-level syntax errors in modules included by macro-generated code | Using Rust nightly 2019-11-04.
Consider a macro that generates a `mod` statement:
```rust
#[proc_macro]
pub fn generate(_: proc_macro::TokenStream) -> proc_macro::TokenStream {
quote::quote!(mod foo;).into()
}
```
Call this in the src/main.rs in another crate:
```rust
codegen::generate!();
fn main(... | A-diagnostics,A-macros,T-compiler,C-bug | low | Critical |
516,934,947 | flutter | Google Map: Support for "Hollow" Polygons | According to the Google Maps API, most libraries have support for "Hollow" Polygons. However, I could not find any such support for the Dart API.
Does anyone know if such support is already on its way? If not I would like to make it a feature request as my current project requires this functionality.
Below I've ... | c: new feature,p: maps,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | low | Minor |
516,946,620 | flutter | Suggestion: When installing Flutter, ask which parts to install | Hello! I have two workstations. One is a MacBook Air and the other one is a Windows/Linux desktop. I am developing using Flutter on both and I find it a waste of space to download all of the Android stuff on my Mac when I develop on Android on my Windows installation. Would it be possible to add a question related to t... | c: new feature,tool,P3,team-tool,triaged-tool | low | Minor |
516,980,607 | pytorch | a retrained and saved jit module could not be reload. | I'm try to retain a JIT module from pytorch using c++ based on Libtorch libtorch-win-shared-with-deps-1.3.0 _cpu, and save retrained module for next usage.
the save and reload process will be like the following , but get erro while try reload.
```cpp
torch::serialize::OutputArchive output_archiv... | oncall: jit,triaged | low | Critical |
517,031,484 | youtube-dl | Dplay (Discovery Network) Plus not downloading anymore | Hi, videos that requires authentication not downloading anymore. Tryed both with auth cookie and --username and Password. It says 403 Forbidden. Here below the verbose output:
C:\Users\User\Downloads>youtube-dl.exe --cookies cookie.txt https://it.dplay.com/discovery-channel/una-famiglia-fuori-dal-mondo/stagione-4-ep... | account-needed | low | Critical |
517,052,363 | pytorch | First element in data passed to `torch.*Tensor` constructors cannot be a tensor | ## 🐛 Bug
`torch.*Tensor` constructors can accept something like `torch.LongTensor([list, tensor])` but not `torch.LongTensor([tensor, tensor])` or `torch.LongTensor([tensor, list])`.
**Exception message:**
> ValueError: only one element tensors can be converted to Python scalars
## To Reproduce
Steps to r... | triaged,module: nestedtensor | low | Critical |
517,071,686 | flutter | Allow TextField label fixed size | The UI design I need to implement has fixed sizes for all text field states, focused, empty, etc. AFAIK there is no way to implement this in Flutter - the label becomes larger when the text field is empty and not focused.
See 'Notes' and 'Hourly Rate' on the screenshots below.
I can work around this with a Column/Tex... | a: text input,c: new feature,framework,f: material design,P3,workaround available,team-text-input,triaged-text-input | low | Minor |
517,076,722 | youtube-dl | Support for stripchat.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 |
517,086,777 | rust | Tracking issue for `#![register_tool]` | A part of https://github.com/rust-lang/rust/issues/44690.
Some tools (`rustfmt` and `clippy`) used in tool attributes are hardcoded in the compiler.
We need some way to introduce them without hardcoding as well.
https://github.com/rust-lang/rust/pull/66070 introduced a way to do it with a crate level attribute:
... | A-attributes,T-lang,B-unstable,T-dev-tools,C-tracking-issue,needs-fcp,S-tracking-design-concerns | high | Critical |
517,146,822 | every-programmer-should-know | A Mindmap to organize the content | I think it'd be awesome if we had a big mindmap to organize all the topics and subtopics.
| Needs some ❤️ | low | Minor |
517,164,087 | pytorch | crash when call dist.new_group(ranks=local_ranks, backend='gloo') | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
process crash when call dist.new_group(ranks=local_ranks, backend='gloo')
## To Reproduce
Steps to reproduce the behavior:
<!-- If you have a code sample, error messages, stack traces, please provide it here as well -->
```python... | oncall: distributed,triaged | low | Critical |
517,167,422 | TypeScript | NonNullablePartial type - Partial that doesn't allow explicit null/undefined values | <!-- 🚨 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 |
517,184,299 | pytorch | torch.masked_fill missing out argument | Following up on https://github.com/pytorch/pytorch/issues/29028#issuecomment-548968891, there exists `torch.masked_fill_` but cannot be accessed through `out` argument, which makes writing generic (inplace / out-of-place) code less straighforward
This is just one example, it would be nice to make a summary table for... | feature,triaged,module: ux | low | Minor |
517,258,628 | pytorch | _compared_saved_loaded doesn't work with torch.tensor constants | Steps to reproduce:
1. Add this test to `test_jit.py`:
```python
def test_trace_modern_ctor(self):
class MyModule(nn.Module):
def forward(self, x):
return (x + 1, torch.tensor([0.0]))
# Shouldn't fail sanity checks
traced_rec = torch.jit.trace(MyModu... | triage review,oncall: jit,triaged | low | Critical |
517,273,823 | pytorch | JIT should respect SKIP_PYTHON_BINDINGS and SKIP_PYTHON_BINDINGS_SIGNATURES | The eager python frontend does not bind specific operators to python, either via SKIP_PYTHON_BINDINGS or SKIP_PYTHON_BIDNINGS_SIGNATURES:
https://github.com/pytorch/pytorch/blob/41e42c34d65f7dce5f526cdb059e860bbe4d0f36/tools/autograd/gen_python_functions.py#L19-L49
The JIT does not respect these lists, however, whi... | triage review,oncall: jit,triaged | low | Critical |
517,289,692 | TypeScript | No autocompletion/intellisense for local commonJS modules | *TS template added by @mjbvz*
**TypeScript Versions**: 3.8.0-dev.20191102
**Search terms:**
- commonjs
- auto complete
*Original report below*
---
I would expect that suggestions commonJS modules written in a similar style to ES6 modules would also be nicely autocompleted as one types, but this seem... | Bug,Domain: Auto-import | low | Minor |
517,306,665 | godot | Editor crashes when saving scene with tool script | On Godot_v3.1.1-stable_x11.64 on Arch Linux, the editor crashes when saving a scene with the following script:
```
tool
extends Spatial
export(NodePath) var path
# Called when the node enters the scene tree for the first time.
func _ready():
path = get_node(path)
```
The editor will crash upon saving as l... | bug,topic:editor,confirmed,crash | low | Critical |
517,310,689 | flutter | accessibility test meetsGuideline(textContrastGuideline) throws on web | This issues surfaced in a pre-submit test: https://cirrus-ci.com/task/4889346271870976
### Repro code:
`flutter test --platform=chrome test/cupertino/button_test.dart`
```dart
await tester.pumpWidget(
CupertinoApp(
theme: const CupertinoThemeData(brightness: Brightness.dark),
... | a: tests,framework,a: accessibility,platform-web,P2,c: parity,c: tech-debt,team: skip-test,team-web,triaged-web | low | Critical |
517,318,310 | flutter | Get pixel color of Canvas (CustomPaint) | Hello everyone!
We're creating an application using the CustomPaint widget to create some drawing stuffs.
All operations look good, but we miss the possibility of getting a pixel color from the current Canvas to do operations with them, like: custom filters, flood fill, etc.
Is it possible to add this? | c: new feature,framework,a: images,c: proposal,P3,team-framework,triaged-framework | low | Major |
517,330,141 | pytorch | torch.sum(tensor, dim=()) is different from np.sum(arr, axis=()) | ## 🐛 Bug
`torch.sum(tensor, dim=())` performs a full reduce, while `np.sum(arr, axis=())` performs no reduce.
## To Reproduce
Steps to reproduce the behavior:
```
import torch
import numpy as np
arr = np.array([1, 2, 3])
tensor = torch.from_numpy(arr)
tensor.sum(()) # gives tensor(6)
arr.sum(()) ... | high priority,module: bc-breaking,triaged,module: numpy,module: TensorIterator,module: deprecation,module: reductions | medium | Critical |
517,332,740 | flutter | [Cupertino] on iPad, modals are shown in a popover, no way to show Cupertino style modals on iPad | <!-- 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... | e: device-specific,platform-ios,framework,a: tablet,a: fidelity,f: cupertino,a: quality,customer: crowd,P2,team-design,triaged-design | low | Critical |
517,340,826 | godot | [TRACKER] inst2dict and dict2inst related issues | **Godot version:**
3.2, 4.0+
**Issue description:**
There are quite a bunch of old issues present with `inst2dict` and `dict2inst` that it's worth to add a tracker for it. I'm currently working on some of them.
```[tasklist]
## Issues
- [ ] #6533
- [x] #26188
- [ ] #30077
- [ ] #30572
- [x] #31045
- [x] ... | bug,topic:core,tracker | low | Minor |
517,381,045 | godot | Oversized 'X' in search fields when using a custom editor theme | **Godot version:**
3.1
**OS/device including version:**
Windows 10
Resolution 2560 x 1440p / UI Scaling 100%
**Issue description:**
The 'x' icon used to clear the search fields in the Godot editor interface appears to be too large, likely a retain/scaling issue.
 sorts of endless loops at the time of `GCompiler` constructor call by applying somewhat stand... | RFC,category: g-api / gapi | low | Critical |
517,401,981 | opencv | watershed giving not stable results | I keep getting not consistent results with watershed segmentation (providing the python test code below). I'm not sure if this is just weakness of the implemented algorithm or a bug. However when testing on the same data with scikit-image watershed I get correct results. My opencv version is 4.1.2
**dataset1** from ... | category: imgproc | low | Critical |
517,409,146 | flutter | Always highlight the selected widget on the device | Currently you have to call
`ext.flutter.inspector.show` to enable the inspector before selected widgets can be highlighted on the device.
enabling the on device inspector is conflated with inspector select mode.
Suggested solution:
`add ext.flutter.inspector.selectMode` extension that toggles whether clicking o... | c: new feature,framework,f: inspector,d: devtools,P3,team-framework,triaged-framework | low | Minor |
517,430,214 | rust | Fix: mark relevant spans (ex: ident.span) with macro expansion context | In #65830 it was discovered that `hir::Item.ident.span` isn't marked `with_ctxt` of being part of a macro expansion. This had two effects that we saw there:
- error messages don't include the "in this macro invocation" hints
- cases where the dead_code error was suppressed because of foreign macros were no longe... | C-cleanup,A-macros,T-compiler | low | Critical |
517,451,368 | TypeScript | Find all references doesn't find all results and crashes tsserver if `type S = import().S` syntax is used | <!--
Please try to reproduce the issue with the latest published version. It may have already been fixed.
For npm: `typescript@next`
This is also the 'Nightly' version in the playground: http://www.typescriptlang.org/play/?ts=Nightly
-->
**TypeScript Version:** 3.9.0-dev.20200223, 3.8.2
<!-- Search terms you tr... | Domain: Symbol Navigation | low | Critical |
517,463,248 | flutter | Perform device to host texture transfer on the IO thread. | Capturing a snapshot of a scene is extremely expensive (multiple frame intervals worth of time) and needs to happen on the GPU thread within a frame workload. Because of this, operations like Scene.toImage and Picture.toImage can potentially cause extreme amounts of jank in a Flutter application.
The sequence of ope... | c: new feature,engine,c: performance,dependency: skia,P2,team-engine,triaged-engine | low | Major |
517,504,893 | pytorch | Modules without copying in multiprocess | I tried to use a multi-process inference model,but the following occurred:
process number ==1: GPU Memory-usage: 1933mib。
process number ==2: GPU Memory-usage: 3028mib。
......
process number ==10: GPU Memory-usage: 11310mib。
code:
. Thanks for your awesome work and making `react-reconciler` for us to use!
I've got many issues lately regarding context not working on my library and when doing tests I found out that context values aren't ... | Type: Enhancement,Component: Reconciler | medium | Critical |
517,537,830 | go | x/build/cmd/coordinator: add timeout to make.bash | It seems the build coordinator doesn't have a timeout on the make.bash phase?
This Mac builder is stuck in make.bash for over 4 hours:
```
darwin-amd64-10_14 rev 2566e21f; running; http://macstadium_host07b reverse peer macstadium_host07b/207.254.3.58:60202 for host type host-darwin-10_14, 4h48m28s ago
2019-1... | help wanted,NeedsInvestigation | low | Minor |
517,549,861 | godot | Computer freezes due to searching in the inspector | **Godot version:**
Godot 3.2 alpha-3 mono
**OS/device including version:**
ArcoLinux
**Issue description:**
When searching the inspector while inspecting a theme (with the editor template, hence tons of properties to search through), Godot will sometimes freeze up and start eating up all of the computer's memory. ... | bug,topic:editor | low | Minor |
517,673,177 | pytorch | How to run two different jit models in two GPUs respectively in one scrip? | I have an encoder-decoder model. After converted encoder and decoder model into jit models, I want to load encoder on GPU:0 and the encoder outputs **Keys** and **Value**. Then I move the **Keys** and **Values** to GPU:1 since the decoder is loaded on GPU:1.
encoder = torch.jit.load(feat_model).cuda(0)
gr... | oncall: jit,triaged | low | Critical |
517,697,216 | flutter | Allow control over TextField labelText spacing | I need to implement a design where text field labels are farther up from the text field top.
I don't see any way Flutter allows this.
The closest thing is labelStyle height but it breaks label completely when it needs to wrap horizontally. | a: text input,c: new feature,framework,f: material design,a: typography,P3,team-text-input,triaged-text-input | low | Minor |
517,698,422 | flutter | decodeImageFromList shows error when convert YUV420 to ui.Image | <!-- Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
* https://flutter.dev/
* https://api.flutter.dev/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you hav... | c: crash,a: quality,p: camera,package,team-ecosystem,P3,triaged-ecosystem | low | Critical |
517,706,402 | flutter | [web] SelectableText doesn't show toolbar | ## Problem
> Flutter 1.10.14 • channel dev
- flutter for web
Want to copy String_data in the flutter for web.
- clipboard
When trying clipboard in the flutter web , cant copy the text.
```
import 'package:flutter/services.dart';
Clipboard.setData(ClipboardData(text: 'data'));
```
- SelectableText
... | platform-ios,framework,f: material design,a: quality,a: typography,platform-web,has reproducible steps,P2,found in release: 3.3,found in release: 3.5,team-design,triaged-design | low | Major |
517,739,860 | rust | Mark Result::{ok,err} as #[must_use] | In a discussion in our Rust group, someone incorrectly uses `ok()` without checking its return value, causing confusing issue. As `Result::{is_ok, is_err}` are already marked `#[must_use]` in #59610, I don't see any reason `Result::{ok, err}` shouldn't be.
cc #48926 | T-libs-api,C-feature-request | low | Major |
517,745,995 | opencv | CV_OCL_RUN_ (the default implementation) should not swallow exceptions | ##### System information (version)
- OpenCV => master branch
##### Detailed description
CV_OCL_RUN_ should not swallow exceptions. It gets called when running OpenCL kernels, so when doing GPU acceleration (I was using BackgroundSubtractorMOG2). This is how it is now implemented by default:
```.cpp
#define C... | category: ocl,RFC | low | Minor |
517,759,916 | flutter | Expose Skia Paint.getFillPath | Please expose Skia Paint getFillPath
https://skia.org/user/api/SkPaint_Reference#SkPaint_getFillPath
## Use case
Multiple, we can draw the stroke path outline, check point on path
| c: new feature,engine,c: proposal,P3,team-engine,triaged-engine | low | Minor |
517,762,587 | rust | rustc generates invalid DWARF when LTO is enabled | When combining `lto = true` with `debug = true` in Cargo.toml, the compiler generates invalid DWARF, according to [Gimli](https://github.com/gimli-rs/gimli.git).
I've created a minimal example here: https://github.com/hannobraun/dwarf-test
If you follow the instructions in the example's README, you should see som... | A-LLVM,A-debuginfo,E-needs-test,T-compiler,C-bug | medium | Critical |
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.