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 |
|---|---|---|---|---|---|---|
234,304,766 | pytorch | Add support for colors (and maybe other attributes) to NVTX API | **Summary.** The functions in `torch.cuda.nvtx` can currently be associated with ASCII text only. However, the NVIDIA APIs permit more options, including custom colors. http://docs.nvidia.com/cuda/profiler-users-guide/#nvtx Your goal in this ticket is to add support for this.
**What you will learn.**
1. How to d... | newcomer,module: cuda,triaged | medium | Major |
234,319,507 | youtube-dl | [vgtv] Add support for authentication | C:\Users\Duiz\Downloads\Movies> youtube-dl.exe http://www.vgtv.no/#!/video/138243/tv-junkie -u ***** -p ********
[VGTV] 138243: Downloading media JSON
[VGTV] 138243: Downloading m3u8 information
WARNING: Failed to download m3u8 information: HTTP Error 403: Forbidden
[VGTV] 138243: Downloading f4m manifest
WARNING:... | account-needed | low | Critical |
234,329,830 | TypeScript | Suggestion: shorthand syntax for annotating function with type | I like to define types for my functions by separating the type out from the value:
```ts
type id = <A>(a: A) => A;
const id: id = a => a;
```
This helps particularly for longer functions where the parameter list often spans many columns and multiple lines.
However, compared to Elm/Haskell, this code is quit... | Suggestion,Awaiting More Feedback | low | Major |
234,336,344 | rust | `cfg_target_feature` and `target_feature` don't interact properly | This should panic but it doesn`t
```
#[target_feature = "+avx"]
pub fn should_panic() {
#[cfg(target_feature = "avx")]
panic!("have_avx");
}
```
I would like for this to work because I have a macro that generates 2 copys of a function, one with `#[target_feature = "+feat"]` and one without and I want to c... | T-lang,A-SIMD,C-bug,A-target-feature | medium | Major |
234,336,821 | flutter | Isolate.spawnUri() throws a confusing exception | @jason-simmons @abarth
From a closed issue #8084 it seems like `Isolate.spawnUri()` is not supported under flutter. However, the `IsolateSpawnException` thrown doesn't represent the not-implemented state of this method. Even when using `file://` URIs the exceptions states `Isolates must use file:// URIs`
Documentat... | c: crash,engine,dependency: dart,P2,team-engine,triaged-engine | low | Critical |
234,380,811 | vue | transition-group DOM update lag when using css frameworks | ### Version
2.3.3
### Reproduction link
[http://jsbin.com/fegogus/edit?html,css,js,output](http://jsbin.com/fegogus/edit?html,css,js,output)
### Steps to reproduce
Apply a transition group to v-for when using popular CSS frameworks, most noticeable with Semantic-UI but also apparent with Bootstrap. Example use... | improvement,transition | low | Major |
234,469,821 | node | When using pipes other than stdin, stdout, stderr for streaming data into a child process, ENOTCONN error is thrown | ### Version:
tested with 7.5 and 8.0
### Platform:
OSX Sierra; Darwin Kernel Version 16.3.0 root:xnu-3789.31.2~1/RELEASE_X86_64 x86_64
### Example code:
`brew install imagemagick`
```javascript
const request = require('request');
const spawn = require('child_process').spawn;
// const subProcess = spawn('conv... | child_process,process,stdio | low | Critical |
234,504,721 | opencv | Update OpenCV-Python Bindings to expose internal C function API using capsule | I am trying to use OpenCV 3.2 using the python binding, while moving some of my code to a python extension (implemented in C++). To interpret function arguments correctly, it would be very useful to be able to access to the functions in modules/python/src2/cv2.cpp. This can be done by using capsules, so that my module ... | category: python bindings,RFC | low | Major |
234,509,541 | go | image/png: don't ignore PNG gAMA chunk | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go version go1.8.1 linux/amd64
### What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOO... | help wanted,NeedsInvestigation | low | Critical |
234,521,154 | go | encoding/xml: add whitespace normalization from spec | ### What version of Go are you using (`go version`)?
go version go1.8.3 darwin/amd64
### What operating system and processor architecture are you using (`go env`)?
darwin/amd64
### What did you do?
for attribute values, all whitespace characters (#x20, #xD, #xA, #x9), should be normalized to a space characte... | help wanted,NeedsFix | low | Major |
234,523,352 | vscode | Provide Task Runner viewlet | <!-- Do you have a question? Please ask it on http://stackoverflow.com/questions/tagged/vscode -->
We did a Task 2.0 deep dive today and this issue collects the combined feedback received.
### Task Properties
- echo should be true by default so that users get a better idea of the task executed
- we should su... | feature-request,tasks,ux | high | Critical |
234,566,829 | TypeScript | Error inferring tuple type arguments | **TypeScript Version:** nightly (2.4.0-dev.20170608)
**Code**
```ts
interface IPromise<T> {
then<U>(onFulfill: (value: T) => IWhenable<U>): IPromise<U>;
}
interface QPromise<T> {
then<U>(onFulfill: (value: T) => IWhenable<U>): IPromise<U>;
}
type IWhenable<T> = IPromise<T> | T;
declare funct... | Bug | low | Critical |
234,584,337 | opencv | Include LKTracker in Trackers class | LK Tracker is a part of the Optical Flow module. I would like to suggest that we add it as a tracker in the Tracker class. This will also enable its use in MultiTracker and make it easier to switch to.
I can start working on the same if you suggest it's a good idea. | feature,category: video,RFC | low | Minor |
234,587,962 | rust | Slow "llvm module passes" | This crate https://github.com/snipsco/rustling-ontology takes a very long time to compile, more than I would expect. -Z time-passes show this culprit:" time: 269.113 llvm module passes [0]" accounting for ~95% of the compilation time.
From my understanding, it is atypical, so maybe there is something interesting th... | A-LLVM,C-enhancement,I-compiletime,T-compiler | low | Major |
234,597,047 | go | proposal: spec: disallow assigning >32bit untyped constant to variable of type int | I propose that the Go language and implementations be changed to reject a constant assignment to a variable of type `int` (or `uint`) if the constant would overflow a **32-bit** `int` (or `uint`), regardless of the size of `int` on the current GOOS.
That is, on `amd64`, this would be rejected:
```go
const MaxInt... | LanguageChange,Proposal,LanguageChangeReview | medium | Major |
234,613,534 | flutter | FlutterDriver reports the target device | Internal: b/124657370
Currently the flutter driver test that collections screenshots (see examples/catalog/bin/screenshot_test.dart.template) incorrectly assumes that if it's running on MacOS, it's targeting an iOS device.
It would preferable to just ask the FlutterDriver for the target device's deviceId, or OS.
... | a: tests,tool,t: flutter driver,customer: google,P2,team-tool,triaged-tool | low | Minor |
234,697,233 | three.js | Plane.intersectLine An extension parameter should be added | ##### Description of the problem
Because the method does not provide bi-directional rays.
So I think it is useful.
in Plane.js line 154:
`
if (!extensionLine && ( t < 0 || t > 1 )) {
return undefined;
}
`
##### Three.js version
- [ ] Dev
- [x] r85
- [ ] ...
##### Browser
- [x] All of them
- [... | Suggestion | low | Major |
234,734,152 | vscode | [theme] Request the feature: "editor.lineHighlightForeground". | ### Request the feature: "editor.lineHighlightForeground"
Sometimes it is essential to adjust the colour of the selected text by:
**'editor.lineHighlightBackground'.**
Colour merges if the highlighting line and text colours are identical.
An example:
`'editor.lineHighlightBackground': '#000000',
'editor.... | feature-request,themes | low | Major |
234,747,428 | node | vcbuild does not always generate field <TargetMachine> in project files. | <!--
Thank you for reporting an issue.
This issue tracker is for bugs and issues found within Node.js core.
If you require more general support please file an issue on our help
repo. https://github.com/nodejs/help
Please fill in as much of the template below as you're able.
Version: output of `node -v`
P... | confirmed-bug,help wanted,windows,build | low | Critical |
234,755,305 | TypeScript | Mixin classes don't allow constructors of _generic_ 'object' types | **TypeScript Version:** 2.3.4, 2.4.0-dev.20170609
**Code:**
```ts
type Constructor<T> = new (...args: any[]) => T;
const Timestamped = <I extends object, CT extends Constructor<I>>(Base: CT) => {
return class extends Base {
timestamp = new Date();
};
};
```
**Expected behavior:**
Should be... | Suggestion,Awaiting More Feedback | medium | Critical |
234,772,399 | go | mobile/app/x11.go: Support mouse events for X | ### What version of Go are you using (`go version`)?
```
go version go1.8.3 linux/amd64
```
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/home/veger/devel/go"
GORACE=""
GOROOT="/... | mobile | low | Critical |
234,815,723 | angular | Better syntax checking of index syntax in ngFor | **I'm submitting a ...**
```
[x] bug report => search github for a similar issue or PR before submitting
```
**Current behavior**
Silence
**Expected behavior**
Syntax error
**Minimal reproduction of the problem with instructions**
`*ngFor="let elem of elements; let i of index"`
Notice the "of index"... | type: bug/fix,hotlist: error messages,freq2: medium,area: core,area: compiler,core: ng-template and *microsyntax,P3,compiler: template type-checking | low | Critical |
234,897,117 | opencv | cv::transform requires Nx1 C-channel Mats, doesn't take NxC Mats | - OpenCV => 3.2
`cv::transform` uses .channels() to check if the src input has the appropriate number of "columns". however, it assumes that the src matrix has this dimension as a channel count, not as a number of columns. the function does use m.cols (of the transform matrix) though.
This requires me to pass rei... | RFC | low | Minor |
234,901,204 | flutter | Accessibility Checker | Would be cool to have an accessibility checker (maybe as analyzer plugin) that tells people what's missing in their flutter app to make it accessible. It should for example warn if there are controlls without meaningful labels. | c: new feature,tool,a: accessibility,P3,team-tool,triaged-tool | low | Major |
234,901,764 | youtube-dl | [adultswim] Problem resuming an HLS-native download | ## 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 that [x])
- Use *Preview* tab to see how your issue will actually look like
---
... | tv-provider-account-needed | low | Critical |
234,959,124 | TypeScript | TypeScript Language Service is slow to load projects over network file systems | **TypeScript Version:** 2.3.4
We have our code on a networked/FUSE file system with different root directories for generated files and such. We use the node module resolution. To load a fairly simple Angular+Angular material+RxJS project(transitively ~1.7K .ts and .d.ts files) the language service takes around 24 s... | Bug | low | Major |
234,971,005 | go | x/net/netlink, vendor/golang.org/x/net/netlink: new package | I propose to have a x/net/netlink package and vendor it to the standard library for maintenance purposes.
Netlink is a Linux-specific service for manipulating networking facilities inside the kernel. Fortunately, unlike routing messages and sockets on BSD variants, it doesn't have much ABI incompatibility between ma... | Proposal,Proposal-Accepted,NeedsFix | low | Major |
234,982,973 | vscode | Add "line_padding_bottom", "line_padding_top" like sublime text | "Line height" property makes cursor indicator bigger. In Sublime Text `{"line_padding_bottom", "line_padding_top"}` is much better actually.

All the best ... VSCode Team. | feature-request,editor-core | low | Major |
234,984,780 | neovim | E576: Error while reading ShaDa file: there is an item at position 270498 that must not be there: Missing itemsare for internal uses only | - v0.2.0
- Vim 8.0 works well.
- macOS Sierra 10.12.5 (16F73)
- iTerm2 v3.0.15
- `$TERM`: screen-256color
### Actual behaviour
When I start neovim by `nvim`, it prints an error message which is `E576: Error while reading ShaDa file: there is an item at position 270498 that must not be there: Missing items are f... | bug,needs:repro | medium | Critical |
235,005,580 | neovim | Method for debouncing/pausing folds | [parinfer](http://shaunlebron.github.io/parinfer/) is a method for editing lisp.
In the example "Insert or delete a line without rearranging parens:", there is a part where closing parens are closed. This then triggers an automatic re-balance.
In vim, with `set fdm=syntax`, the way this reacts with regards to fol... | enhancement,folds | low | Minor |
235,021,211 | youtube-dl | [mediamatters] Add support for mediamatters embeds | ## 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 that [x])
- Use *Preview* tab to see how your issue will actually look like
---
... | site-support-request | low | Critical |
235,023,036 | youtube-dl | BBCA: Playlist support for a series | ## 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 that [x])
- Use *Preview* tab to see how your issue will actually look like
---
... | tv-provider-account-needed | low | Critical |
235,023,297 | youtube-dl | [mirror] Add support for Mirror.co.uk | ## 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 that [x])
- Use *Preview* tab to see how your issue will actually look like
---
... | site-support-request | low | Critical |
235,033,804 | rust | target_pointer_width in proc-macro crates provides build-time width, but some clients want runtime width | I'm trying to add cross compilation (to compile 32bit) to my crate, and `target_pointer_width` is 64 in the proc-macro crate (like the host), and 32 in the root crate (like the target):
How can I get the real `target_pointer_width` in a proc-macro crate? | A-macros,T-dev-tools,C-feature-request | low | Major |
235,036,015 | youtube-dl | [downloader/ism] Add support for WVC1/WMAP | ## 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 that [x])
- Use *Preview* tab to see how your issue will actually look like
---
... | request | low | Critical |
235,037,673 | go | x/crypto/acme/autocert: serve self-signed cert for localhost? | Idea inspired by a mailing list post on golang-nuts,
What if the autocert package [optionally?] could serve a self-signed cert for localhost connections?
It can look at SNI "localhost" and/or the connection addr being a loopback address.
Might be nice for testing / consistency.
/cc @x1ddos
| NeedsDecision,FeatureRequest | medium | Major |
235,038,344 | nvm | nvm should allow installation of v8-canary | Link: https://nodejs.org/download/v8-canary/ has the bleeding edge v8
This would be tremendously useful for testing | feature requests | low | Major |
235,041,492 | youtube-dl | Unable to download tv.com's embedded http://can.cbs.com/thunder/player/chrome/canplayer.swf videos. | Example:
$ youtube-dl -v http://www.tv.com/news/alias-writers-explain-how-they-found-jennifer-garners-iconic-red-wig-14971258760089224/
[debug] System config: []
[debug] User config: []
[debug] Custom config: []
[debug] Command-line args: ['-v', 'http://www.tv.com/news/alias-writers-explain-how-they-found-jennif... | site-support-request | low | Critical |
235,045,206 | angular | Feature request: ngBeforeDestroy | **I'm submitting a ...** (check one with "x")
```
[ ] bug report => search github for a similar issue or PR before submitting
[X] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
```
**Current b... | feature,area: core,core: lifecycle hooks,feature: under consideration | high | Critical |
235,058,901 | go | x/exp/mmap: should offer access to the mapped byte slice | Currently the only way the mapped data is accessible is through the `ReadAt(p []byte, off int64)` method, which copies from `r.data` (the mapped area) to `p`.
I realize that this was probably a deliberate decision, because if it were possible to create further references to the underlying (mapped) array of `r.data` ... | NeedsInvestigation,FeatureRequest | low | Critical |
235,068,878 | vscode | [css] Use CSS custom properties imported via @import | Is it possible for VS code to recognize CSS variables declared in a separate CSS file that is imported with `@import` ?
For example, I would like to have a `variables.css` file that is all about declaring CSS custom properties. Then I would import that file on top of my main css file, and be able to have intellisens... | feature-request,css-less-scss | high | Critical |
235,079,266 | flutter | Add parseable output for flutter doctor | I thought I'd discussed this with someone before, but can't find it anywhere.. It'd be nice if an IDE can execute `flutter doctor` and provide info to the user when there are problems.
The current output isn't too bad for parsing, but it could be fragile if there are changes or if it becomes interactive and starts e... | c: new feature,tool,t: flutter doctor,P2,team-tool,triaged-tool | low | Major |
235,085,094 | youtube-dl | [manchestereveningnews] Site support for manchestereveningnews.com (brightcove) | ## 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 that [x])
- Use *Preview* tab to see how your issue will actually look like
---
... | site-support-request | low | Critical |
235,085,520 | rust | rustc: Uses 75G of RAM and takes 1h30 on attached | The code at http://www.treblig.org/daveG/play-75G.rs (attached) causes rustc to take 75G of RAM and 1.5hours to compile (before it spits a reasonable error)
It is an experiment with type unification and does contain a screwup; when I fixed the screwup it returned to taking about 2mins and about 250MB even with all m... | C-enhancement,I-compiletime,T-compiler,I-compilemem | low | Critical |
235,128,599 | kubernetes | Multi Tenancy for Persistent Volumes | **What keywords did you search in Kubernetes issues before filing this one?** tenancy
This issue intends to start a discussion on how to do Multi Tenancy in Kubernetes for Persistent Volumes in particular.
My team is currently trying to enable Stateful Apps for our internal customers. One requirement that keeps... | sig/storage,kind/feature,lifecycle/frozen,wg/multitenancy | medium | Critical |
235,152,004 | javascript | Proposal. Simplify point 4.5 (Filter) | In this part of best practice I found a part of code
```
// bad
inbox.filter((msg) => {
const { subject, author } = msg;
if (subject === 'Mockingbird') {
return author === 'Harper Lee';
} else {
return false;
}
});
// good
inbox.filter((msg) => {
const { subject, author } = msg;
if (... | question | low | Minor |
235,155,160 | opencv | opencv_annotations enhancement | I use opencv3.2. Iam very happy that there is the opencv_annotations tool included.
However - It is very hard to set the first click right because you dont know exactly if your cursor is aligned correctly in both axis.
It would improve usability and usage speed a lot when the cursor would be tracked by dotted lines... | feature,category: apps | low | Minor |
235,161,264 | flutter | TextSpan gesture recognition 2.0: bubbling and managed recognizer lifetimes | ## Steps to Reproduce
1. compose a simple widget containing a `TextSpan` with a `recognizer`.
```dart
final recognizer = new TapGestureRecognizer()
..onTap = (){ print('pressed'); };
final textSpan = new TextSpan(
children: [new TextSpan(text: 'text')],
style: someStyle,
recognizer: recognizer
);
... | c: new feature,framework,f: gestures,c: proposal,P3,team-framework,triaged-framework | medium | Major |
235,252,215 | godot | UWP exported app does not work in release mode | I'm having a hard time figuring out this problem, so I'll leave this issue open until I (or someone else) can solve it. This is valid for 2.1 and 2.2, so I assume it is the same for master.
The UWP app exported does not run when installed, it just crashes on opening. The only debug info I have is the EventViewer, wh... | bug,topic:buildsystem,platform:uwp | low | Critical |
235,359,735 | kubernetes | Make label metadata from container images available to Pods and their containers | It should be possible for the user to apply custom labels to a pod's containers, and have those labels propagate down into docker.
This would be helpful for interacting with non-k8s-specific programs that access docker directly.
Related: #3764
Outdated: #13513 (I don't want to fight a reopen-war, but this pro... | sig/node,kind/feature,lifecycle/frozen,needs-triage | high | Critical |
235,368,663 | TypeScript | String Enum Initializer | # String Enum Initializer
A more typesafe and succinct way of defining enum types that compile to strings
## Search Terms
enum, string, string enum
default value
initializer
infer
## Proposal
It seems like you should be able to specify that you are using a string enum, and then you'd only have to write out ... | Suggestion,Awaiting More Feedback | high | Critical |
235,369,131 | go | encoding/json: marshal of custom type not quoted when using ",string" tag field | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
```
go version go1.8.3 linux/amd64
```
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="... | v2,NeedsInvestigation | low | Critical |
235,484,538 | opencv | OpenCV 3.2 Installation on Ubuntu 16.04 and with CUDA 8.0 SUPPORT |
- OpenCV => 3.2
- Operating System / Platform => Ubuntu 16.04 64 Bit
- Compiler => gcc 5.4
Hello Guys, I am in the process to build OpenCV with CUDA Support and I have stocked for a few days more or less at the same point.
1. First, I download opencv-3.2 from : https://github.com/opencv/opencv ,
opencv_contr... | bug,category: build/install,category: gpu/cuda (contrib) | low | Critical |
235,571,290 | TypeScript | Quick fix for variable of wrong type results in ugly formatting | **TypeScript Version:** nightly (2.5.0-dev.20170613)
**Code**
```js
/**
* @param {boolean} b
* @returns {string | number}
*/
function f(b) { return b ? "" : 0; }
/** @type {number} */
const x = f(false);
```
Click on `x` and use the quick for "Ignore this error message."
**Expected behavior:**... | Bug,Domain: Quick Fixes | low | Critical |
235,606,417 | vscode | On highlight/select text - cannot unhighlight/deselect text on click - need to do ESC | - VSCode Version: Code 1.13.0 (376c52b955428d205459bea6619fc161fc8faacf, 2017-06-08T16:43:13.058Z)
- OS Version: Windows_NT ia32 6.1.7601
- Extensions:
|Extension|Author|Version|
|---|---|---|
|git-easy|bibhasdn|1.9.1|
|file-icons|file-icons|1.0.3|
|auto-close-tag|formulahendry|0.4.2|
|auto-rename-tag|formul... | under-discussion,editor-drag-and-drop | medium | Critical |
235,620,437 | youtube-dl | [eitb] Add support for eitb.eus | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.06.12**
- [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections
- [x] [Sear... | site-support-request | low | Critical |
235,667,756 | go | proposal: spec: disallow NaN keys in maps | **Motivation**
Go currently supports NaN keys in maps through some [clever tricks](https://research.swtch.com/randhash).
The current spec is ambiguous on this behavior. It says:
> [I]f the map contains an entry with key `x`, `a[x]` is the map value with key `x` and the type of `a[x]` is the value […]
but "wi... | LanguageChange,Proposal,LanguageChangeReview | high | Critical |
235,670,948 | pytorch | Feature request: reverse_padded_sequence | Hi,
There's existing discussion around a more extendable RNN API, which as of yet hasn't moved forward. Given that, and that `PackedSequence`s exist, would a `reverse_padded_sequence` function be useful, or do you just see it as being unnecessary clutter?
In particular it'd take in a Variable of padded sequences ... | module: rnn,triaged,enhancement,actionable | medium | Major |
235,681,578 | rust | Enable some android host builder | There are some interest in running rust in android devices, see for example: termux/termux-packages#261, https://www.reddit.com/r/rust/comments/631bl2/exciting_rust_coming_to_android_and_chromebooks/
We have [disabled](https://github.com/rust-lang/rust/pull/41864) android builders, it would be great if we enabled s... | T-infra,C-feature-request | low | Major |
235,706,847 | rust | Avoid shipping duplicate artifacts in the host and target sysroot | All released compilers have identical dynamic libraries in two locations. The locations on Linux are:
* `$sysroot/lib/*.dylib`
* `$sysroot/lib/rustlib/$target/lib/*.dylib`
All of these artifacts are byte-for-byte equivalent (they're just copies of one another). These duplicate artifacts inflate our installed siz... | C-enhancement,E-help-wanted,C-optimization | medium | Critical |
235,773,514 | angular | UpgradeModule needs to support Hybrid Apps w/ Lazily loaded Hybrid Bundles, using the AngularJS Router | <!--
PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION.
ISSUES MISSING IMPORTANT INFORMATION MIGHT BE CLOSED WITHOUT INVESTIGATION.
-->
## I'm submitting a ...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (behavior that used to work and stop... | feature,freq1: low,workaround2: non-obvious,area: upgrade,P4,feature: under consideration | medium | Critical |
235,834,732 | angular | A required checkbox (within custom component) should always set its host to 'invalid' if unchecked | <!--
PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION.
ISSUES MISSING IMPORTANT INFORMATION MIGHT BE CLOSED WITHOUT INVESTIGATION.
-->
## I'm submitting a ...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (behavior that used to work and stop... | feature,freq2: medium,area: forms,feature: under consideration,feature: votes required | medium | Critical |
235,886,451 | go | net/http: Transport does not handle 302 redirects with link-local server address correctly | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
```
go version go1.8.3 linux/amd64
```
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="... | help wanted,NeedsFix | medium | Major |
235,956,453 | rust | Output code bloat when programming with a functional style | I have been wanting to experiment writing some code in Rust with a more “pure functional / Haskelly” style. To explain things more clearly, let’s say you have this type.
```rust
#[derive(Debug)]
struct Type {
field1 : u64,
field2 : u32,
field3 : Vec<u32>,
}
```
A very simple method to modify `f... | I-slow,C-enhancement,T-compiler,A-MIR,C-optimization | low | Critical |
236,029,670 | go | time: unchecked overflow in Add and AddDays | I'm trying to define a mapping between `time.Time` and a C++ time library.
The library that I'm trying to map to supports distinct "infinite past" and "infinite future" times, which need to be mapped to distinct `time.Time` values. The logical choices would seem to be the maximum and minimum representable `time.Time... | help wanted,NeedsFix | low | Critical |
236,045,719 | flutter | Hot restart while keyboard is up leaves the keyboard up | a: text input,platform-android,platform-ios,tool,framework,engine,t: hot reload,has reproducible steps,P3,team-engine,triaged-engine,found in release: 3.16,found in release: 3.19,fyi-text-input | medium | Critical | |
236,120,546 | vscode | Editor: scroll jumps randomly (related to Chrome, Electron, xinput) | - VSCode Version: starting at 1.13.0, up to current
- OS Version: Fedora 24-27
Looks like VS Code is listening to mouse scroll events, even while it is not active in the window.
Related:
https://bugs.chromium.org/p/chromium/issues/detail?id=608246
https://bugs.chromium.org/p/chromium/issues/detail?id=807187
... | bug,upstream,linux,electron,upstream-issue-linked | high | Critical |
236,126,111 | You-Dont-Know-JS | ES6 & Beyond: Early Completion | Hi! In the [Early Completion](https://github.com/getify/You-Dont-Know-JS/blob/master/es6%20%26%20beyond/ch3.md#early-completion) section there is a sentence:
`In addition to return(..) being callable manually, it's also called automatically at the end of iteration by any of the ES6 constructs that consume iterators, ... | for second edition | low | Minor |
236,161,330 | youtube-dl | ERROR: Unable to extract playlist data; | ## 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 that [x])
- Use *Preview* tab to see how your issue will actually look like
---
... | geo-restricted | low | Critical |
236,163,007 | rust | Add Vec::contains_ref which is worse for inference but less restrictive than Vec::contains | Using Vec::contains currently only works if the contains parameter is of the same &Type as the Vector elements. This means the parameter must be converted to the vec-item-type even though it is comparable with the type in the first place.
e.g. following code does not work, even though `impl<'a, 'b> PartialEq<str> fo... | A-collections,T-libs-api,C-feature-request | medium | Critical |
236,179,096 | TypeScript | [feature request] Support Custom Types for Tagged Template Expressions | ## Problem Statement
It is common to embed queries in tagged template expressions within typescript. For example, you might use sql:
```ts
const result = await querySQL(sql`SELECT * FROM users WHERE id = ${userID}`);
```
You also see a similar pattern with graphql:
```ts
const result = await queryGraph(... | Suggestion,In Discussion | medium | Major |
236,188,952 | TypeScript | [bug] TemplateStringsArray is incompatible with literal array type | **TypeScript Version:** 2.4.0
**Code**
```ts
// A *self-contained* demonstration of the problem follows...
interface SQLQuery<TResult> {
__result: TResult;
}
declare function sql(
literals: ['SELECT id FROM users'],
...placeholders: any[]
): SQLQuery<{id: number}>;
declare function querySync<TR... | Suggestion,In Discussion | low | Critical |
236,190,005 | rust | rustdoc still doesn't handle renames in reexports correctly | Test case:
```rust
mod internal {
pub struct BadName;
impl BadName {
pub fn f(&self) {}
}
}
pub use internal::BadName as GoodName;
```
Running `rustdoc a.rs`, it produces this page:
> .Add | Thinking about https://github.com/golang/go/issues/20678 (and #19624) made me wonder what other unchecked overflows are lurking in the standard library. I've found another one, but I don't have real-world code that triggers it. (I'm filing this issue just for reference.)
`(*sync.WaitGroup).Add` accepts an `int` para... | help wanted,NeedsFix,compiler/runtime | low | Major |
236,320,142 | youtube-dl | Extractor Error when attempting to download Vevo Playlist | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.06.12*. 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** ... | geo-restricted | low | Critical |
236,326,040 | youtube-dl | Vevo: attempting download a specific video a playlist, always downloads the first video of the list | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.06.12*. 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** ... | geo-restricted | low | Critical |
236,365,646 | youtube-dl | Can't download US Senate committee hearings | - [X] I've **verified** and **I assure** that I'm running youtube-dl **2017.06.12**
- [X] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections
- [X] [Sear... | geo-restricted | low | Critical |
236,380,386 | go | image/gif: Mention the uselessness of BackgroundIndex in the docs | Go version: Go 1.8 (but this is a documentation issue)
Quick introduction to GIF disposal methods:
In an animated GIF, a _disposal method_ can be set for each frame. It specifies to which state the canvas should be set before displaying the next frame when the current frame is finished being shown. There are three ... | Documentation,help wanted,NeedsInvestigation | low | Critical |
236,384,579 | go | x/net/bpf: tests are flaky due to timing assumptions | Test flake:
Seen on a trybot run:
```
--- FAIL: TestVMALUOpXor (0.10s)
vm_bpf_test.go:120: output byte count does not match:
- go: 1
- os: 0
vm_bpf_test.go:124: Go BPF and OS BPF packet outputs do not match
FAIL
FAIL golang.org/x/net/bpf 0.767s
```
Could somebody investigate? Test flakes make devel... | Testing,NeedsFix | low | Major |
236,435,082 | angular | Support generic SimpleChange<T> for use in ngOnChanges | ## I'm submitting a ...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (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 -->
[x] Feature request
[ ] Documentation issue or request
... | feature,area: core,core: lifecycle hooks,core: change detection,cross-cutting: types,feature: under consideration | high | Critical |
236,497,130 | godot | UWP game on XBox receives mysterious InputKey events | **Operating system or device - Godot version:** UWP(XBox), Godot 2.2
**Issue description:**
Although I'm just using the xbox controller, my code is printing InputKey events everytime I press any button or move the sticks in the controller.
The scancode is: 33554431, which seems to be a very strange code :)
| bug,platform:uwp,topic:input | medium | Major |
236,522,729 | rust | Format self correctly | Fix the formatting of `self` in the error message.
```
struct Foo {
field: i32
}
impl Foo {
fn foo<'a>(&self, x: &'a Foo) -> &'a Foo {
if true { self } else { x }
// now gives:
// error[E0611]: explicit lifetime required in the type of `self`
// |
// 20 | fn foo<'a>(&self, x: &'a... | C-enhancement,A-diagnostics,T-compiler,WG-diagnostics | low | Critical |
236,528,604 | flutter | Better handle case where a developer opens `Runner.xcodeproj` instead of `Runner.xcworkspace` | If a developer opens `Runner.xcodeproj` rather than `Runner.xcworkspace` things generally work OK (for example, you can Run with no problems) *until* they start to use plugins. Then they get errors such as:
<img width="401" alt="screen shot 2017-06-16 at 18 12 51" src="https://user-images.githubusercontent.com/1364417... | platform-ios,tool,t: xcode,P3,a: plugins,team-ios,triaged-ios | low | Critical |
236,547,149 | rust | properly handle anonymous regions appearing in return type- named-anon conflicts | These cases, going by the way #42669 for one named and other anonymous lifetime parameter , the error message generated would suggest ` consider changing type of self` to `&'a i32`. In the first case, this is fine but the second case, with `self.field` not being the return value, the message is wrong and should only su... | C-enhancement,A-diagnostics,T-compiler,WG-diagnostics | low | Critical |
236,570,553 | nvm | Installing "system" node using nvm? | From the README, it's not clear how I could install a system version of node (that will be used even when nvm isn't sourced). Is that a supported use case? | feature requests,needs followup,root / multiuser issues | low | Minor |
236,587,273 | go | proposal: spec: allow combining characters in identifiers | Forking from #16033, which had two related but different proposals in it. The proposal for this issue, by @robpike:
On a related note, some writing systems - Devanagari is one (see #5167) require combining characters. The current identifier rules forbid combining characters; perhaps that should be relaxed, although ... | LanguageChange,Proposal,LanguageChangeReview | medium | Critical |
236,611,082 | go | encoding/xml: lacks support for decoding arrays | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go version go1.8.1 windows/amd64
### What did you do?
Tried to store a struct containing [2]int as xml, then load it:
https://play.golang.org/p/TDMcHlf3fn
### What did you expect to se... | NeedsDecision,FeatureRequest | low | Major |
236,649,469 | go | runtime/cgo: call C exit to allow global destructors/atexit to run | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go version go1.8 linux/amd64
### What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="lin... | Unfortunate,help wanted,NeedsFix | low | Critical |
236,655,252 | go | x/tools/cmd/gomvpkg: mishandles main package | `gomvpkg -from foo/bar -to baz/bar` where `foo/bar` is `package main` renames package to `bar`, which makes it non-executable. May look silly, but the main intention was to take advantage of `-vcs_mv_cmd "git mv {{.Src}} {{.Dst}}"` part. gomvpkg should not rename main package. | Tools | low | Minor |
236,658,902 | TypeScript | Allow specifying only a subset of generic type parameters explicitly instead of all vs none | <!-- BUGS: Please use this template. -->
<!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript -->
<!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md -->
**TypeScript Version:** 2.3.0
https:... | Suggestion,In Discussion | high | Critical |
236,661,142 | TypeScript | Default exported named class throw an error if there is another class with same name | <!-- BUGS: Please use this template. -->
<!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript -->
<!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md -->
**TypeScript Version:** 2.4.0 / night... | Bug,Help Wanted,Domain: Error Messages,PursuitFellowship | low | Critical |
236,679,906 | rust | Need negative trait bound | ```rust
use std::convert::From;
struct SomeError;
enum Error<E> {
One(SomeError),
Two(E),
}
/// impl<E> From<SomeError> for Error<E> where E: !SomeError {
impl<E> From<E> for Error<E> {
fn from(error: E) -> Self {
Error::One(error)
}
}
impl<E> From<SomeError> for Error<E> {
... | A-trait-system,T-lang,A-specialization,C-feature-request | high | Critical |
236,710,137 | opencv | Can `–default-stream per-thread` be used with opencv ? | <!--
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
This is a template helping you to create an issue which can be... | category: build/install,category: gpu/cuda (contrib) | low | Critical |
236,710,779 | youtube-dl | [douyutv] unable to download video data | - [x] Bug report (encountered problems with youtube-dl)
- [x] Question
[DouyuTV] : Downloading video URL info
Traceback (most recent call last):
File "__main__.py", line 19, in <module>
File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\rg3\tmpkyaecyzu\build\youtube_dl\__init__.py", line 465, in mai... | broken-IE | medium | Critical |
236,729,761 | rust | Cannot call implementations of the `Fn*` traits on references | Attempting to implement `FnOnce` for a reference to a struct or a trait object:
```rust
#![feature(fn_traits)]
#![feature(unboxed_closures)]
struct S;
fn repro_ref(thing: &S) {
thing();
}
impl<'a> FnOnce<()> for &'a S {
type Output = ();
extern "rust-call" fn call_once(self, _arg: ()) ->... | A-type-system,P-medium,T-compiler,C-bug,F-unboxed_closures,T-types | low | Critical |
236,736,717 | TypeScript | Allow "Compiler Plugins" | From wiki:
> TypeScript Language Service Plugins ("plugins") are for changing the editing experience only
TypeScript plugins are very limited. Plugins should be able to:
* Apply Transformers
* Provide type definitions
* Override module resolver (`LanguageServiceHost#resolveModuleNames`)
* Emit code besid... | Suggestion,Needs Proposal | high | Critical |
236,752,588 | rust | Altivec/VSX support | Since llvm seems to have an almost viable intrinsics support now, is it possible to expose them in rust like the neon ones? | T-compiler,O-PowerPC,A-SIMD,C-tracking-issue,A-intrinsics | medium | Critical |
236,786,081 | react | False positive getDefaultProps warning when mixing development and production versions | As migrating from 15.4 to 15.5, I am rewrite original react components with `create-react-class`.
However, there is a warning.
```
react-15.5.4.js?bust=1497843639843:3287 Warning: getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.
```
... | Type: Bug,Component: Core Utilities,Difficulty: medium | high | Critical |
236,806,516 | angular | Child auxiliary routes and matrix parameters do not work together | <!--
PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION.
ISSUES MISSING IMPORTANT INFORMATION MIGHT BE CLOSED WITHOUT INVESTIGATION.
-->
## I'm submitting a ...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (behavior that used to work and stop... | type: bug/fix,freq2: medium,area: router,state: confirmed,router: aux routes,router: URL parsing/generation,P3 | 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.