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 |
|---|---|---|---|---|---|---|
520,491,311 | rust | `--remap-path-prefix` does not apply to secondary files in diagnostics | Since #64151 added some new diagnostics, Rocket's UI tests have had mismatches in stderr that I can't seem to fix. In particular these diagnostics include "secondary file" paths that aren't easily normalizable or remappable.
I haven't tried to make a minimal reproduction yet, but this output should illustrate the pr... | A-diagnostics,T-compiler,C-bug,A-reproducibility,D-diagnostic-infra | low | Critical |
520,510,005 | TypeScript | Allow type aliases to reference themselves in type argument positions | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Suggestion,Awaiting More Feedback | medium | Critical |
520,515,906 | flutter | Separate writeable files/cache from main flutter directory | I want to package flutter for nix / nixos but i cannot do that due to it trying to write to its install directory, it would be nice for flutter to not attempt to write to the folder it is installed in as it make it very hard to package it correctly. | c: new feature,tool,P2,team-tool,triaged-tool | low | Major |
520,516,992 | pytorch | torch.stack: bad shape error message | ## 🐛 Bug
torch.stack results in `RuntimeError: invalid argument 0: Sizes of tensors must match except in dimension 0. Got 1 and 4 in dimension 1` errors for perfectly valid input. At first I thought I was misunderstanding how indexing works, but when I changed "dim" in the stack call to 1, I got the error with `Run... | module: docs,module: error checking,triaged | low | Critical |
520,518,949 | TypeScript | Suggestion: prompt rename after "convert named imports to namespace imports" | <!-- 🚨 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,Experience Enhancement | low | Critical |
520,538,353 | CS-Notes | 二分查找的区间为何是 0 到 len(nums) 而不是 len(nums) | 在使用二分查找来查找区间时,[该题](https://github.com/CyC2018/CS-Notes/blob/master/notes/Leetcode%20%E9%A2%98%E8%A7%A3%20-%20%E4%BA%8C%E5%88%86%E6%9F%A5%E6%89%BE.md#6-%E6%9F%A5%E6%89%BE%E5%8C%BA%E9%97%B4)中h的初始值为何要设置为len(nums)?其他题中设置的均为len(nums)-1
```private int binarySearch(int[] nums, int target) {
int l = 0, h = nums.length; /... | question | medium | Minor |
520,548,900 | go | cmd/vet: export list of analysis passes used by vet | <!-- 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,FeatureRequest,Analysis | low | Critical |
520,551,022 | material-ui | [material-ui] Provide more direct documentation access to props of "inherited" components | This actually is a duplicate of #7981, but that issue is quite old and I think this would be worth re-visiting.
## Summary 💡
<!-- Describe how it should work. -->
Many Material UI components delegate to other Material UI components.
There are two main flavors of this delegation:
1. Delegating to a root el... | docs,package: material-ui,scope: docs-infra | low | Major |
520,563,422 | pytorch | RuntimeError: CUDA error: invalid device ordinal | model = model.to(device)
File "/usr/local/lib/python3.6/dist-packages/torch/nn/modules/module.py", line 426, in to
return self._apply(convert)
File "/usr/local/lib/python3.6/dist-packages/torch/nn/modules/module.py", line 202, in _apply
module._apply(fn)
File "/usr/local/lib/python3.6/dist-packag... | module: cuda,triaged | low | Critical |
520,574,738 | neovim | Windows: use AF_UNIX instead of named pipes | `AF_UNIX` is supported on Windows now, and has some advantages over named pipes:
https://devblogs.microsoft.com/commandline/af_unix-comes-to-windows/
libuv issue: https://github.com/libuv/libuv/issues/2537 | enhancement,platform:windows,system | low | Minor |
520,578,850 | rust | As of 1.37.0, `dylib` shared libraries no longer support interpositioning of functions defined in C | I encountered a stable-to-stable linking regression while working with a project that compiles to an x86-64 ELF shared library for Linux. The library exports a Rust interface, but also includes some wrappers of libc functions, written in C, that need to shadow the system implementations via interpositioning. I perfor... | A-linkage,P-medium,T-compiler,regression-from-stable-to-stable,C-bug | low | Critical |
520,580,319 | youtube-dl | match-filter with wildcard/regex | I can download all videos of a playlist when i use the complete plalyist name in the match-filter command
`--match-filter "playlist_title = 'playlist name'"`
But when i only use a part of the title it doesn't work. Aren't wirdcard/regex not supported here? This can be useful when a new playlist with a slightly di... | question | low | Minor |
520,588,828 | TypeScript | Non-null assertions infringe a responsibility of optional chaining | Because @RyanCavanaugh couldn't understand what is the problem, I reexplain it.
In the following case, a responsibility of optional chaining is making a return type `Element | undefined`.
```ts
// a is string | null | undefined
const a = document.querySelector('_')?.textContent;
```
In the following case, n... | Suggestion,Needs Proposal | medium | Critical |
520,591,820 | pytorch | Indexing with torch tensors and NumPy arrays is different | ## 🐛 Bug
When I use a numpy.ndarray type boolean index for a tensor, it sometimes goes wrong when the tensor is a relatively small one.
## To Reproduce
Steps to reproduce the behavior:
```
np.random.seed(1024)
A = torch.tensor(np.random.rand(26,54))
W = (A > 0.5).numpy()
A[W]
```
Then it reports an e... | triaged,module: numpy | low | Critical |
520,621,439 | youtube-dl | Add support for akvideo | ## Checklist
- [X] I'm reporting a new site support request
- [X] I've verified that I'm running youtube-dl version **2019.11.05**
- [X] I've checked that all provided URLs are alive and playable in a browser
- [X] I've checked that none of provided URLs violate any copyrights
- [X] I've searched the bugtracker ... | site-support-request | low | Critical |
520,636,829 | flutter | Semantics link does not show link in SemanticsDebugger | Internal: b/144019142
FR form customer:money:
The elements show as '(button)' and '(textfield)'
However for Semantics link=true, '(link)' is not shown in the SemanticsDebugger. | framework,a: accessibility,a: debugging,customer: money (g3),P2,team-framework,triaged-framework | low | Critical |
520,637,411 | flutter | Exception while getting the endpoints for a selection | Internal: b/143844802
No repro instructions unfortunately. This happens to customer:quill clients sporadically.
It's likely that the text was updated on the TextField at the time of the error, as the last redux action received would have attempted to update TextField.text.
```
StateError: Bad state: No element
... | a: text input,c: crash,framework,customer: quill (g3),P2,team-framework,triaged-framework | low | Critical |
520,643,628 | godot | After bottom tab changes on run, pressing on a node which changes tab does not change back | **Godot version:**
_3.3.2 stable_, also happens in _3.2 beta 1_ and _3.1.1 stable_
**OS/device including version:**
All
**Issue description:**
After the bottom tab changes to Output when you run the game, pressing on a node which changes tab to another when first pressed (i.e. AnimationPlayer) does not c... | bug,topic:editor,confirmed,usability | low | Minor |
520,654,736 | pytorch | Half precision cdist | ## 🚀 Feature
Allow `torch.cdist` to work with half precision tensors
## Motivation
The new `torch.dist` function doesn't allow half precision tensors as inputs. However, using half precision can potentially speed up computation of pairwise distances especially if tensor cores are available to speed up the matri... | module: cuda,triaged,module: half,function request,module: distance functions | low | Minor |
520,671,118 | godot | Classes are not considered constants in GDScript | Godot 3.2 alpha1
The following examples all produce an `Expected a constant expression` error:
```gdscript
class Test:
var a
const test = Test
const test2 = [Test]
const test3 = {"test": Test}
```
I wanted to use a class in a constant, but it's not possible, while it is possible with scripts obtained... | bug,topic:gdscript | low | Critical |
520,708,440 | rust | Waker::will_wake() gets mostly defeated by executor optimizations | The Futures `Waker` API provides a [Waker::will_wake()](https://doc.rust-lang.org/beta/std/task/struct.Waker.html#method.will_wake) method which tries to determine whether the 2 `Waker`s are equivalent. It intends to allow `Future`s so determine whether they have to swap a `Waker` or have to can keep an already stored ... | C-enhancement,T-libs-api,A-async-await,AsyncAwait-Triaged,C-optimization | low | Minor |
520,751,751 | neovim | API: listen only for cursor state without grid_lines | From: #11367
> 3\. Don't need `lines` / `grid_lines` event at all if there will be API to get HL states. So toggle/ui-option to get only cursor updates will be very good to save rpc bandwidth
Allow to listen for only for the cursor state, without ```lines/grid_lines``` events. May be ui-option like ```ext_cursor... | enhancement,performance,api,ui | low | Minor |
520,759,825 | rust | Missing object files when linking with LTO | ### Situation
I'm trying to add a dependency to [SPIRV-Cross](https://github.com/KhronosGroup/SPIRV-Cross) for Gecko, and I'm seeing [linking errors](https://treeherder.mozilla.org/logviewer.html#/jobs?job_id=274841436&repo=try&lineNumber=37327) (with undefined symbols) *only* in the "OS X Cross Compiled asan" job (... | A-linkage,O-macos,A-cross,T-compiler,C-bug | low | Critical |
520,880,283 | rust | Stabilize `#[bench]` and `Bencher`? | I’ll take the liberty of copying a section of @hsivonen’s [Rust 2020 blog post](https://hsivonen.fi/rust2020/):
> ## Non-Nightly Benchmarking
>
> The library support for the `cargo bench` feature has been in the state “[basically, the design is problematic, but we haven’t had anyone work through those issues yet](... | T-lang,T-libs-api,B-unstable,A-libtest | medium | Major |
520,883,237 | flutter | [in_app_purchase] Not receiving receipt in the purchase process | We have implemented subscriptions using the in_app_purchase plugin and we detected that our users are experiencing problems activating the subscription. Our flow is the following:
When user subscribe to our service we save the first receipt to our backend and then we use server-to-server notifications to get the re... | p: in_app_purchase,package,team-ecosystem,P2,triaged-ecosystem | low | Major |
520,900,634 | pytorch | Tensorboard GPU Problems | ## 🐛 Bug
When I train a model without importing tensorboard everything works fine. when I import it I get the following warning:
> lib/python3.7/site-packages/torch/nn/parallel/data_parallel.py:26: UserWarning:
> There is an imbalance between your GPUs. You may want to exclude GPU 2 which
> has less t... | module: cuda,triaged,module: tensorboard | low | Critical |
520,904,329 | flutter | `CupertinoContextMenuAction` should have a `trailing` widget rather than just an `IconData trailingIcon` | ## Use case
Now we can't change the icon color or use others widget for trailing
## Proposal
https://github.com/flutter/flutter/blob/9e0df259df9c521d0ffbdf5ba664f6ab30143884/packages/flutter/lib/src/cupertino/context_menu_action.dart#L46
`IconData trailingIcon` -> `Widget trailing` | c: new feature,framework,c: API break,f: cupertino,c: proposal,P3,team-design,triaged-design,fyi-text-input | low | Minor |
520,918,652 | flutter | Dialog maxWidth is not configurable | The `Dialog` class uses a `ConstrainedBox` widget with `constraints: const BoxConstraints(minWidth: 280.0)`.
It would be useful to add `maxWidth` as a constructor parameter since currently all dialogs appear very wide on large screens (e.g. tablet or web). | framework,f: material design,c: proposal,P3,workaround available,team-design,triaged-design | low | Major |
520,934,362 | vscode | [themes] provide command to change theme | There is a command to open the theme prompt (`workbench.action.selectTheme`), however, I would like a command to change the theme (the name of which would be provided as an argument).
The reason I would like this is that I frequently switch between a dark and a light theme, depending on my mood, time of day, etc. Cu... | feature-request,themes | low | Minor |
520,937,116 | flutter | Path.combine not implemented in the HTML backend | this code below works fine on flutter mobile
but on web it throws an error
```dart
import 'package:flutter/material.dart';
void main() => runApp(App());
class App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
... | c: crash,framework,customer: crowd,platform-web,a: images,customer: webeap,e: web_html,has reproducible steps,customer: web10,customer: thrive,P3,team: skip-test,team-web,triaged-web,found in release: 3.13,found in release: 3.17 | high | Critical |
521,013,506 | terminal | Feature request: 'age' output visually | Similar to #3519, when watching logs, or build processes, similar lines being shown repeatedly can often make it hard to determine if anythings happening (as each new page of data looks the same as the previous one)
#3519 mentions smooth scrolling, but it would also be useful to apply some visual effect to old outpu... | Issue-Feature,Area-Rendering,Area-Extensibility,Product-Terminal | low | Minor |
521,041,088 | pytorch | Dispatch key reorganization | Motivation:
* Projects like XLA occasionally need the ability to override meta operators in PyTorch. Right now, it's not possible to do so using a normal override at XLA, as meta operators get processed before we get to the XLA override. This leads to things like `generic_convolution` hack to make things work out.
* ... | module: internals,triaged | low | Critical |
521,048,500 | go | encoding/json: tag `json:"-"` doesn't hide an embedded field | <!-- 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.3 linux/amd64
$ gotip version
go version devel +696c41488a Mon Nov 11 15:37:55 2019 +0000 linux/amd64
</pre>
### Does this issue reproduce ... | NeedsInvestigation | medium | Critical |
521,088,349 | go | image/gif: decode fails with "gif: too much image data" | <!-- 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 windows/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture ... | NeedsInvestigation | low | Critical |
521,093,946 | go | crypto/tls: improve default performance of SupportsCertificate | As discussed in https://golang.org/cl/205059, SupportsCertificate requires c.Leaf to be set not to be extremely slow (because it needs to re-parse the leaf every time). This also impacts automatic selection from multiple Certificates candidates.
There are multiple solutions suggested on the CL, I will pick one and t... | Performance,NeedsDecision | low | Major |
521,097,233 | pytorch | `print` uses lots of GPU memory | ## 🐛 Bug
I'm not totally certain if this is a bug or just an oddity I don't understand, but calling Python's `print` function on a GPU tensor uses a lot of GPU memory.
That's probably a reasonably low priority bug by itself, but it's also kind of a strange one, so I thought I'd raise it in case it's indicative o... | module: printing,module: cuda,triaged,enhancement | low | Critical |
521,098,806 | pytorch | [feature request] Print some measure of fragmentation at CUDA out-of-memory | It would be nice to include by default some information about memory fragmentation into the default CUDA OOM exception message (and not just amount of allocated / cached memory). It may help to understand OOM's coming from variable batch size. | module: cuda,triaged,enhancement | low | Minor |
521,098,955 | rust | Add `RUST_BACKTRACE=full` to CI Docker images | Currently, none of the CI docker builders have backtraces enabled. This can make debugging a failed PR very time consuming - since the panic message itself is often useless, it can be necessary to run the entire CI script locally to generate a proper backtrace.
If all of the CI images had backtraces enabled, it woul... | C-enhancement,T-infra | low | Critical |
521,117,086 | kubernetes | Add Container Storage Interface integration to conformance | <!-- Please only use this template for submitting enhancement requests -->
**What would you like to be added**:
Continuing the discussion in https://github.com/kubernetes/kubernetes/issues/65155#issuecomment-510247066, while we can't test provider-specific CSI drivers in conformance, we can test provider-agnostic d... | sig/storage,kind/feature,lifecycle/frozen | low | Major |
521,119,068 | godot | Consensus and media for translation partners | I put it here and not in the documentation because this problem affects the editor's translations.
Recently there was a problem between translation collaborators in which a new user without knowing the translation conventions we have been following began to make changes without prior notice, this caused quite a lot ... | discussion,topic:editor,documentation | low | Major |
521,137,064 | vscode | Add vscode.workspace.fs.createWriteStream(). | (see #84175)
For the Python extension, we currently use node's fs.createWriteStream() for a variety of purposes:
1. downloading multi-MB files (and tracking progress)
* calling into a third-party library that expects an `fs.WriteStream`
2. writing generated data out to a file a chunk at a time
3. writing lo... | feature-request,api,file-io,api-proposal | medium | Critical |
521,162,159 | TypeScript | Drop emit of last semicolon in single-line object literal types | Tracking follow-up to #33402
When synthetic object literal type nodes are printed on a single line, they come out like
```ts
type X = { a: string; b: string; };
```
While working on semicolon formatting features, I briefly had the formatter remove the semicolon after `b: string;`. The result was well-receive... | Suggestion | low | Minor |
521,168,590 | flutter | Refactor the Animation / section organizer demo in Flutter Gallery to use LinkedScrollView-like logic | The Animation / section organizer demo is the last place using the deprecated jumpToWithoutSettling. It's using it as a workaround to the way it was designed. It currently uses scroll notification listeners to force two unrelated lists to share a scroll position. A better solution would be to have them share a scroll p... | team,framework,f: material design,f: scrolling,P2,c: tech-debt,team-design,triaged-design | low | Minor |
521,201,072 | TypeScript | Suggestion: Config files authored in JS should automatically have intellisense support | Some libraries (e.g. Babel, Webpack, ESLint) use JS files for their config files.
We don't automatically provide IntelliSense support for these - however, the existing definitions (at least for Babel and Webpack) do provide types that describe the module shape of the files, so they can be manually set up today with ... | Suggestion | low | Minor |
521,231,700 | vscode | breadcrumb menu doesn't need to start in disclosed state on go files | Go can only have one package in a file so it's unnecessary (pointless) to force another click on the disclosure triangle to show the rest of the menu to see the functions you wanted to see to begin with.
<img width="459" alt="Screen Shot 2019-11-11 at 4 42 48 PM" src="https://user-images.githubusercontent.com/20665/... | under-discussion,breadcrumbs | low | Minor |
521,232,702 | pytorch | [jit] Script class attributes aren't automatically added | See https://discuss.pytorch.org/t/jit-scripted-attributes-inside-module/60645
cc @suo | oncall: jit,triaged | low | Minor |
521,235,533 | go | math/big: apply simplification suggested in CL 73231 (or abandon) | Reminder issue: Decide whether to apply https://go-review.googlesource.com/c/go/+/73231 for Go 1.15 (early) or abandon.
Specifically: The change must be applied to the new function lehmerSimulate. Also, need to verify that there's no performance regression.
| NeedsDecision | low | Major |
521,235,619 | go | cmd/compile: infinite loop in -m=2 | This compilation unit goes into an infinite loop when compiled with `-m=2`:
```
package x
type Node struct {
Orig *Node
}
func (n *Node) copy() *Node {
x := *n
x.Orig = &x
return &x
}
func f(n0 *Node) {
n1 := n0.copy()
n2 := n1.copy()
sink = n2
}
var sink *Node
```
Distilled from cm... | NeedsFix | low | Major |
521,253,367 | go | x/tools/gopls: improve error message when using wrong go command with Go source distribution | #### What did you do?
From the [go/src/cmd](https://github.com/golang/go/tree/master/src/cmd) dir:
```
gopls -rpc.trace -v check compile/main.go
```
#### What did you expect to see?
The command succeeds.
#### What did you see instead?
The command times out after 30s. Output: [gopls.txt](https://github.com... | gopls,Tools | medium | Critical |
521,256,785 | godot | Modifying a bone's transform will freeze the pose | **Godot version:**
3.2 Beta 1
**OS/device including version:**
Windows 10
**Issue description:**
Afaik there was a breaking change in `Skeleton` where the function `set_bone_global_pose` has been renamed to `set_bone_global_pose_override `with two additional arguments `(amount, persistent)`
My understanding... | bug,discussion,topic:animation | low | Critical |
521,309,963 | create-react-app | Proposal: more advanced Service Worker support | ### Is your proposal related to a problem?
Currently, the Service Worker support is very limited because the `service-worker.js` is generated by CRA and users can't customize it.
It's bad cause Service Workers can do much more than we currently use today, and by their inherent design, *should* allow app-specific ... | issue: proposal,needs triage | medium | Critical |
521,312,220 | TypeScript | Expose emitted module specifiers on AMD outfile emit | ## Search Terms
amd outfile module specifier
## Suggestion
Currently when utilising the compiler APIs to emit as AMD to a single outfile, the emitted module specifier in the outfile is not exposed, but does not match the source file `SourceFile.fileName` or any other attribute.
It appears that there are int... | Suggestion,In Discussion | low | Minor |
521,335,992 | flutter | Consider implementing support for Android granularity movement API for navigating text in accessibility nodes | Currently, Flutter for Android supports granularity movements for edit fields only.
It is important, however, that a screen reader user is able to navigate by characters, words, lines, etc, whenever a node contains text, including content descriptions.
/CC @darrenaustin | framework,a: accessibility,c: proposal,dependency: android,P3,team-framework,triaged-framework | low | Minor |
521,347,319 | pytorch | Compiled functions can't take variable number of arguments | ```
torch.jit.frontend.NotSupportedError: Compiled functions can't take variable number of arguments or use keyword-only arguments with defaults:
at /usr/local/lib/python3.6/dist-packages/torch/nn/parallel/data_parallel.py:138:32
def forward(self, *inputs, **kwargs):
~~~~~~~ <---... | oncall: jit,feature,triaged | low | Critical |
521,357,384 | flutter | iOS a11y bridge should respect `hasImplicitScrolling` | Android does this - right now, per @goderbauer, iOS exclusively looks at cacheExtent instead of also respecting hasImplicitScrolling.
It should be possible to set a cache extent on something but also set `hasImplicitScrolling` to false and have the iOS bridge respect that. | platform-ios,engine,a: accessibility,P3,team-ios,triaged-ios | low | Major |
521,387,029 | go | cmd/compile: export non-integer constants to debug info | ### What version of Go are you using (`go version`)?
go1.13.4
### Does this issue reproduce with the latest release?
I haven't tried with Go 1.14 yet
### What operating system and processor architecture are you using (`go env`)?
windows/amd64
### What did you do?
- use the code at https://github.com/dlsnip... | NeedsInvestigation,Debugging,compiler/runtime | low | Critical |
521,441,044 | flutter | Prevent soft keyboard to show when physical keyboard is used | Hi,
I have a custom keyboard in my app and I have successfully prevented the default soft input panel (SIP) to show when I focus my text field. This is accomplished using two methods:
1. Using a custom focus node for the text field that has `@override bool consumeKeyboardToken() { return false; }`
2. Overriding ... | a: text input,framework,c: proposal,a: desktop,P3,team-text-input,triaged-text-input | medium | Critical |
521,454,076 | pytorch | error: ‘struct torch::jit::RegisterOperators’ has no member named ‘op’ | ```
static auto registry =
torch::jit::RegisterOperators()
.op("maskrcnn_benchmark::nms", &nms)
.op("maskrcnn_benchmark::roi_align_forward(Tensor input, Tensor rois, float spatial_scale, int pooled_height, int pooled_width, int sampling_ratio) -> Tensor", &ROIAlign_forward)
// .op("maskrcnn_benchmark... | oncall: jit,triaged | low | Critical |
521,477,808 | opencv | Drawing into a numpy view with a negative step in the channel dimension doesn't work |
##### System information (version)
- OpenCV => opencv-contrib-python-headless==4.1.1.26
- Operating System / Platform => OS X
##### Detailed description
I create three 3-channel images and draw a circle into them. In the second case I use the step trick `A[:, :, ::-1]` to flip the R and B channels in th... | feature,category: python bindings | low | Minor |
521,489,266 | flutter | Video Player Plugin - Change to diffirent Url dynamically | It would be great to be able to change to another Video file or Url without calling a new instance of the video player.
Now, if you call it just feels the memory. You need to call new activity or a hacky way to dispose previous controller. | c: new feature,p: video_player,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | medium | Major |
521,640,346 | rust | Compiler error doesn't show full query chain when evaluating const cycle | Consider the following code (both on stable 1.39.0 and nightly)
trait Const {
const A: i32 = Self::B;
const B: i32 = Self::A;
const C: i32 = Self::A;
}
impl <T> Const for T {}
pub fn main() -> () {
dbg!(i32::C);
}
There's a cycle evaluating t... | C-enhancement,A-diagnostics,T-compiler,A-const-eval | low | Critical |
521,682,349 | opencv | Feature Request: 3+ dimension GpuMat | <!--
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
Please:
* Read the documentation to test with the latest de... | category: gpu/cuda (contrib),RFC | low | Critical |
521,705,763 | pytorch | Improved detection of repeated observers | ## 🚀 Feature
We currently do not detect if the same observer/fake quant is reused multiple times during calibration and quantization. This is always an error because observers collect statistics and the statistics are unique for every invocation of a module in the forward call.
## Motivation
Users are seeing thi... | oncall: quantization,low priority,triaged | low | Critical |
521,712,421 | flutter | SemanticsDebugger should use hasEnabledState/isEnabled to determine if something is disabled | The semantics debugger currently uses the presence of a tap handler to determine if a textfield or button is enabled/disabled. It should use the SemanticsFlags hasEnabledState/isEnabled to do that:
https://github.com/flutter/flutter/blob/master/packages/flutter/lib/src/widgets/semantics_debugger.dart
https://master... | framework,a: accessibility,c: proposal,P3,team-framework,triaged-framework | low | Critical |
521,713,667 | create-react-app | A feature to use package.json imports in create-react-app. | **Problem** : While making an atomic design pattern with create-react-app and a component driven folder structure, i want to use package.json imports to import my components in the app. Currently we can do absolute imports by creating an .env file and use it as from the node tree.
But package.json imports somehow does... | issue: proposal,needs triage | low | Minor |
521,724,229 | flutter | Add focusability to a11y of textfield | The Textfield widget should provide information about its focusability to the semantics tree.
/cc @gspencergoog @darrenaustin | a: text input,c: new feature,framework,f: material design,a: accessibility,P2,team-text-input,triaged-text-input | low | Minor |
521,747,835 | youtube-dl | Disney Plus | <!--
######################################################################
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 |
521,754,859 | pytorch | [jit] Dict construction fails at runtime | This throws at runtime, it should at least be a compile error.
This is a little confusing since `IValue(std::tuple<Args...>)` is implemented but it's not implemented to recover a `TypePtr` from a `std::tuple<Args...>`
```cpp
#include <torch/script.h>
#include <iostream>
#include <memory>
int main(int argc, ... | oncall: jit,triaged | low | Critical |
521,765,883 | go | proposal: cmd/doc: module documentation | ### What did you see today?
Currently there is no place to put module level documentation that is consumable via the toolchain.
### What would you like to see?
We should standardise a doc string format that reads like the `// Package xxx ...` syntax. This will follow the current godoc rules and allow for code bloc... | Documentation,Proposal,Proposal-Hold | low | Critical |
521,769,267 | vscode | Git Merge Resolve Dialog | Issue Type: <b>Feature Request</b>
This is a request for the ability, when a user resolves all of the merge conflicts in a file, for VS Code to ask whether they would like to mark the entire file as resolved in Git.
VS Code version: Code 1.36.1 (2213894ea0415ee8c85c5eea0d0ff81ecc191529, 2019-07-08T22:56:38.504Z)
... | feature-request,merge-conflict | low | Minor |
521,776,940 | flutter | TimeOfDay.format returns 16:00 instead of 4:00 PM | ## Steps to Reproduce
With the following sample app and with the time set to 12-hour support, the result of `TimeOfDay.fromDateTime(DateTime(2019, 1, 1, 16)).format(context)` will be `16:00` instead of `4:00 PM` (as expected). If the support locale is changed to `Locale('en', 'US')`, then we get the expect result.
... | framework,f: material design,f: date/time picker,a: internationalization,f: cupertino,a: quality,customer: solaris,has reproducible steps,P2,found in release: 1.20,found in release: 2.3,team-design,triaged-design | low | Major |
521,782,681 | godot | Unsigned uint64_t overflow in Variant.cpp | **Godot version:**
3.2.beta.custom_build. 7d836a7cc
**OS/device including version:**
Ubuntu 19.10
**Issue description:**
uint64_t argument is saved to int64_t(_data._int) which have different scope of values(-2^63,2^63-1), (0, 2^64)
https://github.com/godotengine/godot/blob/62a09a2ee351430f9d55eee337691958e877cc... | bug,discussion,topic:core | low | Minor |
521,788,191 | terminal | `TerminalInputModifierKeyTests` Don't work right on non-EN-US keyboard layouts | #### @j4james:
> Windows Terminal version (if applicable): commit [e2994ff](https://github.com/microsoft/terminal/commit/e2994ff8908f5a8418f24f2e2954a6c163f910b6)
>
>
> I'm used to having a few failures in the `TerminalInputModifierKeyTests`, and I know a couple of `TabTests` are blocked, but the rest of the te... | Product-Conhost,Issue-Bug,Area-CodeHealth | low | Critical |
521,826,936 | youtube-dl | Frontend Masters - Unable to log in | <!--
######################################################################
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 |
521,835,902 | flutter | On iOS, plugins should have access to a UiViewController | In any scenario (add-to-app or greenfield apps), we need to have a way of publishing an appropriate UiViewController to plugins so that they can be used in native APIs that push other native view controllers.
The current solutions are ugly. We either have to ask the app to provide it or we have to write ugly hacks w... | platform-ios,engine,a: existing-apps,P3,a: plugins,team-ios,triaged-ios | low | Minor |
521,844,357 | rust | Reduce size of `target` directory | The size of the `target` directory is becoming a severe problem for me. I use rust at work, and we have many services written in rust. The `target` directory for each service is typically 2-3 GB for a fresh build, and increases without bound due to the lack of GC, so that after a short period you're looking at 4 GB per... | C-enhancement,T-compiler,T-cargo | medium | Critical |
521,846,627 | TypeScript | [navtree] Only a single nameSpan listed for multiple declarations of interface | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Suggestion,In Discussion,Domain: TSServer | low | Critical |
521,873,965 | TypeScript | `!.` after `?.` should be warned | This is an anti-pattern on the current type system. And the compiler must not do quick fix so. `!.` after `?.` is simply replaceable with `?.` and should do so.
<!--
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 'Ni... | Suggestion,Awaiting More Feedback | low | Critical |
521,879,677 | pytorch | [FR] add generator= kwarg support for torch.randn and torch.rand | All stochastic functions should accept `generator=`. These should as well. | triaged,enhancement,module: random | low | Minor |
521,883,191 | react | Possibility to set min duration of Suspense fallback | **Do you want to request a *feature* or report a *bug*?**
Feature
**What is the current behavior?**
I have played a bit with Concurrent Mode and the Suspense API.
Really exiting features and I look forward to use them in a stable release. Thank you for everything you are doing!
Regarding the `Suspense` compone... | Type: Feature Request,Component: Concurrent Features,Resolution: Backlog | medium | Critical |
521,898,017 | pytorch | MultiStepLR does not return good lr after load_state_dict | The param_group's lr's cannot be trusted if the optimizer state is not restored (and this can be okay, because optimizer buffers can double the checkpoint size).
In this line they are trusted if last_epoch is between milestones https://github.com/pytorch/pytorch/blob/master/torch/optim/lr_scheduler.py#L389
The clos... | module: optimizer,triaged | medium | Critical |
521,989,081 | pytorch | Reliable way to identify RuntimeErrors (CUDA) | ## 🚀 Feature
Reliable way to check for CUDA out of memory (and CUDA Runtime errors in general).
## Motivation
Currently there I see no way to reliably check for a cuda out of memory error except parsing the exception arg for
``CUDA out of memory``.
(After a quick grep on the pytorch sources this seem... | module: cuda,triaged,enhancement | low | Critical |
522,030,078 | pytorch | [FR] F.pad support syntax sugars for specifying the padding amount | Most of the times the same amount of padding is applied on both sides of all spatial dimensions. Instead of writing `F.pad(x, tuple_of_size_twice_spatial_ndim)`, I would be happy to see the two following syntax sugars:
1. `F.pad(x, p : int)` applies `p` amount of padding on both sides of all spatial dimensions in `x... | module: convolution,triaged,enhancement | low | Minor |
522,041,659 | go | cmd/dist: timeout hanging bootstrap | Because of a runtime bug, Android builders hang in the bootstrap process:
https://farmer.golang.org/temporarylogs?name=android-arm-corellium&rev=99957b6930c76b683dbca1ff4bcdd56e59b1e035&st=0xc009856f20
This issue is about implementing some sort of timeout in cmd/dist to ensure forward progress even in the face of... | NeedsFix | low | Critical |
522,051,134 | pytorch | CPU and CUDA error messages are divergent in type promotion | Discovered while writing #29417.
test_non_promoting_ops was not running on the CPU and CUDA. When I modified it to do so it began failing because the error message it's checking for is not the same across our native device types. I removed the check for the particular message as part of the PR. However, the error me... | module: tests,triaged,module: type promotion | low | Critical |
522,055,145 | pytorch | Provide a mechanism to set global state per test in thread-safe manner | Global state, like the default tensor dtype, is set by some tests. This is unsafe if tests are running concurrently or the test author forgets to reset the former dtype (which has happened before, and broke running pytest on test_jit.py).
Ideally we would have a mechanism where we can set global state in a test tha... | module: tests,triaged,enhancement | low | Minor |
522,087,890 | TypeScript | Warning or error when importing files from a project's own outDir | ## Search Terms
import, outDir, composit, TS5055
## Suggestion
Add a specific warning/error when trying to import something from the projects own outDir.
## Use Cases
Help track down files that are wrongly importing from it's own dist directory.
I don't know if there are valid use cases where you would ... | Suggestion,Awaiting More Feedback | low | Critical |
522,119,415 | pytorch | Slow (20-50x) RNN tutorial/example when torch is installed using pip comp. to conda installation | ## ❓ Questions and Help
The example https://pytorch.org/tutorials/intermediate/char_rnn_classification_tutorial.html
runs slow on pytorch installations 1.[320].x[+cudaxxx ]
I first noticed that behavior on an really old version of torch, then updated. The example ran 50 times faster on a Colab notebook and on a w... | module: binaries,module: performance,module: rnn,triaged,module: mkl | medium | Major |
522,203,579 | flutter | TimePickerDialog is the wrong kind and behavior | ## Steps to Reproduce
```dart
showTimePicker( context: context)
```
1. A white line is visible below - the dialogue does not overlap the entire screen. You can set SystemUiOverlayStyle to the desired state before opening the dialog, but why can't it be the default?
2. Gesture control is enabled on my phone - t... | framework,f: material design,f: date/time picker,a: fidelity,a: quality,has reproducible steps,P2,found in release: 3.3,found in release: 3.5,team-design,triaged-design | low | Major |
522,220,108 | godot | Tilemap not displaying correctly with vertex shader | **Godot version:**
3.2 beta
**OS/device including version:**
mac / android
**Issue description:**
I have a tilemap

the solid red area is initially off the screen and not visible. By using a vertex sha... | bug,topic:rendering,confirmed,regression | low | Minor |
522,221,184 | rust | ICE: Adding `-C save-temps` to incremental compile causes rustc_codegen_ssa::back::write panic | Steps to reproduce:
```
% mkdir temp
% cd temp
% touch lib.rs
% rustc +nightly lib.rs --crate-type=lib -C incremental=incr
% rustc +nightly lib.rs --crate-type=lib -C incremental=incr -C save-temps
thread '<unnamed>' panicked at 'assertion failed: `(left == right)`
left: `false`,
right: `true`', src/libru... | I-ICE,E-needs-test,P-medium,T-compiler,A-incr-comp,C-bug,glacier | low | Critical |
522,224,646 | TypeScript | Incremental type narrowing, enabling gradual object initialization | <!-- 🚨 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 |
522,260,050 | go | cmd/compile: encoded pkg path shown in stack trace | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version devel +99957b6930 Tue Nov 12 05:35:33 2019 +0000 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operat... | NeedsInvestigation | low | Critical |
522,293,326 | java-design-patterns | Microkernel architecture | ## Description
The Microkernel Architecture design pattern, also known as the plug-in architecture, is ideal for product-based applications that need to extend their core functionalities through plug-ins. This pattern is characterized by a minimal core system that contains the essential functionality of the application... | info: help wanted,epic: pattern,epic: architecture,type: feature | low | Minor |
522,297,005 | java-design-patterns | Space-based architecture | ## Description
The Space-Based Architecture design pattern is aimed at addressing scalability and concurrency issues by minimizing factors that limit application scaling. This pattern is ideal for applications with high user load and variable concurrent user volumes. The key components include processing units and virt... | info: help wanted,epic: pattern,epic: architecture,type: feature | low | Major |
522,321,138 | svelte | Examples need documentation | Some of the examples on the Svelte website are straightforward/intuitive but others need some explanation/documentation. For example, the "Deferred transitions" example is excellent but there are a lot of things going on and it's difficult to understand. In particular, what is the essential lesson of the example vs. ... | stale-bot,temp-stale,documentation | low | Minor |
522,336,536 | react | "Should not already be working" in Firefox after a breakpoint/alert | **Do you want to request a *feature* or report a *bug*?**
Bug
**What is the current behavior?**
I'm seeing "Error: Should not already be working" after upgrading to React 16.11
**Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React?**
This is... | Type: Bug,Difficulty: medium,Type: Needs Investigation,good first issue | high | Critical |
522,372,591 | go | net: better docs for PreferGo in Resolver | Guys, how are you?
I have a suggestion to improve doc about parameter `PreferGo` on struct Resolver based on a comment in another issue. https://github.com/golang/go/issues/19268#issuecomment-345384876
Suggestion adds more a small text:
```
When you use the variable PreferGo set to true you will be
able to us... | Documentation,help wanted,NeedsInvestigation | low | Major |
522,381,849 | pytorch | Tensor.nbytes() returns itemsize * numel for sparse tensors | scipy sparse tensors don't have an "nbytes". I guess you could argue for this or doing nnz * itemsize, but it seems best to just error in this case.
cc @ezyang @SsnL @albanD @zou3519 @gqchen @vincentqb | module: sparse,module: autograd,triaged,actionable,fixathon | low | Critical |
522,401,369 | pytorch | [build] gcc 7.4 needs CMAKE_CXX_FLAGS="-std=gnu++11" | ## 🐛 Bug
Since I can't use conda gcc 7.3 (https://github.com/pytorch/pytorch/issues/29093), I tried to build master with system gcc `7.4` and met
```
CMake Error at third_party/fbgemm/third_party/asmjit/CMakeLists.txt:100 (target_compile_features):
target_compile_features no known features for CXX compiler
... | module: dependency bug,module: build,triaged | low | 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.