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 |
|---|---|---|---|---|---|---|
316,529,644 | neovim | While recording a macro, no pause is given to see result of command | <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`: v0.3.0-1056-ga1530ec
- Vim (version: 7.4) behaves differently? no
- Operating system/version: Linux/WSL
- Terminal name/version: conhost/1803
- `$TERM`: xterm-256color N/A
### Steps to reproduce using `nvim -u NORC`
``... | enhancement,ux | low | Minor |
316,539,507 | vscode | end keyword matching for Ruby, Lua, Julia, Elixir, Crystal and others | <!-- Do you have a question? Please ask it on https://stackoverflow.com/questions/tagged/vscode. -->
<!-- Use Help > Report Issue to prefill these. -->
- VSCode Version: 1.22.0
- OS Version: Manjaro Linux 17.1.8
Steps to Reproduce:
1. Open a Ruby `.rb` file
2. Try to match `end` keywords
<!-- Launch with... | feature-request,languages-basic,editor-bracket-matching | medium | Major |
316,556,598 | pytorch | [caffe2] global average pool in caffe2 | - Caffe2:
- from source
- Python version:2.7
- CUDA/cuDNN version:cuda 8.0/cudnn 6
- GPU models and configuration:1070
How can achieve the global average pool in caffe2
| caffe2 | low | Minor |
316,558,103 | puppeteer | Serialize Uint8Arrays better | ### Steps to reproduce
**Tell us about your environment:**
* Puppeteer version: 1.3.0
* Platform / OS version: macOS Sierra
* URLs (if applicable): ...
* Node.js version: master
**What steps will reproduce the problem?**
_Please include code that reproduces the issue._
1. Open a new page with puppetee... | feature,good first issue,chromium | medium | Major |
316,571,903 | godot | [Bullet] Bullet Physics HingeJoint motor stops and restarts spinning every 360° |
**Godot version:**
Godot 3.0.2 official
**OS/device including version:**
macOS Sierra 10.12.6
**Issue description:**
Using HingeJoint and activating motor it stops and restarts spinning every 360°.
This happens only using default physics engine settings (Bullet).
Switching to Godot physic engine the moto... | bug,confirmed,topic:physics,topic:3d | medium | Critical |
316,572,384 | pytorch | Jetson TX1 Caffe2 installation fails on latest JetPack release | PyTorch GitHub Issues Guidelines
--------------------------------
Using the Latest Jetpack 3.2 on a Jetson TX1 and a completely fresh OS setup, Caffe2 installation fails.
Steps:
git clone --recursive https://github.com/pytorch/pytorch.git
cd pytorch
git submodule update --init
cd scripts
./build_tegra_... | caffe2 | low | Critical |
316,573,506 | flutter | Fill remaining space between slivers with sliver | Is there a sliver to fill the remaining space between slivers? I'm having a lot of trouble trying to find something that works in Flutter for this.
Here is an example of two `ListView` slivers. I'm looking for a sliver to push down the second sliver to the bottom of the screen.

- Use the *Preview* tab to see what your issue will actually look like
... | account-needed | low | Critical |
316,606,474 | rust | Rustc should be able to unify `<T as A<'static>>::B>` with `<T as A<'a>>::B>` for all `'a`, given `A::B: 'static` | I had to use [this trick](https://github.com/rust-lang/rfcs/pull/1598#issuecomment-215962891) to work around the [lack of working GATs](https://github.com/rust-lang/rust/issues/50115):
Ended up with this code: https://play.rust-lang.org/?gist=5f14fd0600bf0b1e1e9eac2c8a3d194a&version=stable
It works but to be able to ... | C-enhancement,A-trait-system,T-compiler | low | Critical |
316,626,756 | pytorch | [feature request] More `index_*_` functionality and/or lambda functionality | Could additional index-based functions be added to the tensor library? Specifically I am thinking of an `index_mean_` and `index_max_` or `index_min_`? In the first case, all that I foresee being required is an extra counter per index. In the latter, it's just a matter or replacing element-wise addition with an element... | feature,triaged,module: scatter & gather ops | low | Major |
316,639,702 | rust | Work out the actual policy for macros across editions wrt dependencies updating | I don’t think we’ve adequately worked out what we _want_ for macros with editions.
Are we okay with a Rust 2015 crate that exposes a macro updating to Rust 2018 (including new idioms) with a minor bump? I.e. should our edition hygiene account for this? Or are macro authors instructed to do major bumps when they
... | C-enhancement,T-lang,WG-epoch | low | Minor |
316,724,017 | pytorch | [caffe2] Understanding WorkFlow for Training and Testing | hello,
I am trying to compare all c++ framework(caffe2, tiny-dnn, etc.) with NNPACK.
the comparison that i do: Speed (exclude image loading), Memory size, and Code size.
I am new in caffe/caffe2 and worked with pytorch.
I looking a good way to learn caffe2(i already read the tutorial), the current is not suffi... | caffe2 | low | Major |
316,775,004 | rust | Public "stdcall" symbol not exported on cdylib on i686-pc-windows-gnu | I'm making a cdylib crate which exports a function in the following manner:
```rust
#[no_mangle]
pub extern "system" fn SomeFunction() {}
```
The library is then supposed to be loaded by another program at runtime and the function dlsym'd from it.
This works everywhere (32/64-bit Linux, macOS, 32/64-bit Windows... | A-linkage,A-FFI,T-compiler,O-windows-gnu,C-bug,O-x86_32 | medium | Critical |
316,908,914 | pytorch | [Caffe2] Android NNApi integration bugs. | ## Issue description
I found a few bugs in NNApi integration while running benchmarks.
## Code example
Bug 1: Invalid size is passed for tensors.
Caffe2 seems to be passing invalid size for tensors in setInput and setOutput.
If I am not wrong, they should be passing tensor->nbytes() instead of tensor->bytes()
ht... | caffe2 | low | Critical |
316,916,007 | go | x/tools: unify I/O semaphores | grepping for the word "semaphore" reveals five separate I/O semaphores in x/tools. Some of them could easily be used in the same executable, e.g. those in `go/loader`, `go/buildutil`, `refactor/importgraph`, and `cmd/guru`. This makes them less effective.
I suggest we add a single exported semaphore to x/tools, whic... | NeedsDecision,Tools | low | Major |
316,931,401 | rust | Tracking issue for Cell::update | This issue tracks the `cell_update` feature.
The feature adds `Cell::update`, which allows one to more easily modify the inner value.
For example, instead of `c.set(c.get() + 1)` now you can just do `c.update(|x| x + 1)`:
```rust
let c = Cell::new(5);
let new = c.update(|x| x + 1);
assert_eq!(new, 6);
asse... | T-libs-api,B-unstable,C-tracking-issue,disposition-merge,finished-final-comment-period,Libs-Tracked,Libs-Small | high | Critical |
316,933,419 | kubernetes | Enable RealProxier in 5k-node kubemark | Our kubemark-5k job (https://k8s-testgrid.appspot.com/sig-scalability-kubemark#kubemark-5000) started failing sometime mid- last week. E.g failed runs:
- https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/ci-kubernetes-kubemark-gce-scale/963
- https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/... | kind/bug,sig/scalability,lifecycle/frozen | medium | Critical |
316,938,966 | flutter | Transitioning a TabBarView manually doesn't honor the duration and curve | ## Steps to Reproduce
Calling `TabController.animateTo` with a duration and curve doesn't affect the behavior of the `TabBarView` animation. Although it's correctly affecting the behavior of the `TabPageSelector` and the `TabBar` animations.
Sample: https://gist.github.com/osama-lionheart/bab886d774f4e87b77104835ed... | framework,f: material design,a: fidelity,has reproducible steps,P3,found in release: 2.8,found in release: 2.9,team-design,triaged-design | medium | Major |
316,948,308 | pytorch | [Bug] VS reports unresolved external symbol from caffe2 observer | ## Issue description
VS 2017 complains about error LNK2001 unresolved symbols when enable caffe2 observer.
This is due to the missing import/export hint for creating DLL.
## System Info
- PyTorch or Caffe2: Caffe2
- Build command you used (if compiling from source): CMake
- OS: Win10
- Python version: 3.6
... | caffe2 | low | Critical |
316,974,399 | opencv | MKL_WITH_TBB failed to found the latest TBB 2018 on Windows | ##### System information (version)
- OpenCV => master
- Operating System / Platform => Windows 10 64 Bit
- Compiler => Visual Studio 2015
##### Detailed description
Failed to found TBB from OpenCVFindMKL.
The latest TBB 2018 is installed to places like `C:\Program Files (x86)\IntelSWTools\compilers_and_librar... | feature,category: build/install | low | Critical |
317,025,725 | go | runtime: android backtraces do not include go backtrace | The android native backtrace always goes back to the abort() call, and does not include the more useful go backtrace. Therefore, in the Google Play Console, we're left with very unhelpful backtraces like:

I... | OS-Android,NeedsInvestigation,compiler/runtime | low | Major |
317,041,511 | TypeScript | Have QuickInfo use import types to display type aliases that are not in scope | **Search Terms:**
type alias, import, display, quickinfo, intellisense
**Code**
```ts
// @Filename: file1.ts
export type ComplicatedType<T, U> = { [K in Exclude<keyof T, U>]: T[K] } // could be anything here
export declare function getComplicatedType<T, U extends keyof T>(arg: T, exclude: U): ComplicatedType... | Suggestion,Awaiting More Feedback,Domain: Quick Info | low | Major |
317,078,251 | flutter | Possibility to give Widgets a name in the view hierarchy (so the Play Store "Pre-launch report" Sign-in credentials can be configured) | I was looking into the "Pre-launch Report" Sign in credentials configuration in the Play Store console.
I pulled open Android Device Monitor while running the app on the login-screen, and did not expect to get a valid view XML snapshot returned, that's actually pretty nice work!
It appears however that it is no... | c: new feature,platform-android,framework,engine,customer: crowd,dependency: android,a: release,P2,team-android,triaged-android | low | Critical |
317,095,768 | react-native | InputAccessoryView doesn't update its height when multiline TextInput grows in height | I'm using an InputAccessoryView to create a sticky TextInput. When using a growing multiline TextInput, the TextInput's height increases and grown down _behind_ the keyboard.
## Environment
Environment:
OS: macOS High Sierra 10.13.4
Node: 9.11.1
Yarn: 1.5.1
npm: 5.6.0
Watchman: 4.9.0
Xcode: Xcode ... | Component: TextInput,📮Known Issues,Bug,Never gets stale | medium | Critical |
317,208,485 | pytorch | [Caffe2] cudnn versions compatibility issue. | ## Issue description
For any cudnn update (minor or patch level) user have to rebuild caffe2. This is wrong from cudnn7 and on. Please, take a look: https://github.com/tensorflow/tensorflow/issues/17566#issuecomment-372749050
In short:
cudnn 7.0.x is backward compatible with cudnn 7.0.1. cudnn 7.1.x is also backward... | module: cudnn,caffe2 | low | Minor |
317,230,965 | vscode | [folding] fold all but comments | Now that we have syntax aware folding, I wonder if we could prevent comments from being folded (configurable, if wanted).
This would enable to get an overview of a file very quickly.
**Now**
```
/** ...
reload() { ...
}
```
**Desired**
```
/**
* This important comment documents the signature of `reloa... | feature-request,editor-folding,editor-comments | low | Minor |
317,263,217 | pytorch | [Caffe2] [feature request] Dilations in grouped convolutons | `caffe2/operators/conv_pool_op_base.h` has the following check:
```cpp
if (group_ != 1) {
for (int dim = 0; dim < kernel_.size(); ++dim) {
CAFFE_ENFORCE_EQ(
dilation_[dim],
1,
"When group is used, dilation should not be set at the same time.");
}
... | caffe2 | low | Minor |
317,279,431 | pytorch | [Caffe2] Flatten Layer in caffe2 | I'm having trouble building my inceptionv3 model.
I build my model by following the diagram from netscope for caffe as shown below.
https://dgschwend.github.io/netscope/#/preset/inceptionv3
I came to almost the last layer, where i need implement a flatten layer.
I tried to use brew, but it seems that flatten isn't ... | caffe2 | low | Minor |
317,348,096 | go | cmd/compile/internal/types: lazy/incremental type expansion | The compiler now supports an indexed data format for package export data that enables efficient random-access of package data. We already use this to implement lazy expansion of declarations and inline bodies, but we still currently fully expand types whenever they're referenced. I expect in larger projects that a lot ... | ToolSpeed,compiler/runtime | low | Major |
317,356,417 | node | https?.Server.keepAliveTimeout introduced boundary condition that results in client-side socket hang-ups | * **Version**: `v8.11.1`
* **Platform**: `Darwin C02PQ4SHFVH8 17.5.0 Darwin Kernel Version 17.5.0: Mon Mar 5 22:24:32 PST 2018; root:xnu-4570.51.1~1/RELEASE_X86_64 x86_64`
* **Subsystem**: `http`
With the introduction of #2534, there now appears to be a window of opportunity after the trailing edge of `server.kee... | help wanted,http,https | low | Critical |
317,417,991 | kubernetes | add ability to specify base resourceVersion for three-way server-side patch | The PATCH handler has some ... interesting behavior. From the comments:
```
// first time through,
// 1. apply the patch
// 2. save the original and patched to detect whether there were conflicting changes on retries
// on a conflict (which is the only reason to have more than one attempt),
// 1. build a... | sig/api-machinery,kind/feature,lifecycle/frozen | low | Critical |
317,426,062 | vscode | Add support for bulk actions in extensions list view | We currently support multi-select in the extensions list view but there are no actions a user can take once you have items selected. I would expect the same actions from a single extension be made available (enable/disable/uninstall).
**Example**
An example where I attempt to disable multiple extensions but only on... | feature-request,extensions,papercut :drop_of_blood: | low | Minor |
317,481,464 | go | x/build/maintner: GithubIssue.NotExist resurrection does not set Created | Noticed while investigating #25031 that in Corpus.processGithubIssueMutation, when an issue is resurrected from NotExist state, its Created field is not set, as that only happens when the issue is first encountered.
No idea when NotExist is set, so not sure if it's an issue, but it looks like that codepath is either... | NeedsInvestigation | low | Critical |
317,487,602 | angular | Animation callbacks fire even if the animation itself is not performed | <!--
PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION.
ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION.
-->
## I'm submitting a...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (a behavior that used to work and stopped... | type: bug/fix,area: animations,freq2: medium,P3 | low | Critical |
317,490,111 | pytorch | Feature request: SSIM/MS-SSIM | The Structural Similarity Index (SSIM) is generally considered to be a milestone in the recent
history of Image Quality Assessment (IQA).
It would be nice to see in-build **SSIM/MS-SSIM** function in pytorch.
cc @fmassa @vfdev-5 | triaged,module: vision,function request | high | Critical |
317,498,547 | rust | unsizing fails when associated types are involved | I am trying to implement something very generic, and in the course of doing so, am using trait associated types. That, in turn, apparently doesn't allow the unsizing rules to kick in.
The following compiles fine:
```rust
#![crate_type="lib"]
use std::cell::UnsafeCell;
struct Foo<T: ?Sized>(UnsafeCell<T>);
i... | A-trait-system,T-lang,C-bug | low | Critical |
317,506,744 | go | cmd/link: include DWARF declaration position for types | The linker should include the declaration position for types so that we can use this information in editors and disambiguate where the types come from.
The easiest to replicate the confusion is to have a project which has multiple main packages and to try to go to a specific type declared in both those main package.... | NeedsInvestigation,Debugging,compiler/runtime | low | Minor |
317,544,760 | godot | RichTextLabel append_bbcode doesn't add the string to bbcode_text property | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:** 3.0.2
<!-- Specify commit hash if non-official. -->
**OS/device including version:** Linux (but probably any platform)
<!-- Specify GPU model and d... | bug,confirmed,topic:gui | low | Major |
317,563,384 | vscode | FileSystemProvider: no way of handling permissions issues | Refs: https://github.com/Microsoft/vscode/issues/48421
**Setup:**
* clone https://github.com/bpasero/remote-fs
* F5
* click "Refresh" in the explorer
* you should see the current working directory as a remote folder using the file system provider for scheme `datei://`
I can think of 2 reasons why a permission... | feature-request,remote,file-io | high | Critical |
317,604,121 | vscode | Revamp findFiles | Hello, [`findFiles`](https://code.visualstudio.com/docs/extensionAPI/vscode-api#workspace.findFiles)'s `exclude` argument says that if you pass in `undefined`, default excludes will apply.
I have found this to not work in my extension despite my configuration being correct. Consider this piece of code:
```typescr... | feature-request,search,on-testplan,api-proposal | medium | Critical |
317,612,605 | rust | Rust cannot use universal LLVM on macOS | I install Rust using [MacPorts](https://www.macports.org) on macOS.
Rust was recently [updated](https://github.com/macports/macports-ports/commit/77b2ac31e027672243e78942002737e7185ba125#diff-9b88aea0a5317f434b5fe2a6d02cb0c1) from 1.24.1 to 1.25.0.
For version 1.24.1, the Rust compiler did not seem to care if LLVM wa... | A-LLVM,O-macos,T-compiler,C-bug | medium | Critical |
317,710,930 | kubernetes | gce pd WaitForAttach never returned | <!-- 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 this may be security issue, please ... | kind/bug,sig/storage,lifecycle/frozen | low | Critical |
317,750,512 | go | cmd/link: enable linker dead code pruning when using reflect | Follow-up from https://groups.google.com/d/topic/golang-nuts/syC4LpVf7sw
The link-time optimisation to prune unused methods is disabled when reflect.Value.Call() is used anywhere within a program.
With large codebases with many vendored libraries, it's hard to avoid including something which calls reflect.Value.C... | NeedsInvestigation,compiler/runtime | low | Minor |
317,779,575 | go | cmd/compile: add bounds information from non-control ops to prove pass | Probably low priority; I'm not sure.
Some ops have strongly bounded output. For example, Ctz64 is always in [0,64], and Ctz64NonZero is in [0, 63]. Rsh by a constant also provides bounds.
The prove pass seems unaware of this. Does it / should it care? Where/how should it be added?
@rasky
| Performance,compiler/runtime | low | Major |
317,780,225 | TypeScript | Proposal: new "invalid" type to indicate custom invalid states | ## Proposal
A new `invalid` type that is not assignable to or from any other types. This includes not being assignable to or from `any` or `never`. It probably shouldn't even be assignable to `invalid` itself if that is possible, although I doubt that one really matters. I'd additionally suggest that, unlike other t... | Suggestion,In Discussion | high | Critical |
317,780,308 | go | cmd/compile: use bounds from prove pass to simplify shifts | Shifts generally require extra code to correctly handle shifting by more than the width of the value.
We have a bunch of ad hoc rewrite rules to detect and handle this. But the prove pass might be able to do a better job of this, and more simply too.
CL 109358 uses the prove pass to simplify CtzNN. Maybe we shoul... | Performance,compiler/runtime | low | Major |
317,796,947 | terminal | Create exporting interface to allow more formats than just .ini | As follow on from #19, this issue encompasses making the export feature generic through an interface like ISchemeExporter so we can export in more formats than .ini | Product-Colortool,Help Wanted,Area-Settings,Issue-Task | low | Minor |
317,830,576 | rust | Associated types bounds seem to be ignored in generic impls | Consider the following code:
```rust
#![crate_type="lib"]
use std::marker::PhantomData;
trait Foo {
type Type: Qux;
}
struct Bar<T>(PhantomData<T>);
trait Qux {}
impl<T: Foo> From<T::Type> for Bar<T> {
fn from(t: T::Type) -> Self {
Bar(PhantomData)
}
}
```
This fails to bu... | A-trait-system,C-bug,T-types | low | Critical |
317,831,021 | rust | Spurious "downstream crates may implement trait ..." | Consider the following code, close to the one in #50237:
```rust
#![crate_type="lib"]
use std::marker::PhantomData;
trait Foo {
type Type: Qux<Self>;
}
struct Bar<T>(PhantomData<T>);
trait Qux<T> {}
impl<T: Foo<Type=U>, U: Qux<T>> From<U> for Bar<T> {
fn from(t: U) -> Self {
Bar(Pha... | A-trait-system,T-compiler,C-bug | medium | Critical |
317,836,478 | flutter | Would like a benchmark tracking embedding latency | Now that more folks are embedding flutter, I'm being asked for two numbers:
1. How much time does adding Flutter to your binary affect startup time (not necessarily displaying a FlutterView at all). Presumably this is zero or close to?
2. How long does it take to bring a FlutterView on screen (presumably there... | engine,c: performance,a: existing-apps,customer: dream (g3),team: benchmark,P3,team-engine,triaged-engine | low | Minor |
317,846,248 | flutter | Improve error message for type error in maybePop()/pop() | ## Steps to Reproduce
Create a new project and have this pop-up box:
```dart
return showDialog<Null>(
context: context,
barrierDismissible: false, // user must tap button!
child: new AlertDialog(
title: new Text(title),
content: new SingleChildScrollView(
child: new ListBody(
... | c: crash,framework,f: routes,a: error message,has reproducible steps,P2,found in release: 3.7,found in release: 3.8,team-framework,triaged-framework | low | Critical |
317,862,369 | neovim | binding ALT (or CTRL) + function key (F1-F12) works with some $TERM but not others | - `nvim --version`: NVIM v0.3.0-1029-g48967695c, Build type: RelWithDebInfo
- Vim (version: ) behaves differently? `vim.tiny version 8.0.707`. Yes.
- Operating system/version: MX Linux 17 Horizon
- Terminal name/version: `terminator 1.90`, `xfce4-terminal 0.8.3 (Xfce 4.12)`, `GNOME Terminal 3.22.2`
- `$TERM`: `xter... | bug,tui,input | medium | Major |
317,865,742 | pytorch | [Caffe2] Is there any way to load custom operators in c++? | It's easy to load custom operators [in Python](https://github.com/caffe2/caffe2_bhtsne). But when I wanted to load operators of a .so file in c++ by linking the .so file, I got
```
Key already registered.
Offending key: simple
```
when I ran my binary file.
Could you please tell me how to load custom operators i... | caffe2 | low | Minor |
317,867,429 | flutter | Scrolling and Tap not working in flutter driver | ## Steps to Reproduce
I have been using `driver.scroll(...)` and `driver.tap(...)` elsewhere, but have been unable to automate this particular game since tap and scroll time outs even though an unique key is being assigned to each of the element.
```dart
Widget _buildItem(int index, String text, Status status,... | a: tests,tool,t: flutter driver,P2,team-tool,triaged-tool | low | Critical |
317,992,091 | vue | Vue breaks the styling when using comments in inline style attribute | ### Version
2.5.16
### Reproduction link
[https://jsbin.com/gutivaf/edit?html,css,js,output](https://jsbin.com/gutivaf/edit?html,css,js,output)
### Steps to reproduce
- Add a comment inside any style attribute on an element within the Vue app instance. Example:
... style="color:blue; /* This is a comm... | improvement | low | Minor |
317,998,488 | angular | Angular Elements should keep an HTML attribute value in sync with a property value | <!--
PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION.
ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION.
-->
## I'm submitting a...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (a behavior that used to work and stopp... | feature,help wanted,freq3: high,area: elements,P4,feature: under consideration | low | Critical |
318,006,747 | vscode | Allow programatically un-selecting an item in a contributed tree | We can select items in the tree node with `reveal`, but we can't un-select. For an outline view that follows the users cursor, it would be good to unselect when the user moves the cursor to some empty whitespace that doesn't have a matching node.
The existing explorer treeview also does this; if you open a file that... | feature-request,api,tree-views | medium | Critical |
318,021,077 | godot | Godot should add a warning symbol when a compressed emissive texture is used | By default Godot compresses every textures in Video Ram mode, that is fine for most textures type but with an emissive if a GIProbes is used the color will be wrong. Godot should add a warning message when the texture plugged in the emissive slot is compressed, saying that the colors of the GI may be wrong and that the... | topic:rendering,documentation,topic:3d | low | Minor |
318,105,733 | pytorch | [pytorch] Not handling python reload properly | Trying to reload some modules cause crashes:
On python 2.7 (crash with ubuntu release, error messages from debug build).
```
>>> import torch
>>> reload(torch)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/alban/workspace/dev-pytorch/torch/__init__.py", line 288, in <... | todo,module: crash,triaged | low | Critical |
318,110,271 | youtube-dl | ERROR: Unsupported URL: http://play.afreecatv.com/whiteang/embed | ```
➜ ~ youtube-dl --proxy socks5://127.0.0.1:1080/ -F http://play.afreecatv.com/yuna830/203150344
[generic] 203150344: Requesting header
WARNING: Falling back on generic information extractor.
[generic] 203150344: Downloading webpage
[generic] 203150344: Extracting information
[generic] embed: Requesting hea... | site-support-request | low | Critical |
318,153,665 | go | cmd/compile: optimize unaligned load-XOR-store on byte slices | It would be nice if the following sets of code were equivalent on platforms that support unaligned loads/stores (386, amd64, arm64, ppc64le, s390x...). I've used XOR in these examples but it is also true for the other logical operators:
(1)
```go
binary.LittleEndian.PutUint32(dst, binary.LittleEndian.Uint32(src) ... | Performance,compiler/runtime | low | Minor |
318,175,313 | TypeScript | Compiler API: Expose More from typescript.d.ts | **TypeScript Version:** 2.9.0-dev.20180426
While [Traversing the TypeScript AST](https://github.com/Microsoft/TypeScript/wiki/Using-the-Compiler-API#traversing-the-ast-with-a-little-linter) of a source file, there have been a number of helpful things I've found by extending `ts.*` from `typescript.d.ts` and I would... | Suggestion,Help Wanted,API | low | Major |
318,216,228 | go | cmd/compile: prove pass doesn't draw signed int conclusions from range checks | This might be fixed by outstanding prove CLs, but just in case, consider this snippet from math/expm1.go:
```go
var k int
// ...
switch {
case k == -1:
return 0.5*(x-e) - 0.5
case k == 1:
if x < -0.25 {
return -2 * (e - (x + 0.5))
}
return 1 + 2*(x-e)
case k <= -2 || k > 56: // suffic... | Performance,compiler/runtime | low | Major |
318,228,805 | TypeScript | Some overloaded signatures never be choose when explicit type parameters are specified | **TypeScript Version:** 2.7.0-dev.201xxxxx
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
**Code**
```ts
then<TResult1 = T, TResult2 = never>(onfulfilled?: undefined | null, onrejected?: undefined | null): Promise<T>;
then<TResult1... | Bug | low | Minor |
318,248,707 | pytorch | [Caffe2] LT and GT cannot be exported to ONNX | When I try to export a simple network using LT (or GT) to ONNX, I get the following error:
## Error log
```
Traceback (most recent call last):
...
File "/home/masato/repo/pytorch/build/caffe2/python/onnx/frontend.py", line 346, in caffe2_net_to_onnx_model
model = make_model(cls.caffe2_net_to_onnx_graph(*a... | caffe2 | low | Critical |
318,250,105 | go | x/net/http2: steady performance degeneration seen with HTTP/2 over recent releases | Hello, I work on the full text search engine at couchbase, and we recently moved our scatter gather protocol to use x/net/http2 instead of net/http.
The go version we currently use is go-1.9.3.
In some testing in house .. I've noticed the query throughput over a full text index take a nose dive as I upgraded the ... | Performance,NeedsInvestigation | low | Critical |
318,271,441 | rust | E0210 Disallows theorietically legal implementation, or is misleading | Hi all,
Had posted this on the internals forums as a potential improvement but didn't get any responses there. I'm fairly confident the following scenario should be allowed:
```rust
trait CenterOriginRect {
fn center(&self) -> Point;
fn width(&self) -> Meters;
fn height(&self) -> Meters;
}
impl<'a, ... | C-enhancement,A-diagnostics,T-compiler | low | Critical |
318,280,185 | go | cmd/compile: regalloc's liveness analysis is quadratic | This is a known, difficult issue. It has been around since the SSA compiler was first merged. This is a tracking issue for it. | ToolSpeed,compiler/runtime | low | Minor |
318,335,515 | pytorch | [feature request] norm argument for RNNCells | Hey there pyTorch Community,
I am currently working with RNNs and realized, that it would be great to have a norm argument for RNNCells which enables LayerNormalization for them. I implemented it for the LSTMCell and it should be straight forward to apply to the other ones as well.
I think it would be worthwhile to... | module: rnn,triaged,enhancement | low | Minor |
318,344,254 | vscode | Does the watch view support auto completions? | _From @yaohaizh on April 8, 2018 14:37_
In the debug view, the auto completions is supported in the debug console, but it doesn't support in the watch view when typing expression for evaluation.
_Copied from original issue: Microsoft/vscode-debugadapter-node#171_ | feature-request,debug | medium | Critical |
318,374,197 | pytorch | [Compilation] how to disable caffe2? | Hi
I have to compile and build pytorch from the source due to my geforce 920mx card.
Now with merging caffe2 into pytorch the compilation time gets multipled beside the error i get when i try building it with `gcc-6` (i also get error near the end of building for gcc-5: `gcc-5: error: unrecognized command line optio... | module: build,triaged | low | Critical |
318,377,021 | rust | HRTB variants are missing a std::fmt::Pointer impl | It seems that there is a missing implementation of `std::fmt::Pointer` on some function pointers:
function pointers like `fn test() -> f32` can be passed as argument to `println!("{:p}", ...)`
but function pointers like `fn test(Vec<T> a) -> f32` can't because it's a HRTB variant.
see [https://users.rust-lang.or... | C-enhancement,A-trait-system,E-needs-test,T-libs-api,T-types,A-higher-ranked | low | Major |
318,387,376 | vscode | Merge results from multiple DocumentHighlightProviders | as discussed in here:
https://github.com/Microsoft/vscode-languageserver-node/issues/318
I would love to see VS Code to support the document highlights from multiple extensions simultaneously, much in the same way hovers can be provided from multiple extensions and are displayed in the same hover popup.
The ba... | feature-request,editor-symbols | medium | Critical |
318,388,636 | go | cmd/compile: take into account that floating point special cases (NaN, Inf) are unlikely | `math.IsNaN` and `math.IsInf` are very unlikely to return true. It would be nice to use this information for code layout.
I have hacked together a prototype using SSA rules but there is probably a better way to do it. The prototype is here: https://go-review.googlesource.com/c/go/+/64191. Feel free to take that and ... | Performance,help wanted,compiler/runtime | low | Minor |
318,395,739 | youtube-dl | Site support for Turner Classic Movies | ## 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
... | site-support-request,geo-restricted,account-needed | low | Critical |
318,396,470 | pytorch | [Caffe2] compilation linker error `libtbb.so.2: undefined reference to std::__exception_ptr` | I am unable to compile caffe2 under fedora 27, cuda 9.1, cudnn 7. The linker fails with
//usr/lib64/libtbb.so.2: undefined reference to `std::__exception_ptr::exception_ptr::exception_ptr(void*)@CXXABI_1.3.11'
//usr/lib64/libtbb.so.2: undefined reference to `__cxa_init_primary_exception@CXXABI_1.3.11'
This happe... | module: crash,module: build,caffe2 | low | Critical |
318,412,982 | TypeScript | Tooltip for function overloaded to mimic variadic types infers wrong overload when called with trailing comma | **TypeScript Version:** 2.7.0-dev.20180418
**Search Terms:** Intellisense overload, tooltip overload
**Code**
```ts
function test<A>(a: A): true;
function test<A, B>(a: A, b: B): false;
function test<T>(...values: T[]): boolean {
return values.length === 1;
}
declare function assertTrue(truth: tru... | Bug,Help Wanted,Domain: Quick Info | low | Critical |
318,432,238 | vscode | Surface customized task proper in the API. | See https://github.com/Microsoft/vscode/issues/48831 for all the details. In the API the task should be the original provided task and it should contain a pointer to its customization from the tasks.json (not the other way around like it is today in the implementation). | api,tasks,debt | low | Minor |
318,471,943 | go | cmd/compile: eliminate more dead stores | ### What version of Go are you using (`go version`)?
Trunk
go version devel +3470321 Tue Apr 24 15:26:21 2018 -0500 linux/amd64
### What did you do?
go build following program:
```
package test
//go:noinline
func f(x ...interface{}) {
}
func g() {
var x string
f(&x)
}
```
When loo... | Performance,binary-size,compiler/runtime | low | Major |
318,487,852 | go | x/mobile/cmd/gomobile: iOS app built with gomobile-build freezes after switching apps | ### What version of Go are you using (`go version`)?
```
go version go1.10 darwin/amd64
```
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOCACHE="/Users/hajimehoshi/Library/Caches... | mobile | low | Critical |
318,496,141 | pytorch | CuDNN version not supported | My OS is ubuntu 16.04, previously installed cuda-8.0 and cudnn-5. Now I want to install the latest PyTorch and I choose to install with souce code. I made some preparetions:
install cuda-9.0 and cudnn-7
set these env-variables in my ~/.bashrc:
`export CUDNN_include_DIR=/usr/local/cuda-9.0/include
export PATH=/usr/... | todo,module: build,module: cudnn,module: cuda,triaged | low | Critical |
318,529,998 | pytorch | "Undefined symbols for architecture arm64" when linking libcaffe2.a for iOS | ## Issue description
I am linking the caffe2 library to my iOS project using the built libraries after compiling for iOS and I'm getting "Apple Mach-O Linker errors, with all of them being "undefined symbols for architecture arm64"
## System Info
- PyTorch or Caffe2: Caffe2
- How you installed PyTorch (conda, p... | caffe2 | low | Critical |
318,586,795 | pytorch | [feature request] Provide Caffe2 CUDA dockerfile with USE_REDIS=ON | It seems the Redis operator support in Caffe2 is off by default. When I compiled the source code with the option USE_REDIS=ON using [this dockerfile](https://github.com/pytorch/pytorch/blob/master/docker/caffe2/ubuntu-16.04-cuda8-cudnn6-all-options/Dockerfile), I ended up with an error complaining about being unable t... | caffe2 | low | Critical |
318,604,931 | pytorch | LBFGS contribution | LBFGS implementation is not proper.
Could you please go through the following link and respond to this?
https://discuss.pytorch.org/t/lbfgs-not-functioning-the-way-it-is/16705
I would like to contribute for this algorithm.
Could you please respond soon?
cc @vincentqb | awaiting response (this tag is deprecated),module: optimizer,triaged | low | Major |
318,606,494 | rust | Tracking issue for eRFC 2318, Custom test frameworks | This is tracking the `#[bench]` and `#[test_case]` attributes and the `custom_test_frameworks` lang item as well as the libtest crate. There is currently no plan/RFC for stabilizing them.
**Old issue description.**
<details>
This is a tracking issue for the eRFC "Custom test frameworks" (rust-lang/rfcs#2318).
**Doc... | B-RFC-approved,T-lang,T-dev-tools,T-cargo,A-libtest,C-tracking-issue,WG-embedded,F-custom_test_frameworks,S-tracking-design-concerns | high | Critical |
318,616,538 | go | brand: presentation theme: black background for source code is a problem | Please look at [this slide](https://docs.google.com/presentation/d/1Gib9XvcWW_FG9QT_5egNigJX9By7LFEpe69eu37k5Us/edit#slide=id.g33148270ac_0_429). While black background looks cool on the electronic displays (computers, TVs), and at the large conference screens in the dark environment, it will not work with typical equi... | Documentation,NeedsFix | low | Major |
318,617,723 | TypeScript | Verbose computed property transpilation | **TypeScript Version:** 2.7.0-dev.201xxxxx
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
**Code**
```ts
const p1 = 0;
const p2 = 1;
class A {
[p1] = 0;
[p2]() {}
}
```
**Expected behavior:**
```js
const p1 = 0;
const p2 =... | Suggestion,Help Wanted,Domain: Transforms | low | Major |
318,648,888 | go | x/mobile/cmd/gomobile: iOS app built with gomobile-build consumes memory and never frees | ### What version of Go are you using (`go version`)?
```
go version go1.10 darwin/amd64
```
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOCACHE="/Users/hajimehoshi/Library/Caches... | mobile | low | Critical |
318,653,741 | go | fmt: State could be a little friendlier | ### What version of Go are you using (`go version`)?
1.10
### Does this issue reproduce with the latest release?
yes.
### What operating system and processor architecture are you using (`go env`)?
linux/amd64, but seems irrelevant
### What did you do?
Tried to use Formatter efficiently.
https://... | NeedsInvestigation,FeatureRequest | low | Major |
318,677,570 | go | x/sys/windows: port CL 106275 into x/sys/windows | @aclements said https://github.com/golang/go/issues/21376#issuecomment-382445433
> we could even move all of the crypto APIs from syscall to internal/syscall/windows and tell people to use x/sys/windows instead (which we also need to fix).
This issue is so we do not forget to fix crypto APIs in x/sys/windows.
... | compiler/runtime | low | Critical |
318,687,334 | go | encoding/json: include property name for marshal errors | ### What version of Go are you using (`go version`)?
```
$ go version
go version go1.10 linux/amd64
```
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
```
$ go env
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/domi... | NeedsInvestigation | low | Critical |
318,688,787 | go | cmd/compile: emit variable byte-sized bit tests on amd64 | Conversation moved from CL 109716.
Consider this code from the runtime:
```go
// Information from the compiler about the layout of stack frames.
type bitvector struct {
n int32 // # of bits
bytedata *uint8
}
// ptrbit returns the i'th bit in bv.
func (bv *bitvector) ptrbit(i uintptr) uint8 {
b... | Performance,compiler/runtime | low | Minor |
318,693,558 | pytorch | Fail to import Caffe2Backend | ## Issue description
After install Caffe2 from its source following the instruction on a clean VM (CPU only), I can run this [example](https://github.com/caffe2/tutorials/blob/master/Toy_Regression.ipynb). However, the following line produces an error.
home:~/repos/pytorch/build$ python
Python 2.7.14 (default, Sep... | caffe2 | low | Critical |
318,721,365 | react | onMouseDown causes splash on real ios browsers | <!--
Note: if the issue is about documentation or the website, please file it at:
https://github.com/reactjs/reactjs.org/issues/new
-->
**Do you want to request a *feature* or report a *bug*?**
*bug*
**What is the current behavior?**
unexpected **grey splash** caused by `onMouseDown` on real ios devi... | Type: Bug,Browser: Safari,Component: DOM | low | Critical |
318,728,269 | go | cmd/compile: use bounded shift information on non-amd64 architectures | CL 109776 optimized some shifts on amd64. We should apply the same straightforward optimization rule changes to other architectures.
Might be a good starter SSA issue.
cc @mundaym @cherrymui
| Suggested,Performance,help wanted,compiler/runtime | low | Major |
318,728,428 | go | cmd/compile: detect bounded shifts in generic rules | CL 109776 introduced a mechanism for marking a shift value as being bounded, and used it in the prove pass. @mundaym suggested marking others during generic optimization rule application. This issue is a reminder to follow up on that suggestion.
cc @rasky @mundaym | Performance,compiler/runtime | low | Minor |
318,728,588 | go | cmd/compile: detect bounded shifts of the form (bits-var) in prove | This is a reminder issue for a suggestion in the review of CL 109776: https://go-review.googlesource.com/c/go/+/109776/1/src/cmd/compile/internal/ssa/prove.go#797.
| Performance,compiler/runtime | low | Minor |
318,738,884 | rust | Specialization: assigning associated type in default trait implementation leads typecheck to fail with weird error | I have a trait `NodeTrait` that I implemented for `Node` with a default implementation and a specialized one.
The trait has an associated type `Item`.
If I assign the type of `Item` in the specialized implementation, everything works.
If I specify it in the default implementation, I get a weird type check error.
... | T-lang,A-specialization,A-inference,C-bug,requires-nightly,F-specialization | low | Critical |
318,753,904 | rust | Linking dylib with "lto = true": assertion failed: !is_full_lto_enabled(sess) | Approximate file tree:
```
├── Cargo.lock
├── Cargo.toml
├── src
│ └── main.rs
└── test_dylib
├── Cargo.toml
└── lib.rs
```
Top-level Cargo.lock:
```
[profile.release]
lto = true
[dependencies]
test_dylib = { path = "test_dylib" }
```
test_dylib/Cargo.toml:
```
[lib]
path = "lib.... | A-linkage,I-ICE,T-compiler,C-bug | low | Critical |
318,806,945 | TypeScript | Cannot use variable from common deconstruction into the initialising expression of another one when strictNullChecks is on | **TypeScript Version:** 2.8.3
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
- deconstruction with initialzers
- strictNullCheck
**Code**
If I use `tsc --strictNullChecks` I will get the following errors
```ts
// strictNullCheck should be ... | Bug | low | 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.