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 |
|---|---|---|---|---|---|---|
377,029,804 | go | go/types: problem with alias type | The following code
```Go
package p
type F = func(T)
type T interface {
m(F)
}
type t struct{}
func (t) m(F) {}
var _ T = &t{}
```
doesn't type-check:
```
y.go:13:11: cannot use &(t literal) (value of type *t) as T value in variable declaration: wrong type for method m
```
but the code is corre... | NeedsInvestigation,early-in-cycle | low | Major |
377,040,658 | rust | Matching on four consecutive bytes not optimized to matching on unaligned u32 | [Godbolt link](https://rust.godbolt.org/z/zmalWt)
Input
```rust
pub fn check(buf: &[u8]) -> bool {
if buf.len() < 4 {
return false;
}
match (buf[0] | 0x20, buf[1] | 0x20, buf[2], buf[3]) {
(b'a', b'b', b'+', b'-') => {
true
},
_ => {
false
}
... | A-LLVM,I-slow,T-compiler | low | Minor |
377,059,190 | rust | Support for Moxie Virtual CPU | I would like to build a project that runs on the [Moxie Virtual CPU](http://moxielogic.org/blog/pages/about.html) which runs a PowerPC. Moxie has a complete GNU toolchain for C/C++ development. Furthermore there is already a target `powerpc-unknown-linux-gnu` which seems applicable to this situation.
My question is ... | A-LLVM,T-compiler,C-feature-request | low | Major |
377,089,533 | godot | Usability issues with AudioStreamPlayer3D attenuation model | From the few times I had to use `AudioStreamPlayer3D`, I faced several annoyances that I believe could get improvements, in particular with the attenuation model.
In frameworks and engines I used in the past, the attenuation model of a 3D sound has the following features:
- A minimum radius under which no attenuati... | enhancement,discussion,topic:editor,usability | medium | Major |
377,104,337 | opencv | HoughCircles: Unknown exception | I'm using [`4.0.0-beta`](https://opencv.org/releases.html) using the Java bindings. A user has reported the following exception when using the `HoughCircles` method:
```
Caused by: java.lang.Exception: unknown exception
at org.opencv.imgproc.Imgproc.HoughCircles_0(Native Method)
at org.opencv.imgproc.Imgproc.Ho... | priority: low,category: java bindings,incomplete,needs reproducer,needs investigation | low | Critical |
377,188,245 | go | proposal: cmd/go: add module repository health check tool | <!-- 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?
n/a
### What operating system and processor architecture ar... | Proposal,GoCommand,modules | low | Critical |
377,189,651 | go | proposal: spec: language: make slices of constant strings constant if the indexes are constant | This will probably be assigned a Go2 label, although I think that it could be done during Go 1.
Consider multiline string constants:
```go
const multiline = `
This is a long text
that spans multiple lines
and then ends.
`
```
If you feed this text to a parser and it finds a problem on the first line ("Th... | LanguageChange,Proposal,LanguageChangeReview | medium | Critical |
377,247,428 | vscode | [scss] rename not working for placeholder selectors | <!-- 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.28.2
- OS Version: Windo... | feature-request,css-less-scss | low | Minor |
377,289,957 | TypeScript | Changing single-line JSDoc comments to multiline requires unnecessary edits | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.1.3
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** jsdoc multiline
**Code**
```ts
/** |Foo */
```
1. Press <kbd>E... | Suggestion,In Discussion,Domain: TSServer | low | Minor |
377,353,932 | flutter | [google_maps_flutter] How to customize infoWindowText in marker | I'm making a google maps for my android apps with custom infoWindowText.
I want to change the color, border, or add an image in the infoWindowText.
please help me | c: new feature,customer: crowd,p: maps,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | medium | Critical |
377,440,465 | react | useCallback() invalidates too often in practice | This is related to https://github.com/facebook/react/issues/14092, https://github.com/facebook/react/issues/14066, https://github.com/reactjs/rfcs/issues/83, and some other issues.
The problem is that we often want to avoid invalidating a callback (e.g. to preserve shallow equality below or to avoid re-subscriptions... | Component: Hooks,React Core Team | high | Critical |
377,458,071 | godot | File browser type icon should be bigger on files that do not support a preview | **Godot version:**
3.1 alpha
**Issue description:**
The type icon for the files in the inspector is generally small. This is good for files that support a preview ( scripts, tscn, models) but for other type of files (saved animations) it is very small and requires more effort to be seen
**Proposal:**
When a ... | enhancement,topic:editor,usability | low | Minor |
377,547,462 | go | cmd/compile: can't break on inlined function | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version devel +e72595ee0f Mon Nov 5 19:10:33 2018 +0000 linux/amd64
</pre>
(latest master)
### Does this issue reproduce with the latest release?
Yes.
### What operating system and processor architecture are you using (`go env`)?... | NeedsInvestigation,compiler/runtime | low | Critical |
377,568,137 | TypeScript | Report `noImplicitThis` errors as suggestions when `noImplicitThis` is off | Title. Inspired by [this comment.](https://github.com/Microsoft/TypeScript/pull/28299#discussion_r230537698) | Suggestion,Committed,Domain: Error Messages | low | Critical |
377,580,587 | flutter | Support creation of add-to-app modules in Swift | `flutter create -t module` templates are missing the following:
- [x] The profile build configuration has an incorrect unique identifier reference to `Release.xcconfig` - copy paste issue.
- [ ] Swift language support. The templates currently only create ObjC variants, even if `-i swift` is passed on the command l... | platform-ios,tool,a: existing-apps,P3,team-ios,triaged-ios | low | Major |
377,590,906 | go | x/build/revdial: race detected during execution of TestConnAgainstNetTest test | ### 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 are you using (`go env`)?
<details><summary><code>go env</code> Output</summa... | Testing,help wanted,Builders,NeedsInvestigation | low | Critical |
377,606,906 | scrcpy | Ctrl+Key shortcuts not working (Linux) | Just built from scrcpy-9999.ebuild. Ctrl+Key shortcuts not working, instead it acting like plain key is pressed (i.e. `Ctrl+V` entering **v** letter in input field). | input events,shortcuts | low | Major |
377,627,938 | angular | ActivatedRoute data loaded from other route when using same component for multiple lazy routes | # π bug report
### Affected Package
This issue happens with latest @angular/angular
### Is this a regression?
No
### Description
When I use the same component in multiple lazy-loaded routes, the `data` is loaded from the wrong route definition. Please see the stackblitz.
## π¬ Minimal Reproduction
... | type: bug/fix,freq2: medium,area: router,state: confirmed,router: lazy loading,router: guards/resolvers,P3 | low | Critical |
377,629,200 | kubernetes | Allow forcing a put even when metadata.resourceVersion mismatches | atm when the resourceVersion mismatches kubectl pulls the latest and then retries, which is pointless since it just does the same request after
our usecase is similar, using the api to PUT the expected state, not caring for what the cluster thinks it is ... but we still get `metadata.resourceVersion: Invalid value` er... | sig/api-machinery,lifecycle/frozen | medium | Critical |
377,633,784 | pytorch | caffe2: RuntimeError: [enforce fail at reshape_op.h:110] with Alexnet onnx test with cuda | ## π Bug
we are seeing an intermittent failure in the reshape_op when trying to run the EXAMPLE: END-TO-END ALEXNET FROM PYTORCH TO CAFFE2.
```
Traceback (most recent call last):
File "/tmp/test.py", line 35, in <module>
outputs = rep.run(np.random.randn(10, 3, 227, 227).astype(np.float32))
File "/opt/... | caffe2 | low | Critical |
377,634,042 | TypeScript | React function-returning-component regression | **TypeScript Version:** 3.2.0-dev.20181103
**Code**
```ts
import React = require("react");
declare function F(): C;
class C extends React.Component<{ title?: string }> {}
<F title="My Title" />
```
**Expected behavior:**
No error, as in ts3.1.
**Actual behavior:**
```
src/a.tsx:4:2 - error TS23... | Bug,Domain: JSX/TSX | low | Critical |
377,641,112 | TypeScript | [1.28.2] Refactor renaming class-method not renaming bind(this) assignments (Javascript) | - VSCode Version: 1.28.2
- OS Version: Windows 10
Steps to Reproduce:

1. Refactor-rename class method (by hitting F2 to rename)
2. VS Code has not renamed the first methodname ... | Bug,Domain: Refactorings | low | Minor |
377,642,397 | TypeScript | TypeScript doesn't allow event : CustomEvent in addEventListener | I'm using Visual Studio Code - Insiders v 1.29.0-insider
In my TypeScript project, I'm trying to write the following code:
buttonEl.addEventListener( 'myCustomEvent', ( event : CustomEvent ) => {
//do something
} );
The problem is that the CustomEvent type gives me the error shown below. If I ... | Domain: lib.d.ts,Needs Investigation | high | Critical |
377,643,529 | TypeScript | The 'Convert to ES6 Module' in the TS language support has an aftereffect. | Issue Type: <b>Bug</b>
I chose the IntelliSense 'Convert to ES6 Module' at the import statement, then I generated it, but failed. If I don't convert, it runs fine. I think the convert of IntelliSense should be equivalent, at least the result should not cause a error.
```javascript
var commandExists = require("co... | Suggestion,Awaiting More Feedback | low | Critical |
377,656,596 | TypeScript | Error message on JSX in .ts file should suggest using .tsx | **TypeScript Version:** 3.2.0-dev.20181103
**Code**
```ts
<div></div>;
```
**Expected behavior:**
Error message tells me to change the file extension to `.tsx`.
**Actual behavior:**
Error message says `Cannot find name 'div'.`, which makes me think I have to install `@types/div` or something. | Suggestion,Domain: Error Messages,Experience Enhancement | low | Critical |
377,661,075 | flutter | Can't determine the location of a long/double tap | If a `DoubleTapGestureRecognizer` won in the gesture arena, there's no equivalent of a forced flushing of a `onTapDown` like for `TapGestureRecognizer` to get the location of the double tap.
Similarly, `LongPressGestureRecognizer`'s `onLongPressUp` doesn't provide a location like `TapGestureRecognizer.onTapUp` | c: new feature,framework,f: gestures,c: proposal,P2,team-framework,triaged-framework | low | Minor |
377,671,740 | go | cmd/cgo: []byte argument has Go pointer to Go pointer | With Go 1.11 and HEAD: `go version devel +a2a3dd00c9 Thu Sep 13 09:52:57 2018 +0000 darwin/amd64`, the following program:
```
package main
// void f(void* ptr) {}
import "C"
import (
"compress/gzip"
"unsafe"
)
type cgoWriter struct{}
func (cgoWriter) Write(p []byte) (int, error) {
ptr := unsafe.... | NeedsFix | low | Critical |
377,681,155 | create-react-app | Svg will crack when import with ReactComponent | I have several needs to hover a button and change color of the svg path stroke/fill
It will work perfectly most of time I use it as a component can assign a classname.
While sometimes the svg image will crack and I sure it is complete when I use it as <img src=...>
I think it is a bug, thanks for help
FYI svg ... | issue: needs investigation | medium | Critical |
377,681,197 | go | proposal: spec: express pointer/struct/slice/map/array types as possibly-const interface types | I propose that it be possible to express pointer, struct, slice, map, and array types as interface types. This issue is an informal description of the idea to see what people think.
Expressing one of these types as an interface type will be written as though the non-interface type were embedded in the interface typ... | LanguageChange,Proposal,LanguageChangeReview | high | Critical |
377,694,640 | node | discussion: put subsystem, team and label metadata in file(s) in this repo | Right now there are multiple places that somewhat capture the label and subsystem metadata in this repo:
In core-validate-commit:
https://github.com/nodejs/core-validate-commit/blob/4e64157b6a87267fd4b9f0598159eeb968e04e21/lib/rules/subsystem.js#L5-L68
In github-bot:
https://github.com/nodejs/github-bot/blo... | discuss,meta | low | Major |
377,708,677 | vscode | [theme] inspect tool for workbench colors | Issue Type: Feature Request
Relevant Issues: There was one but I'm unable to find it, this is an idea to perhaps explore it. Maybe the bot can find it.
## Live Editor Theming
The original issue puts forward the idea of live editing a theme, such that when a change is applied, it's applied automatically without rel... | feature-request,themes | low | Major |
377,725,748 | godot | Some shortcuts on macOS don't work | **Godot version:**
3.0.6
**OS/device including version:**
mac os x, "High Sierra", Version 10.13.6 (17G2307)
**Issue description:**
I'm facing the issue that some shortcuts on my mac don't work though they are configured in the editor settings as shortcuts.
Examples of working and not working shortcuts::
... | bug,platform:macos,topic:editor,confirmed | medium | Major |
377,739,572 | TypeScript | Annoyingly useless Symbol completions | ```ts
""./**/
```

I guess the way I think about it, element access completions are pretty uncommon and should be considered lower-priority; and yet, they're the top item I'm given in a completion list. I... | Bug,Help Wanted,Effort: Moderate,Domain: Completion Lists | low | Minor |
377,751,819 | TypeScript | API: Allow passing TypeScript.SourceFile / AST directly to transpileModule | <!-- π¨ STOP π¨ π¦π§π’π£ π¨ πΊπ»πΆπ· π¨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section.
-->
## Search Terms
transpileModule directly AST SourceFile source performance
<!... | Suggestion,In Discussion,API | low | Critical |
377,756,413 | flutter | flutter build apk / flutter install hangs on emulator created by flutter | ## Steps to Reproduce
1. Create an android emulator via flutter: flutter emulator --create (I have to edit the config slightly as per https://github.com/flutter/flutter/issues/23988)
2. Launch the emulator: flutter emulator --launch flutter_emulator
3. Create application: flutter create flutter_build_apk_test
4.... | c: crash,platform-android,tool,P2,team-android,triaged-android | low | Critical |
377,777,480 | vscode | Regex replace in a large file clears an "innocent" line following a block of affected lines | Dear friends,
replacing a regex in a small file works fine, whereas doing so on a large file (originally 5.5M lines) results in incorrect behaviour 100% of time.
I have tried the steps below with the current VSCode release, the insiders build, and again the current release with extensions disabled, all on Win10 w... | bug,editor-find | low | Minor |
377,792,634 | TypeScript | Using createProgram outside node environment throws unhelpful exception message | When running `createProgram` from inside my angular app I'm thrown the 'ts.sys is undefined' error. This error is not helpful since I'm not given the reason for it. It took me a lot of time researching and eventually a question on SO (https://stackoverflow.com/questions/52969177/typescript-createprogram-throwing-ts-sys... | Suggestion,In Discussion,API | low | Critical |
377,795,917 | go | cmd/go: go list -m -json output changes if module version supplied | <!-- 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 ar... | NeedsInvestigation,GoCommand,modules | low | Critical |
377,827,547 | electron | Too inconvenient to do conditional menu items using the menu template builder | **Is your feature request related to a problem? Please describe.**
I previously opened https://github.com/electron/electron/issues/13754, but instead of going with my preferred solution of filtering out falsy values, they went with strict type checking, which is fine, but it also means it's very inconvenient to do i... | enhancement :sparkles: | low | Major |
377,892,534 | vscode | API should support to create a folder | feature-request,api,file-io,workspace-edit | low | Major | |
377,906,583 | flutter | Keyboard submit is off the screen on android Wear 2 device. | Problem is on an Android Wear app, mobile is fine.
There is no way to enter any input, as when the keyboard appears, submit is off the screen. Example...
```dart
return MaterialApp(
home: Scaffold(
body: new TextField(
keyboardType: TextInputType.multiline,
maxLines: null,
)... | a: text input,e: device-specific,platform-android,framework,engine,f: material design,a: fidelity,a: layout,has reproducible steps,P3,team-design,triaged-design,found in release: 3.22 | low | Major |
377,909,268 | neovim | :terminal command to jump between prompts | I think a pretty nice feature of the terminal mode (`:terminal`) would be the possibility to jump between prompts, when being in normal mode in the terminal buffer.
E.g. my window looks like so:
```
+-------------------------------------------------------------------------+
|$ ls ... | enhancement,terminal | medium | Major |
377,913,538 | TypeScript | NonNullable isn't narrowing down object values' types for optional properties | <!-- π¨ 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: Mapped Types,Experience Enhancement | medium | Critical |
377,924,286 | TypeScript | Introduce the opposite of the non-null assertion | ## Search Terms
non-null assertion opposite
## Suggestion
The opposite of the "non-null assertion", used to force the compiler to believe that something may be undefined.
The most obvious syntax would be a "?" postfix operator, similar to how the non-null assertion is a "!" postfix operator. This would be c... | Suggestion,Awaiting More Feedback | low | Minor |
377,935,770 | vue | vnode reference to original component (reopened) | ### What problem does this feature solve?
Because we have to have lots of ads on our site we cannot hydrate our SSR'd page with VUE completely as the ads would break VUE. Also most of our site ist static and it would be stupid to ship our entire app for only some parts of our page being interactive.
Instead we **pa... | feature request | low | Minor |
377,949,732 | TypeScript | infer-from-usage codefix should mark parameters as optional | ## Search Terms
codefix infer from usage optional parameter
## Suggestion
When you ask to for the infer-from-usage codefix for `f`:
```ts
function f(x, y) {
return x + (y || 0)
}
f(1)
```
You should get `function f(x: number, y?: number | undefined)`
This already works in JS. You get `/** @para... | Suggestion,In Discussion,Domain: Quick Fixes | low | Minor |
377,956,201 | rust | Tracking issue for alloc_layout_extra | This issue tracks additional methods on `Layout` which allow layouts to be composed to build complex layouts.
```rust
pub const fn padding_needed_for(&self, align: usize) -> usize;
pub const fn repeat(&self, n: usize) -> Result<(Layout, usize), LayoutErr>;
pub const fn repeat_packed(&self, n: usize) -> Result<Layout, ... | A-allocators,T-libs-api,B-unstable,C-tracking-issue,Libs-Tracked | medium | Critical |
377,987,649 | react | Autofocus Text puts cursor at end instead of beginning | **Do you want to request a *feature* or report a *bug*?**
Bug
**What is the current behavior?**
In React 16, a text input with a value and autofocus will set the cursor at the _end_ of the input.
`<input autoFocus={true} type="text" defaultValue="4444" />`
**If the current behavior is a bug, please provide the... | Component: DOM,Type: Regression | low | Critical |
378,004,413 | go | proposal: runtime: provide access to info about recent GC cycles | Currently, `runtime.parsedebugvars` is called from `schedinit` which is part of binary bootstrap. This means it's not possible to dynamically enable GODEBUG features once a binary has started.
Typically, we don't want gc traces to flood our logs, but when debugging specific memory issues, it would be helpful if we c... | Proposal,Proposal-Hold | low | Critical |
378,023,138 | go | fmt: compound object rules don't seem to apply recursively | ERROR: type should be string, got "https://golang.org/pkg/fmt/#hdr-Printing reads:\r\n\r\n> For compound objects, the elements are printed using these rules, recursively, laid out like this:\r\n> ```\r\n> struct: {field0 field1 ...}\r\n> array, slice: [elem0 elem1 ...]\r\n> maps: map[key1:value1 key2:value2 ...]\r\n> pointer to above: &{}, &[], &map[]\r\n> ```\r\n\r\nIt is specifically said that these rules apply recursively. However, take a look at this playground link: https://play.golang.org/p/CbrniH9q45I\r\n\r\nIt currently prints:\r\n\r\n```\r\n{x}\r\n&{x}\r\n{%!s(*main.T2=&{x})}\r\n&{%!s(*main.T2=&{x})}\r\n```\r\n\r\nBut I'd expect it to print:\r\n\r\n```\r\n{x}\r\n&{x}\r\n{&{x}}\r\n&{&{x}}\r\n```\r\n\r\nReading the docs carefully again, I can't find a reason why only top-level pointers would follow the \"pointer to above\" rule that's clearly documented.\r\n\r\nIt seems to me like either the code is wrong, or the docs need clarification. If only top-level pointers are supposed to follow the \"pointer to above\" rule, that should be made clear in the rules.\r\n\r\nThis issue is split from #27672. I initially thought this was a bug in vet, but then started wondering if this was a bug in fmt instead.\r\n\r\n/cc @robpike @martisch @rogpeppe " | Documentation,NeedsFix | low | Critical |
378,023,213 | TypeScript | "Unique symbol as the name of a private method" results in invalid .d.ts declaration | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.1.6 or 3.2.0-dev.20181106
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
- unique symbol
- private class method name
- ... | Bug,Domain: Declaration Emit | low | Critical |
378,040,402 | go | cmd/compile: liveness analysis conservative for compound objects | ```
func f(data []byte) {
dataSize := len(data)
g(data)
runtime.GC()
global = dataSize
}
func g([]byte)
var global int
```
The compiler reports (with `-live`) that `data` is live at the `runtime.GC` call. In fact, only the `.len` field of `data` is live at that point. But because we track liveness ... | GarbageCollector,compiler/runtime | low | Major |
378,069,219 | react-native | Fix StrictMode warnings | <!--
- [x] Review the documentation: https://facebook.github.io/react-native
- [x] Search for existing issues: https://github.com/facebook/react-native/issues
- [x] Use the latest React Native release: https://github.com/facebook/react-native/releases
-->
## Description
When wrapping the app with `<Strict... | Help Wanted :octocat:,Resolution: PR Submitted,Bug | medium | Major |
378,075,001 | go | fmt: differing output of printf %#010x with int and string types | #### What did you do?
I wanted print a padded (zeros) and prepended (0x) string character as a hex number.
[Link to example on play.golang.org](https://play.golang.org/p/RMzu8R3Q11M)
#### What did you expect to see?
The same result for a string character and an integer.
The string printed as an hexadecimal nu... | Documentation,NeedsInvestigation | low | Major |
378,076,766 | electron | Allow data URLs or Object URLs to work with nodeIntegrationInWOrker | If you try to make a `new Worker` with, for example, an Object URL or Data URL instead of a more normal URL like a `file://` URL, then module resolution will not work inside the Worker.
**Example**
The following works:
```js
const path = require('path')
new Worker(path.resolve(__dirname, 'worker.js'))
```
... | enhancement :sparkles: | low | Critical |
378,078,871 | go | html/template: document that it strips comments | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
go1.11.1 (playground)
### Does this issue reproduce with the latest release?
Yes.
### What did you do?
```go
package main
import (
"fmt"
"html/template"
"os"
)
... | Documentation,help wanted,NeedsFix | low | Major |
378,111,625 | pytorch | [caffe2] How to export onnx model trained on Detectron in Caffe2? | caffe2 | low | Minor | |
378,112,287 | rust | Distributed libLLVM conflicts with system libraries | Now that `libLLVM.so` is distributed with rust, we are unable to dynamically link a rust binary against a different `libLLVM.so` library. The rustlib directory containing `libLLVM` is prepended to the linker search path, and I don't see a good way to ask cargo to add a search path earlier than the rustlib is added. It ... | A-linkage,A-LLVM,T-compiler | low | Major |
378,120,871 | go | cmd/compile: thread support for webassembly | <!-- 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 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are... | NeedsDecision,FeatureRequest,arch-wasm,compiler/runtime | medium | Critical |
378,149,115 | rust | Providing the compiler crates as rlib? | I'd like to embed `rustc_driver` in a static library (for complicated embedded deployment reasons that aren't entirely relevant). Dependencies of a static library seem to have to be in rlib format so the compile can read metadata.
Unfortunately, most of the compiler crates are only building dylibs, causing cargo to ... | T-compiler,T-bootstrap,C-feature-request | low | Critical |
378,173,844 | rust | There's no good way to iterate over all newlines with BufRead | If you have files with a newline of '\r', the only way to handle them is to use split. But if you have files with a newline of '\n' or '\r\n', then you can use lines().
This is counterintuitive and problematic from the perspective of the BufRead interface - there's no way to use it to iterate over any of the three t... | T-libs-api,A-str,A-io | low | Major |
378,218,629 | flutter | Use GestureDetector and CustomScrollView together | Hello,
I try use customScrollView for pull-to-refreshοΌsee code
```
CustomScrollView(
shrinkWrap: widget.shrinkWrap,
physics: RefreshScrollPhysics(),
slivers: <Widget>[
CupertinoSliverRefreshControl(
builder: _buildSimpleRefreshIndicator,
onRefr... | framework,f: scrolling,f: gestures,has reproducible steps,P3,team-framework,triaged-framework,found in release: 3.19,found in release: 3.20 | low | Major |
378,219,833 | opencv | cvtColor for BGR to YUV 4:2:0 returns darker image | <!--
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
Please:
* Read the documentation to test with the latest de... | category: imgproc,RFC | low | Critical |
378,226,535 | pytorch | Caffe2 install | i'm trying to install Caffes2 by the following commands:
##########
brew install \
automake \
cmake \
git \
gflags \
glog \
python
pip install --user \
future \
numpy \
protobuf \
pyyaml \
six
git clone https://github.com/pytorch/pytorch.git && cd pytorch
... | caffe2 | low | Critical |
378,235,731 | vue | Throw error when using interpolation instead of JS expression for slot names | ### What problem does this feature solve?
For this demo:
[https://jsfiddle.net/2os9jken/](https://jsfiddle.net/2os9jken/)
opening the console and running it throws the `Interpolation inside attributes has been removed. Use v-bind or the colon shorthand instead.` error for the `span`, but it should also throw it ... | feature request,good first issue,has PR | low | Critical |
378,240,854 | TypeScript | parameter property's modifier may not be followed by newline |
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** has been that way since at least 2.4
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
**Code**
```ts
class Foo {
... | Bug | low | Critical |
378,274,565 | godot | Add "hover" and "pressed" styles to Slider theme options | The HSlider theme class currently offers the following options:

From what I've seen, there is no way to make the Slider StyleBox look different when hovered or pressed, which limits customization possibili... | enhancement,topic:gui | low | Minor |
378,292,428 | pytorch | [caffe2] Modify models in model zoo | I'd like to load the imagenet resnet50 in model zoo and make a change on it. But I can not find any documents or examples of how to do that. A related issues is [https://github.com/pytorch/pytorch/issues/7614](url), but no answers for that yet.
To be specific, I'd like to skip the final fc operator in the original res... | caffe2 | low | Minor |
378,297,291 | vscode | Exclude gitignored files from file watcher | I would like an option to disable watching of gitgnored files (i.e. add them to the `files.watcherExclude` option automatically).
I think this makes sense, at least I couldn't think of a use case for watching gitignored files. It might also help with [autorefresh related issues](https://github.com/Microsoft/vscode/i... | feature-request,file-watcher | high | Critical |
378,333,725 | pytorch | Caffe2 Build Static | Is it possible to build caffe2 as static library?
I was trying to add flag STATIC, but it seems a lot of problems with install | caffe2 | low | Minor |
378,351,564 | rust | 2018 idioms: incorrect suggestion for root module and crate of same name | First reported at https://github.com/rust-lang/cargo/issues/6273
this code:
```rust
#![warn(rust_2018_idioms)]
extern crate time as std_time;
pub mod time {
pub fn f() {
println!("{:?}", crate::std_time::now());
}
}
fn main() {}
```
[when compiled](https://play.rust-lang.org/?ver... | A-lints,E-needs-test,A-suggestion-diagnostics,A-edition-2018 | low | Critical |
378,359,384 | vue | Conditional template not rendering when it has the same slot name | ### Version
2.5.17
### Reproduction link
[https://jsfiddle.net/ad17bgtq](https://jsfiddle.net/ad17bgtq)
### Steps to reproduce
1. Create a component that has a named slot exposing a boolean flag in its scope
2. Consume the component with two templates inside it, each with a v-if using the exposed bool... | has workaround | medium | Minor |
378,418,790 | go | cmd/compile: reduce generated algs for compiler created array types | There are alot of types algs that seem to be generated due to slicelit initializations:
example from go binary:
```
TEXT type..hash.[11]debug/elf.intName(SB) <autogenerated>
TEXT type..hash.[12]debug/elf.intName(SB) <autogenerated>
TEXT type..hash.[186]debug/elf.intName(SB) <autogenerated>
TEXT type..hash.[20]d... | Performance,NeedsInvestigation,compiler/runtime | low | Critical |
378,420,123 | TypeScript | Suggestion and codefix to add missing cases to switch | **TypeScript Version:** 3.2.0-dev.20181106
**Code**
```ts
enum E { A, B, C }
function f(x: E) {
switch (x) {
case E.A: return "a";
case E.C: return "c";
}
}
```
**Expected behavior:**
Suggestion on `x` recommending to add a case `case E.B:`, and a codefix which does that (per... | Suggestion,In Discussion,Domain: Quick Fixes | low | Critical |
378,455,675 | rust | Investigate & fix compiler options that print to stdout | Compiler options that print to stdout instead of stderr will break Rustbuild if they are enabled during a bootstrap (see #43855).
We should audit `rustc` for options which print to stdout and change them to print to stderr instead.
As @eddyb [points out](https://github.com/rust-lang/rust/pull/55495#issuecomment-4... | C-enhancement,T-compiler | low | Minor |
378,465,934 | vscode | Add a command to put OS / VS Code info into clipboard | A lot of times I want to open issues directly on GitHub. Now if I want to provide VS Code's info, I need to launch the issue helper, fill in title / body, open GitHub link, copy the info from there.
I would want a command to directly get those informations into the clipboard. | feature-request,workbench-diagnostics,issue-reporter | low | Major |
378,490,244 | pytorch | [caffe2] Adding CUDA operators for generate proposals and NMS layers | ## π Feature
Adding CUDA version for the operator generate proposals + CUDA version of the NMS utils.
## Motivation
Both CUDA layers have been implemented and show significant speed up against their CPU version.
## Pitch
For a Mask-R-CNN network, we see a ~25% end-to-end speed up on training against the sam... | caffe2 | low | Minor |
378,532,391 | vscode | Git - Provide task progress | **Request**
It could be a nice feature to show the git progress details in the GIT output console or since Visual Studio even though is 'Code' has the characteristic to being 'Visual', polish the user interface with some indicator.
In the following images there are some suggestions:
?
<pre>
$ go version
go1.10.3 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
### What operating system and processor architecture are you using... | help wanted,NeedsInvestigation | low | Critical |
378,612,009 | flutter | Allow SliverAppBar to have other slivers laid out below it | AppBar has a `floating` property and `pinned` property. Currently when both of these are set to true, and the AppBar is made transparent, the AppBar still pushes content below it (in the y-axis), leaving an empty box beneath the AppBar (in the z-axis).
Either, the behavior of setting `floating` and `pinned` to `tru... | c: new feature,framework,f: material design,f: scrolling,P3,team-design,triaged-design | low | Major |
378,636,100 | opencv | cvTriangulatePoints() supports only two-view triangulation | **Feature request** to add multi-view triangulation (more than 2 views) to `cvTriangulatePoints()`. | priority: low | low | Minor |
378,647,028 | pytorch | caffe2 c++ load pb model fail | Hi everyone, i convert shufflenet v2 to caffe2 pb model, which correct run in python caffe2, but when i load pb model in caffe2 c++, it can't generate predictor, my code is as follows:
`namespace caffe2 {
void run() {
std::cout << std::endl;
std::cout << "## Caffe2 Loading Pre-Trained Models Tutorial ##" << s... | caffe2 | low | Critical |
378,653,656 | pytorch | depthwise convolution are slow on cpu | I try to use depthwise convolution to reduce parameters of my model. However I found depthwise convolutions are slow on cpu, just 4x~5x than normal 3x3 convolution, while input_channel and output channel are 256. Is there any way to speed up the process? My version is pytorch 0.4.1.
cc @VitalyFedyunin @ngimel | module: performance,module: cpu,module: convolution,triaged | low | Major |
378,656,921 | go | x/build/cmd/gopherbot: add command to ping owners of the package | It would be good to ping owners of the package in the ticket without remembering who is the owner of it. What if one could say:
```
@gopherbot please ping owners
@gopherbot please ping owners to critique the solution
```
And then gopher would produce something like:
```
@name has asked @firstowner @secondowne... | Builders,FeatureRequest | low | Minor |
378,687,621 | react-native | SafeAreaView doesn't respect `padding` property in style | ## Environment
```
React Native Environment Info:
System:
OS: macOS 10.14
CPU: x64 Intel(R) Core(TM) i5-4258U CPU @ 2.40GHz
Memory: 34.00 MB / 8.00 GB
Shell: 3.2.57 - /bin/bash
Binaries:
Node: 9.7.1 - ~/.nvm/versions/node/v9.7.1/bin/node
Yarn: 1.2.1 - /usr/local/bin... | Component: SafeAreaView,Component: View,Bug,Needs: Repro | high | Critical |
378,710,070 | godot | Poor Light2D performance on Radeon GPU | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
3.1 c025f526c
**OS/device including version:**
Windows 10: AMD Radeon RX Vega 64
**: no
- **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)**: any
- **Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device**: n/a
- **TensorFlow in... | stat:awaiting tensorflower,type:feature,WIP,comp:autograph | low | Major |
378,718,665 | TypeScript | Suggestion: compiler option to validate "empty imports" | <!-- π¨ STOP π¨ π¦π§π’π£ π¨ πΊπ»πΆπ· π¨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section.
-->
## Search Terms
<!-- List of keywords you searched for before creating this issu... | Suggestion,In Discussion | low | Critical |
378,769,306 | TypeScript | Better handling for manually created source files and compiler APIs | ## Search Terms
type checker source file cannot ready property 'members' of undefined
## Suggestion
When a user of the compiler API manually creates a source file with `ts.createSourceFile` instead of retrieving it from their `program`, and then asks the `program` for type inference on a contained node, this c... | Suggestion,Needs Proposal,API | low | Critical |
378,804,381 | go | net: Resolve{TCP,UDP,IP}Addr returns IPv4 address on host without IPv4 connectivity | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.11rc2 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
Linux. The issue doesn't depend on CPU arch and has ... | NeedsInvestigation | medium | Major |
378,834,662 | go | cmd/compile: various low level x86 instruction generation improvements | While reading (to much) go generated assembly code I picked up a few x86 code sequences that seemed sub optimal. I do not remember where I had spotted each of them and some might just come from my imagination, compiler optimization guides or from outside the std library.
Instead of creating an issue per possibility ... | Suggested,Performance,help wanted,NeedsInvestigation,compiler/runtime | low | Major |
378,848,736 | go | x/build/cmd/pubsubhelper: use cloud pubsub for Gerrit instead of email | When I wrote pubsubhelper, Gerrit didn't support Cloud Pub Sub, so we had to parse emails to get live notifications out of Gerrit.
But @andybons pointed out that now it does, so we should move to it.
Low priority, but would be a nice cleanup.
| Builders | low | Major |
378,899,000 | rust | UdpSocket receive to short buffer behaves differently on Unix and Windows | On Unix receiving to a buffer shorter than the incoming payload silently truncates the read. On Windows the read is completed but an error is returned. Not being that familiar with Windows I found this behaviour surprising.
The following comment in [`sys/windows/net.rs`](https://github.com/rust-lang/rust/blob/1d8345... | T-libs-api,C-bug,A-io | medium | Critical |
378,907,252 | pytorch | [caffe2] test depthwise3x3_conv_op_test fails to run | ## π Bug
The caffe2 test `depthwise3x3_conv_op_test` fails to run when using caffe2 git master in a cpu-only build (with `USE_CUDA:BOOL='OFF'`):
```
Start 84: depthwise3x3_conv_op_test
84/91 Test #84: depthwise3x3_conv_op_test ...............***Failed 0.55 sec
Start 85: common_subexpression_elimination... | caffe2 | low | Critical |
378,915,483 | electron | Add event that can be used to listen for mouse and scroll events on a <webview> | **Is your feature request related to a problem? Please describe.**
As of Electron 3.0.0 beta 6 mouse, keyboard, and scroll events and the like no longer are able to be listened for. #14258 , however as seen in that issue "bpasero" used the "before-input-event" event to create an emulated Keypress. As there already is... | enhancement :sparkles: | low | Major |
378,919,541 | godot | Window width affects directional shadow resolution (fixed in `master`) | **Godot version:**
Affects both 3.0.6 and Official 3.1 Alpha 2
**OS/device including version:**
Linux Mint 19 - 64bit
Nvidia GeForce GTX 1060 on driver version: 396.54
**Issue description:**
For some reason the directional shadow resolution decreases as the window width increases, and increases as the width d... | bug,topic:rendering,confirmed,topic:3d | low | Major |
378,920,700 | bitcoin | Can't configure bitocoind to only send tx via Tor but receive clearnet transactions | <!-- Describe the issue -->
There does not seen to be a way to enable onlynet=onion for sending only and regular clearnet for receiving only.
<!--- What behavior did you expect? -->
I expected that onlynet=onion would mean outbound connections from only onion nodes. This sort of works but I need to manually add no... | Feature,P2P | 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.