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
358,861,012
go
internal/bytealg: valgrind reports invalid reads by C.GoString
### 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`)? <details> ``` GOARCH="amd64" GOBIN="" GOCACHE="/home/kivikakk/.cache/go-bui...
help wanted,NeedsInvestigation
medium
Critical
358,945,806
TypeScript
Conditional types don't work with Mapped types when you extend enum keys
<!-- 🚨 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...
Needs Investigation
low
Critical
358,952,723
flutter
Allow plugins to depend on podspecs outside of CocoaPods specs repo
I want to make a plugin that depends on the source which is outside of Specs like this in **myplugin.podspec**: s.dependency 'Hoge', :git => 'https://github.com/hoge/fuga_specs.git' However it looks it is not possible to do that in podspec. Reference: https://stackoverflow.com/questions/22447062/how-do-...
platform-ios,tool,d: stackoverflow,P3,a: plugins,team-ios,triaged-ios
low
Critical
358,954,088
TypeScript
Check property declarations in JS
Recently I found it's helpful to add JSDOC style comment to hint my IDE the variable's type. For example, If I add comment to a variable: ```js function fx(jsonAsset) { /** @type {import("a-dts-file-describes-the-type-of-the-json-object").Type} */ const typedObject = jsonAsset.json; // IDE will giv...
Bug
low
Critical
358,974,323
pytorch
[feature request] - Allow sequences lengths to be 0 in PackSequence
Hi, ### Context I'm currently working on some NLP stuff which includes working on character-level encoding through RNNs. For this, I'm using pack_padded_sequence/pad_packed_sequence which does the job for word-level encoding, but starts to be a little bit more annoying for the chars. **_I'm using batch_first=T...
module: nn,module: rnn,triaged,enhancement
low
Critical
358,999,708
go
cmd/go: add modvendor sub-command
Creating this issue as a follow up to https://github.com/golang/go/issues/26366 (and others). `go mod vendor` is documented as follows: ``` Vendor resets the main module's vendor directory to include all packages needed to build and test all the main module's packages. It does not include test code for vendore...
NeedsDecision,modules
medium
Major
359,065,710
rust
(Identical) function call with Generic arguments breaks compilation when called from within another function that has unrelated Generic arguments
I searched and couldn't find a similar issue for now. The following code shows an example of a function ```interpolate_linear``` that when called with identical (literal) arguments, causes a complier error in the function ```percentile``` (line 16), but no error in the function ```call_interpolate_linear``` (line 21...
C-enhancement,A-diagnostics,T-compiler
low
Critical
359,070,956
rust
NLL: document specs for (new) semantics in rust ref (incl. deviations from RFC)
The [NLL RFC][] provided a specification for what we planned to implement. (Or at least it tried to do so.) [NLL RFC]: https://github.com/rust-lang/rfcs/blob/master/text/2094-nll.md Since then, the NLL implementation made something that deviated in various ways from that specification. This ticket is just noti...
A-lifetimes,P-medium,A-borrow-checker,T-compiler,A-NLL,NLL-reference
low
Major
359,071,761
electron
AppContainer Process Isolation on Windows 10
Using tools like [`electron-windows-store`](https://github.com/felixrieseberg/electron-windows-store), Electron can be packaged as an `appx` app and run in the same environment as Windows Store apps, commonly known as UWP apps. They're still `exe` binaries, they're just running as part of a package and with a package i...
enhancement :sparkles:,platform/windows
low
Minor
359,095,183
pytorch
at::Device makes it very easy to write buggy code
Imagine this method: ```cpp Tensor Tensor::cuda(Device dev = at::Device(at::DeviceKind::CUDA)) { if (this->device() == dev) { return *this; } return ...; // do the transfer } ``` Can you see the error? I didn't. <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> The p...
triaged,better-engineering
low
Critical
359,138,529
vue
Oddity with JS transition hooks used in combination with CSS
### Version 2.5.17 ### Reproduction link [https://codesandbox.io/s/6x4k5vrrkn](https://codesandbox.io/s/6x4k5vrrkn) ### Steps to reproduce Remove the [unused] `done` parameter from the `leave` callback signature in `SideSheet.vue`. ### What is expected? The component to transition both on enter and leave. ...
transition
medium
Minor
359,139,444
vue
Race condition in transition-group
### Version 2.5.17 ### Reproduction link [https://jsfiddle.net/nkovacs/Lskfredn/](https://jsfiddle.net/nkovacs/Lskfredn/) ### Steps to reproduce 1. Click the add button ### What is expected? the animation should work properly, and animation classes should be cleaned up ### What is actually hap...
transition
low
Critical
359,151,138
go
cmd/compile: automatically stack-allocate small non-escaping slices of dynamic size
This commit: https://github.com/golang/go/commit/95a11c7381e01fdaaf34e25b82db0632081ab74e shows a real-world performance gain triggered by moving a small non-escaping slice to the stack. It is my understanding that the Go compiler always allocated the slice in the heap because the length was not known at compile ti...
Performance,NeedsInvestigation,compiler/runtime
low
Major
359,165,290
pytorch
[JIT][tracer] Slicing shape is specialized to tensor rank
Example: ``` import torch def fill_row_zero(x): x = torch.cat((torch.rand(1, *x.shape[1:]), x[1:]), dim=0) return x traced = torch.jit.trace(fill_row_zero, (torch.rand(3, 4),)) print(traced.graph) traced(torch.rand(3, 4, 5)) ``` ``` graph(%0 : Float(3, 4)) { %4 : int = prim::Constant[val...
oncall: jit
low
Minor
359,184,495
flutter
Search widget's text field might not have large enough tap area
Currently at 44 height due to a the default edgeInsets of the no border decoration. Android a11y scanner doesn't flag this for some reason, we should determine why.
framework,a: accessibility,P2,team-framework,triaged-framework
low
Minor
359,199,107
pytorch
[CLEANUP] Context functions should return TypeExtendedInterface, not Type
See https://github.com/pytorch/pytorch/pull/11461 for information. CC @ezyang.
triaged,better-engineering
low
Minor
359,213,205
kubernetes
Reduce the set of metrics exposed by the kubelet
### Background In 1.12, the kubelet exposes a number of sources for metrics directly from [cAdvisor](https://github.com/google/cadvisor#cadvisor). This includes: * [cAdvisor prometheus metrics](https://github.com/google/cadvisor/blob/master/docs/storage/prometheus.md#prometheus-metrics) at [`/metrics/cadvisor`](htt...
sig/node,kind/feature,sig/instrumentation,priority/important-longterm,lifecycle/frozen
high
Critical
359,214,282
go
cmd/go: do not cache tool output if tools print to stdout/stderr
# **Update, Oct 7 2020**: see https://github.com/golang/go/issues/27628#issuecomment-702252564 for most recent proposal in this issue. ### What version of Go are you using (`go version`)? tip (2e5c32518ce6facc507862f4156d4e6ac776754f), also Go 1.11 ### Does this issue reproduce with the latest release? Yes #...
Proposal,Proposal-Accepted,GoCommand
medium
Critical
359,222,238
rust
Tracking Issue: Procedural Macro Diagnostics (RFC 1566)
This is a tracking issue for diagnostics for procedural macros spawned off from https://github.com/rust-lang/rust/issues/38356. ## Overview ### Current Status * Implemented under `feature(proc_macro_diagnostic)` * In use by Rocket, Diesel, Maud ### Next Steps - [x] https://github.com/rust-lang/rust/pull/44125 ...
A-diagnostics,T-lang,T-libs-api,B-unstable,C-tracking-issue,A-macros-1.2,Libs-Tracked,I-lang-radar
high
Minor
359,231,336
pytorch
CrossEntropyLoss, ignore_index does not prevent back-prop if the logits are -inf
## Issue description When using CrossEntropyLoss, I assumed that as long as I ignore a target, its loss would not be calculated and will not get back propagated. Therefore I would pass logits = -float(inf) when I attempted to skip that target. However, even though the loss would be skipped; the loss.backward() wou...
module: docs,module: nn,module: loss,triaged
low
Critical
359,267,822
go
x/build/internal/gophers: improve internal package design
## Problem > _Total mess, but a functional mess, and a starting point for the future._ > — Commit [`891b12dc`](https://github.com/golang/build/commit/891b12dcbdd4ee448d573a78681b2e785daa71ca) The `gophers` package is currently hard to use and hard to modify. It's not easy to read its [documentation](https://godo...
Documentation,Builders,NeedsFix
low
Major
359,299,918
rust
Allow setting breakpoint when Err() is constructed in debug builds
This would be really helpful for tracking down the source of errors. It seems the simplest way to allow this would be to emit a no-inline function that's used for setting a particular enum variant.
C-feature-request
low
Critical
359,473,423
three.js
FBXLoader not working with many skeleton animations (e.g., from Mixamo.com)
##### Description of the problem The FBXLoader does not work with many skeleton animations. e.g., from Mixamo.com. One example from Mixamo that fails is the following: Character: WHITECLOWN N HALLIN Animation: SAMBA DANCING You can get this model by downloading it from Mixamo directly but I have also at...
Bug,Loaders
medium
Major
359,473,497
vscode
Use the modifier properties on mouse event instead of tracking keydown/keyup
Extracted from our conversation at https://github.com/Microsoft/vscode/commit/e82498a544b88f5041ec7f8b531ab8ca6eb29eaf
help wanted,debt,editor-drag-and-drop
low
Minor
359,530,410
go
x/text/message: package level docs about MatchLanguage are unclear
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`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`)? linux/amd64 ### What did...
Documentation,NeedsInvestigation
low
Minor
359,536,193
You-Dont-Know-JS
Calling template literals "interpolated string literals" is misleading
Chapter in question: https://github.com/getify/You-Dont-Know-JS/blob/master/es6%20%26%20beyond/ch2.md#template-literals The suggestion seems to be that the template literals would be all about strings; there's only examples that result in strings, and phrases like "final string value" and "generating the string from...
for second edition
medium
Minor
359,548,761
flutter
Would like to measure/track Flutter's total download size
I've seen several claims that our total download is too large. e.g. https://twitter.com/FerventGeek/status/1038480155990261761 @gspencergoog do you know if we already track this as part of the bundle building? CC @FerventGeek @mit-mit
team,framework,P2,team-framework,triaged-framework
low
Major
359,567,274
pytorch
Request to import pytest in test/*.py
Currently PyTorch uses the builtin `unittest` module for testing. Would it be possible to add a dependency on [pytest](https://docs.pytest.org/en/latest/) so developers can more easily write parametrized tests? While working on [test/test_distributions.py](https://github.com/pytorch/pytorch/blob/master/test/test_dis...
module: tests,triaged
medium
Critical
359,574,800
opencv
VideoCapture bug with Acer Switch 5 tablet
##### System information (version) - OpenCV = 3.4.1 - Operating System / Platform => Windows 64 Bit - Compiler => Visual Studio 2015 ##### Detailed description Camera capture on Acer Switch 5 tablet appears to work, but if I try to manually focus the camera (using the onscreen menu) it actually just applie...
priority: low,category: videoio,platform: winrt/uwp
low
Critical
359,579,444
rust
Confusing error message when wildcard importing two same-named traits
Discovered this when using `tokio-async-await` and `futures`. Both define `FutureExt` and `StreamExt` traits in their `preludes`. Both traits are meant to be used at the same time (from what I understand). ```rust use tokio::prelude::*; // contains StreamExt, FutureExt use futures::prelude::*; // contains Stream...
C-enhancement,A-diagnostics,A-trait-system,T-compiler
low
Critical
359,608,021
bitcoin
Test coverage of our networking code
Our python functional testing framework is pretty limited for what kinds of p2p behaviors we can test. Basically, we can currently only make manual connections between bitcoind nodes (using the `addnode` rpc), which are treated differently in our code than outbound peers selected using addrman. While we do have som...
Tests
medium
Critical
359,656,898
flutter
Document how to set SystemChrome brightness properly
## Steps to Reproduce 1. Create a simple app with an appbar 2. Try to set the color of the icons manually with `SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.dark)` 3. The icon's colors don't change [Here's an example app](https://pastebin.com/k00S4PWs) [Here's an example video](https://cdn.disco...
framework,d: api docs,has reproducible steps,P2,found in release: 3.7,found in release: 3.8,team-framework,triaged-framework
low
Major
359,695,769
pytorch
[feature request] Triangular Matrix Representation
I tried searching the documentation, but besides sparse matrices (which in most cases would use _more_ space than a dense matrix), I didn't see any tensor types that would take advantage of the ability to save space with the knowledge that the tensor is triangular. This would also save time when performing `matmul()`, ...
feature,triaged
low
Major
359,707,887
godot
Audio clipping / static / interference on rapid intervals of sound (fixed in `master`)
**Godot version:** 3.1 alpha **OS/device including version:** Kubuntu 18.04 and Windows 10 **Issue description:** Creating a rapidly firing weapon, if sounds are played at intervals less than 0.5 or 0.6 seconds there is a clipping or static sound. Demo: https://www.dropbox.com/s/q5tx4y6272lgdae/2018-09-...
bug,confirmed,topic:audio
high
Critical
359,732,707
pytorch
Add min mode to embedding bags
It would be nice to add the min mode to embeddingBag. Following [this paper](https://arxiv.org/pdf/1803.01400.pdf) it seems like it can trigger pretty good result. More globally adding the power-mean formula would be awesome. Additionally, the current error `ValueError: mode has to be one of sum or mean` is not corre...
module: nn,triaged,enhancement
low
Critical
359,784,320
rust
Exponential type/trait-checking behavior from linearly nested iterator adapters.
The following test takes an exponential amount of time to type-check the body of `huge` (at the time of this writing, reported by `-Z time-passes` under "item-types checking"): ```rust #![crate_type = "lib"] pub fn unit() -> std::iter::Empty<()> { std::iter::empty() } macro_rules! nest { ($inner:expr...
C-enhancement,A-trait-system,I-compiletime,T-compiler
low
Minor
359,838,986
flutter
embedder channel apis poorly documented, makes it harder to write custom embedders
trying to create a embedder for flutter, but the documentation around the platform channels is pretty sparse. documentation I've looked at: [custom flutter engines](https://github.com/flutter/engine/wiki/Custom-Flutter-Engine-Embedders) [flutter api docs](https://master-docs-flutter-io.firebaseapp.com/) [desktop ...
engine,d: api docs,e: embedder,P2,team-engine,triaged-engine
low
Minor
359,873,268
pytorch
DataLoader: Could not wrapper a exception in threads
## Issue description It seems that the code in dataloader.py try to wrap exceptions in threads and re-raise it with traceback info which formatted to string. https://github.com/pytorch/pytorch/blob/v0.4.0/torch/utils/data/dataloader.py#L22 https://github.com/pytorch/pytorch/blob/v0.4.0/torch/utils/data/dataloader...
module: dataloader,module: error checking,triaged
low
Critical
359,884,864
pytorch
[Feature request] Advanced indexing in functions like `expand`
For functions like `torch.expand`, it would be nice to support advanced indexing with symbols like `...` and `:`. For example, ``` >>> a = torch.randn(2, 3, 4, 1) >>> a.expand(..., 10).shape torch.Size([2, 3, 4, 10]) ```
triaged,module: advanced indexing
low
Minor
359,885,254
TypeScript
Inline function refactoring
<!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section. --> ## Search Terms <!-- List of keywords you searched for before creating this issu...
Suggestion,In Discussion,Domain: Refactorings
medium
Critical
359,900,859
pytorch
undefined reference to caffe2
I am trying to cross compile caffe2 and generate a binary for my platform. I have successfully generated libcaffe2.so. But while compiling the code facing few issue: ``` /tmp/ccIOey60.o: In function `caffe2::Argument::set_name(char const*)': temp.cpp:(.text._ZN6caffe28Argument8set_nameEPKc[_ZN6caffe28Argument8se...
caffe2
low
Critical
359,932,025
rust
Move `backtrace` option to the target-specific configuration
When building a compiler for a target triple which differs from the host triple, it is impossible to express that the host supports libbacktrace, but the target doesn't. Moving the option from `[rust]` to `[target.xyz]` would make this more flexible, allowing the host compiler to be built with backtrace support, while ...
C-enhancement,T-bootstrap
low
Minor
359,951,460
rust
Building standard library with LLD fails on Windows with "undefined symbol" errors
Currently it's not possible to cross-compile the standard library for `aarch64-pc-windows-msvc`. To reproduce, install the MSVC's ARM64 toolchain (I used MSVC 15.8.3) and configure Rust as follows: ``` ./configure --host=x86_64-pc-windows-msvc --target=aarch64-pc-windows-msvc --set rust.lld ``` Running `./x.py buil...
A-linkage,O-windows,I-ICE,T-compiler,C-bug
medium
Critical
359,956,450
rust
rustdoc does not warn about broken links if they contain `.` or `[]`
I got a PR yesterday that included something like this: ```rust /// The tour de force of my career is [`foo.bar()`] pub mod foo { pub fn bar() {} } ``` In the current nightly rustdoc, `foo.bar()` neither resolves nor warns: ![](https://i.imgur.com/SZnon0r.png) Our CI with `--deny warnings` did not ...
T-rustdoc,C-feature-request,A-intra-doc-links
low
Critical
359,965,614
rust
Tracking issue for -Z emit-stack-sizes
This is an *experimental* feature (i.e. there's no RFC for it) [approved] by the compiler team and added in #51946. It's available in `nightly-2018-09-27` and newer nightly toolchains. [approved]: https://github.com/rust-lang/rust/pull/51946#issuecomment-411042650 Documentation can be found in [the unstable book]...
A-LLVM,T-compiler,B-unstable,C-tracking-issue,WG-embedded,S-tracking-needs-summary,A-CLI
low
Major
359,974,988
pytorch
One GPU is more memory efficient than Multiple GPUs
## Issue description Multiple GPUs runs out of memory with ``DataParallel`` while one GPU handles the load. ``` Hidden Size: 7150 Input Size: 1024 Sequence Length: 1024 Batch Size: 64 ==================================================================================================== One GPU... ==========...
module: multi-gpu,triaged,module: data parallel
low
Critical
360,016,006
go
x/build/cmd/gopherbot: autoassignment of reviews for cherry-picks should be sent to release manager group
Looks like https://go-review.googlesource.com/c/go/+/131596 was auto-assigned to owners but the release-managers Gerrit group (which is the only group allowed to submit to a release branch).
Builders,NeedsFix
low
Minor
360,114,391
pytorch
[caffe2] adam_op implementation is incorrect.
The formula currently implemented in adam_op.h and adam_op is: t = iters + 1 corrected_local_rate = lr * sqrt(1 - power(beta2, t)) /(1 - power(beta1, t)) m1_o = (beta1 * m1) + (1 - beta1) * grad m2_o = (beta2 * m2) + (1 - beta2) * np.square(grad) grad_o = corrected_local_rate * m1_o /(sqrt(m...
caffe2
low
Minor
360,138,599
go
cmd/vet: check for http.ResponseWriter WriteHeader calls after body has been written
### What version of Go are you using (`go version`)? ``` $ 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`)? <details> ``` $ go env GOARCH="amd64" GOBIN="" G...
FeatureRequest,Analysis
low
Critical
360,148,781
vscode
[folding] go to region command
So if we have the ctrl + g to go to line, how about we have a shortcut that will allow us to go to certain region in our code?
feature-request,editor-folding,outline
medium
Major
360,150,824
go
cmd/vet: mismatch between Printf checks and actual behaviour
### What version of Go are you using (`go version`)? go version go1.11 linux/amd64 ### What did you do? - go run https://play.golang.org/p/5rBLFTsNpqZ - go vet https://play.golang.org/p/5rBLFTsNpqZ - compare outputs ### What did you expect to see? Vet to accept the first Printf call and to flag the second on...
help wanted,NeedsFix,Analysis
low
Major
360,182,990
rust
1.29 fails to build on a Windows networked drive
I have a program that builds under 1.28 on Linux and Windows with no errors or warnings. The same program builds under 1.29 on Linux, but won't build on Windows if the source is on a virtuabox (i.e., networked) drive. See my initial report here: https://users.rust-lang.org/t/rust-1-29-0-is-out/20400/10?u=mark And ...
A-LLVM,O-windows,T-compiler,C-bug
medium
Critical
360,213,258
vscode
copy the exact path from the new breadcrumbs
It would be really great if we can copy and share the breadcrumbs generated a path, so we can save a huge time when we work as a team, as we can refer to the exact point of (issue or function) we need to work on next ![screen shot 2018-09-14 at 10 45 22 am](https://user-images.githubusercontent.com/15789257/455401...
feature-request,breadcrumbs
high
Critical
360,226,506
angular
Allow constants, enums, functions to be used in templates without having to add component members
## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopped working in a new release) [ ] Bug report <!-- Please search GitHub for a similar issue or PR before submitting --> [ ] Performance issue [ x ] Feature request [ ] Docu...
feature,area: core,core: binding & interpolation,feature: under consideration,canonical
high
Critical
360,247,321
go
runtime: tracebacks don't print function arguments for inlined functions
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`)? GOARCH="amd64" G...
NeedsInvestigation,compiler/runtime
low
Critical
360,253,018
rust
run-pass/lib-defaults.rs warns of redundant linker flag
This test: https://github.com/rust-lang/rust/blob/fccde0018a618eb6f45d2a3c97f629809994dff6/src/test/run-pass/lib-defaults.rs#L13-L18 is causing the following compile-time output to stderr (on Linux; not sure about other hosts): ``` warning: redundant linker flag specified for library `rust_test_helpers` ``` ...
A-linkage,A-testsuite,C-enhancement,T-compiler
low
Critical
360,291,408
angular
HttpTestingController does not resolve async/await
## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopped working in a new release) [x] Bug report <!-- Please search GitHub for a similar issue or PR before submitting --> [ ] Performance issue [ ] Feature request [ ] Docu...
type: bug/fix,freq1: low,area: common/http,P3
medium
Critical
360,309,327
react
input[type='number'] value isn't updated
**Do you want to request a *feature* or report a *bug*?** bug **What is the current behavior?** when I enter "01" into input[type=number],I set the value to 1, but it doesn't work. It still show "01" **If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the pr...
Component: DOM,Type: Needs Investigation
low
Critical
360,366,804
go
x/build: limit the number of auto-assigned reviewers
This is a follow-up issue to the discussion at https://groups.google.com/forum/#!topic/golang-dev/CdGrNJDcqec, to make sure it doesn't get lost. In that thread @mvdan proposed: > If a CL were to ping more than 5 people, simply fallback to pinging someone on the core team (Andy? Ian? Brad?), who can then make a be...
Builders,NeedsInvestigation
low
Minor
360,407,529
TypeScript
`references` are not inherited in `tsconfig.json`
**TypeScript Version:** 3.1.0-dev.20180914 **Search Terms:** tsconfig.json extends references inheritance It seems that the `references` key is not inherited via the `extends` mechanism, which surprised me because the handbook [doesn't mention](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html#conf...
Docs
medium
Critical
360,446,062
go
x/mobile/cmd/gobind: non-pointer struct types not supported in parameter or return values
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`)? ...
NeedsInvestigation,mobile
low
Critical
360,484,520
TypeScript
Later export causes `'T' is referenced directly or indirectly in its own type annotation`
**TypeScript Version:** 3.1.0-dev.20180914 **Code** ```js /** @typedef {{}} T */ /** @type {T} */ const T = JSON.parse(""); export class C extends T {} ``` **Expected behavior:** Same error as if the class isn't exported: `Type '{}' is not a constructor function type.` at the `extends` clause. ...
Bug,Domain: JSDoc,checkJs,Domain: JavaScript
low
Critical
360,491,777
go
runtime: cgo Unix C code can't modify environment variables for Go
### What version of Go are you using (`go version`)? 1.11 ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? linux amd64 ### What did you do? Because of envOnce and copyenv in [env_unix.go](https://golang.org/src/syscall...
Documentation,NeedsFix,compiler/runtime
low
Major
360,494,061
neovim
provider/node.vim hang on exit
- `nvim --version`: v0.3.2-530-gdadcfe22c - Vim (version: ) behaves differently? N/A - Operating system/version: Debian Linux/WSL - Terminal name/version: conhost, N/A - `$TERM`: xterm-256color N/A ### Steps to reproduce using `nvim -u NORC` *This isn't reproducible without any plugins.* ``` yarn global a...
bug,performance,provider,remote-plugin
medium
Critical
360,501,648
pytorch
Semaphore leaks in dataloader
Reported by @PetrochukM. ``` import torch from torch import multiprocessing # DEPENDANCY: This is required for ``DistributedDataParallel`` # https://pytorch.org/docs/stable/nn.html?highlight=distributeddataparallel#torch.nn.parallel.DistributedDataParallel try: multiprocessing.set_start_method('spawn') ex...
module: dataloader,triaged
low
Critical
360,507,692
TypeScript
Assignability rule for conditional types needs to require check types and distributivity to be identical
<!-- 🚨 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,Experimentation Needed
medium
Critical
360,550,245
rust
NLL: Poor borrow checker error message when extension of borrow happens indirectly (e.g. via method)
**EDIT**: Go [here](https://github.com/rust-lang/rust/issues/54256#issuecomment-434450019) for a smaller example. Code: ```rust #![feature(nll)] extern crate clang; use std::collections::HashMap; use std::error::Error; use clang::*; #[derive(Default)] struct SymbolDesc<'a> { deps: Vec<Entity<'a>...
C-enhancement,A-diagnostics,P-medium,A-borrow-checker,T-compiler,E-medium,A-NLL
low
Critical
360,588,651
TypeScript
Only emit declarations for code that has an /** @external */ JSDoc annotation
## Search Terms external emit declaration ## Problem When working with the `--stripInternal` compiler flag, you want to create a clean declaration file that only exposes the stuff your library users should use. You as library developer must add the `/* @internal */` annotations to all the parts of your code you ...
Suggestion,Awaiting More Feedback
low
Minor
360,591,742
pytorch
Caffe2 installation: libcaffe2_gpu.so: undefined reference to `caffe2::ClipTransformRGB
Hi all, When I try to install Caffe2 with CUDA, CUDNN, OpenCV and FFMPEG enabled, I got errors: ------------------------------------------------------------------------------------------------------ /home/jinchoi/src/pytorch_new2/build/lib/libcaffe2_gpu.so: undefined reference to `caffe2::ClipTransformRGB(unsigned...
caffe2
low
Critical
360,605,523
godot
JavaClassWrapper.wrap() doesn't seem to work
Basically JavaClassWrapper.wrap() has never worked. But it is tempting for people trying to get access to Android Classes. I did manage to the the java classes from the function by returning the correct value a modification I made to Godot code. But even then, it seems that the class deletes too many references which m...
bug,platform:android,topic:porting
low
Minor
360,614,176
opencv
cv::imread() won't work with .jp2 files after GetOpenFileName() dialog
I've encountered this weird issue that I seem to be unable to solve, involving jpeg2000 file format and GetOpenFileName() dialog. I've made a C++ program that asks for an image and then, later on, uses it as a texture, manipulates it etc. But here's the problem: I ask for the path to the image file with OPENFILEN...
category: imgcodecs,incomplete
low
Critical
360,638,206
opencv
How to modify the camera setting to support more than 8 usb cameras ?
Hi: I try to use 16 cameras for a object tracking task. I used to use the opencv version 2.4.11, which only need to modify the code in module/highgui/src [https://github.com/opencv/opencv/blob/2.4/modules/highgui/src/cap_libv4l.cpp#L260] [https://github.com/opencv/opencv/blob/2.4/modules/highgui/src/cap_v4l.cpp#L2...
priority: low,category: videoio(camera)
low
Minor
360,672,471
rust
Tracking issue for `slice::partition_dedup/by/by_key`
Add three methods to the `slice` type, the `partition_dedup`, `partition_dedup_by` and `partition_dedup_by_key`. The two other methods are based on `slice::partition_dedup_by`. ### Steps / History - [x] Implement the feature as a PR (#54058) - [ ] Stabilization PR ([see instructions on forge](https://forge.rust-l...
T-libs-api,B-unstable,C-tracking-issue,A-slice,Libs-Tracked,Libs-Small
medium
Critical
360,695,238
rust
Only first cap-lints argument is used
`rustc --cap-lints=warn --cap-lints=foo` should give an error on the invalid "foo" passed, but currently this does nothing. It is not completely clear what exact behavior we want on `--cap-lints=allow --cap-lints=forbid` for example, though. Currently this means that there's no way to override Cargo's default beh...
A-frontend,A-lints,T-compiler,C-bug,A-CLI
low
Critical
360,695,893
TypeScript
First class mapped (folded, appended, traversed, etc.) types
## Search Terms Mapped types, dependent typing, higher kinded types, type families ## Suggestion TypeScript currently has baked in support for mapped types, with special syntax for transforming type level maps and type level lists (tuples). Borrowing an example from #26063: ```ts type Box<T> = { value: T }...
Suggestion,In Discussion
low
Critical
360,731,349
opencv
Opencv failed to run 17 tests with release configuration and debug configuration
Environment: Windows Server 2016 + VS2017 Update 5 + opencv master branch latest srouce code Opencv failed to run 17 tests with release configuration and debug configuration. Could you please help take a look at this? Thanks in advance! Steps to reproduce the behavior: 1.git clone https://github.com/opencv/op...
priority: low,category: calib3d,platform: win32
low
Critical
360,767,799
rust
Allow the `Iterator::partition` method to collect in two different collections
The current `Iterator::partition` signature look like this: ```rust fn partition<B, F>(self, mut f: F) -> (B, B) where Self: Sized, B: Default + Extend<Self::Item>, F: FnMut(&Self::Item) -> bool { // ... } ``` Which force the user to collect in two collections of th...
T-libs-api,A-iterators
low
Major
360,783,235
neovim
RPC: Implement an analogue for ch_logfile
Vim 8.0 has a function called `ch_logfile` for logging all of the activity for channels and jobs to a file conveniently. This makes it easy to figure out where some interaction between some plugin and a program, especially a language server, might be going wrong. It would be very useful to have a similar function in Ne...
enhancement,channels-rpc,revisit-at-release,logging
low
Critical
360,784,986
go
time: excessive CPU usage when using Ticker and Sleep
### What version of Go are you using (`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`)? GOARCH="amd64" GOBIN="" GOCACHE="/home/lni/.cache/go-build" GOEXE="" GOFLAGS="" GOHOSTARCH...
Performance,NeedsInvestigation
high
Critical
360,801,349
rust
unused_must_use lint after `write!` fails to note its origin
Consider the following code ([play](https://play.rust-lang.org/?gist=411e153d8d1bc1a04a7538575aa02d31&version=nightly&mode=debug&edition=2015)): ```rust // Uncomment the `cfg` to see expected output noting `#[warn(unused_must_use)]` // #[cfg(without_write)] pub fn encode_json<T: std::fmt::Display>(val: &T, wr: &m...
A-lints,T-compiler
low
Critical
360,819,467
opencv
CUDA failing tests
##### System information (version) - OpenCV => 4.0.0-pre - Operating System / Platform => Windows 64 Bit - Compiler => Visual Studio 2013 (Most likely independent from the compiler) - WITH_CUDA ##### Detailed description Several errors are related to threshold settings, while others are related to recent color ...
bug,test,priority: low,category: gpu/cuda (contrib)
low
Critical
360,858,197
rust
Aarch64-Windows: Cannot build libcore with exception handling enabled
Trying to cross-compile libcore for `aarch64-pc-windows-msvc` fails with (see also https://github.com/rust-lang/rust/issues/54190#issuecomment-421968456): ``` Building stage2 test artifacts (x86_64-pc-windows-msvc -> aarch64-pc-windows-msvc) Compiling term v0.0.0 (file:///C:/msys64/home/mw/2-rust/src/libterm) ...
A-LLVM,T-compiler,O-windows-msvc,O-AArch64
low
Critical
360,877,708
kubernetes
StatefulSet: support resize pvc storage in K8s v1.11
/kind feature **What happened**: With k8s v1.11 the [new feature "Resizing Persistent Volume"](https://kubernetes.io/blog/2018/07/12/resizing-persistent-volumes-using-kubernetes/) was prompted to beta. I tried to update the field "statefulset.spec.volumeClaimTemplates.spec.resources.requests.storage" by inc...
sig/storage,kind/feature
high
Critical
360,904,517
TypeScript
Index signature is assignable to weak type whose properties don't match the signature type
<!-- 🚨 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
360,971,764
rust
Expose `proc_macro::__internal::in_sess` in some manner
Currently to detect whether or not the native `proc_macro` APIs can be used, `proc_macro2` tries to parse, and catches a panic. This isn't the best way to handle it, and involves racy work such as replacing the panic hook to silence the panic logging within the compiler. It'd be nice to expose the `in_sess` method s...
A-macros,T-libs-api,C-feature-request,A-proc-macros
low
Minor
361,003,618
go
x/tools/godoc/vfs: path separator character(s) in FileSystem, Opener interfaces is not specified
### Problem Documentation for [`net/http.FileSystem`](https://godoc.org/net/http#FileSystem) reads: > A FileSystem implements access to a collection of named files. **The elements in a file path are separated by slash ('/', U+002F) characters, regardless of host operating system convention.** However, the [`Fi...
Documentation,NeedsFix,Tools
low
Critical
361,055,762
go
cmd/go: unclear how to cache transitive dependencies in a Docker image
### 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? I'm attempting to populate a Docker cache layer with compiled dependencies based on the contents of `go.mod`. The general recommendation wit...
NeedsInvestigation,modules
high
Critical
361,072,388
TypeScript
Quick fix proposal: declare property for jsdoc types
<!-- 🚨 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. --> From https://github.com/Microsoft/vscode/issues/44824 ## Search Terms - quick f...
Suggestion,In Discussion,Domain: Refactorings,Domain: JavaScript
low
Critical
361,080,818
TypeScript
Spreading private property is wrong
**TypeScript Version:** 3.1.0-dev.20180914 **Code** ```ts class C { constructor(readonly x: number, private readonly y: number) {} } const a = { ...(new C(0, 1)) }; const b = { x: "", y: "", ...a }; b.x.toUpperCase(); // Error (good) b.y.toUpperCase(); // No error (bad) ``` **Expected behavior:** ...
Bug
low
Critical
361,104,466
TypeScript
keyof becoming union of string literal in emitted type definitions
<!-- 🚨 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
361,125,353
go
encoding/json: cannot call UnmarshalJSON on value receiver through interface
[Noticed this inconsistency when poking around the code](https://play.golang.org/p/Yw_2jS_Kr6r): ```go type CustomUnmarshaler struct{ p *bytes.Buffer } func (cu CustomUnmarshaler) UnmarshalJSON(b []byte) error { cu.p.Write(b) return nil } func (cu CustomUnmarshaler) String() string { return fmt.Sprintf("cu...
NeedsFix
low
Critical
361,132,999
pytorch
Mysterious error due to num_workers: 1
While I have found the workaround for below, I thought to log this anyway so others can use some insights. In one of my projects I started getting this error randomly after I did bunch of refactoring: ``` Exception ignored in: <bound method StorageRef.__del__ of <torch.multiprocessing.reductions.StorageRef object a...
module: multiprocessing,triaged
low
Critical
361,154,861
TypeScript
NodeList is no more compatible with Array<Node>. Breaking change in 3.0
**TypeScript Version: Version 3.0.3** **Code** I didn't find any mentioning to this breaking change. This code used to compile in 2.9.2: ```ts /** * Array based implementation of NodeList */ class JSArrayNodeList extends Array<Node> implements NodeList { constructor(items?: Array<Node>) { if (items...
Help Wanted,Docs
low
Minor
361,163,964
pytorch
set num_workers on the dataloader make the jupyter kernel crash at the almost end of the epoch
I had code that was running perfectly and I decided to update pytorch from 0.4.0 to 0.4.1 now the program crash close to the end to the first epoch if num_workers is set. How to fix that? cc @SsnL @VitalyFedyunin @ejguan
module: dataloader,triaged
low
Critical
361,169,683
pytorch
[caffe2]Can i build caffe2 library only for cpu inference purpose and reduce the binary size?
I want to deploy caffe2 on mobile device(including Android & IOS), but i found that the binary size is **too large** for my app. I only use a little operators on my net(convolution and forward calculation), how can I build caffe2 just including the inference operators i wanted to **reduce the size of library**? It...
caffe2
low
Minor
361,186,809
pytorch
DataParallel: Parallel_apply assert len(modules) == len(inputs) AssertionError
Hello, I am using Pytorch version 0.4.1 with Python 3.6. I am adapting the transformer model for translation from this site (http://nlp.seas.harvard.edu/2018/04/03/attention.html). The model runs without error with single gpu. However, the AssertionError happens when I use DataParallel for the model. How should I de...
oncall: distributed,triaged
low
Critical
361,223,965
flutter
Dependency Injection for Flutter
I would love to have something similar to Dagger for flutter. I notice https://github.com/google/inject.dart but apparently it will not get any real support/maintenance from the team even if it use internally at Google. For me it worth putting this repo open source as there no equivalent currently (or not as powerfu...
c: new feature,framework,would be a good package,c: proposal,P3,team-framework,triaged-framework
high
Critical
361,227,648
TypeScript
Compiler Errors TS1110 and TS2345 with integer type pattern
**TypeScript Version:** 3.0.3 Explicitly marked positive integers are not recognized in a type pattern: ```ts foo(direction: -1 | 1 | -2 | +2) { } ``` ![image](https://user-images.githubusercontent.com/5341447/45680156-7c238500-bb3a-11e8-8855-bd11f4b639b4.png) Likewise, calling it using a perfectly le...
Suggestion,In Discussion,Domain: Literal Types
low
Critical
361,264,781
flutter
I am not able to use onDestroy() lifecycle hook in my flutter application? Can you tell me what is the workaround to this?
c: new feature,framework,engine,P3,team-engine,triaged-engine
low
Major
361,280,378
kubernetes
Forbidden error returned from dynamic client is not typed correctly
As a user who didn't have permission to watch a CRD in a namespace, I got the correct error from the server, but the dynamic client didn't correctly report the error. ``` I0918 13:51:19.668687 78071 request.go:897] Response Body: {"kind":"Status","apiVersion":"v1","metadata":{},"status":"Failure","message":"prowj...
kind/bug,area/client-libraries,sig/api-machinery,help wanted,lifecycle/frozen
low
Critical