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 |
|---|---|---|---|---|---|---|
406,900,118 | flutter | Bring FlutterDriver to feature parity with WidgetController | Does it make sense for FlutterDriver to be a subclass of WidgetController?
Or at least, can the FlutterDriver offer a wider range of APIs, closer to what the WidgetController does? It misses methods like drag, fling, and longPress, that would come in handy in integration testing as well. | a: tests,c: new feature,framework,t: flutter driver,P2,team-framework,triaged-framework | low | Minor |
406,917,224 | flutter | TextField label has too much padding when unfocused | <!-- 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.io/
* https://docs.flutter.io/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you have... | a: text input,framework,f: material design,a: fidelity,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design | low | Critical |
406,952,610 | flutter | [webview_flutter] cannot follow `tg://` links on iOS | Cannot follow `tg://` links on iOS to Telegram client. For some reason, Discord links do work, however. I have not tested this on Android.
```
$ flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[β] Flutter (Channel dev, v1.2.0, on Mac OS X 10.13.6 17G4015, locale en-US)
[β] Android tool... | p: webview,package,has reproducible steps,P3,found in release: 3.10,found in release: 3.11,team-ios,triaged-ios | medium | Major |
406,964,676 | TypeScript | type callbacks | search: https://www.google.com/search?q=type+functions+site%3Ahttps%3A%2F%2Fgithub.com%2FMicrosoft%2FTypeScript
The more I work with advance types the more apparent the following problems become:
<strike>
## No intermediate types
At the current stage the advanced types are represented via expressions. Quite of... | Suggestion,Needs Proposal | low | Minor |
406,993,828 | TypeScript | Set context of this keyword in definition file | ## Search Terms
set `this` context in typescript definition file
## Suggestion
A way to change the context of `this` keyword in a type definition file. This is admittedly a weird feature since, to my knowledge, it doesn't really align with how modules work. Perhaps there is another way to achieve this use case... | Suggestion,Awaiting More Feedback | low | Major |
407,005,843 | node | http2 API documentation issues | ## Compatibility API example
Here's the example code from the API docs in the [compatibility API section](https://nodejs.org/api/http2.html#http2_compatibility_api):
```js
const http2 = require('http2');
const server = http2.createServer((req, res) => {
res.setHeader('Content-Type', 'text/html');
res.setH... | help wanted,doc,http2 | low | Major |
407,007,247 | TypeScript | Error messages should place most relevant information first. | Here's an actual example of an error message that can go wrong in our library when mispelling a property when creating an object literal:
```
[ts]
Type '{ containers: { nginx: { image: string; memory: number; portMappings: NetworkListener[]; enviroment: number; }; }; }' is not assignable to type 'FargateTaskDefini... | Suggestion,Needs Proposal | medium | Critical |
407,011,403 | go | x/tools/refactor/rename: move-to strictly respects build tags | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.11.5 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
Yeah.
### What operating system and processor architecture... | NeedsInvestigation,Tools,Refactoring | low | Critical |
407,054,706 | kubernetes | Volume may be resized online if multiple pods share the same volume | <!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks!-->
**What happened**:
Inside [MountVolume](https://sourcegraph.com/github.com/kubernetes/kubernetes@0dfbbc290cce9da8aebd669890dbd3e117e20cc6... | kind/bug,sig/storage,lifecycle/frozen | low | Critical |
407,115,847 | vscode | List references: transition from history to results is not smooth | Steps to Reproduce:
1. have a history of references
2. find references again
=> π the transition from history to results is not very smooth, in the video you can see how the history partially still shows after running "Find References"
 is False. If you are running on a CPU-only machine, please... | todo,feature,module: serialization,triaged | medium | Critical |
407,186,243 | electron | Support the forward option of BrowserWindow.setIgnoreMouseEvents in Linux | A click-through functionality is very useful for floating-widget type apps with non-rectagular shapes. A solution using the forward option of setIgnoreMouseEvents was proposed in this issue comment: https://github.com/electron/electron/issues/1335#issuecomment-433478053
However, Linux is currently not supported. I'd... | enhancement :sparkles: | low | Major |
407,202,654 | flutter | reverse playback of the video. | It will be very helpful to have effects for slower video playback or reversing it as the need be.
Take a look at this: https://stackoverflow.com/questions/54495037/flutter-more-video-player-controller-options
| c: new feature,p: video_player,package,team-ecosystem,P3,triaged-ecosystem | low | Major |
407,259,926 | vue | Ability to cancel rendering | ### What problem does this feature solve?
Under high-load, some pages are rendered to slow. The connection is aborted by the remote side. It would be nice to be able to cancel pages rendering in this case.
### What does the proposed API look like?
const rendererId = renderer.renderToString(...);
rendererId.canc... | feature request,feat:ssr | low | Major |
407,286,856 | rust | [rustdoc search] Add search into struct fields/enum variants | Add a fourth tab. | T-rustdoc,C-feature-request,A-rustdoc-search | low | Minor |
407,289,229 | rust | Trait bound on associated type causes confusing compilation error | This code fails to compile:
```rust
pub trait Append<T> {
type Appended;
}
pub trait Proc {
type Item;
type Tail;
fn process_item<P>(&mut self, partial: P)
where
P: Append<Self::Item>,
P::Appended: Append<Self::Tail>;
}
struct Read;
impl Proc for Read {
typ... | C-enhancement,A-diagnostics,A-associated-items,T-compiler | low | Critical |
407,290,840 | pytorch | Wrong description of positive class weight in BCEWithLogitsLoss | ## π Documentation
The explanation of `pos_weight` for [BCEWithLogitsLoss](https://pytorch.org/docs/stable/nn.html#torch.nn.BCEWithLogitsLoss) mentions:
`where :math:`p_n` is the positive weight of class :math:`n`.`
We don't have `n` classes (this is a binary loss). The correct description would be something li... | module: docs,triaged | low | Minor |
407,299,843 | pytorch | cstddef not found when compiling C++ Extension - macOS | ## π Bug
I wanted to write a small C++ extension and compile it via setuptools beforehand as mentioned in the Tutorial. However there seems to be library issues on my mac. Can someone help?
The latest xcode command line tools are installed.
## To Reproduce
Steps to reproduce the behavior:
1. write any C++... | module: cpp-extensions,triaged | low | Critical |
407,308,048 | flutter | onClosing event of the BottomSheet widget never runs | ```dart
final _scaffoldKey = GlobalKey<ScaffoldState>();
void _showBottomSheet() async {
final bottomSheet = BottomSheet(
builder: (BuildContext context) {
return Container(
color: Colors.white,
height: 100.0,
child: Row(
children: <Widget>[
Text('T... | framework,f: material design,has reproducible steps,P2,workaround available,found in release: 3.7,found in release: 3.10,team-design,triaged-design | low | Major |
407,372,954 | kubernetes | Cloud Provider E2E Tests | **What would you like to be added**:
In https://github.com/kubernetes/kubernetes/pull/72902 we introduce the first set of "cloud provider" tests. There are still a lot of tests to be added here such as:
- [ ] load balancers (some tests already exist in `test/e2e/network/service.go`)
- [ ] routes
- [ ] node registra... | area/test,area/cloudprovider,kind/feature,sig/testing,lifecycle/frozen,sig/cloud-provider | medium | Critical |
407,379,754 | vue | Ability to access context from serverPrefetch | ### What problem does this feature solve?
After vue 2.6 was released and serverPrefetch hook was introduces I lost a possibility to update `httpCode` during SSR if there was a data fetching failure.
### What does the proposed API look like?
Provide access to `context` from the `serverPrefetch` hook.
<!-- genera... | intend to implement,feature request,feat:ssr | medium | Critical |
407,411,373 | rust | rustdoc doesn't show implementations of traits when receiver is behind a #[fundamental] type | For this block of code
```rust
use core::ops::Not;
pub struct F;
impl Not for F {
type Output = F;
fn not(self) -> Self::Output { F }
}
impl Not for &mut F {
type Output = F;
fn not(self) -> Self::Output { F }
}
impl Not for Box<F> {
type Output = F;
fn not(self) ->... | T-rustdoc,A-trait-system,C-bug,A-rustdoc-ui | low | Minor |
407,454,589 | node | `readable` event not emitted after `net.Socket` reconnects | * **Version**: v10.15.1
* **Platform**: Windows 10 Pro 64-bit
* **Subsystem**: net
If `net.Socket` loses connection (`close` is emitted) and the same socket instance is used to reconnect to the same server, no more `readable` events are emitted (`data` events are still emitted).
Doesn't work in v10.14/v10.15.1.... | confirmed-bug,net,stream | medium | Major |
407,486,499 | TypeScript | `.call` selects the wrong overload for `String.prototype.replace` | **TypeScript Version:** v3.3.1 and v3.4.0-dev.20190206
**Search Terms:** call replace overload
**Code**
```ts
String.prototype.replace.call(
'one string',
/a/g,
'two string', // this line errors
);
```
It's worth noting that this is in a JS file, not a TS file, but I'm using `allowJs` and... | Bug,Help Wanted,Domain: lib.d.ts | low | Critical |
407,529,694 | opencv | _InputArray::getMat_ handling empty std::vector<T> | This line in `_InputArray::getMat_`
https://github.com/opencv/opencv/blob/master/modules/core/src/matrix_wrap.cpp#L54
if( k == STD_VECTOR )
{
CV_Assert( i < 0 );
int t = CV_MAT_TYPE(flags);
const std::vector<uchar>& v = *(const std::vector<uchar>*)obj;
return !v.empty(... | RFC | low | Minor |
407,536,460 | vscode | Git - Support git worktrees in workspace | ```
$ mkdir repro
$ cd repro
$ mkdir example1
$ cd example1
$ git init; echo "hello" > world.txt; git add world.txt; git commit -m "init";
$ git worktree add ../example1branchA
$ git worktree add ../example1branchB
$ cd ..
$ mkdir example2
$ cd example2
$ git init; echo "hello" > world.txt; git add world.t... | help wanted,feature-request,git | high | Critical |
407,564,064 | create-react-app | Feature request: Launch browser into a unique origin | ## Problem
`npm start` launches `http://localhost:3000`. If I've ever worked on a different app, its `localStorage` is now polluting my new app as they share an origin.
## Solution
If `HOST === 'localhost'` then call `opn` with `target` set to `http://{folder-name}.localhost:{port}`
This way every app has a... | issue: proposal | low | Minor |
407,575,197 | go | proposal: cmd/go: enable mutual TLS authentication with client certificates in the go tool | It would be useful to be able to pass to the `go` tool a client TLS certificate + key + CAcert (in environment variables or otherwise) - especially, in environments that take Zero Trust Network (ZTN) seriously and where `go` tool needs to talk to the other side (the `replace` targets) that lives in a public cloud using... | Proposal,NeedsInvestigation,Proposal-Hold | low | Major |
407,577,097 | deno | Add support for IndexedDB | It'll be useful to have IndexedDB in Deno.
Related to #1657. | feat,web | high | Critical |
407,597,506 | react | defaultValue does not work with input when type is set to submit | <!--
Note: if the issue is about documentation or the website, please file it at:
https://github.com/reactjs/reactjs.org/issues/new
-->
**Do you want to request a *feature* or report a *bug*?**
Bug
**What is the current behavior?**
When you use uncontrolled `<input type="submit" />` and set `defaultV... | Type: Discussion | medium | Critical |
407,618,317 | TypeScript | Mapped types shouldn't transform unknown type | @ahejlsberg Probably #29740 made this regression.
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.4.0-dev.20190207
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
**... | Suggestion,Awaiting More Feedback | low | Critical |
407,663,830 | rust | Type derivation failure on generic parameters: type annotations required | The following example fails with this error:
```
error[E0284]: type annotations required: cannot resolve `<E as H>::R == NR`
--> examples/minreprod/src/main.rs:24:36 ... | A-type-system,A-associated-items,T-compiler,A-inference,C-bug,T-types | low | Critical |
407,703,314 | vue | Add beforeDeactivated hook | ### What problem does this feature solve?
I use :key and keep-alive tag to display chats. And in order to maintain the position of the scroll when switching between chat rooms, I need to save the scrollTop when the hook is deactivated and put it on the element when the hook is activated. But the deactivated hook is al... | feature request | low | Major |
407,713,982 | pytorch | Allow to build pytorch for a *specific* architecture | ## π Feature
Allow the end user to specify which CPU architecture to target in the build process.
## Motivation
We are building Pytorch from source for our clusters. We have clusters that have a variety of CPU architectures, supporting instruction sets from sse3, to avx512 and all in between. Currently, pytorch... | module: build,triaged | medium | Major |
407,772,405 | vscode | Specify terminal group for integrated terminal in launch configuration | It is great to see that task configurations now allow the specification of terminal group (https://github.com/Microsoft/vscode/issues/47265) - works well from my initial testing. Can you please also allow launch configurations to specify terminal group when using the integrated terminal for debug and start/stop?
See... | debug,under-discussion | medium | Critical |
407,806,046 | rust | Problem with using struct expressions with path metavariables | ## STR
this occurs on stable & nightly.
```Rust
macro_rules! m {
($s: path) => {{
Some($s {})
}}
}
struct S {}
fn main() {
let _ = m!(S);
}
```
## Expected Result
Code compiles, e.g. it compiles if the macro doesn't contain a `Some`:
```Rust
macro_rules! m {
($s: path)... | A-parser,A-macros,T-compiler,C-bug | low | Critical |
407,838,971 | tensorflow | Build Tensorflow version that detects CPU instruction set at runtime and lights-up/down | **System information**
- TensorFlow version (you are using): 1.12.0 CPU
**Describe the feature and the current behavior/state.**
Currently Tensorflow cross-compiles for different instruction sets and will warn if the CPU supports instructions that the TF build does not use, and fail to load if the CPU does not sup... | stat:awaiting tensorflower,type:feature,type:build/install | low | Major |
407,865,675 | flutter | [camera] Allow controlling the preview and output mirroring | I am currently using the camera pluggin on flutter. Is there a way to remove the mirror effect from the front camera (selfie camera) when you take a picture? If there is none, can it be added ? | c: new feature,customer: crowd,p: camera,package,team-ecosystem,P3,triaged-ecosystem | high | Critical |
407,867,122 | godot | Master peer ID not preserved on duplication | **Godot version:**
v3.1-beta3
**OS/device including version:**
Arch Linux rolling & NVidia GPU
**Issue description:**
Duplicated nodes do not seem to preserve parent's network master ID.
**Steps to reproduce:**
- Create some "child" node and append it to some "parent" node.
- Set network master ID for par... | enhancement,documentation,topic:network,topic:multiplayer | low | Minor |
407,944,630 | pytorch | Allow building C++ custom ops that imports another custom ops | ## π Feature
It seems like from the docs that you can only build the custom ops individually
https://pytorch.org/tutorials/advanced/cpp_extension.html
```Integrating a C++/CUDA Operation with PyTorch
Integration of our CUDA-enabled op with PyTorch is again very straightforward. If you want to write a setup.py sc... | module: cpp-extensions,triaged | low | Minor |
407,952,467 | rust | Tracking issue for making `dbg!(x)` work in `const fn` | We should make `dbg!(expr)` work in `const fn` by using some `lang_item` that is on the body of a function that contains the contents of `dbg!(...)`. We also need to make it work with inlining.
This sorta needs `impl const Debug` to work, but in the meantime we can just dump the miri state something something, @oli-... | T-lang,T-libs-api,C-tracking-issue,S-blocked,A-const-eval,needs-rfc,A-fmt,Libs-Tracked,S-tracking-design-concerns | medium | Critical |
407,953,472 | rust | target_feature doesn't trickle down to closures and internal fns | Leaves poorly optimized assembly in its wake.
```#[cfg(target_arch = "x86")]
use std::arch::x86::*;
#[cfg(target_arch = "x86_64")]
use std::arch::x86_64::*;
// Creates non inlined calls to intrinsics
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
#[target_feature(enable = "avx2")]
pub unsafe fn fo... | A-codegen,T-lang,A-SIMD,F-target_feature_11,A-target-feature | low | Critical |
407,967,424 | vscode | Support comments in UI editors (settings and keyboard shortcuts) | I prefer using the UI editor for both settings and keyboard shortcuts. However, I often find myself automatically going into the JSON files because they're packed with comments β for both modified and unmodified settings/keyboard rules (example shown below).
### Feature Request
- Support ability to add comments t... | feature-request,settings-editor | low | Critical |
408,006,380 | flutter | String interpolation that captures object references for debugging tools | String interpolation in Dart is a convenient way to write a debug string but it has the limitation that the output can only be a string with no way for debuggers to extract out the actual objects referenced to generate richer debugger view and crosslink to other debugging tools such as the widget inspector.
For exam... | c: new feature,tool,engine,dependency: dart,P2,team-engine,triaged-engine | low | Critical |
408,086,783 | go | cmd/go: clarify relative import paths and modules in documentation | In the documentation for cmd/go, at the end of the section about relative import paths
https://golang.org/cmd/go/#hdr-Remote_import_paths, the text says:
> To avoid ambiguity, Go programs cannot use relative import paths within a work space.
The documentation should also add that relative import paths don't wor... | Documentation,NeedsFix,modules | low | Minor |
408,093,912 | TypeScript | TS doesn't see when we add symbol properties to functions. | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.4.0-dev.20190207
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
function, property, symbol
**Code**
```ts
const my... | Bug | low | Critical |
408,111,753 | vscode | Search with non-standard encodings not supported |

Issue Type: <b>Bug</b>
Set worskpace encoding to cp437.
Do a worskspace search for anything.
The search box is surrounded in red, a popup appears underneath it saying "Unknown enco... | feature-request,upstream,search | high | Critical |
408,112,425 | godot | Should ARVRController method name match InputEvent nomenclature? | InputEvent uses "[device](http://docs.godotengine.org/en/3.0/classes/class_inputevent.html#member-variables)" property to let programmer know which input device emitted the event, but ARVRController uses [get_joystick_id()](http://docs.godotengine.org/en/3.0/classes/class_arvrcontroller.html#class-arvrcontroller-get-jo... | enhancement,discussion,topic:core,documentation | low | Minor |
408,131,323 | TypeScript | Type checking and IntelliSense with JSDoc typed js dependencies | ## Search Terms
JSDoc types dependenies
## Suggestion
Possible alternative to #7546: Maybe type checking from JSDoc annotated dependencies can be achieved more easily in a different way. I have created a [gist](https://gist.github.com/ahocevar/9a7253cb4712e8bf38d75d8ac898e36c) with a demo project that successf... | Suggestion,Awaiting More Feedback | low | Major |
408,161,573 | pytorch | `nn.Linear` allows 1d input tensors | ## π Bug
The [docs](https://pytorch.org/docs/master/nn.html#torch.nn.Linear) for `nn.Linear` claim that the input has to be `[N, *, M]`, but it accepts `[M]` as well. This is because `nn.Linear` dispatches (via `functional.linear`) to `addmm` and `matmul`, which perform this kind of broadcasting. It's unclear if it... | module: docs,triaged | low | Critical |
408,176,271 | flutter | Camera stream image streams frame with wrong number of pixels | CameraImage stream format should be `YUV420` and
```
(Y) plane[0].length= Y
(U) plane[1].length = Y/4
(V) plane[2].length= Y/4 .
But it is streaming with
(U) plane[1].length = Y/2
(V) plane[2].length = Y/2 and Image format remains same(YUV420 ).
``` | c: new feature,p: camera,package,team-ecosystem,P2,triaged-ecosystem | low | Minor |
408,202,688 | pytorch | Implement `numpy.random.choice` equivalent | ## π Feature
Implement `numpy.random.choice` equivalent.
## Motivation
In some cases, it is useful to get random samples from a torch Tensor efficiently. For instance, during the training of some Region-Based Detectors, it is necessary to control the proportion of positive and negative regions of interest (RoIs) ... | high priority,module: bootcamp,feature,triaged,module: numpy | high | Critical |
408,205,787 | TypeScript | Incorrect type for `ClassDecorator` | The current (3.2.2) type for class decorator function seems to be incomplete:
```ts
declare type ClassDecorator = <TFunction extends Function>(target: TFunction) => TFunction | void;
```
It says that target should extend a Function, but it should be something like `NewableFunction` I guess, since its a class constr... | Suggestion,Experience Enhancement | low | Major |
408,224,750 | flutter | CameraPreview becomes sluggish and drops frames when startImageStream is set on Pixel 3 | # Issue
When startImageStream is set, not only does CameraPreview appear to become sluggish, i encounter dropped frames on my Pixel 3 running API 28. This occurs even if ResolutionPreset.low is used, and if the function fed to startImageStream is an empty one. The black-out occurences appear to be random, and get wors... | c: performance,p: camera,package,team-ecosystem,P2,triaged-ecosystem | low | Major |
408,225,402 | rust | Implement "small substs optimization" for substs of length 1 | One of the core types in the compiler is `ty::Subst`, which represents a list of "substitutions" - arguments to generic parameters. For example, `Option<u32>` has a `Substs` of `[Uint(u32)]` and `T: Sized` has a `Substs` of `[Param(T)]`.
A `ty::Substs` is an interned `&'tcx List<Kind<'tcx>>`. It is represented as a ... | C-enhancement,I-compiletime,E-mentor,T-compiler,C-optimization | low | Major |
408,226,886 | go | cmd/go: define error codes and use them to describe errors. | Go command, particularly, `go list` and `go mod download`, now serves as the canonical way to retrieve information about modules and packages. Programs and libraries that need to understand how Go handles build and interprets source code are supposed to invoke the command and interpret the command's output. For example... | NeedsInvestigation,GoCommand | low | Critical |
408,240,317 | pytorch | Give clearer guidance about multithreading in PyTorch, and how to disable it | e.g. https://github.com/pytorch/pytorch/issues/16894
There's a lot of people asking about this, but no canonical source of information about it.
cc @jlin27 @mruberry | module: docs,triaged,module: multithreading | low | Major |
408,275,895 | godot | Android in app purchase : can not save item that purchased and using iap.consume("pid") | **Godot version:**
<!-- Specify commit hash if non-official. -->
Godot 3.1 beta 3
**OS/device including version:**
<!-- Specify GPU model and drivers if graphics-related. -->
Android
**Issue description:**
<!-- What happened, and what was expected. -->
I am using `logcat | grep godot` to checking the output... | bug,platform:android,topic:thirdparty | low | Critical |
408,278,709 | pytorch | Issue with dataloader using pin_memory = True | ## Issue description
Hello, I'm seeing an odd issue with using the pin_memory = true flag with the dataloader. I'm measuring the time taken to transfer data from the host RAM to GPU memory as follows:
transfer_time_start = time.time()
input = input.cuda(args.gpu, non_blocking=False)
target... | module: dataloader,triaged | low | Critical |
408,279,735 | go | cmd/go: 'go list -m -json' in an empty directory returns cryptic output | <pre>
$ go version
go version devel +56c9f8e8cf linux/amd64
$ cd $(mktemp -d)
$ GO111MODULE=on go list -m -json
{
"Path": "command-line-arguments",
"Main": true
}
</pre> | NeedsFix,modules | low | Major |
408,283,232 | flutter | Pass the --observatory-port flags in intent to FlutterActivityDelegate | Internal: b/362786296
Dream is asking for us to make the observatory port part of the args that we parse out of the intent that a FlutterActivityDelegate receives, so that they can wait to ensure that observatory is initialized before attempting to startup, and they can use the port for debugging the embedded FlutterV... | c: new feature,tool,engine,customer: dream (g3),P2,team-engine,triaged-engine | low | Critical |
408,288,719 | vue | Provide way to destroy app in SSR | ### What problem does this feature solve?
This issue is related to: https://github.com/vuejs/vue-router/issues/2606
Providing a way to destroy the app or mark the SSR request as complete (maybe on `$ssrContext`) is a potential fix to this problem, though maybe not the best one.
To recap:
A memory leak happens w... | feature request | low | Minor |
408,362,557 | storybook | Anchor tags within preview panel not working | Apologies if this isn't a bug or there's standard way to solve it, I couldn't find it.
**Describe the bug**
An anchor tag within a page in the preview panel iframe doesn't take you to that position within the page, but reloads the top iframe with the page content.
**To Reproduce**
Steps to reproduce the behavi... | bug,ui,core | medium | Critical |
408,419,495 | go | cmd/go: misleading error for a version following the module directive in go.mod | A module can not declare its own version in go.mod even though
* this is a basic need, not everyone gets its code through a git dump
* the json structure outputted by "go mod edit -fmt -json" clearly provides for it, and
* the error message reafirms a version should be possible
`module test/dummy v0.0.1`
````
... | NeedsFix,modules | low | Critical |
408,445,242 | rust | Expose raw Stdout/err/in | Currently there is not easy/obvious way to get an unbuffered Stdout/err/in. The types do [exist in stdio](https://github.com/rust-lang/rust/blob/master/src/libstd/io/stdio.rs#L23), however they are not public for reasons not noted.
For example these types would be useful for CLI applications that write a lot of data... | T-libs-api,C-feature-request | medium | Major |
408,461,263 | rust | Tracking issue for #[ffi_const] | Annotates an extern C function with C [`const`](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#Common-Function-Attributes) attribute.
https://doc.rust-lang.org/beta/unstable-book/language-features/ffi-const.html | A-FFI,T-lang,B-unstable,C-tracking-issue,S-tracking-needs-summary,T-opsem | low | Minor |
408,461,314 | rust | Tracking issue for #[ffi_pure] | Annotates an extern C function with C [`pure`](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#Common-Function-Attributes) attribute. | A-FFI,T-lang,B-unstable,C-tracking-issue,S-tracking-needs-summary,T-opsem | low | Major |
408,470,032 | TypeScript | Improve typings of Array.map when called on tuples | ## Search Terms
- Array.map
- map tuple
## Suggestion
Using Array.map on a tuple should return a tuple instead of an array. In one of my projects I could achieve that using
```typescript
declare interface Array<T> {
map<U>(callbackfn: (value: T, index: number, array: T[]) => U, thisArg?: any): { [K i... | Needs Investigation,Fix Available,Rescheduled | medium | Critical |
408,500,862 | create-react-app | CRA2 doesn't work with reflect-metadata package | <!--
PLEASE READ THE FIRST SECTION :-)
-->
### Is this a bug report?
Yes
### Did you try recovering your dependencies?
No
### Which terms did you search for in User Guide?
None
### Environment
```bash
Environment Info:
System:
OS: Linux 4.4 Ubuntu 14.04.5 LTS, Trusty Tahr
... | tag: underlying tools | medium | Critical |
408,508,598 | vue | Custom error message from prop validator | ### What problem does this feature solve?
Currently, if a custom validator fails, we get a console error log saying `Invalid prop: custom validator check failed for prop 'email'` which is not helpful if you're using a third-party component. The only way to find out what failed is to jump into the source code of the co... | feature request | medium | Critical |
408,520,339 | rust | rpath is incorrect when crate links against compiler libraries | When compiling something like [Miri](https://github.com/solson/miri/) that links against librustc and other compiler libraries, even with `rpath = true` in my `Cargo.toml`, the resulting binary does not work without `LD_LIBRARY_PATH`:
```
$ target/release/miri
target/release/miri: error while loading shared librarie... | T-compiler,C-bug,A-miri | low | Critical |
408,523,997 | godot | [2D physics] Random flipping of sprite when rotated. | **Godot version:**
3.1 beta3.
**OS/device including version:**
Linux 64-bit. Unlikely to be different under another OS.
**Issue description:**
The player sprite uses a `Raycast2D` to detect the angle of the floor underneath it (`PlayerPivot`). It also has this code:
(to disable when in the air):
```
if (... | bug,topic:core,topic:physics | low | Critical |
408,526,151 | puppeteer | The `page.setCookie` method should also accept raw cookies | <!--
STEP 1: Are you in the right place?
- For general technical questions or "how to" guidance, please search StackOverflow for questions tagged "puppeteer" or create a new post.
https://stackoverflow.com/questions/tagged/puppeteer
- For issues or feature requests related to the DevTools Protocol (https://ch... | feature,confirmed | medium | Critical |
408,548,048 | terminal | Ambiguous width character in CJK environment | The operation in the English environment is perfect. However, the behavior in the CJK environment is unstable.
Type β, (\b), β, (\b), β ... , because the sequence is insufficient, the character shifts one cell to the right.
 doc page, optional arguments are allowed in a `torch.autograd.Function`. This works well when passing the optional argument as a positional argument, but fails when passing the optional argument as a keyword argument... | module: autograd,triaged,has workaround,actionable | low | Critical |
408,581,892 | pytorch | Multiple CPU processes using same GPU model for inference | Hi guys,
under Windows, how can I use multiple processes, spawned by multiprocessing use the same GPU model for prediction? I am using Python 3.6 and pytorch 1.0.
I read this:
https://pytorch.org/docs/stable/multiprocessing.html#module-torch.multiprocessing
https://pytorch.org/docs/stable/notes/multiprocessing.... | module: windows,module: multiprocessing,triaged | medium | Critical |
408,586,251 | rust | Move as much unsafe code as possible out of librustc. | I am currently aware of several uses of `unsafe` code (feel free to add more):
* [ ] interning / lifting typesystem entities (in)to `TyCtxt`
* maybe we can figure out a generalization in the `salsa` ecosystem (cc @nikomatsakis)
* [ ] `ty::List<T>`, which is effectively a `Thin<[T]>`
* could be moved to `arena` ... | C-cleanup,T-compiler | low | Minor |
408,598,460 | godot | Headless mono build not detecting installed mono libs | **Godot version:**
master, commit b67955afcae7a63a37fba7d046c7217bd8a6c3c3
**OS/device including version:**
Kubuntu 18.04
**Issue description:**
I was following the build instructions for building Godot with mono, but when I run the output executable against my Hello World C# project, I get the following o... | usability,topic:dotnet | low | Minor |
408,619,401 | vscode | Split JSON settings editor discussion issue | So as you can see here:

when I open my `settings.json` file I don't have it split up. Before updating whenever I opened `settings.json` I had all the settings on the left hand side and those changed by m... | settings-editor,under-discussion | medium | Major |
408,620,524 | deno | Public API for compilers | For tracking purposes, please don't work on this without discussing with Ry or myself.
Having a public API that is similar to how we perform TypeScript compilation is a good idea. It would allow JS->JS transpilation (e.g. those who need Babel custom plugins or Flow) or other languages (e.g. CoffeeScript).
Relate... | feat,public API | high | Critical |
408,687,109 | vscode | More flexible input variables: Multiple values & labels | I love the new input variables feature and was eager to thin out the tasks lists of my projects. Unfortunately, I realized that the mechanism does not suffice for most cases. Items of the `options` array may be cryptic ids and often a choice represents a combination of variables. May I suggest that you support multiple... | feature-request,tasks | low | Major |
408,701,152 | go | net/http: ServeFile panics when StripPrefix over-strips and results in empty path | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.11.4 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
YES
### What operating system and processor architecture a... | NeedsFix | low | Critical |
408,714,702 | pytorch | Seg fault with test_rnn_retain_variables on ppc64le | ## π Bug
Observed segfault with the test case `test_rnn_retain_variables`:
Other tests that crash are:
```
test_cuda_rnn_fused
test_rnn_initial_hidden_state
test_einsum
```
## To Reproduce
The minimum to code to reproduce is:
```
import torch
import torch.nn as nn
device="cpu"
dtype=torch.double
... | module: crash,triaged,module: POWER | low | Critical |
408,746,910 | godot | Trying to "get_plugin_name" triggers an error | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:** 3.1.beta3.official
<!-- Specify commit hash if non-official. -->
**OS/device including version:** Solus 3.9999
<!-- Specify GPU model and drivers i... | usability,topic:plugin | low | Critical |
408,780,016 | go | html/template: SGML processing Instructions escaped | Go version `go1.12beta2`.
```go
package main
import (
"bytes"
"html/template"
"log"
"strings"
)
func main() {
log.SetFlags(0)
tmpl, err := template.New("").Parse(`<?PITarget PIContent?>`)
if err != nil {
log.Fatal(err)
}
var b bytes.Buffer
tmpl.Execute(&b, nil)
s := b.String()
if... | NeedsDecision | low | Major |
408,780,625 | godot | Add a flag to create a project from the CLI | <!-- 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 non-official. -->
3.0.6
**OS/device including version:**
<!-- Specify GPU model and drivers if graphics-related. -->
Li... | enhancement,topic:editor | low | Major |
408,782,162 | create-react-app | 2.1.4 Update cause "Cannot find module '/Users/.../node_modules/react-scripts/node_modules/@babel/runtime/helpers/interopRequireDefault' from 'setupTests.ts'" | ### Environment
```
System:
OS: macOS 10.14.2
CPU: x64 Intel(R) Core(TM) i7-8750H CPU @ 2.20GHz
Binaries:
Node: 11.6.0 - ~/.nvm/versions/node/v11.6.0/bin/node
Yarn: 1.12.3 - ~/.nvm/versions/node/v11.6.0/bin/yarn
npm: 6.5.0-next.0 - ~/.nvm/versions/node/v11.6.0/bin/npm
Browsers:
... | issue: bug,difficulty: complex,issue: needs investigation | high | Critical |
408,799,268 | pytorch | torch.multiprocessing.pool.Pool broken | ## π Bug
Cannot create a `torch.multiprocessing.pool.Pool` instance.
## To Reproduce
Steps to reproduce the behavior:
```
Python 3.6.3rc1+ (default, Feb 5 2019, 15:51:57)
Type 'copyright', 'credits' or 'license' for more information
IPython 6.5.0 -- An enhanced Interactive Python. Type '?' for help.
... | module: multiprocessing,triaged,small | low | Critical |
408,801,453 | opencv | bug in videoio crash while releasing capture | - OpenCV => 4.0.1
- Operating System / Platform => Windows 7 64 Bit
- Compiler => Visual Studio 2017
when calling capture release, sometimes it crashes when the app is going to quit and the debugger stops in file cap_dshow.cpp, the problem is that it happens only from time to time, hard to reproduce. When the re... | category: videoio,platform: win32 | low | Critical |
408,827,945 | rust | Consider aggregate types containing unconstructable types to also be unconstructable | Currently `Option<!>` is 0-sized, but `Option<(T, !)>` isn't, despite the fact that the `Some` variant of the latter is unconstructable. If this were fixed then you could implement `PhantomData` in userland as:
```rust
type PhantomData<T> = Option<(T, !)>;
```
instead of it being special-cased in the compiler. | A-type-system,T-lang,needs-rfc,T-types | low | Major |
408,829,242 | pytorch | Hardshrink for Sparse Tensors | ## π Feature
<!-- A clear and concise description of the feature proposal -->
RuntimeError: hardshrink is not implemented for type torch.sparse.FloatTensor
## Motivation
We are experimenting with sparse neural networks. We want to model the connection between neurons with sparse matrices. At times, if the we... | module: sparse,feature,triaged | low | Critical |
408,862,806 | godot | Allow BoneAttachments to be outside of skeleton | **Godot version:**
v3.1-beta3
**OS/device including version:**
ArchLinux rolling
**Issue description:**
It would be very convenient if BoneAttachment had extra "skeleton" parameter to allow putting them outside of skeleton. | enhancement,topic:core | low | Minor |
408,884,105 | flutter | `AnnotatedRegion<SystemUiOverlayStyle>` pattern docs are hard to find | We should point to `setSystemUIOverlayStyle`'s `AnnotatedRegion<SystemUiOverlayStyle>` pattern from the "See also:" section of the docs for `AnnotatedRegion`, 'SystemUiOverlayStyle', `SystemChrome`, `AppBar.backgroundColor`, `AppBar`, `AppBarTheme`, and anywhere else that makes sense. | framework,f: material design,d: api docs,c: proposal,P2,team-design,triaged-design | low | Major |
408,922,621 | kubernetes | Need documentation on expected permissions for mounted volumes in a Pod | <!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks!-->
**What happened**:
We ran percona mysql as Pod on GKE, Minikube and a proprietary PMK platform. The percona image is built with best prac... | kind/bug,kind/documentation,sig/storage,lifecycle/frozen | low | Critical |
409,004,728 | flutter | Get webview cookies (including HttpOnly) | This is crucial for authenticating with a WebView. The ability to get the cookies will let you do further requests with the http plugin. | c: new feature,p: webview,package,team-ecosystem,P2,triaged-ecosystem | low | Critical |
409,016,093 | flutter | Support wildcard/globs in `flutter: assets:` YAML | See https://github.com/flutter/flutter/issues/4890#issuecomment-407327749.
I'd like to write:
```yaml
flutter:
assets:
- assets/icons/**.png
```
... instead of ...
```yaml
flutter:
assets:
- assets/icons/country_flags/
- assets/icons/currency_codes/
- assets/icons/credit_card_ve... | tool,a: assets,P3,team-tool,triaged-tool | medium | Critical |
409,016,836 | flutter | Meta issue for the difficulty of using assets with Flutter | I wanted to try and highlight how several outstanding issues related to assets really hurt productivity:
* [ ] Including all the files in a directory is only supported for the _current_ package:
```yaml
flutter:
assets:
- assets/country_flags/ # OK
- packages/country_flag_icons/assets/ # S... | tool,a: assets,customer: crowd,P2,team-tool,triaged-tool | 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.