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 |
|---|---|---|---|---|---|---|
337,088,478 | vue | Allow to call original `errorHandler` when custom one defined | ### What problem does this feature solve?
When custom `Vue.config.errorHandler` defined by the user, it will stop firing original [`logError `](https://github.com/vuejs/vue/blob/c2b1cfe9ccd08835f2d99f6ce60f67b4de55187f/src/core/util/error.js#L38).
The problem is that there is no straight way to recreate `logError `... | improvement | medium | Critical |
337,101,770 | rust | Bad diagnostic for associated types when forgetting type arguments | [Given an incorrect order of associated types](https://play.rust-lang.org/?gist=c8c0e4db2b08eba0281157ef683278c3&version=stable&mode=debug):
```
type Bar = Foo<C = u32, B = bool, A = String>;
struct Foo<A, B, C> {
a: A,
b: B,
c: C
}
```
We currently identify the first argument as a type bindi... | C-enhancement,A-diagnostics,P-low,T-compiler,D-verbose | low | Critical |
337,111,534 | rust | consider fixing common regression with expansion of 2-phase borrows | The following code works without NLL but not with NLL enabled:
https://play.rust-lang.org/?gist=9b797f941b3aa419991e15fd5a2d07a0&version=nightly&mode=debug
```rust
//#![feature(nll)]
struct S {
a: &'static str,
}
fn f(_: &mut S, _: &str) {
}
fn main() {
let mut s = S {
a: "a",
... | C-enhancement,P-medium,T-compiler,A-NLL,NLL-complete | low | Critical |
337,114,853 | rust | Adding `impl Add<char> for String` breaks code (adding an impl leads to breakage due to deref coercions) | I just prepared a PR to fix #38784. I wanted to add `Add<char>` and `AddAssign<char>` impls for String. However, this breaks the following code:
```rust
let a = String::from("a");
let b = String::from("b");
a + &b;
```
([Playground](https://play.rust-lang.org/?gist=81fafb1dc39fdad9908b1e730985a589&version=nig... | A-trait-system,T-lang,A-inference,C-bug,A-coercions | low | Critical |
337,133,660 | pytorch | [feature request] freeze() for nn.Module | I want to suggest a freeze() method to freeze an already trained module, and its parameters. However, for modules like BatchNorm it is not sufficient to set requires_grad = False, because the running_mean and running_var are still updated unless the the module is set to .eval() .
Unless I am missing something, ATM,... | module: nn,low priority,triaged,enhancement | low | Major |
337,134,877 | go | all: port to Windows/ARM32 | Hi everyone, we will be submitting a patch in the near future that adds Windows/ARM32 support to GO. All but a few tests are passing, and this implementation has been used to compile GO itself and run Docker containers on Windows/ARM32. We look forward to working with the community to iron out the last remaining issues... | OS-Windows,NeedsInvestigation,arch-arm | high | Critical |
337,142,564 | go | cmd/go: module chatter hides actual errors | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go version go1.10.3 darwin/amd64 vgo:2018-02-20.1
### Does this issue reproduce with the latest release?
yes i built from source today
### What operating system and processor architectur... | NeedsInvestigation,modules | medium | Critical |
337,170,217 | rust | dead_code lint false negative when dead code in warned about dead code | ```rust
#![crate_type="dylib"]
// #![allow(dead_code)]
/* pub */ fn dead_code_test() {
#[warn(dead_code)] {
match () {
#![deny(dead_code)]
() => { fn im_dead() {} }
}
fn im_also_dead() {}
}
}
```
Despite the obvious dead code (the `im_de... | A-lints,A-trait-system,T-compiler,C-bug,L-dead_code | low | Critical |
337,214,746 | opencv | unnecessary lookup table entries | I am referring to `prefilterXSobel()` in [`calib3d/stereobm`](https://github.com/opencv/opencv/blob/master/modules/calib3d/src/stereobm.cpp#L196).
Table lookup occurs at `d0+2*d1+d2+OFS`.
`dN` is in the range `-255 .. 255` thus `d0+2*d1+d2` is in the range `-4*255 .. 4*255`.
Therefor `d0+2*d1+d2`**+`OFS`** is ... | category: calib3d,Hackathon | low | Minor |
337,231,359 | flutter | [camera] Access realtime image frames for pre-processing and effect overlays | Is it possible to access the real-time camera frame feed to do pre-processing or to be used for ML implementations like face-recognition, Image overlays, filters, etc.? | c: new feature,p: camera,package,team-ecosystem,P3,triaged-ecosystem | high | Critical |
337,232,170 | pytorch | Deployment for ios for 1.0 | I have a quick question regarding your future release for 1.0, do you guys plan on developing a converter from Pytorch models to coreML? I know Onnx.ai exist. | caffe2 | low | Minor |
337,234,387 | rust | suggest replacing dash with underscore when in-code lint name cannot be found. | I was looking at ````rustc -D help```` for additional lints to enable in one of my projects
````
anonymous-parameters allow detects anonymous parameters
bare-trait-objects allow suggest using `dyn Trait` for trait objects
... | A-diagnostics,A-trait-system,A-parser,T-compiler,C-feature-request,A-suggestion-diagnostics,D-papercut | low | Critical |
337,234,888 | rust | The recursion limit for monomorphizations are different than for macro expansions | Currently the recursion limit for monomorphization is 64 which the [toml_edit](https://github.com/ordian/toml_edit) crate ended up hitting as reported in https://github.com/Marwes/combine/issues/172 . The solution here is to manually specify a higher recursion limit via the `recursion_limit` attribute.
This does mea... | I-slow,A-macros | low | Minor |
337,237,397 | godot | Rim is broken on a particular mesh | Godot 3.0.4
Windows 10 64 bits
nVidia geForce GTX 1060
I found a case where spatial material rim light is broken, and I can't reproduce it with another mesh so far.
Basically, it makes the mesh uniformly lighter (or all white) instead of applying, well, a rim effect.
]
trace_macros(true);
macro_rules! there_is_a_bug {
( $id:ident: $($tail:tt)* ) => {
there_is_a_bug! { $($tail:tt)* }
};
}
fn main() {
there_is_a_bug! { something: more {} }
}
```
never shows *anything* becaus... | C-enhancement,A-diagnostics,A-macros,T-compiler | low | Critical |
337,270,631 | go | cmd/compile: msan cannot handle structs with padding | ### What version of Go are you using (`go version`)?
go version devel +0dc814c Sat Jun 30 01:04:30 2018 +0000 linux/amd64
### Does this issue reproduce with the latest release?
Yes.
### What operating system and processor architecture are you using (`go env`)?
linux/amd64
### What did you do?
Attem... | NeedsInvestigation,compiler/runtime | medium | Critical |
337,286,409 | TypeScript | meta: factory function inconsistencies | Related to #25220
There are quite a few inconsistencies among the factory functions:
* naming: sometimes the name doesn't really describe what it does.
* `createStatement` instead of `createExpressionStatement`: what statement does it create?
* `createBinary`: maybe binary number literal?
* `createParen... | Bug,Help Wanted,API | low | Critical |
337,303,671 | TypeScript | Why do we need to manually type unified overload signatures? | Please close if this has been asked before - nothing came up when searching.
## Search Terms
overload, function, multiple, default, combine, unify, top
## Suggestion
Today, when defining an overloaded call signature you have to manually type the implementation. Would it be possible to extend contextual type... | Suggestion,Awaiting More Feedback | low | Major |
337,323,163 | godot | Mono: Add reload icon to refresh export variables in the editor | **Godot version:**
3.0/3.1
**OS/device including version:**
All
**Issue description:**
Currently sometimes the editor already doesn't consistently reload exported variables in the editor, but another issue is when dev's are building outside of the editor using msbuild. There's no way to reload the editor to se... | enhancement,topic:dotnet | low | Minor |
337,334,626 | rust | Diagnostic `error[E0408]: variable ... is not bound in all patterns` should be more helpful with typos. | Example:
```rust
enum Lol {
Foo,
Bar,
}
fn foo(x: (Lol,Lol)) {
use Lol::*;
match x {
(Foo,Bar)|(Ban,Foo) => {}
_ => {}
}
}
fn main() {
use Lol::*;
foo((Foo,Bar));
}
```
```
error[E0408]: variable `Ban` is not bound in all patterns
--> src/main.rs:... | C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics,D-papercut,D-terse | low | Critical |
337,380,266 | TypeScript | Mapped Types Breakdown With Extends (extends / implements have inconsistent behavior, | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Bug | low | Critical |
337,413,302 | pytorch | [caffe2] how to substract the mean value ? | I have a trouble that ,how caffe2 sub the mean val:
```python
# cast to float
data = m.Cast(data_uint8, "data", to=core.DataType.FLOAT)
# sub the mean val
mean = workspace.FeedBlob("meanval", np.array(127.5))
data = m.Sub(data, "meanval", data, broadcast=1)
# scale
data = m.Scale(data, 'data', scale=float(scal... | caffe2 | low | Critical |
337,496,629 | go | x/tools/present: editable code is not sync'd between main slide and presenter slide | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go version go1.10.2 linux/amd64
### Does this issue reproduce with the latest release?
yes
### What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
... | NeedsInvestigation,Tools | low | Critical |
337,500,317 | rust | panic! source location information does not account for macro expansion | Minimal working example ([playground](https://play.rust-lang.org/?gist=87760b03b9820a3b4e8226998cc72e4e&version=stable&mode=debug&edition=2015)):
```rust
macro_rules! foo {
($e:expr) => {
bar!($e);
baz!($e);
}
}
macro_rules! bar {
($e:expr) => { assert!($e); } // line 8
}
macr... | A-debuginfo,C-enhancement,T-compiler | low | Critical |
337,579,004 | vscode | User profile | What am going to ask is huge. I know it might take a lot of work. It is not a small thing but very important for me.
I am using VS Code from day one. And during that time I have few OS reinstalled and one PC change. Every time when that happens I need to install all plugins and configure VS Code again.
Now I've r... | feature-request | medium | Critical |
337,581,361 | rust | Doc-comments inside using groups | The following is currently not permitted:
```rust
pub use third_party::{
/// Doc-comment explaining reexported entity.
some_function,
// Normal comments are allowed, though.
some_other_function,
};
```
I'm very fond of group usings, so I prefer to use them everywhere, but it is impossible in ... | T-rustdoc,A-attributes,T-compiler,C-feature-request | low | Major |
337,584,262 | vscode | [json] don't suggest top level snippet if there's already an object |
Issue Type: <b>Bug</b>
- Open one of the user snippets JSON files
- Type " to bring up the empty snippet suggestion
- Tab to insert it
The provided snippet inserts top-level curly braces, which (I don't know JSON) an existing snippet file already has, making the new snippet invalid.
```JSON
// Valid
{
... | feature-request,json | low | Critical |
337,586,991 | go | gccgo: syscall.Syscall error result is not reliable | The implementation of syscall.Syscall in the Go frontend version of the library sets `errno` to `0`, calls the C library function `syscall`, and then checks `errno`. If the final value of `errno` is not `0`, then `syscall.Syscall` returns a non-nil `error` value. This is the only documented way to check whether the C... | NeedsInvestigation | low | Critical |
337,589,375 | go | cmd/link: exporting `free` c function from c-shared library hangs executable with that library LD_PRELOADed | ### What version of Go are you using (`go version`)?
go version go1.10.2 linux/amd64
### Does this issue reproduce with the latest release?
No idea
### What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/tumdum/.cache/go-build"
GOEXE=""
GOHOSTAR... | help wanted,NeedsInvestigation,compiler/runtime | low | Critical |
337,626,984 | TypeScript | Generic methods with type parameters in generic constraints cannot be overridden | **TypeScript Version:** 3.0.0-dev.20180630
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** generic method, subclass, override, type parameter constraint
**Code**
```ts
class A {
m<T, U extends T>(t: T, u: U) { }
}
class B extends A {
... | Bug | low | Critical |
337,638,127 | TypeScript | Infer project references from common monorepo patterns / tools | Genesis: see section "Repetitive configuration" in https://github.com/Microsoft/TypeScript/issues/3469#issuecomment-400439520
## Search Terms
monorepo infer project references automatically yarn lerna workspace package.json
## Suggestion
For common monorepo managers, we should natively understand cross-proj... | Suggestion,In Discussion,Scenario: Monorepos & Cross-Project References | high | Critical |
337,690,971 | flutter | Material splash persists after leaving/reopening app | Internal: b/292548233
If the user leaves the app during a touch interaction, then reopens the app from the device home screen, the material splash is still visible. Instead, I would expect the splash to be completely gone when the app reopens.
This can happen naturally if the user taps a link in the app which bounc... | framework,f: material design,customer: mulligan (g3),has reproducible steps,P2,found in release: 3.3,found in release: 3.5,team-design,triaged-design | low | Major |
337,736,974 | godot | Deleting textures. Scene editor doesn't update sprite which was using it | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:** 3.1.dev.custom_build.ecee0c9
<!-- Specify commit hash if non-official. -->
**OS/device including version:** Windows 10 x64
<!-- Specify GPU model and... | enhancement,discussion,topic:editor | low | Minor |
337,822,617 | rust | right shift of i128i by zero fails on s390x (SystemZ) | I've set up a repository that reproduces this issue on travis (using qemu): https://github.com/gnzlbg/repro_s390x
The following code right shifts a `<1 x i128>` containing `1` by `0`. The result of the shift should be `1`, but on debug builds it is `0`, causing the following code to panic (on release the code does ... | O-SPARC,C-bug,O-SystemZ | low | Critical |
337,900,131 | pytorch | [Caffe2] Error running net train when running resnet50 | ## Issue description
I am getting the following error when training resnet50:
E0703 14:25:24.046447 34382 prefetch_op.h:110] Prefetching error basic_string::_M_construct null not valid
E0703 14:25:24.046572 34336 prefetch_op.h:83] Prefetching failed.
E0703 14:25:24.046938 34336 net_simple.cc:68] Operator failed: ... | caffe2 | low | Critical |
337,935,730 | flutter | Row/Column with CrossAxisAlignment.stretch is unclear | By answering a lot on stackoverflow I realized many peoples struggle to correctly use `CrossAxisAlignment.stretch` when we want `Row/Column` to take the least amount of cross axis size.
The solution is quite straightforward
```dart
IntrinsicHeight(
child: Row(
crossAxisAlignment: CrossAxisAlignment.... | framework,d: api docs,P2,team-framework,triaged-framework | low | Major |
337,954,214 | javascript-algorithms | Translate to russian | Hello.
I want to translate all README into Russian, are there any rules for translation? | enhancement | low | Major |
338,028,836 | go | gccgo: export data linked into binary | With gccgo,
```
$ go version
go version go1.10.3 gccgo (GCC) 9.0.0 20180622 (experimental) linux/amd64
$ gccgo --version
gccgo (GCC) 9.0.0 20180622 (experimental)
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for M... | NeedsFix | low | Major |
338,032,403 | go | cmd/compile: debug info for inlined funcs are sometimes lost | with go version devel +23ce272bb1 Mon Jul 2 17:50:00 2018 +0000 linux/amd64
<pre>
$ cat main.go
package main
import "fmt"
func main() {
x := &X{Foo: 10}
y := InlineThis(x, "bar")
fmt.Printf("Y = %+v\n", y)
}
type X struct {
Foo int
}
func InlineThis(x *X, s string)... | NeedsInvestigation,Debugging,compiler/runtime | low | Critical |
338,049,467 | nvm | NVM uses packages which failed checksum, with warning only. It should fail to install, instead. | - Operating system and version:
Mac OS/X High Sierra
- `nvm debug` output:
<details>
<!-- do not delete the following blank line -->
```sh
nvm --version: v0.33.11
$TERM_PROGRAM: Apple_Terminal
$SHELL: /bin/bash
$SHLVL: 1
$HOME: /Users/doug
$NVM_DIR: '$HOME/.nvm'
$PATH: $NVM_DIR/versions/node/v10.4.0/bin... | bugs,installing node: checksums,pull request wanted | low | Critical |
338,059,272 | go | runtime: status of relative filenames in //line directives unclear | I'd like to be able to specify relative paths in `//line` directives, but it's unclear whether this is permitted. Experimentally, it seems as though they are not. #3335 and #24183 are both related in terms of trying to specify what's allowed in the directive, but I haven't seen this specific issue mentioned.
(For `r... | Documentation,NeedsFix,compiler/runtime | low | Critical |
338,073,005 | neovim | TUI: system(), systemlist(), :! in same process-group | #8217 and #8450 describe some casualties of the change in #8107: since #8107, all processes spawned by Nvim are created in their own session (by calling `setsid()` in the child). Using `setsid()` avoids serious bugs like #6530 (orphaned processes). It's a good thing to do, and is essentially what Vim's `job_start()` d... | compatibility,job-control,tui,system | low | Critical |
338,078,848 | pytorch | [caffe2] Drop connections | Hi,
Is there a way to implement a drop connection layer in caffe2? I'm not talking of dropout.
https://stats.stackexchange.com/questions/201569/difference-between-dropout-and-dropconnect
Thanks. | caffe2 | low | Minor |
338,089,845 | rust | edition lint: migrating `extern crate` with `#[macro_use]` | The migration issue is that `#[macro_use] extern crate foo;` beings macros into scope from `foo` and `extern crate` is unidiomatic in the 2018 edition. `local_inner_macros ` is the current solution but as discussed in #50911, we're not 100% that works. | C-enhancement,A-lints,T-compiler,L-macro_use_extern_crate,A-edition-2018 | low | Major |
338,099,151 | rust | edition lint: declarations obviated by in-band lifetimes | cc https://github.com/rust-lang/rust/issues/44524
e.g., in `fn two_args<'b>(arg1: &Foo, arg2: &'b Bar) -> &'b Baz`, suggest that `<'b>` is not necessary. | A-lints,T-lang,A-edition-2018 | low | Minor |
338,181,264 | TypeScript | Set TypeScript compiler's base/working directory | It looks like TypeScript compiler resolves files relative to the location of the `tsconfig.json` file (however, I couldn't find anything about paths resolution in the official documentation).
Is there a way to specify an alternative base/working directory, which will be used for relative paths resolution?
I want ... | Suggestion,In Discussion | medium | Critical |
338,231,394 | pytorch | nvcc fatal : A single input file is required for a non-link phase when an outputfile is specified | nvcc fatal : A single input file is required for a non-link phase when an outputfile is specified
CMake Error at gloo_cuda_generated_nccl.cu.o.Release.cmake:203 (message):
Error generating
/home/lty/caffe2/build/third_party/gloo/gloo/CMakeFiles/gloo_cuda.dir/nccl/./gloo_cuda_generated_nccl.cu.o
nvcc fatal... | awaiting response (this tag is deprecated),caffe2 | low | Critical |
338,250,796 | node | Embedding: static nodejs variables are not set to default | * **Version**: v8.x (maybe any)
* **Platform**: MS Windows 7
* **Subsystem**: embedding
<!-- Enter your issue details below this comment. -->
I use nodejs to run javascript code in my application. And I have found that after running script from code, script from file will not run. It is caused by unpredicted valu... | help wanted,c++,embedding | low | Major |
338,260,169 | opencv | Failed tests perf_features2d, perf_stitching, sanity_features2d, sanity_stitching when compiled with bundled libjpeg | <!--
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... | category: imgcodecs | low | Critical |
338,361,609 | vscode | Editor/terminal only anti aliasing | So would love to have a working anti aliasing. Right now it's all or nothing with workbench setting - so either my editor fonts are blurry or, if I turn off AA then the menu fonts (which I can't appear to change) get all crappy due to them using a font that doesnt work well with AA.
Can we please have an option to ... | feature-request,font-rendering | low | Major |
338,371,416 | node | doc: troubleshooting FAQ? | We have some frequently emerged issues mostly concerned Node.js installation. Just two classic examples:
1. Windows issue with antivirus and "Performance counters" / "Event tracing" options: https://github.com/nodejs/node/issues/20538
2. Global `npm` installation issue: https://github.com/nodejs/node/issues/21661... | help wanted,doc,meta | low | Major |
338,373,840 | pytorch | Mismatch in behaviour of WeightedRandomSampler and other samplers | ## Issue description
All the other samplers for `torch.utils.data.DataLoader()` are designed to be used such that you can iterate an epoch (one epoch being the number of listed indices/data-points) over them by simply having them in a `for` loop. However, looping through a `DataLoader` with the sampler as `WeightedR... | todo,module: dataloader,triaged | low | Critical |
338,378,984 | rust | It would be nice if JoinHandle<T> were must-use for T != () | One IRC today, someone had code not working because they were doing
```rust
thread::spawn(|| mylib::my_function);
```
Which of course returns the function rather than running it.
Arguably it's almost always mistake to not keep the JoinHandle if the thread is going to return a non-unit value, since if you did... | A-diagnostics,T-libs-api,T-compiler,C-feature-request | low | Major |
338,384,498 | vscode | Shared properties in launch.json | ## Search Terms
launch.json, configuration, url
## Suggestion
The ability to specify shared properties among launch configurations.
Allowing properties to be inherited or specified in some common way while allowing overrides in individual entries would ease this situation greatly.
## Use Cases
For exa... | feature-request,debug | high | Critical |
338,397,698 | pytorch | [Caffe2] build_ios.sh => 'is only available on iOS 11 or newer' | ## Issue description
I can't install build_ios.sh for caffe2 ios.
`aligned allocation function of tyle ... is only available on iOS 11 or newer`
My ipad version is higher than iOS 11.
Macbook Pro version is macOS High Sierra 10.13.5
Xcode version is 9.4.1
Python3
How can I fix the problem?!?
Th... | caffe2 | low | Critical |
338,506,753 | go | cmd/go: check for import path collision in go build | ### What version of Go are you using (`go version`)?
go version go1.10.3 linux/amd64
### Does this issue reproduce with the latest release?
Yes
**Proposal:** Raise a warning or an error at compile time if the import path of a local package matches the import path of package from the standard library.
This is p... | Proposal,Proposal-Accepted,NeedsFix,GoCommand | low | Critical |
338,585,112 | rust | coercions do not reach into aggregates - converging coercions | [This (playground):](https://play.rust-lang.org/?gist=c95124c2c3f228927fb6632c7f6e1137&version=stable&mode=debug&edition=2015)
```rust
fn foo() {}
fn bar() {}
fn main() {
let _ = [(foo), (bar)]; // OK
let _ = [(foo,), (bar,)]; // FAILS
}
```
fails to compile with the following error:
```
error[... | C-enhancement,T-lang,A-coercions | low | Critical |
338,615,704 | pytorch | [pytorch] Make dtype second positional argument of tensor factory methods | NumPy lets the user pass dtype without kwarg, as the second positional argument: `np.zeros((3, 4), np.float32)`
In PyTorch `torch.zeros((3,4), torch.float32)` results in: `TypeError: zeros(): argument 'out' (position 2) must be Tensor, not torch.dtype`
I'd suggest the `out` argument is more exotic than `dtype`, a... | triaged,module: numpy,module: pybind,module: ux | low | Critical |
338,631,172 | TypeScript | Poor type inference for `reduce` | **TypeScript Version:** 3.0.0-dev.20180705
**Code**
```ts
function toStrings(arr: ReadonlyArray<object>): string[] {
return arr.reduce((acc, obj) => {
acc.push(obj.toString());
return acc;
}, [] as string[]);
}
```
**Expected behavior:**
No error.
**Actual behavior:**
```
src/a.ts:2:2 -... | Suggestion,Needs Proposal,Domain: lib.d.ts | medium | Critical |
338,660,728 | flutter | add setTag to flutter_google_maps plugin | Hi,
currently its not possible to associate any custom data to a marker on the Map which is a big disadvantage.
As the native API offers a setTag method https://developers.google.com/maps/documentation/android-sdk/marker#marker-data
It would be great if that could be added to the `MarkerOptions` and returned by... | c: new feature,p: maps,customer: google,package,c: proposal,team-ecosystem,P2,triaged-ecosystem | low | Minor |
338,687,088 | go | cmd/vet: reported typecheck errors not sorted by file position | Compare gc and vet typecheck errors:
```
$ go test
# golang.org/x/vgo2/vendor/cmd/go/internal/modfetch [golang.org/x/vgo2/vendor/cmd/go/internal/modfetch.test]
./coderepo.go:279:70: undefined: file2
./coderepo.go:294:8: no new variables on left side of :=
./coderepo.go:294:30: undefined: gomod
# golang.org/x/vgo2/vend... | NeedsInvestigation,Analysis | low | Critical |
338,716,844 | rust | Bad codegen partitioning with non-incremental compile in release mode | I have a larger application called [`distributary`](https://github.com/mit-pdos/distributary) that encounters a linking error on current nightly when you try to compile mit-pdos/distributary@216ec42058b962727974ac7a0d43c84097f3f73d (also occurs on earlier commits) in release mode with incremental compilation turned *of... | A-codegen,T-compiler,C-bug | low | Critical |
338,729,364 | pytorch | [Feature Request] Additional torch.nn.LSTM functionality | 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
Ultimately,... | todo,module: rnn,triaged,enhancement | low | Critical |
338,744,691 | vue | Error thrown when using transition-group with component v-bind:is directive | ### Version
2.5.16
### Reproduction link
[https://jsfiddle.net/50wL7mdz/451168/](https://jsfiddle.net/50wL7mdz/451168/)
### Steps to reproduce
Render a `component` (not just any component, but the build-in one: https://vuejs.org/v2/api/#component), with the `v-bind:is` directive set to `"transition-group"` (or... | transition | low | Critical |
338,841,148 | vscode | Use code editor for rename input box | Release 1.25.0 just introduced sub-word navigation –thank you!- yet it is not available on the `F2` _Rename Symbol_ input prompt box.
Ideally it should be possible to navigate in it as well. It'd be specially useful on camel-cased methods renaming. | feature-request,rename | medium | Major |
338,865,919 | pytorch | /usr/bin/ld: cannot find -lpthreads | --
-- ******** Summary ********
-- General:
-- CMake version : 3.5.1
-- CMake command : /usr/bin/cmake
-- Git version : v0.1.11-9200-g7b25cbb-dirty
-- System : Linux
-- C++ compiler : /usr/bin/c++
-- C++ compiler version : 5.4.0
-- BLAS ... | caffe2 | low | Critical |
338,913,235 | go | net/http/cookiejar: escaped path matching | Some servers and software return cookies with paths encoded
eg. `/path/contains%20some%20spaces`
Go's default cookiejar can't match those when we make calls back no matter how we make them
There are some characters in RFC6265 which should be encoded/escaped, but space isn't one of the ones listed. This might b... | NeedsInvestigation | low | Critical |
338,965,928 | pytorch | Where is the include and lib path for caffe2? | i installed pytorch with caffe2 from source by using 'python setup_caffe2.py install' command.
Can anyone tell that where is the default include and lib path for caffe2? | caffe2 | low | Minor |
338,968,930 | pytorch | [Caffe2] compiling error with gcc-6 | 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
When compilin... | caffe2 | low | Critical |
339,045,033 | vue | Vue.compile should return the errors which happens during compilation even in prod env | ### What problem does this feature solve?
I am building a VueJS frontend where templates are coming from a backend where end users contributed them in a CMS or something else. VueJS is bundled with esm in order to have the Vue.compile method.
When I run Vue.compile with the template string coming from the backend, ... | feature request,improvement | low | Critical |
339,072,649 | pytorch | [Caffe2] Cannot load caffe2.python. Error: libcaffe2.so: cannot open shared object file: No such file or directory | ## Issue description
I was trying to read my onnx model via caffe and deployed it onto AWS lambda.
The complete deployment seems to be working fine in my local but on AWS lambda we are getting this error.
## Code example
import caffe2.python.onnx.backend as backend
Please try to provide a minimal example to ... | caffe2 | low | Critical |
339,082,777 | pytorch | [feature request] Implementing Block Sparse Operations | **TL;DR:** Implementing block-sparse operations for faster matrix-multiplication.
Is this something worth adding to PyTorch?
Goals:
1. Faster matrix-multiplication by taking advantage of block-sparsity
2. Improve running time of large-scale LSTMs - Word Language or Sentiment Analysis Models
3. Based on https:/... | module: sparse,feature,triaged | medium | Critical |
339,109,977 | flutter | Flutter stacktrace is too verbose | I'm trying to find the place in my code where the error occurred, but it's giving me loads of internal code that I'm not editing and much of it is very repetitious and doesn't actually help me debug. I feel it should at least point me to the line where the error started.
```
I/flutter (19972): ══╡ EXCEPTION CAUGHT ... | framework,engine,dependency: dart,P2,team-engine,triaged-engine | low | Critical |
339,111,428 | rust | Use hash of compilation unit expression tree to prevent needless recompiles after formatting changes | If it is possible to obtain some sort of digest or fingerprint for the complete expression tree of a single compilation unit after tokenization and parsing has been completed but before actual compilation takes place, it should be possible to optimize away recompilations of code that has only changed aesthetically but ... | C-enhancement,I-compiletime,T-compiler,A-incr-comp,C-feature-request,WG-incr-comp | low | Minor |
339,112,341 | TypeScript | Ability to patch/overwrite missing/wrong declarations | <!-- 🚨 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,Needs Proposal | medium | Critical |
339,113,685 | rust | Optimize incremental compilation of data-only changes | Given a complex call tree such as `foo(bar(baz("hello")))` compiled successfully then changed to `foo(bar(baz("goodbye")))`, it should be possible for the compiler to realize that (with no other changes) no recompilation aside from the change of static data is needed, as I do not believe rust generics allow for introsp... | C-enhancement,T-compiler,A-incr-comp,C-optimization | low | Minor |
339,128,312 | terminal | cmd: add environment variable to disable/enable 'Terminate batch job (Y/N)?' confirmation | (migrated from https://github.com/PowerShell/PowerShell/issues/7080 per @BrucePay's suggestion)
When I cancel a `cmd` script with Ctrl C, the following dialog pops up:
Terminate batch job (Y/N)?
I understand why this exists, but I'd also like the option to disable it, so cancelling cancels immediately. [J... | Issue-Feature,Product-Cmd.exe,Area-Interaction | high | Critical |
339,141,343 | neovim | Focus reporting in terminal windows | Neovim does not appear to forward focus reporting into `:terminal` windows.
After `printf '\e[?1004h'; cat -` you should see `^[[O` and `^[[I` when your terminal emulator supports focus reporting, and focus moves out/in.
When using `:term` this does not work anymore.
Since Neovim gets notified about it, it sho... | enhancement,terminal | low | Minor |
339,180,631 | flutter | TabController.animateTo() should return future like ScrollController.animateTo() | ScrollController.animateTo() returns a Future<null>, so that I can easily animate a scroll change, and then do something when we've arrived.
TabController.animateTo() is void, so I can't.
I would like these to have a more consistent signature, and I'd like to be able to easily do something after a TabController's... | framework,a: animation,f: material design,c: proposal,P2,team-design,triaged-design | low | Major |
339,190,137 | godot | Cannot remove extra quads in the cylindrical part of CapsuleMesh and CylinderMesh | Godot 3.0.4
There are extra Quads in the cylindrical section of `CapsuleMesh` and `CylinderMesh`.
If you remove rings in `CapsuleMesh`, it also reduces them on the spherical sections, which is unwanted.
You cannot remove all rings from `CylinderMesh`, there is always at least one in the middle.

##### Detailed description
```
[ 84%] Building CXX object modules/python3/CMakeFiles/opencv_python3.dir/__/src2/cv2.cpp.o
Buildfile: /Volumes/GDrive/git/opencv/build/java_test/build.xml... | bug,category: python bindings,category: build/install | low | Critical |
339,203,038 | flutter | shared_preferences plugin should support value observing | Both Android and iOS support the observer pattern for `SharedPreferences`/`UserDefaults`.
Alas, the `shared_preferences` plugin in Flutter should, in addition to simple writing & reading, provide `Stream` endpoints to the values as well.
Android:
https://developer.android.com/reference/android/content/SharedPre... | c: new feature,p: shared_preferences,package,team-ecosystem,P3,triaged-ecosystem | medium | Major |
339,221,504 | opencv | Some functions in filterengine.hpp are not accessible any more |
##### System information (version)
- OpenCV => master
##### Detailed description
The following functions are not accessible outside
https://github.com/opencv/opencv/blob/43f821afb91330958d4723f6300a5ec0bfa2185e/modules/imgproc/src/filterengine.hpp#L282-L352
Some of them are accessible from the 2.4 branch... | category: imgproc,RFC | low | Minor |
339,223,966 | opencv | Unknown exception occurs randomly when executing Mat.clone() | ##### System information (version)
OpenCV 3.4.1
OS Windows 10 Home Edition 64 Bit
Java 8 with OpenCV java binding
##### Detailed description
Unknown exception occurs randomly when executing Mat.clone() method, we also use Mat.empty() method to check whether the Mat is empty. Here is the detail stacktrace, we did... | bug,category: java bindings,incomplete | low | Minor |
339,224,686 | terminal | Give API to measure the space that a string occupies | This is an extension to #57.
Under a certain console/PTY, assume the font family/size is specified, give a string, and return the space (a bit mask of the character matrix?) it would occupy. | Issue-Feature,Product-Conhost,Area-Server | medium | Major |
339,230,962 | opencv | minAreaRect fails with a particular contour (and probably others) | ##### System information (version)
- OpenCV => 3.4.1 (I found the same behavior with 3.3.0 though)
- Operating System / Platform => OSX / WIN10
- Compiler => apple clang / Visual c++ 2017
##### Detailed description
minAreaRect is supposed to provide a rotated bounding box of a set of points (contour), it wor... | category: imgproc,RFC | low | Major |
339,236,686 | rust | `./x.py test src/doc` fails with "no rules matched" | commit: 0c0315cfd9
An example in src/bootstrap/README.md, `./x.py test src/doc`, doesn't seem to actually work. It fails with the following output:
```
$ RUST_BACKTRACE=1 ./x.py test src/doc
Updating only changed submodules
Submodules updated in 0.03 seconds
Finished dev [unoptimized] target(s) in 0.22s
... | T-bootstrap,C-bug | low | Critical |
339,240,284 | go | runtime: document the behaviour of Caller and Callers when used in deferred functions | ### What version of Go are you using (`go version`)?
```
go version go1.10 linux/amd64
```
### Does this issue reproduce with the latest release?
Yes, I've tried on b001ffb.
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/ainar/.cac... | Documentation,NeedsFix,compiler/runtime | low | Critical |
339,286,866 | go | proposal: bytes/v2: remove NewBufferString | The constructor is often misused and confuses people. It can be used to put initial contents into a buffer that will be written into after, but so can buf.Write. Meanwhile, NewReader handles the case that most beginners misuse, calling NewBufferString when they only need NewBuffer.
This function's use case is not wo... | v2,Proposal | medium | Major |
339,289,391 | pytorch | [feature request] SSIM-based cost function as part of the standard set of loss functions | ## Issue description
SSIM-based cost function as part of the standard set of loss functions in PyTorch.
See example here: https://github.com/Po-Hsun-Su/pytorch-ssim | module: loss,triaged,enhancement | low | Major |
339,292,055 | go | proposal: spec: clone and splice, new channel primitives | Here are a couple of suggestions made by Doug McIlroy, original author of test/chan/powser[12].go and instigator of pipes in Unix. They are intriguing.
In Doug's words:
====
`splice c1 c2`
where channel c1 contains no buffered data,
identifies the write end of channel c1 with that
of... | LanguageChange,Proposal,LanguageChangeReview | high | Critical |
339,404,814 | rust | Implement `propagate_panic` on `LockResult` | `LockResult<Guard>` is an alias of `Result<T, E>` used when locking a `Mutex<T>`, `RwLock<T>`, or other synchronization primitive. It exists to take into account the fact that a panicked thread may poison the lock, thereby corrupting the state of whatever is contained within the lock.
When developing in Rust, it is ... | T-libs-api,C-feature-request | low | Minor |
339,517,793 | node | Creating a branch of the Docs using RunKit | As a part of the @nodejs/website-redesign work, we've gone through some work to analyze a way to improve some of the interactivity of the documentation on the website once we re-launch with the work the Website Redesign team is working on.
Early on, RunKit approached us with an interest to help improve the docs and ... | doc,meta | medium | Major |
339,530,049 | godot | Color transformation issue when rendering to viewports | Godot 3.0.2 + Windows 10
When rendering a solid color image to a viewport, the final image will produce a different color to the same image being rendered outside of the viewport.
<br>
Consider this node structure:
```
root
--imageA
--viewportTexture
--viewport
----imageB
```
`imageA` and `imageB` are soli... | bug,topic:rendering | low | Major |
339,584,335 | go | os: Remove/RemoveAll should remove read-only folders on Windows | ### What version of Go are you using (`go version`)?
`go version go1.10.2 windows/amd64`
### Does this issue reproduce with the latest release?
Untested, but I don't see any changes that would have fixed it
### What operating system and processor architecture are you using (`go env`)?
`windows/amd64`
### What did... | OS-Windows,NeedsInvestigation | medium | Major |
339,585,640 | pytorch | [gradcheck] warn about the case that mulitple inputs share storage | also re-enable the skipped einsum tests
cc @ezyang @albanD @zou3519 @gqchen @pearu @nikitaved | module: autograd,triaged | low | Minor |
339,586,685 | TypeScript | --noImplicitThis error is inconsistent | **TypeScript Version:** 3.0.0-dev.20180707
**Code**
```ts
declare function f(a: any): void;
f(function() {
this.m();
});
f({
callback: function() {
this.m();
}
});
```
**Expected behavior:**
With `--noImplicitThis`, errors in both cases or neither case.
**Actual behavior:**
Only erro... | Bug | 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.