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
383,674,092
pytorch
[Caffe2] How to use the euclidean loss (L2) as output of a CNN model?
Dear all, I would like to use the euclidean loss (L2) as the output of my CNN model. I am using the brew.db_input to feed the input layer. Should I proceed in the following way? ``` def add_input(self, model, batch_size, db, db_type, device_opts): with core.DeviceScope(device_opts): # load ...
caffe2
low
Minor
383,685,867
javascript-algorithms
detect-cycle-algorithms detect just one cycle
The detect-cycle-algorithms detect just one cycle. It would be great if the algorithms can recognize more cycles than one, in case there are several.
enhancement
low
Major
383,688,279
angular
Animations: animateChild() fails to run child transitions when using state() with '*' star style
# 🐞 bug report ### Affected Package @angular/animations ### Description When an animation uses states to/from the '*' star style, animateChild() fail to run the transition to the "starred" state and jumps to the final state instead (or run the transition from the final state to the same). ## 🔬 Minima...
type: bug/fix,area: animations,freq2: medium,P3
low
Critical
383,701,519
node
Does `autoDestroy` make sense for http2 streams?
<!-- Thank you for reporting an issue. This issue tracker is for bugs and issues found within Node.js core. If you require more general support please file an issue on our help repo. https://github.com/nodejs/help Please fill in as much of the template below as you're able. Version: output of `node -v` P...
question,http2
low
Critical
383,703,598
nvm
`nvm install-latest-npm`: unknown issue
<!-- Thank you for being interested in nvm! Please help us by filling out the following form if you‘re having trouble. If you have a feature request, or some other question, please feel free to clear out the form. Thanks! --> - Operating system and version: - `nvm debug` output: <details> <!-- do not delete the...
installing node,needs followup
low
Critical
383,704,726
opencv
Inclusion of JABCode and HiQ
# Introduction JABCode is a color barcode used by the German government (Federal Office of Information Security) for tagging items. Currently there is no easy-to-use solutions available for the public to test and experiment. HiQ is a color barcode based on QR code, created by the students Hong Kong Chinese Universi...
feature,category: objdetect,GSoC,evolution,effort: few weeks
low
Major
383,714,356
pytorch
[jit][script] support slicing with tensor literals
See #14311 for context. ```py @torch.jit.script def foo(): a = torch.rand(3, 4, 5, 6) a[[0, 2], :, [3, 1]] = 1 # and a[[0, 2], 1:3, [3, 1]] = 1 return a ``` Gets tripped up, interpreting tensor literals as `int[]`.
oncall: jit
low
Minor
383,729,867
rust
Expose Windows VolumeSerialNumber and FileIndex/FileId in std::os::windows::fs::MetadataExt
Currently, using `std::os::unix::fs::MetadataExt` and `std::os::linux::fs::MetadataExt` it is possible to get the inode number of a file. This can be useful in determining whether two files are the same. There's a similar concept in Windows, consisting of a few parts: `VolumeSerialNumber`: The serial number of the v...
O-windows,T-libs-api,A-io
low
Major
383,759,831
go
net/http: logic error in http2ConfigureServer?
Reported against tip, 649b89377e91ad6dbe710784f9e662082d31a1ff https://github.com/golang/go/blob/649b89377e91ad6dbe710784f9e662082d31a1ff/src/net/http/h2_bundle.go#L4021 the logic of this line is error(ValidCipher, BadCipher,BadCipher will go through), it should be ```go if http2isBadCipher(cs) { sawBad =...
NeedsInvestigation
low
Critical
383,818,284
go
x/image/font: wrong rendering of intersecting paths
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.11.1 windows/amd64 </pre> ### What did you do? Parse APL386 true type font with github.com/golang/freetype/truetype and render U+2262 with gola...
NeedsInvestigation
low
Minor
383,832,599
rust
Enhance `match` implied borrow
```rust struct Foo { bar: Option<String> } fn f(foo: &Foo) -> i32 { match &foo.bar { None => 1, Some(s) => 2, } } ``` The above works because of the implied borrow introduced in v1.26 However, if we don't put `&` before `foo.bar`, the `ref` is mandatory. ```rust fn f(fo...
C-enhancement,A-borrow-checker,T-compiler
low
Minor
383,865,101
pytorch
Caffe2 C++ tutorial is not working
## 📚 Documentation <!-- A clear and concise description of what content in https://pytorch.org/docs is an issue. If this has to do with the general https://pytorch.org website, please file an issue at https://github.com/pytorch/pytorch.github.io/issues/new/choose instead. If this has to do with https://pytorch.org/...
caffe2
low
Critical
383,899,955
flutter
[Proposal] PageView should support `addAutomaticKeepAlives` parameter to persist state
<!-- Thank you for using Flutter! If you are looking for support, please check out our documentation or consider asking a question on Stack Overflow: * https://flutter.io/ * https://docs.flutter.io/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you have...
c: new feature,framework,f: material design,f: scrolling,c: proposal,has reproducible steps,P3,found in release: 3.3,found in release: 3.7,team-design,triaged-design
low
Critical
383,939,200
rust
warning for UB `!` exprs is too light
So this code produces a warning about the `&*input` expression being unreachable: ```rust enum Void { }; fn process(input: *const Void) { let _input = &*input; } ``` ``` warning: unreachable expression ``` I can imagine this needs to "only" be a warning so someone can write some really janky macro ...
A-type-system,C-enhancement,A-lints,A-diagnostics,E-needs-test,T-lang,T-compiler,T-types
medium
Critical
383,946,513
nvm
[Bug] Install scripts do not create ~/.nvm
(Deleted the template since it is for post-installation bugs) OS: Ubuntu 18.10 Shell: zsh (oh-my-zsh) When installing with either `wget` or `curl` in the README, I get the following error: ``` You have $NVM_DIR set to "/home/kuech/.nvm", but that directory does not exist. Check your profile files and environme...
needs followup,installing nvm: profile detection,shell: zsh: oh-my-zsh
low
Critical
383,966,894
rust
Implement `CoerceUnsized` and `DispatchFromDyn` for `ManuallyDrop`
Add the following impls: ```rust impl<T: ?Sized, U: ?Sized> CoerceUnsized<ManuallyDrop<T>> for ManuallyDrop<U> where T: CoerceUnsized<U>, {} impl<T: ?Sized, U: ?Sized> DispatchFromDyn<ManuallyDrop<T>> for ManuallyDrop<U> where T: DispatchFromDyn<U>, {} ``` And add a test case that is allowed by...
T-lang
low
Minor
383,988,425
pytorch
[Caffe2] Error when loading a leveldb dataset using brew.db_input (Error protos.protos_size() == OutputSize().)
Hi all, I am trying to **load a leveldb dataset using brew.db_input** with the Python API. I used the following relevant code: ``` def add_input(self, model, batch_size, db, db_type, device_opts): with core.DeviceScope(device_opts): # load the data data, label = brew.db_input( ...
caffe2
low
Critical
383,997,796
kubernetes
Kubelet does not restart or reregister in response to removed Node API object
Once a kubelet has started up, if its Node API object is removed, the kubelet perpetually attempts and fails to update the status on the now-missing Node object. I would have expected it to do one of the following: * exit after a period of time or number of retries * re-register the Node object /kind bug /sig ...
kind/bug,sig/node,sig/cluster-lifecycle,priority/important-longterm,lifecycle/frozen,triage/accepted
medium
Critical
383,999,117
TypeScript
Autocomplete on extends keyof generic
<!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! Please help us by doing the following steps b...
Suggestion,Domain: Completion Lists,Experience Enhancement
medium
Critical
384,019,382
react
API for display name on forwardRef, memo and potential future exotic components
TL;DR: Can you expose [shared/getComponentName](https://github.com/facebook/react/blob/master/packages/shared/getComponentName.js)? <!-- Note: if the issue is about documentation or the website, please file it at: https://github.com/reactjs/reactjs.org/issues/new --> **Do you want to request a *feature* or...
Type: Feature Request
medium
Critical
384,027,490
flutter
ModalRoute.of(context).pop(value)
There's currently no good way for a dialog to pop itself when it's not sure that it's on top.
c: new feature,framework,f: routes,P3,team-framework,triaged-framework
low
Minor
384,061,743
pytorch
[libtorch] Catkin_make compilation error
I am trying to use libtorch to my catkin project. One of my package A links with libtorch.so and can be successfually compiled as a static library A.a. Then I try to linked A.a to another package B. When I run catkin_make, the following error comes out: > -- Configuring done > CMake Error: > Error ev...
needs reproduction,module: build,triaged,has workaround
low
Critical
384,062,952
rust
"the type parameter is not constrained" but it is needed
I would expect the following code to compile: ```rust #![allow(unused)] trait AllocExtra<MemoryExtra> { fn create(x: &MemoryExtra) -> Self; } struct Alloc<Extra> { extra: Extra, other: u32, } impl<MemoryExtra, Extra: AllocExtra<MemoryExtra>> Alloc<Extra> { fn new(x: &MemoryExtra) -> Sel...
A-type-system,T-compiler,C-bug,T-types
medium
Critical
384,082,217
go
cmd/compile: teach prove about slice expressions
``` $ cat f.go package p func f(s string) { if len(s) >= 2 { s = s[1:] _ = s[0] } } $ go version go version devel +6d5caf38e3 Thu Nov 22 02:59:55 2018 +0000 linux/amd64 $ go build -gcflags=-d=ssa/check_bce/debug=1 f.go # command-line-arguments ./f.go:6:8: F...
Performance,compiler/runtime
low
Critical
384,089,856
rust
rustdoc does not highlight non-rust code fragments
In this example, the Rust fragment is highlighted, but the C one is not: //! ```rust //! // This is Rust. //! fn main() {} //! ``` //! //! ```c //! /* This is C. */ //! int main() { return 0; } //! ```
T-rustdoc,A-docs,C-feature-request
low
Major
384,090,278
go
cmd/compile: BCE is better with reslicing than index variables
Take this piece of code: ``` $ cat f.go package p func slice(p []byte) { for len(p) > 4 { // zero bounds checks. _ = p[0] _ = p[1] _ = p[2] _ = p[3] p = p[4:] // reslicing is expensive. } }...
Performance,compiler/runtime
low
Critical
384,097,300
flutter
Add an option to set a Dismissble as 'active'
Attempt to disable the Dismissible() behavior by setting `.direction = null` causes assert at https://github.com/flutter/flutter/blob/6d134e0c866ce90a4dc7a02af6a8f1079c2a4fdc/packages/flutter/lib/src/widgets/dismissible.dart#L337 This is a feature enhancement to simplify customer code, not a code fault. ## Setup ...
c: new feature,framework,f: material design,P3,team-design,triaged-design
low
Critical
384,155,328
go
net: support for RFC 4592 (lookup for wildcard dns)
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.10.3 darwin/amd64 </pre> ### What operating system and processor architecture are you using (`go env`)? <details><summary><code>go env</code> O...
FeatureRequest
low
Critical
384,169,778
flutter
Breaking changes that would improve the overall API
This bug lists changes we'll probably never make, but should consider if we ever for some reason decided to start over in a new universe. ## Foundation - [ ] `ChangeNotifier` and `Listenable` and company are a bit mixed up. We could refactor the code here so that we more clearly have a `Listenable` and a `Listenabl...
framework,c: API break,P3,team-framework,triaged-framework
high
Critical
384,183,767
go
x/build/cmd/coordinator: use cmd/go's build caching
Now that cmd/go has good caching, cmd/coordinator should use it, somehow. We'd likely need some hooks in cmd/go to accommodate our needs, but Russ said he was fine with that when I asked him maybe a year ago. /cc @dmitshur @bcmills
Performance,Builders,NeedsFix,FeatureRequest
low
Major
384,217,487
vue-element-admin
使用Tinymce时报错Error in nextTick: "TypeError: Cannot read property 'parse' of undefined"
点击编辑回显数据 `this.$refs.editor.setContent(this.temp.intr)` 功能没问题,就是报了一个错,好像是tinymce初始化没有完成 [Vue warn]: Error in nextTick: "TypeError: Cannot read property 'parse' of undefined"
enhancement :star:
low
Critical
384,253,255
go
cmd/compile: consider teaching prove about unexported integer fields
Consider the following program: ``` $ cat f.go package p type T struct { intOff int uintOff uint data []byte } func (t *T) reset(data []byte) { t.intOff = 0 t.uintOff = 0 t.data = data } func withIntVar(data []byte) { i := 0 for i < len(data) { _ = data[i] // no bounds check i+...
Performance,compiler/runtime
low
Critical
384,277,021
pytorch
How to use model.net.Clip?
I want to clip loss using Clip op like this model.net.Clip([input,output], 0,10) but it dosen't work!! the Operators Catalog of caffe2 is too simple. Does anyone can help me? Thank you very much!!!
caffe2
low
Minor
384,278,347
pytorch
Error: DeviceGuardImpl for cpu is not available (static linking PyTorch)
I am getting this: ``` Error: unhandled exception: p ASSERT FAILED at /data/Storage/Development/nimtorch/aten/include/c10/impl/DeviceGuardImplInterface.h:130, please report a bug to PyTorch. DeviceGuardImpl for cpu is not available (getDeviceGuardImpl at /data/Storage/Development/nimtorch/aten/include/c10/impl/Dev...
module: build,triaged,module: static linking,has workaround
medium
Critical
384,289,297
rust
Oh rust doctest lints, where art þou? (Add a way to run clippy on doctests)
Currently, doctests benefit from being code in numerous ways, such as being tested. However, this unfortunately does not (yet?) apply to clippy lints. For (an atmittedly contrived) example: ```rust /// is the given number odd? /// /// # Examples /// /// ```rust ///# use testdoclints::is_odd; /// let mut a = 1...
T-rustdoc,A-lints,A-doctests,A-clippy
medium
Critical
384,306,346
TypeScript
strictFunctionTypes prevents an assignment not related to functions
<!-- 🚨 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
384,346,568
go
cmd/go: -json test report ordering
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.11.2 darwin/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture...
NeedsInvestigation
low
Critical
384,417,410
pytorch
[Caffe2] Check failed: output->size() == values_.size() output size: 1 given size: 1563551
## Question/Support Hi there, I ran into this error which I've seen in a few places after searching but I am not really sure how to adjust my model to work with caffe2: ``` D/blackbox-ndk: Attempting to load protobuf netdefs... D/blackbox-ndk: Couldn't parse net from data. Len: 109181755, File: sidewalk_init_ne...
caffe2
low
Critical
384,423,902
pytorch
[c10d] Configurable timeout per operation for MPI backend
Also see #14297. cc @pietern @mrshenli @pritamdamania87 @zhaojuanmao @satgera @rohan-varma @gqchen @aazzolini @xush6528 @osalpekar @jiayisuse @agolynski
oncall: distributed,feature,triaged,distributed-backlog
low
Minor
384,432,563
terminal
Showing Schemes doesn't work on WSL
From #22: > > > @Falcury `-q -x` works for me, though showing schemes does not: > > ```shell > [rofrol@DESKTOP-NBALJ88 ~]$ pushd ~/rofrol/installed/colortool/ &> /dev/null > [rofrol@DESKTOP-NBALJ88 ~/rofrol/installed/colortool]$ ./colortool.exe -s > > Unhandled Exception: System.IO.IOException: The handle ...
Product-Colortool,Help Wanted,Area-Interop,Issue-Bug,Priority-3
low
Critical
384,471,467
pytorch
[caffe2] Caffe2 GlobalInit should be run before any other API calls
There is no error when the code (ipynb) below is ran: ```python from __future__ import absolute_import from __future__ import division from __future__ import print_function from __future__ import unicode_literals # We'll also import a few standard python libraries from matplotlib import pyplot import nump...
caffe2
low
Critical
384,488,547
youtube-dl
Discovery.ca - Unauthorized 401 error when trying to download.
## Please follow the guide below - You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`) - Use the *Preview* tab to see what your issue will actually look like ...
geo-restricted
low
Critical
384,558,397
vscode
terminal stays open after process exit
Initially I thought this was an issue with MIEngine, but they report that it is up to VSCode to properly close the external console after debugging https://github.com/Microsoft/MIEngine/issues/807 Version: 1.29.1 Commit: bc24f98b5f70467bc689abf41cc5550ca637088e Date: 2018-11-15T19:07:43.495Z Electron: 2.0.12 ...
feature-request,debug
medium
Critical
384,574,074
go
net/http: Transport does not support proxy schemes added with RegisterProtocol
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.11.1 linux/amd64 </pre> ### Does this issue reproduce with the latest release? I checked https://golang.org/src/net/http/transport.go?s=3628:...
FeatureRequest
low
Critical
384,590,848
TypeScript
Incorrect rename of imported declaration
**TypeScript Version:** aa3734c14834afb454c49bc956489980d990a765 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** **Code** file1.ts ```ts export const abc = 1; ``` file2.ts ```ts import {abc} from "./file1"; abc; // Rename this one to de...
Bug
low
Major
384,660,149
nodebestpractices
Security: Prevent SSRF attacks
SSRF (Server Side Request Forgery) vulnerability allows an attacker to change a parameter used on the Node.js application to create or control requests from the vulnerable server. This introduces attack vectors such as - scanning the internal network - timeout the thread - bypass host based authentication - send...
help wanted,new best practice,security,writer-needed
low
Minor
384,697,784
flutter
Regression: KeepAlive in SliverList throws: Incorrect use of ParentDataWidget
We used to be able to manually specify KeepAlive widgets in our SliverLists like so: ```dart new SliverList( delegate: new SliverChildBuilderDelegate( (context, index) { return new KeepAlive( keepAlive: true, child: new Container( pad...
framework,f: scrolling,d: api docs,P2,team-framework,triaged-framework
low
Major
384,739,169
opencv
HDR MergeMertens - tif uint16 output missing
When using python to produce LDR image (example [here](https://docs.opencv.org/3.2.0/d3/db7/tutorial_hdr_imaging.html)) I am able to import TIFF 16 bit , three channel , colour images unchanged. However processing using MergeMertens results only in uint 8-Bit tiff colour images. Would it be possible to include somet...
feature,category: photo
low
Major
384,740,146
pytorch
DeviceOption::set_device_type() doesn't accept caffe2::CPU anymore
## 📚 Documentation ### TL;DR It'd be best if someone could write up an up-to-date method on loading a (pretrained) caffe2 network in C++. I've searched for the past couple of days, but all methods that I've tried don't work with the current pytorch version ('1.0.0a0+60e7d04', from the master branch) But at the ...
caffe2
low
Minor
384,743,645
TypeScript
Add a --strictNaNChecks option, and a NaN / integer / float type to avoid runtime NaN errors
*I have read the FAQ and looked for duplicate issues.* ## Search Terms * NaN * NaN type * Integer type ## Related Issues * [#21279: strictNullChecks safeguards against null and undefined, but not NaN ](https://github.com/Microsoft/TypeScript/issues/21279) * [#15135: NaN, Infinity and -Infinity not accept...
Suggestion,In Discussion,Domain: Literal Types
high
Critical
384,826,570
angular
Refine RouteReuseStrategy
# 🚀 RouteReuseStrategy 2.0 ### Relevant Package This feature request is for @angular/router ### Description The current [`RouteReuseStrategy` API](https://angular.io/api/router/RouteReuseStrategy) is totally confusing and probably broken. ### Describe the solution you'd like In order for this API to be...
feature,area: router,feature: under consideration
high
Critical
384,849,334
rust
help, pass closure variable to Ref::map function failed
The demo code is: ```rust #![feature(refcell_map_split)] use std::cell::{Ref, RefCell}; fn main() { let cell = RefCell::new([1, 2, 3, 4,5]); let borrow = cell.borrow(); // let (begin, end) = Ref::map_split(borrow, |s| s.split_at(3)); // OK // extract closure as a variable then p...
C-enhancement,A-diagnostics,A-closures,T-compiler
low
Critical
384,882,108
create-react-app
Remove bit.ly links from template
We need to remove the bit.ly links from the template because they point to the old README. We need to decide what to replace them with though. We could pick a new URL shortner but we could wind up in this situation again. Some allow you to change link destinations but who would own that account? Follow up to: https:...
tag: documentation,tag: internal
low
Major
384,889,716
go
cmd/compile: initialization optimization fails when using -ldflags=-X=VAL
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.11.1 darwin/amd64 </pre> ### Does this issue reproduce with the latest release? yes, tested with `go version go1.11.2 darwin/amd64` ### Wh...
NeedsFix,compiler/runtime
low
Critical
384,988,694
go
crypto/x509: verify checks root certificate
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.11.2 darwin/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? <details><summary><code>go env</code> Output</summary>...
NeedsInvestigation
low
Critical
384,995,485
opencv
imgproc: use of undeclared identifier 'ippBorderFirstStageInMem'
<!-- If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses. If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute). Please: * Read the documentation to test with the latest de...
bug,category: imgproc,priority: low,category: build/install
low
Critical
385,015,011
pytorch
BUILD_CAFFE2_OPS=OFF is not tested in CI
caffe2
low
Minor
385,016,325
godot
Polygon2D UV Editor doesn't allow points to be added.
c23710a Another small feature/enhancement request. It would be nice if the Polygon2D UV/Poly edit tools allowed points to be added after creating the polygons. So all operations can be done in the tool without having to switch back and forth or reset things. ![image](https://user-images.githubusercontent.com/...
enhancement,topic:editor,usability
low
Major
385,030,335
pytorch
Use of STL templates in cpu/ directory (compiling with different AVX settings) is silently hazardous
In #13993, a user noticed that when compiling with fbgemm, AVX2 instructions started being used in unrelated invocations of `std::unordered_map`. The root cause turned out to be because we compiled code with `-mavx`, and that caused some standard library functions (used by those files) to be compiled with AVX instructi...
module: build,triaged
low
Major
385,031,786
TypeScript
Object.defineProperty doesn't define properties on 'this'
```js // @ts-check class C { constructor() { Object.defineProperty(this, "x", { value: "hello" }); this.x.toLowerCase(); } } ``` **Expected**: No error. **Actual**: `Property 'x' does not exist on type 'C'.`
Suggestion,Awaiting More Feedback,Domain: JavaScript
low
Critical
385,034,036
flutter
GIFs with high frame rates run slower than expected
## Steps to Reproduce 1. Have a gif file 2. Have code like final Image image = Image.file(File('gif_file_path'), fit: BoxFit.contain); 3. Compare gif in chrome with flutter and notice it repeats or runs slower in Flutter Here's an example video: https://www.youtube.com/watch?v=EoLbQRfTSbM ## Flutter Doctor...
engine,a: quality,customer: product,a: images,has reproducible steps,P2,found in release: 3.7,found in release: 3.9,team-engine,triaged-engine
low
Major
385,046,639
flutter
the canvas content overflow from the child page when drag back.
![image](https://user-images.githubusercontent.com/5997900/49120123-cd948100-f2ee-11e8-890d-56a8db49b638.png) The body of child page was a entire custompainter, and when I drag back, it overflowed from the page. Is this a flutter problem?
framework,f: routes,has reproducible steps,P2,found in release: 3.3,found in release: 3.5,team-framework,triaged-framework
low
Minor
385,048,489
flutter
Provide a flutter tool wrapper around dartdoc?
The `flutter` tool already basically provides a wrapper around dartanalyzer. Maybe it could provide a wrapper around `dartdoc` too? Currently `dartdoc` requires setting the `FLUTTER_ROOT` environment variable to generate project documentation with working references to Flutter API documentation, and it requires usi...
c: new feature,tool,P3,team-tool,triaged-tool
low
Major
385,122,571
pytorch
[JIT] Tracing a script function/module where not all args are Tensors
## 🐛 Bug Suppose I write a script function/module where one argument is an int. Then tracing a larger model that uses this script function will fail. ## To Reproduce ```python @torch.jit.script def foo(x, y:int): return x + y def bar(x): return foo(x, 4) x = torch.zeros(3) foo(x, 4) # ...
oncall: jit
low
Critical
385,132,578
react
Fail to render input in a separate window on Edge
<!-- Note: if the issue is about documentation or the website, please file it at: https://github.com/reactjs/reactjs.org/issues/new --> **Do you want to request a *feature* or report a *bug*?** Bug **What is the current behavior?** On Edge, when to render any <input> components in a separate window, it c...
Browser: IE,Component: DOM,Type: Needs Investigation
low
Critical
385,141,852
pytorch
[Caffe2] Error protos.protos_size() == OutputSize() when loading dataset created by regular Caffe (datum)
## 🐛 Bug <!-- A clear and concise description of what the bug is. --> I tried to **load a leveldb dataset created by regular Caffe (datum) in Caffe2** using **brew.db_input** from the Python API, however I got the following error **(Case 1)**: ``` WARNING: Logging before InitGoogleLogging() is written to STDERR ...
caffe2
low
Critical
385,157,736
pytorch
The speed of scatter is influenced by the data size while using nn.DataParallel
## 🐛 Bug I am using `nn.DataParallel` for a Neural Machine Translation task, when the number of parallel sentences is more than 10 millions, the training speed becomes much slower. After some analysis, I find that the cost of time of **scatter** operation increased strangely for some batches. <!-- A clear and ...
module: performance,module: dataloader,triaged,module: data parallel
low
Critical
385,175,880
TypeScript
Type Alias Record/Interface Selector Pattern - Discriminated Unions, Fails to discriminate type shape, like switch does
It would be great, if this pattern would work, because it is so much simpler to use and would be so much faster typically than extends ? pattern, because there is no interrogation of the types with all complex patterns and shapes and forms, which gets quite hairy, performance slow downs major. With this pattern it just...
Suggestion,Awaiting More Feedback
low
Major
385,187,906
rust
Avoid hashing more than is strictly necessary, in the compiler.
It should be possible to build cheaper interners than what we currently have, using `raw_entry`. cc @rust-lang/compiler @Gankro @Amanieu
C-cleanup,T-compiler
low
Major
385,206,861
pytorch
Optimizer warning when parameters "change"
## 🚀 Feature I vote for a slight change in the architecture of the 'communication' between the optimizer and the actual model. The optimizer should know the parameters of the 'actual' model and if the parameters the optimizer knows about do not match the ones of the model then it should spit out an error or at least ...
module: optimizer,triaged,enhancement
low
Critical
385,229,655
TypeScript
In JS, don't complain about a better inferred type if there's no code action
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** 3.2.0-rc <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** inferred type **Code** JS file with `checkJS` on: ![unbenannt](...
Suggestion,Fixed,Domain: JavaScript,Experience Enhancement,Fix Available
low
Minor
385,237,054
neovim
virtualtext: multiple EOL virtual text annotations per line
`nvim_buf_clear_highlight` with id=2 will also clear the highlight for id=1. ```vim let b = bufnr('%') let id1 = nvim_buf_set_virtual_text(b, 0, 0, [['foo', 'Error']], {}) let id2 = nvim_buf_set_virtual_text(b, 0, 0, [['foo', 'Error']], {}) echo [id1, id2] call nvim_buf_clear_highlight(b, id2, 0, -1) ```...
enhancement,needs:design,marks
low
Critical
385,318,785
go
proposal: spec: enums as an extension to types
# Yet another enum proposal Related: #19814, #28438 # First of all, what is the issue with `const`? Why can't we use that instead? Well first of all, `iota` of course only works with anything that works with an untyped integer. Also, the namespace for the constants are at the package level, meaning that if yo...
LanguageChange,Proposal,LanguageChangeReview
high
Critical
385,340,125
rust
Warn against `mod lib;` in `main.rs`
Right now this is possible and compiles without warning: Given a cargo crate with name "foo": ```rust // src/lib.rs ``` ```rust // src/main.rs mod lib; fn main() {} ``` ... even though we now have duplicated code in the library "foo" and the submodule "lib" This can be confusing for a beginner be...
A-lints,T-lang,T-cargo
low
Critical
385,349,814
pytorch
Add a debug mode which is -O0 for framework code, but -O for kernels
One of the reasons people don't like `DEBUG=1` defaulting to `-O0` is because it makes their tests run slowly. But they also don't like `-O` because you get not very useful information inside gdb. Wouldn't it be nice to have the best of both worlds? Well, maybe we can achieve this, by having a mode where we can comp...
module: build,triaged
low
Critical
385,368,907
pytorch
Flaky download from files.pythonhosted.org when installing botocore
Log: https://circleci.com/gh/pytorch/pytorch/316264?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link ``` Exception: Traceback (most recent call last): File "/usr/lib/python2.7/dist-packages/pip/basecommand.py", line 122, in main status = self.run(options, args) File "/u...
triaged,module: flaky-tests,better-engineering
low
Critical
385,376,232
go
go/printer: consider using last position for nodes with no position
Reminder issue to experiment with using the last known (end) position for nodes where we don't have a position (and where NoPos is not used to indicate absence of a token). From e-mail conversation with @aclements: > > On Wed, Nov 28, 2018 at 8:34 AM Austin Clements <austin@google.com> wrote: > > Thanks! Assigni...
NeedsInvestigation
low
Minor
385,387,051
go
reflect: document struct field layout in memory
### What version of Go are you using (`go version`)? 1.11 ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? N/A ### What did you do? Read the docs, specifically as to (1) whether the memory layout of structures ...
Documentation,NeedsInvestigation,compiler/runtime
low
Minor
385,398,102
pytorch
prim::ConstantChunk derivative formula doesn't handle undefined inputs
It's a multi-output node, so it has to handle the case when not all outputs get well defined gradients (e.g. when some outputs are unused).
oncall: jit
low
Minor
385,403,208
pytorch
building bundled nccl fails in (caffe2, cuda 8, cudnn 7) CI environment
the error is the same as seen in #13362 - they're likely related, although this does not involve ccache. To uncover this bug, remove the hardcoding of USE_SYSTEM_NCCL=1 in .jenkins/caffe2/build.sh The error ends up looking like this ``` nvlink fatal : Internal error: reference to deleted section ``` I p...
caffe2
low
Critical
385,404,762
pytorch
TestAdagrad.test_row_wise_sparse_adagrad intermittently fails health check
Sample log: https://ci.pytorch.org/jenkins/job/caffe2-builds/job/py2-devtoolset7-rocmrpm-centos7.5-test/846//consoleFull ``` 18:23:25 =================================== FAILURES =================================== 18:23:25 ___________________ TestAdagrad.test_row_wise_sparse_adagrad ___________________ 18:23:25 ...
caffe2
low
Critical
385,418,692
go
runtime: potential for self-deadlock in runtime write barriers
In the runtime there's an implicit invariant that's being maintained: write barriers may not be called into while the mheap.lock is held or the runtime could deadlock. This invariant is not documented anywhere nor is it enforced via `nowritebarrier` or `nowritebarrierrec` annotations. Consider the following situatio...
compiler/runtime
low
Minor
385,423,955
pytorch
Batch matmul with sparse matrix, dense vector
When I use torch.matmul or SparseTensor.mm, I can't seem to do batch matmul: ` torch.matmul(sparse_mat, batch) ` <br>gives: ``` RuntimeError Traceback (most recent call last) <ipython-input-45-a815f1be316f> in <module>() ----> 1 torch.matmul(sparse_mat, batch) RuntimeError:...
todo,module: sparse,triaged
medium
Critical
385,428,600
TypeScript
Make JS/TS Import fix insert import in linter specified order
<!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe the feature you'd like. --> Popular linting rules in the TypeScript community require imports to be in alphabetic order (see [ordered-imports in tslint:recommended](https://github.com/palantir/tslint/blob/a43cfdc4534c63447a6a5a66a680...
Suggestion,Awaiting More Feedback,Domain: TSServer
low
Critical
385,485,096
rust
edition idioms: Incorrect span in `extern crate` removal
[First reported upstream](https://github.com/rust-lang/cargo/issues/6360) this code: ```rust #![warn(rust_2018_idioms)] #[cfg_attr(test, macro_use)] extern crate itertools; use itertools::Itertools; fn main() { println!("{:?}", (0..1).collect_vec()); } ``` [when compiled](https://play.rust-lang....
C-enhancement,A-lints,A-diagnostics,T-compiler,A-suggestion-diagnostics,D-incorrect,A-edition-2018
low
Critical
385,497,546
pytorch
[Caffe2] GPU test passed. Cannot see on nvidia-smi
GPU test passed. However, when I run code no PID is shown on nvidia-smi. Is there other way to check whether the code is running on GPU? Or is there some more lines of code I need to add so that caffe2 detects GPUs and uses it?
caffe2
low
Minor
385,510,829
go
x/build/maintner: isTempError improvements
Currently `isTempError` logs the error and vacuously returns true ```go func isTempErr(err error) bool { log.Printf("IS TEMP ERROR? %T %v", err, err) return true } ``` This is used in the `sync` function's error group members in conjunction with `loop` to determine if the error returned from the various sourc...
Builders,NeedsInvestigation
low
Critical
385,550,088
TypeScript
JSDoc @type for list of declarations
Issue Type: <b>Bug</b> When using the `@type` JSDoc for an empty array when declaring multiple variables, only the first declaration is recognized by intellisense. It is overridden by what is actually in the array. It's possible I'm not documenting this correctly, so if that's the case please correct me. Exam...
Bug,Domain: JavaScript
low
Critical
385,570,771
go
cmd/trace: does not track or report in-syscall properly
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? 1.11.2 ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using (`go env`)? osx, darwin, amd64 ### W...
NeedsInvestigation,compiler/runtime
low
Major
385,581,747
flutter
Show users how to run analyze locally when CI fails
Got this from multiple contributors now. After sending a PR, the analyze shard fails with tests they have no idea existed and it doesn't show them how to test and fix locally before pushing more commits to the PR. i.e. dart dev/bots/analyze.dart
team,tool,P2,team-tool,triaged-tool
low
Major
385,627,385
vscode
[folding] Move line up/down should skip over folded regions or folded sections
<!-- Please search existing issues to avoid creating duplicates. --> <!-- Also please test using the latest insiders build to make sure your issue has not already been fixed: https://code.visualstudio.com/insiders/ --> <!-- Use Help > Report Issue to prefill these. --> - VSCode Version:1.30.0-insider - OS Version...
help wanted,feature-request,editor-folding,editor-commands
medium
Critical
385,638,327
go
bytes: tests are slow on arm
I was watching windows/arm build output, and I noticed that `bytes` package tests are pretty slow https://farmer.golang.org/temporarylogs?name=windows-arm&rev=311d87dbebbb0238196d3aa13fd9a37f655e1fc3&st=0xc4704774a0 ``` ok bytes 146.447s ``` and then I looked at linux/arm too, and it is slow too https:/...
NeedsInvestigation
low
Major
385,654,311
TypeScript
JSDoc : add support for @method (and @property)
## Search Terms * JSDoc * `@method` * `@property` * support ## Suggestion It would be great to add support for `@method` and `@property` (and maybe `@memberof`) now that annotations are on their way. I found bug #15715 that only talks about `@property` support but I think this makes more sense to see th...
Suggestion,In Discussion,Domain: JSDoc,Domain: JavaScript
low
Critical
385,733,855
react
Sometimes controlled email inputs break in Chrome due to punycoding
**Do you want to request a *feature* or report a *bug*?** Report a bug **What is the current behavior?** In Chrome, when typing a sharp S (ß, a German letter) in an input field with `type="email"`, it converts the `ß` to `ss` (~~expected~~ unexpected behaviour) and the cursor jumps back to the beginning of th...
Type: Bug,Component: DOM
low
Critical
385,766,612
go
proposal: text/template/v2: return errors from HTMLEscape and JSEscape
`template.HTMLEscape` and `template.JSEscape` each accept an `io.Writer` and write to it. However, they ignore errors from `Write`. That's fine when the destination `io.Writer` is one that cannot fail (such as a `*bytes.Buffer`), but can mask real errors in general (see also https://github.com/golang/go/issues/20803...
v2,Proposal
low
Critical
385,792,398
pytorch
[Caffe2] How to fetch trainable parameters?
This is what I tried ```python with core.DeviceScope(core.DeviceOption(caffe2_pb2.CUDA, 0)): # DenseNet is a class where all the methods have been added obj = DenseNet((1, 3, 224, 224)) workspace.SwitchWorkspace(obj.current_workspace) workspace.RunNetOnce(obj.model.param_init_net) ...
caffe2
low
Minor
385,816,884
react
findDOMNode deprecation
## Timeline 1. <= 16.3: `findDOMNode` is *discouraged* but accepted for certain use cases 2. 16.3 (2018-03-28): `forwardRef` is introduced: It can be used in HOCs to avoid using `findDOMNode` on the enhanced component 3. 16.6 (2018-10-23): `findDOMNode` is deprecated in `React.StrictMode` 4. 16.7.alpha (2018-10-...
Type: Feature Request
medium
Minor
385,828,404
rust
debuginfo tests should detect a python-less gdb
Some of the debuginfo tests require a Python-enabled gdb. If this isn't available, they should be disabled. See https://github.com/rust-lang/rustc-guide/pull/243 and https://github.com/rust-lang/rust/issues/52452
A-testsuite,C-enhancement,T-testing-devex
low
Critical
385,847,877
go
cmd/go: document module-mode behavior of multi-element GOPATHs
go version devel +311d87dbeb Thu Nov 29 08:30:13 2018 +0000 linux/amd64 ``` $ go env GOARCH="amd64" GOBIN="" GOCACHE="/home/mvdan/go/cache" GOEXE="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="/home/mvdan/go/land:/home/mvdan/go" GOPROXY="" GORACE="" GOROOT="/home/mvdan/tip" ...
Documentation,help wanted,NeedsFix
low
Critical
385,878,297
flutter
Detect Java network issues when running `flutter doctor --android-licenses`
We've had reports of users needing to set the Java network proxy before being able to accept the Android licenses. We should be able to write a simple Java executable that probes for basic network connectivity: ```java import java.net.InetAddress; import java.net.InetSocketAddress; import java.nio.channels.Socke...
tool,t: flutter doctor,a: first hour,P3,team-tool,triaged-tool
low
Minor