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 |
|---|---|---|---|---|---|---|
324,212,268 | TypeScript | In JS, prototype-assignment methods can't find method-local type parameters | ```js
/**
* @constructor
* @template K, V
*/
var Multimap = function() {
/** @type {!Map.<K, !Set.<!V>>} */
this._map = new Map();
};
/**
* @param {!S} o <------ error here, cannot find name 'S'
* @template S
*/
Multimap.prototype.lowerBound = function(o) {
};
```
**Expected behavior:**
No ... | Bug,Domain: JSDoc,Domain: JavaScript | low | Critical |
324,280,512 | go | x/build/cmd/gitmirror: lock conversations on GitHub commits | Occasionally a GitHub user will post a comment on a commit. Frequently these are spam which leads to nuisance emails generated if you watch the repo. Very occasionally these are requests for help, which currently require a human to reply, reminding the OP to raise an issue. This also generates nuisance emails.
I pro... | Builders,Proposal,Proposal-Accepted,NeedsFix,FeatureRequest | low | Major |
324,301,876 | electron | Feature Request: Add query methods for Visual/Layout ZoomLevelLimits | **Is your feature request related to a problem? Please describe.**
The related PR - Microsoft/vscode#49858 (Issue: Microsoft/vscode#48357) - The UI setting of the zoom level was unbounded, although the actual zoom level has clear limits (`+9` <-> `-8`).
We use the `webFrame` module of `electron` the get the zoo... | enhancement :sparkles: | low | Critical |
324,316,303 | pytorch | Caffe2 network exported from ONNX does not initialize the model inputs | ## Issue description
When exporting an ONNX model to Caffe2 with the [conversion tool](pytorch/pytorch/blob/master/caffe2/python/onnx/bin/conversion.py), the resulting init net does not initialize the model inputs. When running this network in Caffe2, you therefore get the error `Encountered a non-existing input blo... | caffe2 | low | Critical |
324,328,682 | vscode | Git - Support Co-Authored-By | Issue Type: <b>Feature Request</b>
Github introduced a convention where the commit message contains a list of co-authors, for use when pairing.
Example:
```
commit 032db38255275dd7372f575e3d06947c878ef4c6
Author: Tommy Brunn <foo@gmail.com>
Date: Thu May 17 10:21:16 2018 +0200
Encode int64
C... | help wanted,feature-request,git | medium | Major |
324,357,767 | kubernetes | StatefulSet with long name can not create pods | **Is this a BUG REPORT or FEATURE REQUEST?**:
/kind bug
**What happened**:
Creating a StatefulSet with a name containing 57 characters resulted could not start any pods as kubernetes added the label "controller-revision-hash" to the pod which apparently contains the StatefulSet name and a hash appended.
The l... | kind/bug,sig/apps,lifecycle/frozen,needs-triage | medium | Critical |
324,369,541 | godot | Ragdoll / Physical Bones issue | As described in #11973
I've attached an example project below:
[Ragdoll Test.zip](https://github.com/godotengine/godot/files/2016597/Ragdoll.Test.zip)
Example contains 1 scene with 2 skeletons.
First example - a simple worm skeleton that contorts wildly.
Second Example - Robot from 3D platformer, by default I've... | bug,confirmed,topic:physics,topic:3d | medium | Major |
324,395,107 | three.js | Improved Alpha Testing via Alpha Distributions | Improved alpha testing in mipmapped texture hierarchies via alpha distributions, rather than averaging.
http://www.cemyuksel.com/research/alphadistribution/
http://www.cemyuksel.com/research/alphadistribution/alpha_distribution.pdf | Enhancement | low | Minor |
324,506,615 | rust | Confusing error message when using Self in where clause bounds errornously | The source `trait SelfReferential<T> where T: Self {}` gives the error
```
error[E0411]: expected trait, found self type `Self`
--> src/main.rs:13:35
|
13 | trait SelfReferential<T> where T: Self {}
| ^^^^ `Self` is only available in traits and impls
```
This is con... | C-enhancement,A-diagnostics,A-trait-system,T-compiler,D-papercut | low | Critical |
324,506,658 | rust | Calling `borrow_mut` on a `Box`ed trait object and passing the result to a function can cause a spurious compile error | This code does not compile:
```rust
use std::borrow::BorrowMut;
pub trait Trait {}
pub struct Struct {}
impl Trait for Struct {}
fn func(_: &mut Trait) {}
fn main() {
let mut foo: Box<Trait> = Box::new(Struct{});
func(foo.borrow_mut());
}
```
However, if you use `as` to be clear on what yo... | A-lifetimes,T-compiler,C-bug,T-types,A-trait-objects | low | Critical |
324,522,844 | pytorch | Only one thread is used on macOS (super slow on CPU) | ## Issue description
Computations on my macbook's CPU are extremely slow.
`torch.get_num_threads()` always says 1, and `torch.set_num_threads(n)` has no effect.
I also tried building from source using the workaround described [here](https://github.com/pytorch/pytorch/issues/6328#issuecomment-383290539) in orde... | triaged,module: macos,module: multithreading | medium | Critical |
324,552,759 | angular | Calling formGroup.updateValueAndValidity() does not update child controls that have `onUpdate` set to `'submit'` | <!--
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,freq1: low,area: forms,state: needs more investigation,P4 | low | Critical |
324,591,315 | vscode | Support syntax highlighting with tree-sitter | Please consider supporting [tree-sitter](https://github.com/tree-sitter/tree-sitter) grammars in addition to TextMate grammars. TextMate grammars are incredibly difficult to author and maintain and impossible to get right. The over 500 (!) issues reported against https://github.com/Microsoft/TypeScript-TmLanguage are a... | feature-request,languages-basic,tokenization | high | Critical |
324,600,855 | go | x/build/maintner: growing files are not cleaned up | When the full file is downloaded, the corresponding growing file is not removed, so over time growing files accumulate. For example this is my cache directory at the moment:
```
[...]
0033.7b5b6f92e2eecdbfcfb06d7ed7a4f95f66092b2bb3693f41407bb546.mutlog
0034.435067e2842b0a7363a09a259e5aa1a2006787d95fae3a14a33b79b2... | help wanted,Builders,NeedsFix | low | Minor |
324,602,741 | TypeScript | [SALSA] @callback's @param tags should not require names | <!-- π¨ 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,Awaiting More Feedback,Domain: JavaScript | low | Critical |
324,615,175 | opencv | I hope 2 features could be added into opencv 4.0. | 1. Can set OpenCL device by thread in program. Like cuda::setDevice().
2. Adapt more functions for CUDA or OpenCL device, e.g. findHomography, findContours...
| feature,category: ocl,RFC | low | Minor |
324,621,600 | angular | [Feature] Allow to clear Service Worker cache | <!--
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,area: service-worker,feature: under consideration | medium | Critical |
324,635,104 | TypeScript | Wrong createElementNS() type definitions | `Document.createElementNS()` allows to create a few nonexistent SVG elements. In particular, this function has signatures that allow creating `componentTransferFunction`, `textContent` and `textPositioning`, but these correspond to SVG interfaces which do not have any real element associated.
This can be easily veri... | Bug,Help Wanted,Domain: lib.d.ts | low | Major |
324,643,787 | rust | Bogus note with duplicate function names in --test / --bench mode and elsewhere. | This file:
```
#[test]
pub fn test() { }
#[test]
pub fn test() { }
```
When run with `rustc --test`.
Produces this error:
```
error[E0428]: the name `test` is defined multiple times
--> t.rs:5:1
|
2 | pub fn test() { }
| ------------- previous definition of the value `test` here
...
5 | p... | A-diagnostics,T-compiler,C-bug | low | Critical |
324,662,294 | TypeScript | Suggestion: Allow interfaces to "implement" (vs extend) other interfaces | ## Search Terms
interface, implements
## Suggestion
Allow declaring that an interface "implements" another interface or interfaces, which means the compiler checks conformance, but unlike the "extends" clause, no members are inherited:
```
interface Foo {
foo(): void;
}
interface Bar implements Foo ... | Suggestion,Awaiting More Feedback | high | Critical |
324,663,304 | neovim | extended registers: associate more info with a register | This might be a bit of a stretch, but would you consider making available certain information about the buffer the contents of a register were copied from, so that it may be retrieved at the time the buffer contents are pasted?
Use case: copy text from buffer a and paste it into new buffer b, and since there is no f... | enhancement | low | Minor |
324,663,503 | rust | Highlighting still assumes a dark background | Like #7737.

