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 |
|---|---|---|---|---|---|---|
346,267,257 | go | cmd/go: add a facility to peek into the module cache | cc: @rsc @bcmills @suzmue @ianthehat
To work with modules, a tool like goimports should be aware of the set of modules in the module cache. Then, it could suggest packages that haven't been required in go.mod or imported by a package or its deps. At the least, it should be able to list the latest version of each mod... | NeedsDecision,FeatureRequest,modules | low | Major |
346,273,111 | go | cmd/go: add support for "contains:" patterns to go list | cc @rsc @bcmills @suzmue @ianthehat
`go/packages.Load` allows users to supply contains:<filepath> as a pattern argument. All other patterns supplied to `Load` are accepted by `go list` and it would be helpful if contains: could be also. That would allow `go/packages.Load` to always make a single `go list` call.
... | NeedsInvestigation,FeatureRequest | low | Minor |
346,294,304 | TypeScript | In JS, bogus noImplicitAny error on some this-property assignments | Discovered while looking at the puppeteer user test:
```js
class EmulationManager {
constructor() {
this._emulatingMobile = false;
}
/**
* @param {boolean} viewport
*/
emulateViewport(viewport) {
if (this._emulatingMobile !== viewport)
return true;
this._emulatingMobile... | Bug,checkJs | low | Critical |
346,305,048 | youtube-dl | Support for questod.co.uk | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`)
- Use the *Preview* tab to see what your issue will actually look like
... | geo-restricted | low | Critical |
346,340,393 | go | cmd/go: cache hit takes too long on a test that opens many files | ### What version of Go are you using (`go version`)?
go1.10.2
### Does this issue reproduce with the latest release?
Yes.
```
ijt$ time go1.11beta1 test . ... | help wanted,ToolSpeed,NeedsInvestigation,GoCommand | medium | Critical |
346,344,105 | pytorch | [Caffe2] Implementing CoordConv layer | ## Issue description
I am trying to implement a CoordConv layer (https://arxiv.org/pdf/1807.03247.pdf) in caffe2 but I am having problems to concatenate a Tensor due to shape mismatch.
The CoordConv layer consist in concatenating the input blob with two tensors with values ranging from -1 to 1 (that specify the x... | caffe2 | low | Minor |
346,371,963 | rust | Type Inference not working when indexing with Into<usize> types | I have an `enum Dim { X, Y, Z }` that I've implemented `Into<usize>` for, so I can use it instead of `0, 1, 2`, but I get type inference errors when using it. I've narrowed it down to this playground example.
If you change the last line to `let c: i32 = a[i.into()];` then it gives an error about not knowing the type... | T-lang,T-compiler,A-inference | low | Critical |
346,380,733 | TypeScript | Preserve union type name within larger union | **TypeScript Version:** 3.1.0-dev.20180731
**Code**
```ts
type Value =
| { kind: "number", n: number }
| { kind: "string", s: string };
function f(value: Value | undefined): void {}
f(undefined);
```
**Expected behavior:**
Quick info on `f` shows `function f(value: Value | undefined): void`
... | Suggestion,In Discussion,Domain: Type Display | low | Minor |
346,403,773 | godot | Add eyedropper cursor shape | I don't know if Windows and macOS have it, but cursor themes in GNU/Linux do have an eyedropper cursor shape (at least the ones I tested). | enhancement,topic:core | low | Minor |
346,425,258 | go | crypto/x509: reduce memory usage when parsing system root certs? | I noticed that loading the x509 system roots and parsing their certificates on Linux takes 526kB of memory.
(by making an HTTPS request for the side-effect of loading them: https://play.golang.org/p/re1rB_Ui1nS then hitting pprof)
I suspect have common subfields that might be able to share memory? Or does our sup... | Performance,NeedsInvestigation | low | Minor |
346,435,795 | go | x/tools: suggest sets of build constraints that cover all files in a package | https://golang.org/cl/12703044 added `AllTags` to `*go/build.Package` so that "[t]ools scanning packages can use this to decide how many variants there are and what they are."
Since it's often necessary to invoke `go list` rather than use `go/build` directly, I think the same reasoning applies for adding it to `go l... | NeedsDecision,FeatureRequest | low | Major |
346,444,035 | go | runtime: append is slower than make+assignments for small slices with known length | ### What version of Go are you using (`go version`)?
go1.10.3 linux/amd64
### Does this issue reproduce with the latest release?
Yes.
### What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/opennota/.cache/go-build"
GOEXE=""
GOHOSTARCH="am... | Performance,NeedsInvestigation,compiler/runtime | low | Critical |
346,449,635 | node | [async_hooks] - A possible bug or requirement of clarity? Perhaps another hook needed? | * **Version**: 10.7.0
* **Platform**: OSX
> **Note:** Sorry this got so long but I think it does help to illustrate the flow and process that brought this issue up! Please bare with me as I do feel this may be part of a larger issue at this point?
**Update:** Added a repro [async_hooks_repro](https://github.com... | discuss,async_hooks | low | Critical |
346,510,888 | rust | Properly document and explain opt-levels s and z | These opt-levels have been stabilized in #50265. If I'm not mistaken, `rustc -C help` still outputs this:
```
-C opt-level=val -- optimize with possible levels 0-3, s, or z
```
So not very helpful at all. I think there should be a better explanation for `rustc -C help` (also for levels 0 -- 3). [... | C-enhancement,P-medium,T-compiler,A-docs,C-optimization | low | Critical |
346,587,946 | neovim | :terminal : normal-mode editing for shell prompt | <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`: NVIM v0.3.1
- Vim (version: ) behaves differently? no.
- Operating system/version: Arch linux
- Terminal name/version: Alacritty/0.1.0
- `$TERM`: xterm-256color
### Steps to reproduce using `nvim -u NORC`
```
nvim -u ... | enhancement,terminal | medium | Major |
346,630,893 | pytorch | [Caffe2] MNIST Tutorial LMDB Error "Cannot open db" | ## Issue description
I am trying to learn Caffe2, and am trying to run through the tutorials. For the MNIST tutorial (located here: https://github.com/caffe2/tutorials/blob/master/MNIST.ipynb), I am seeing an error when executing the line `workspace.RunNetOnce(train_model.param_init_net)`. I get:
```
RuntimeErro... | caffe2 | medium | Critical |
346,637,260 | go | doc/install: define minimum supported VCS versions | `cmd/go` shells out to version control binaries to implement `go get`.
[doc/install](https://tip.golang.org/doc/install) currently declares minimum supported OS versions for FreeBSD, macOS, and Windows, but only a minimum kernel version for Linux. Those requirements do not imply any particular version of the support... | Documentation,Proposal,Proposal-Accepted | medium | Critical |
346,737,468 | go | x/text/unicode/norm: reduce init-time memory usage | The golang.org/x/text/unicode/norm package allocs 21.47kB in its init function, regardless of whether the package is ever used.
We should do it lazily, as done in e.g. https://go-review.googlesource.com/c/net/+/127275 and https://go-review.googlesource.com/c/go/+/127075
This would help people who explicitly impor... | Performance,help wanted,NeedsFix | low | Major |
346,762,409 | vscode | Slow when editing a file with very long lines | Issue Type: <b>Performance Issue</b>
### Steps to reproduce
1. Open any text file with longer lines (more than 10k characters).
2. Try to edit the line (remove or add characters in between).
### Observations
- The cursor movement is extremely slow and character updates take place after a long time.
- The ... | bug,freeze-slow-crash-leak,verification-found,tokenization | low | Major |
346,772,733 | flutter | Document relationship between AutomaticKeepAliveClientMixin and addAutomaticKeepAlives | ## Steps to Reproduce
1. Create an app that contains a list view, and add StatefulWidgets as children for this list view. For example:
```dart
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
... | framework,d: api docs,P2,team-framework,triaged-framework | low | Critical |
346,772,833 | rust | Long compile times due to initialization of large struct | <short summary of the bug>
I tried fixing erlepereira/x11-rs#90 with [this patch](https://github.com/fintelia/x11-rs/commit/7d6ee99a5482f3cd5b2eaa1a1402e36ec22111a0) that directly instantiates some (very) large structs via a macro. Unfortunately this change caused compile times to drastically increase. Before a buil... | A-LLVM,I-compiletime,T-compiler,C-bug | low | Critical |
346,785,335 | TypeScript | Return type inference error with async functions and Promise.reject() | **TypeScript Version:** 3.0.1
**Code**
```ts
async function often() {
if (false) {
return Promise.reject();
}
// code
}
let sometimes = often();
sometimes = Promise.resolve();
```
**Actual behavior:**
error TS2322: Type 'Promise<void>' is not assignable to type 'Promise<n... | Bug | low | Critical |
346,805,149 | go | proposal: encoding/xml: add RawXML token | I have recently been experimenting with writing an XML encoder that (given a struct or other similar type) emits `xml.Token`'s instead of bytes. In doing so I discovered that some XML could be encoded using structs that cannot currently be encoded using the `"Encoder".EncodeToken` method and that I couldn't finish my p... | Proposal,Proposal-Hold | medium | Critical |
346,896,399 | TypeScript | No related error spans return for type assignment mismatch | <!-- π¨ 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,Domain: Related Error Spans,Experience Enhancement | low | Critical |
346,901,370 | flutter | Material: Overflow action in AppBar should be narrower | 
| framework,f: material design,a: fidelity,c: proposal,P2,team-design,triaged-design | low | Minor |
346,915,104 | pytorch | error when building caffe2 from source with gcc 7 & cuda gcc 5.5 | The error is:
```
/usr/lib/gcc/x86_64-linux-gnu/5/include/avx512pfintrin.h(127): error: argument of type "void *" is incompatible with parameter of type "const long long *"
/usr/lib/gcc/x86_64-linux-gnu/5/include/avx512pfintrin.h(136): error: argument of type "void *" is incompatible with parameter of type "con... | caffe2 | low | Critical |
346,919,649 | gin | gin-gonic Middleware Unable to set Header | I am trying to create middlware for gin-gonic that automatically adds a UUID for tracing purposes as a Header to all incoming requests, if one does not already exist. The code is below. However I'm having an issue where c.Header() does not seem to set the header. I have tried it with c.Writer.Header().Set() as well and... | question | low | Major |
346,953,850 | godot | Control's Rect Clip Content doesn't rotate when the control is rotated | ___
***Bugsquad note:** This issue has been confirmed several times already. No need to confirm it further.*
___
<!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
v. 3.0.5
**OS/device inclu... | bug,discussion,topic:rendering,confirmed,topic:gui,topic:2d | low | Critical |
347,002,064 | godot | "Always Close Output On Stop" ignored on error | Godot, 64-bit, 3.06.stable.official.8314054
Windows 10 Home, 64-bit, Version 1803, Build 17134.165
In a project that has an error, when I click stop the output window always closes. This happens regardless of how Editor Settings/Run/Output/Always Close Output On Stop is set.
If the project has no error, the s... | bug,topic:editor,usability | low | Critical |
347,046,897 | go | x/text/message: better documentation for catalog | The documentation for this package could be clearer with regard to how catalogs should be used.
Specifically:
* the default catalog is empty.
* how to populate the default catalog (is there a standard way of doing this?)
* document that the default fallback language is English.
Repo commit: b0f49b06765e38644f97d... | Documentation,NeedsInvestigation | low | Major |
347,061,346 | pytorch | torch.utils.data.random_split() returns dataset index as tensor |
## Issue description
`torch.utils.data.random_split()` returns the index of the datapoint (idx) as a tensor rather than a float which messes up the `__getitem__()` routine of the dataset
## Code example
```
class AntsDataset(Dataset):
def __init__(self, root_dir, csv_file, transform=None):
... | module: docs,module: dataloader,triaged | low | Critical |
347,090,090 | go | net/http: no way to set Fetch options when making outgoing http calls with js/wasm | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go version devel +c814ac44c0 Thu Jul 19 21:30:27 2018 +0000 darwin/amd64
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture a... | Thinking,help wanted,FeatureRequest,arch-wasm | medium | Critical |
347,120,206 | pytorch | build error | ## Issue description
Failed to build the caffe2
## Code example
CMake 3.11.3
## System Info
- Caffe2:
******** Summary ********
General:
CMake version : 3.11.3
CMake command : C:/Program Files/CMake/bin/cmake.exe
Git version : v0.1.11-9628-gf908b2b91-dirty
System ... | caffe2 | low | Critical |
347,122,778 | go | x/playground: fails to run program importing every package | Here's a program that empty imports every std package:
https://play.golang.org/p/AgKFdQv1pDV
It runs fine locally on linux/amd64 (13MB binary, 344KB heap alloc), but fails to even compile on the playground.
I get:
```
.dynsym: missing Go type information for global symbol: size 60
go.link.addmoduledata: r... | NeedsInvestigation | low | Critical |
347,127,890 | pytorch | [Feature request] Batch eig/symeig functions (for small matrices, with CUDA) | **Proposed** - add `torch.geevj` and `torch.syevj` calls, which hook into cuSolver's jacobi-based eigensolvers. These functions could operate on matrices or batches of matrices (that are smaller than 32x32).
**Long** - there are two issues:
- For small matrices (e.g. <32x32 matrices), `eig` and `symeig` are much ... | triaged,module: batching,module: linear algebra,function request | low | Major |
347,136,188 | go | all: reduce init-time CPU & memory usage | Tracking bug to reduce init-time CPU & memory usage.
Previously:
https://go-review.googlesource.com/c/go/+/127075 - html: lazily populate Unescape tables
https://go-review.googlesource.com/c/net/+/127275 - http2/hpack: lazily build huffman table on first use
Open:
#26752 - x/text/unicode/norm: reduce init-... | Performance,help wanted | medium | Critical |
347,149,537 | pytorch | [Caffe2] Modelling using Ops instead of Helper Functions | Hi all,
how could I do the LeNet model using only Ops instead of helper functiones like below?
```
from caffe2.python import model_helper, brew
m= model_helper.ModelHelper(name="train_net")
#LeNet model
conv1 = brew.conv(m, 'data', 'conv1', dim_in=1, dim_out=20, kernel=5)
pool1 = brew.max_p... | caffe2 | low | Minor |
347,177,135 | terminal | new lines created below tmux after reducing the bash window | **Please fill out the below information:**
* Your Windows build number: Version 10.0.17134 Build 17134
* What you're doing and what's happening:
- Open a WSL
- launch tmux by executing : tmux (having the normal tmux layout, with the green bar at the bottom) :
 by providing mechanisms to record traces and metrics. Those signals help provide insight int... | Builders,FeatureRequest | low | Critical |
347,209,830 | flutter | Allow usage of system-wide `gradle` for Android builds | There should be an option to use the system-wide gradle instead of the one installed by flutter. There could also be an option to entirely disable using the gradle wrapper. | c: new feature,tool,t: gradle,P3,team-tool,triaged-tool | low | Minor |
347,218,621 | rust | Mention `;` when not expecting statement and finding one in the context of a macro | In a macro context that defines `$rename:stmt`, the parser autoinserts a `;` at the end, but the diagnostic message doesn't mention this:
```
error: expected unsuffixed literal or identifier, found "string-equal";
-->
|
521 | #[serde(rename = $rename)]
| ^^^^^^
...
535 | / m... | C-enhancement,A-diagnostics,P-low,A-macros,T-compiler,D-papercut | low | Critical |
347,221,063 | vscode | API to retrieve a dimensions from a given Terminal instance | VS Live Share extension needs to know current dimensions of a terminal and also to get notified when they're getting changed.
Consider adding a new API to get read-only access to a terminal renderer associated with given terminal instance. | feature-request,api,api-finalization,terminal-layout | low | Major |
347,263,060 | rust | Procedural macro attributes can't be applied to struct fields | Given the simple program:
```rust
#![feature(rust_2018_preview)]
extern crate demo_macros;
use demo_macros::nop;
#[nop]
pub struct Foo {
#[nop]
pub foo_field: u32,
}
#[nop]
impl Foo {
#[nop]
pub fn foo_fn() {}
}
```
And the corresponding definition of the `#[nop]` attribute:
```rust
... | A-macros,T-lang | low | Critical |
347,266,424 | rust | LNK1189 "library limit of 65535 obj exceeded" building rustc | Edit: This happened again after deleting `\build\x86_64-pc-windows-msvc\stage*`, so now I'm more concerned than I was before.
I pulled master today, ran `x.py test --stage 1 --incremental src\test\codegen`, and got the following:
<details>
<summary>(click to expand log of x.py failure)</summary>
```text
C... | A-linkage,A-codegen,P-medium,P-high,T-compiler,O-windows-msvc,E-help-wanted,A-incr-comp,C-bug,WG-incr-comp,E-needs-design | high | Critical |
347,275,706 | TypeScript | Forward compatible type definitions regarding compiler warnings | ## Search Terms
forward compatibility, experimental features, forward compatible, undeclared types, new browser features, warning undeclared overloads
## Suggestion
Currently if a TypeScript `.d.ts` file contains a function overload with an unknown type it doesn't discard the type but rather treats it like the... | Suggestion,Needs Proposal | low | Minor |
347,301,097 | rust | Lint to use existential type when types mismatched on anonymized types(impl Trait) | code snippet from @oli-obk 's slices in https://www.youtube.com/watch?v=ippwMSMLD5Q
```rust
use std::fmt::Display;
fn foo() -> impl Display {
42
}
fn bar() -> impl Display {
99
}
fn main() {
let mut x = foo();
x = bar();
}
```
error:
```
error[E0308]: mismatched types
--> src/mai... | C-enhancement,A-diagnostics,T-compiler | low | Critical |
347,313,841 | rust | Tracking issue for comparing raw pointers in constants | Comparing raw pointers in constants is forbidden (hard error) in const contexts.
The `const_compare_raw_pointers` feature gate enables the `guaranteed_eq` and `guaranteed_ne` methods on raw pointers. The root problem with pointer comparisons at compile time is that in many cases we can't know for sure whether two poi... | T-lang,B-unstable,C-tracking-issue,A-const-eval,S-tracking-design-concerns,S-tracking-needs-summary | low | Critical |
347,353,731 | rust | checked_mul<i128> is slower than expected | checked_mul\<i128> is 200x slower than a normal multiply
checked_mul\<u128> is 10x slower than a normal multiply
Toolchain version according to rustup:
```
active toolchain
----------------
nightly-x86_64-unknown-linux-gnu (default)
rustc 1.30.0-nightly (7e8ca9f8b 2018-08-03)
```
benchmark:
```rust
#... | A-LLVM,I-slow,T-compiler | low | Major |
347,354,201 | flutter | Server Side Layout Definition | I'm thinking of dynamic layouts, which customer can change the layout of their application whenever they want to.
So I thought of a "**layout definition protocol**" using **json**.
The problem is with the **reflection support in flutter**.
LDP example
```
Map decodedJson = {
"cname": "Text",
"args"... | c: new feature,framework,would be a good package,P3,team-framework,triaged-framework | low | Minor |
347,402,935 | TypeScript | Compiler API allow custom options in parseCommandLine/ConfigFile | ## Search Terms
parser options compiler api
## Suggestion
Add a way to pass additional custom options to the CLI Parser.
## Use Cases
We currently work on a tool transpiling Typescript to Lua.
This works by doing the type checking via the compiler API.
And then transpiling the AST to Lua instead of JS.... | Suggestion,Awaiting More Feedback | low | Critical |
347,402,976 | go | crypto/cipher: BlockMode and HSMs | I am a maintainer of a Go package which provides access to keys held in PKCS#11 HSMs to Go programs, using (as far as possible) native Go crypto APIs.
For asymmetric keys, this was a pleasant experience. It was straightforward to expose ECDSA keys via [crypto.Signer](https://golang.org/pkg/crypto/#Signer). The inter... | NeedsInvestigation | low | Critical |
347,403,564 | angular | Angular converts schema.org properties to lower case when loading a component via router-outlet | <!--
PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION.
ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION.
-->
This is my first issue so please let me know if there is anything missing.
## I'm submitting a...
<!-- Check one of the following options with ... | type: bug/fix,freq1: low,area: core,state: confirmed,core: dynamic view creation,P4 | low | Critical |
347,405,049 | TypeScript | Replace any by unknown in definition files | Since the new `unknown` type was added, it makes sense to replace a lot (if not all) usage of `any` in the definition files with `unknown`. For example:
```typescript
Array.isArray(a: unknown): a is unknown[];
JSON.parse(a: string): unknown;
```
However, this change will cause many errors in projects currently... | Suggestion,Awaiting More Feedback | high | Critical |
347,411,824 | TypeScript | Further improve mapped type support for tuples and arrays (almost complete Promisify<T> inside!) | Now that #26063 is merged (which is great BTW), I was toying around with an alternate solution to https://github.com/Microsoft/TypeScript/issues/1360 or https://github.com/Microsoft/TypeScript/issues/25717. The basic idea is to take the parameter list of a NodeJS callback style API as a tuple and generate two other typ... | Suggestion,In Discussion | low | Critical |
347,450,129 | go | cmd/go: cache not invalidated if testdata files are changed while the test is running | I was editing `cmd/go/testdata/mod_test.txt` for #26722, and saw an unexpected `(cached)` test result.
I run tests pretty aggressively while editing, so I suspect that I saved the file while a previous test run was in progress. We appear to have cached the result based on the contents of the `testdata` directory aft... | NeedsInvestigation | low | Critical |
347,507,745 | pytorch | [Caffe2] Build failure on Ubuntu 16.04 | ## Issue description
Provide a short description.
When I follow the directions on https://tech.amikelive.com/node-706/comprehensive-guide-installing-caffe2-with-gpu-support-by-building-from-source-on-ubuntu-16-04/
I got some targeting missing complain when I did "cmake .."
The build failed with the info:
```
... | caffe2 | low | Critical |
347,549,711 | go | x/build: add Fedora builder | We have a Debian-sid builder. Also add Fedora?
Would've helped with https://go-review.googlesource.com/c/go/+/127895 (for #26369)
| help wanted,Builders,FeatureRequest,new-builder | low | Major |
347,552,251 | rust | Allow destructuring parameters in trait function declarations | The current syntax rules do not allow for trait functions to destructure parameters:
```
#![allow(unused)]
// This works
fn foo((x, y): (i32, i32)) {
}
trait Bar {
// This does not work
fn bar((x, y): (i32, i32));
}
```
[Playground](https://play.rust-lang.org/?gist=ce092e0146354cbbf09319117a70676... | C-feature-request | low | Critical |
347,559,848 | rust | MetaItem fails to parse global paths | ```rust
#[my_attr(::foo::bar)]
```
Does not parse as a `MetaItemKind::List` if the first element begins with a `::`. If you remove the leading `::` it parses correctly. | A-attributes,A-parser,T-compiler,C-bug | low | Minor |
347,590,196 | pytorch | [Caffe2] AVX not enabled for pytorch/caffe2 | ## Issue description
1. pytorch's CMakeLists.txt and change Line 113
option(USE_NATIVE_ARCH "Use -march=native" ON)
2. Source code compilation of pytorch
export CMAKE_PREFIX_PATH=/Users/llv23/miniconda3
MACOSX_DEPLOYMENT_TARGET=10.13 CC=clang CXX=clang++ python setup.py install
also try with
cmake -DUSE_... | caffe2 | low | Critical |
347,604,982 | godot | Line edits in settings config dialog resets cursor position on save. | **Godot version:**
3.1-dev
**OS/device including version:**
Fedora 28 64-bit
**Issue description:**
When typing into a line edit in the settings editor (such as "exec_flags" for external editor) and pause, the settings config dialog will call _settings_save and rebuild the UI causing the cursor to start at... | bug,topic:editor,usability | low | Major |
347,609,694 | flutter | Text/TextSpan superscript on top (like HTML ruby tag) for phonetic pronunciations | <!-- Thank you for using Flutter!
Please check out our documentation first:
* https://flutter.io/
* https://docs.flutter.io/
If you can't find the answer there, please consider asking a question on
the Stack Overflow Web site:
* https://stackoverflow.com/questions/tagged/flutt... | c: new feature,framework,engine,a: typography,P2,team-engine,triaged-engine | low | Critical |
347,647,550 | flutter | fit: BoxFit.cover : gets applied to FadeInImage's placeholder | when i use fit: BoxFit.cover in FadeInImage.assetNetwork the BoxFit.cover gets applied to the image and the placeholder is that an Intended behaviour? Is it possible to apply it only to the image and not to the placeholder?
Flutter (Channel beta, v0.5.1, on Mac OS X 10.13.6 17G65, locale en-US) | c: new feature,framework,P2,team-framework,triaged-framework | low | Major |
347,651,597 | godot | Calling base `_init` yields confusing error | Godot 3.0.6
Windows 10 64 bits
```gdscript
class Test:
func _init(a, b, c, d):
print("Test ", a, b, c, d)
class TestDerived extends Test:
func _init(a, b, c, d):
._init(a, b, c, d)
print("TestDerived ", a, b, c, d)
```
Try instancing `TestDerived`, it will fail at calling the base `_init`:
```... | enhancement,topic:gdscript,usability | low | Critical |
347,654,420 | neovim | teardown: race between options setup and exit_event | Sometimes the asan CI job fails like this (e.g. [here](https://github.com/neovim/neovim/pull/7813#issuecomment-380949586) and [here](https://github.com/neovim/neovim/pull/8088#issuecomment-376312511)):
```
= =================================================================
= ==16820==ERROR: AddressSanitizer: SEGV ... | bug,test,event-loop | low | Critical |
347,679,028 | go | runtime: defer/recover support in race detector | Hi Go Devs,
I've noticed a strange memory leak when running my Go program with the [Race Detector](https://golang.org/doc/articles/race_detector.html). The program is an ad-hit tracker, it receives data from RabbitMQ and writes them down to the database. When there are errors in the DB, the program leaks memory (the... | RaceDetector,NeedsInvestigation | medium | Critical |
347,687,366 | rust | Generalize StableHashingContext as a trait | ### Background
PR #52475 improves the infinite loop detection algorithm during compile time evaluation, the algorithm relies on `HashStable` to detect whether two evaluation contexts are potentially identical as an optimization to avoid unnecessarily cloning the entire evaluation context.
### The Problem
The curre... | C-enhancement,T-compiler,A-const-eval | low | Minor |
347,706,970 | youtube-dl | VVVVID not supported anymore | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`)
- Use the *Preview* tab to see what your issue will actually look like
... | geo-restricted | low | Critical |
347,710,891 | flutter | Material Stepper navigation customization | There's no way to manipulate the "Continue" and "Cancel" buttons in Material Stepper. If the developer want to control Stepper navigation in another way, it's not possible to turn the default navigation on/off nor to hook into Continue and Cancel buttons to control its behavior.
I did a patch for a specific project,... | c: new feature,framework,f: material design,P3,team-design,triaged-design | low | Minor |
347,723,931 | go | x/build/cmd/gopherbot: add author to issue notification comments | gopherbot generates the "CL mentions this issue" issue comments:
https://github.com/golang/build/blob/4639cd3919e4243a672a11a56543004bf1778326/cmd/gopherbot/gopherbot.go#L811
It currently includes a link to the CL and the CL title. It'd be nice if it also included the CL author's name or handle. Maybe: "Change `<... | help wanted,Builders,NeedsFix,FeatureRequest | low | Major |
347,735,729 | rust | Segfault in rustc while cross-compiling core | I'm trying to compile the kernel code from [japaric/nvptx](https://github.com/japaric/nvptx) to PTX. This requires cross-compiling the `core` crate. When I run the command to do this, `rustc` crashes with a segfault. I'm using `cargo-xbuild` because `xargo` doesn't seem to work anymore.
` cargo xbuild --target nvptx... | I-crash,T-compiler,O-NVPTX,C-bug | low | Critical |
347,814,382 | scrcpy | Ninja build fails when server build folder is globally overriden | There is possibility to set build directory for gradle projects globally so build artifacts may be stored in other place. (see project.buildDir from https://docs.gradle.org/current/userguide/writing_build_scripts.html). As result path to server apk file in server/scripts/build-wrapper.sh script is invalid.
Reproduc... | build | low | Minor |
347,817,395 | pytorch | [Caffe2] I don't knw whether GPU support is right, is there something wrong with Hypothesis? | ## Issue description
I install Caffe2 based on the website:
https://caffe2.ai/docs/getting-started.html?platform=ubuntu&configuration=compile
After command 'sudo make install -j20' is finished, i type:
cd ~ && python -c 'from caffe2.python import core' 2>/dev/null && echo "Success" || echo "Failure"
Then, the... | caffe2 | low | Critical |
347,825,275 | rust | noalias is not enough | Somebody on the internet (https://blog.dend.ro/rust-and-the-case-of-the-redundant-comparison/) complained that something like this:
```rust
fn vec_clear(x: &mut i32) {
if *x != 0 {
*x = 0;
}
}
```
generates a conditional store:
```asm
cmpl $0, (%rdi)
je .LBB0_2
mov... | A-LLVM,I-slow,C-enhancement,A-codegen,T-compiler,C-optimization | low | Major |
347,833,192 | pytorch | [Caffe 2] How to access/remove Blobs from Workspace? | I'm using the Python version of Caffe2 (inside the docker image caffe2/caffe2:snapshot-py2-cuda9.0-cudnn7-ubuntu16.04).
I loaded a pre-trained ResNet50 from models into Workspace and I would like to re-train it on my own dataset.
In order to do that, I need to remove/modify some layers -- how do I do it via Python ... | caffe2 | low | Minor |
347,957,059 | kubernetes | Allow setting of Hostname also when PodSpec.HostNetwork is true | **Is this a BUG REPORT or FEATURE REQUEST?**:
/kind feature
**What happened**:
Based on the [Documentation](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.11/#podspec-v1-core)
> Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.
... | sig/network,sig/node,kind/feature,help wanted,triage/accepted | medium | Critical |
347,972,972 | electron | The `app.relaunch()` API is confusing | **Is your feature request related to a problem? Please describe.**
It's confusing that you first have to do `app.relaunch()` and then `app.quit()` or `app.exit()`, since `relaunch()` makes you think it will, you know, relaunch.
**Describe the solution you'd like**
It should be made more clear that you're only ... | enhancement :sparkles: | low | Major |
348,017,718 | You-Dont-Know-JS | ToPrimitive Abstract operation clarification | ## Book: Types & Grammar
### Chapter 4: Coercion
**ToString** subchapter says:
"But as shown earlier, if an object has its own toString() method on it, and you use that object in a string-like way, its toString() will automatically be called, and the string result of that call will be used instead.
Note: The wa... | for second edition | medium | Minor |
348,025,785 | go | x/sys/windows/registry: way to get ACL | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
Go 1.10.3
### Does this issue reproduce with the latest release?
### What operating system and processor architecture are you using (`go env`)?
GOHOSTARCH=amd64
GOHOSTOS=windows
##... | help wanted,OS-Windows,NeedsInvestigation,FeatureRequest | low | Critical |
348,032,383 | go | cmd/go: pass information on incompatible versions to consuming modules | Consider the following case where you have an app with a dependency on a module (modA) that has a dependency on another module (modB).
App --> modA --> modB
modB is released with a bug. For the examples sake, the bug causes goroutines to not be garbage collected and the number to continue to grow. This bug has be... | NeedsInvestigation,modules | medium | Critical |
348,033,596 | TypeScript | Setting noErrorTruncation to false truncates inferred type of variables/functions; which are not errors | <!-- π¨ 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 | high | Critical |
348,051,866 | react | Support cross-renderer portals | Currently `createPortal` only works within the current renderer.
This means that if you want to embed one renderer into another (e.g. `react-art` in `react-dom`), your only option is to do an imperative render in a commit-time hook like `componentDidMount` or `componentDidUpdate` of the outer renderer's component. I... | Type: Feature Request,Type: Big Picture,Component: Reconciler,React Core Team | medium | Critical |
348,060,849 | TypeScript | Conditional type doesn't narrow primitive types | <!-- π¨ 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 |
348,070,759 | You-Dont-Know-JS | Wrong reference | ## Book: Types & Grammar
### Chapter 4: Coercion
**ToNumber** subchapter says:
"ToNumber for a string value essentially works for the most part like the rules/syntax for numeric literals (see Chapter 3)."
But **Numeric Syntax** is explayned in the Chapter 2, not in the Chapter 3. | for second edition | medium | Minor |
348,074,954 | godot | NodePath export for children node crashes the debugger without any information | **Godot version:**

**OS/device including version:**
Windows
**Issue description:**
When exporting a NodePath in a node then assigning a children to it in the inspector, if the children also expo... | bug,topic:editor,confirmed | low | Critical |
348,091,467 | TypeScript | Proposal: Partial Type Argument Inference | After exploring the concept in #23696, we've come to the conclusion that implicitly making type arguments available by name would unnecessarily expose previously unobservable implementation details. As such, I'll be breaking that proposal down into two parts. One is just the partial inference (which is here), which can... | Suggestion,Needs Proposal | high | Critical |
348,094,638 | rust | hits llvm assertion "Cannot start a running timer" when timing passes | build config:
````diff
--- config.toml.example 2018-08-06 21:33:10.482203459 +0200
+++ config.toml 2018-08-06 21:33:07.098838544 +0200
@@ -25,7 +25,7 @@
#release-debuginfo = false
# Indicates whether the LLVM assertions are enabled or not
-#assertions = false
+assertions = true
# Indicates whether ccache is... | A-LLVM,T-compiler | low | Critical |
348,108,072 | flutter | Would like a way to have an isolate which does not provide `dart:io` | customer:dream has asked for the ability to launch an isolate without providing it access to dart:io.
Similarly @sbaranov mentions that if we ever implement https://github.com/flutter/flutter/issues/14330 for iOS, that may also require such a boundary to comply with store guidelines. | c: new feature,engine,dependency: dart,customer: dream (g3),P2,team-engine,triaged-engine | low | Minor |
348,184,688 | rust | rustdoc disregards job limit | When running doctests (via `cargo doc` or `cargo test`) rustdoc will compile each doctest separately, keeping a queue of compilation jobs. Maximum size of the queue seems to be limited to the number of CPUs in the system, but there seems to be no way to adjust that via command line or other configuration (`--jobs N` is... | T-rustdoc,A-libtest,A-doctests | low | Major |
348,278,556 | nvm | Recommend to autoremove | I suggest to add a feature similar to autoremove from apt-get.
On install of a new version it could suggest to run autoremove. When doing so it should ask what Node.js versions should be removed e.g., all but the latest of each major; all but the latest; all but versions below the current default.
Besides that it... | feature requests | low | Minor |
348,302,636 | pytorch | [feature request] Runtime warning for inappropriate labels (among others) | While you can get an exception when passing integers where floats are required, I believe there are no checks that actually make sure that you are using the expected **values** within your tensors. In turn, this makes tracking problems in your models a bit more challenging.
For instance, when using [`nn.CosineEmbedd... | module: loss,module: error checking,triaged | low | Critical |
348,304,004 | go | proposal: x/crypto/ssh: new callbacks to Config and error type | ### What version of Go are you using (`go version`)?
1.9.4 (but it doesn't matter, this isn't in the stdlib yet)
### Does this issue reproduce with the latest release?
Yes.
### What operating system and processor architecture are you using (`go env`)?
Doesn't matter.
### What did you do?
I'm trying to ge... | Proposal,Proposal-Crypto | low | Critical |
348,309,905 | rust | Unused trait bound with lifetime causes compile error | ## Summary
### What happens
* Unused trait bound causes compile error.
+ In non-(3c) case, `Into::<Arc<B>>::into()` is completely unused, but `&'a B: Into<Arc<B>>` causes compile error.
+ I think this may be a compiler issue.
* With either of these small modifications, they successfully compile.
+ C... | A-trait-system,T-compiler | low | Critical |
348,336,871 | TypeScript | createProgram calls host.getSourceFile multiple times | <!-- π¨ 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... | Docs | low | Critical |
348,342,334 | TypeScript | Refactor "move to function in module scope" moves function past the following variable declaration | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.1.0-dev.20180807
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** refactor function module
**Code**
```ts
import "fs";
... | Bug,Help Wanted,Domain: Refactorings | low | Major |
348,408,710 | pytorch | [Caffe2] ConvPoolOpBase operator | Hello all,
can you please provide an example showing **how to set the ConvPoolOpBase operator** (which provides the stride and kernel size, or the pads' sizes in each direction) to be able to use the MaxPool and Conv operators for network modelling? It would be nice to have a reference for it since I haven't found a... | caffe2 | low | Minor |
348,428,683 | TypeScript | In JS, extra circular reference errors when referring to a missing property on `module` | I think this error is wrong, a result of #26236 combined with (probably) #25732. Here's a repro based on lodash:
```
var freeModule = module.nodeType;
var Buffer = module.nodeType ? root.Buffer : undefined;
/**
* Creates a clone of `buffer`.
*
* @private
* @param {Buffer} buffer The buffer to clone.
... | Bug | low | Critical |
348,445,342 | angular | Calling platformBrowserDynamic a second time silently ignores extraProviders | ## I'm submitting a...
<pre><code>
[x] Bug report
</code></pre>
## Current behavior
```js
platformBrowserDynamic().bootstrapModule(ModuleOne);
platformBrowserDynamic([
{
provide: 'myValue',
useValue: 'something',
}
]).bootstrapModule(ModuleTwo)
```
Both applications are boots... | hotlist: error messages,freq1: low,area: core,core: di,core: bootstrap,type: confusing,P5 | low | Critical |
348,453,027 | flutter | Multiple GlobalKey error hard to debug | Having the same GlobalKey appear in multiple places in the tree currently throws an error like
```
flutter: The following assertion was thrown building DefaultTextStyle(inherit: true, color:
flutter: WidgetX
flutter: Multiple widgets used the same GlobalKey.
flutter: The key [GlobalKey#206b5] was used by mult... | framework,a: debugging,c: proposal,a: error message,P2,team-framework,triaged-framework | low | Critical |
348,480,646 | TypeScript | Class method autocompletions not working properly on class with mixins | _From @Floriferous on August 6, 2018 20:25_
When composing a class together through mixins, the intellisense autocompletion does not work properly:
```js
// @flow
/* eslint-env mocha */
import { expect } from 'chai';
import { compose } from 'recompose';
class RootCalculator {
constructor() {
this.ini... | Bug | low | Major |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.