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
352,925,924
angular
downgrade component doesn't forward errors to $exceptionHandler
<!-- PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION. ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION. --> ## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopp...
type: bug/fix,area: upgrade,state: confirmed,P4
low
Critical
352,955,106
go
cmd/compile: optimise ranges over string(byteSlice)
Take these two benchmarks: https://play.golang.org/p/QI4BxUq8MGp The first code is cleaner, more idiomatic, and easier to write/maintain. The second is much trickier, and I'm not even sure I wrote it correctly. Lucky for us, the first tends to perform about the same or slightly better in terms of time: ``` $ ...
Performance,NeedsInvestigation,compiler/runtime
low
Critical
352,970,429
opencv
reprojectImageTo3D not thread safe
- OpenCV => 3.4.1: - Operating System / Platform => Ubuntu 16.04: - Compiler => GCC 5.5 ##### Detailed description cv::reprojectImageTo3D from calib3d is not thread safe. When used in a multithreaded application, it gives large memory leaks. My current real-time application leaks approx 50 MB/sec, which can...
incomplete
low
Critical
353,081,878
TypeScript
Missing completion for abstract indexed types
**TypeScript Version:** 5.1.3 **Search Terms:** missing, suggestion, code completions, language-server, abstract, generic **Code** ```ts export abstract class StateMachine { abstract state: any; getProperty<K extends keyof this["state"]>(key: K): this["state"][K] { return this.state[key]; } ...
Bug
low
Minor
353,083,144
flutter
InkWell and InkResponse not close enough to the real thing
When I briefly tap stuff on native Android, I usually can see the highlight and splash very easily. However, in Flutter, both `InkRipple.splashFactory` and `InkSplash.splashFactory` are slower to show/hide. `InkRipple.splashFactory` is better in my opinion, should be the default, but it's not quite right also. More...
framework,f: material design,a: fidelity,f: gestures,customer: crowd,P2,team-design,triaged-design
low
Major
353,112,733
opencv
build farm is not testing for CUDA functionalities
The development cycle of CUDA-related functionalities is inefficient and incomplete! Kindly consider introducing a CUDA-enabled hardware, and making it part of the required tests.
priority: low,category: gpu/cuda (contrib),category: infrastructure,RFC
low
Minor
353,121,913
rust
UnixStream does not have connect_timeout as TcpStream does.
https://doc.rust-lang.org/std/net/struct.TcpStream.html#method.connect_timeout vs https://doc.rust-lang.org/std/os/unix/net/struct.UnixStream.html Is this something that could be added directly without an RFC?
T-libs-api,C-feature-request
low
Minor
353,147,454
go
x/mobile: unexpected truncation of int type iOS->Go
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? > go version go1.10.3 darwin/amd64 `golang.org/x/mobile` commit `bceb7ef27cc623473a5b664d2a3450576dddff0f` ### Does this issue reproduce with the latest release? Yep ### What oper...
mobile
low
Critical
353,152,605
pytorch
[distributed] Synchronization on CUDA side with MPI backend
## Issue description `torch.distributed` with OpenMPI 3.0.0 as backend: when running "blocking" communication commands (e.g. `send`, `recv`, etc. are blocking in MPI), CUDA side is not synchronized. OpenMPI does not do that automatically, PyTorch does not do that automatically. This incurred several timing issues i...
oncall: distributed,module: docs,triaged,module: c10d,distributed-backlog
low
Minor
353,159,916
TypeScript
Intersection type of abstract classes does not throw error if same member exists in multiple abstract classes
**TypeScript Version:** 3.0.1 **Search Terms:** "Intersection", "abstract" **Code** ```ts export type Constructor<T = {}> = new (...args: any[]) => T; abstract class Outer1 { abstract same: number; abstract notSame: string; } abstract class Outer2 { abstract same: number; } function Mixin...
Bug,Help Wanted
low
Critical
353,160,936
TypeScript
Bad formatting adding multiple properties to start of object literal
**TypeScript Version:** As of #26588 **Code** In `codeFixCannotFindModule_generateTypes_all.ts`: ```json { "compilerOptions": { "baseUrl": ".", "paths": { "*": ["types/*"] }, } } ``` **Expected behavior:** Closing brace of "compilerOptions" is indented. **Actual behavior:**...
Bug,Help Wanted,Domain: Formatter
low
Minor
353,177,011
godot
Going back in the Inspector while editing a GridMap node makes it and the previous node selected
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** 2db4942 **Issue description:** Basically this: ![screenshot at 2018-08-22 21-46-22](https://user-images.githubusercontent.com/30739239/44498458-f...
bug,topic:editor,confirmed
low
Major
353,194,067
vue
transitionend event isn't fired on element inside <transition> when leaving
### Version 2.5.17 ### Reproduction link [https://jsfiddle.net/guanzo/xcLk083u/1/](https://jsfiddle.net/guanzo/xcLk083u/1/) ### Steps to reproduce 1. Open reproduction demo in a non-Chrome browser. 2. Attach `transitionend` listener to the component root $el. (It can be on any element, doesn't matter)...
transition
low
Minor
353,200,426
pytorch
[Feature Request] Crop op or ConvTranspose with output_shape
can you consider: Add Crop op or ConvTranspose with output_shape... Currently, there is no way to do a FCN Segment gladly...
caffe2
low
Minor
353,231,405
go
cmd/go: provide some way to get the gofmt binary path
We can ask cmd/go for the path to cmd/compile: ``` $ go tool -n compile /Users/josh/go/tip/pkg/tool/darwin_amd64/compile ``` There does not seem to be any way to ask cmd/go where the gofmt binary is. ``` $ go tool -n fmt go tool: no such tool "fmt" $ go fmt -n can't load package: package .: found packag...
NeedsDecision,GoCommand
low
Minor
353,233,497
go
cmd/compile: rename a bunch of things
Over time, I've noticed many things in the compiler that I'd like to rename, but I haven't because of the merge pain it causes and the review annoyance. I propose to use this issue to accumulate (and bikeshed) a list of renamings that we as a community want. Then a trusted contributor can do a single, automated bulk re...
compiler/runtime
medium
Critical
353,273,662
rust
Bad suggestion for overflowing hex literal in signed operation
Code: ```rust pub fn flip_msb(a: i32) -> i32 { a ^ 0x8000_0000 } ``` Diagnostic: ``` warning: literal out of range for i32 --> src/lib.rs:2:9 | 2 | a ^ 0x8000_0000 | ^^^^^^^^^^^ | = note: #[warn(overflowing_literals)] on by default = note: the literal `0x8000_0000` (decimal `21...
C-enhancement,A-diagnostics,T-compiler
low
Major
353,287,891
vscode
Add a command that redos the last command that was executed
Please add a "repeat last command" command and keybinding, as sometimes found in other other apps, e.g. Microsoft Office. I want to press a shortcut, and for it to repeat whatever the last command was, so I don't have to find it again in the menu or the <kbd>ctrl-shift-p</kbd> box. This is especially useful when ...
feature-request,keybindings
medium
Critical
353,292,733
rust
Support a TUI "live view" version of -Z self-profile.
Using [`tui`](https://docs.rs/tui) and by passing, say, the entire query stack to an "UI" thread 60 times per second, we can provide both a live view of the query stack, including when each entry started, *and* overall stats. cc @nikomatsakis @michaelwoerister @wesleywiser @solson
C-enhancement,T-compiler,A-self-profile
low
Major
353,306,119
flutter
[iOS Suggestion] FlutterPluginRegistrar support remoteControlReceivedWithEvent
I am writing a plugin package which can play music by using AVPlayer. I want to handle iPhone control in class FlutterPlugin, not in class AppDelegate. I have called `[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];` , but I can't listen the `remoteControlReceivedWithEvent ` in class FlutterPl...
platform-ios,engine,P3,a: plugins,team-ios,triaged-ios
low
Minor
353,329,577
kubernetes
Conflict error when create pod because resource quota version is old
<!-- This form is for bug reports and feature requests ONLY! If you're looking for help check [Stack Overflow](https://stackoverflow.com/questions/tagged/kubernetes) and the [troubleshooting guide](https://kubernetes.io/docs/tasks/debug-application-cluster/troubleshooting/). If the matter is security related, ple...
kind/bug,sig/api-machinery,lifecycle/frozen
medium
Critical
353,332,079
pytorch
[Caffe2] Can't load pretrained model
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 ran code ...
caffe2
low
Critical
353,352,859
rust
const fold .repeat() of same-char string literals
````rustc 1.30.0-nightly (33b923fd4 2018-08-18)```` ````rust pub fn bla() -> String { "aaa".to_string() } ```` this currently generates ````asm example::bla: push rbx mov rbx, rdi lea rsi, [rip + .L__unnamed_1] mov edx, 3 call <alloc::string::String as core::convert::From<&'a str>>::from@P...
I-slow,C-enhancement,A-codegen,T-compiler
low
Minor
353,370,648
vscode
Allow <super> as a keybinding option in linux
I am using VSCode on linux (fedora) and I want to bind the *super* key to: "editor.multiCursorModifier": "super" but currently, the only options are ctrlCmd and alt (which doesn't work because it toggles menu navigation). I don't want to change it to ctrl+click because it's handy for links and function definitio...
feature-request,editor-multicursor
low
Major
353,373,626
TypeScript
Overriding generic method inconsistently errors
<!-- 🚨 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
low
Critical
353,376,853
go
encoding/json: clarify merge semantics of Unmarshal
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? Go playground ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? Go playground ### What d...
Documentation,NeedsFix
low
Minor
353,419,098
svelte
Break out individual compilers
As frequenters of the Discord server will know, I'm become obsessed lately with the idea of [compiling Svelte components to WebGL code](https://github.com/Rich-Harris/svelte-gl) (not for UI, but for building 3D/VR scenes — the sort of thing you'd traditionally use Three.js or A-Frame for). The easiest way to try this o...
compiler
medium
Major
353,434,451
go
x/tools/go/ssa/interp: panic: no code for function: (reflect.Value).MapRange
These brittle tests break again: ``` Input: boundmeth.go PASS Input: complit.go panic: no code for function: (reflect.Value).MapRange FAIL To trace execution, run: % go build golang.org/x/tools/cmd/ssadump && ./ssadump -build=C -test -run --interp=T complit.go Input: coverage.go PASS Input: defer.go PAS...
Testing,NeedsFix,Tools
low
Critical
353,451,646
flutter
Support any gesture recognizers for embedded platform views
Right now the `gestureRecognizers` parameter in AndroidView is a list of `OneSequenceGestureRecognizer`s as currently only `OneSequenceGestureRecognizer`s support gesture arena teams. Ideally `gestureRecognizers` should be a list of `GestureRecognizer`s.
c: new feature,framework,engine,f: gestures,a: platform-views,c: proposal,P2,team-engine,triaged-engine
low
Major
353,497,986
go
encoding/json: no way to preserve the order of map keys
The encoding/json library apparently offers no way to decode data into a interface{} without scrambling the order of the keys in objects. Generally this isn't a correctness issue (per the spec the order isn't important), but it is super annoying to humans who may look at JSON data before and after it's been processed b...
NeedsDecision,FeatureRequest
high
Critical
353,567,461
TypeScript
In JS, module.exports assignment doesn't make types available
**Code** ```js // in a javascript file mod1.js: class C { prop = 0; } module.exports = { C } ``` ```ts // in a typescript file test.ts declare var yyy: import("./mod1").C ``` **Expected behavior:** No error, and `yyy: C` **Actual behavior:** Error, namespace '"src/test/mod1".export=' has no...
Bug,Domain: JavaScript
low
Critical
353,568,315
node
Add testcases for all documented safeguards
_To clarify: I am not blaming anyone. I view this as a problem of the process that we used, the aim of this issue is to seek how we can actually improve things. I myself LGTMd the change that introduced the initial safeguard without a testcase._ This is a post-mortem of https://github.com/nodejs-private/security/iss...
help wanted,test,security
low
Major
353,575,496
go
cmd/compile: understand Go vs assembly rc4 results
Tracking bug so somebody (@randall77?) looks into why we got totally opposite performance numbers on different Intel CPUs when we deleted the crypto/rc4 code's assembly in "favor" of the Go version in 30eda6715c6578de2086f03df36c4a8def838ec2 (https://golang.org/cl/130397): ``` name old time/op new time/op ...
Performance,NeedsInvestigation,compiler/runtime
low
Critical
353,600,855
go
cmd/go: using go test, goroutine stack dump sometimes not emitted on SIGQUIT
### What version of Go are you using (`go version`)? Tried `go version go1.10.3 darwin/amd64`, `go version go1.11rc1 darwin/amd64`, and `go version devel +6e76aeba0b Thu Aug 23 20:27:47 2018 +0000 darwin/amd64`. ### What did you do? I had a test that appeared to be stuck in a blocking operation, and I pressed...
NeedsInvestigation,GoCommand
low
Major
353,642,067
opencv
cvLoadImage on iOS
##### System information (version) - OpenCV => 3.4.1 - Operating System / Platform =>Mac 10.13.4 - Compiler => Xcode ##### Detailed description I would like to load a png image with `cvLoadImage`, it return nil unfortunately, but a 'jpg' type is ok. ##### Steps to reproduce ``` NSString *phonePath ...
platform: ios/osx,incomplete
low
Minor
353,645,032
rust
#[repr(u16)] enum doesn't pack fields as expected
The following code: ```rust #[repr(u16)] enum Foo { A, B(u32, u16) } println!("{}", std::mem::size_of::<Foo>()); ``` currently outputs 12, but `Foo` really only needs to take 8 bytes. There are several alternatives which can correctly be packed into 8 bytes: ```rust #[repr(u8)] enum Foo { A, B(u32, u16) } ``...
A-type-system,A-codegen,T-compiler,C-bug,T-types,A-repr,A-enum
low
Minor
353,670,783
rust
Remove all definition names from the HIR.
If it's in `tcx.def_key(def_id)` that's a better source of truth and available cross-crate. Only reason I could see for keeping names is to point at their span * we could also keep that separately, even cross-crate * we might want something that captures the "name introduction form" span * e.g. the span of ...
C-cleanup,T-compiler
low
Critical
353,711,250
material-ui
[Checkbox] Add checked animation
The [Checkbox](https://material-ui.com/api/checkbox/) component is missing the animation for the icon when toggling it. This makes checking the checkbox look bit cluncky, especially when toggling it from the label. In material design demo you can clearly see the icon animated when you toggle it: https://material-com...
new feature,component: checkbox
medium
Critical
353,747,426
flutter
Animation lag when navigating to screen with `TextField` with `autoFocus` set to `true` on iOS
This effects only `iOS`. tested on `iPhone 6` and `iPad (3rd gen)` ##Demo [https://drive.google.com/file/d/1LPMdNMf6z6yYBCYM3JMegMx-SQw0vGUs/view?usp=sharing](https://drive.google.com/file/d/1LPMdNMf6z6yYBCYM3JMegMx-SQw0vGUs/view?usp=sharing) ## Steps to Reproduce 1. set `autoFocus = true` on first `TextFie...
a: text input,framework,a: animation,c: performance,f: focus,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-framework,triaged-framework
low
Critical
353,762,895
rust
Tracking issue for eRFC 2497, "if- and while-let-chains, take 2"
This is a tracking issue for the eRFC *"if- and while-let-chains, take 2"* (rust-lang/rfcs#2497). For the tracking issue for the immediate edition changes, see #53668. **Steps:** - [x] Implement the RFC (cc @rust-lang/compiler -- can anyone write up mentoring instructions?) - [ ] Adjust documentation ([see instructio...
B-RFC-approved,T-lang,C-tracking-issue,F-let_chains,S-tracking-ready-to-stabilize
high
Critical
353,768,461
flutter
VideoPlayer plugin should make sure that resources are released when FlutterView is destroyed
This is related to https://github.com/flutter/flutter/issues/19206 and https://github.com/flutter/flutter/issues/19358. `VideoPlayer` plugin on Android allocates a platform `MediaPlayer` object for each `VideoPlayer` plugin in the widget tree. `MediaPlayer` objects [are destroyed](https://github.com/flutter/plugins/...
c: performance,p: video_player,package,team-ecosystem,P3,triaged-ecosystem
low
Critical
353,771,576
TypeScript
Intellisense for generic parameterized string literal function arguments not working
_From @njgraf512 on July 31, 2018 22:5_ <!-- 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. --> - V...
Suggestion,Domain: Completion Lists,VS Code Tracked,Experience Enhancement
low
Minor
353,782,503
rust
Fabricate hangs while building rust for raspbian on arm64 host.
We do a lot of package builds for raspbian in a raspbian chroot in a debian armhf container on an arm64 host, we use this host because it's fast. Unfortunately recent versions of rustc can no longer be built in this environment, a program called "fabricate" hangs with 200% CPU usage. IIRC this has been happening sin...
O-Arm,O-AArch64
low
Critical
353,895,620
go
net: clarify net.Conn concurrency requirement
From the net.Conn docs: > Multiple goroutines may invoke methods on a Conn simultaneously. I'm not sure if this should be interpreted as *different* methods can be called concurrently, or as the same method can be called concurrently. I suspect, judging from x/net/nettest's ConcurrentMethods and from most impl...
Testing,Documentation,help wanted,NeedsInvestigation
medium
Major
353,927,343
svelte
Slotted content for Web Component nested inside of a Svelte component is not applied to the Web Component
Given a Web Component which expects slotted children, which itself is nested inside of a Svelte component, as in the following: ``` <SvelteComponent> <my-custom-element> <div slot="slot1">my-custom-element content</div> <div slot="slot2">more my-custom-element content</div> </my-custom-element> </S...
awaiting submitter,custom element
medium
Critical
353,959,082
go
cmd/go: -exec prevents test caching
### What version of Go are you using (`go version`)? go version go1.10.3 freebsd/amd64 ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? freebsd/amd64 ### What did you do? go test -exec wrap1.sh ./... go test -exec wra...
NeedsDecision
low
Critical
353,973,797
godot
Script "PRELOAD" allocated memory are not freed until editor restart... and sometimes not even with that.
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> Related issues at bottom.... **Godot version:** <!-- Specify commit hash if non-official. --> All **OS/device including version:** <!-- Specify GPU model and drivers ...
bug,topic:editor
low
Minor
353,997,238
pytorch
how can i run two model in a simple project?
I have two models trained with caffe2 - detectron , i have convert the detectron model( pkl) to caffe2 models(pbtxt), and i have test the models succsssfully. but i need run the two models one by one in a same project , so i can get the infor of the image, but here is the problem how can i Realization the function ...
caffe2
low
Critical
354,004,352
TypeScript
JSDoc @augments doesn’t allow function calls to augment existing types
I wrote a simple extension of [jest.Matchers][1] but I can not get the typescript type checker to recognize my extension. <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** 3.0.1 (and 3.1.0-dev.20180825) The description below is for 3.0.1 - f...
Suggestion,Domain: JSDoc,Domain: JavaScript,Experience Enhancement
low
Critical
354,011,719
godot
Node.set_display_folded(bool) has no effect
**Godot version:** 3.0.5-stable_x11.64, Xubuntu **Issue description:** _Node.set_display_folded(bool)_ has no effect whatsoever. **Example project:** [Example project.zip](https://github.com/godotengine/godot/files/2320724/Example.project.zip)
bug,confirmed,topic:plugin
low
Major
354,011,741
vscode
Identation rules are broken
- VSCode Version: v1.26.1 - OS Version: macOS 10.13.5 I think I've had the following problems since the very first version of VSC I tried. ### Problem 1 ![up](https://user-images.githubusercontent.com/1812093/44618558-91c5c780-a878-11e8-9721-022a87a45b59.gif) 1. Have [Todo+](https://marketplace.visualstudi...
bug,verification-found,editor-autoindent
low
Critical
354,017,067
go
testing: tiny benchmark with StopTimer runs forever
From at least Go 1,4 onward, ``` $ go version go version devel +e03220a594 Sat Aug 25 02:39:49 2018 +0000 linux/amd64 $ ``` If we run a tiny benchmark (count++) and use StopTimer() for initialization (count = 0) then the benchmark runs for a very long time, perhaps forever. ``` $ cat tiny_test.go packag...
NeedsInvestigation
low
Major
354,018,187
go
doc: cmd/go: some module docs are on swtch.com, not golang.org
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? golang.org today ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using (`go env`)? I don't think it matters ...
Documentation,NeedsFix,modules
low
Critical
354,040,047
rust
Captureless closures can still codegen to `fn call(&self)` / `fn call_mut(&mut self)`.
Despite them being ZSTs and `Copy`, which would allow `Fn` / `FnMut` impls on top of `FnOnce`. This small example: ```rust fn foo(f: impl FnOnce()) { f() } pub fn test() { // Not passed directly in call to avoid inferring `closure` to `FnOnce`. let closure = || {}; foo(closure); } ``` will cause...
C-enhancement,A-codegen,T-compiler,WG-llvm
low
Minor
354,067,926
flutter
Add arrows to assets-for-api-docs utils
c: new feature,team,framework,d: api docs,a: assets,P3,team-framework,triaged-framework
low
Minor
354,068,013
flutter
Make it easier to run diagrams in assets-for-api-docs with hot reload
Could be just adding a blank flutter project that makes it easy to runApp(<diagram>)
a: tests,team,framework,d: api docs,P2,team-framework,triaged-framework
low
Minor
354,079,593
vscode
Feature Request: Hotkey Support for QuickInputButton
<!-- Please search existing issues to avoid creating duplicates. --> Issue Type: **Feature Request** <!-- Describe the feature you'd like. --> As an extension developer I want to assign a hotkey to a custom [QuickInputButton](https://code.visualstudio.com/docs/extensionAPI/vscode-api#QuickInputButton), that is act...
feature-request,quick-pick
low
Major
354,080,759
rust
Option as_ref compilation error when implementing cause method for Error trait
Hi, I'm new to rust and this looks like a possible bug to me. I implemented my own error type (focus on the cause method implementation in Error trait): ``` #[derive(Debug)] pub struct MyError<T: Error> { description: String, cause: Option<T> } impl <T: Error> fmt::Display for MyError<T> { fn fmt...
A-trait-system,T-compiler
low
Critical
354,090,590
godot
Default Contextual Help keyboard shortcut doesn't work due to conflicts with macOS keyboard handling
**Godot version:** 3.0.6 **OS/device including version:** macOS High Sierra 10.13.6 **Issue description:** The keyboard shortcut `Shift+Alt+Space` doesn't display contextual help. Instead the editor inserts a non-breaking space as if `Alt+Space` was pressed without the `Shift` Contextual Help works when...
bug,platform:macos,topic:editor,confirmed
low
Major
354,090,748
go
cmd/compile: mipsle: running error SIGILL: illegal instruction
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 operating system and processor architecture are you using (`go env`)? build on : amd64...
NeedsInvestigation
low
Critical
354,097,200
flutter
ModalRoute / ModalBarrier customization
Currently, `ModalRoute`s created using `showDialog` or `showGeneralDialog` do not allow full customization of the underlying `ModalBarrier`. It’s only possible to change the background color, however I’d like full control over the animated widget in order to build my own. For example, a customer requested to apply ...
c: new feature,framework,f: routes,P2,team-framework,triaged-framework
low
Major
354,106,195
rust
Two-phase borrows don't allow mutably splitting an array based on its length
```rust #![feature(nll)] fn main() { let mut x = [1, 2]; x.split_at_mut(x.len() / 2); } ``` ``` error[E0502]: cannot borrow `x` as immutable because it is also borrowed as mutable --> src/main.rs:4:20 | 4 | x.split_at_mut(x.len() / 2); | ---------------^----------- | | ...
P-medium,T-compiler,A-NLL,NLL-complete,A-array
low
Critical
354,123,549
rust
`pub use serde::*` doesn't show traits in `cargo doc`
This is somewhat weird, but on https://konradborowski.gitlab.io/serde-feature-hack/serde_feature_hack/index.html, I don't see traits like `Serialize`, even if they should be here, and there is no note of re-export either. On https://docs.rs/serde-feature-hack/0.1.0/serde_feature_hack/, it shows a re-export, so this app...
T-rustdoc,E-needs-test,C-bug
low
Minor
354,132,892
godot
Built-in Array types don't open in a new inspector if their name is added to the "Resource Types To Open In New Inspector" editor setting
**Godot version:** v3.1.dev.calinou.5df9109 **OS/device including version:** Windows 10 Home v1803 **Issue description:** Any of the built-in array types (Array or Pool\*Array) do not open in a new inspector, even if the "Open Resources In New Inspector" option is checked, and even if the array types are a...
bug,topic:editor
low
Major
354,175,733
rust
Rustc hangs during llvm codegen when referencing a [large] array with std::ptr::read_volatile
This issue has been repro'd on stable and nightly on Windows, OSX, and Linux: ``` cargo 1.28.0 (96a2c7d16 2018-07-13) release: 1.28.0 commit-hash: 96a2c7d16249cb47c61c887fc95ca8be60e7ef0a commit-date: 2018-07-13 cargo 1.29.0-nightly (6a7672ef5 2018-08-14) release: 1.29.0 commit-hash: 6a7672ef5344c1bb570610f...
A-LLVM,T-compiler
low
Minor
354,234,031
opencv
Feature request: Allow a PR contributor to restart specific-platform build
In case of unexpected platform failure, we usually perform `commit --amend` to restart the tests, but this affects all the platforms. Cannot you provide a way, say a button inside each cell of a row belonging to owned PRs, to restart specific builds? I guess the admins has such facility, but why not to provide that to...
category: infrastructure
low
Critical
354,238,988
TypeScript
Add API to query if SourceFile originated from typeRoots lookup
This proposes to add an API `Program#isSourceFileFromTypeRoots` that is similar to `Program#isSourceFileFromExternalLibrary` but for `typeRoots`. Currently the only way to determine if a SourceFile comes from `typeRoots` is to use `ts.getEffectiveTypeRoots` and check if a given `SourceFile#fileName` starts with any ...
Suggestion,In Discussion,API
low
Minor
354,283,277
tensorflow
Search in Embedding Projector using Japanese or Hindi text causes Cannot read property 'toString' of undefined
Please go to Stack Overflow for help and support: https://stackoverflow.com/questions/tagged/tensorflow If you open a GitHub issue, here is our policy: 1. It must be a bug, a feature request, or a significant problem with documentation (for small docs fixes please send a PR instead). 2. The form below must be...
comp:tensorboard,stat:awaiting tensorflower,type:feature
low
Critical
354,295,514
rust
Experiment with a "(type) pattern pre-compiler" in rustc::ty::_match.
Instead of zipping two trees and using the same unification procedure as the rest of inference, the "pattern" type could be turned into linear "instruction stream" for a matcher ("interpreter"), to walk the type "tree", first to check that the type actually matches and *then* to unify variables (if any). E.g for. `R...
C-enhancement,T-compiler,A-inference
low
Critical
354,351,548
pytorch
LNK2019 error when linking with MSVC [Caffe2]
## Issue description I've been trying to build a simple C++ program using the Caffe2 library (statically linked) since last week and it has been a painful experience. I couldn't find any information on how to properly build the Caffe2 library so I've had to figure it out through trial and error. I managed to compile a...
caffe2
low
Critical
354,400,455
puppeteer
Print Screen Dialog is not caught by page.on("dialog")
![image](https://user-images.githubusercontent.com/14265482/44673665-d4f77600-a9f1-11e8-8db5-5bfaa75fa290.png) **Expected Result** The console should log the dialog's message and type (in this case: the "print screen" dialog). I wanted to programmatically dismiss the print screen dialog. **What happens instead?*...
feature,upstream,chromium
medium
Critical
354,402,715
go
x/image/font: rendering texts in Arabic
### 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" GOBIN="" GOCACHE="/Users/hajimehoshi/Library/Caches...
help wanted,NeedsInvestigation,FeatureRequest
low
Critical
354,415,753
rust
Missed unused import in 2018 edition when importing a crate
Code like this: ```rust fn main() { test1::foo(); test2::foo(); } mod test1 { use std; pub fn foo() { std::mem::drop(3); } } mod test2 { use std; pub fn foo() { std::println!("x"); } } ``` [when compiled](https://play.rust-lang.org/?...
C-enhancement,A-lints,T-compiler,A-edition-2018
low
Critical
354,433,589
godot
Newly created built-in GDScript can point to existing script or back to discarded built-in script.
Working from Godot 3.1, 64-bit Windows, 8/27/2018 ## Update - Animated GIF Points to existing script with similar name, until toggling the built-in option button. Then points to the same built-in script over and over. ![ezgif com-video-to-gif 8](https://user-images.githubusercontent.com/13004169/50061006-04e6a7...
bug,topic:editor,confirmed
low
Minor
354,434,166
flutter
Suggestion: Add stream bindable constructors to allow widgets to automatically update
Using a `bloc` pattern in combination with `StreamBuilder` results in a responsive UI, but the builder code ends up being all over the place. What if we had a new constructor on some widgets, such as `Text` that could have this function internally. `const Text.bound(this.stream, ...);` It could work similar to ho...
c: new feature,framework,P2,team-framework,triaged-framework
low
Minor
354,438,220
go
gccgo: GOPATH=/opt/go_pkgs go get -v golang.org/x/sys/... fails
### What version of Go are you using (`go version`)? `go version go1.10.3 gccgo (GCC) 8.2.1 20180813 solaris/sparc ` ### Does this issue reproduce with the latest release? `yes (gccgo compiled from source) ` ### What operating system and processor architecture are you using (`go env`)? ``` amandeep@s113ldom1:~/...
OS-Solaris,NeedsFix
low
Critical
354,447,383
godot
Project loses its default environment configuration
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** <!-- Specify commit hash if non-official. --> current tip 0565adb20ff01a758c5ae8e4534a2cb7f07952df **OS/device including version:** <!-- Specify GP...
bug,topic:editor,confirmed,topic:3d
low
Critical
354,468,258
pytorch
Cannot find operator schema for 'ATen' Caffe2 Ios
## Issue description Running a network with ATen ops on caffe2 built for Ios results in the following error message ## Error Message ``` [E operator.cc:140] Cannot find operator schema for ATen. Will skip schema checking. libc++abi.dylib: terminating with uncaught exception of type at::Error: [enforce fail at ...
caffe2,triaged
low
Critical
354,490,712
rust
Compiler runs out of memory
I've trying to change a crate to be more generic, so I've started to add some generics to some types and then continued to add them where the compiler suggests (more or less). That worked pretty fine till the crate stopped "compiling" because it is running out of memory (with a peak of ~30GB) and gets killed by the OS...
T-compiler,I-compilemem,C-bug,E-needs-mcve
low
Major
354,529,736
vue
Vue.component doesnt except argument of type `Component`
### Version 2.5.17 ### Reproduction link [https://codesandbox.io/s/8z04jxj3y8](https://codesandbox.io/s/8z04jxj3y8) ### Steps to reproduce - Click repro link - Open test.ts - See type errors - Uncomment vue type augmentation to see errors disappear ### What is expected? I can pass any componen...
typescript
low
Critical
354,530,770
flutter
flutter_test framework does not run isolates/handle isolate message sending properly
Isolates are unable to send and receive messages properly when running flutter_test tests. For example, even very simple ping-pong style messages either fail to send or the isolate may fail to run at all. ```dart import 'dart:isolate'; import 'package:unittest/unittest.dart'; child(args) { var msg = args[0];...
a: tests,framework,dependency: dart,has reproducible steps,P2,found in release: 3.5,team-framework,triaged-framework
low
Major
354,553,306
rust
Builtin macros such as `include_str!` should accept `&'static str` instead of a string literal
Right now, `include_str!()` works on a syntax level and does not allow a user to pass in a `&'static str` for the file path. I stumbled upon this after the following code didn't compile in release mode: ```rust const CSS_PATH: &str = "C:\\my\\file\\path\\test.css"; #[cfg(debug_assertions)] let css = Css::hot_re...
T-compiler,C-feature-request,A-const-eval
low
Critical
354,604,329
go
x/mobile/cmd/gomobile: bind fails with interface syntax
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.11 darwin/amd64 gomobile version +bceb7ef Wed Aug 8 22:10:59 2018 +0000 (android,ios); androidSDK= ### Does this issue reproduce with the latest release? yes ### What o...
NeedsInvestigation,mobile
low
Critical
354,612,640
vscode
Settings UI lacks concept of inherited default value
re #57304 * open settings UI * locate 'Suggest Font Size' * notice how the UI shows `0` which isn't true - the default value is the font size of the editor. <img width="343" alt="screen shot 2018-08-28 at 09 47 01" src="https://user-images.githubusercontent.com/1794099/44708754-32e69500-aaa8-11e8-9088-194a04f4...
feature-request,settings-editor
low
Major
354,659,264
vscode
Settings decoration: Modified in Folder
Issue Type: <b>Feature Request</b> Testing #57304 There already is a 'Modified in Workspace" decoration, it would be great if that would also list any folders in which that setting is modified (and also show these in the workspace settings). VS Code version: Code - Insiders 1.27.0-insider (43676d0cb7db94e2fa77...
feature-request,settings-editor
low
Minor
354,661,133
pytorch
[Caffe2] Model work Alright in Python but Failed in C++
## Issue description I have built a model in PyTorch and transfer it into Caffe2's .pb format through onnx. The model in .pb format worked well with Caffe2's Python API, but failed to work with Caffe2's C++ API. I rewrote the C++ code following the pybind_state.cc file in my local repository of caffe2 source code, m...
caffe2
low
Critical
354,664,338
vue
Property 'xxx' does not exist on type CombinedVueInstance ?
### Version 2.5.17 ### Reproduction link ### Steps to reproduce 1. use vue-cli init a ts hello-world project . 2. code like that ```js <script lang="ts"> import Vue from "vue"; export default Vue.extend({ name: "HelloWorld", props: { msg: String }, data():any { return { wt...
typescript
high
Critical
354,697,447
godot
moving folded code only moves top line from fold and not all lines in fold
Godot 3.1 usinmg alt+arrows to move a folded function over another folded function but only moved the top line from the folded function unexpected behavior make a function, fold it, use alt+arrows up or down to move it
bug,topic:editor,confirmed
low
Minor
354,697,758
react
Number input breaks when letter "e" is entered
<!-- 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?** input[type=number] only allows entering numbers and letter "e" in the inp...
Component: DOM,Type: Needs Investigation
medium
Critical
354,711,592
rust
thinlto run-pass unit test link errors on OS X (High Sierra 10.13.6)
I have been getting errors in our run-pass test suite on OS X for some amount of time. I'm not sure if the problem is in a malconstructed `ld` invocation, or something else. I'm posted a full transcript of the message from the `x.py test` run below in [this gist](https://gist.github.com/pnkfelix/8d01d8eaa3748a646847...
A-linkage,O-macos,T-compiler,C-bug
low
Critical
354,756,511
rust
rustdoc ignores inherent impls made in non-module scope
Similar to https://github.com/rust-lang/rust/issues/52545, rustdoc doesn't see anything if it's not written into a module's scope. However, there are some things that can be written in function/expression scope that still make it out into the public API. While that issue was about trait impls, it seems that inherent im...
T-rustdoc,E-medium,C-bug
low
Minor
354,786,889
go
x/net/websocket: add a web socket client when targeting js/wasm
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? v 1.11 ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="/Users/adamt...
NeedsInvestigation,FeatureRequest
low
Critical
354,797,784
pytorch
Cannot run torch in different sub-interpreters
## Issue description It seems that torch cannot be imported in two different sub-interpreters, as they are described in https://docs.python.org/2/c-api/init.html#sub-interpreter-support. ## Code example #include <Python.h> int main(int argc, char **argv) { Py_Initialize(); PyEval...
todo,needs reproduction,module: cpp,triaged
low
Critical
354,816,856
pytorch
Better dev docs for writing native CPU kernels with Vec256
There have been multiple PRs that put non-arch-specific CPU kernels in `native/cpu`. We need to 1. Rename `native/cpu` 2. Have better dev docs on how to use `Vec256`. cc @colesbury @cpuhrsch
triaged,module: vectorization
low
Minor
354,836,920
rust
Add filter to `rustc_on_unimplemented` for `self_has_method="foo"`
Add a way to query on specific methods and traits being available to `rustc_on_unimplemented` for more targeted suggestions.
C-enhancement,A-diagnostics,T-compiler,F-on_unimplemented
low
Minor
354,884,007
flutter
Facilitate Proguard on Android
Facilitate Proguard on Android.
platform-android,tool,customer: dream (g3),P3,team-android,triaged-android
low
Minor
354,897,358
rust
Can't compare reference to ptr but reverse works
```rust fn main() { let a = 1; let b = &mut a as *mut _; // Ok: b == &mut a; // Not Ok: &mut a == b; } ``` Surprisingly, the second comparison errors with: ```shell error[E0277]: the trait bound `&mut {integer}: std::cmp::PartialEq<*mut {integer}>` is not satisfied --> src/...
T-lang,C-bug
low
Critical
354,920,577
pytorch
[feature request] padding for torch.cat
Currently, `torch.cat` only allows to concatenate equal-dimensional Tensors (except in the dimension catting). For example: ```python >>> x = torch.ones(2, 3) >>> y = torch.zeros(1, 3) >>> torch.cat([x, y], dim=0) tensor([[1., 1., 1.], [1., 1., 1.], [0., 0., 0.]]) >>> x = to...
triaged,enhancement,module: viewing and reshaping
medium
Critical
354,940,021
godot
A D-Pad button presses two buttons for Gamecube controllers / joysticks and Mayflash adaptors
**Godot version:** 3.0.6 **OS/device including version:** Mac OS X El Capitan Version 10.11.6 (15G20015) **Issue description:** When I use a Nintendo Gamecube controller that’s connected to a USB Mayflash adaptor, pressing only one d-pad button at a time results in multiple buttons being pressed at the...
bug,confirmed,topic:thirdparty,topic:input
medium
Major
354,976,230
pytorch
[caffe2] Implement Gather for any value of `axis`
Fix this: https://github.com/pytorch/pytorch/blob/master/caffe2/onnx/backend.cc#L629 which is because the implementation of Gather does not support axes other than 1
caffe2
low
Minor