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
339,587,638
go
cmd/go: list: incomplete error message "no Go files in"
``` $ cat a.go package p import "missing" $ command go version go version devel +4da84adc0c Mon Jul 9 19:35:21 2018 +0000 linux/amd64 $ command go list -export -e a.go go build missing: no Go files in command-line-arguments ``` I expect the fix is something like this: ``` --- a/src/cmd/go/intern...
NeedsFix,GoCommand
low
Critical
339,592,032
react-native
TextInput becomes slow after lots of typing
## Environment ``` $ react-native info Environment: OS: Linux 4.9 Node: 8.11.3 Yarn: 1.7.0 npm: 5.6.0 Watchman: Not Found Xcode: N/A Android Studio: Not Found Packages: (wanted => installed) react: 16.3.1 => 16.3.1 react-native: 0.56.0 => 0.56.0 (*) ``` (*) In my test app, actuall...
Ran Commands,Impact: Regression,Component: TextInput,Platform: Android,Bug
high
Critical
339,602,090
kubernetes
NamespaceSpec and ObjectMeta both contain a "finalizers" field
<!-- 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/documentation,sig/api-machinery,lifecycle/frozen
low
Critical
339,608,188
pytorch
Accumulate into accreal instead of real for CPU loss functions
All the loss fns except for MSELoss (that I am patching right now) accumulate into real instead of accreal on CPU cc @albanD @mruberry @jbschlosser @ezyang @zou3519 @gqchen @pearu @nikitaved @soulitzer
module: nn,module: loss,triaged
low
Minor
339,611,549
go
cmd/compile: teach prove about more type conversion operations
#26292 is about teaching the prove pass that, if `x byte` is <N, `int(x)` is also <N. In particular, it helps when using byte variables as indices, since that seems to mean an implicit conversion to int. That was causing an unnecessary bounds check in an `encoding/json` hot path. Here are some other cases which migh...
Performance,NeedsInvestigation,compiler/runtime
low
Minor
339,643,383
go
x/net/http2: verify that net/http.Server.SetKeepAlivesEnabled(false) shuts down HTTP/2 server
Per https://github.com/golang/go/issues/20239#issuecomment-402199944 and its immediate reply, it seems that https://go-review.googlesource.com/c/net/+/43230 might've broken `net/http.Server.SetKeepAlivesEnabled(false)` shutting down HTTP/2 server connections. I guess there's no test for it. /cc @tombergan @pam4
help wanted,NeedsFix
low
Critical
339,659,783
rust
Consider using pair mode to return scalar pair bools as i1
Starting in #51583, we're representing scalar pair `bool`s as `i8` in LLVM aggregates to match their memory storage, whereas they are `i1` as immediate values. When a pair is the argument to a function, we use `PassMode::Pair` and pass each part like independent immediate values. We don't use that mode for return v...
A-codegen,T-compiler,A-cranelift
low
Minor
339,663,677
rust
`trivial_casts` warning misfires when casting from reference -> pointer -> void pointer
When casting from a reference to a pointer to a void pointer (necessary sometimes when doing C FFI), the `trivial_casts` warning fires, despite this being an necessary cast. ```rust #![warn(trivial_casts)] extern crate libc; fn main() { let x : libc::c_int = 4; let y : *const libc::c_void = &x ...
A-lints,C-bug
low
Major
339,678,431
react-native
Image Orientation on Android
## Environment React Native Environment Info: System: OS: macOS High Sierra 10.13.5 CPU: x64 Intel(R) Core(TM) i5-4570 CPU @ 3.20GHz Memory: 23.63 MB / 16.00 GB Shell: 3.2.57 - /bin/bash Binaries: Node: 10.6.0 - /usr/local/bin/node npm: 6.1.0 - /usr/local/bin/npm ...
Platform: Android
low
Major
339,750,688
opencv
Add 'ptrT' methods to 'cv::Mat_'
`cv::Mat_` already provides the means to get a row/element pointer via `uchar* ptr(...)` and `template<T> T* ptr(...)` methods which are inconvenient since the element type is known at compile time, and there's an `operator[]` monstrosity (in my opinion) which makes source code unintelligible and somewhat unreadable: ...
category: core,RFC
low
Minor
339,811,967
rust
2018 path clarity: When path lookup fails because of shadowed crate, provide hint
In Rust 2018, the new path system allows a local name to shadow a crate name: ```rust use std::num; struct Newtype(num::BigInt); // ERROR ``` The error is because `num` refers to the local name of the `num` module imported on the first line, so `num::BigInt` fails to look inside the crate. This can be avoided ...
C-enhancement,A-diagnostics,A-resolve,T-compiler,D-terse
low
Critical
339,829,624
vscode
Counter-intuitive "editor.suggestSelection" behavior when completion is "kept open"
- VSCode Version: 1.25 - OS Version: Windows 10 In the Haxe extension, we want to support the following two use cases: - `identifier.|` - request completion for the fields within `identifier`. - `some.package.|` - filter packages / types by the dot path that's currently being typed. In this case, the completion...
suggest,under-discussion
low
Minor
339,848,521
go
cmd/compile: internal prefix paths leaking into generated DWARF
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version devel +c78b7693ab Tue Jul 10 05:08:40 2018 +0000 linux/amd64 however this same problem appears to be present in older released (1.10, 1.9 etc) ### Does this issue reproduce wit...
NeedsFix,Debugging,compiler/runtime
low
Major
339,853,491
go
x/text/cmd/gotext: extract command crash if no messages
### What version of Go are you using (`go version`)? go1.9.2 ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? windows/amd64 ### What did you do? Run `gotext extract` command on a project directory without any message...
NeedsInvestigation
low
Critical
339,925,192
rust
2018 lint migrating to `use crate::...` doesn't consider mixed imports
Originally reported as https://github.com/rust-lang-nursery/rustfix/issues/124 Text inlined below... --- Given the code: ```toml # Cargo.toml [package] name = "test-badfix" version = "0.1.0" [dependencies] futures = "*" ``` ```rust // src/lib.rs #![feature(rust_2018_preview)] extern crate f...
A-lints,C-bug,A-suggestion-diagnostics,A-edition-2018
low
Minor
339,930,369
angular
Proposal for an `ngFormChange` event
(Note that I'd be willing to work on a PR for this, but I don't want to start working on it unless I knew there was a chance it'd get accepted, so I wanted to create this issue first to test the water.) ## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code>[x] Feature request</code...
feature,state: Needs Design,freq2: medium,area: forms,feature: under consideration,feature: votes required
medium
Critical
339,936,686
pytorch
/usr/bin/ld: cannot find -lpthreads
On Debian Buster cmake . leads to an error ``` Determining if the function pthread_create exists in the pthreads failed with the following output: Change Dir: /home/zfsdt/temp/pytorch/CMakeFiles/CMakeTmp Run Build Command:"/usr/bin/make" "cmTC_d9266/fast" /usr/bin/make -f CMakeFiles/cmTC_d9266.dir/bu...
module: build,triaged,has workaround
low
Critical
339,968,905
go
runtime: Caller returns wrong file and line if called in a deferred function during panic
### What version of Go are you using (`go version`)? ### Does this issue reproduce with the latest release? Tested on b001ffb. ### What did you do? https://play.golang.org/p/mqVHDikFu8D ### What did you expect to see? ``` return: main.go:13 panic: main.go:18 ``` ### What did you see instead? `...
NeedsInvestigation,compiler/runtime
low
Critical
339,996,826
vscode
Outline view + Markdown: Do not display the "#"s
<!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe the feature you'd like. --> The Outline view for Markdown already displays headers and sub-headers in a structured way; there is no need to pollute the view with "#"s to show the header levels. ![image](https://user-images.githubu...
feature-request,markdown,under-discussion
high
Critical
340,001,618
TypeScript
Terse mode output from `tsc --build`
## Search Terms tsc --build mode console logging output verbose ## Suggestion Have a middle-ground between `verbose` and "nothing" when running `tsc -b` ## Use Cases Initial feedback was that "`tsc -b` should print nothing by default (if there are no errors)", which is a reasonable first principle to wor...
Suggestion,In Discussion
medium
Critical
340,051,807
flutter
Support running individual tests on a device
Currently Flutter can run all widget tests in a file on a device by invoking "flutter run..." OR Flutter can run an individual widget test in a headless environment by invoking "flutter test..." However, there is not currently an execution option to run a specific widget test on a device. The current work arou...
a: tests,tool,P3,team-tool,triaged-tool
low
Minor
340,066,988
go
x/net/http2: h2spec violation 8.1.2.2
``` $ ./h2spec -S -k -t -h 127.0.0.1 -p 8080 http2/8.1.2.2 Hypertext Transfer Protocol Version 2 (HTTP/2) 8. HTTP Message Exchanges 8.1. HTTP Request/Response Exchange 8.1.2. HTTP Header Fields 8.1.2.2. Connection-Specific Header Fields × 1: Sends a HEADERS frame that contains the c...
NeedsInvestigation
low
Critical
340,067,832
go
x/net/http2: h2spec violation 5.1
``` $ ./h2spec -S -k -t -h 127.0.0.1 -p 8080 http2/5.1 Failures: Hypertext Transfer Protocol Version 2 (HTTP/2) 5. Streams and Multiplexing 5.1. Stream States × 5: half closed (remote): Sends a DATA frame -> The endpoint MUST respond with a stream error of type STREAM_CLOSED. E...
NeedsInvestigation
low
Critical
340,068,319
go
x/net/http2: h2spec violation 6.1.2
``` $ ./h2spec -S -k -t -h 127.0.0.1 -p 8080 http2/6.1/2 Hypertext Transfer Protocol Version 2 (HTTP/2) 6. Frame Definitions 6.1. DATA × 2: Sends a DATA frame on the stream that is not in "open" or "half-closed (local)" state -> The endpoint MUST respond with a stream error of type STREAM_CL...
NeedsInvestigation
low
Critical
340,134,406
rust
Most core trait impls for empty arrays are over-constrained
All of the following have `where T: Trait` on their impls for `[T; 0]`, but don't need it: - Debug - Copy - Clone - PartialOrd - Ord - PartialEq - Eq - Hash A demo of those not in rustdoc: ```rust struct Nothing; fn must_be_copy<T: Copy>() {} fn must_be_clone<T: Clone>() {} pub fn empty_array_is_copy_...
T-libs-api,A-array
low
Critical
340,303,123
TypeScript
Support @typedef as member of namespace
**TypeScript Version:** 3.0.0-dev.20180711 **Code** ```js class C { /** @typedef {number} N */ /** @type {N} */ x = 0; // works } /** * @memberof C * @typedef {number} M */ /** @type {C.N} */ const x = 0; // broke /** @type {C.M} */ const y = 0; // broke ``` **Expected beh...
Suggestion,In Discussion,Domain: JSDoc,checkJs,Domain: JavaScript
low
Critical
340,326,752
pytorch
[Caffe2] Can't find Caffe2<->ONNX conversion tools
Hi, I have some problems finding the `convert-caffe2-to-onnx` and `convert-onnx-to-caffe2` tools. In the past, I installed those tools from the [onnx-caffe2 repository](https://github.com/onnx/onnx-caffe2) without any problems. Now, this repository has been deprecated and it has been merged inside Caffe2. I expe...
caffe2
low
Critical
340,359,211
angular
Upgraded AngularJS component which requires another upgraded component can't find the parent controller when using Angular content projection
## I'm submitting a... <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 [x] Feature request [ ] Documentation issue or request [ ] Support request => Pleas...
type: bug/fix,freq1: low,workaround2: non-obvious,area: upgrade,state: confirmed,P3
low
Critical
340,366,493
react-native
[InputAccessoryView] Can't specify keyboard-conditional bottom padding
## Environment ``` React Native Environment Info: System: OS: macOS High Sierra 10.13.5 CPU: x64 Intel(R) Core(TM) i7-4770HQ CPU @ 2.20GHz Memory: 25.07 MB / 16.00 GB Shell: 3.2.57 - /bin/bash Binaries: Node: 9.3.0 - ~/.nvm/versions/node/v9.3.0/bin/node Yarn: 1.6.0 - /usr/local/bin...
Issue: Author Provided Repro,📮Known Issues,Bug
medium
Critical
340,374,678
go
x/review/git-codereview: when working on the Go repo, use its bin/gofmt if present
gofmt changed in Go 1.11, and git-codereview uses the gofmt from $PATH, so when that's the Go 1.10 version, it complains as `git-codereview: gofmt needs to format these files (run 'git gofmt')`. It should instead use the gofmt in GOROOT.
help wanted,NeedsFix
low
Major
340,383,909
godot
Collisions of RigidBody2D are offsetted when moving.
<!-- 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. --> 9f82368d40f1948de708804645374ea02ca6e7db **OS/device including version:** <!-- Specify GPU model and d...
bug,confirmed,topic:physics
low
Critical
340,428,374
opencv
capture.read() fails in a process but not in a thread.
- OpenCV => 3.3.1 - Operating System / Platform => OSX High Sierra - Compiler => /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ ##### Detailed description a video is able to be read using opencv when ran in a thread but not a process (capture.read returns false...
category: videoio,platform: ios/osx,incomplete
low
Minor
340,434,284
go
mime/multipart: Allow limiting maximum amount of part's header data
This is feature request, to allow user of `mime/multipart` package's `Reader` to specify limit of header data loaded into memory when calling `NewPart()` function. `Reader.NewPart()` calls `net/textproto` package's `Reader.ReadMIMEHeader()` function which without any limitation loads all header data into memory. `mim...
NeedsInvestigation
low
Minor
340,455,625
TypeScript
Folding ranges not returned for highly nested functions
_From @ryaa on July 9, 2018 5:38_ <!-- Please search existing issues to avoid creating duplicates. --> <!-- Also please test using the latest insiders build to make sure your issue has not already been fixed: https://code.visualstudio.com/insiders/ --> <!-- Use Help > Report Issue to prefill these. --> - VSCode ...
Suggestion,Needs Proposal,VS Code Tracked,Domain: Outlining
low
Major
340,482,936
pytorch
[Caffe2] Not handle attribute 'spatial' of ONNX operator 'BatchNormalization'
## Issue description If I run a ONNX model contains 'BatchNormalization' operator and it has 'spatial' attribute, caffe2 will give me an error message: ``` terminate called after throwing an instance of 'caffe2::EnforceNotMet' what(): [enforce fail at backend.cc:1057] . Don't know how to map unexpected argumen...
caffe2
low
Critical
340,501,173
three.js
ColladaLoader: Add support for primitive type: polygons
The ColladaLoader fails to load this model. https://raw.githubusercontent.com/0ad/0ad/master/binaries/data/mods/public/art/meshes/skeletal/elephant_african_baby.dae Results in these warnings (in Firefox), the mesh is not visible: Unsupported primitive type: polygons ColladaLoader.js:1980:7 Undefined sampler. Acc...
Enhancement,Loaders
low
Minor
340,530,514
TypeScript
tsc --build / Project References Feedback & Discussion
Continuation of #3469 "Medium-sized Projects" which has grown too large for GitHub to display comfortably Please use this thread for feedback, general discussion, questions, or requests for help / "is this a bug" discussions. Active bugs / PRs in this area: * https://github.com/Microsoft/TypeScript-Handbook/pul...
Discussion,Scenario: Monorepos & Cross-Project References
high
Critical
340,545,295
vue
Component scope attribute is lost when conditionally rendering root node
### Version 2.5.16 ### Reproduction link [https://codesandbox.io/s/5vj19q8yk](https://codesandbox.io/s/5vj19q8yk) ### Steps to reproduce 1. observe that text is green 2. click two times on checkbox to trigger slot's hide and show cycle ### What is expected? 3. text should still be green In other word...
has workaround
medium
Minor
340,550,157
vscode
Provide an API to track a position in a document across edits
I've come across a few places where this'd be handy lately. Most recently, I run some tests for my user and I get back positions in the document of where each test is - this allows them to click on the test in the runner/results to jump directly to it. Unfortunately, if the user modifies their test file then this lo...
feature-request,api,editor-api
medium
Major
340,603,576
pytorch
[doc] many losses still mention size_average in formula
e.g., see equation of https://pytorch.org/docs/master/nn.html#torch.nn.KLDivLoss @li-roy cc @jlin27 @mruberry @albanD @jbschlosser
module: docs,module: nn,module: loss,triaged,module: deprecation
low
Minor
340,651,238
godot
Animated mesh strange behaviour
**Godot version:** v3.1.dev.custom_build 0b7df80eb1b1f6415b397f0ac115da5014b7b8a8 **OS/device including version:** Windows 10 x64 Intel HD 4000 & GT 820M **Issue description:** I'm currently developing a fps game with huge world, and when i am moving to far location, the mesh got strange result. Mesh a...
bug,topic:animation,topic:3d
low
Minor
340,680,834
react-native
VirtualizedList- inefficient function passing for CellRenderer
<!-- Requirements: please go through this checklist before opening a new issue --> - [x] Review the documentation - [x] Search for existing issues - [ ] Use the latest React Native release - *using version 0.55.2 did not see any changes to the FlatListComponent since that version.* ## Environment Run `reac...
JavaScript,Help Wanted :octocat:,Resolution: PR Submitted,Component: VirtualizedList,Bug,Newer Patch Available
medium
Major
340,702,179
angular
[Feature] @ContentChildren() option to traverse just ng-container and ng-template
## I'm submitting a... <pre><code> [ ] Regression (a behavior that used to work and stopped working in a new release) [ ] Bug report <!-- Please search GitHub for a similar issue or PR before submitting --> [ ] Performance issue [x] Feature request [ ] Documentation issue or request [ ] Support request => Pleas...
feature,area: core,core: queries,feature: insufficient votes,feature: votes required
medium
Critical
340,723,564
TypeScript
Services for non-homomorphic mapped type
**TypeScript Version:** 3.0.0-dev.20180712 **Code** ```ts interface I { a: number; b: number; } type J = { [K in "b"]: I[K] }; declare const j: J; j.b; // Go-to-definition does not work ``` **Expected behavior:** Since the type we're getting is `I[K]`, the mapped property symbol should have a ref...
Suggestion,Help Wanted,Domain: Mapped Types,Experience Enhancement,Domain: Symbol Navigation
low
Minor
340,756,825
TypeScript
Allow regular flags to mix with --build
<!-- 🚨 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,In Discussion
medium
Critical
340,823,357
go
net/http: test WebAssembly Fetch implementation of Transport
While taking a look at CL https://go-review.googlesource.com/c/go/+/123537 for https://github.com/golang/go/issues/26349, a recommendation was that we should add tests to avoid regressions such as in that issue raised. @bradfitz added a reminder in https://github.com/golang/go/issues/26051#issuecomment-404644951
Testing,help wanted,NeedsFix,arch-wasm
low
Minor
340,842,714
TypeScript
In JS, `object` is treated as 'any'
**TypeScript Version:** 3.0.0-dev.20180711 **Code** ```ts /** @typedef {object} T */ /** @type {T} */ const x = 0; ``` **Expected behavior:** Error at `x`: `0` is not an object. **Actual behavior:** No error.
Suggestion,Domain: lib.d.ts,Awaiting More Feedback,Domain: JSDoc,checkJs,Domain: JavaScript
low
Critical
340,843,610
pytorch
[feature request] Make `torch.gather` broadcastable.
Currently, `torch.gather` does not broadcast. For example: ```python t = torch.tensor([[1,2],[1,2]]) torch.gather(t, 1, torch.tensor([[0,1,0],[0,1,0]])) ``` gives ``` tensor([[ 1, 2, 1], [ 1, 2, 1]]) ``` But ```python t = torch.tensor([[1,2],[1,2]]) torch.gather(t, 1, torch.tensor([[0,1,0]]...
triaged,function request
medium
Critical
340,844,593
go
x/image/tiff: compressed tiffs are invalid (at least on Mac OS X)
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 ### Does this issue reproduce with the latest release? I'm on go1.10. ### What operating system and processor architecture are you using (`go env`)? ...
NeedsInvestigation
low
Critical
340,853,284
rust
Correcting Path::components on non-"Unix" platforms
`Path::components` is incorrect on Redox. I would like to develop the solution here: https://github.com/rust-lang/rust/pull/51537. The following is a description of the problem. Suppose you have the following path: `file:/home/user/foo/bar.txt` You split the path into components using `Path::components` ...
O-windows,T-libs-api,C-bug,T-libs,A-io,O-UEFI,O-nintendo3ds
medium
Critical
340,941,935
pytorch
[feature request] allow forward_pre_hook to "preprocess" input
basically allowing returning new input tensor(s)
todo,feature,triaged
low
Minor
340,943,760
opencv
opencv_createsamples consistently failing on Ubuntu 16.04.4
- OpenCV => 3.4.2 - Operating System / Platform => Ubuntu 16.04.4 - Compiler => GCC The following command: ` opencv_createsamples -bgcolor 0 -bgthresh 0 -maxxangle 1.1 -maxyangle 1.1 -maxzangle 0.5 -maxidev 40 -w 25 -h 25 -num 100 -img filename.tif -bg filelist.txt -vec filename.vec ` Consistently fails with ...
category: apps,incomplete
low
Major
340,952,274
vscode
[json] package.json: complete package versions from scopes or private registries
While there are numerous issues explaining that package _names_ cannot be autocompleted for scopes on the official registry or for private registries, that doesn't mean you shouldn't be able to autocomplete package _versions_. And I'd argue that atleast for private registries autocompleting the version is generally ...
feature-request,json
medium
Major
341,116,005
vscode
Allow diagnostics messages to have markdown (or formatted text) content
**Feature request** Allow diagnostics to display formatted content. The specific request was to show part of a diagnostic message in bold. A few potential options: - Allow diagnostics to use markdown content - Allow diagnostics to use formatted text - Add an "important span" to diagnostic messages that lets u...
feature-request,api,languages-diagnostics
high
Critical
341,117,355
flutter
Add API for asynchronously loading a font
Please see the following timeline trace (produced by our client in https://github.com/flutter/flutter/issues/813#issuecomment-404830195): [Archiv.zip](https://github.com/flutter/flutter/files/2193775/Archiv.zip) There's a 100ms jank caused by font loading: ![image](https://user-images.githubusercontent.com/2298756...
c: new feature,framework,engine,c: performance,P2,team-engine,triaged-engine
low
Minor
341,142,665
react
[Umbrella] Releasing Suspense
Let's use this issue to track the remaining tasks for releasing Suspense to open source. **Last updated: March 24, 2022** **Blog post: [The Plan for React 18](https://reactjs.org/blog/2021/06/08/the-plan-for-react-18.html)** ## Completed: React 16 - [x] Release `<Suspense>` with `React.lazy` for client-side...
Type: Umbrella,React Core Team
high
Critical
341,171,716
pytorch
Build error: cannot find -lonnxifi_loader
On master. It also seems `python3 setup.py install` still tries to build Caffe2: ``` [ 61%] Linking CXX shared library ../lib/libcaffe2.so /usr/bin/ld: cannot find -lonnxifi_loader collect2: error: ld returned 1 exit status caffe2/CMakeFiles/caffe2.dir/build.make:2382: recipe for target 'lib/libcaffe2.so' faile...
module: build,triaged
low
Critical
341,174,372
flutter
Unmount everything and dispose States when host activity dies
Looking at #19159, it seems reasonable looking at the API doc to expect the State.dispose to be called when the FlutterActivity is finishing/being destroyed. Yet it never gets called and there's an inbalance between things registered and/or created during initState() and things unregistered and/or released during dispo...
c: new feature,framework,engine,P2,team-engine,triaged-engine
low
Major
341,174,531
go
cmd/compile: consider using DWARF 5
DWARF 5 has several advantages over previous versions of DWARF. Notably, 1. It supports position-independent representations, which significantly reduces the number of relocations in object files and hence the size of object files and the load on the linker. In the `go` binary, 49% of the 503,361 total relocations a...
NeedsDecision,Debugging
medium
Critical
341,185,768
TypeScript
Ideas for faster cold compiler start-up
# Background For some users, cold compile times are getting to be a bit long - so much so that it's impacting people's non-watch-mode experience, and [giving people a negative perception of the compiler](https://twitter.com/garybernhardt/status/1007690864909529088). Compilation is already a hard sell for JavaScri...
Suggestion,Needs Proposal
medium
Critical
341,215,249
rust
Dropping unused and unreferenced external crate should not trigger recompile
After compiling a project that has a reference to an external crate in `Cargo.toml` but that is not imported (no `extern crate foo;`), a subsequent `cargo build` after dropping the unused dependency from `Cargo.toml` triggers a full rebuild. Unless the removal triggers a change in the version of a different dependen...
C-enhancement,I-compiletime,T-compiler,A-incr-comp,WG-incr-comp
low
Minor
341,231,219
rust
Warn about #[macro_export] mod m?
I haven't used macros that often, but had to make changes in a 3rd party project. During refactoring I tried to import macros from another module. I knew I had to add `macro_use`, `macro_export` somehow, but couldn't remember details. While `rustc` was somewhat helpful in warning me on my first attempt: ``` ...
C-enhancement,A-attributes,A-lints,T-compiler,D-papercut
low
Critical
341,236,473
opencv
float numbers are not supported by CV_CheckEQ
<!-- If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses. If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute). This is a template helping you to create an issue which can be...
feature,category: core
low
Critical
341,244,512
rust
include_str fails with large files
I just tried to `include_str!()` a 14g file. It failed with: <details> <summary>failure with 16g file</summary> ```text % cargo build Compiling foobar v0.1.0 (file:///home/benaryorg/.local/tmp/tmp.nlZAcHIVlh) fatal runtime error: memory allocation failed error: Could not compile `foobar`. ``` </details...
T-compiler,I-compilemem,C-bug
low
Critical
341,244,771
pytorch
Build error: flat_hash_map.h(226) C2133
## Issue description When building the caffe2 on a Windows 10 using pytorch\scripts\biuld_windows.bat, 5 errors occurred: ``` "C:\VS\Setup\pytorch\build\ALL_BUILD.vcxproj" (default target) (1) -> "C:\VS\Setup\pytorch\build\caffe2\caffe2.vcxproj" (default target) (5) -> "C:\VS\Setup\pytorch\b...
caffe2
low
Critical
341,246,097
rust
rustc_target, rustc_codegen_llvm: use () for the metadata of pointers to extern { type }s.
Right now we check in a bunch of places (with, e.g. `type_has_metadata`) whether an unsized type has no metadata, i.e. its pointer is like a regular pointer to sized types, and this is only the case for the new `extern { type Foo; }` opaque FFI types. What we could do instead, at the same time to simplify some the c...
C-enhancement,A-codegen,E-mentor,T-compiler,A-layout
low
Major
341,258,634
pytorch
PredictorTest.SimpleBatchSizedMapInput intermittently hangs
Example: https://ci.pytorch.org/jenkins/job/caffe2-builds/job/py2-cuda9.0-cudnn7-ubuntu16.04-test/8089/console ``` 13:19:14 [ RUN ] PredictorTest.SimpleBatchSizedMapInput 13:19:14 I0714 13:19:14.288452 208 net_dag_utils.cc:102] Operator graph pruning prior to chain compute took: 2.162e-06 secs 13:19:14 I07...
caffe2
low
Critical
341,265,456
godot
Particles still emit at old location when emission is turned off, moved and turned back on
___ ***Bugsquad note:** This issue has been confirmed several times already. No need to confirm it further.* ___ Godot 3.0.5 Windows 10 64 bits GeForce GTX 1060 6GB/PCIe/SSE2 Repro: 1) Place world space particles at position A and enable emission. Wait some time. 2) Disable emission 3) Move particles a...
bug,topic:rendering,confirmed,topic:particles
medium
Critical
341,274,846
rust
Macros 2.0: macro defined and used in same function-like scope can't resolve its own items
Maybe this is just a misunderstanding of hygiene, but if a macro 2.0 is defined and used in the same function-like scope (function/const) then it can't resolve its own items: ```Rust #![feature(decl_macro)] trait Tr { fn foo(self); } const C: () = { macro implit { () => { fn doit() ...
A-resolve,T-compiler,A-macros-2.0,F-decl_macro
low
Critical
341,282,328
rust
Custom derive: can't use const as attribute value
I'm using serde to implement deserialization for a custom protocol. To keep the code dry, I've pulled all relevant strings into constants, but that creates a problem when trying to use the constants as attributes values in serde's derive macro. Here's a playground with a minimal example to reproduce the problem: htt...
A-attributes,A-macros,T-compiler,C-bug,A-proc-macros
medium
Critical
341,295,626
rust
Default impls cannot take into account associated types
Suppose I have some trait with a default method: ```rust trait Foo { fn bar(&self, isize) { .. } } ``` and I want to add an associated type: ```rust trait Foo { type Baz = isize; fn bar(&self, Self::Baz); } ``` This is a breaking change unless I move the old default method to a new `default impl`. But there is no...
T-lang,A-specialization,C-bug,F-specialization
low
Minor
341,300,888
TypeScript
Duplicated synthetic comment emit on module declarations
**TypeScript Version:** master as of 2018-07-12 **Search Terms:** module enum declaration synthetic comment **Code** As a patch for `unittests/transform.ts`: ```ts diff --git a/src/testRunner/unittests/transform.ts b/src/testRunner/unittests/transform.ts index 6c74c558b1..a39522b204 100644 --- a/src/tes...
Bug
low
Minor
341,354,341
react
Investigate IE/Edge select rendering bug
This is a follow up from an issue related to change events on selects in IE/Edge (https://github.com/facebook/react/issues/4672). It looks like this is no longer an issue, but there's a visual regression on IE/Edge that might be avoidable. **Reproduction** https://codepen.io/nhunzaker/pen/qybxmz **Observation*...
Browser: IE,Component: DOM,Type: Needs Investigation
low
Critical
341,364,679
rust
Weird span for `#[bench]` method error
Given ``` #[bench] fn bar(x: isize) { } ``` The current output is suboptimal: ``` error[E0308]: mismatched types --> $DIR/issue-12997-2.rs:16:1 | LL | fn bar(x: isize) { } | ^^^^^^^^^^^^^^^^^^^^ expected isize, found mutable reference | = note: expected type `isize` found type `&mut __test::...
C-enhancement,A-diagnostics,T-compiler
low
Critical
341,368,233
pytorch
Windows CPU version much slower than Unix versions
Actually, this was first detected when we tried to build 0.4 packages and do some benchmarking. At first, I thought the reason may be that `OpenMP` is not well supported. But recently, when I managed to build PyTorch CPU version with Intel C++ Compiler, it was still much slower in some of the complex networks like Sque...
module: windows,triaged
medium
Critical
341,383,860
vue
When a getter is defined that does not define a setter, no recursive reactive is made.
### Version 2.5.17-beta.0 ### Reproduction link [https://jsfiddle.net/ts0307/pd8zr3sk/](https://jsfiddle.net/ts0307/pd8zr3sk/) ### Steps to reproduce Run JSFiddle snippet ### What is expected? I expect, the result is shown as {"bar": "b"} instead of {"bar": "a"} ### What is actually happening? if ((!...
has workaround
low
Minor
341,416,818
kubernetes
Prevent mass livenessProbe failures from taking down all pods in a Deployment
> /kind feature **What happened**: A livenessProbe failed across all pods in a deployment, which took the application down. Given it affected all pods, it would have been better in this instance for the application to continue in a degraded state versus being hard down. However, if this type of failure happened o...
sig/scheduling,sig/node,kind/feature,sig/apps,lifecycle/frozen
low
Critical
341,475,163
rust
better error message for wrong lifetime annotations?
This was my code ````rust pub(crate) fn parse_rev<'a>(repo: &<'a>Repository, rev_raw: &str) -> Revspec<'a> { ... } ```` Obviously this should have been ````rust pub(crate) fn parse_rev<'a>(repo: &'a Repository, rev_raw: &str) -> Revspec<'a> { ... } ```` (````<'a>```` => ````'a````) but the error message ha...
C-enhancement,A-diagnostics,A-parser,T-compiler,A-suggestion-diagnostics
low
Critical
341,535,338
opencv
Opencv system crash with Java program in Mat.n_delete() w/ libc
[hs_err_pid20872.log](https://github.com/opencv/opencv/files/2197931/hs_err_pid20872.log) ##### System information (version) OpenCV => 3.4 Operating System/Platform => Ubuntu 16.04 64-bit Complier => OpenCV built with GNU 5.4.0 and Java 1.8.0.171 ##### Detailed description A fatal error has been detected by t...
priority: low,category: java bindings,incomplete,needs investigation
low
Critical
341,549,015
opencv
Rect_<Tp> operator & return wrong result
<!-- If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses. If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute). This is a template helping you to create an issue which can be...
bug,priority: low,category: core
low
Critical
341,618,511
go
runtime/race: complete race detector on netbsd/amd64
The new netbsd/amd64 race detector support is not 100% done yet, per https://github.com/golang/go/issues/19273#issuecomment-349474852 We also don't have a builder for it. This is a tracking bug to see it completed. /cc @krytarowski
help wanted,OS-NetBSD,NeedsFix,compiler/runtime
low
Critical
341,636,866
godot
AudioEffectPitchShift deteriorates sample quality "without being used"
Godot 3.0.2 stable + Windows 10 Continuously playing the same sound through the "Effect" bus in this configuration: ![capture](https://user-images.githubusercontent.com/13801432/42777429-f9b534c2-8931-11e8-82af-afe4ae0d8348.PNG) ...results in the sample changing sound over time, without ever touching `pitch_scale`...
bug,confirmed,topic:audio
low
Major
341,679,240
go
gollvm: build fail on slackware 14.2 in tools/gollvm/libgo/runtime_sysinfo.go
Please answer these questions before submitting your issue. Thanks! ### What operating system and processor architecture are you using (`go env`)? x86_64, slackware 14.2 ### What did you do? In my build directory: `cmake -DCMAKE_BUILD_TYPE=Release -DLLVM_TARGETS_TO_BUILD="X86" -G "Unix Makefiles" ../llvm && m...
NeedsInvestigation
medium
Critical
341,730,930
rust
Rust docs should at least have the option of using sans-serif fonts
__Edit__: When I say "docs" I mean the standard library docs. The font in places like "The Book" is absolutely fine. I'm sure I've seen this brought up in the issues before, but I don't seem to be able to find those issues anymore because I can't remember what I searched, so I hope you don't mind me creating a new ...
T-rustdoc,A-docs,C-feature-request
low
Major
341,776,136
pytorch
WARNING:root:This caffe2 python run does not have GPU support. Will run in CPU only mode. WARNING:root:Debug message: libcurand.so.9.0: cannot open shared object file: No such file or directory Segmentation fault (core dumped)
HI, I have GPU and CUDA, CuDNN, and NCCL. My OS is Ubuntu 16.04, I followed this tutorial to install Coffe2 with GPU support ( conda install -c caffe2 caffe2-cuda9.0-cudnn7 ) and the installation finished successfully but this command: python2 -c 'from caffe2.python import workspace; print(workspace.NumCudaDevices()...
caffe2
low
Critical
341,877,709
rust
Blanket impl of `Into::into` for `From` should be default
Because of the blanket impl of `Into` for `From`, in which `Into::into` is not `default`, one cannot override the default implementation of `Into::into` using `specialization`.
C-enhancement,T-libs-api,A-specialization
low
Minor
341,936,639
TypeScript
Allow inferring rest element types in conditional types involving tuples
<!-- 🚨 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 rest element infer tuple ## Suggestion Currently, inferring si...
Suggestion,In Discussion
medium
Critical
341,946,141
TypeScript
Allow more constructs to work as type guards for `unknown`
## Search Terms unknown type guard Related: https://github.com/Microsoft/TypeScript/pull/24439#issuecomment-394185089, https://github.com/Microsoft/TypeScript/issues/25172 ## Suggestion Currently, only a very limited set of type guards are able to narrow the new `unknown` type: * Array.isArray (because it is a t...
Suggestion,Awaiting More Feedback
high
Critical
341,980,888
node
cluster: forked children eagerly ignore/replace inspect port from cluster settings
* **Version**: 8.11.3 * **Platform**: Linux 4.13.0-46-generic #<span></span>51-Ubuntu SMP Tue Jun 12 12:36:29 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux * **Subsystem**: cluster ## The Setup Here's a small example that can be used to show this behavior: ```js const cluster = require('cluster'); const args = [ ...
cluster
low
Critical
342,004,068
deno
Capability-based security model
I don't know if anyone here has considered using a capability-based security model in Deno but when I read this paragraph in the Readme I thought that such a model would be perfect for this sort of thing: > File system and network access can be controlled in order to run sandboxed code. Defaults to read-only file sy...
permissions,suggestion
medium
Major
342,021,743
youtube-dl
could not send head request and http error 403
## Please follow the guide below - You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`) - Use the *Preview* tab to see what your issue will actually look like ...
account-needed
medium
Critical
342,031,136
go
cmd/go: add 'go release'
Collecting things we would want a 'go release' command to do: - API-level compatibility checks - warning about dependence on prerelease or pseudo-versions. - checking that root/go.mod and root/v2/go.mod don't both say module foo/v2.
NeedsInvestigation,modules
high
Critical
342,032,072
flutter
MediaQuery.viewInsets.bottom changes instantly when keyboard opens
## Steps to Reproduce ```dart import 'package:flutter/material.dart'; void main() => runApp(MaterialApp( home: MyApp(), )); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( body: Column( children: <Widget>[ Expanded...
c: new feature,framework,a: animation,f: material design,a: fidelity,P2,team-design,triaged-design
low
Minor
342,036,111
TypeScript
`@callback` is only generic after `@template` tag
**TypeScript Version:** master <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** **Code** Our declaration: ```ts export interface JSDocSignature extends JSDocType, Declaration { kind: SyntaxKind.JSDocSignature; typeParameters?: Reado...
Bug,Domain: JSDoc,checkJs,Domain: JavaScript
low
Critical
342,037,252
vue
Possible memory leak when v-for in development mode
### Version 2.5.16 ### Reproduction link [https://codepen.io/anon/pen/KBMaOY](https://codepen.io/anon/pen/KBMaOY) ### Steps to reproduce - Open the codepen https://codepen.io/anon/pen/gjMgzG - Click a couple of times to list 0 item, then 1000 - See the memory increasing - Try force GC (trash icon) before me...
improvement
low
Major
342,039,444
TypeScript
Unreachable code defaults
Apparently, since 2.9.1, unreachable code is allowed by default, you have to explicitly set `allowUnreachableCode` to `false` in `tsconfig.json` to get the old behavior. This doesn't match what's described [in the docs](https://www.typescriptlang.org/docs/handbook/compiler-options.html). ![image](https://user-ima...
Docs
low
Major
342,040,000
go
proposal: os/exec/v2: follow Context guidelines
# Proposal: Make `exec` follow guidelines for using `Context` objects Author(s): Casey Barker Last updated: 2018-07-17 ## Abstract This proposal is to add `cmd.StartCtx()` and `cmd.RunCtx()` methods to the `exec` package, eventually deprecating `exec.CommandContext()`, and bringing it into compliance with t...
v2,Proposal
low
Critical
342,047,670
vscode
Improve readability of diagnotic hovers
The number one annoyance I have and hear from people about VS Code + TypeScript is that type errors are hard to read. TypeScript will display nested type errors with each level indented, but because of the line wrapping, that indentation basically lost. This makes the error hard to follow and in consequence hard to so...
feature-request,languages-diagnostics
low
Critical
342,112,060
kubernetes
TokenReview audience support for nodes
Once https://github.com/kubernetes/kubernetes/pull/62692 merges, we should add support for audiences to the Kubelet's token review. This is important as part of the node isolation efforts, as the node could otherwise use tokens sent with requests to the nodes endpoints (e.g. stats requests) to send requests to other...
sig/node,kind/feature,sig/auth,priority/important-longterm,lifecycle/frozen
medium
Major
342,187,953
flutter
Feature Request for `SliverBottomAppBar`
**Problem:** When using SlideTransition to slide off BottomAppBar on SliverList scroll which is inside NestedScrollView with SliverAppBar, animation works, but SliverList does not occupy remaining space where BottomAppBar once was. **Intended behaviour:** https://material.io/design/components/app-bars-bottom.html#...
c: new feature,framework,f: material design,f: scrolling,customer: crowd,P3,team-design,triaged-design
medium
Critical