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
356,968,369
TypeScript
Generic types from JSDoc aren't really generic
```js /** * @constructor * @template {string} K * @template V */ function Multimap() { /** @type {Object<string, V>} TODO: Remove the prototype from the fresh object */ this._map = {}; }; var Ns = {} /** @type {Multimap<"a" | "b", number>} */ const map = new Multimap(); const n = map._map['hi...
Bug,Domain: JSDoc,Domain: JavaScript
medium
Critical
356,968,721
flutter
Allow giving custom radius to InkHighlight
As seen in [this line of the ink_highlight.dart](https://github.com/flutter/flutter/blob/5b5a5b82286923f52225320f5e9fc9f558838c05/packages/flutter/lib/src/material/ink_highlight.dart#L109), Material.defaultSplashRadius is used as a constant in painting the highlight. This makes users unable to make their own IconBut...
c: new feature,framework,f: material design,P2,team-design,triaged-design
low
Major
357,001,465
react
"scheduler" package umbrella
### Short term - [x] #13561: Replace the [`__getInteractionsRef` and `__getSubscriberRef` methods](https://github.com/facebook/react/blob/fb88fd9d8c9f72b8e2e7e1ae89652d2a6a707562/packages/schedule/src/Tracking.js#L84-L90) with direct ~~mutable~~ exports (`__interactions` and `__subscriber`) and [update the `Schedule...
Type: Umbrella,React Core Team
low
Critical
357,015,911
flutter
Add "namespace" prefixes to embedder.h enum values
Since the embedding API header is C, not C++, there's no namespace or `enum class`. That means that enum values like "kSuccess" and "kCancel" are in the global namespace of any application using the header, making them very prone to collision and/or confusion. They should ideally use a naming convention that makes t...
engine,e: embedder,P2,team-engine,triaged-engine
low
Minor
357,018,821
flutter
Create integration/smoke test for Android & TalkBack
For example, run through some non-trivial interactions in the gallery with semantics enabled and scan the system logs for exceptions specifically emitted through TalkBack. This will require a new addition to the device lab of a current generation Android device running the latest TalkBack. Ideally we could always run o...
a: tests,team,a: accessibility,P2,team-android,triaged-android
low
Minor
357,026,568
TypeScript
Typescript Autocompletion Not Working For Function Overloads
_From @MartinLoeper on August 29, 2018 13:27_ <!-- 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. --...
Suggestion,Help Wanted,Experience Enhancement
low
Major
357,051,424
vue
Style binding: implicitly assign 'px' as the default unit for numeric values for certain css properties
### What problem does this feature solve? When assigning values to a CSS property via style binding like ````html <div class="d-inline-block" :style="{width : width}"></div> ```` or using the shorthand syntax... ````html <div class="d-inline-block" :style="{width}"></div> ```` this will actuall...
feature request,discussion
medium
Major
357,056,844
go
syscall: misleading documentation for linux SysProcAttr.Pdeathsig
Currently, the [documentation](https://github.com/golang/go/blob/0e9f1de0b7c934d9061f05f4781994fbd3ebd301/src/syscall/exec_linux.go#L33) says: > // Signal that the process will get when its parent dies (Linux only) However, according to the [prctl man page](http://man7.org/linux/man-pages/man2/prctl.2.html): >...
Documentation,help wanted,NeedsInvestigation,compiler/runtime
low
Critical
357,080,633
pytorch
How to simulate multi-node using single-node with 8 GPUs
As title stated.
caffe2
low
Minor
357,080,809
pytorch
How to re-shuffle lmdb per epoch in the caffe2 training process
as title stated
caffe2
low
Minor
357,085,573
vscode
Allow to set a file association for files with no extension
``` { "files.associations": { "*": "mydefaulttype" } } ``` This changes the file association for absolutely all files. Should be possible to set a file association only for files that have no extension. So it would match `somefilename` but not `somefilename.txt` and not even `.somefilename`.
feature-request,workbench-editors,languages-guessing
medium
Critical
357,123,451
vue
Key Event wrongly triggered for unknown Modifier/Alias/Keycode on every Key in Safari 9
### Version 2.5.17 ### Reproduction link [https://codepen.io/cb109/pen/xarvBZ](https://codepen.io/cb109/pen/xarvBZ) ### Steps to reproduce Please open the codepen link in Safari 9 on iOS, which is where I observed the bug (works fine in Chrome 68 on Ubuntu 18). ### What is expected? There a...
improvement
medium
Critical
357,128,073
opencv
get unexpected results when using the cv::cuda::warpPerspective on Nvidia tx2
<!-- 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...
priority: low,category: gpu/cuda (contrib),incomplete
low
Critical
357,178,426
rust
rustdoc: Improve the navigation experience
In the current situation, users navigates either with links from the overview, or by collapsing all descriptions and searching through what they want. They both have their own problems: ![screenshot_2018-09-05 std option option - rust](https://user-images.githubusercontent.com/12389383/45089271-99be1b00-b146-11e8-9...
C-enhancement,A-rustdoc-ui,T-rustdoc-frontend
low
Minor
357,207,680
go
x/mobile/app: gobind crash 'app.Run called on thread xxx, but app.init ran on xx'
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="amd...
mobile
low
Critical
357,240,823
flutter
Make CurveTween curve a regular parameter
Right now the `CurveTween` constructor looks like this: ```dart /// Creates a curve tween. /// /// The [curve] argument must not be null. CurveTween({ @required this.curve }) : assert(curve != null); ``` Usage currently looks like this: ```dart CurveTween(curve: Curves.easeInOut); ``` Ther...
c: new feature,framework,a: animation,c: API break,P3,team-framework,triaged-framework
low
Major
357,253,592
rust
edition idioms lints: `unused_extern_crate` false positives
### STR 1. Crates that provide lang items ``` console $ cargo new --bin foo && cd $_ $ cargo add panic-abort # or any other crate only provides a `panic_handler` function $ cat >src/main.rs <<'EOF' #![no_main] #![no_std] extern crate panic_abort; EOF $ # ignore linking; it's not important for this...
A-lints,T-compiler,C-bug,A-edition-2018
low
Critical
357,300,893
react
Consider stopping auto-adding `px` to number style values (except for a small whitelist)
<!-- 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*?** A removal of a feature, in a sense. **What is the current behavior?** React automatically adds the `px` suf...
Component: DOM,Type: Discussion
low
Critical
357,337,604
TypeScript
JS should allow merging/expando properties on imports
```js // Filename: mod.js export const Ns = function () { } // @Filename: use.js import { Ns } from './mod' Ns.expando = 1 ``` **Expected behavior:** No error, and Ns has property 'expando' **Actual behavior:** Error, 'expando' not found on 'Ns'. This merge shouldn't be allowed in Typescript, but it ...
Suggestion,In Discussion,Domain: JavaScript
low
Critical
357,345,727
TypeScript
Control flow analysis should "work" in unreachable code
**TypeScript Version:** master <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** unreachable throw return narrowing **Code** ```ts function fn() { // TODO: Finish writing this function! return; const h = Math.random() > 0.5 ? '...
Bug
medium
Critical
357,357,854
TypeScript
Allow intersection type guards for multiple parameters
## Search Terms type guard multiple parameters ## Suggestion I'd like to write a type guard that takes two parameters and changes the type of both of them. ## Use Cases My specific use case is to try to make the following pattern (somewhat) more type-safe: ```ts class Foo<TFeature, TOther> { // If...
Suggestion,Awaiting More Feedback
high
Critical
357,409,431
go
proposal: spec: the #id/catch error model, a rethink of check/handle
_Please __do not down-vote__ this post if you are against any new syntax for error handling. Instead, vote in the first comment below. Thanks!_ Having heard users' frustrations with Go1 error handling, the Go team has committed to delivering a new method. Ideally, a solution would stem from a familiar language. T...
LanguageChange,Proposal,error-handling,LanguageChangeReview
high
Critical
357,416,295
TypeScript
noImplicitAny+prototype assignment causes incorrect error on prototype methods
Note that this is only true with noImplicitAny on. The bug does not manifest with it off. This is a regression in 3.1. It does not manifest in 3.0. ```js // @noImplicitAny: true /** @constructor */ var Multimap = function() { this._map = {}; }; Multimap.prototype = { x() { } } Multimap.prototype....
Bug,Domain: JavaScript
low
Critical
357,426,284
flutter
`testwidgets()` in widget_tester.dart does not accept a string for skip parameter
<!-- 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...
a: tests,framework,c: proposal,P3,team-framework,triaged-framework
low
Critical
357,429,596
rust
Do not apply `#[macro_use]` to implicitly injected `extern crate std;`, use standard library prelude instead
Macros like `vec` or `println` are currently automatically available to user code through injected standard library ``` #[macro_use] extern crate std; ``` `#[macro_use]` puts all the macro names into macro prelude, so they are available in inner modules without additional imports. It would be good to avoid this...
A-resolve,T-libs-api
low
Minor
357,454,753
vscode
new settings UI: possible to undo a setting change?
<!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe the feature you'd like. --> when one accidentally clicked some where in the new settings UI, thus made an unexpected change, allow user to undo that change, by pressing ctrl-z or cmd-z
feature-request,settings-editor,undo-redo
low
Minor
357,457,538
flutter
Adding some plugins to a Flutter module causes the whole app to fail to build
## Steps to Reproduce 1. Check out https://github.com/mjohnsullivan/dof 2. Build with Android Studio, see that everything runs as expected. 3. Edit flutter_dof/pubspec.yaml to add `fluwx: ^0.1.3` in the `dependencies` section. 4. run `flutter packages get` while standing in the flutter_dof directory. 5. Attempt ...
tool,t: gradle,P2,a: plugins,team-tool,triaged-tool
low
Critical
357,509,406
vscode
Settings editor not showing inherited values in workspace scope
- VSCode Version: 1.27 - OS Version: Windows 10 1803 Steps to Reproduce: 1. Set some value to true in your user settings, like editor.formatOnSave: ![image](https://user-images.githubusercontent.com/8000820/45138329-94acaa80-b1de-11e8-8fa3-724d55bce045.png) 2. Open settings editor, switch to Workspace Settin...
feature-request,settings-editor
high
Critical
357,509,672
pytorch
Why does DistributedDataSampler not use default RNG?
Is there any reason that we have to use `set_epoch` method to set a new seed? If we don't call it, the order for each epoch will be **the same**! But we don't document `set_epoch` anywhere! cc @pietern @mrshenli @pritamdamania87 @zhaojuanmao @satgera @rohan-varma @gqchen @aazzolini @xush6528 @apaszke
oncall: distributed,triaged
low
Minor
357,513,449
godot
get_class() and is_class() not returning class_name
**v3.1.alpha.custom_build.5307043** The new `class_name` keyword doesn't affect the results of the methods for `get_class()` and `is_class()`. I noticed this earlier when encountering https://github.com/godotengine/godot/issues/21461, and it feels like maybe it might have been overlooked. Not sure if it falls un...
enhancement,discussion,topic:core,topic:gdscript,confirmed
high
Critical
357,557,843
flutter
Race in VideoPlayer initialization
Video player widget is not sometimes displayed in an application that essentially follows [the example code](https://github.com/flutter/plugins/tree/master/packages/video_player#example) for VideoPlayer plugin. Sequence of events: 1. VideoPlayerController is created asynchronously. 2. The widgets builds. But sin...
platform-ios,p: video_player,package,P2,team-ios,triaged-ios
low
Major
357,668,927
opencv
Is it possible to make the class `GCGraph` available outside GrabCut?
This is a feature request, not a bug. ##### System information (version) - OpenCV =>3.3.1 - Operating System / Platform => Windows - Compiler => MSVC 1914 ##### Detailed description I'd like to use the max-flow/min-cut algorithm, which is used in GrabCut. It would be nice, if we could move `gcgraph.hpp` f...
feature,category: imgproc
low
Critical
357,672,787
godot
Objects are clickable when the splash screen is visible
**Godot version:** v3.1.alpha.calinou.f50dd68 **OS/device including version:** windows 10 x64 **Issue description:** Items (buttons & objects) are clickable and interact-able when the splash screen is visible. it looks like the scene is active but its hidden with the splash image. there is a turnaround for t...
bug,topic:core,confirmed
low
Minor
357,724,755
flutter
Flutter memory leak just navigating two pages
I just run app in `Xcode` and I found the memory leak. What I did was basically tap the `IconButton` and navigate to the next page and `pop` to first page like code below. Here is images from `Xcode` **Beginning** ![2018-09-07 0 57 38](https://user-images.githubusercontent.com/41893584/45169945-ad967980-b239-11e...
framework,c: performance,P2,team-framework,triaged-framework
low
Critical
357,765,683
go
cmd/compile: pointers passed to cgo escape to the heap
In https://go-review.googlesource.com/c/go/+/133836 I work around an extra allocation by moving `outLen` (a simple `size_t`, passed by pointer to a C function) to the C stack. I initially thought escaping was unavoidable across the cgo boundary, but in fact cgo has strict rules about not retaining any pointers to Go me...
NeedsInvestigation,compiler/runtime
low
Major
357,773,117
pytorch
Better user experience for using Generator object
Not a comprehensive list, but we should: - [x] Document `torch.Generator` better, e.g., it's only CPU RNG, examples, ctor, etc. - [x] Provide CUDA equivalent of `torch.Generator`. - [x] Provide better transformation between `Generator` and `rng_state`. - [ ] Document that `torch.manual_seed` seeds **all** CUDA de...
todo,module: docs,module: cuda,triaged,module: random
medium
Major
357,775,710
realworld
Making RealWorld โ€œrealerโ€ (2.0?)
This past year Iโ€™ve been trying out lots of different front end libraries, and was very happy to discover this project and the community around it. Iโ€™ve been thinking about posting this comment for a while, as Iโ€™ve noticed these libraries have a fundamental design difference that RealWorld in its current form doesnโ€™...
discussion
medium
Critical
357,798,219
godot
Editor will auto-focus on script when error happens, which causes silly things to appear
Consider this: you have script which (partially) might look like this: ``` if player.position.x > position.x and player.health < 8: do_something() ``` This is, say, enemy script. You now run your scene, go right and press Z to jump over enemy. BUT! Turns out player doesn't have health property. Your script now...
enhancement,discussion,topic:editor,confirmed,usability
medium
Critical
357,810,850
godot
Changing method's name with autocompletion creates extra parentheses
Simple example, you have this code: ![image](https://user-images.githubusercontent.com/2223172/45182582-0823db80-b222-11e8-8e32-24ea61b172a1.png) You decide you want to use `physics_process()`: ![image](https://user-images.githubusercontent.com/2223172/45182609-1ffb5f80-b222-11e8-8058-9b760bca5673.png) This happens...
bug,topic:editor,confirmed,usability
low
Minor
357,822,330
TypeScript
Computing constraint of conditional type by replacing contravariant infer variables with their constraints is unsound
<!-- ๐Ÿšจ 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
357,825,900
every-programmer-should-know
Making your own compiler
I think that will be a nice topic to add to the list. Making your own compiler really helps you understanding how they work.
Needs some โค๏ธ,good first issue
low
Major
357,871,883
pytorch
caffe2 failed to build from source
I'm trying to build caffe2 from source, but got stuck on this error. Any help would be appreciated! Building wheel torch-0.5.0a0+49231ab running install running build_deps Building in Release mode -- Need to define long as a separate typeid. -- std::exception_ptr is supported. -- NUMA is disabled -- Turning o...
caffe2
low
Critical
357,895,129
pytorch
Hypothesis operator tests in Caffe2 generate too many warnings
Here is the full set of warnings from a recent run: ``` Max No attributes Shape No attributes=============================== warnings summary =============================== dataio_test.py::TestReaderBuilder cannot collect test class 'TestReaderBuilder' because it has a __...
caffe2
low
Critical
357,910,087
go
net: support DNS-over-HTTPS
DNS-over-HTTPS is an evolution of DNS that allows us to secure the stream of DNS requests from a system or user in the same way we secure HTTP traffic with TLS. As of Sept 2018, it's currently deployed in two of the major browsers (Mozilla[1], Chrome) and 2 major service owners (Cloudflare[2], Google[3]) and has the b...
FeatureRequest
low
Major
357,930,690
three.js
ColladaLoader doesn't support instantiated joints in kinematic models
The COLLADA 1.5 specification allows using both `<joint>` and <instance_joint> elements inside kinematics_model\technique_common. The <instance_joint> elements can refer to `<joint>` elements defined elsewhere in the document, usually in <library_joints>. The COLLADA loader seems to assume that `<joint>` elements ar...
Enhancement
low
Critical
357,956,738
pytorch
Suggest: DataLoader add device parameter
After fetching each tensor from dataloader, I need to feed to GPU, I should use the **to** function . if Dataloader add a parameter like device="cuda", then each tensor would be the torch.cuda.Tensor type, it will be more friendly. cc @SsnL
todo,module: dataloader,triaged,enhancement
medium
Critical
358,005,811
rust
opt-level: z often worse than s, sometimes worse than 3 on small files
script to get sizes ````bash #!/bin/bash for file in `ls -c1 | grep "\.rs$"`; do rustc ${file} -o ${file}.default rustc ${file} -o ${file}.O0 -C opt-level=0 rustc ${file} -o ${file}.O1 -C opt-level=1 rustc ${file} -o ${file}.O2 -C opt-level=2 rustc ${file} -o ${file}.O3 -C opt-level=3 rustc ${file} -o ...
A-LLVM,T-compiler,C-bug,WG-embedded,I-heavy
low
Critical
358,051,713
go
fmt: fix up examples
The examples in the fmt package are inconsistent, which makes them confusing. They need to be cleaned up and categorized better. There are several needs as I see it, at least for the printing side: 1) A consistent set of one-line examples demonstrating, for the same non-trivial arguments, what each of Print, Prin...
Documentation,NeedsFix
medium
Major
358,127,516
angular
Service worker doesn't support seeking in videos
<!-- PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION. ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION. --> ## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [x] Bug report <!-- Please search GitHub for a simila...
type: bug/fix,help wanted,freq2: medium,workaround2: non-obvious,area: service-worker,state: confirmed,browser: safari,P4
medium
Critical
358,161,538
pytorch
[distributions] Torch distribution samplers slow on expanded parameters
## Issue description We use expanded tensors as distribution parameters in many cases where we dynamically broadcast the parameters at runtime. While working on a related (https://github.com/pytorch/pytorch/pull/11341) PR, I noticed that sampling can be slow when using expanded tensors as distribution parameters. I ha...
todo,module: distributions,triaged
low
Major
358,166,118
pytorch
Views created in no_grad block still have requires_grad=True
``` >>> x = torch.randn(3, requires_grad=True) >>> with torch.no_grad(): ... print(x[1]) ... tensor(-0.0967, requires_grad=True) ```
high priority,module: docs,module: autograd,triaged
medium
Major
358,175,069
opencv
VideoWriter produces distorted outputs for certain aspect ratios
OpenCV version 3.4.2 on OSX Sierra 10.13.6 I wrote a simple test where I read an mp4 video and write a cropped version out. For certain widths, the output appears distorted. Changing the height is fine. Changing the width produces distortion. ![distortion](https://user-images.githubusercontent.com/7737286/4523755...
category: videoio,platform: ios/osx,incomplete,needs investigation
low
Minor
358,185,790
go
net/url: PathEscape treatment of reserved characters is inconsistent
`;` and `,` are permitted by [RFC 3986](https://tools.ietf.org/html/rfc3986#page-23) in path segments, but `PathEscape` percent-encodes them because "URI producing applications often use the reserved characters allowed in a segment to delimit scheme-specific or dereference-handler-specific subcomponents". However, it d...
NeedsInvestigation
low
Major
358,188,319
flutter
[Material] Include support for cut corner borders in NoStrokeInputBorder widget
Widget is introduced in #21289
c: new feature,framework,f: material design,P3,team-design,triaged-design
low
Minor
358,192,157
flutter
platform_channel and platform_channel_swift examples don't seem to work with the iOS simulator
I tried doing `flutter run` in `flutter/examples/platform_channel` and in `flutter/examples/platform_channel_swift` on my macOS machine using an iPhone 8 Plus simulator that used iOS 11.4. In both cases, the example app reports "Battery level: unknown" and "Battery status: unknown". Tapping on the "Refresh" button sh...
e: device-specific,platform-ios,engine,d: examples,has reproducible steps,P3,team-ios,triaged-ios,found in release: 3.22,found in release: 3.23
low
Critical
358,200,837
go
x/text/message/catalog: documentation mentions type that doesn't exist
In the documentation for [`golang.org/x/text/message/catalog`] it says: > Package catalog defines various interfaces: Dictionary, Loader, and Message. But there is no such type `Loader`. I started to change the documentation, but wasn't sure if this was an oversight, something that was removed, or some functiona...
Documentation,NeedsInvestigation
low
Minor
358,227,422
TypeScript
Inserting intersections with 'Function' while narrowing breaks code
@ahejlsberg and I ran into something like this in the RWC. This currently repros on the nightlies. ```ts function foo(x: Object | (() => string)) { if (typeof x === "function") { // Previously had no errors x(); } } ``` **Expected**: No error **Actual**: ``` [ts] Cannot invok...
Suggestion,Breaking Change,Awaiting More Feedback
low
Critical
358,230,302
TypeScript
Import type is escaped
**TypeScript Version:** 3.1.0-dev.20180906 **Code** ```ts // @declaration: true // @Filename: /jalapeรฑo.ts export interface I { x: number; } export function f(): I { return { x: 0 }; } // @Filename: /a.ts import { f } from "./jalapeรฑo"; export const x = f(); ``` **Expected behavior:** `a.d.ts` ...
Bug,Domain: Declaration Emit
low
Minor
358,262,897
go
x/vgo: delete repo in March 2019 (1 month after Go 1.12)
Since Go 1.11 was released several issues related to mixing vgo and go 1.11 have been logged, eg, #27562 I propose that vgo should be changed to work only with versions of Go in the range [1.10.3,1.11)
NeedsFix
low
Major
358,266,904
rust
-C remark=loop-vectorize doesn't point to the source line
I was trying to use `-C remark` to understand why a loop didn't get vectorized. You can [see the simple example code on godbolt](https://rust.godbolt.org/z/KHuX1A). ```rust fn simple_loop(values: &[u32; 1024]) -> u32 { values.into_iter().fold(0, |acc, i| { /* something */ }) } ``` The loop itself isn't ve...
A-LLVM,C-enhancement,A-diagnostics,T-compiler,C-optimization
low
Minor
358,285,878
rust
Slow performance of std::iter::Rev with iterator adapters using std::iter::Iterator::nth()
The following example shows a benchmark of the iterator adapter `step_by()`. Once using `step_by()` directly on the range and once with a redirection via `rev()`. ```rust use test::Bencher; #[bench] fn bench_forward_skip(b: &mut Bencher) { b.iter(|| (0..10001).step_by(100).sum::<i32>()); } #[bench] fn...
I-slow,C-enhancement,E-mentor,T-libs-api,A-iterators
low
Major
358,295,251
flutter
Table > TableRow > TableCell colspan
Hi, How can I have a colspan in the Table Widget ? Mean: |--------|--------| |..**`col1`**..|..**`col2`**.| |--------|--------| |.........**`col3`**........| |--------|--------| Thank you.
c: new feature,framework,f: material design,customer: crowd,c: proposal,P2,team-design,triaged-design
low
Critical
358,303,473
opencv
Bad error message from VideoWriter::open() about unknown fourcc
<!-- 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...
category: videoio,RFC
low
Critical
358,303,532
rust
Treat closures as `move` when their type escapes their captures' scope.
Unlike previously discussed *inference* of `move` from lifetimes (which has been deemed unfeasible/undesirable), we can completely ignore lifetime bounds and NLL analysis. *Note: everything discussed here "trivially" doesn't pass lifetime inference/checks currently, so allowing such code to compile should be entirel...
C-enhancement,A-closures,T-lang,T-compiler
low
Minor
358,306,770
pytorch
[Feature request] Intuitive error message when input to Linear is not cudarized
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 I run a pro...
module: error checking,triaged
low
Critical
358,308,428
opencv
make VideoWriter::open() print out all appropriate fourcc codes
<!-- 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...
feature,priority: low,category: videoio
low
Critical
358,314,922
go
gccgo: internal compiler error: in mangled_name
## Update I change package domain from `9fans.net` to `fans.net`, it can build without any error. I think package domain can't start with number in gccgo. -------------- gccgo 8.2.0 work well in most case at my **SunOS 5.10/SPARC** mechine. But compiler error when I trying to build `9fans.net/go/draw` I try g...
NeedsInvestigation
low
Critical
358,316,957
TypeScript
Covariant assignability of type guard functions is unsound
<!-- ๐Ÿšจ 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,Help Wanted,Committed
low
Critical
358,335,687
go
cmd/compile: eliminate unnecessary extend-of-truncate calculations in prove pass
Consider: ```go func f(x uint64) uint64 { return uint64(uint32(x)) } ``` If, when inlined, x is known to be small, then f can be replaced by the identity function. I was curious, so I sketched this quickly for a specific case by adding this case to `func simplifyBlock` in prove.go: ```go case OpZer...
Performance,NeedsInvestigation,compiler/runtime
low
Critical
358,353,375
go
cmd/gofmt: call("arg", newline /* comment */) is changed to syntax error
### What version of Go are you using (`go version`)? go version go1.10.3 windows/amd64 ### Does this issue reproduce with the latest release? Yes, see https://play.golang.org/p/Gv-AmNeMSdT ### What did you do? Open https://play.golang.org/p/Gv-AmNeMSdT, click Format. ### What did you expect to see? After f...
NeedsFix
low
Critical
358,356,511
pytorch
Assorted issues in Caffe2's Metal ops
I've been playing around with Caffe2's Metal ops in the iOS contrib module on macOS and have noticed a few issues. I'm not certain if some of these can be attributed to the differences in macOS vs iOS; however, it's probably worth a quick review by someone familiar with it. **1. Potentially incorrect texture write i...
caffe2
low
Critical
358,361,909
TypeScript
Error output: Don't deep compare to native objects
<!-- ๐Ÿšจ 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,Committed,Domain: Error Messages,Rescheduled
low
Critical
358,376,368
godot
Mono_logs folder gobbles up disk space
**Godot version:** 3.1 Alpha Mono **OS/device including version:** KDE Neon **Issue description:** After some months of using Godot, I noticed I suddenly ran out of disk space. Using k4dirstat, I found the culprit: the folder `~/.local/share/godot/mono/mono_logs` grew to a whopping 6.18 GB, filled with nothing...
bug,confirmed,topic:dotnet
medium
Critical
358,390,230
go
runtime: feature request: Support for ASLR with the heap
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? ```go version go1.11 freebsd/amd64``` ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? ``` GOAR...
NeedsInvestigation,compiler/runtime
medium
Critical
358,393,191
godot
FileDialog type ahead does not position to file or directory in editor
**Godot version:** ![screen shot 2018-09-09 at 12 33 39 pm](https://user-images.githubusercontent.com/930478/45266720-75578c80-b42d-11e8-987c-4d4e35f0b6ae.png) **OS/device including version:** MacBook Pro (15-inch, Mid 2012) 10.13.6 (High Sierra) **Issue description:** Cannot type ahead to locate file or fol...
enhancement,topic:gui
low
Minor
358,395,074
vscode
Allow text-shadow to be used in themes
I used to use a neon theme in brackets that had really awesome glowing neon text See below: https://github.com/remonbonbon/brackets-theme-neon-sign I tried making a similar theme in vscode but didn't realise the CSS property text-shadow was not supported. I know this is a very small and low priority request ...
feature-request,tokenization,editor-theming
high
Critical
358,395,429
go
cmd/compile: BCE optimizes less for string than slice
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.11 linux/amd64 ### Does this issue reproduce with the latest release? yes ### What did you do? ```golang package main type T = string // type T = []int func...
Performance,NeedsInvestigation,compiler/runtime
low
Critical
358,395,831
pytorch
High leverage TH operations to port to ATen
Now that the THTensor/THStorage structs live directly in ATen, this unlocks some core tensor operations which we should port to ATen sooner rather than later. Here is an incomplete list: - [ ] Copying/tensor conversions, e.g., `THByteTensor_copyByte` - [ ] Basic storage functionality in `THStorage.h` - [ ] Basic t...
triaged,module: porting,better-engineering,module: tensor creation
low
Minor
358,398,940
go
x/build/cmd/gopherbot: auto-Subscribe owners to reported issues based on directory
We now have an owners file which assigns various Gophers as owners/cc'd on issues for different directories. It would be good to match incoming issues and auto-subscribe the relevant people, e.g. to do in an automatic fashion what @bcmills is doing manually here. https://github.com/golang/go/issues/27524#issuecommen...
Builders
medium
Major
358,403,560
rust
Make codegen treat inline fns the same as regular fns in non-opt builds
See https://github.com/rust-lang/rust/pull/53963#issuecomment-419472343 and following. There's no need to create private duplicates of `#[inline]` functions in debug builds, since we don't even run an inlining pass there.
A-codegen,I-compiletime,T-compiler,A-incr-comp,WG-compiler-performance,WG-llvm
low
Critical
358,408,488
vscode
[html] Automatically delete HTML closing tag when converting to self-closing tag
A simple but useful feature would be to automatically delete an HTML or a JSX closing tag when converting to a self-closing tag. In the latest version of VS Code (1.27.1), in order to go from ``` <App><App> ``` to ``` <App /> ``` , I need to do the following: ``` <App /></App> ``` and then...
feature-request,html
medium
Critical
358,419,750
TypeScript
ConstructorOf<T> wrapper to declare type of constructor of type parameter
so if I have ```ts class MyClass { } ``` Then the type of `MyClass.prototype` is `MyClass` And the type of `MyClass` is `typeof MyClass` If I want these two functions ```ts function takesPrototype(p: MyClass) { /* ... */ } function takesClass(p: typeof MyClass) { /* ... */ } ``` I can call them as ```ts...
Suggestion,In Discussion
low
Major
358,428,808
go
proposal: encoding/json: "nonil" struct tag to marshal nil slices and maps as non-null
There have been many reports about encoding a nil slice or map as `[ ]` or `{ }` respectively. See: https://github.com/golang/go/issues/2278 Currently it is encoded as `null`. This is a source of bugs in many non-theoretical cases (eg consumers of JSON APIs). There are many issues on Google about others falling i...
Proposal,Proposal-Hold
high
Critical
358,432,600
nvm
Trouble using NVM as non-root user
<!-- 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: CentOS 7.5.1804 - `nvm debug` output: <details> <!-- do...
root / multiuser issues
low
Critical
358,511,626
godot
bad polygon! error when changing TextureProgress value from 0 to 1
latest master. compiled last night. in any event. this bug is pretty weird. took me a while to track it down steps: - create TextureProgress - give it texture **progress** texture - create a tween in the scene - attach gdscript file put in gdscript: ``` tween.interpolate_property(texture_progress, ...
bug,topic:gui
low
Critical
358,539,892
pytorch
[caffe2] caffe2 openmp linking error with xcode 9.0(AppleClang 9.0) on mac
## Issue description build pytorch and caffe2 from: python setup.py build develop ## System Info - PyTorch or Caffe2: pytorch and caffe2 - How you installed PyTorch (conda, pip, source): source - Build command you used (if compiling from source): python setup.py build develop - OS: mac - Compiler: xcode 9.0(...
caffe2
low
Critical
358,547,020
TypeScript
Error output: difficult to understand multistorey errors
### Incompatible type ```ts var foo = {a: {b: {c: {d: 3}}}}; var bar: {a: {b: {c: {d: {e: number}}}}} = foo; ``` Instead of ``` Type '{ a: { b: { c: { d: number; }; }; }; }' is not assignable to type '{ a: { b: { c: { d: { e: number; }; }; }; }; }'. Types of property 'a' are incompatible. Type '{ b: {...
Suggestion,Needs Proposal
low
Critical
358,580,307
flutter
The exception thrown by Overlay.of(context).insert(entry) during build is insufficiently clear. Error message needs to improve.
<!-- 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: crash,framework,a: quality,a: error message,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-framework,triaged-framework
low
Critical
358,586,950
opencv
initUndistortRectifyMap does not handle distortion correctly
<!-- 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...
category: calib3d
low
Critical
358,649,758
rust
You can never call your own `fn borrow(&mut self, ...)` method if you `use std::borrow::Borrow;`
https://play.rust-lang.org/?gist=c36d8c617e66862b7bcaee05752ad313&version=stable&mode=debug&edition=2015 ```rust fn main() { use std::borrow::Borrow; struct S; impl S { fn borrow(&mut self, _: ()) {} } let mut s = S; s.borrow(()) } ``` (Just noticed that this might be the intended behaviou...
C-enhancement,A-diagnostics,A-trait-system,P-low,T-compiler,A-suggestion-diagnostics,D-papercut,D-newcomer-roadblock
low
Critical
358,664,704
rust
fix "bivariant wf" bug in the NLL subtyping code
https://github.com/rust-lang/rust/pull/53873 generalized the NLL subtyping code to handle subtyping and the like, but I think it is vulnerable to a similar flaw as the one from <https://github.com/rust-lang/rust/issues/41677>. I didn't want to block that PR so I am filing this issue to follow-up.
A-trait-system,P-medium,T-compiler,A-NLL,C-bug,NLL-sound
low
Critical
358,671,457
create-react-app
Allow to opt-in React DOM profiling without ejecting
### Is this a bug report? No ### Expected Behavior CRA should be able to opt-in to React DOM profiling without ejecting. ### Actual Behavior Need to eject to enable React DOM profiling, as mentioned in https://gist.github.com/bvaughn/25e6233aeb1b4f0cdb8d8366e54a3977#create-react-app
tag: new feature
low
Critical
358,693,754
godot
Animation Player doesn't execute end node automatically
Alpha 3.1 **Issue description:** The issue is on the **AnimationTreePlayer** with a state machine that doesn't execute the node marked as "end" automatically. Would be useful to always call the end node when the focus go outside of StateMachine in all cases. ![screenshot from 2018-09-10 17-44-38](https://user...
enhancement,topic:animation
low
Minor
358,752,919
TypeScript
Unexpected result of declaration emit while namespace is shared between two @types
<!-- ๐Ÿšจ 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,Help Wanted,Effort: Moderate,Domain: Declaration Emit
low
Critical
358,760,909
three.js
FBXLoader: Load clips at t=0
##### Description of the problem I'd like the ability to choose whether or not to import FBX clips so that their start times are offset to begin at t=0. Sometimes several clips on a track aren't meant to be played one after the other. For example jump animations: If you have a hang time clip that is meant to loop in...
Suggestion,Loaders
low
Minor
358,772,149
TypeScript
No error for duplicate function in JavaScript
**TypeScript Version:** 3.1.0-dev.20180907 **Code** ```js function f() {} function f() {} ``` **Expected behavior:** `Duplicate function implementation.` error, exactly like in a `.ts` file. **Actual behavior:** No error.
Bug,checkJs,Domain: JavaScript
low
Critical
358,808,831
go
proposal: spec: operator functions
The only issue that I could _find_ about operator overloading currently #19770, although it's currently closed and doesn't have many details. # Goal Operator overloading should be used to create datatypes that represent things that already exist in Go. They should not represent anything else, and should ideally ...
LanguageChange,Proposal,LanguageChangeReview
high
Critical
358,832,996
TypeScript
Problem with inference for this['prop'] with conditional types
**TypeScript Version:** typescript@3.1.0-dev.20180907 **Search Terms:** this type, conditional type **Code** ```ts type Wrapped<T> = { ___secret: T }; type Unwrap<T> = T extends Wrapped<infer U> ? U : T; declare function set<T, K extends keyof T>(obj: T, key: K, value: Unwrap<T[K]>); class Foo { pr...
Bug,Domain: Conditional Types
low
Critical
358,838,992
puppeteer
Giving permissions to all origins in browser context
pptr v1.8.0 allows to set permissions per origin in browser context. However, it'll come very handy to give permissions to all origins in browser context. Proposal: special '*' value for origin. ```js context.overridePermissions('*', ['geolocation']); ```
feature,upstream,chromium
low
Major
358,839,753
pytorch
Tests with "." in the name cannot be run standalone
## Issue description Tests with periods in their name can't be run standalone using `python <test_py_file> <test_module>.<test_name>`. ## Code example One example is: `TestNN.test_Normalize_1.5_cuda`. Running it as `python test_legacy_nn.py TestNN.test_Normalize_1.5_cuda` gives the stack trace: ``` /home/ro...
module: tests,triaged
low
Critical