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 |
|---|---|---|---|---|---|---|
389,749,252 | rust | Recursive call passes `cargo check` but fails with `cargo build` | Hi Rust team,
Thank you so much for the great language.
## Problem
Today I encountered a strange behavior of Cargo, 2018 edition.
This code passes `cargo check`, but it fails with `cargo build`.
```rust
fn repeat(n: i64, f: impl Fn()) {
if n > 0 {
f();
repeat(n - 1, &f);
}
}
... | A-closures,T-lang,A-specialization,A-impl-trait | low | Critical |
389,820,766 | rust | Different compiler versions disagree on whether failure_derive macro is used or not | This leads to some compatibility issues. The code I have now compiles on 1.25.0 and 1.28.0 but reports an unused ```[macro_use]``` import for 1.31.0. https://travis-ci.org/stratis-storage/devicemapper-rs/jobs/466549505. Is this a bug in Rust, or something about the behavior of the ```failure_derive``` crate?
Duplica... | C-enhancement,A-diagnostics,T-compiler | low | Critical |
389,839,158 | go | runtime: incorrect constant value for PROCESS_ALL_ACCESS | https://github.com/golang/go/blob/01e072db5d26c224dfbe7763a5b94ab23c163983/src/runtime/syscall_windows_test.go#L815
From winnt.h we can see that if we are running on a version of Windows greater than Vista, `0xFFFF` should be or-ed with the `STANDARD_RIGHTS_REQUIRED` and `SYNCHRONIZE` flags.
_winnt.h#L11279_
```... | Testing,NeedsInvestigation,compiler/runtime | low | Minor |
389,871,389 | flutter | `flutter doctor` should report whether the Flutter install dir is clean | If the Flutter install directory contains any changes `flutter doctor` or `flutter doctor -v` should report that.
It would make it easier for support questions that are caused by inadvertently modified files in the Flutter install dir.
I created https://github.com/flutter/flutter/wiki/Workarounds-for-common-issue... | c: new feature,tool,t: flutter doctor,P2,team-tool,triaged-tool | low | Major |
389,931,100 | pytorch | In-place operations on `.data` or `.detach()` of sparse tensor doesn't update the original tensor | Previously, if we change the tensor metadata (e.g. sizes / strides / storage / storage_offset) of a derived tensor (i.e. tensors created from Python `tensor.data` or Python/C++ `tensor.detach()`), those metadata in the original tensor will also be updated. However, after https://github.com/pytorch/pytorch/pull/13827 is... | module: sparse,triaged | low | Critical |
389,957,581 | You-Dont-Know-JS | this & Object Prototypes - Chapter 3: Symbol.iterator enumerablility | In the end of the chapter there's an example and statement:
```js
var myObject = {
a: 2,
b: 3
};
Object.defineProperty( myObject, Symbol.iterator, {
enumerable: false,
writable: false,
configurable: true,
value: function() {
var o = this;
var idx = 0;
var ks = Object.keys( o );
return {
... | for second edition | low | Minor |
389,958,495 | create-react-app | Add a way to specify an alternate tsconfig for production builds | ### Is this a bug report?
No. This is a feature request. Our team is now using CRA with TS and it is great! One thing we can't seem to find is any information on is having different TS compiler settings when doing a production build. Simply adding a `tsconfig.prod.json` appears to have no effect. I can't seem to fin... | issue: proposal | medium | Critical |
389,980,541 | TypeScript | PluginModule.onConfigurationChanged not called when plugin config in tsconfig.json changes | <!-- π¨ 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,Domain: TSServer,Experience Enhancement | low | Critical |
390,027,253 | angular | Support ::slotted() in ViewEncapsulation.Emulated | # π feature request
This was discussed previously in #11595 and (incorrectly) closed as complete by @robwormald.
### Relevant Package
@angular/core
### Description
::slotted() is part of the Shadow DOM [working draft](https://drafts.csswg.org/css-scoping/#slotted-pseudo) (see also [MDN](https://develope... | feature,action: discuss,area: core,state: has PR,core: CSS encapsulation,feature: under consideration | medium | Critical |
390,027,426 | go | cmd/go: 'go mod download' of a replaced module downloads the go.mod for its replacement | `go mod download` of a specific version of a module should download *only* that module.
Today, if that version happens to have a replacement, `go mod download` also downloads the `go.mod` file (but not the `.zip` file) for its replacement.
<details>
```
$ go mod init golang.org/issue/scratch
go: creating new... | NeedsFix,GoCommand,modules | low | Minor |
390,102,220 | node | http2: streams can emit 'close' before 'end' and/or 'finish' | Based on https://github.com/nodejs/node/commit/83ec33b9335a7140c1f8b46357303ff7a8122a0d
> My understanding is that ideally, streams
> should not emit `'close'` before `'end'` and/or `'finished'`, so this
> might be another bug, but changing this would require modifying tests
> and almost certainly be a breaking ... | http2 | low | Critical |
390,127,329 | pytorch | torch.save does not work if nn.Module has partial JIT. | ## π Bug
## To Reproduce
Steps to reproduce the behavior:
```python
import torch
import torch.nn as nn
class Sub(torch.jit.ScriptModule):
def __init__(self):
super(Sub, self).__init__()
self.weight = nn.Parameter(torch.randn(2))
@torch.jit.script_method
def forward(... | oncall: jit | low | Critical |
390,154,905 | TypeScript | Docs: Advanced Types section "Interfaces vs. Type Aliases" is contradictory | **TypeScript Version:** N/A
**Search Terms:**
label: Docs "Advanced Types" "Interfaces vs Type Aliases"
I've been trying to understand the differences between interfaces and type aliases, and I've found contradictory information on the ["Advanced Types"](https://www.typescriptlang.org/docs/handbook/advanced-typ... | Docs | low | Minor |
390,175,244 | You-Dont-Know-JS | ch6: Benchmarking | Use console.time() | https://github.com/getify/You-Dont-Know-JS/blob/master/async%20%26%20performance/ch6.md#benchmarking
You could use the built-in `console.time()` and `console.timeEnd()` in this benchmarking example, as the `console` offers many more options than just `log()`. https://developer.mozilla.org/en-US/docs/Web/API/Console/... | for second edition | low | Major |
390,231,186 | pytorch | Different implementations of upsampleBilinear between pytorch and caffe2 | ## π Bug
<!-- A clear and concise description of what the bug is. -->
First, this is not actually a bug, but when one uses pytorch to train a model and then convert the model to onnx which later will be used to do inference by Caffe2, then different result just happened!
## To Reproduce
Let's take a look at what... | caffe2 | low | Critical |
390,312,140 | rust | False dead_code warning on struct pattern match | The following code will emit a `dead_code` warning ([playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=5c94d6fd6a0bf1512d68495aedbd1b82)):
```rust
use std::mem;
fn main() {
struct Value {
a: i32,
b: i32,
};
let Value { a, b } = unsafe { mem::ze... | A-lints,T-compiler,C-bug | low | Critical |
390,340,911 | TypeScript | Remote declaration file | ## Search Terms
- Remote Reference
- Remote Declaration
- Declaration URL
## Suggestion
Being able to reference .d.ts files from a remote location
## Use Cases
Reference .d.ts files which can match with import "http://example.com/Component1"
## Examples
```typescript
/// <referance path="http://e... | Suggestion,Awaiting More Feedback | medium | Critical |
390,347,313 | flutter | Flutter Text widgets should have multiple wrapping modes | See issue #24399
The Unicode spec (http://unicode.org/reports/tr14/#QU) describes a line wrapping method that attempts to accommodate the broadest language requirements possible; however, the wrapping at times makes no sense for English punctuation. For example, the Unicode standard specifies that a single whitespac... | c: new feature,engine,a: typography,P2,team-engine,triaged-engine | low | Major |
390,381,814 | flutter | Reset CupertionTimerPicker duration | I would like to reset current duration in CupertionTimerPicker by clicking on a button, but it seems that there is no way to do that.
Are you going to add this possibility or is there any workaround? | c: new feature,framework,f: date/time picker,f: cupertino,P2,team-design,triaged-design | low | Minor |
390,435,174 | flutter | [google_maps_flutter] Cannot set map bounds (cameraTargetBounds). | Setting the map by providing bounds does not work. It is always zoomed out.
It should automatically adjust zoom according to the map bounds.
Currently, in the code, the bounds are set to new york.

### Code... | customer: crowd,p: maps,package,team-ecosystem,has reproducible steps,P2,found in release: 2.0,found in release: 2.2,triaged-ecosystem | low | Critical |
390,437,328 | go | cmd/doc: show which version of Go introduced symbols | #5778 introduced this feature in x/tools/cmd/godoc, but it is missing in cmd/doc, which replaces the godoc command line mode.
/cc @dmitshur | help wanted,NeedsFix | low | Minor |
390,444,532 | pytorch | Update third_party/googletest - Ability to skip tests in GTEST | At the moment, all test skipping in open source in gtest is done as some variation of:
```
if (skipCondition) return;
```
This is bad, because it means we report skipped tests as "passed". This makes it harder to tell if a test ran or not.
Inside fbcode, we have the convention that:
```
GTEST_FATAL_FAI... | module: tests,triaged,module: third_party | low | Critical |
390,466,579 | pytorch | Use std::variant to represent C++ side enumerations (with binding support) | Today, we have an awkward problem in PyTorch, where we have no good way of representing enumerations. At the Python level, we prefer to represent enumeration options as strings (as they are convenient to type, and Python has no typing guarantees anyway. However, in C++, it is not that great to represent enumerations a... | module: cpp,triaged | low | Major |
390,466,767 | TypeScript | allow wildcards in getSupportedCodeFixes | I'm developing a LanguageService Plugin for a linter that creates fixable Diagnostics. Unfortunately I don't know the codes and if they are fixable before they actually occur.
AFAICT VSCode handles the case where a Diagnostic's code is supposed to be fixable and `getCodeFixes` returns no fix.
I'm proposing some k... | Suggestion,In Discussion,API | low | Minor |
390,466,824 | TypeScript | --noImplicitAny codefixes infer anonymous object types despite appropriate interfaces in (or out of) scope | **TypeScript Version:** 3.3.0-dev.20181212
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** noimplicitany infer code fix codefix quick suggested
**Code**
```ts
interface IBox {
x: number;
y: number;
}
const shiftBox = (box) => {
... | Suggestion,Awaiting More Feedback | low | Minor |
390,474,048 | TypeScript | Warn when JSDoc type cast misses parentheses | <!-- π¨ 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: JSDoc | low | Critical |
390,476,054 | TypeScript | Low readability when type casting by JSDoc | <!-- π¨ 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: JSDoc | low | Critical |
390,487,913 | rust | Vec::append should swap if the lhs is empty | Here's a reasonable pattern:
```
let mut results = Vec::new();
for ... {
results.append(new_results);
}
```
On the first append, we can just swap ourselves with the rhs, avoiding an allocation and copy. This is annoying for our users to remember to do, and is basically free to support given how much work t... | I-slow,T-libs-api | low | Minor |
390,505,460 | go | testing: t.FailNow() in a deferred function masks test panic | When a test panics, any deferred functions will still process allowing the test to properly clean up. If a deferred function executes `t.FailNow()` the test output will not include any information on the panic or the panic's goroutine trace.
An example is shown here: https://play.golang.org/p/gWPDVluKaST
Despite t... | NeedsInvestigation | low | Major |
390,510,958 | vscode | Eager evaluation feature like Chrome debugger | <!-- Please search existing issues to avoid creating duplicates. -->
<!-- Describe the feature you'd like. -->
One amazing feature provided chrome debugger, is eager evaluation, see this for more details: https://developers.google.com/web/updates/2018/05/devtools#eagerevaluation
I am not sure if it is easy to su... | feature-request,debug | low | Critical |
390,535,257 | go | testing: Logf not reported outside of inner benchmark run | Applying the following patch illustrates the problem:
```Diff
diff --git a/src/go/format/benchmark_test.go b/src/go/format/benchmark_test.go
index 7bd45c0e95..62131e0977 100644
--- a/src/go/format/benchmark_test.go
+++ b/src/go/format/benchmark_test.go
@@ -58,6 +58,7 @@ var tests = []struct {
}
func Benc... | NeedsInvestigation | low | Minor |
390,559,167 | pytorch | Maybe a bug when using DataParallel | ## π Bug
There is (maybe) a bug when using DataParallel which will lead to exception.
If the sample count is not divisible by batch_size, the last batch (sample count is less than batch_size) will have some interesting behaviours.
For example,
If I have 4 GPUs and the batch_size is 32.
When the input dat... | triaged,module: data parallel | low | Critical |
390,574,985 | godot | Strange script editor "jumps" when scrolling after changing position and size of editor | **Godot version:**
3.1 c7cef29
**OS/device including version:**
Windows 10
**Issue description:**
When I place window at left side of monitor and I scroll page then everything works smoothly, but when I change editor position(and/or its size), then scrolling, even very little, cause that script editor jumps ... | enhancement,topic:editor | low | Minor |
390,623,295 | vscode | Antimalware Service Executable is still spiking when some project is loaded | Problem still alive -> #63070
When Im opening a some project under the git, Antimalvaware still spiking :( http://files.rjwebdesign.cz/i2/20181213-115016.png
And yes, i updated yesterday release (1.30)
@roblourens | bug,upstream,search,confirmed | medium | Critical |
390,642,346 | pytorch | cudnn not found | When I build from source on tag v1.0.0 it doesn't detect cudnn. I use arch linux and in the latest release arch has moved cudnn to standard locations (/usr/lib and /usr/include).
When I run the following, cudnn is not detected:
```
python setup.py install
```
But when I run it with the following cudnn is detecte... | module: build,module: cudnn,triaged,actionable | low | Critical |
390,686,994 | rust | Implement AsRawFd and FromRawFd for ReadDir | Most unixes provide `dirfd()`, which can be used to get a file descriptor from `struct DIR *`.
The two errors are `EINVAL` (`dirfd` called on invalid pointer), which can't occur in correct code, and `ENOTSUP` (not supported by implementation), which doesn't occur on most implementations.
Most unixes also provide ... | T-libs-api,C-feature-request | low | Critical |
390,742,402 | go | x/text/cmd/gotext: gotext extract fails on type incompatibility issues | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.11.2 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
This is the latest release today.
### What operating syste... | NeedsInvestigation | low | Critical |
390,775,896 | material-ui | [TextField][InputAdornment] InputLabel should not start shrunken if TextField has an InputAdornment | <!--- Provide a general summary of the issue in the Title above -->
<!--
Thank you very much for contributing to Material-UI by creating an issue! β€οΈ
To avoid duplicate issues we ask you to check off the following list.
-->
<!-- Checked checkbox should look like this: [x] -->
- [x] This is not a v0.x ... | component: text field,design: material you | high | Critical |
390,793,457 | kubernetes | External provisioning problems | <!-- Please only use this template for submitting enhancement requests -->
I did more investigations in issue https://github.com/kubernetes/kubernetes/issues/71928#issuecomment-447065491, I think there are two problems:
- scheduler has no way to notify external provisioner to retry provisioning on related objects... | sig/storage,kind/feature,lifecycle/frozen | low | Critical |
390,822,031 | go | net: TestUDPZeroBytePayload is potentially flaky on iOS | Examples:
https://build.golang.org/log/4801b71522ac597735f5dfc9e3de0a5177f1b014
https://build.golang.org/log/ac45684f4eeb9337972d8489ff01b93bf69adef2v
https://build.golang.org/log/bef89502b0ebe850c741f3e69ed9e01d7b497c5a
```
--- FAIL: TestUDPZeroBytePayload (0.11s)
udpsock_test.go:369: read udp4 127.0.0.1:4... | Testing,OS-Darwin,NeedsInvestigation,mobile | low | Major |
390,845,955 | go | runtime/debug: document BuildInfo.Main.Version == "(devel)" | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version devel +571d93e977 Thu Dec 13 15:08:48 2018 +0000 darwin/amd64
</pre>
### What operating system and processor architecture are you using (`go env`)... | Documentation,NeedsInvestigation,modules | high | Critical |
390,860,655 | puppeteer | Intercept target creation | In many ways, users want to intercept targets being created to attach and set them up.
Usecases:
- when popup is getting opened, attach to it and enable request interception
- when a link click opens a new page, set proper device emulation before website is getting loaded
We might be able to do this with CDP us... | feature,chromium,chrome | high | Critical |
390,873,460 | go | wiki: CodeReviewComments change | Is it okay to add an ImportsBlank section to the CodeReviewComments with the following text?
## ImportBlank
Packages that are imported only for their side effects (using the syntax `import
_ "pkg"`) should only be imported in the main package of a program, or in tests
that require them. | Documentation,NeedsDecision | low | Major |
390,873,584 | godot | Physics is not deterministic when using time scale. | Win10 64bit d030c17
Demo Project (Timescale exposed as an export var in the scene root.): [3.1 Timescale Determinism Issue.zip](https://github.com/godotengine/godot/files/2677839/3.1.Timescale.Determinism.Issue.zip)
I have been experimenting with Engine.time_scale and noticed the results in the built-in physics c... | discussion,topic:physics | low | Critical |
390,874,600 | rust | mem::size_of::<T> not const - use of type variable from outer function | The following CDR-serde implementation defines functions to serialize data-types such as u16, u32 etc. It is using an abstract function to align write-position, to match with multiple of mem::size_of<T>(), where T is a primitive int or float type.
As the bytesize is known at compile time, I would like to declare the... | A-diagnostics,T-compiler,C-bug,A-const-eval | low | Critical |
390,876,075 | godot | Kinematic bodies having collision normal problems against other Kinematic bodies. | <!-- 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 using non-official build. -->
9c3293b844fd5fa524778b519c2e0ce6ff495c19
**OS/device including version:**
<!-- Specify GPU... | bug,confirmed,topic:physics | low | Major |
390,888,473 | go | x/build: trybots should include all platforms that can contribute release-blockers | If a build failure for a given platform P can be considered a release-blocker (such as #29221), then trybots should also run on P. Otherwise we have to rely on the actual build failure before we can fix the issue.
Example: In #29221, some newly added math tests failed on s390x, yet the trybots didn't notice.
If i... | Builders,NeedsFix | low | Critical |
390,905,267 | TypeScript | Errors on non-callable unions should be more specific | While working on #29011 I realized that the error we produce for unions of things which look callable but for which we cannot synthesize a signature for are lackluster. We report an error like:
```
Cannot use 'new' with an expression whose type lacks a call or construct signature.
```
when we could do better and sa... | Suggestion,Domain: Error Messages,Experience Enhancement | low | Critical |
390,920,598 | rust | u128 atomic compare_and_set (cxchg) emits linker error | On Rust 1.32.0 nightly for both x86_64-pc-linux-gnu & x86_64-pc-windows-gnu. `undefined reference to '__sync_val_compare_and_swap_16'` while also failing to link to libatomic if provided. Example: https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=9aeb9e2d8ce7e5b2cac9cdeaadd03ee2 | A-linkage,T-compiler,C-bug,A-intrinsics,requires-nightly,A-atomic | low | Critical |
391,004,241 | rust | libcompiler_builtins and libprofiler_builtins for aarch64-pc-windows-msvc contain x86 objects | I was trying to look at the code generated by nightly rust for arm64 windows, which turned up to not be supported by my binutils, but in the middle of the otherwise empty `objdump -d` output, I got the surprise to see x86 assembly. As it turns out, several object files embedded in libcompiler_builtins and libprofiler_b... | O-windows-msvc,O-AArch64 | low | Major |
391,023,032 | go | proposal: cmd/go/v2: prohibit in-package tests from extending a package's API | Currently in-package tests are free to add exported identifiers to the package that they are testing.
Specifically an in-package test:
- can define new variables
- can define new types
- can implement methods on non-test types
This makes tooling harder, because any given package can have several possible va... | v2,Proposal | medium | Critical |
391,052,673 | flutter | Programmatically show keyboard when scanner is connected | Hi.
I want to use a bluetooth barcode scanner to automatically fill the fields in my flutter app. The problem is that it prevents a system keyboard from appearing when scanner is paired with a device. I have two fields: one to scan barcode and second to input some text, and I can not type anything in the second field ... | a: text input,c: new feature,framework,engine,P2,team-engine,triaged-engine | low | Minor |
391,061,197 | angular | Provide ControlValueAccessors for libraries other than @angular/forms | # π feature request
### Relevant Package
This feature request is for @angular/forms
### Description
The infrastructure surrounding `ControlValueAccessor` is widely adopted by component libraries, but currently the built-in ones are hardcoded to only be provided for `ngModel`, `formControl` and `formControlName... | feature,state: blocked,effort2: days,state: Needs Design,freq2: medium,workaround2: non-obvious,area: forms,risk: low,feature: under consideration,core: host directives | medium | Major |
391,116,073 | go | net/url: misleading error message when url has a leading space | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.11.3 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture a... | NeedsFix | medium | Critical |
391,189,157 | flutter | Provide an API in the Flutter tool to make it extensible | Edit by @christopherfujino a design doc for this proposal is at https://flutter.dev/go/flutter-tool-extension-api
----
Right now, the Flutter tool is somewhat extensible by wrapping `main()` in a project-specific `main()` method, that uses combinations of `AppContext.run()` and the top-level `run()` function to o... | c: new feature,tool,customer: crowd,P2,team-tool,triaged-tool | low | Critical |
391,209,453 | flutter | update_dart_sdk.ps1 should be more graceful about download failure (and mention China) | `update_dart_sdk.ps1` should do the same thing as `update_dart_sdk.sh` in terms of this part of the latter script:
```sh
curl --continue-at - --location --output "$DART_SDK_ZIP" "$DART_SDK_URL" 2>&1 || {
echo
echo "Failed to retrieve the Dart SDK from: $DART_SDK_URL"
echo "If you're located in Chin... | tool,platform-windows,a: china,P2,team-tool,triaged-tool | low | Critical |
391,218,542 | react | Warning should appear when versions of react and react-dom do not match | **Do you want to request a *feature* or report a *bug*?**
Request a feature
**What is the current behavior?**
If the version of react and react-dom do not match, some features fail silently. See this issue for example: https://github.com/reduxjs/react-redux/issues/1125
In this issue, the new Context API wa... | Type: Discussion | low | Critical |
391,235,741 | TypeScript | Rename a symbol of a named export: Do not create export alias | - VSCode Version: 1.30
- OS Version: Win 10
When I rename a symbol which is a named export in a module, then there is just an alias created in the module `export` (VS Code 1.30). What I would expect is that the symbol is renamed in the module export AND all in all modules that are importing it (that is the bevavior... | Suggestion,In Discussion | medium | Critical |
391,253,801 | go | html/template: ambiguous errors when style tag is not closed | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.11.3 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture ar... | NeedsInvestigation | low | Critical |
391,294,501 | rust | For *-apple-ios targets, if license agreement is not agreed to (yet), better behaviour is necessary | Currently if one attempts to use `*-apple-ios` targets right after XCode is installed, it will appear that the target does not exist. This happens because `xcrun` says something about license, sudo and whatnot.
We should have a better behaviour here.

and the generated assembly:
<details><summary>
<pre>
varint_bench_test.go:14 0x10f07ee 488b4c2430 MOVQ 0x30(SP), CX
varint_bench_test.g... | Performance,NeedsInvestigation,compiler/runtime | low | Major |
391,307,900 | go | net: UnixListener blocks forever in Close() if File() is used to get the file descriptor | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.11.3 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes, it also reproduces with the latest tip.
### What operating system and processor architecture are you using (`go env`)?
<details><su... | help wanted,NeedsInvestigation | low | Critical |
391,318,976 | TypeScript | TSServer navtree β Way to differentiate function declarations from function expressions | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.3.0-dev.20181214
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
- tsserver
- navtree
**Problem**
For https://github.... | Suggestion,In Discussion,API,Domain: TSServer | low | Minor |
391,319,488 | pytorch | Gather backward is faster than integer indexing on GPU | ## π Feature
When x is a tensor of shape (N, D) and idx is a tensor of indices of shape K, the backward pass of x[idx] is much slower than the equivalent operation implemented using gather. Here is a benchmarking script:
https://gist.github.com/jcjohnson/b03a0275e64681bb7587bbc7399a645a
On a P100 GPU with PyT... | module: performance,triaged,module: determinism | medium | Major |
391,323,612 | TypeScript | querySelector return type could be more specific for compound selectors | ## Search Terms
querySelector, return, type, selector
## Suggestion
This issue closely follows #8114, which applies only to **type selectors** ("single-element selectors"). Related to #12568.
The return type of [ParentNode#querySelector](https://developer.mozilla.org/en-US/docs/Web/API/ParentNode/querySelec... | Suggestion,In Discussion,Domain: lib.d.ts | medium | Critical |
391,330,514 | pytorch | [caffe2] controlled forward pass | ## β[caffe2] I am in need of running a controlled forward pass for a model I am working on. As in execute a layer collect its output do some manipulation on it and feed the data to the next layer.
How do we do this in caffe2 ? caffe does allow caffe.forward(start=<>, end=<>) python API. Can we do the same in caffe2... | caffe2 | low | Minor |
391,331,330 | TypeScript | Improve signature help when completing object argument | From https://github.com/Microsoft/vscode/issues/56270
<!-- π¨ 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 ... | Suggestion,Needs Proposal,Domain: Signature Help | low | Critical |
391,344,700 | pytorch | [Feature Request] cdist: pairwise distances between two sets of tensors with batch mode | Now we've already had [F.pdist](https://pytorch.org/docs/stable/nn.html?highlight=pdist#torch.nn.functional.pdist), which computes pairwise distances between each pair in **a single set** of vectors.
However, in retrieval problems, we often need to compute the pairwise distances between each pair consisting one samp... | triaged,module: batching,function request,module: distance functions | medium | Major |
391,353,578 | pytorch | err:torch.nn.CrossEntropyLoss | pytorch 1.0
DOC err:torch.nn.CrossEntropyLoss
if weight=NONE
loss(x,class)=βx[class]+log(jββexp(x[j])) ,The result is correct.
if weight!=NONE
loss(x,class)=weight[class]*(βx[class]+log(jββexp(x[j]))) ,The result is wrong?
```
import torch
import torch.nn.functional as F
a=[[-5.,-6.],[3.,2.],[3.,2.]]
c=[1,0... | module: docs,triaged | low | Minor |
391,355,402 | pytorch | MultiGPU for gru | ## π Bug
<!-- A clear and concise description of what the bug is. -->
During runtime of GRU under multi-GPU environment, there is a RuntimeError: Expected hidden size (3, 64, 12), got (3, 16, 12) where the first, second, and third arguments are the number of GRU layers, batch size and number of hidden units resp... | module: rnn,triaged,module: data parallel | low | Critical |
391,359,779 | TypeScript | Separate type application from function application | As discussed in #28931, currently the type application for the function with generic parameters is tied to that function application.
Specialize the value of the function with generics is only possible during the call. So the following compiles fine:
```ts
function id<V> (v : V) { return v }
const some : Date ... | Suggestion,Awaiting More Feedback | medium | Major |
391,366,235 | TypeScript | Vscode suggests wrong ts auto import path with js extension after having a json import | <!-- π¨ 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,Domain: TSServer | medium | Critical |
391,389,271 | go | runtime: exceeded thread wakeup limitation on iOS | We found my gomobile iOS application crash with the below message:
```
Event: wakeups
Action taken: none
Wakeups: 45001 wakeups over the last 64 seconds (704 wakeups per second average), exceeding limit of 150 wakeups per second over 300 seconds
Wakeups limit: 45000
Limit duration: 300s
... | mobile,compiler/runtime | medium | Critical |
391,393,835 | TypeScript | Document quick fix (or whatever it's officially called) | <!-- π¨ 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 | low | Critical |
391,406,484 | rust | rustc should output a warning when it encounters problems locating cross-crate sources for error messages | See #53081 - currently it is hard to diagnose what path it is actually looking for.
Problems might include:
- can't find the file
- the file has the wrong hash.
| C-enhancement,A-diagnostics,T-compiler | low | Critical |
391,410,049 | go | x/crypto/ssh: client requires first hostkey to match, knownhosts doesn't expose available key types | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.11.3 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
This is the latest docker release (yes)
### What operating ... | NeedsFix | low | Critical |
391,411,541 | godot | [Bullet] Rigidbody doesn't appear to apply rotation | Godot 3.1 alpha calinou 6f9aa87 (downloaded 12/4/2018) Windows 10 64-bit
I am applying a rotation on my rigidbody. It appears correct in the viewport. When I actually play my project, the rotation seems to only apply to the collisionshape, but not the mesh. I am attaching a sample project.
You will see the viewpo... | bug,confirmed,topic:physics | low | Minor |
391,412,363 | rust | prelude path should not appear in error messages | (Split off from discussion on #56188.)
There are a few places where the path `std::prelude::v1` appears in diagnostic messages.
```
zmd@ReflectiveCoherence:~/Code/rust/src/test/ui$ ag std::prelude
[...]
27 matches
9 files contained matches
```
I argue that this is bad because the point of the prelude is t... | C-enhancement,A-diagnostics,T-compiler,D-papercut | low | Critical |
391,413,355 | godot | EditorImporterTexturePlugin to tweak how textures are imported | As discussed with @reduz on IRC, there could be a EditorImporterTexturePlugin API to allow tweaking the texture import process, and do things like changing how mipmaps are computed, before compression takes on.
The initial use case I have is the use of a splatmap with a repeating texture. Over the distance, it looks... | enhancement,discussion,topic:plugin,topic:import | low | Minor |
391,414,878 | godot | Changes to shader parameters are not taken into account with Sync Scene Changes | **Godot version:**
official Godot 3.1 alpha3 windows10 x64
**OS/device including version:**
Acer Aspire 114-31 Intel HD 500 driver 25.20.100.6326
**Issue description:**
I`m not sure if this a bug but shader parameters in Inspector are not updated in running game while "Sync Scene Changes" under Debug menu ... | discussion,topic:editor | low | Critical |
391,417,307 | TypeScript | tsserver: deprecate getSupportedCodeFixes, add fixable property to Diagnostic | This proposes an alternative to #29010. Making `getSupportedCodeFixes` proxy-able by plugins means the client has to request the list of fixable error codes for each file - and theoretically everytime the program is updated (because the configuration of a plugin could have changed).
Could we instead just add a new p... | Suggestion,In Discussion,API,Domain: Quick Fixes | low | Critical |
391,439,514 | go | cmd/compile: use bit tests for binary search in type switches | Consider a large type switch with constant (non-interface) cases, like:
```go
package p
func f(e interface{}) int {
switch e.(type) {
case int:
return 0
case bool:
return 1
case byte:
return 2
case uint16:
return 3
case string:
return 4
}
return 5
}
```
The generated code does... | Performance,compiler/runtime | low | Minor |
391,440,595 | godot | Export browse can open in non-existent folder | Godot 3.1 alpha 3
Windows 10 x64
If you export a project into a folder, and then delete that folder, then try to export the project again, then browse within the export dialog will open into the folder that had been deleted. If you then try to export the project within this non-existent folder, Godot fails out with... | enhancement,topic:editor,usability | low | Minor |
391,443,595 | neovim | Messages related to `Ctrl-X` are displayed on stderr | Messages related to `Ctrl-X` are displayed on stderr always.
Given:
```vim
new
normal! iword1
normal! oword2
function! s:close_pum(...)
call feedkeys("\<c-e>\<esc>")
endfunction
call timer_start(10, 's:close_pum')
call feedkeys("oword\<C-p>", 'x!')
```
```
% nvim -u t-nvim-displays-ctrlx-msg.vi... | io,system,display | low | Major |
391,445,213 | godot | Godot crashes when trying creating an import file whose name would be longer than the filesystem would allow | Godot 3.1 alpha 3
Windows 10 x64
Windows apparently won't allow file names to be longer than a set length. Godot automatically creates import files in the .import directory when an image is found in the project directory. If the file that would automatically be created would have a file name longer than Windows wou... | bug,platform:windows,discussion,confirmed,topic:import | low | Critical |
391,448,924 | godot | Code completion in get_node or $ doesn't work for sibling or higher nodes | Godot 3.1 alpha 3
Windows 10 x64
When using the `get_node` function, the code editor will offer autocomplete for all the nodes descending from the node that possesses the script in the scene. This is nice, but no code completion is offered for sibling nodes or further up the ancestry.
For example
`get_node("../... | enhancement,discussion,topic:gdscript,topic:editor,usability | low | Minor |
391,450,565 | flutter | Async task is skipped when the assert fails | I use [Firebase Core](https://pub.dartlang.org/packages/firebase_core#-readme-tab-) and spot one potential issue (maybe) about [FutureBuilder](https://docs.flutter.io/flutter/widgets/FutureBuilder-class.html) and [Firebase Core](https://pub.dartlang.org/packages/firebase_core#-readme-tab-) itself.
When async is comb... | framework,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-framework,triaged-framework | low | Major |
391,461,282 | go | os: consider syscall.EEXIST in os.IsExist | Note that I'm not very categorical in my issue title, but this debugging of a [subtle Afero file system bug](https://github.com/spf13/afero/pull/190) has given me enough gray hairs to at least deserve an issue/discussion.
The program below runs fine on *nix but fails on Windows (it compiles fine):
```go
package ... | OS-Windows,NeedsInvestigation | low | Critical |
391,467,578 | TypeScript | The type of Document.documentElement could be SVGSVGElement | Currently, the type of `Document.documentElement` is `HTMLElement`:
https://github.com/Microsoft/TypeScript/blob/4d74f67325d305f52a2b00b4f30b5a4f3210c649/lib/lib.dom.d.ts#L4124
But it is possible for a `Document`βs `documentElement` property to be of type `SVGSVGElement` which is not a subtype of `HTMLElement`:
... | Suggestion,Revisit | low | Major |
391,479,960 | pytorch | index_add_ with scalar values instead of tensors | Hi, I was wondering whether we could update functions like `index_add_(dim, index, tensor)` so that the third argument (`tensor`) can also be a scalar value? | triaged,enhancement,module: advanced indexing | low | Minor |
391,488,678 | angular | Expose matched component inside EmptyOutletComponent | <!--π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
Oh hi there! π
To expedite issue processing please search open and closed issues before submitting a new one.
Existing issues often contain information about workarounds, resolution, or progress updates.
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
οΏ½... | type: bug/fix,freq3: high,area: router,state: has PR,state: confirmed,P3 | medium | Major |
391,497,942 | rust | OOM on MIPS 32-bit | We previous successfully did a native-compilation of mips rustc 1.30.0 here:
https://buildd.debian.org/status/fetch.php?pkg=rustc&arch=mips&ver=1.30.0%2Bdfsg1-2%2Bb1&stamp=1541331217&raw=0
It was compiling itself using a previously-cross-compiled 1.30.0 rustc mips, cross-compiled from amd64. Only 14 tests failed ... | C-enhancement,O-MIPS,T-compiler,I-compilemem | low | Critical |
391,506,336 | TypeScript | Type JS's `arguments` object based on function parameters | ## Search Terms
type "arguments" object parameters
## Suggestion
Within a function `x`, the type of the `arguments` object should be `Parameters<typeof x> & IArguments`, with `undefined` removed from the type of any entries in `Parameters<typeof x>` if that parameter has a default value.
## Use Cases
```
... | Suggestion,In Discussion | low | Critical |
391,509,933 | pytorch | possible unsafety in torch.distributions.kl_divergence for Bernoullis | ## Note
This might be my first pytorch issue.
## π Bug
torch.distributions.kl_divergence seems numerically unsafe for Bernoullis. In the following script, I compare with a hand-written divergence between Bernoullis that makes sure to add epsilon before log()'ing. The torch KL and the handwritten version compu... | module: distributions,triaged,module: NaNs and Infs | low | Critical |
391,525,217 | youtube-dl | request: daricbennet.com |
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2018.12.17*. If it's not, read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected.
- [x] I've **verified... | account-needed | low | Critical |
391,533,167 | pytorch | [caffe2] Installation problem on OSX | ## π Documentation
First I tried installing using pip into a Python 3.7 environment. That mostly worked, except the Loading_Pretrained_Models tutorials failed. Apparently it uses a python2 module. Maybe put a disclaimer at the installation guide that Python2 (2.7??) is the supported target platform. Since there was n... | caffe2 | low | Critical |
391,534,993 | pytorch | linked error of Pytorch 1.0 release | ## π Bug
## To Reproduce
Steps to reproduce the behavior:
1. download pytorch to local
2. Disable USE_DISTRIBUTE=NO
3. MACOSX_DEPLOYMENT_TARGET=10.13 CC=clang CXX=clang++ python setup.py bdist_wheel
4. install compiled library under dist/ folder
## Environment
- PyTorch Version (e.g., 1.0): 1.0
-... | module: build,triaged,module: macos | medium | Critical |
391,541,848 | flutter | analyze --watch output emphasizes warns and deemphasizes errors via the choice of indent | The wrapping makes the analyzer output hard to read with a narrow(ish) window size:
```
Analyzing /home/ianh/dev/cruisemonkey... 155ms
warning β’ This function has a return type of 'Future<void>', but doesn't end with a return
statement β’ test/logic/cruise_model_test.dart:171:3 β’ missing_r... | tool,a: first hour,P2,team-tool,triaged-tool | low | Critical |
391,573,539 | pytorch | manylinux2014 compatible wheels | Because of hard-constraints around requiring CUDA, we didn't ever correctly produce manylinux1 compatible wheels (manylinux1 = CentOS5 environment, but CUDA requires atleast CentOS6).
We also had issues wrt statically linking stdc++ correctly. We've had several 10s of bugs filed because of doing these hacks wrong: h... | module: build,triaged | low | Critical |
391,574,189 | material-ui | The type of styled-component does not match for "strict: true" | When we use styled-component in TypeScript to inherit the Material-UI component, props type does not match.
How do I overwrite a style with styled-component?
There is a sample on how to inherit in the case of styled-component in the following link, but this sample will generate an error if it is set to `strict: tru... | typescript | medium | Critical |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.