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 |
|---|---|---|---|---|---|---|
290,242,300 | vue | Functional single file component with components option. | ### Version
2.5.13
### Reproduction link
NG pattern (functional)
https://codesandbox.io/s/004vv2onw0
OK pattern (no functional)
https://codesandbox.io/s/q9k5q8qq56
### Steps to reproduce
I found can't use `components` option when `functional` single file component.
```html
<template functional>
... | feature request,improvement,has PR | high | Critical |
290,268,889 | create-react-app | Resolve symlinks using Node resolution mechanism | Copying my comment from #1107 since that issue is pretty crowded and I want it to be here instead.
----
Having read some discussions in https://github.com/nodejs/node/pull/6537 and https://github.com/isaacs/node6-module-system-change I think we're actually already being inconsistent in how we handle symlinks.
... | issue: bug,issue: needs investigation | medium | Major |
290,295,764 | rust | #[link(name=β¦)] makes life hard for non-cargo build systems | I'm not sure how that feauter is handled by rustc (and cargo?).
My Nix-based build system (carnix) cannot build packages using it, because it has no way to tell a library declared in this way has to be used (I tried just grepping over the source files, but that fails because some modules might not get compiled, depe... | A-linkage,T-dev-tools,C-feature-request | low | Minor |
290,295,881 | angular | style binding handling css `calc` function improperly | <!--
PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION.
ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION.
-->
## I'm submitting a...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (a behavior that used to work and stopp... | type: bug/fix,area: animations,freq2: medium,hotlist: google,P3 | low | Critical |
290,311,223 | rust | ./x.py build --on-fail=/bin/bash has no effect | Trying to look into #43982, I was running `./x.py build --jobs=4 --on-fail=/bin/bash`. Once I hit the ICE, the build exited without dropping me to a shell as I had expected. @nagisa wanted to try and repro this.
re-uploaded [build log](https://github.com/rust-lang/rust/files/1650313/build.log) as a gist:
https://gi... | T-bootstrap,C-bug | low | Major |
290,315,349 | TypeScript | Request: Allow abstract classes to implement MappedTypes that are instantiated with type parameters. | Ok, so the title is a mouthful, but here's an example of what we're trying to accomplish:
```ts
interface DeferredProperty<T> {
get(): T;
}
type Deferred<T> = {
[P in keyof T]: DeferredProperty<T[P]>
};
```
Here we use mapped types to express the idea that a interface type might be wrapped with a... | Suggestion,In Discussion | medium | Major |
290,317,266 | rust | Misleading error message when passing a reference to an FnOnce and a non-reference is expected | Compiling this code:
```rust
struct Foo {}
impl Foo {
pub fn foo(&self) -> String {
"foo".to_owned()
}
}
fn main() {
let foo = Foo{};
let closure = move || foo;
call(&closure);
}
fn call<F: FnOnce() -> Foo>(f: F) {
println!("{}", f().foo())
}
```
[gives me the ... | C-enhancement,A-diagnostics,T-compiler | low | Critical |
290,321,007 | flutter | Document that WillPopScope prevents swipe to go back on MaterialPageRoute | ## Steps to Reproduce
1. Add a `MaterialPageRoute` to your app's page stack
```dart
return new MaterialPageRoute<Null>(
settings: settings,
builder: (BuildContext context) => new StoryPage(itemId: itemId),
);
```
1. Wrap that page's `Scaffold` in a `WillPopScope` widget
```dar... | framework,customer: mulligan (g3),d: api docs,d: examples,customer: crowd,P2,team-framework,triaged-framework | low | Critical |
290,325,348 | TypeScript | No error when namespace export is used before assigned |
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 2.6.2
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** namespace decorator same class
**Code**
```ts
@C1.Decorator
e... | Bug,Help Wanted | low | Critical |
290,332,549 | rust | The "method references Self" object-safety rule is overly restrictive | Is there any reason why the following trait method can't be object safe?
```rust
trait Trait {
fn take_and_return_box(self: Box<Self>) -> Box<Self>;
}
```
Intuitively, it would return `Box<T>` when called on a `Box<T>` where `T: Trait`, and `Box<Trait>` when called on a `Box<Trait>`. The compiler would do a... | A-trait-system,T-lang,C-feature-request,T-types,A-trait-objects | low | Major |
290,333,959 | flutter | `TapGestureRecognizer` leaked by `_RenderSlider` and `_RenderRangeSlider` | These classes uses `TapGestureRecognizer` but does not dispose it.
- `RenderToggleable`
- `_RenderCupertinoSwitch`
- `_RenderSlider`
Is it the intended implementation?
A parent class of `TapGestureRecognizer`, `PrimaryPointerGestureRecognizer` uses `Timer` and has `dispose` method.
`LongPressGestureRecogn... | c: crash,framework,has reproducible steps,P2,found in release: 3.10,team-framework,triaged-framework | low | Major |
290,501,833 | vue-element-admin | Can U support Parcel(https://parceljs.org) | Webpack is too complicated
Thanks! | discussion | low | Minor |
290,529,809 | rust | Tracking Issue for Incremental Compilation | Incremental compilation will soon be available in stable Rust (with version 1.24) but there's still lots of room for improvement. This issue will try to give an overview of specific areas for potential optimization.
## Compile Time
The main goal for incremental compilation is to decrease compile times in the common... | T-compiler,A-incr-comp,C-tracking-issue,S-tracking-impl-incomplete | medium | Critical |
290,547,907 | vscode | Support reading/writing chunks in remote fs | This is a follow up from #32503 where `IFileService.updateContent()` now accepts a `ITextSnapshot` to prevent loading the entire buffer into memory. I left a TODO [here](https://github.com/Microsoft/vscode/blob/master/src/vs/workbench/services/files/electron-browser/remoteFileService.ts#L366) to use `ITextSnapshot` dir... | feature-request,api,remote,api-proposal | low | Minor |
290,557,932 | react | Fabric Todos | For my own notes here are some spill-overs from the Fabric renderer commit.
- [ ] Update currentProps for updates in the commit phase. Needs a host effect to be marked and we need a hook to do host updates in the persistent mode.
- [x] Actually use currentProps when extracting events in the component tree.
- [ ] R... | Type: Umbrella,React Core Team | medium | Minor |
290,603,650 | go | x/mobile: accessing field on nil on iOS raises exception instead of panicking (gomobile) | The spec says accessing a field (`x.foo`) should panic if `x` is `nil`, but it seems that in an iOS library built with gomobile, the result is an EXC_BAD_ACCESS exception being raised.
Please answer these questions before submitting your issue. Thanks!
#### What did you do?
If possible, provide a recipe for repr... | NeedsInvestigation,mobile | low | Critical |
290,617,023 | rust | 2x benchmark loss in rayon-hash from multiple codegen-units | I'm seeing a huge slowdown in [rayon-hash](https://github.com/rayon-rs/rayon-hash) benchmarks, resolved with `-Ccodegen-units=1`.
```
$ rustc -Vv
rustc 1.25.0-nightly (97520ccb1 2018-01-21)
binary: rustc
commit-hash: 97520ccb101609af63f29919bb0a39115269c89e
commit-date: 2018-01-21
host: x86_64-unknown-linux-gn... | I-slow,C-enhancement,A-codegen,T-compiler,C-optimization | low | Critical |
290,635,294 | go | path/filepath: EvalSymlinks of container mapped directory returns an error | ### What version of Go are you using (`go version`)?
`go version go1.9.2 windows/amd64` and `go version go1.10beta2 windows/amd64`.
### Does this issue reproduce with the latest release?
Yes, this is reproducable with go `1.10beta2` and `1.9.2`
### What operating system and processor architecture are you us... | OS-Windows,WaitingForInfo,NeedsInvestigation | medium | Critical |
290,660,592 | electron | webContents.startDrag() for dragging and dropping remote files out of Electron into local filesystem | * Electron version: 1.7.10
* Operating system: Mac OS X Sierra
Hey guys! I love what you've done with Electron. Keep it up! π―
I'm building a remote file explorer in Electron. I would like to have the ability to drag files *out* of Electron into the Mac OS X Finder. This can be achieved using `webContents.start... | enhancement :sparkles:,platform/macOS | medium | Major |
290,664,812 | flutter | Warn that flutter run/build must be run before building directly inside Xcode | It's currently easy to land on obscure error messages when the user opens the template created project's xcode project directly and then tries to build. Add a build phase script to check for the staleness or absence of `Generated.xcconfig` or some such. | tool,platform-mac,a: quality,P2,team-tool,triaged-tool | low | Critical |
290,761,483 | vue | Vue.extend mutates original object | ### Version
2.5.13
### Reproduction link
[http://jsfiddle.net/vmvabzam/](http://jsfiddle.net/vmvabzam/)
### Steps to reproduce
- run the fiddle and look at the code vs the html
### What is expected?
`Foo.props` should still be an array after extending it
### What is actually happening?
`Foo.props` are ... | discussion | medium | Minor |
290,884,109 | rust | The mutable borrow is released when matching on a Option<&mut Self> in a function, but not when the function is inlined | ```rust
#![feature(nll)]
struct Node {
value: char,
children: Vec<Node>,
}
impl Node {
fn new(value: char) -> Self {
Self {
value,
children: Vec::new(),
}
}
fn add_child(&mut self, value: char) -> &mut Self {
self.children.push(Self... | T-compiler,A-NLL,C-bug,NLL-polonius | medium | Critical |
290,891,110 | flutter | Document and test a mechanism to require a certain Flutter version to build | Right now there is no way to specify the required Flutter version in the `pubspec.yaml`. One should be able to pin the build to a specific version (or commit) of Flutter so that the build is reproducible in the future. Furthermore, there is no way currently to ensure developers working on a shared codebase all use the ... | c: new feature,tool,P2,team-tool,triaged-tool | low | Critical |
290,893,140 | flutter | Provide an easy way to select the version of Flutter to use | This ties in with #14229 β it would be great if there was a way to select the version of Flutter to use from the `flutter` tool. Currently to my understanding the manual process to do so is:
```bash
$ cd flutter
$ git checkout [branch, tag or commit hash]
$ cd ../my-app/
$ flutter packages get
```
(assuming ... | c: new feature,tool,P3,team-tool,triaged-tool | high | Critical |
290,922,109 | create-react-app | Knowing when dev compile is done | <!--
PLEASE READ THE FIRST SECTION :-)
-->
### Is this a bug report?
No
### How to tell when webpack dev compile is ready?
I want to be able to run a second process after the dev server is up and running and the compile is done, e.g. run a mock api server. Normally the webpack compiler emits a 'done' ev... | issue: proposal | low | Critical |
290,939,932 | flutter | Enable tree shaking of platform specific code | Flutter apps can conditionally render platform specific UI using the APIs in [platform.dart](https://github.com/flutter/flutter/blob/master/packages/flutter/lib/src/foundation/platform.dart).
Currently these APIs depend on non-const state, resulting in this conditionally code not being tree-shakeable. We should supp... | framework,dependency: dart,c: proposal,P3,team-framework,triaged-framework | medium | Major |
290,967,813 | youtube-dl | Add Support for DataCamp Courses |
- [x ] I've **verified** and **I assure** that I'm running youtube-dl **2018.01.21**
- [x ] At least skimmed through the [README](https://github.com/rg3/youtube-dl/blob/master/README.md), **most notably** the [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections
- ... | site-support-request,account-needed | low | Critical |
290,971,211 | go | cmd/gofmt: Unexpected formatting multiline functions in struct literal | ### What version of Go are you using (`go version`)?
```
go version go1.9.2 darwin/amd64
```
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
GOPATH="/Users/drew/go"
GORACE=""
GOROOT... | NeedsInvestigation | low | Critical |
290,990,714 | youtube-dl | youtube-dl doesn't see the video file if page contains YouTube trailer | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2018.01.21*. 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**... | site-support-request | low | Critical |
291,034,259 | create-react-app | Maybe use execa? | See:
* https://github.com/testem/testem/pull/1205
* https://github.com/sindresorhus/execa#why | issue: proposal | low | Minor |
291,048,288 | pytorch | [feature request]Support AVX512F intrinstics to vectorize operations | Pytorch has written SSE, AVX and AVX2 [intrinstics](https://github.com/pytorch/pytorch/tree/master/aten/src/TH/vector) to vectorize operations on CPU. Now AVX-512 instruction sets are more and more widely introduced to Intel CPUs. It is necessary to add AVX-512F intrinstics to get better performance.
| feature,module: cpu,triaged | low | Major |
291,073,610 | puppeteer | Coverage: recording cumulative coverage at points in time. | Discussed this with @aslushnikov, but documenting here.
Use case: while a page is loading, report coverage snapshots at various milestones. e.g. at `DOMContLoaded`, `load`, and `networkidle0`. This would allow users to measure the effectiveness of a lazy loading strategy, for example.
My goal was to create a brea... | feature,chromium | low | Minor |
291,189,805 | TypeScript | keyword to force calling the super on any method | Today I faced the following code
```ts
class A {
// silly warning comment: if you override this, don't forget to call the super method to avoid memory leaks
onExit() {
// do some important cleaning stuff
}
}
class B extends A {
onExit() {
super.onExit(); // good
}
}
class C extends A {
onExit() {
//... | Suggestion,Awaiting More Feedback | high | Critical |
291,192,427 | pytorch | [Feature Request] clip_grad_norm for sparse gradients | 1.It would be great to have another common gradient clipping strategy, i.e. clip_grad_value in PyTorch. Compared to clip_grad_norm, which is sensitive to the total number of parameters in the model, clip_grad_value will be easier to use as tuning max_value will be more straightforward than tuning max_norm. Still, AFAIK... | module: sparse,triaged | low | Minor |
291,288,008 | youtube-dl | Add ElTrece support | ## 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
... | site-support-request | low | Critical |
291,391,051 | rust | UdpSocket::set_ttl does not set IPv6 hoplimit field | It is not possible to set a hoplimit in an IPv6 packet sent over UDP. `UdpSocket::set_ttl` does not modify the hoplimit in the IPv6 packet and there seems to be no other way to do so.
**I tried this code:**
use std::net::{Ipv6Addr, SocketAddrV6, UdpSocket};
fn main() {
let laddr = SocketAddrV6::new(I... | C-enhancement,T-libs-api | low | Minor |
291,415,161 | godot | Indent dictionary key/value entries in TSCN format | **Godot version:**
godot3 tip
**Issue description:**
I have two suggestions for making tscn files easier to parse in third party scripting languages.
1. In a tscn file, multiline values should be indented. The one that affects me the most is in the Animation sub resource.
```
tracks/0/keys = {
"times": PoolR... | enhancement,discussion,topic:core | low | Minor |
291,548,947 | youtube-dl | Login to Youtube + Google Prompt/Authenticator | I know it's possible to download Youtube videos that require you to be logged in by supplying in your email and password however I do have the Google Prompt added as well as an authenticator.
Here's what I tried (and failed):
- Supplying my email, password and authentication code but I got "Invalid parameters" and... | bug | low | Critical |
291,566,348 | TypeScript | Make the type guarding on 'typeof' be transitive. | <!-- π¨ STOP π¨ π¦π§π’π£ π¨ πΊπ»πΆπ· π¨ -->
<!--
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker.
Please help us by doing the following steps before logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the CONT... | Suggestion,Awaiting More Feedback | low | Critical |
291,577,359 | rust | Check for Integer Overflow by Default | It would be good to always check integers for overflow and thereby providing users with an integer type that actually behaves like an integer or at least fails completely instead of giving "wrong" results.
This was discussed on IRC last week and three distinct cases were identified:
1. An integer is desired and the... | C-enhancement,T-libs-api | medium | Critical |
291,594,325 | flutter | Downloading lines for flutter doctor should display information | ## Steps to Reproduce
When `flutter doctor` downloads dependencies, there are no indicators of what is going on. This is particularly important in places with slow Internet connections. I would expect a modern download CLI to include:
* [ ] download size
* [ ] % downloaded
* [ ] progress bar
* [ ] count of how... | tool,a: quality,P2,team-tool,triaged-tool | low | Major |
291,614,391 | rust | Struct initializer `..x` syntax should work for other structs with structurally equal subset of fields | This should be allowed:
```rust
struct X { a: u8, b: u16, c: u32, d: i8 }
struct Y { a: u8, b: u16, c: u32, d: i8 }
let x = X { a: 1, b: 2, c: 3, d: 4 };
let y = Y { a: 5, ..x };
```
if the fields that are missing from `Y`'s struct initializer have the **same** names and types in `X` as in `Y`.
This occurs v... | T-lang,C-feature-request | medium | Major |
291,629,398 | svelte | Proposal: Top-Level <:Body> Injections | Imagine I have the following component, `<TopLevelThing>`.
```HTML
<div class="top-level-thing">
<p>Top level stuff.</p>
</div>
```
It's intended to be used at the top-level of the `<body>`.
However, I might want to use it as part of a component which is deep inside the `<body>`, nowhere near the top-l... | feature request,popular | high | Critical |
291,639,945 | vscode | Comment for erb files in rails | When doing
"CTRL + / "
for lines where ruby codes are written in the " <% %> " tag in html.erb files,
it always leaves the last "%>" part as HTML
| under-discussion,editor-commands | low | Minor |
291,651,833 | rust | codegen-units + ThinLTO is not as good as codegen-units = 1 | We recently had a fair amount of reports about code generation quality drop. One of the recent causes for the quality drop is the enablement of codegen-units and ThinLTO.
It seems that ThinLTO is not capable of producing results matching those obtained by compiling without codegen-units in the first place.
The li... | A-LLVM,I-slow,T-compiler | medium | Critical |
291,668,697 | godot | Using Viewport Texture causes "node not found" error / "Cannot get path of node as it is not in a scene tree" | ___
***Bugsquad note:** This issue has been confirmed several times already. No need to confirm it further.*
___
**Godot version:**
v3.0.rc3.official
**OS/device including version:**
Ubuntu 16.04
**Issue description:**
I'm using the canvas 2D drawing functions to create a texture and then using th... | bug,topic:core,confirmed | medium | Critical |
291,847,743 | TypeScript | Resolving multiple package.json "main" fields | **TL;DR:** A new compiler option `mainFields` for selecting multiple fields in `package.json` instead of just `package.json#main`.
---
There are lots of related issues to this one (which I link to below), but I want to focus on just this specific proposal.
---
Packages often look like this:
```js
{
"... | Suggestion,Awaiting More Feedback,Scenario: Monorepos & Cross-Project References | high | Critical |
291,855,947 | go | fmt: Scanf works differently on Windows and Linux | ### What version of Go are you using (`go version`)?
go version go1.9.3 windows/amd64 and go version go1.9.3 linux/amd64
### Does this issue reproduce with the latest release?
yes
### What operating system and processor architecture are you using (`go env`)?
on Windows:
```
set GOARCH=amd64
set GOBIN=
set ... | OS-Windows,NeedsFix | medium | Critical |
291,868,439 | rust | Attributes on macro does not trigger error or warning | Using `rustc 1.25.0-nightly (9fd7da904 2018-01-25)`,
```rust
fn foo() {
println!("hello world");
}
fn main() {
#[rustfmt_skip]
foo ();
}
```
the abvoe code triggers an error:
```
error[E0658]: The attribute `rustfmt_skip` is currently unknown to the compiler and may have meaning added to... | A-diagnostics,T-compiler,C-bug | low | Critical |
291,882,490 | flutter | Antialiasing behaviour when same-colour | _Latest status update: https://github.com/flutter/flutter/issues/14288#issuecomment-1890250258; some work around suggestions: https://github.com/flutter/flutter/issues/14288#issuecomment-1026332976_
----
## Steps to Reproduce
Following source code:
```dart
import 'package:flutter/material.dart';
const Col... | framework,engine,customer: crowd,c: rendering,has reproducible steps,P3,a: gamedev,found in release: 3.3,found in release: 3.4,workaround available,team-engine,triaged-engine | high | Critical |
291,897,370 | create-react-app | Inform the developer about new releases and how to upgrade | Hi, guys.
How do you know if there is a new release to update? I usually use `npm-check` but other people could check manually going to [Releases](https://github.com/facebook/create-react-app/releases), among others. Whatever it is, you get the information after requesting manually.
I want to make a proposal to a... | issue: proposal | low | Minor |
291,900,705 | vscode | Support assigning numeric value to "editor.wrappingIndent" | - VSCode Version: 1.19.3
`editor.wrappingIndent` is currently supporting `"none"`, `"same"`, `"indent"`.
The problem with `"same"` is that it is difficult to know where the new line starts, and the problem with `"indent"` is that it is difficult to know where the new block starts. (Also, I don't like `"none"` π)... | feature-request,editor-core | low | Minor |
291,921,217 | go | cmd/go: coverage profile should be cached with tests | As briefly discussed here: https://twitter.com/_rsc/status/956888213314068481
I don't see why Go shouldn't cache the results of `-coverprofile` when running tests, as test coverage shouldn't vary from run to run, given the same set of arguments.
### What version of Go are you using (`go version`)?
`go version ... | NeedsFix | high | Critical |
291,923,557 | youtube-dl | [go] Add CenturyLink support | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2018.01.21**
- [x] At least skimmed through the [README](https://github.com/rg3/youtube-dl/blob/master/README.md), **most notably** the [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections
- [x] ... | tv-provider-account-needed | low | Critical |
291,932,502 | go | gccgo: GOARCH is not validated | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
```
go version go1.9 linux/amd64
```
### Does this issue reproduce with the latest release?
Yes
### What did you do?
```
$ GOARCH=386 go build -v -compiler gccgo ./mypkg/
go build... | NeedsInvestigation | low | Critical |
291,948,033 | flutter | flutter run usage for iOS (e.g. hotrun/ios) does not include architecture type | It's a little odd that our usage stats report arch type for Android but not iOS:
hotrun/android-arm
hotrun/ios
hotrun/android-x86
hotrun/android-x64
run/android-arm
It seems like either we should add the arch type to iOS or remove them from all of them (and get the arch type through another pivot of the data)... | c: new feature,team,tool,P2,team-tool,triaged-tool | low | Minor |
292,005,962 | go | archive/zip: invalid zip64 extra fields as per strict interpretation of APPNOTE.TXT | ### What version of Go are you using (`go version`)?
Looking at git master (currently d85a353 of writer.go)
### Description
There seems to be an error in *archive/zip/writer.go* when creating a zip64 extra field when the local header offset is less than UINT32_MAX (e.g. for the first file in the central director... | NeedsInvestigation | low | Critical |
292,081,759 | rust | derived Clone implementations for many-variant enums are unnecessarily large | The derived Clone implementations in Firefox weigh 192k [1], which is a lot.
Of that 192k, 79k of that is just for PropertyDeclaration::clone. PropertyDeclaration is a very large enum, but most of the variants are simple POD types. Ideally Rust would coalesce those together, and then generate special cases for the t... | C-enhancement,T-compiler,I-heavy,C-optimization | medium | Major |
292,090,607 | go | runtime/race: document and fix "trap when race detected" | This is not so much a _bug_, as an _ask_.
When using the `-race` option for `go test`, I would like to see the arguments that are provided at the call site, down the stack, when a data race is detected. Currently, I only see the methods themselves. If I omit the `-race` option, I can see the data race as reported ... | Documentation,RaceDetector,help wanted,Proposal-Accepted,NeedsFix | medium | Critical |
292,114,458 | godot | [Bullet] Fast RigidBody always go through walls and Godot Crash because of Collision | ___
***Bugsquad note:** This issue has been confirmed several times already. No need to confirm it further.*
___
**Godot version:**
Godot 3 RC3
**Issue description:**
Fast moving Rigidbody3D always go through walls
the collision is not always detected .. even if i make the wall thick and add more invi... | bug,confirmed,topic:physics,topic:3d | medium | Critical |
292,135,438 | rust | Rust make system should respect -j1 | The build system seems not to respect -j1 for make (origin report is https://bugs.gentoo.org/613794) :
```
# /usr/bin/pstree -Ulnspua 1038
init,1
ββsudo,1026 /opt/tb/bin/chr.sh /home/tinderbox/run/17.0-no-multilib_libressl_20180124-193635 /bin/bash /tmp/job.sh
ββchr.sh,1038 /opt/tb/bin/chr.sh ... | T-bootstrap,C-bug | low | Critical |
292,160,857 | rust | Allow using Fn(A, B, C) -> _ for unconstrained FnOnce::Output. | `F: Fn(A, B, C) -> R` desugars to `F: Fn<(A, B, C), Output = R>` currently.
`F: Fn(A, B, C) -> _` could easily desugar to `F: Fn<(A, B, C)>`.
More generally, we can allow `T: Trait<AssocTy = _>`, meaning the same as `T: Trait`.
This form would make it easier to be generic over the return type without having to spe... | T-lang,C-feature-request | medium | Major |
292,195,983 | rust | unsupported cyclic reference between types/traits error only when implicitly using associated type | Getting `error[E0391]: unsupported cyclic reference between types/traits detected` only when using `T::A` to refer to an assocaited type but it works when using `<T as Test>::A` which seems inconsistent.
```rust
struct Struct<T>(T);
trait Test {
type A;
type B;
}
// Compiles
fn test<T>() where T: Te... | A-associated-items,T-compiler,C-bug | low | Critical |
292,204,239 | puppeteer | Behavior of setViewport() inconsistent in Headful | **Environment:**
* Puppeteer: 1.0.0
* Platform / OS: Ubuntu 16.04 LTS (1920x1080@1x)
* Node.js: 8.9.3
* Chromium: 65.0.3312.0 (Developer Build) (64-bit)
**What steps will reproduce the problem?**
Running the following code several times.
```javascript
const puppeteer = require('puppeteer');
(async ()... | bug,upstream,chromium,confirmed,P3 | medium | Major |
292,217,008 | opencv | Since GPU modules are not yet supported by OpenCV-Python? | Since GPU modules are not yet supported by OpenCV-Python?
Is there any plan to support gpu? | feature,priority: low,category: gpu/cuda (contrib) | low | Minor |
292,264,085 | vscode | [folding] Allow folding block comment that starts in the middle of the line | An additional request on top of now-closed feature-request [11524](https://github.com/Microsoft/vscode/issues/11524).
I sometimes like to write my block comments in this form:
```
let someflag : boolean = false;/*
this flag does blah blah
blah blah blah blah*/
let somethingelse : string;
```
So th... | feature-request,editor-folding | low | Minor |
292,386,047 | bitcoin | Timeout downloading block | When investigating my mempool statistics there are from time to time >15 minutes intervals without blocks followed immediately by two or three fast blocks and it happened too often to be just due to the high variance of exponential distributiion.
Looking into the logs revealed the culprit:
```
grep Timeout -A1 d... | P2P | low | Critical |
292,399,857 | rust | Wrong error: cannot move out of captured outer variable in an `FnMut` closure | > error: cannot move out of captured outer variable in an `FnMut` closure
```rust
struct Foo {
a: i32,
b: i32,
bar: Bar,
}
struct Bar;
impl Bar {
fn f<F: FnMut()>(&self, mut f: F) {
f();
}
}
fn main() {
let mut foo = Foo { a: 1, b: 2, bar: Bar };
let a = &mut f... | C-enhancement,A-diagnostics,A-closures,A-borrow-checker,T-compiler,D-terse | low | Critical |
292,425,175 | pytorch | Rebuild from no-CUDA to CUDA leads to: error: #error "Expected GLOO_USE_CUDA to be defined" | Hello I'm trying to build from source for multinorminal distribution, but I can't get it built.
In contrary, if built with NO_DISTRIBUTED=1 the build passes but of course things like pooling won't work, which is something I need.
- OS: Ubuntu 16.04
- PyTorch version: From master branch
- How you installed PyTorch... | module: build,low priority,triaged,has workaround | low | Critical |
292,512,044 | go | x/playground: feature request: prepopulate file system with contents of $GOROOT/src | Adding the $GOROOT contents to the playground file system would make it possible to use more of the `go/*` packages in the playground more easily.
This would be helpful for both reporting bugs in the `go/*` packages and for sharing demonstrations of how to use the `go/*` packages. | NeedsInvestigation | medium | Critical |
292,521,956 | angular | HttpClient.head expects payload by default. Doesn't follow spec | ## I'm submitting a...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (a behavior that used to work and stopped working in a new release)
[x ] Bug report <!-- Please search GitHub for a similar issue or PR before submitting -->
[ ] Feature request
[ ] Documentation issue or reque... | breaking changes,freq1: low,area: common/http,type: confusing,P4 | low | Critical |
292,552,503 | flutter | Code Push / Hot Update / out of band updates | _This is currently not on Flutter's roadmap, for reasons discussed in these comments: https://github.com/flutter/flutter/issues/14330#issuecomment-1279484739, https://github.com/flutter/flutter/issues/14330#issuecomment-485565194_
_Code push for Flutter is available as a third-party product from shorebird.dev, as di... | c: new feature,engine,dependency: dart,customer: crowd,a: production,P3,team-engine,triaged-engine | high | Critical |
292,563,620 | flutter | a11y on Android: cut/paste not announced correctly | When text is selected in a text field and "cut" is chosen from the Local Context Menu, an announcement acknowledging the copy is expected (e.g. "cut \<text\>"). In Flutter that announcement is missing.
Similarly, when "paste" is chosen from the Local Context Menu, an announcement acknowledging the paste (e.g. "paste... | a: text input,platform-android,engine,a: accessibility,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-android,triaged-android,fyi-text-input | low | Major |
292,575,824 | neovim | win: more fnamemodify() behavior | :echo fnamemodify('/foo/bar/baz', ':p')
returns:
/foo/bar/baz
but gvim on Windows returns:
C:\foo\bar\baz
#7842 made progress here, but doesn't seem to cover this case. | platform:windows,filesystem | low | Minor |
292,680,043 | pytorch | [Feature Request]would PackedSequence support unsorted sequences? | By default, sequences packed in `PackedSequence` will be sorted by length.
However in some cases where a datum contains two sequences (**A - B**), the descendant order of **A** is not the order of **B**. This will course some mismatches.
Maybe the correct way is:
`sort A -> feed into RNN -> unsort A -> sort B -> fe... | feature,module: nn,triaged | low | Minor |
292,707,330 | pytorch | [feature request] Type-1 Multi-layer bidirectional RNN | Hello
I request another type of multi-layer bidirectional RNN.
Currently forward output and backward output is concatenated after each layer.
But, for language modeling, we need independent forward rnn and backward rnn util the last layer and output concatenation is only need at the last layer.
thank you.
c... | module: cudnn,module: rnn,triaged,function request | medium | Critical |
292,792,500 | vscode | Extensions: "group" should provide intellisense to show valid groups to contribute menus to | 
/cc @jrieken | help wanted,feature-request,menus | low | Minor |
292,834,827 | vue-element-admin | ηΉε»εζ’θ·―η±ηζΆεοΌζζΆεδΌζ₯ιοΌError: Loading chunk 1 failed. at HTMLScriptElement.d (bootstrap 7d5ba07478b35f182b62:103) | εͺζε¨ ζε
εηηΊΏδΈη―ε’δΌεΊιοΌη¨ηζ―addRouter ε¨ζ ζ·»ε ηοΌδΈεζθ°’ζ₯ΌδΈ»ζε―ΌοΌθ°’θ°’
Error: Loading chunk 1 failed.
at HTMLScriptElement.d (bootstrap 7d5ba07478b35f182b62:103) | help wanted | high | Critical |
292,854,717 | go | x/build/cmd/coordinator: detect temp dir leaks | The build infrastructure could explicitly set $TMPDIR (or %TMP% on Windows) to an empty directory and at the end of a successful build check that the directory is still empty. If not, it could fail.
Or we could do it in cmd/dist test, perhaps optionally.
/cc @ianlancetaylor @alexbrainman | Builders | low | Major |
292,911,309 | rust | cargo not built when a target is specified | `./x.py build src/tools/cargo` completes without error and without building `cargo` when a target is specified via the command line or via a `config.toml`. I'd expect that `cargo` would build the same regardless of what target is specified, but instead it does not build at all when a target is specified.
Example:
`... | C-enhancement,A-cross,T-bootstrap,T-infra | low | Critical |
292,936,599 | vscode | Support suppressing commit character from being inserted during completion | I have a completion provider that inserts parens when completing method calls, eg. `myFunc()`. Today I tried adding `(` as a commit character so that if I've typed `myFun` and press `(` then it'll still complete. However this results in `myFunc()()` because the completion text includes the parens, the commit character ... | feature-request,api,suggest,api-proposal | medium | Critical |
292,972,346 | pytorch | [Feature request] Optimize autograd/ATen when a gradient is clearly zero | When an input parameter ***clearly*** has zero gradient (not due to numerical coincidence), the current ATen guideline requires the backward function to return a zero tensor. Since there is no special treatment of zero tensors, autograd engine will still trace back the entire graph supporting that variable. This can ha... | feature,module: autograd,triaged | low | Minor |
293,000,495 | pytorch | [docs] Docs website search finds duplicates and produces bad snippets | Searching for `torch.nn.functional.conv2d` returns results with 4 identical links to http://pytorch.org/docs/master/nn.html?highlight=torch%20nn%20functional%20conv2d#torch.nn.functional.conv2d
Link with results is: http://pytorch.org/docs/master/search.html?q=torch.nn.functional.conv2d&check_keywords=yes&area=defau... | module: docs,triaged,module: doc infra | low | Major |
293,030,789 | godot | [3.x] Script Editor: Completion tooltip can be cut by edges of the editor | **Godot version:**
3.0 Stable
**OS/device including version:**
Windows 10
**Issue description:**
The function tooltip gets cut off at the bottom of the script editor. See the attachment.

| bug,topic:editor,confirmed,usability | low | Major |
293,081,397 | pytorch | [Feature Request] Extract glimpses from a batch of images (as in tf.image.extract_glimpse) | I think something similar to Tensorflow's extract_glimpse function would be useful. I'd like to extract a single patch from an image, but I'd like to do it to a batch of images at once with control over where the patch is centered on each image. This is useful in models that select individual patches of images/feature ... | triaged,module: vision,function request | low | Major |
293,204,680 | pytorch | Speed up data loading for `TensorDataset` if the underlying dataset supports index by a list of indices | Looking at https://github.com/pytorch/pytorch/blob/5b43c22f73279c67084a2357a489420c705cb84f/torch/utils/data/dataloader.py#L259
The loader fetches one row at a time of the data set, and then combine them into a minibatch. It is quite inefficient if the underlying data set already supports indexing by a list of indic... | module: performance,module: dataloader,triaged | low | Minor |
293,220,925 | go | proposal: spec: introduce structured tags | This proposal is for a new syntax for struct tags, one that is formally defined in the grammar and can be validated by the compiler.
## Problem
The current struct tag format is defined in the spec as a string literal. It doesn't go into any detail of what the format of that string might look like. If the user someh... | LanguageChange,Proposal,LanguageChangeReview | high | Critical |
293,292,611 | flutter | Add an example of a dynamically-updatable Simulation subclass | I'm trying to build a simple app which animates a red circle following the user's finger as it's dragged vertically on the screen.
The problem I'm having is that the animation stops completely while the finger is dragged across the screen. As soon as dragging stops, the animation resumes normally.
I believe the pro... | framework,a: animation,d: api docs,c: proposal,P3,team-framework,triaged-framework | low | Major |
293,297,130 | flutter | Background text contrast should be increased in Date and time pickers | I got that piece of feedback from an a11y review. Are we following material guidelines here? | framework,f: material design,a: accessibility,f: date/time picker,c: proposal,P2,team-design,triaged-design | low | Minor |
293,337,440 | vscode | [json] schema Validation/Intellisense very slow when JSON deep and Schema Complex | <!-- Do you have a question? Please ask it on https://stackoverflow.com/questions/tagged/vscode. -->
In my project we design an API that allows people to define web pages in json using a bunch of nested components. We have schema files for all components and how to combine them. When merged into 1 schema file it bec... | bug,freeze-slow-crash-leak,json | low | Critical |
293,349,921 | TypeScript | Incorrect type inference for array rest assignment and inability to add annotation | <!-- π¨ STOP π¨ π¦π§π’π£ π¨ πΊπ»πΆπ· π¨ -->
<!--
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker.
Please help us by doing the following steps before logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the CONT... | Bug | low | Critical |
293,367,860 | vscode | searching for "IntelliSense" or "completions" doesn't provide expected result | I had someone ask how to turn off completions for Dockerfiles and it turns out the setting `editor.quickSuggestions` controls whether or not the completion list shows up.
``` json
// Controls if suggestions should automatically show up while typing
"editor.quickSuggestions": {
"other": true,
"commen... | bug,settings-editor,confirmed,settings-search | low | Major |
293,459,753 | rust | Unergonomic structured suggestions in rustc | While checking `span_help`s that could be `span_suggestion` I noticed that rustc contains lots of code similar to
```rust
match fcx.tcx.sess.codemap().span_to_snippet(self.cast_span) {
Ok(s) => {
err.span_suggestion(self.cast_span,
... | C-cleanup,A-diagnostics,T-compiler | low | Minor |
293,519,989 | angular | [Feature request] router resolver should be cancellable | <!--
PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION.
ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION.
-->
## I'm submitting a...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (a behavior that used to work and stopp... | feature,freq3: high,area: router,feature: under consideration,feature: votes required | medium | Critical |
293,555,084 | vscode | Separate tab size and indent size | Visual Studio Code have not appear to have the ability to do the Tools->Options Tab settings of Visual Studio Professional where you can specify that tabs are 8 spaces but the indent size if 4? All our code uses that style and many other editors let you do this, but Visual Studio Code doesn't seem to support this. I've... | feature-request,editor-core | high | Critical |
293,583,217 | pytorch | MultiGPU hangs Titan Xp in multiprocessing/queue.py | PyTorch GitHub Issues Guidelines
--------------------------------
We like to limit our issues to bug reports and feature requests. If you have a question or would like help and support, please visit our forums: https://discuss.pytorch.org/
If you are submitting a feature request, please preface the title with [f... | module: multiprocessing,module: cuda,triaged,module: macos | medium | Critical |
293,600,274 | rust | In debug mode, print a message for attempted unwind past FFI call | See https://github.com/rust-lang/rust/issues/47616 and https://github.com/rust-lang/rust/pull/46833 . Rust now generates an abort rather than attempting to unwind through an FFI call. In debug mode, could we generate a friendly error message explaining that, rather than just aborting? (In release mode we should continu... | C-enhancement,A-diagnostics,T-compiler | low | Critical |
293,630,879 | rust | Editing proc-macro crate = undefined symbol | Note: This is with incremental-comp turned off, and a compiler built yesterday.
Occasionally when working on Diesel's codegen crates, I'll get an error like this:
```
error: dlsym(0x113560e00, __rustc_derive_registrar__55df2b44c5129c66de0914ff53563457_89): symbol not found
--> diesel/src/lib.rs:121:1
|
... | A-macros-2.0,C-bug | low | Critical |
293,639,360 | rust | "errror: reference to '...' is ambiguous" message in LLDB | When I try to print a local variable in LLDB, e.g. with `po foo`, and there's a function with the same name, I get this message:
```
error: reference to 'foo' is ambiguous
candidate found by name lookup is 'foo'
candidate found by name lookup is 'some_module::some_struct::{{impl}}::foo'
``` | C-enhancement,T-dev-tools | low | Critical |
293,640,047 | vscode | [json] improve property suggestions with oneOf | <!-- Do you have a question? Please ask it on https://stackoverflow.com/questions/tagged/vscode. -->
<!-- Use Help > Report Issue to prefill these. -->
- VSCode Version: Version 1.20.0-insider
- OS Version: 10.13.3
Steps to Reproduce:
1. Use this JSON schema
```json
{
"$schema": "http://json-schema.... | feature-request,json | medium | 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.