I'm using Git's MINGW64 with a white background, and the error message is not visible at all. Using the verbose flag didn't show any further information but that `rustc` failed w... | O-windows,A-diagnostics,T-compiler,C-bug,D-papercut | low | Critical |
324,669,130 | flutter | flutter doctor issue with symbolic links ? | my /opt is linked to /data/opt and flutter doctor see 2 installations, which are the same path, and one is failing
my emulators shows up in flutter and not in android studio (which has plugin)
```
flutter doctor -v
[β] Flutter (Channel beta, v0.3.2, on Linux, locale en_CA.UTF-8)
β’ Flutter version 0.3.2 a... | tool,t: flutter doctor,P3,team-tool,triaged-tool | low | Minor |
324,699,040 | TypeScript | Generics; ReturnType<Foo> != ReturnType<typeof foo> | <!-- π¨ 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,Awaiting More Feedback | low | Critical |
324,722,858 | nvm | Add a new command nvm local which creates a .nvmrc in the cwd | This is a simple feature request - add a new command nvm local <version> which creates a new .nvmrc file with the version provided. | feature requests | low | Minor |
324,743,038 | go | time: Sleep requires ~7 syscalls | ### What version of Go are you using (`go version`)?
`go version go1.10.1 linux/amd64`
### Does this issue reproduce with the latest release?
Yes (`1.10.2`).
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/bas/.cache/go-build"
GOEXE=... | Performance,NeedsInvestigation | medium | Critical |
324,744,503 | godot | Scaled Controls don't align properly | **Godot version:** 3.0
**OS/device including version:**
**Issue description:**
Margins ignore the scale of the control.
The top-left corner is set as if the node was not scaled.
Scale: 1x1, Anchor: center right
 behaves differently? no such feature in Vim
### Steps to reproduce
```
# nvim -u NONE -i NONE --cmd 'set noarabicshape' --cmd 'syntax on'
i<C-r>=0x1F<BS>
```
### Actual behaviour
`0x` is highlighted the same before and... | bug,vimscript,syntax | low | Critical |
324,806,676 | youtube-dl | Support Xiami MV (Taobao video player) | Hi,
I'm using linux YouTube-dl to download a video from xiami.com;
the command is:
```shell
youtube-dl -v 'https://www.xiami.com/mv/K6YmI0'
```
And I got the following output:
```shell
[debug] System config: []
[debug] User config: []
[debug] Custom config: []
[debug] Command-line args: [u'-v', u'https://www... | site-support-request | low | Critical |
324,817,108 | youtube-dl | Support Better Homes and Gardens (BHG) | ## 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 |
324,817,672 | pytorch | [Caffe2][Caffe] Caffe to Caffe2 ParseError | `google.protobuf.text_format.ParseError: 78:5 : Message type "caffe.PoolingParameter" has no field named "torch_pooling".
`
So I am trying to convert from Caffe to Caffe 2 with custom pooling parameter using floor and ceil.
implemented it like this in `pooling_layer.cpp`
```
template <typename Dtype>
void Poo... | caffe2 | low | Critical |
324,865,207 | gin | how do i get response body in after router middleware? | rt
```
r := gin.Default()
r.GET("/test",handler,middleware())
func middleware() gin.HandlerFunc{
// get response body in here;
...
}
``` | question | low | Major |
324,909,575 | rust | Higher ranked trivial bounds are not checked | As can be seen in the example:
```rust
trait Trait {}
// Checked
fn foo() where i32 : Trait {}
// Not checked.
fn bar() where for<'a> fn(&'a ()) : Trait {}
```
In light of #2056 this will become just a lint, but still we should lint in both cases rather than just the first. This would be fixed by having well-fo... | C-enhancement,A-trait-system,T-compiler,T-types,S-types-tracked,A-higher-ranked | low | Critical |
324,961,942 | electron | Electron defaults to en-US and MM/dd/YY date formats regardless of system settings | * Electron Version: 2.0.0, 4.2.5
* Operating System (Platform and Version): Windows 10
* Last known working Electron version: Unknown
**Expected Behavior**
Electron should default to the OS's current culture/locale and date format settings.
**Actual behavior**
Electron defaults to en-US and the MM/dd/YY forma... | platform/windows,bug :beetle:,blocked/upstream β,2-0-x,4-2-x,5-0-x,6-1-x,7-1-x,10-x-y,stale-exempt | high | Critical |
324,978,186 | pytorch | Inserting a tensor into a python dict causes strange behavior | Reported from https://discuss.pytorch.org/t/why-tensor-is-hashable/18225
```
T = torch.randn(5,5)
c = hash(T) # i.e. c = 140676925984200
dic = dict()
dic[T] = 100
dic[c]
RuntimeError: bool value of Tensor with more than one value is ambiguous.
```
I'm not sure if we support using Tensors as keys in python... | todo,module: nn,triaged | medium | Critical |
325,023,266 | pytorch | Conv3D can be optimized for cases when kernel is spatial (probably) | While using 3D CNNs we may need to use kernels with temporal dimension 1 (i.e. 1xHxW kernel), example 3D Resnet.
It would be similar to using a 2D Conv on reshaped input. What I have observed is that if i reshape, then do a 2D conv and then reshape back I get quicker results than 3D conv (which is maybe not very sur... | module: performance,module: convolution,triaged | low | Minor |
325,047,510 | flutter | Letβs Rewrite Buildroot | The current buildroot was forked from Chromium many years ago. Due to different project priorities, a lot of features were tacked on in an entirely ad-hoc fashion. Changing project priorities and the lack of a clear owner has left a lot of unused cruft in the source tree.
For instance, there are definitions for plat... | team,engine,P2,team-engine,triaged-engine | low | Major |
325,047,950 | TypeScript | Support @param tag on function type | ## Examples
```ts
/**
* @param a A doc
* @param b B doc
*/
type F = (a: number, b: number) => number;
```
Hover over `a` or `b` -- I would expect to see parameter documentation.
It would also be nice to get it at `a` in `const f: F = (a, b) => a + b;`. | Suggestion,In Discussion,Domain: JSDoc,Domain: Signature Help,Domain: Quick Info | low | Minor |
325,064,131 | go | net/http: investigate and fix uncaught allocations and regressions | I just made a fix for https://golang.org/issue/25383 with https://go-review.googlesource.com/c/go/+/113996 and that CL just puts a bandaid on the issue which was a regression that was manually noticed by @Quasilyte.
The real issue as raised by @bradfitz is that there have been a bunch of allocations and regressions... | Performance,NeedsInvestigation | low | Major |
325,075,565 | go | x/tools: write release tool to run your package's callers' tests | In https://github.com/golang/go/issues/24301#issuecomment-390788506 I proposed in a comment:
> We've been discussing some sort of `go release` command that both makes releases/tagging easy, but also checks API compatibility (like the Go-internal `go tool api` checker I wrote for Go releases). It might also be able t... | NeedsFix | medium | Critical |
325,087,482 | pytorch | [Caffe2] Align Element-Wise Ops Broadcasting to Numpy | - [x] Add
- [x] Div
- [x] Mul
- [ ] Pow
- [x] Sub
- [ ] And
- [ ] Or
- [ ] Xor
- [x] Equal
- [x] Greater
- [x] Less
- [ ] Gemm
- [ ] PRelu | caffe2 | low | Minor |
325,131,988 | angular | bug happened when animations work with ng-content | <!--
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,P3 | medium | Critical |
325,134,333 | flutter | Circular Progress Indicator CPU Spike | My Flutter application heats up my MacBook Pro Late 2015 15" whenever I use a Circular Progress Indicator on the Android Emulator (Running Nougat)
## Steps to Reproduce
<!--
Please tell us exactly how to reproduce the problem you are running into.
Please attach a small application (ideally just one ... | framework,f: material design,c: performance,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design | low | Major |
325,341,009 | flutter | Support TextSpan in TextFields | Android's `EditText` and `TextView` both support rich text spans.
But in Flutter, only `RichText` widget support rich text spans.
`TextField` should support rich text spans natively using `TextSpan`.
Android example of using text span in edit text component:

- Use the *Preview* tab to see what your issue will actually look like
... | account-needed | low | Critical |
325,378,167 | vscode | Intellisense tooltip with filter category like Visual Studio |

It would be awesome if in the moment to bring the intellisense of properties or classes on Typescript and C# or other language we can filter this like the little icons on the bottom of the tooltip as visual studio,
o... | feature-request,suggest | high | Critical |
325,391,243 | TypeScript | Add `SharedWorker` to the library | Details in https://developer.mozilla.org/en-US/docs/Web/API/SharedWorker
This should work
```ts
var myWorker = new SharedWorker('worker.js');
``` | Bug,Help Wanted,Domain: lib.d.ts | low | Major |
325,403,852 | electron | serviceWorkerRegistration.showNotification does not work | * Electron Version: 1.8.x - 2.x
* Operating System (Platform and Version): Win, Linux, MacOSX
* Last known working Electron version: no
**Expected Behavior**
notification should be shown
**Actual behavior**
notification not shown
**To Reproduce**
here example: https://github.com/dregenor/showNotification.... | enhancement :sparkles:,platform/all,2-0-x,5-0-x,6-0-x,6-1-x,9-x-y,11-x-y | medium | Major |
325,474,335 | pytorch | [feature request] Add Local Contrast Normalization | ## Issue description
As mentioned in this paper :- http://yann.lecun.com/exdb/publis/pdf/jarrett-iccv-09.pdf
I noticed that Local Response Norm is present. This is will be a good addition too.
I have an implementation ready and can create a PR soon, if approved.
cc @albanD @mruberry | module: nn,triaged,enhancement | low | Minor |
325,508,978 | opencv | JVM crash while reading from camera | ##### System information (version)
- OpenCV => 3.4.1
- Operating System / Platform => OpenSUSE Leap
- Compiler => gcc 4.8.5
##### Detailed description
```
uvcvideo: Failed to query (GET_CUR) UVC control 4 on unit 1: -110 (exp. 4).
uvcvideo: Failed to query (GET_CUR) UVC control 3 on unit 1: -110 (exp. 1).
li... | bug,category: videoio(camera) | low | Critical |
325,529,323 | pytorch | [Caffe2] Fail to build after upgrading to cuda 9.2 | ## Issue description
I am baffled by this actually (probably because I don't understand cmake very well). After I upgraded to cuda-9.2, wiped out the whole build directory, and reran the build flow, Caffe2 cannot be run:
`WARNING:root:Debug message: libcurand.so.9.1: cannot open shared object file: No such file or... | caffe2 | low | Critical |
325,557,821 | TypeScript | Assume arity of tuples when declared as literal | ## Search Terms
tuples, length, arity
## Suggestion
Now that #17765 is out I'm curious about if we could change the arity of tuples declared as literals. This was proposed as part of #16896 but I thought it might be better to pull this part out to have a discussion about this part of that proposal.
With fixed... | Suggestion,Revisit | medium | Critical |
325,590,018 | pytorch | [feature request] Simple and Efficient way to get gradients of each element of a sum | For some application, I need to get gradients for each elements of a sum.
I am aware that this issue has already been raised previously, in various forms ([here](https://discuss.pytorch.org/t/gradient-w-r-t-each-sample/1433/2), [here](https://discuss.pytorch.org/t/efficient-per-example-gradient-computations/17204), [h... | feature,module: autograd,triaged | medium | Major |
325,672,776 | pytorch | detectron net create error | I changed detectron pkl model to caffe2 pb model,
errors happened when called
CAFFE_ENFORCE(workspace.CreateNet(model.predict.net));
terminate called after throwing an instance of 'caffe2::EnforceNotMet'
what(): [enforce fail at operator.cc:185] op. Cannot create operator of type 'GenerateProposals' on the devi... | caffe2 | low | Critical |
325,675,456 | vue | π Vue reactivity engine and MobX π | Hey,
Vue is cool, over at React land MobX ( https://github.com/mobxjs/mobx/ ) takes a similar approach by defining getters/setters.
The architectural nature of Vue apps is much closer to React+MobX than the typical React architecture and MobX is used and trusted by some [big companies](https://github.com/mobxjs/... | discussion | low | Major |
325,710,526 | angular | Expose '_loadedConfig' in a public way. | <!--
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,area: router,router: lazy loading,feature: under consideration | medium | Critical |
325,721,098 | go | all: some pkg tests fail for -test.count>1 but pass with -test.count=1 | ### What version of Go are you using (`go version`)?
tip
### Does this issue reproduce with the latest release?
yes
### What operating system and processor architecture are you using (`go env`)?
linux ppc64le
### What did you do?
Trying to run some tests multiple times to determine variations in times, but... | NeedsInvestigation | low | Critical |
325,803,651 | rust | rewrite `liveness` analysis to be based on MIR | The current liveness code does a simple liveness computation (actually a few such things) and tells you when e.g. assignments are dead and that sort of thing. It does this on the HIR. It would be better to do this on the MIR β in fact, the NLL computation is already computing liveness across all of MIR, so we ought to ... | C-cleanup,T-compiler,A-MIR | medium | Major |
325,812,670 | rust | Closure type mismatch on higher-ranked bounds | In the following code, identical impls for a concrete type, a `fn` type, and a closure exist yet the only the closure fails to meet the higher-ranked bound:
```rust
trait FnLt<'a> {
fn apply(self, input: &'a u8) -> &'a u8;
}
// Struct impl
struct Foo;
impl<'a> FnLt<'a> for Foo {
fn apply(self, input... | A-lifetimes,A-closures,T-compiler,C-bug,A-higher-ranked | low | Critical |
325,831,545 | TypeScript | Should resolveJsonModule resolve json files without a .json file extension? | <!-- π¨ 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,Awaiting More Feedback | low | Critical |
325,849,159 | rust | LTO ignored for all crate types when building multiple crate types and one doesn't support it | https://github.com/rustwasm/rust_wasm_template has
```toml
[lib]
crate-type = [
# Build a cdylib to make a `.wasm` library.
"cdylib",
# Build an rlib for testing and benching.
"rlib"
]
[profile.release]
lto = true
```
The `lto = true` is ignored for everything because rlibs don't support LTO. ... | T-compiler,C-bug,A-LTO | low | Critical |
325,860,334 | pytorch | [feature request] Add cudaification API for distributions | Right now it's possible to have a distribution "live" on the GPU, so that you can sample to directly get cuda tensors. You'll have to do something like the following though:
N = Normal(0.0, 1.0)
N.loc = N.loc.cuda()
N.scale = N.scale.cuda()
Alternatively, you can directly initialize the parameters o... | module: distributions,triaged,enhancement | medium | Critical |
325,861,219 | kubernetes | Missing proto struct tags incompatible with latest golang/protobuf changes | > /kind bug
**What happened**:
Imported proto files and tried to use with latest `golang/protobuf` lib. https://github.com/golang/protobuf/blob/master/proto/table_unmarshal.go#L331 mandates that all struct fields have proto tags. The TypeMeta fields in kubernetes structs do not contain a proto tag, https://github.... | kind/bug,sig/api-machinery,lifecycle/frozen | medium | Critical |
325,896,013 | javascript-algorithms | What about rope? | I found this repo while looking for a good example of [rope](https://en.wikipedia.org/wiki/Rope_(data_structure)). But I can't find one :( | enhancement | low | Minor |
325,897,408 | flutter | AnimatedIcons should have Cupertino-specific versions | The Cupertino lib should include AnimatedIcons similar to the ones provided for Material that animated from the hamburger menu to the Cupertino style back button and vice versa.
https://docs.flutter.io/flutter/material/AnimatedIcons-class.html, specifically talking about `menu_arrow` and `arrow_menu`, which should ... | c: new feature,framework,f: material design,a: fidelity,P2,team-design,triaged-design | low | Major |
325,901,979 | pytorch | Checkpointing is slow on nn.DataParallel models | @wandering007 pointed out this issue in https://github.com/gpleiss/efficient_densenet_pytorch/blob/master/models/densenet.py
I have a model that uses checkpointing on several layers. On a single GPU, the model runs fairly fast (e.g. only a 15-20% overhead). On multiple GPUs, using an `nn.DataParallel` @wandering007 ... | module: performance,module: checkpoint,triaged | low | Major |
325,918,670 | vue | VueSSRServerPlugin produces a slow-to-parse JSON for large projects | ### What problem does this feature solve?
Makes for a better development experience with vue SSR.
I was looking into why it takes 500ms to render an single-component page from the server in our fairly large application and found an interesting issue. Webpack creates ~40 bundles for us. Altogether, these weigh ~20MB... | improvement | low | Critical |
326,014,159 | javascript-algorithms | A* algorithm? | Hey! This repo is awesome! Nice job!
While I was reading through the algorithms, I found weird that the [A* algorithm](https://en.m.wikipedia.org/wiki/A*_search_algorithm) was missing, which is one of the few I know.
I'm just gonna leave this as a suggestion, sorry if I can't do a pull request! | enhancement | low | Major |
326,015,888 | pytorch | OOM Exception when using torch.nn.grad.conv2d_weight (apparently because CuDNN backwards is not used) | ## Issue description
I encountered an out of memory exception when using torch.nn.grad.conv2d_weight even though using torch.nn.functional.conv2d works (forward and backward, and I assume the same calculations done in torch.nn.grad.conv2d_weight are done at some point during conv2d()'s backward pass).
## Code exa... | module: performance,module: cudnn,module: memory usage,module: convolution,triaged,has workaround | low | Major |
326,074,198 | pytorch | LMDB read error for Mnist | If you have a question or would like help and support, please ask at our
[forums](https://discuss.pytorch.org/).
If you are submitting a feature request, please preface the title with [feature request].
If you are submitting a bug report, please fill in the following details.
## Issue description
Provide a s... | caffe2 | low | Critical |
326,078,247 | TypeScript | Comments before a decorator produces a weird comma in the emitted JS output | **TypeScript Version:** 3.0.0-dev.20180522
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** decorator comma comment
**Code**
```ts
function decorator1(target) {}
function decorator2(target) {}
function decorator3(target) {}
@decorator1
/... | Bug,Domain: Comment Emit | low | Minor |
326,084,957 | go | os: ModeSetgid has no effect while using with Mkdir() on Linux | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go version go1.9.4 linux/amd64
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
GOARCH="am... | help wanted,OS-Linux,NeedsFix | medium | Critical |
326,159,353 | godot | CSG shapes textures are mapped different than normal meshes | **Godot version:**
3.1.dev.5b11d16
**OS/device including version:**
Win10 64 bit. Geforce gtx 950M
**Issue description:**
added texture to a CSGcube and it did not align as you would expect. Works fine if you create a CSGmesh

- Vim (version: 8.1) behaves differently? Yes
- Operating system/version: Win10 17672
- Terminal name/version: conhost
- `$TERM`: N/A
### Steps to reproduce us... | status:blocked-external,platform:windows,tui | medium | Critical |
326,194,263 | opencv | opencv js - cv.resize causes exceptions when fx and fy randomly changed very fast | ##### System information (version)
- OpenCV => 3.4.1
- Operating System / Platform => JavaScript
- Compiler => Emscripten SDK
##### Detailed description
Function cv.resize is very unstable and causes all Mat to throw exception, when trying to get Mat.data.
**Situation:**
An image should be scaled to some ... | incomplete,category: javascript (js) | low | Critical |
326,218,277 | TypeScript | ts.createJsxOpeningElement throws `Debug Failure. False expression.` | <!-- π¨ 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,API | low | Critical |
326,223,402 | go | x/tools/go/buildutil: make ExpandPatterns support all go tool patterns | This TODO exists within the ExpandPatterns function:
// TODO(adonovan): support other features of 'go list':
// - "std"/"cmd"/"all" meta-packages
// - "..." not at the end of a pattern
// - relative patterns using "./" or "../" prefix
I'd very much like to use `golang.org/x/tools/go/buildutil` instead of `... | Tools | low | Minor |
326,335,491 | flutter | flutter_image handling of exceptions from http clients not allowing retries. | In the flutter_image library, the FetchStrategyBuilder.build method returns a FetchStrategy that requires a non-null FetchFailure.httpStatusCode to return FetchInstructions.attempt any time after the first call to FetchStrategyBuilder.build. However, in NetworkImageWithRetry._loadWithRetry, when the http client throws... | package,team-ecosystem,P3,p: flutter_image,triaged-ecosystem | low | Critical |
326,339,414 | godot | Light2D "Add" mode does not appear to be additive | **Godot version:**
3.0.2
**OS/device including version:**
Windows 10.0.16299; Solus Linux
**Issue description:**
When I create a Light2D in "Add" mode and with energy 1, and I apply it to a texture, the light texture does not appear to be applied linearly. In particular, if the background texture is black,... | discussion,topic:rendering | low | Minor |
326,340,888 | flutter | flutter tool should check for consistency between --local-engine, --debug/profile/release and --target-platform | For example, if you use an ARM32 local engine, don't specify a target-platform and have a Pixel connected, the target-platform will be auto detected as ARM64, flutter tool won't pass --no-use-integer-division to gen_snapshot, and the engine will crash with a SIGILL on sdiv.
@cbracken | team,tool,P2,team-tool,triaged-tool | low | Critical |
326,346,727 | go | x/text/internal/colltab: numeric.go should not skip "0" when is followed by a non-number | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go1.8.5
### Does this issue reproduce with the latest release?
yes
### What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOH... | NeedsInvestigation,FixPending | low | Critical |
326,358,376 | flutter | [google_maps_flutter] Plugin Crashes Without a Helpful Error message on iOS If No API Key Specified | https://github.com/flutter/plugins/tree/master/packages/google_maps_flutter
If you don't include the API key in an iOS app the google_maps_flutter plugin will crash hard with the following with no indication as to why:
```
*** First throw call stack:
(
0 CoreFoundation 0x000000010c... | c: crash,platform-ios,p: maps,package,a: error message,has reproducible steps,P2,c: fatal crash,found in release: 2.0,found in release: 2.2,team-ios,triaged-ios | low | Critical |
326,364,894 | pytorch | torch.Tensor.new() disappeared in 0.4 doc | There are only `torch.new_*()` in 0.4 doc now.
But I can still use this function, no deprecated warning, and I do not found any deprecated note about it in 0.4 release too.
cc @jlin27 @mruberry | module: docs,triaged,module: deprecation,module: tensor creation | low | Minor |
326,367,177 | pytorch | [caffe2] how to using the Mul operator to mul the input vetor | Hi! In my project, i need to mul some blobs [x1,x2,x3,x4],
but i found that the Mul opeartor only support 2 inputs in caffe2,
Any using the loop will cost too much memory of my graphics card,
So is there any good solution to help this problem? Thank you !
| caffe2 | low | Minor |
326,561,567 | TypeScript | Missing type description in suggestion popup | Note, this issue was discovered while trying to reproduce https://github.com/Microsoft/TypeScript/issues/24408.
**TypeScript Version:** `typescript@3.0.0-dev.20180522`
**Code**
```ts
// x.ts
import { Enum } from '~/types'
type ObjectFromEnum<T, R extends string = Enum> = {
[S in R]: T
}
export const... | Bug | low | Minor |
326,591,219 | go | x/build/cmd/gopherbot: follow-up backport comments are ignored | In https://github.com/golang/go/issues/25242#issuecomment-392110768 I ask for gopherbot to create a backport for 1.9 as well (the original backport was only for 1.10). But an issue was not created (had to create it manually).
/cc @FiloSottile | help wanted,Builders,NeedsFix,Friction | low | Major |
326,644,190 | pytorch | Feature Request: Logistic Distribution | Could we have logistic distribution in PyTorch?
https://github.com/tensorflow/tensorflow/blob/r1.8/tensorflow/contrib/distributions/python/ops/logistic.py
cc @fritzo @neerajprad @alicanb @nikitaved @brianjo @mruberry | module: distributions,feature,triaged | low | Major |
326,647,955 | go | runtime: support resuming a single goroutine under debuggers | [CL 109699](https://golang.org/cl/109699) added support for debugger function call injection, but has an annoying limitation: it requires that the debugger resume the entire Go process after injecting the function call (and, to inject into a runnable but not running goroutine, it requires resuming the entire process ev... | NeedsInvestigation,Debugging,compiler/runtime | low | Critical |
326,681,864 | pytorch | [PyTorch] weight tensor dimension assumption | Now in both inits <del>and spectral norm</del>, we assume that dim `0` of `weight` is the output feature dim. However, this is incorrect for `ConvTranspose`.
We need to figure out how to properly handle those.
cc @albanD @mruberry | module: nn,triaged | low | Major |
326,696,662 | go | math/big: improve threshold calibration | For multiplication and squaring we use different algorithms depending on the input length. We currently have 3 threshold constants to decide which algorithm to use. These are calibrated with TestCalibrate.
This calibration takes multiple minutes to run and the outcome doesn't seem to be that reliable. Last noticed i... | Performance,NeedsInvestigation | low | Major |
326,717,494 | rust | `<Default>::default()` makes the compiler very mad at me | Suppose I learned
- That `[f32; 2]::deserialize(deserializer)` doesn't work, and I need to do `<[f32; 2]>::deserialize(deserializer)` instead (thank you https://github.com/rust-lang/rust/pull/46788), and
- That I can do `Default::default()`, instead of `ConcreteType::default()`
If I combine those two things togeth... | A-frontend,A-diagnostics,A-trait-system,T-compiler,C-feature-request,WG-diagnostics,D-verbose | low | Critical |
326,744,336 | rust | Tracking issue for RFC 1872: `exhaustive_patterns` feature | This tracks the `exhaustive_patterns` feature which allows uninhabited variant to be omitted
(bug report: #12609; relevant RFC: rust-lang/rfcs#1872).
```rust
fn safe_unwrap<T>(x: Result<T, !>) -> T {
match x {
Ok(y) => y,
}
}
```
- [x] Implementation (separated out from `never_type` in #47... | T-lang,B-unstable,C-tracking-issue,A-patterns,A-exhaustiveness-checking,S-tracking-needs-summary,F-exhaustive_patterns | high | Critical |
326,744,435 | opencv | Android OpenCV 3.4.1 - Cannot call stitching methods in JNI C++ methods | <!--
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).
This is a template helping you to create an issue which can be... | feature,category: java bindings,category: stitching | low | Critical |
326,747,535 | rust | wasm32-unknown-unknown does not export $start. | When compiling a binary crate to wasm using the `wasm32-unknown-unknown` target, a `$start` function is not inserted into the resulting wasm binary,
This is a continuation of https://github.com/rust-lang-nursery/rust-wasm/issues/108 | O-wasm,C-bug | low | Minor |
326,764,409 | electron | Extend DataTransfer object to support custom / native drag & drop formats | **Is your feature request related to a problem? Please describe.**
My app needs the ability to send custom data formats via drag and drop to a legacy win32 application. Using the [datatransfer](https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/DataTransfer) object does not allow adding native custom format... | enhancement :sparkles: | low | Minor |
326,827,265 | go | proposal: spec: treat s[-1] as equivalent to s[len(s)-1] | # Overview
This is a backwards-compatible language change proposal. It will not be as thorough as it could be, since I do not think it should be adopted. I am writing it up merely for future reference.
I propose to treat negative constant literals in slicing and indexing expressions as offsets from the end of the... | LanguageChange,Proposal,LanguageChangeReview | medium | Critical |
326,838,688 | youtube-dl | Add Site Support for addatimes | ## 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 |
326,838,924 | neovim | build/cmake: consider Hunter (vcpkg, ?) for bundled dependencies | [This thread](https://news.ycombinator.com/item?id=17163194) discusses CMake state-of-the-art.
Currently we use `ExternalProject_Add` combined with our own recipes for building external projects. This obviously is painful to maintain because if an upstream project changes it may break our bundled-deps build when we... | enhancement,build | medium | Major |
326,844,294 | tensorflow | Prebuilt binaries do not work with CPUs that do not have AVX instruction sets. | As announced in release notes, TensorFlow release binaries version 1.6 and higher are prebuilt with AVX instruction sets. This means on any CPU that do not have these instruction sets either CPU or GPU version of TF will fail to load with any of the following errors:
- `ImportError: DLL load failed:`
- A crash wit... | stat:community support,type:feature | high | Critical |
326,856,232 | rust | Tracking issue for RFC 2294, "if let guard" | This is a tracking issue for the RFC "if let guard" (rust-lang/rfcs#2294).
**Steps:**
- [x] Implement the RFC (implemented in #79051)
- [ ] Adjust documentation ([see instructions on forge][doc-guide])
- [ ] Stabilization PR ([see instructions on forge][stabilization-guide])
[stabilization-guide]: https://fo... | T-lang,B-unstable,B-RFC-implemented,C-tracking-issue,F-if_let_guard,S-tracking-impl-incomplete | high | 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.