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 |
|---|---|---|---|---|---|---|
391,578,039 | flutter | Stuck at waiting for observatory port to be available if platform code Intent is used. | <!-- 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... | platform-android,tool,P2,team-android,triaged-android | low | Critical |
391,599,512 | TypeScript | Allow local .js/.ts files to be typed by their corresponding .d.ts file | ## Suggestion
If I have `source/index.js` which has:
``` javascript
function isObject(value) {
// null is object, hence the extra check
return value !== null && typeof value === 'object'
}
```
And then I supply a `source/index.d.ts` file which has:
``` javascript
/** Checks to see if a value is an o... | Suggestion,Awaiting More Feedback | low | Critical |
391,600,651 | youtube-dl | iprima.cz ERROR: No video formats found | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2018.12.17*. If it's not, read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected.
- [x] I've **verified**... | geo-restricted | low | Critical |
391,601,838 | create-react-app | Put TypeScript configuration in react-scripts instead of individual project? (TS3.2+) | ### Is this a bug report?
No
### Motivation
[TypeScript 3.2](https://blogs.msdn.microsoft.com/typescript/2018/11/29/announcing-typescript-3-2/#configuration-inheritance-via-node_modules-packages), released November 29th, 2018, now uses [Node.js-based resolution for tsconfig.json inheritance](https://blogs.msdn... | issue: proposal | low | Critical |
391,604,021 | flutter | FEATURE REQUEST: NetworkImage should accept different protocols | NetworkImage uses HTTP and accepts a **url String**, what if I want to use another protocol like gRPC?
Should I rewrite the class? (BAD)
| c: new feature,framework,P3,team-framework,triaged-framework | low | Minor |
391,624,367 | TypeScript | Improve structure, formatting, (human) parsability and readabiliy of errors | ## Suggestion
Comparing my DX/UX experience from working with flow versus TypeScript, the error messages is one of the few things that I preferred how flow does it. Especially after flow v0.66 release. I believe they integrated alot from the [glow](https://github.com/jamiebuilds/glow) project. I would love it if typ... | Suggestion,Committed,Domain: Error Messages | medium | Critical |
391,675,290 | pytorch | Momentum problem (1-momentum is correct?) in BatchNorm2d | ## 🐛 Bug
In BatchNorm2d' doc, the explanation of momentum is:
`\hat{x}_\text{new} = (1 - \text{momentum}) \times \hat{x} + \text{momemtum} \times x_t$`
where `x_t` is the newly computed batch statistics, `\hat{x}` is the estimated statistics in history.
While in my experiments, when momentum set to 0, the batc... | todo,module: docs,module: nn,triaged | low | Critical |
391,676,703 | opencv | Add support for cv.imwrite for opencvJS. | opencvJS running on a browser does not have support for [imwrite](https://docs.opencv.org/master/d4/da8/group__imgcodecs.html#gabbc7ef1aa2edfaa87772f1202d67e0ce). We should consider implementing using the upcoming [W3C writable files](https://github.com/WICG/writable-files), when the proposal matures and there is suppo... | category: javascript (js) | low | Minor |
391,689,516 | TypeScript | Adding generic parameter to a lambda function removes typing from the function argument | **TypeScript Version:** 3.2.2
**Search Terms:** generic removes parameter type
**Code**
```ts
// OKAY
// declare const labmda function with typings, then implement with minimal type annotations.
// "input" has type of "string".
export const foo: (input: string) => string
= (input) => (input);
// O... | Bug,Domain: Contextual Types | low | Critical |
391,706,687 | vue-element-admin | Can git-flow be implemented? | It would be good to implement the git-flow to develop in a more organized and standardized way, you could say that it is the standard way of working in the git world. | enhancement :star: | low | Minor |
391,792,187 | kubernetes | Lock down allowed upgrade protocols in apiserver proxy to spdy and websockets | From [CVE-2018-1002105](https://github.com/kubernetes/kubernetes/issues/71411) [post-mortem](https://docs.google.com/document/d/1tGpqEM56cSBPfl-qxIs_CGdlABMZXEKEDhCI7eOwGT0/edit#)
/assign
/area security
/area apiserver
/priority important-longterm
/kind cleanup
/sig api-machinery | priority/important-soon,area/security,kind/cleanup,area/apiserver,sig/api-machinery,lifecycle/frozen | low | Minor |
391,792,504 | kubernetes | Aggregator: prevent upgrade on known paths that do not serve upgrade requests (like discovery, healthz, etc) | From [CVE-2018-1002105](https://github.com/kubernetes/kubernetes/issues/71411) [post-mortem](https://docs.google.com/document/d/1tGpqEM56cSBPfl-qxIs_CGdlABMZXEKEDhCI7eOwGT0/edit#)
/area security
/area apiserver
/priority important-longterm
/kind cleanup
/sig api-machinery | area/security,kind/cleanup,area/apiserver,sig/api-machinery,priority/important-longterm,lifecycle/frozen | low | Minor |
391,813,917 | kubernetes | Investigate adding per-request binding or assertions to apiserver proxy | Investigate adding per-request binding or assertions that would let backends verify a particular request was intentionally forwarded from the apiserver proxy
From [CVE-2018-1002105](https://github.com/kubernetes/kubernetes/issues/71411) [post-mortem](https://docs.google.com/document/d/1tGpqEM56cSBPfl-qxIs_CGdlABMZXE... | area/security,area/apiserver,sig/api-machinery,kind/feature,priority/important-longterm,lifecycle/frozen | low | Minor |
391,815,448 | TypeScript | Distinguish between plain object types and class types | ## Search Terms
- plain object class type
## Suggestion
Some way to distinguish an object type that only has `Object` in its prototype chain.
## Use Cases
In [this library](https://github.com/mweststrate/immer), we use mapped types to convert immutable objects/arrays into their mutable representation. We... | Suggestion,Needs Proposal | medium | Critical |
391,826,358 | vue | Impossible to preserve directive dom changes when the dom element is shared by multiple vnodes. | ### Version
2.5.17
### Reproduction link
[https://codesandbox.io/s/8y0yqono38](https://codesandbox.io/s/8y0yqono38)
### Steps to reproduce
Create a wrapper component that has another custom component as its root node. Put a directive on the wrapper component that adds a class to the element. Do any... | improvement | medium | Minor |
391,837,797 | go | strconv: ParseBool errors are verbose | Failure to parse a boolean flag results in this error:
https://play.golang.org/p/cBBLtiFyWhY:
```invalid boolean value "garbage" for -b: strconv.ParseBool: parsing "garbage": invalid syntax```
Room for improvement:
- display the offending value only once
- don't mention strconv.ParseBool, as it is an intern... | NeedsDecision | low | Critical |
391,839,342 | flutter | Attempting to install a non-code-signed iOS app should provide a meaningful error | ```
flutter build ios --no-codesign
flutter install -v
```
Will produce a lot of logs that end with:
```
Install failed
#0 throwToolExit (package:flutter_tools/src/base/common.dart:26:3)
#1 InstallCommand.runCommand (package:flutter_tools/src/commands/install.dart:44:7)
<asynchronous suspension... | platform-ios,tool,a: quality,P3,team-ios,triaged-ios | low | Critical |
391,841,225 | pytorch | CMake Error at CMakeLists.txt:10 (find_package) in C++ | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
## To Reproduce
Steps to reproduce the behavior:
1. Go to the eclipse-workspace and run `cmake -G "Eclipse CDT4 - Unix Makefiles" ./` to create a Eclipse project.
## Expected behavior
It should create a CMake project with Eclipse.
... | module: build,triaged | low | Critical |
391,863,866 | rust | Tracking issue: --persist-doctests flag for rustdoc | First implemented in https://github.com/rust-lang/rust/pull/56189, this flag allows users to save the compiled binaries created when rustdoc runs documentation tests.
Pending work:
- [x] Land https://github.com/rust-lang/rust/pull/56189
- [ ] Change the folder naming scheme? i.e. https://github.com/rust-lang/rus... | T-rustdoc,B-unstable,C-tracking-issue,A-doctests | low | Critical |
391,877,195 | godot | get_tree().root can't be edited | **Godot version:** cf07169
**OS/device including version:** Ubuntu/Any
**Issue description:**
Trying to change properties of the scene's root with `get_tree().root` will result in a crash. Following error is outputted: "Invalid set index 'root' (on base: 'SceneTree') with value of type 'Viewport'."
Editing th... | bug,topic:gdscript,confirmed | low | Critical |
391,878,743 | pytorch | libtorch without cmake | ## 🐛 Bug
I have run the example-app (https://pytorch.org/cppdocs/installing.html) using libtorch and cmake. Now I am going to run it only using an IDE such as Eclipse. I have tried it; however, using <torch/torch.h> there’s a whole bunch of include files that g++ can’t find. So could you please itemize the necessa... | module: build,module: cpp,triaged | low | Critical |
391,885,820 | flutter | IconButton tooltip is incorrectly aligned on Android, compared to native implementation | On Android, holding down on a button in the AppBar/Toolbar/etc gives a tooltip. This tooltip is wrongly aligned in Flutter, see the Gmail app left, and a Flutter demo app right.
<img src="https://user-images.githubusercontent.com/5138348/50114609-3a8f9c80-0245-11e9-8c97-4f971c66a77a.jpg" height="400" /> <img src="ht... | platform-android,framework,f: material design,a: accessibility,a: fidelity,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-android,triaged-android | low | Major |
391,887,468 | go | encoding/json: omitempty for arrays is confusing | <!-- 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.2 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes.
### What operating system and processor architecture ar... | Documentation,NeedsInvestigation | medium | Major |
391,910,805 | pytorch | AttributeError: module 'caffe2.python._import_c_extension' has no attribute 'get_cudnn_version' when Caffe2 is not built with CuDNN | Steps to reproduce:
1. Build caffe2 without CuDNN (e.g., have CUDA but don't install CuDNN)
2. Run `python caffe2/python/data_parallel_model_test.py DataParallelModelTest.test_equiv`
Expected: It should work, or maybe it gives me an error/skip saying I can't run this test without CuDNN
Actual:
```
python ... | caffe2 | low | Critical |
391,915,749 | flutter | iOS should provide a way to enable the semantic tree for testing frameworks | Currently, on a physical iOS device, the engine only builds the semantics tree if:
```
bool enabled = UIAccessibilityIsVoiceOverRunning() || UIAccessibilityIsSwitchControlRunning();
```
This is a problem for testing frameworks that want to find elements by semantic label, e.g. the following EarlGrey code work... | a: tests,platform-ios,engine,a: accessibility,a: existing-apps,P2,team-ios,triaged-ios | low | Major |
391,967,195 | rust | Uses of GlobalAlloc::realloc yield useless code in lto+opt-level=2 builds | I noticed this in Firefox (where we do build with `-C lto -C opt-level=2`). Essentially any use of an API that ends up calling __rust_realloc generates useless code. A small testcase is:
```rust
#[no_mangle]
pub extern "C" fn qux(v: &mut Vec<usize>) {
v.push(42);
}
```
which, with the following `Cargo.toml` ... | I-slow,A-allocators,T-compiler,C-bug,I-heavy | low | Critical |
392,051,857 | godot | Moving anchors together with the object | **Godot version:**
11d7738
**Issue description:**
The only way to have an object resize proportionally with the screen (same behaviour as % in CSS) is to move the anchors around and have always margin 0.
The current workflow for this kind of task is clunky as there is no way to move the anchors together with the ... | enhancement,discussion,topic:editor,usability | low | Minor |
392,092,994 | go | x/build/cmd/buildlet: remaining processes not killed | When `buildlet` times out, some processes remain in background and they need to be killed manually.
It seems that `buildlet` only kills its first children and not all its offsprings.
It occurs on aix/ppc64 builder. But I think it's a more general issue.
Here are some processes remaining after builds had fail... | Builders | low | Critical |
392,129,301 | godot | Project settings hold editor infos | **Godot version:**
11d7738
**Issue description:**
Seems like Godot is storing editor specific data inside the project settings.
I believe this is a leftover of some sort before the editor had its own settings?
 function will intercept all errors thrown in components and log them. It can also pass them to an external error handler, but that external error handler won't be able to thro... | feature request | medium | Critical |
392,160,218 | rust | A type inference problem with struct fields and collect method | Hi, I found a type inference problem like below. You can check it in Rust Playground from link.
If it's possible, i would like to write code with less type annotation.
https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=da38ac68e6aba30ab33c0ddc42ecdd3b
```
#![allow(unused)]
struct Foo {
... | A-inference | low | Critical |
392,162,534 | pytorch | [JIT] Batch op. batch_sum return a mask which is on cpu | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
## To Reproduce
Steps to reproduce the behavior:
1. Create a computation graph with a sum operation and another operation which is on gpu.
```
TensorIterator expected type CUDAByteType but got CPUByteType (check_type_conversions at .... | needs reproduction,oncall: jit | low | Critical |
392,176,263 | opencv | LUT for 32-bit int | Table translation (LUT) is a frequently function while image processing and analysis. But it is usually necessary not for byte (CV_8U), but for 32-bit integer matrices. For example, we have a map of 100000 objects, recognized on the image (like connected components or results of superpixel), and we join them to some 10... | feature,priority: low | low | Major |
392,192,777 | go | runtime: externally linked programs don't detect deadlocks |
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.11.4 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes (also master as of last week)
### What operating system and processor architecture are you using (`go env`)?
<details><summary><co... | help wanted,NeedsFix,compiler/runtime | low | Critical |
392,241,050 | opencv | Unstable result of useOpenCL in multithreading Java environment | I detected, that `useOpenCL` returns different values when I intensively call OpenCV functions in Java from different threads. (My test sequentially calls several simple OpenCV UMat functions, each function in a separate thread, and repeats all this 150 times in a simple loop.) Sometimes useOpenCL returns `true`, somet... | incomplete | low | Critical |
392,338,237 | godot | Calling `set()` and `get()` with invalid property name should raise an error | <!-- 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. -->
Godot 3.1-dev (3c999ae1a)
**OS/device including version:**
<!-- Specify GPU model and drivers if graph... | enhancement,topic:core,topic:gdscript,usability | low | Critical |
392,358,111 | flutter | Benchmark TextField performance | The text field makes many repeated calls to `GetRectsForRange/GetBoxesForRange` which is not a trivial task.
With the introduction of even more calls to it in https://github.com/flutter/flutter/commit/f8964ae250354e655ac81e1be3201ffadd8ce3b2, as well as the discovery and fixing of https://github.com/flutter/flutter/... | a: text input,team,framework,engine,c: performance,P2,team-engine,triaged-engine | low | Major |
392,374,961 | rust | Docs: std::alloc::set_alloc_error_hook clarifications | In using this function I am wondering a few things:
- What happens if I oom while handling an oom? Is the oom handler called again? Does the process immediately abort (ala panic)?
- Does triggering oom remove the custom oom handler? The presence of `take_alloc_error_hook` makes it seem like that may the case, but... | C-enhancement,T-libs-api,A-docs | low | Critical |
392,395,159 | scrcpy | Notifications won't swipe off lock screen. | I can slide them to the right at whatever speed with the mouse, but they don't slide off the screen and go away as what happens when you do it with your finger.
Moto g5 plus, android 8.1. | input events | low | Minor |
392,418,409 | pytorch | Projective Transformation grid generator | ## 🚀 Feature
<!-- A clear and concise description of the feature proposal -->
An analogous function to `torch.nn.functional.affine_grid` that takes a full 3x3 projective transformation matrix of the form
```
[[a, b, c],
[d, e, f],
[g, h, 1]]
```
would be really nice.
## Motivation
Reproducing the projecti... | todo,triaged,enhancement | medium | Major |
392,428,699 | flutter | Cannot guard a call to State.setState() from within State.dispose(). | I have a method with a call to setState(). This method will be called from within State.dispose(), as well as from elsewhere within the lifespan of the State object. (it's a shutdown handler on an object, but I've abstracted that away in my simplified example below), but I cannot seem to guard the usage of setState() (... | framework,d: api docs,has reproducible steps,P2,found in release: 3.3,found in release: 3.5,team-framework,triaged-framework | low | Critical |
392,448,297 | pytorch | F.grid_sample doesn't respect padding_mode when height of inputs is 1 | ## 🐛 Bug
The function `F.grid_sample` takes two args: `inputs`and `coords`. For the sake of simplicity I'm going to describe this issue for the case when `inputs` represents a grayscale image and has a shape `[1, 1, IH, IW]`.
The `coords` argument has shape `[1, OH, OW, 2]`, where the final dimension of size 2 ... | module: docs,triaged,module: interpolation | low | Critical |
392,521,875 | vscode | Prevent Find/Replace bar from returning after Next Match (F3) | In regular Visual Studio, when you press Ctrl+F to find, you type your search text and press Enter. Because the Find/Replace "dialog" does not automatically go away, I've learned to immediately press Esc to get rid of it. At that point, I can press F3 to repeat search (next match) or Shift+F3 for previous match and t... | feature-request,editor-find | medium | Major |
392,523,822 | go | cmd/compile: make argument size of -S output more accurate | I would like to seek clarification about the correct argument size for assembly functions. Specifically, `asmdecl` requires different sizes from those reported by `go tool compile -S`. See the following gist for an example:
https://gist.github.com/mmcloughlin/598774c255f40605e613ffb3361e240c
I'll copy the main po... | NeedsFix,compiler/runtime | low | Minor |
392,528,131 | rust | Tracking issue: platform-specific APIs for SGX target | This issue tracks the functionality available behind the `sgx_platform` feature gate.
Relevant PRs:
* #56978
* #57119
TODO:
* [ ] arch module
* More details in https://github.com/fortanix/rust-sgx/issues/15
* At the very least the `AlignXXX<[u8; _]>` types should be replaced by the actual types (from th... | T-lang,T-libs-api,B-unstable,C-tracking-issue,O-SGX,Libs-Tracked,S-tracking-design-concerns | low | Major |
392,576,329 | node | regression: child_process stdin pipe close event not emitted | ### Summary
* **Version**: v8.12.0 and newer, all v10.x and all v11.x
* **Platform**: Linux and macOS amd64
* **Subsystem**: child_process
Since #18701 Node.js doesn't emit a close event when a child process closes its stdin pipe. The close is only detected if the parent tries to write to the child's stdin and re... | confirmed-bug,child_process,net,stream | low | Critical |
392,577,364 | vscode | Microsoft Surface Precision Mouse - "Accelerated Vertical Scrolling" breaks smooth scroll | <!-- Please search existing issues to avoid creating duplicates. -->
<!-- Also please test using the latest insiders build to make sure your issue has not already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- Use Help > Report Issue to prefill these. -->
- VSCode Version: 1.30.1
- OS Version: Win 1... | feature-request,windows,trackpad/scroll | low | Minor |
392,582,456 | go | syscall: modest improvement to Windows DLL-preloading protection | ### What version of Go are you using (`go version`)?
<pre>
go version go1.11 windows/amd64
</pre>
### Does this issue reproduce with the latest release?
yes
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go env</code> Output</summary><br><pre>
se... | Security,OS-Windows,NeedsDecision,compiler/runtime | low | Critical |
392,583,590 | flutter | CupertinoTextField should not allow horizontal scrolling | If you have a `CupertinoTextField` and you write a lot of text in it, so it doesn't fit and you need to scroll the text, then if you scroll horizontally in the `CupertinoTextField` you can actually scroll to different positions of the text. This is not possible in native Cupertino widgets. If you try to do the same thi... | a: text input,framework,a: fidelity,f: cupertino,c: proposal,P2,team-design,triaged-design | low | Major |
392,584,751 | TypeScript | Confusing enum reverse string lookup behaviour in strict mode | ## Summary
Code below.
Typescript in --strict mode will reject enum reverse lookups using arbitrary strings with this very confusing error message:
> Element implicitly has an 'any' type because index expression is not of type 'number'.
A workaround is to cast the string to a subset of all possible enum keys ... | Suggestion,Domain: Error Messages,Experience Enhancement | low | Critical |
392,608,529 | angular | State transition to void triggered for animated children while still existing in DOM | # 🐞 bug report
### Affected Package
The issue is caused by package `@angular/animation` (any version)
### Description
1. There is an array of numbers
2. There is a parent container that generates multiple child items with a ngFor loop using that array.
3. Each item gets its number from the array assigned.
3... | type: bug/fix,area: animations,freq2: medium,P3 | low | Critical |
392,619,577 | rust | Suggest type or module with similar name when code is incorrect | Given the following code:
```rust
use std::ffi::CString;
fn main() {
let s = Cstring::new("hello").unwrap();
}
```
rustc gives me this output:
```
error[E0433]: failed to resolve: use of undeclared type or module `Cstring`
--> main.rs:4:13
|
4 | let s = Cstring::new("hello").unwrap();
... | C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics,D-papercut | low | Critical |
392,656,257 | flutter | [video_player] Initialization error when initializing multiple videos | I'm initializing video but this message comes up and never initialized video.
I'm displaying loading indicator until video gets initialized.
So, view never changes from loading indicator.
Is there any workaround?
```
W/art (16464): Suspending all threads took: 7.008ms
E/ACodec (16464): [OMX.google.aac.deco... | c: crash,customer: crowd,p: video_player,package,team-ecosystem,has reproducible steps,P2,found in release: 2.5,found in release: 2.6,triaged-ecosystem | low | Critical |
392,674,680 | node | Makefile dependency tree is incomplete, makefiles do not build only as necessary | * Version: master
* Platform:Linux samtu 4.18.0-12-generic #13-Ubuntu SMP Wed Nov 14 15:17:05 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
* Subsystem: gyp/make
The makefiles generated by gyp are not working for development (they work better for single-shot CI builds). Perhaps I'm missing something, please tell me if I... | confirmed-bug,build | low | Critical |
392,738,151 | TypeScript | Async Transformers | I was using Compiler API and basically changed program.emit at host.afterProgramCreate just like examples and hooked my transformers into emit function. But one thing i couldn't find anywhere is a async transformer. Im using PostCSS and some other stuff like that and implementing those to a single typescript compiler b... | Suggestion,API,Awaiting More Feedback | low | Major |
392,799,232 | godot | Default implicit and explicit values both return null from a ShaderMaterial | Godot 3.0.6
Godot 3.1 alpha3
This is a variant of #17887, that I thought was fixed by #21806:
In my plugin I want to display parameters in a dialog (so not the inspector), based on shader material parameters, however these come as null if they were never set through the material, forcing me to spend time re-imp... | bug,confirmed,topic:shaders | low | Major |
392,840,597 | flutter | Show a warning if gradle is about to crash because of non-ascii characters | A gradle bug causes the gradle daemon to crash if there are non-ascii characters in any environment variable and the locale is not properly set (https://github.com/gradle/gradle/issues/3117).
We bumped into this issue a few times on CI (#24935).
It would be useful for the flutter tool to detect this state and show ... | c: new feature,tool,t: flutter doctor,t: gradle,P2,team-tool,triaged-tool | low | Critical |
392,862,086 | pytorch | JIT is not compatible with data parallel | ## 🐛 Bug
JIT is not compatible with data parallel. So no one can train any model using more than one GPU.
Data parallel is such a fundamental module. It makes the JIT totally unpractical for training (except toy models), even in 1.0 **stable** version.
## To Reproduce
Steps to reproduce the behavior:
1. ... | oncall: jit | medium | Critical |
392,865,105 | ant-design | Menu item with icon and text in inline collapse | - [x] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate.
### What problem does this feature solve?
In the inline collapse menu, can only show the icon which is ambiguous to user, if we can put a text under it which can make it m... | 💡 Feature Request,Inactive | low | Minor |
392,866,913 | flutter | Let Flutter be installable via dnf | ## Steps to Reproduce
<!-- Please tell us exactly how to reproduce the problem you are running into. -->
1. `sudo dnf install flutter`
## Logs
```
Last metadata expiration check: 0:52:16 ago on Wed 19 Dec 2018 06:10:23 PM PST.
No match for argument: flutter
Error: Unable to find a match
```
<!-- If p... | c: new feature,tool,platform-linux,P3,team-tool,triaged-tool | low | Critical |
392,900,637 | go | x/mobile: Failed to build GO app for android platform | <!-- 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.1 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are ... | mobile | low | Critical |
392,948,287 | pytorch | IDEEP error:could not initialize a memory descriptor | I translate a caffe model to caffe2 model. Then I try to use the IDEEP device option to do forward compution , I got the error message "IDEEP error:could not initialize a memory descriptor" . | caffe2 | low | Critical |
392,954,194 | pytorch | caffe2: multi-thread(or multi-instance) predict is much slower than the single thread or single instance | the caffe2 forward is much slower(one more times) than single thread or single instance,
any one know how to deal with it?
thanks . | caffe2 | low | Major |
393,008,800 | godot | VRAM compressed texture takes a lot of space when imported | I'm using Godot.alpha3 on OSX 10.14
`Video RAM` compressed textures are too big. 4kX4k texture takes 16mb on the drive. This is also affects exported game size.
```
[.]: ls -lah ghost.png
-rw-r--r-- 1 jkbo staff 480K Dec 20 14:16 ghost.png
[.]: ls -lah .import/ghost.png-f343bb4bd35f12f8f631dffe3b7d2891.*
-r... | enhancement,discussion,topic:import,topic:3d | low | Major |
393,118,443 | create-react-app | Chrome debugger breakpoints fail with react-scripts 2.x after hot-update |
### Is this a bug report?
yes
### Did you try recovering your dependencies?
test-cra $npm --version
5.6.0
test-cra $yarn --version
1.12.3
### Which terms did you search for in User Guide?
I looked for "hot-update" and "breakpoint"
### Environment
System:
OS: macOS High Sierra 10... | issue: bug | high | Critical |
393,156,744 | rust | Rustc_driver cann't correctly find codegen dirs with multiple subfolders in libdir. | When rust compiled and installed with multiple subfolders in libdir it cann't correctly found directory with codegen-backends. See https://github.com/rust-lang/rust-clippy/issues/3565
```rust
// use `parent` twice to chop off the file name and then also the
// directory containing the dll which sho... | A-driver,T-compiler | low | Major |
393,159,498 | vue | Transition is erroneously run when placed with bizarre sequence of sibling elements. |
### Version
2.5.21
### Reproduction link
[https://jsfiddle.net/analyzeplatypus/eywraw8t/513878/](https://jsfiddle.net/analyzeplatypus/eywraw8t/513878/)

### ... | bug,has workaround,transition | low | Major |
393,171,805 | godot | DynamicFont causes frame drops | **Godot version:**
Godot 3.1-dev (a custom version forked in September)
**OS/device including version:**
Android/iOS
**Issue description:**
Using DynamicFont causes noticeable frame drops when first shown. My guess is that the font textures are generated at that point and it's a slow enough to take some frames... | bug,topic:core | low | Major |
393,200,994 | flutter | Support Unix .ar archives in license tool | Implement .ar and .tar parsers in the license tool and `ArBinaryFile` and `TarBinaryFile` classes in filesystem.dart.
See: https://github.com/flutter/engine/blob/55f022fc9c1e7f08420844bdc71f6d98bf9b4b46/tools/licenses/lib/filesystem.dart#L287-L290
We're doing a check for .ar filetype magic there (!<arch> + an LF)... | c: new feature,team,engine,c: proposal,P2,team-engine,triaged-engine | low | Minor |
393,208,402 | TypeScript | Excessive stack depth comparing types with TS 3.2 | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.2.2
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
error TS2321: Excessive stack depth comparing types
lodash
**Code*... | Bug,Domain: Mapped Types | medium | Critical |
393,215,469 | flutter | Decouple scrollable's cacheExtent and implicit accessibility scrolling | We should let people toggle `cacheExtent` for the purposes of pre-fetching and caching etc. But it's currently tied to implicit accessibility scrolling.
Sounds like that's already a flag on SemanticsFlag so it should theoretically be composed with list views to prevent implicit scrolling (such as in case of PageVie... | platform-ios,framework,engine,a: accessibility,f: scrolling,P2,team-ios,triaged-ios | low | Minor |
393,254,644 | youtube-dl | Site Support Request - www.enhancetv.com.au |
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2018.12.17*. If it's not, read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected.
- [x ] I've **verifie... | account-needed | low | Critical |
393,261,214 | pytorch | Improve one_hot | As discussed in https://github.com/pytorch/pytorch/pull/15208, the following improve can be made on `torch.nn.functional.ont_hot`:
- Make the `num_classes` parameter `int64_t?` instead of `int64_t num_classes = -1`
- Add optional dtype argument
- Add optional dim argument
cc: @zou3519 @vadimkantorov
cc @albanD... | module: nn,triaged,function request | low | Major |
393,276,861 | go | proposal: cmd/go: add GOARM=8 for further optimization on armv7/aarch32 | Currently an ARM program built by go will call runtime.udiv() for a division, in which it detect if a hardware divider is available, or use software division.
The main reason is that a hardware divider is an optional component for an ARMv7 machine. But in the real world, most ARMv7 SOC has it, such as RaspberryPi2.
... | Proposal,Proposal-Hold | low | Major |
393,289,553 | pytorch | Transplant caffe2 on my DNN-accelerator | ## ❓ Questions and Help
### Please note that this issue tracker is not a help form and this issue will be closed.
We have a set of [listed resources available on the website](https://pytorch.org/resources). Our primary means of support is our discussion forum:
- [Discussion Forum](https://discuss.pytorch.org/)... | caffe2 | low | Minor |
393,345,450 | TypeScript | Improve exception reporting | ## Search Terms
Crash, Maximum call stack size exceeded, fork-ts-checker-webpack-plugin
## Suggestion
Improve crash logs by dumping statements, file names, line number and everything that might help to identify faulty statement.
<!-- A summary of what you'd like to see added or changed -->
I just upgraded pa... | Bug,Crash | low | Critical |
393,366,430 | go | runtime: unexpected signal during runtime execution on Debian | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go1.10.1 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
No
### What operating system and processor architecture are you using (`... | NeedsInvestigation,compiler/runtime | low | Critical |
393,397,772 | rust | A perf regression between 2018-12-20 and 2018-12-21 | Instructions and wall-time took a [noticeable hit](https://perf.rust-lang.org/compare.html?start=2018-12-20&end=6d34ec18c7d7e574553f6347ecf08e1e1c45c13d&stat=instructions%3Au) due to one of [these changes](https://github.com/rust-lang/rust/compare/e42247f949fe2ce64d688f1585a2dbbc66720406...6d34ec18c7d7e574553f6347ecf08... | I-slow,I-compiletime,T-compiler | low | Critical |
393,412,054 | javascript-algorithms | Add Splay Tree | enhancement | medium | Minor | |
393,415,179 | TypeScript | Incompatible type error in regular js with JSDoc generic type annotations | <!-- 🚨 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... | Bug,Domain: JSDoc | low | Critical |
393,428,673 | flutter | Scrollbar resizing and jumping | Hi everyone.
I have noticed that scrollbar working fine with Lists without pagination and with items of the same size.
While we have pagination and items are of different size (like chat with many messages) - scrollbar behaves strange - it is jumping and resizing itself
You can find reference to video here:
http... | framework,f: scrolling,has reproducible steps,P2,found in release: 2.8,found in release: 2.10,team-framework,triaged-framework | low | Critical |
393,476,613 | godot | Unable to achieve the desired function about getting properties value from scene drag-and-drop nodes in visualscript | **Godot version:**
godot3.1 alpha3
**OS/device including version:**
manjaro gnome x64
Intel® Core™ i3-2350M CPU @ 2.30GHz × 4
Intel® Sandybridge Mobile
OpenGL ES 3.0 Renderer: Mesa DRI Intel(R) Sandybridge Mobile
intel hd 3000
**Issue description:**
It can not get player attributes value.
![2018-12-2... | topic:visualscript | low | Minor |
393,531,535 | godot | Dynamic properties are not '.' accessible when accessing external Nodes. | **Godot version:**
Godot 3.1 alpha: a92e885
**Issue description:**
When using `_get`, `_set`, and `_get_property_list` to expose a property dynamically, I have found that it functions inconsistently.
- Works
- Test scene 3) A node exposes its own dynamic property and then prints said property using `self.<... | bug,topic:gdscript,confirmed | low | Critical |
393,552,991 | flutter | WidgetTester.getSemantics should deal better with force-merged semantics | `WidgetTester.getSemantics` [1] is not really aware of the semantics behind `MergeSemantics` [2], which force-merged individual SemanticsNodes into one. Instead of returning a SemanticsNode that contains the force-merged data, it returns individual un-merged SemanticsNodes. This makes it very hard to test the code that... | a: tests,framework,a: accessibility,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-framework,triaged-framework | low | Minor |
393,560,545 | angular | DEV mode change detection - Show warning if object reference changes in subsequent check | # 🚀 feature request
### Relevant Package
This feature request is for `@angular/core`
### Description
When Angular does change detection, it will re-render the view whenever a property binding changes. There is a slight issue with _what_ Angular considers a "change". If an object reference changes to an object ... | feature,area: core,core: change detection,core: debug tools,feature: under consideration | low | Critical |
393,563,742 | bitcoin | Fail on unknown config file options | A solution would be to either make all binaries be aware of each other's options, or to permit config file options that only apply to specific binaries (`bitcoind`, `bitcoin-qt`, `bitcoin-cli`) or the wallet. (https://github.com/bitcoin/bitcoin/pull/13799#issue-204717028) | Utils/log/libs | low | Major |
393,581,815 | pytorch | LibTorch: include cmake files for all distributed headers | I'm planning to add libtorch support to a project that already uses pybind11, and I got a few errors because libtorch also bundled pybind11, which is automatically added to the include path.
While it's easy enough to use the bundled pybind11 in our project, there is no clean way to reference this in cmake since the ... | module: cpp,triaged | low | Critical |
393,603,264 | TypeScript | [bug] A method return type of 'this' is incorrectly converted to 'any' in declaration output | <!-- 🚨 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... | Bug | low | Critical |
393,632,675 | TypeScript | Type inference of generics does not work only when callback takes argument | <!-- 🚨 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... | Bug | low | Critical |
393,652,542 | TypeScript | output declaration type not as expect | <!-- 🚨 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... | Bug | low | Critical |
393,661,163 | javascript-algorithms | Provide use cases for the abstraction | I suppose this falls under a feature request..
I think there is a lot of great content here. However, honestly they would become far more valuable (to me, at least) if there were use cases detailed in the README.md of each algorithm.
| enhancement | low | Minor |
393,702,545 | go | x/build/maintner: GitHub issue events are not consistent with API values | Moved from #28226…
There are some issues that have events missing within the maintner corpus. This makes it impossible to create an accurate milestone burndown chart where you want to query for the state of an issue at a particular time window.
A few examples of issues in maintner that have incomplete event lists... | help wanted,Builders,NeedsInvestigation | medium | Critical |
393,710,084 | TypeScript | Allow identifiers in types to resolve to unit-typed values | ## Search Terms
constant type literal, Cannot find name, type identifier, unit value
## Suggestion
When declaring a constant like `const UNSPECIFIED = "UNSPECIFIED";`, I'd like the identifier `UNSPECIFIED` to be usable as a type (equivalent to the `"UNSPECIFIED"` literal type), just like how you can use `null`... | Suggestion,Awaiting More Feedback | low | Critical |
393,723,452 | TypeScript | Void parameter still required when type extends generic | <!-- 🚨 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... | Bug | medium | Critical |
393,735,918 | go | fmt: Fscan might not work on tracefs "id" files | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.11 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Use `fmt.Fscan` on a tracefs `id` file. For example
`/sys/kernel/debug/tracing/events/tcp/tcp_set_state/id`
### What operating system and pr... | NeedsInvestigation | low | Critical |
393,740,519 | rust | [idea] Add an option put the metadata in a separate file | # Detailed design
When `-Zsplit-metadata` is passed to rustc, it will put the metadata normally inside a `rlib` or `dylib` in a separate `rmeta` file. The `rlib`/`dylib` will contain the SVH to prevent accidentally mixing the `rmeta` and `rlib`/`dylib` of different compilations.
# Advantages
This would make th... | A-metadata,T-compiler,C-feature-request | low | Major |
393,742,652 | go | x/text: support error and fmt.Stringer values | <!-- 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, this is the latest release
### What operating system ... | NeedsDecision,FeatureRequest | low | Critical |
393,747,605 | TypeScript | Accessing protected properties with `this` argument specifier differs with 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... | Bug | low | Critical |
393,754,506 | flutter | Feature Request: Show/hide splashscreen in dart | When launching my Flutter application, the splashscreen is shown. After the first Flutter frame is rendered, the splashscreen will be hidden and the Flutter view will be loaded and shown.
However during loading the Flutter view it needs some time to store a big asset image in the image cache. The asset image is actu... | c: new feature,framework,engine,P2,team-engine,triaged-engine | low | Major |
393,782,326 | TypeScript | Missing 'used before declaration' error with IIFE | <!-- 🚨 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 | 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.