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
354,976,762
pytorch
Where could I see all of the caffe2 operators and their arguments in python API?
Thanks for publishing the caffe2 and it is an excellent deep learning framework. I am wondering that how could I see all of the caffe2 operators. I see the caffe2 operators catalog https://caffe2.ai/docs/operators-catalogue.html but it might not cover all of the operators. For example, I could apply an operator called ...
caffe2
low
Minor
354,995,970
opencv
The parameter types for cv::solvePnP() is misleading
<!-- 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: calib3d
low
Critical
354,998,205
vscode
[html] Support SCSS in HTML with <style type="text/scss">
I'm using a framework that lets me write SCSS code in HTML files, by marking them in a block with `<style type="text/scss">`. While VS Code seems to be perfectly fine with SCSS, it doesn't seem to support it inside a HTML file. As such, I get errors from the CSS parsers when using SCSS features, IntelliSense isn't work...
feature-request,html
low
Critical
355,034,044
pytorch
[Caffe2] [Question] How to disable the bias parameter?
Is there any way to disable the bias parameter for a specific layer, e.g., for convolution layer? Is there something like **bias_term=[true or false] from Caffe**?
caffe2
low
Minor
355,046,438
pytorch
Error when building
Hello, when I build , there is an error after "FULL_CAFFE2=1 python setup.py install". /usr/local/lib/libopencv_imgcodecs.so.3.3: undefined reference to `TIFFReadEncodedStrip@LIBTIFF_4.0' /usr/local/lib/libopencv_imgcodecs.so.3.3: undefined reference to `TIFFSetField@LIBTIFF_4.0' /usr/local/lib/libopencv_imgcodecs...
caffe2
low
Critical
355,056,901
vue
An anti-pattern in computed property may cause performance issue
### Version 2.5.17 ### Reproduction link [https://codesandbox.io/s/140202wlq](https://codesandbox.io/s/140202wlq) ### Steps to reproduce Open the code sandbox link and click the button to use the computed property 'filteredEntities', and you will find it cost a lot of time. After check the call tree...
has PR
low
Major
355,077,694
vscode
Git - Linux ssh-agent/ssh-askpass problem
<!-- 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/ --> As already reported in #33814, #32097, #52137 the bug isn't fixed for me and the workarounds don...
bug,git
medium
Critical
355,088,678
flutter
Ink reaction of IconButtons in AppBar is too big
Compared to native Android apps and the material spec, `IconButton`s in `AppBar`s should have a smaller ink reaction when pressed. <img src="https://storage.googleapis.com/spec-host-backup/mio-design%2Fassets%2F0B9msDEx00QXmRVVQQlZBRnRGd2M%2Fpressed-04.png"> (Tile 1) Not sure if that applies to all `IconButton`s...
framework,f: material design,a: fidelity,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design
low
Major
355,118,615
flutter
`flutter attach --machine` should report `Waiting for a connection` in JSON for editors to report progress
Currently this status is just written to stdout so the editor can't display a nicer representation (eg. a progress notification): ``` [12:32:30 GMT+0100 (BST)] [FlutterRun] [Info] <== [{"event":"daemon.connected","params":{"version":"0.4.1","pid":13567}}] [12:32:30 GMT+0100 (BST)] [FlutterRun] [Info] <== Waiting f...
c: new feature,tool,P3,team-tool,triaged-tool
low
Minor
355,143,392
pytorch
Multiprocess Deadlock when using np.transpose and torch.stack
Environment: Ubuntu 16.04.4 LTS Python 3.5.2 pytorch 0.4.0 numpy 1.14.5 Or just use horovod image `uber/horovod:0.13.10-tf1.9.0-torch0.4.0-py3.5` I run np.transpose and torch.stack first in parent process, then run np.transpose and torch.stack in the subprocess, then subprocess hangs at torch.stack. When I c...
module: multiprocessing,triaged
low
Critical
355,198,151
react
Relax ToString consistency guarantees
We recently chatted about https://github.com/facebook/react/pull/13367 and related work (e.g. https://github.com/facebook/react/pull/13394) with @sebmarkbage, and he raised a good point. It seems like overall treating them consistently is adding significant overhead in the implementation readability. And there’s und...
Type: Enhancement,Component: DOM,React Core Team
medium
Critical
355,263,332
go
runtime: use parent goroutine's stack for new goroutines
This is a speculative idea from discussion with @aclements. Jotting it down so it doesn't get lost and to open discussion. Spinning off many goroutines that grow their stack and then exit can be a source of performance pain. See e.g. #18138. One approach to fixing this is [tracking and using statistics about stack g...
Performance,NeedsInvestigation,compiler/runtime
low
Major
355,292,842
rust
Rustc does not warn about `use` with paths incompatible with `uniform_paths` for edition 2018
## Updated Description: [This code generates no warnings when compiled with the 2015 edition](https://play.rust-lang.org/?version=beta&mode=debug&edition=2015): ```rust #![deny(rust_2018_compatibility)] #![allow(unused_imports)] extern crate rayon; mod foo { mod rayon {} use rayon::Scope; ...
A-lints,T-compiler,C-future-incompatibility,C-bug,A-edition-2018
medium
Critical
355,306,210
go
cmd/go: allow verifying vendored code
`go mod verify` is extremely useful for validating the integrity of modules in the local cache. It would be great if projects that choose to vendor their modules (then presumably building with `go build -mod vendor ...`) had a similar command to verify the integrity of modules in that directory. This would satisf...
NeedsInvestigation,FeatureRequest,modules
high
Critical
355,306,813
deno
Don't assume paths are always valid UTF8
This is a longer term goal. * Don't use String/str for paths on the rust side (we should start doing this today). * Use flatbuffer byte vectors instead of strings to encode paths in messages. * On the javascript side have an *optional, low-level API* that reports paths are typed arrays and not strings. This wa...
suggestion,chore
low
Major
355,350,493
TypeScript
In JS, assignment to property of class has no contextual type
**TypeScript Version:** 3.1.0-dev.20180829 **Code** ```ts class C { /** * @param {number} n * @return {number} */ m = n => n * 2; } const c = new C(); c.m = n => n * 3; ``` **Expected behavior:** No error. **Actual behavior:** `src/a.js:10:7 - error TS7006: Parameter...
Bug,Domain: JSDoc,checkJs,Domain: JavaScript
low
Critical
355,354,474
flutter
Discussion: Separate Scaffold and DrawerLayout
Is there any reason why the `Scaffold` is responsible for the page itself (app bars, floating action button...) and the drawers? It seems like there is no unidirectional connection between the drawer rendering and the page itself. It would be handy if there was a `DrawerLayout` widget that is only responsible for re...
framework,f: material design,c: proposal,P2,team-design,triaged-design
low
Minor
355,375,696
kubernetes
Scarce Resource Bin Packing Priority Function
/kind feature /sig scheduling **What happened**: Consider a 3 node cluster with following resources availability *Node 1* extended-resource = intel.com/foo : 4 *Node 2* extended-resource = intel.com/foo : 4 *Node 3* extended-resource = intel.com/foo : 2 Run Job spec with following requests for extende...
sig/scheduling,kind/feature,lifecycle/frozen
medium
Major
355,376,289
godot
Fullscreen mode makes CPU usage go significantly up - even on an empty scene ! - when running in a display monitor of 3440x1440.
**Godot version:** 3.0.6 (stable.official.8314054) **OS/device including version:** Win 10, Intel i7-7700K @ 4.20GHz, NVidia GTX 1080, Monitor 3440x1440 **Issue description:** - When running godot in full screen mode, the CPU usage goes very high (at least for some monitors). For example, running a near empty ...
bug,platform:windows,topic:core,confirmed
low
Major
355,376,946
flutter
TextField does not lose input focus when window loses focus.
To reproduce (Android): - place a flutter app in split screen mode with another app. - Begin editing a text field. - Tap into the other app, this will dismiss the keyboard - Observe that the text field still appears to have focus, the cursor is blinking et cetera. What should happen: Upon focusing th...
a: text input,customer: fuchsia,platform-android,framework,f: focus,has reproducible steps,P2,found in release: 3.3,found in release: 3.4,team-android,triaged-android
low
Major
355,386,693
TypeScript
Indexed this types don't narrow when their referenced property narrows
**TypeScript Version:** 3.1.0-dev.20180829 **Search Terms:** this index narrowing generics **Code** ```ts type Keys = 'string' | 'number'; type Switch<T extends Keys> = T extends 'string' ? string : T extends 'number' ? number : never; interface Main<T extends Keys> { kind: T; value: Switch<thi...
Suggestion,In Discussion
low
Minor
355,389,308
rust
Fully qualified path to nested consts complains about ambiguous associated type
I believe the following code should be accepted by the compiler, but currently complains with `error[E0223]: ambiguous associated type`: ``` struct C; impl C { const X: usize = 42; } struct S; impl S { const foo: C = C; } fn main() { let _ = S::foo::X; } ``` Might be needed before ...
A-type-system,A-trait-system,A-associated-items,T-compiler,C-bug,T-types
low
Critical
355,398,667
TypeScript
Support using --module and --outDir flags in conjunction with --build
<!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section. --> ## Search Terms <!-- List of keywords you searched for before creating this issu...
Suggestion,In Discussion
low
Critical
355,399,793
pytorch
A bug in roi_align.cc? [Caffe2]
There maybe a bug in roi_align.cc. Line 164 and Line 165 T roi_width = std::max(roi_end_w - roi_start_w, (T)1.); T roi_height = std::max(roi_end_h - roi_start_h, (T)1.); I think it should be: T roi_width = std::max(roi_end_w - roi_start_w + 1, (T)1.); T roi_height = std::max(roi_end_h - roi_start_h + 1, (T)1...
caffe2
low
Critical
355,404,978
pytorch
non-shuffling data loaders can affect random states, thus the results of shuffling data loaders.
## Issue description See the title. While it's arguable this behavior is bug or not, I feel it's not very intuitive. Maybe it's good to doc this. For an actual example, see below. In the example, I have two data loaders, one shuffling for training, one non-shuffling for validation. Turns out, the order of data...
todo,module: dataloader,triaged
low
Critical
355,432,260
youtube-dl
Youku download failure
C:\BUILD\youtube>c:\Apps\youtube-dl.exe -f bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best https://v.youku.com/v_show/id_XNzM2NTAxNDAw.html --verbose [debug] System config: [] [debug] User config: [] [debug] Custom config: [] [debug] Command-line args: ['-f', 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext...
cant-reproduce
low
Critical
355,464,775
TypeScript
convert a property/element access expression to a getter and setter
<!-- 🚨 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 refactor, getter, setter <!-- List of keywords you searched for b...
Suggestion,Awaiting More Feedback
low
Critical
355,473,473
rust
Const qualification
cc @eddyb @RalfJung Let's figure out what exactly we need, because I'm very confused about it. So, currently const qualification is doing a few things at once: 1. figure out all the feature gates and forbid things not allowed in constants/statics/const_fn at all or without the feature gates 2. figure out wha...
A-const-eval
medium
Critical
355,478,772
pytorch
undefined reference to 'caffe2::Caffe2FlagsRegistry[abi:cxx11]()'
I finished compiling caffe2 from source on pytorch repository following this instructions: [(https://caffe2.ai/docs/getting-started.html?platform=ubuntu&configuration=compile)] Now I am making some simple code to test caffe2 with C++ and getting this error: ``` g++ -c -std=gnu++0x -msse2 -I. -I/usr/local/cuda-9....
module: build,triaged
low
Critical
355,497,202
vscode
Cancel file operations from opening an editor when closing it
Issue Type: <b>Bug</b> Found a bug. When you clicked to open huge file, for ex. 1.5 GB txt, and then immediately closed it - VS Code will try to open it anyway, RAM will be overflow, and Studio crashes. VS Code version: Code 1.26.1 (493869ee8e8a846b0855873886fc79d480d342de, 2018-08-16T18:38:57.434Z) OS versio...
feature-request,freeze-slow-crash-leak,file-io,keep
low
Critical
355,500,541
opencv
solveLP() produces infeasible results
##### System information (version) - OpenCV => 3.0 - Operating System / Platform => Ubuntu 16.04 64-bit - Compiler => gcc 4.9.4 ##### Detailed description I observed that `solveLP()` might produce infeasible results. When I do `A*x` Some of the constraints are not satisfied, i.e. `A*x > b` for some rows of `A`...
bug,category: core,confirmed,effort: few days,Hackathon
low
Major
355,500,684
pytorch
[...] operator for masked select does not broadcast anymore
I have the last pytorch version from source, pulled this morning, ubuntu 16.04, CUDA 9.1 the `tensor[byte_tensor]`, which i thought to be equivalent to masked_select doesn't broadcast, while I am pretty sure it did broadcast before. Simple example to recreate the problem : ```python a = torch.randn(10,10,10) ...
todo,triaged,module: sorting and selection
low
Minor
355,505,825
go
proposal: encoding/json: Support for nested values in JSON tags
I have often run into situations where it would convenient to translate nested JSON objects into flat structs. An example would be the AWS dynamodb API that returns nested objects based on the saved type (https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_GetItem.html), i.e.: ```json { "Item"...
Proposal,Proposal-Hold
medium
Major
355,507,785
flutter
TimePicker can not only set a specific minute!
**My App has a feature that can only select 0 and 30 minutes!** **TimePickerDialog can select 0~60 [minutes!**] ![file1535621930316](https://user-images.githubusercontent.com/18555528/44843998-45192c80-ac7c-11e8-85ad-23e5abef6afd.jpg) **Can you provide API for this!**
c: new feature,framework,f: material design,f: date/time picker,P3,team-design,triaged-design
low
Minor
355,539,061
flutter
Hiding StatusBar and BottomNavigationBar animation of SystemChrome.setEnabledSystemUIOverlays is not so UI Friendly
A difference in the visibility animation of `StatusBar` and `BottomNavigationBar` is perceptible. All I did was ```dart onTap:(){ makeItFullScreen ? SystemChrome.setEnabledSystemUIOverlays([]) : SystemChrome.setEnabledSystemUIOverlays( [SystemUiOverlay.bottom, ...
platform-android,framework,f: material design,a: quality,a: layout,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-android,triaged-android
low
Major
355,588,894
angular
validatorChange triggers valueChanges emit even if model stays the same
## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [x] Bug report <!-- Please search GitHub for a similar issue or PR before submitting --> </code></pre> ## Current behavior When a control is implementing the `Validator` interface and informs forms infrastructure about va...
type: bug/fix,breaking changes,freq2: medium,area: forms,state: confirmed,P4
low
Critical
355,627,594
vue
Vue treat every element attribute named like 'v-[something]' as directive
### Version 2.5.17 ### Reproduction link [http://jsfiddle.net/wf48v9de/3/](http://jsfiddle.net/wf48v9de/3/) ### Steps to reproduce Run the fiddle and look at console. ### What is expected? If there is not registered directive named 'v-fake', Vue should ignore this attribute of an element. ### Wh...
improvement
low
Critical
355,637,770
vue-element-admin
Would this be compatible to nuxt?
did any of you guys ported it and have a skeleton starter in nuxt?
待定需求
low
Major
355,639,559
rust
Stack overflow with Boxed array
This is possibly the same bug as https://github.com/rust-lang/rust/issues/40862 Using the latest version of Rust rustc 1.27.2 (58cc626de 2018-07-18) The following code causes a stack overflow ```rust #[test] fn test_boxed() { let a = Box::new([-1; 3000000]); } ``` # Workarounds ## Using `V...
A-LLVM,A-codegen,T-compiler,A-box
high
Critical
355,673,518
TypeScript
`@typedef` doesn't give error for bad or missing typename
```js /** @typedef {number} 3 */ /** @typedef {number */ ``` **Expected behavior:** Errors on both. 1. "'3' is not a valid type alias name.' 2. Missing type alias name. **Actual behavior:** Errors on neither, and neither alias can be used. If you have a declaration following the typedef, you will ge...
Suggestion,Experience Enhancement
low
Critical
355,677,766
vscode
Allow changing triple-click (and double-click) behaviour
Currently when I triple-click a word, the whole line gets selected. I'm finding this annoying, as I seem to be doing it by accident, when intending to double-click to select just one word. So I want to be able to customize triple-click to behave identically to double-click. Searching user settings I cannot fin...
feature-request,editor-commands
medium
Critical
355,693,351
go
net/http: TimeoutHandler hides panic locations
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? v1.10.3 ### Does this issue reproduce with the latest release? Not sure, I am finding a solution with my current version ### What operating system and processor architecture are you usin...
NeedsInvestigation
medium
Critical
355,705,732
flutter
Add new features to Dismissible widget
The Dismissible widget is awesome but has very limited functionality which makes it not usable in many real world applications. Let's consider adding the following features (in order of priority): 1. Allow onResize() callback to get the direction in which the item was dismissed. This is needed to implement two types...
c: new feature,framework,f: material design,c: proposal,P2,team-design,triaged-design
low
Major
355,728,130
rust
35% performance regression in generated code since 1.24
## Summary [Claxon](https://github.com/ruuda/claxon), when compiled with Rust 1.25.0 or later, takes 1.36 times as long to run as a version compiled with Rust 1.23.0. When compiled with Rust 1.24.0, it takes 1.45 times as long to run. It looks like there was a severe regression in generated code in 1.24.0. 1.25.0...
I-slow,P-medium,T-compiler,regression-from-stable-to-stable,C-bug
low
Critical
355,745,154
TypeScript
Javascript: Object.assign to assign property values for classes is not respected
<!-- 🚨 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,Experience Enhancement
high
Critical
355,751,785
flutter
`flutter screenshot --type=skia` can't record images in real devices
engine,dependency: skia,P2,team-engine,triaged-engine
low
Major
355,772,049
pytorch
use_system_nccl flag does not work?
I try to use nccl lib on my machine when installing pytorch from source. What I did is `export USE_SYSTEM_NCCL=1` `export NCCL_ROOT_DIR="~/nccl_2.1.15-1+cuda9.0_x86_64/"` `export NCCL_LIB_DIR="~/nccl_2.1.15-1+cuda9.0_x86_64/lib"` `export NCCL_INCLUDE_DIR="~/nccl_2.1.15-1+cuda9.0_x86_64/include/"` and then ...
module: build,triaged
low
Minor
355,772,189
go
net: FileConn() and Dial() only return public net.Conn implementations
In Go 1.11 and 1.10, the documentation does not say anything about which implementations of `net.Conn` are actually returned by `net.Dial()` (and friends) and `net.FileConn()`. The current implementations of `net.Dial()` and `net.FileConn()` only return public implementations of `net.Conn` (or an error). Taking adva...
Documentation,NeedsInvestigation
low
Critical
355,774,202
terminal
Bringing back the console graphics screen-buffers?
How hard would it be to bring back the console graphics screen-buffers functionality to conhost, which previously existed in Windows <= 2003 and was used by NTVDM to display the output of graphics DOS applications while being run in windowed mode? (see e.g. https://virtuallyfun.com/wordpress/2009/08/08/softpc-%e2%80%93...
Issue-Feature,Product-Conhost,Area-Output,Area-Server
low
Major
355,776,503
rust
Improve suggestion for lifetime error in pattern
I ran into [this lifetime issue](https://play.rust-lang.org/?gist=d9584412582bbb07cba97ebae726b86e&version=stable&mode=debug&edition=2015): ```rust if let Some(v) = var { a.push(&v); } ``` which is [easily resolved](https://play.rust-lang.org/?gist=35242df073812059e21e772f084362c9&version=stable&mode=deb...
C-enhancement,A-diagnostics,A-lifetimes,T-compiler
low
Critical
355,792,055
pytorch
[Caffe2] Error C2492: data with thread storage duration may not have dll interface
## Issue description Getting error C2492 from `caffe2\core\net_async_base.h` when building Caffe2 as DLL on Windows. ``` caffe2\core\net_async_base.h(103): error C2492: 'caffe2::AsyncNetBase::stream_counters_': data with thread storage duration may not have dll interface (compiling source file caffe2\core\net_as...
caffe2
low
Critical
355,802,153
go
testing: document best practices for avoiding compiler optimizations in benchmarks
### What did you do? 1. I wanted to make sure I was creating accurate benchmarks. 2. I found and read [Dave Cheney's 2013 blog post on how to write benchmarks in Go](https://dave.cheney.net/2013/06/30/how-to-write-benchmarks-in-go). In the "A note on compiler optimisations" section he mentions that it is best pract...
Documentation,help wanted,NeedsInvestigation
medium
Critical
355,812,667
go
crypto/x509/pkix: Name.String() follows obsolete RFC
Please answer these questions before submitting your issue. Thanks! The format of a certificate Subject (or Issuer) when made into a String is following RFC 2253 (obsolete) instead of 4514. Using the same format as given by "openssl x509 -in cert.pem -text -noout" would be much more useful. ### What version of ...
NeedsDecision
low
Critical
355,842,197
go
x/build: add a Windows Server, version 1803 (~"Windows 10") builder
GCE supports "Windows Server, version 1803": https://cloud.google.com/compute/docs/instances/windows/ We should run such a builder. See: https://go-review.googlesource.com/c/go/+/131976 https://docs.microsoft.com/en-us/windows-server/get-started/get-started-with-1803 It would've prevented #25722. /cc @...
OS-Windows,Builders,FeatureRequest,new-builder
low
Minor
355,885,958
go
net/http: first byte of second request in hijack mode is lost
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.11 darwin/amd64 ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? GOARCH="amd64"...
NeedsInvestigation
low
Critical
355,913,029
TypeScript
A way to specify class properties using JSDoc
## Search Terms JSDoc class properties any key `@property` ## Suggestion I would like to be able to extend the type of an ES6 class using JSDoc comments, such that TypeScript understands there are other properties that might be added to the object later. Alternatively, I would like a way to indicate that a ...
Suggestion,Domain: JavaScript,Experience Enhancement
medium
Critical
355,915,406
flutter
drawercontroller stop at tint screen on both open and close drawer
1. When drag or click icon to open drawer, drawer didn't open but the screen were tinted. I can then drag out the drawer. 2. When trigger `Navigator.pop(context);` The drawer closed but the screen remind tinted, need extra tap to clear. Tested in android device and emulator, `drawerCallback` simply updated a var...
framework,f: material design,P3,team-design,triaged-design
medium
Major
355,950,549
vue
2 transition-groups with different tags v-if / v-else = Cannot read property '$vnode' of null
### Version 2.5.16 ### Reproduction link [https://codepen.io/anon/pen/BOpJZb](https://codepen.io/anon/pen/BOpJZb) ### Steps to reproduce 1- Open the console 2- Click the button ### What is expected? In fact I don't know. I would expect not to see the error but I'm thinking maybe I'm doing somethi...
improvement,has workaround,transition
low
Critical
355,969,050
vscode
Allow to compare 3 files
VS Code allows to easily compare two files by choosing `Select for compare` and `Compare with selected`. But we can only select two files. `diff3`, `kdiff3` and `vimdiff` do the job but I would prefer it integrated into VS Code. This would be helpful! **Edit**: would also be nice to be able to compare 4 fil...
feature-request,diff-editor
high
Critical
355,985,125
opencv
assert fires in imencode for .hdr because the ImageEncoders write into a file instead of buffer
##### System information (version) - OpenCV = 3.4.1 (but probably any) - Operating System / Platform = Android - Compiler = GCC (probably more) ##### Detailed description When trying to save HDR data into a buffer via imencode as .hdr or the programm stops with ``` Error: Assertion failed (code) in bool cv::...
priority: low,platform: android,category: imgcodecs
low
Critical
356,015,753
rust
Various FFI run-pass tests probably should be using `repr(C)` as lint is instructing.
The following run-pass tests cause the `improper_ctypes` lint to fire. It would probably be fine (and trivial) to add `#[repr(C)]` to them. https://github.com/rust-lang/rust/blob/c2afca36672a85248f4da3e8db8cdfac198ad4ad/src/test/run-pass/extern-pass-TwoU16s.rs#L17 https://github.com/rust-lang/rust/blob/c2afca36672a852...
A-testsuite,T-compiler,C-bug,A-repr
low
Minor
356,017,337
rust
run-pass/extern-pass-empty is probably a bogus thing to test
The following code hits the lint that warns about trying to put `#[repr(C)]` on an empty struct. https://github.com/rust-lang/rust/blob/c2afca36672a85248f4da3e8db8cdfac198ad4ad/src/test/run-pass/extern-pass-empty.rs#L33-L34 (This seems like a bogus test that was caught by working on fixing #53764.)
A-testsuite,A-FFI,P-medium,T-compiler,S-blocked
low
Major
356,028,986
godot
Load as Image for Android compatability
**Godot version:** 3.1 **Issue description:** In 3.1 I have tested the `image.load()` method on the desktop and android and have found that this function does not load a Texture or an Image resource AS an image recognizable on Android. It only works on the desktop. However, `image = load()` WILL load an Image re...
enhancement,platform:android,topic:import
low
Minor
356,041,292
rust
Function missing PartialEq when type not explicitly annotated
Suppose we have an extern function foo for use in FFI. For some reason an explicit type annotation allows use of the PartialEq trait, but no type annotation does not (even though the error message states the type is identical: `unsafe extern "C" fn() -> i32 {foo}`): ```rust #[no_mangle] pub unsafe extern "C" fn fo...
A-type-system,T-compiler,T-types
low
Critical
356,043,471
go
os: Readdir swallows partial results if it fails to Lstat any file in the listing
Please answer these questions before submitting your issue. Thanks! ### 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 ### What operating system and processor architecture are you using (`go env`)? GOARCH="amd64" ...
NeedsInvestigation
low
Critical
356,108,243
go
encoding/asn1: error when unmarshalling SEQUENCE OF SET
### What version of Go are you using (`go version`)? go1.11 windows/amd64 ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? ``` set GOARCH=amd64 set GOBIN= set GOCACHE=C:\Users\xxx\AppData\Local\go-build set GOEXE=.ex...
NeedsInvestigation
low
Critical
356,108,586
rust
Show a suggestion after the compiler fails when you implement `from` and forget to mark as `pub`
Let say we have a `main.rs` like this ... ```rust use std::io::{self, Write}; use std::process::Command; mod cmd; mod error; use cmd::Cmd; use error::Error; fn main() -> Result<(), io::Error> { let stdin = io::stdin(); let mut stdout = io::stdout(); loop { let mut line = String...
A-diagnostics,A-trait-system,A-visibility,T-compiler,C-feature-request,D-confusing,D-terse
low
Critical
356,153,131
flutter
Describe CupertinoColor provenance
For each entry, describe how it was derived. At the top of the file, have a ordered list of preferred means of getting these values. 1- Apple design Sketch file 2- Third-party design Sketch file 3- Color picker from simulator 4- Eyeballing
framework,f: cupertino,d: api docs,P2,team-design,triaged-design
low
Minor
356,188,758
rust
improve error message when returning iterator with reference into stack frame
This example ([playground](https://play.rust-lang.org/?gist=dbf25e623505ebbb9a118b9155107fbc&version=stable&mode=debug&edition=2015)): ```rust use std::rc::Rc; fn iterate(data: Rc<Vec<u32>>) -> impl Iterator<Item = u32> { data.iter().cloned() } fn main() { for x in iterate(Rc::new(vec![1, 2, 3])) {...
C-enhancement,A-diagnostics,T-compiler
low
Critical
356,193,720
opencv
Test: Fix build information from tests on Windows platform (MSBuild)
related #12067 CMake with MSBuild generator doesn't fill "Configuration" value. Debug/Release build type is defined via compilation parameters. ``` Build type: N/A WARNING: build value differs from runtime: Release ```
bug,test
low
Critical
356,237,623
rust
Provide a split method which doesn't consume the element used to split
The [split](https://doc.rust-lang.org/std/primitive.slice.html#method.split) method consumes the element used to split, how you can see in the code below. But in some cases would be nice to move the element to the "first or second slice" like the [split_at](https://doc.rust-lang.org/std/primitive.slice.html#method.spli...
T-libs-api,C-feature-request
low
Critical
356,238,032
pytorch
A Caffe2 Implementation of Pose Estimation
Hi, I would like to provide a link for a caffe2 implementation of human pose estimation at here. The link is at: https://github.com/eddieyi/caffe2-pose-estimation . Thanks.
caffe2
low
Minor
356,241,046
go
crypto/sha1: add native SHA1 instruction implementation for AMD64
I've transliterated the [Linux kernel](https://github.com/torvalds/linux/blob/master/arch/x86/crypto/sha1_ni_asm.S) version of native SHA1 instructions to [Go's flavor of assembly](https://gist.githubusercontent.com/BenLubar/d11e801907892a6ee8d7ce1e0e4db144/raw/sha1block_amd64.s). The result is a [1.5x to 3x speed-up](...
Performance,NeedsDecision
low
Major
356,262,379
vue-element-admin
左侧侧边栏页面DOM结构异常 - use fragment
<img width="1043" alt="2018-09-02 3 53 17" src="https://user-images.githubusercontent.com/23553358/44953799-0a590380-aecb-11e8-9fcc-f9d1b9d820d5.png">
feature
low
Minor
356,262,516
javascript-algorithms
Suggestion: ship production ready build to npm
Hey, I noticed that the current version deployed on npm (i.e. https://www.npmjs.com/package/javascript-algorithms-and-data-structures) is more or less a mirror of the source code here. `javascript-algorithms` is really awesome and someone might want to use it as an external library on production (e.g. a web app or n...
enhancement
low
Major
356,279,939
TypeScript
Input source maps
## Suggestion Support input source maps, for the case where a TS file is generated programatically from some other source file, in order to permit end-to-end mapping. Such source maps could either be specified in the `.ts` file using the `//# SourceMappingURL=foo.ts.map` notation, searched for under the name `*.t...
Suggestion,Awaiting More Feedback
low
Minor
356,291,059
rust
Unhelpful help for E0387 "consider changing this closure to take self by mutable reference"
I just got this error message (on current stable, beta, and the nightly mentioned below): ```plain error[E0387]: cannot borrow data mutably in a captured outer variable in an `Fn` closure --> src/main.rs:30:57 | 30 | .for_each(|filename| tally_words(filename, &mut words).unwrap()); | ...
C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics,D-invalid-suggestion
low
Critical
356,293,307
go
cmd/compile: autotemps can make stack frame too large
When the order pass introduces temporaries, it always allocates them on the stack, even if they are too big for the stack. ``` package main import "reflect" func f() { g(reflect.TypeOf([2000000000]*byte{})) } //go:noescape func g(p reflect.Type) ``` We should use the same rules as escape analysis d...
NeedsFix,compiler/runtime
low
Major
356,309,769
flutter
FR: add .of() method to RenderBox
Currently we have to do this `(context.findRenderObject() as RenderBox).size.height` It would be nice to be able to do this: `RenderObject.of(context).size.height` Which matches the semantics of MediaQuery `MediaQuery.of(context).size.height`
c: new feature,framework,P3,team-framework,triaged-framework
low
Minor
356,310,070
TypeScript
Type narrowing not working as expected in else
For the following code with `strictNullChecks` enabled: ```ts interface Base { a: {} | null; b: {} | null; } function test(base: Base): void { if (!base.a && !base.b) { const result: null = null; } else if (!base.a && base.b) { const result: {} = base.b; } else if (bas...
Suggestion,In Discussion
low
Critical
356,328,836
youtube-dl
[Viki] ffmpeg embed subtitles error
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2018.09.01*. If it's not, read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected. - [x] I've **verified**...
geo-restricted
low
Critical
356,343,552
bitcoin
rpc: Wrong `gettransaction` info for a coinjoin
Take a look at this transaction: https://testnet.smartbit.com.au/tx/947ddb7d22b0c7e8edd3a56a92b8ec771aa8b18667ef508270f928b14821e924 I've double checked with `getaddressinfo` and only the first input is mine, and the second output is mine. So the transaction looks like Inputs: [1.02 BTC mine, 1.1 BTC not-mi...
RPC/REST/ZMQ
low
Major
356,351,562
youtube-dl
[Viki] doesn't return episode number or any of the series output template
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2018.09.01*. If it's not, read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected. - [x] I've **verifi...
geo-restricted
low
Critical
356,397,452
pytorch
[Caffe2] How to correctly add Caffe2 libraries to Visual Studio to write C++ programs?
Hello all, I successfully built Caffe2 from source on windows 10. Now, I would like to use caffe2 libraries in Visual Studio 2015 to write C++ programs. **How should I add the libraries and from what path in order to be able to include the libraries as below?** ``` #include "caffe2/core/common.h" #include "caffe2...
caffe2
low
Critical
356,488,574
TypeScript
Type the tagName string property of Element derivations to aid overloading and for discriminated unions
## Search Terms tagName, nodeName ## Suggestion Typing the tagName property in lib.dom.d.ts for Element and derivations ( or only concrete derivations and a discriminated type alias of these ) e.g interface SVGGElement extends SVGGraphicsElement { //..existing definition tagName:"g" } ## Use C...
Suggestion,In Discussion
low
Minor
356,530,949
pytorch
[pytorch][feature request] Cosine distance / simialrity between samples of own tensor or two tensors
## Issue description This issue came about when trying to find the cosine similarity between samples in two different tensors. To my surprise `F.cosine_similarity` performs cosine similarity between pairs of tensors with the same index across certain dimension. I was expecting something like: http://scikit-learn.or...
module: nn,triaged,module: numpy,function request,module: distance functions
medium
Critical
356,568,507
rust
Incremental compilation fails when a generic function uses a private symbol
The way that incremental compilation works breaks code that uses private symbols. For example, the following code will fail to compile when using incremental compilation (e.g. the default `cargo build`), but will build successfully when incremental compilation is disabled (e.g. the default `cargo build --release`): ...
A-linkage,T-compiler,C-bug
low
Critical
356,610,294
godot
Label clip_text clips content
**Godot version:** 3.1alpha 19d5789 **Issue description:** A label with `clip_text` set to true clips its children. I would expect `clip_text` to only clip the text itself, and `Control.clip_content` to be the one responsible for children visibility. Here's an example with a color_rect as the label's child (drawing ...
bug,confirmed,topic:gui
low
Minor
356,611,799
rust
disambiguate between multiple suggestions and a single multi-span suggestion; or, JSON error format is not round-trippable
## Summary To solve rust-lang-nursery/rustfix#141 (and one can only assume that RLS faces a similar problem), we need to be able to tell the difference between multiple suggestions (of which we likely only want to apply one), and a single suggestion that happens to touch multiple spans. The `DiagnosticBuilder` API s...
C-cleanup,A-diagnostics,E-mentor,P-high,T-compiler,E-medium,WG-diagnostics,D-diagnostic-infra
medium
Critical
356,652,934
godot
Canvas Modulate should use light mask
Canvas modulate can be thought of as a light that applies uniformly to everything in 2D. It would be helpful, if you could apply it to some nodes, but not others based on the light mask.
enhancement,topic:rendering
low
Minor
356,687,181
go
x/mobile: application freeze after resumed from suspend state on iOS
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.8.1 darwin/amd64 ### Does this issue reproduce with the latest release? YES ### What did you do? Git clone the [basic](https://godoc.org/golang.org/x/mobile/example/bas...
mobile
low
Critical
356,705,774
angular
Pseudo-events do not work properly for different input languages
## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopped working in a new release) [x] Bug report <!-- Please search GitHub for a similar issue or PR before submitting --> [ ] Performance issue [ ] Feature request [ ] Docume...
type: bug/fix,freq2: medium,area: core,core: event listeners,P3
low
Critical
356,712,219
go
proposal: crypto/tls: add support for AES-CCM
Hi! I am working in a project that requires `AES-CCM` cipher suite within TLS. I know that `crypto/tls` aims to support a limited safe subset of TLS. But since TLS 1.3 will only support the following cipher suites: TLS_AES_128_GCM_SHA256 TLS_AES_256_GCM_SHA384 TLS_CHACHA20_POLY1305_SHA256 TLS_AES_128_CCM_SHA256 ...
Proposal,Proposal-Hold,Proposal-Crypto
medium
Critical
356,786,759
rust
Regression on nightly since LLVM 8 upgrade: `thread` sanitizer doesn't compile anymore
Hi, the [fuzzer](https://crates.io/crates/honggfuzz) I maintain is failing to build on the latest nightlies: The interesting part of the error log seems to be: ``` note: /usr/bin/ld: __sancov_guards has both ordered [`__sancov_guards' in /home/travis/build/rust-fuzz/honggfuzz-rs/example/hfuzz_target/x86_64-unknown...
A-LLVM,T-compiler,A-sanitizers
medium
Critical
356,791,460
pytorch
Ubuntu 16.04 setup.py error - undefined reference to elfLink_Get_FatBinary_From_Object' /usr/lib/x86_64-linux-gnu/libcuda.so: undefined reference to elf32_section_header'
**Editorial note:** Hi! Are you on this issue because of an 'undefined reference' error? Please do the following steps before replying "me too": 1. Check that your missing symbol actually is the same as the one here. If it is, please add your environment configuration to this ticket. 2. Check if your missing symbo...
module: build,triaged,module: undefined reference
medium
Critical
356,795,574
go
x/build/cmd/gopherbot: ignore versions in other paragraphs of backport requests
In https://github.com/golang/go/issues/27486#issuecomment-418350497, I attempted to set up a backport issue for Go 1.11. However, apparently because I mentioned “from 1.9 or 1.10” in the justification, `gopherbot` constructed a backport issue for 1.10 too. I think we should make `gopherbot` ignore versions that are ...
Builders,NeedsFix,FeatureRequest,Backport
low
Critical
356,903,819
TypeScript
Quick info for parameter redundantly shows @param tag
**TypeScript Version:** 3.1.0-dev.20180830 **Code** ```ts /** * @param p * Once upon a time there was a parameter named p. * P lived in a function called f. * Then a big bad wolf came and blew f down. */ function f(p: number): void {} ``` **Expected behavior:** Documentation for `p` is shown o...
Suggestion,Committed,Domain: Quick Info
low
Minor
356,909,060
javascript-algorithms
Add TimSort
Chrome 70 Array.prototype.sort use the stable TimSort algorithm https://twitter.com/mathias/status/1036626116654637057
enhancement
medium
Minor
356,911,243
tensorflow
Optimizing slice of variable not possible
Applying the gradient of a variable slice currently results in a `NotImplemented` error of tf.train.Optimizer. **The following two examples are working:** ```python ### WORKING ### X = tf.Variable(2, dtype=tf.float32) y = tf.constant(10, dtype="float32") loss = y - (X*X) variables=[X] gradient = tf.gradient...
stat:awaiting tensorflower,type:bug,comp:ops,TF 2.11
low
Critical
356,956,836
go
x/build/cmd/gopherbot: backport issues should retain topic labels of original
GopherBot created https://github.com/golang/go/issues/27498 from a source issue that had the labels “Documentation” and “modules”, but did not carry over those labels. It makes sense for GopherBot to strip out status labels (such as NeedsFix), but I think it should retain the others. (CC: @FiloSottile)
Builders,NeedsFix
low
Minor