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 |
|---|---|---|---|---|---|---|
224,872,940 | go | proposal: cmd/vet: add check for common error mishandling pattern | People have proposed adding a test to vet to catch certain unused errors. This can be very noisy, and there are many cases where the error is genuinely known to be nil and can be ignored, such as in a call to `bufio.Writer.Write`. Therefore a general "unused error" check will be too noisy and fail the precision criteri... | Proposal,Proposal-Hold,Analysis | medium | Critical |
224,873,084 | kubernetes | Standardize Container-Related Kubelet Prometheus Metrics | Currently, the Prometheus metrics exposed by Kubelet are simply those directly exported by cAdvisor. In light of the move to make metrics more easily accessible to third-party monitoring pipelines (as per the monitoring vision), we should standardize and document the set of metrics that are guaranteed to be exported.
... | sig/scalability,lifecycle/frozen | low | Major |
224,879,114 | TypeScript | checkJs: allow file extensions other than .js | First of all, this option is super exciting! Thank you so much for the TypeScript team to make such an incredible tool ❤️
Surprisingly enough, this week I wanted to have type check in a `*.jsfl` file (Scripting for Adobe Animate) and it worked pretty well using Facebook's Flow. They have [an option to configure a d... | Suggestion,Awaiting More Feedback | medium | Major |
224,973,928 | go | x/mobile: gomobile cause memory issue on android when use with react-native and fresco | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go version go1.7.4 darwin/amd64
### What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
G... | mobile | medium | Critical |
224,975,272 | rust | Specialization results in spurious mismatch type errors | An upstream crate presents me with this API:
```rust
trait Foo { }
trait Bar {
fn bar<F: Foo>(&self, f: F);
}
```
This is a fine API as far as it goes, but my problem is that I only care about one `Foo`, and I need `Bar` to be object safe. For my use case, this is the API I want:
```rust
struct MyF... | T-compiler,A-specialization,C-bug,F-specialization | low | Critical |
224,979,661 | youtube-dl | Feature Request: Add support for dowloading VideoLectures.NET's slides | Since it's quite tedious to download each slide of a playlist, can youtube-dl also download the ppt/pdf files while downloading the corresponding videos? | question | low | Minor |
225,136,853 | go | net/http: BenchmarkClientServerParallel4 hangs and is useless | It seems the BenchmarkClientServerParallel4 benchmark sometimes hangs while running. Sometimes it needs to be killed (first example) and sometimes it recovers on its own, leading to useless numbers.
In any case, I can't get good numbers out of it.
I suspect it's consuming too many sockets and running out of addre... | Testing,help wanted | low | Major |
225,165,478 | go | encoding/csv: add a way to limit bytes read per field/record | The [csv.Reader](https://golang.org/pkg/encoding/csv#Reader) has no way to limit the size of the fields read. In combination with [LazyQuotes](https://golang.org/pkg/encoding/csv/#Reader.LazyQuotes), this can lead to cases where a simple syntax error can make the Reader read everything until io.EOF into a single field.... | Proposal,FeatureRequest,Proposal-Hold | medium | Critical |
225,196,471 | go | proposal: spec: disallow T<->uintptr conversion for type T unsafe.Pointer | Currently, implementations permit conversions to/from `unsafe.Pointer` **and** to/from types with underlying type `unsafe.Pointer`.
Consequently, unsafe conversions can be hidden because package unsafe doesn't even have to be imported.
This was arguably an "implementation mistake" which we should fix. See also #1... | LanguageChange,Proposal,LanguageChangeReview | low | Major |
225,205,683 | nvm | Install script should complain if $NVM_DIR isn't a valid base path | https://github.com/creationix/nvm/issues/1520#issuecomment-298117770 is an example of a user having an outdated `NVM_DIR` setting in their profile file.
The installation script should detect when the NVM_DIR does not exist (and ideally backtrack up til it can find the first nonexistent directory) and inform the user... | feature requests,pull request wanted,installing nvm | low | Minor |
225,224,226 | angular | [animations] Missing Support for SVG-related Animations | **I'm submitting a ...** (check one with "x")
```
[x] bug report => search github for a similar issue or PR before submitting
[ ] 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: animations,freq1: low,P4,feature: under consideration,feature: votes required | medium | Critical |
225,225,377 | rust | Tracking issue for RFC 1824: Proposal for default crate recommendation ranking | This is a tracking issue for the RFC 1824 (rust-lang/rfcs#1824).
**Steps:**
- [x] [Sort crates by number of downloads in the last 90 days](https://github.com/rust-lang/crates.io/issues/702)
- [x] [Render contents of README on crate pages](https://github.com/rust-lang/crates.io/issues/81)
- [ ] [Have `cargo new`... | B-RFC-approved,T-cargo,C-tracking-issue | low | Major |
225,228,428 | javascript | Define public API | Thank you all for this valuable resource. I was catching up on current practices with respect to "private" properties in JavaScript when I came upon the discussion in #490. It seems to me that the definition of public API used by this style guide is stricter than what SemVer describes. For example, the guide currently ... | question,pull request wanted,editorial | low | Minor |
225,228,588 | rust | Inference disrupted by trait bound that is redundant with a HRTB | This compiles:
```rust
trait Trait<'a> {}
struct S<T>(T);
impl<'a, T> Trait<'a> for S<T> where T: for<'b> Trait<'b> {}
fn main() {}
```
This following does not. It seems like the impl already has `T: for<'b> Trait<'b>` so adding `T: Trait<'a>` should not affect the behavior.
```rust
trait Trait<'a>... | A-lifetimes,A-trait-system,T-compiler,A-inference,C-bug,T-types,fixed-by-next-solver | low | Critical |
225,229,911 | rust | Tracking issue for RFC 1868: A portability lint | This is a tracking issue for the RFC "A portability lint" (rust-lang/rfcs#1868).
**Steps:**
- [ ] Implement the RFC (cc @rust-lang/compiler -- can anyone write up mentoring instructions?)
- [ ] Adjust documentation ([see instructions on forge][doc-guide])
- [ ] Stabilization PR ([see instructions on forge][stab... | A-lints,B-RFC-approved,T-lang,E-help-wanted,C-tracking-issue,finished-final-comment-period,disposition-close,Libs-Tracked,S-tracking-unimplemented | medium | Major |
225,245,596 | opencv | OpenCVFindMKL fails to find MKL 2017 | <!--
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
This is a template helping you to create an issue which can be... | bug,category: build/install | low | Critical |
225,251,363 | flutter | Input validator async | The input validator does not support future<String> so if i want to validate making a request i can't because flutter does not support sync http request. Any suggestion? | a: text input,c: new feature,framework,customer: crowd,c: proposal,P3,team-text-input,triaged-text-input | high | Critical |
225,252,643 | go | cmd/asm: change canonical spelling of CMOVLEQ to CMOVL.EQ etc | This proposal is originally from @rsc in issue #14069 and is about `CMOVLEQ` being ambiguous. I Extracted it as I believe it deserves its own issue.
> Recounting this to @aclements I figured out what is going on with CMOVLEQ. The GNU form is CMOV[cond][size] but the form added for Go is CMOV[size][cond]. So GNU's cm... | help wanted,Proposal,Proposal-Accepted,NeedsFix,compiler/runtime | low | Critical |
225,253,071 | youtube-dl | Support for OnBase Training Videos | Can you guys add - https://training.onbase.com/en/courses/eLearning and https://training.onbase.com/en/courses/premium. We have a premium login through work, but it has been taking me awhile to grab them individually. I am on version 2017-04-28. Thank you and let me know if you have any questions.
Here is the logs ... | site-support-request,account-needed | low | Critical |
225,283,521 | TypeScript | Make 'new.target' emit more precautions | I noticed that the polyfill for `new.target` ...
```
class Foo {
constructor() {
if (new.target)
alert("Good.");
else
alert("Bad!");
}
}
```
... outputs to this:
```
var Foo = (function () {
function Foo() {
var _newTarget = this.constructor;
... | Suggestion,Awaiting More Feedback | low | Major |
225,285,834 | realworld | Realistic data for RealWorld? | I wonder if it's possible/feasible/helpful to fill the production db with more realistic data from some open data sets that might be floating around. It would look better in FE demos than "aaaaa", "sample title" etc... BE repos could also use it for testing their dbs. Just a thought.
| Status: RFC,v2 changelog | low | Major |
225,301,862 | go | spec: clean up initialization language | The spec provides an value for uninitialized variables of some types, such as "The value of an uninitialized pointer is `nil`." This text is additionally redundant with the text at the end of the Variables section, which reads "A variable's value is retrieved by referring to the variable in an expression; it is the mos... | Documentation,NeedsInvestigation | low | Minor |
225,302,618 | go | spec: un-conflate variables and values | The notions of *variable* and *value*, although meaningfully distinct, are often conflated in the spec. Some examples:
1. Dynamic types are defined as a property of interface variables, but are properly a property of interface values. The definition of static type also treats elements of structs, arrays, and slices ... | Documentation,NeedsInvestigation | low | Minor |
225,317,432 | youtube-dl | [Go] Support live TV | ## 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,tv-provider-account-needed | low | Critical |
225,326,231 | pytorch | BatchNorm should use Bessel's correction consistently | Currently, Bessel's correction is applied to the running variance estimator in BatchNorm on [this line](https://github.com/pytorch/pytorch/blob/master/torch/lib/THCUNN/BatchNormalization.cu#L196) and the correction is not applied at train time. While the original paper for [BatchNorm](https://arxiv.org/abs/1502.03167) ... | module: nn,triaged,module: norms and normalization | low | Major |
225,335,100 | go | spec: an uninitialized slice (and other types) is nil, yet a slice variable is initialized to its zero (nil) value | I have two small issues with the definition of a slice type:
> A slice, once initialized, is always associated with an underlying array that holds its elements.
This is not true of a `nil` slice. Since this refers to initialization, it is talking about variables and not values. Changing this to "A non-`nil` slice... | Documentation,NeedsInvestigation | low | Major |
225,337,803 | rust | make install for multiple targets fails with install.sh not found | When configured for multiple targets (`--target=x86_64-unknown-linux-gnu,i686-unknown-linux-gnu,...`), `make install` exits with a file not found error while trying to install the std component for a target different from the host. Apparently, the `dist` step, which should create the `install.sh` file, is not being run... | T-bootstrap,C-bug | low | Critical |
225,343,054 | realworld | Support Bearer for authentication scheme | The RFC specification requires the use of '**Bearer**' as the authentication scheme. The '**Bearer**' scheme is also registered with the IANA. Most JWT packages and tools use '**Bearer**' as the default scheme.
http://www.iana.org/assignments/http-authschemes/http-authschemes.xhtml
https://tools.ietf.org/html/rfc67... | Status: RFC,v2 changelog | low | Major |
225,358,791 | rust | Improve diagnostics for parse errors in proc macro output | Currently we make no real effort to inform users of parse errors in procedural macro output: https://github.com/rust-lang/rust/blob/9c15de4fd59bee290848b5443c7e194fd5afb02c/src/libsyntax_ext/deriving/custom.rs#L105
People are stumbling on this in the wild: https://www.reddit.com/r/rust/comments/689ogb/how_to_debug_p... | A-diagnostics,A-parser,T-compiler,A-proc-macros | medium | Critical |
225,420,725 | go | runtime/pprof: nil pointer panic in TestMathBigDivide and android/arm | The Android/arm builder failed once:
https://build.golang.org/log/49d8e3585a3501d3f82d92c762aa3d5724d45198
with the stack trace:
````
--- FAIL: TestMathBigDivide (0.31s)
panic: runtime error: invalid memory address or nil pointer dereference [recovered]
panic: runtime error: invalid memory address or nil p... | NeedsInvestigation,mobile,compiler/runtime | low | Critical |
225,429,243 | youtube-dl | Allow to keep all intermediate files. | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.05.01*. 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** ... | request | low | Critical |
225,450,828 | TypeScript | Enum not block-scoped given closure and --target es5 | **TypeScript Version:** nightly 2.4.0-dev.20170501
**Code**
```ts
let getE;
{
enum E { A = 1 }
getE = () => E;
}
{
enum E { A = 3 }
}
console.log(getE().A);
```
**Expected behavior:**
Always prints `1`.
**Actual behavior:**
Prints `3` under `--target es5`.
This issue is simil... | Bug | low | Minor |
225,479,172 | opencv | Support for CODEC_ID_H264_OMX | ##### System information (version)
- OpenCV => 3.2
- Operating System / Platform => Raspberry Pi
##### Detailed description
On the Raspberry Pi, OpenMax (h264_omx) can be enabled while compiling FFMPEG. However there doesn't seem a way with OpenCV to specify the h264_omx codec in the VideoWriter class.
https:/... | feature,priority: low,category: videoio | low | Major |
225,491,008 | TypeScript | Flag boolean in comparison operator operands as errors | From https://github.com/Microsoft/TypeScript/issues/15444#issuecomment-298055832
```ts
var x: boolean, y: boolean;
if (x > y) { // suspicious!
}
``` | Suggestion,Help Wanted,Good First Issue | low | Critical |
225,517,013 | youtube-dl | [bbc.co.uk] bug: Downloading Audio Described version now grabs Original version | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.05.01*. 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 |
225,523,798 | svelte | Equivalent of Vue's out-in transition mode | For elements that are positioned statically or relatively, intros that happen at the same time as outros can be problematic:
```html
{{#if foo}}
<div transition:fade='{duration:1500}'>yep</div>
{{else}}
<div transition:fade='{duration:1500}'>nope</div>
{{/if}}
```

**Code**
```ts
declare function f([x, y]: [number, string]): void;
```
**Expected behavior:**
`src/a.ts(1,20): error TS1337: Destructuring is not allowed in a declaration.`
**Actual behavior:**
`src/a.ts(1,20): error TS2488: Type must hav... | Bug | low | Critical |
225,532,086 | svelte | Staggered transitions | A common requirement is to *stagger* transitions:

In the GIF, it's been faked with an index and a delay:
```html
<g class='bars'>
{{#each points as point, i}}
{{#if show}}
<rect
... | feature request,stale-bot,temp-stale | low | Major |
225,535,669 | go | runtime/pprof: improve docs around short-lived processes | ### What version of Go are you using (`go version`)?
`go version go1.8.1 darwin/amd64`
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
GOPATH="/Users/v832043/Code"
GORACE=""
GOROOT="/usr/... | Documentation,help wanted,NeedsFix,compiler/runtime | low | Critical |
225,538,087 | flutter | "Lost connection to device" randomly when not doing anything in particular | We should keep closer track of what adb is doing. Is it dying on us? The logs don't say.
```
[+1366 ms] I/flutter (26953): <some stuff i was printing to the console>
[ +13 ms] I/flutter (26953): <ditto>
[ +1 ms] I/flutter (26953): <ditto>
[ ] I/flutter (26953): <ditto>
[ ] I/flutter (26953): <d... | platform-android,tool,customer: crowd,P2,team-android,triaged-android | low | Critical |
225,550,777 | flutter | Add a doctor validator warning for multiple adb installations | Just helped track down an issue an internal customer was having whereby multiple `adb` instances were fighting each other:
* `/usr/bin/adb` existed as part of the `adb` Debian package that was installed on the user's system. It seemed to be restarting its server automatically when killed because of an entry in `ini... | team,tool,t: flutter doctor,P3,team-tool,triaged-tool | low | Minor |
225,567,694 | godot | Rendering is broken on UWP | Just as a note to remind that the renderer is not working on UWP. I managed to get a GLES3 context but it still doesn't work with 3D games. | bug,topic:rendering,topic:porting,confirmed,platform:uwp | low | Critical |
225,569,842 | three.js | toJSON() and fromJSON() | ##### Description of the problem
We have toJSON api.
As a consistency, I think we should have fromJSON.
It will be powerful for data management.
##### Three.js version
- [x] Dev
##### Browser
- [x] All of them
- [ ] Chrome
- [ ] Firefox
- [ ] Internet Explorer
##### OS
- [x] All of them
- [ ] Wi... | Suggestion | medium | Major |
225,577,563 | rust | confusing error message saying variable must be valid for anonymous lifetime that it appears to live long enough for | I initially [raised this on twitter](https://twitter.com/davidbaron/status/856772994294788097) without a reduced testcase, and @SimonSapin [suggested I file an issue](https://twitter.com/SimonSapin/status/856795953851805696) because the error message could be improved.
A reasonably-reduced testcase for this error is... | C-enhancement,A-diagnostics,A-lifetimes,T-compiler | low | Critical |
225,578,318 | kubernetes | Unit test for pkg/kubelet/remote | There is no unit tests for pkg/kubelet/remote. We should add a fake runtime and add unit tests for the package.
- [x] Add a fake remote runtime #49762
- [ ] Add unit tests | area/kubelet,kind/cleanup,sig/node,help wanted,lifecycle/frozen,needs-triage | low | Major |
225,636,480 | go | encoding/base64: encoding is slow | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go 1.8.1
### What operating system and processor architecture are you using (`go env`)?
amd64, darwin
### What did you do?
go test encoding/base64 --bench=BenchmarkEncodeToString
... | Performance,NeedsFix | low | Major |
225,672,815 | go | x/image/font: add a tool for running Unicode’s text rendering tests | Would you be interested in testing the Go font library through [Unicode text rendering tests](https://github.com/unicode-org/text-rendering-tests)?
I’m maintaining this test suite for Unicode, and would volunteer to do the integration with the test framework. But somebody familiar with Go would have to write a comma... | Testing,NeedsDecision | low | Minor |
225,707,194 | go | proposal: spec: disallow LTR/RTL characters in string literals? | TL;DR https://play.golang.org/p/LPkPTRF7fC
The above code looks quite plain and obvious, except it does something completely different than you'd expect (feel free to run it). The obvious thing that should happen is that it counts the number of bits set in the given string. The non-obvious thing that happens is that... | Proposal,Proposal-Hold | medium | Critical |
225,708,564 | go | proposal: spec: disallow unicode import paths to avoid punycode attacks | If you take a look at the following snippet https://play.golang.org/p/SpXVFRLUlX, it will look completely benevolent. It just pulls in the terminal package from the extended stdlib and read the user's password.
If you copy paste this snippet into a file and try to run it, you will get an error message along the line... | Proposal,Proposal-Hold | low | Critical |
225,724,105 | neovim | Resize windows "upwards" | AFAICT (documentation and brief source check), window resizing always goes "downwards"; if a window is expanded or shrunk, it shrinks or expands the buffer below it unless there is no downward space, and only then shrinks the buffer above.
However, sometimes I have buffers above the current window that I'd rather sh... | enhancement,ui | low | Minor |
225,746,538 | neovim | :Install command (was: "add windows explorer integration") | Would be good to have something like `nvim --register` so it can register OS integrations (Vim has install.exe). Most likely this would be a neovim-qt feature.
Having `Edit in NeoVim` would be the minimal requirement but better if it can also figure out all open instances of neovim and have an ability to open in tha... | enhancement,platform:windows,ux,complexity:low | medium | Major |
225,756,790 | neovim | set job priority / niceness | It would be nice if you could configure the niceness of a job process via its options.
This was asked for Neomake in https://github.com/neomake/neomake/issues/1271.
I've looked quickly at libuv, but it does not appear to have native support for it?
The workaround is to either wrap the command in `nice` before ... | enhancement,job-control | low | Minor |
225,759,315 | rust | [RFC] figure out story around linear queries | PR #41625, in an effort to rationalize the MIR pipeline, introduced queries that yield a `Steal` type. Cribbing from a [rather long and overwrought comment that I wrote][c], the idea is to model linear queries as ordinary queries that return a `&'tcx Steal<D>`, which supports two operations ("borrow" and "steal"). Once... | T-compiler,A-MIR | low | Critical |
225,795,077 | pytorch | Optimizers can't be moved to a different GPU | There is currently no good way to set the GPU id for an optimizer state. This is particuarly relevant in the use case that model training stops, and needs to be restarted on a different gpu.
I'm currently working around that problem with the following:
```
def set_gpu_recursive(var, gpu_id):
for key in var:
... | feature,triaged | low | Major |
225,841,197 | go | cmd/compile: missing line numbers with cgo pragmas | Reproduce: `go install -race cmd/compile`, `compilebench -run=SSA -cpuprofile=c`, `go tool pprof -lines $(go tool -n compile) c`.
Result: entries like `__tsan_read :-134217728`. That's no filename, line number underflow. Ideally it'd refer to the place where the symbol was defined. We have the position information a... | NeedsInvestigation,compiler/runtime | low | Minor |
225,865,261 | opencv | opencv builds unusable instruction sets | I was trying to install caffe and it gave me a wonderful error message stating that opencv had instructions sets built that couldn't be used. So, naturally I rebuilt opencv with those problematic instruction sets explicitly turned off. Below is that cmake command. Caffe no longer gave me that error message. I'm on a in... | incomplete | low | Critical |
225,948,417 | neovim | win: tui: support :stop, :suspend (CTRL-Z) | https://github.com/neovim/neovim/pull/6315#issue-215261397 | platform:windows,tui | low | Major |
226,018,928 | go | encoding/gob: document or improve handling of untrusted data | It is pretty easy to construct small malicious encoding/gob packets with large impacts, e.g. by using a large map hint (CL 40113).
I don't see:
* anything in the encoding/gob docs that discusses safe handling of untrusted data
* anything in the encoding/gob API that would support checking whether untrusted data ... | NeedsDecision | low | Major |
226,060,592 | TypeScript | Filling in an implementation using VS Code will expand types | ```ts
type Foo = [string, number];
interface Bar {
test(a: Foo): void;
}
class Baz implements Bar{
}
```
Using fill in Baz implementation quick fix:
```ts
type Foo = [string, number];
interface Bar {
test(a: Foo): void;
}
class Baz implements Bar {
test(a: [string, number]): void {
... | Bug,VS Code Tracked,Domain: Quick Fixes | low | Critical |
226,098,263 | pytorch | Change sparse_mask to take indexing mask, rather than entire sparse tensor | Currently, sparse_mask takes a sparse tensor, throws out the values, and uses just the indices to mask a dense tensor. This is not a very good API; for one, it causes trouble when the mask tensor is of different type of the dense tensor you're masking (this shouldn't cause any problems, but right now the dispatcher cho... | module: sparse,feature,triaged | low | Critical |
226,129,255 | svelte | Browser support | A few people have asked about browser support. We probably should be able to answer the question conclusively (maybe even running some tests in Browserstack or whatever?), and perhaps tell people which polyfills they'll need.
For example, `window.performance.now` isn't supported in IE9, but is used in transitions (h... | popular,documentation | high | Major |
226,150,510 | go | math/big, go/constant: fuzz with go-fuzz | go-fuzz found a few math/big and go/constant bugs indirectly, via go/types and cmd/compile:
https://github.com/golang/go/issues/20227
https://github.com/golang/go/issues/20228
That's a pretty inefficient way to find them, though. We should run it on them directly and flush out a few more.
@ALTree @dvyukov
... | Testing,help wanted | low | Critical |
226,172,400 | go | encoding/base64: integer overflow in (*Encoding).EncodedLen | ### What version of Go are you using (`go version`)?
1.8.1
### What operating system and processor architecture are you using (`go env`)?
linux/386
### What did you do?
I called `base64.RawStdEncoding.EncodedLen()` with `1<<30` (2 to the 30th power) on a 32-bit platform, as in line 9 of https://play.gola... | help wanted,NeedsFix | low | Minor |
226,235,584 | pytorch | avg_pool functions hold input for backward | on backward avg pool only uses shape of the saved tensor, not the actual tensor, we should thus only hold shape, but this needs modifications in THNN and THCUNN.
https://github.com/pytorch/pytorch/blob/master/torch/nn/_functions/thnn/pooling.py#L316 | feature,triaged,module: pooling | low | Minor |
226,272,631 | go | x/mobile: gomobile build ios app can not be upload to itunes connect | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go 1.8
gomobile version +0f31740 Wed Apr 19 17:20:05 2017 +0000 (android,ios); androidSDK=
### What operating system and processor architecture are you using (`go env`)?
macos
xcode 8.1
### ... | mobile | low | Critical |
226,276,385 | vscode | Stop rendering pseudo-italic fonts when italic is not available | When using fonts which don't have italic variants, such as Fira Mono, VScode renders them anyway, using a simple skew. Goes the same for emojis.
This looks quite bad, and should be avoided.
| feature-request,upstream,font-rendering | medium | Major |
226,302,155 | vscode | [html] provide translations of tag documentation | - VSCode Version: Code 1.11.2 (6eaebe3b9c70406d67c97779468c324a7a95db0e, 2017-04-13T08:03:11.395Z)
- OS Version: Windows_NT ia32 10.0.14393
- Extensions: none
---
Steps to Reproduce:
Almost stuffs are displayed in Korean becuase dispaly language is already configured to "ko(Korean)". But intelliSense of HTML is ... | feature-request,html,l10n-platform | medium | Critical |
226,384,868 | vscode | Improved search in "Go to file" panel | Would love to see a more accurate search for what I'm actually searching for. For example when I'm searching for "archive" and I'am in mid sentence i get these results:

I think, at least for me that the ... | feature-request,search,quick-open | medium | Critical |
226,393,877 | rust | Reordering where clauses can change program behavior | Here's a contrived example:
```rust
use std::fmt::Debug;
trait Left<T> {}
trait Right<T> {}
trait Join<U> {
fn test();
}
// With the reordering,
// impl<T, U> Join<U> for T where T: Right<U>, T: Left<U>, U: Default + Debug {
// you'll get a different output
impl<T, U> Join<U> for T where T: Lef... | A-trait-system,T-compiler,C-bug,T-types | medium | Critical |
226,427,777 | javascript | Documentation: react/jsx-filename-extension can break checks without --ext arguments | Adding the `react/jsx-filename-extension` is just fine as a rule, but adding some direction that you will need to add the `--ext=js --ext=jsx` arguments to the eslint cli for it to work. It might cause issues for users who are not aware of this when they start using the `eslint-preset-airbnb` package. Adding a line to ... | pull request wanted,editorial | low | Minor |
226,441,676 | flutter | If a line is ellipsised, the text alignment is applied to the truncated line before the ellipsis is added | ```dart
import 'package:flutter/material.dart';
import 'dart:ui';
void main() {
runApp(new MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new CustomPaint(
painter: new Eazel(),
);
}
}
class Eazel extends CustomPainter {
... | engine,a: typography,has reproducible steps,P2,team-engine,triaged-engine,found in release: 3.19,found in release: 3.20 | low | Major |
226,444,933 | flutter | Cannot draw right-aligned or centered text without width constraint | You cannot draw text that is right-aligned or centered, if you want it to be completely unconstrained (so it will overflow or get clipped, rather than wrapping).
If you left-align the text you can set its width constraint to infinity, but since we use that constraint to align the text, if it's infinite, the text wil... | c: new feature,framework,a: internationalization,a: typography,P2,team-framework,triaged-framework | low | Minor |
226,455,665 | flutter | Generate the plugins .java/.h/.m files outside of user source directories | Let's move various codegen'ed outputs into the /build directory of the project instead of /android or /ios folders so that they're not user visible, or checked in-able, `flutter create`d, or in the example projects.
This is mostly consistent with codegen'ed frameworks such as dagger to not let intermediate code be ... | platform-android,tool,t: gradle,customer: crowd,t: xcode,dependency: android,P2,team-android,triaged-android | low | Minor |
226,484,254 | vscode | [theming] Separate workbench theme and syntax theme | After upgrading to VS Code 1.12, I noticed that the workbench theme of the built-in **Monokai** color theme had been changed. However, I preferred the default workbench theme a lot.
But in VS Code, there are only two types of themes: **Color Theme** and **Icon Theme**, and the workbench theme is tightly coupled with... | feature-request,themes | high | Critical |
226,610,894 | pytorch | [feature request/proposal] Relax scale_factor for nearest neighbor upsampling | Much like #1257, I'd like to allow nearest neighbor upsampling to be non-uniform. From what I can tell, this means going down into cuda/c level code.
It seems like [this](https://github.com/pytorch/pytorch/blob/master/torch/lib/THCUNN/generic/SpatialUpSamplingNearest.cu) is the relevant file, in particular lines [1... | todo,feature,triaged | low | Minor |
226,624,964 | pytorch | Optimizer should track parameter names and not id | In the optimizer's `param_groups['params']` the order of the parameters (in which they were given to the optimizer's init) matters.
In load_state_dict the snippet shows this :
```
id_map = {old_id: p for old_id, p in
zip(chain(*(g['params'] for g in saved_groups)),
chain(*(g['params'] for g in groups)))}
... | module: optimizer,triaged | medium | Critical |
226,665,233 | realworld | Standardize README's for completed repos | For someone who is landing on an example repo and has no idea what RealWorld is, I'd imagine they'd be thinking "uh, wtf is this". For example, the backend codebases don't mention how to get an example frontend setup & running (much less where you can choose a frontend at all). This could easily be fixed with a standar... | Status: RFC,v2 changelog | low | Major |
226,695,566 | youtube-dl | SITE REQUEST: tv.m24.ru | Hello dear coders!
Now I want to ask you about adding support of tv.m24.ru into YDL.
The video streaming tech. is chunks based, i.e., the same as on russia.tv, vesti.ru, 1tv.ru.
Also this tv.m24.ru contains two resolutions' sets those user can choose.
Here is the log:
C:\>youtube-dl -F -v http://tv.m24.ru/videos/1... | site-support-request | low | Critical |
226,706,037 | opencv | Feature request: Support floating point image blending by FeatherBlender and MultiBandBlender | ##### System information (version)
- OpenCV => Latest from github
- Operating System / Platform => Ubuntu 16.04
- Compiler => GCC 5.4
##### Detailed description
Currently only 16 bit image (CV_16SC3) is supported by FeatherBlender and MultiBandBlender, is it possible add support for 32 bit floating point image... | feature,category: stitching | low | Critical |
226,718,368 | flutter | document flutter clause in build.gradle | In a newly-created Flutter directory, android/app/build.gradle contains this mysterious code snippet:
```
flutter {
source '../..'
}
```
This seems to be implemented in flutter_tools/gradle/flutter.gradle. However, that file has few comments and none of them are high level.
It seems like we should add ... | tool,d: api docs,t: gradle,P2,team-tool,triaged-tool | low | Minor |
226,730,366 | TypeScript | [Discussion] Better Way to Declare Globals in JavaScript files | **Problem**
Using the new `checkJs` feature, it is currently difficult to tell TypeScript about a global variable:
```js
// @ts-check
myGlobal
window.myVar = 'foo';
```
<img width="458" alt="screen shot 2017-05-05 at 4 44 20 pm" src="https://cloud.githubusercontent.com/assets/12821956/25767871/268f4b00-3... | Suggestion,Needs Proposal,VS Code Tracked,Domain: JavaScript | high | Critical |
226,786,888 | godot | Content margin of stylebox does not work with Popup | **Operating system or device - Godot version:**
all version of Godot
**Issue description:**
<!-- What happened, and what was expected. -->
Content margin value does not work with `Popup` and it's inherited `Control`s.
Would `Popup` be better inherited by `Container` instead of `Control`? | enhancement,discussion,confirmed,topic:gui | low | Major |
226,788,587 | rust | Missed bound check removal | A little test program:
```
#[inline(never)]
fn almost_product(nums: &[i32]) -> Vec<i32> {
let mut result = vec![0; nums.len()];
let mut prod = 1;
for (i, &x) in nums.iter().enumerate() {
result[i] = prod;
prod *= x;
}
result
}
fn main() {
let data = [1, 2, 3, 4... | A-LLVM,I-slow,C-enhancement,A-codegen,T-compiler | low | Minor |
226,791,197 | vscode | [theming] Allow theming workbench fonts | Including
- Family
- Weight
- Style/Variant/Features
- Include typeface files in theme pack
- Per-language settings (to support fallbacks, cf. #5260) | feature-request,themes | high | Critical |
226,791,200 | vscode | [theming] Theming for workbench icons | Give one way to specify UI icons. | feature-request,themes | low | Major |
226,872,752 | go | cmd/cgo: never generate Go fields for zero-sized C fields | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
tested with 1.7.5 and 1.8.1
### What operating system and processor architecture are you using (`go env`)?
linux/amd64
### What did you do?
```go
package main
/*
struct foo {
int x... | NeedsFix,compiler/runtime | low | Major |
226,874,734 | youtube-dl | Site Support Request: samanthabee.com / Core Video Player | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.05.07*. 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** ... | site-support-request | low | Critical |
226,882,931 | pytorch | Cannot find Intel MKL | Attempting to compile pytorch from git, Intel MKL 2017 is not found unless I change in `torch/lib/TH/cmake/FindMKL.cmake`:
```
- SET(mklvers "em64t")
+ SET(mklvers "intel64")
```
and define in the `build_all.sh` script in the cmake call `INTEL_MKL_DIR=$MKLROOT` and `CMAKE_LIBRARY_PATH=/opt/intel/compilers_and_... | module: dependency bug,module: build,triaged,module: mkl | low | Major |
226,884,307 | godot | Light2D Mix/Mask mode issues with other lights | Windows 10 x64 - Gtx 680 - GD v.3.0 x64
**Hello, Godot devs...**
I have come across a very make or break issue for me in Godot, and that is when I use a light2D with the blending mode Mix or Mask and if that light2D gets close to some or sometimes all of them, light2D's then it will randomly turn off / or get cut i... | bug,topic:rendering,confirmed,topic:2d | medium | Major |
226,886,085 | rust | “type must outlive the static lifetime” makes no sense | For the following code
```
pub trait Arbitrary: Sized + 'static {}
impl<'a, A: Clone> Arbitrary for ::std::borrow::Cow<'a, A> {}
```
The diagnostic looks like this:
```
error[E0477]: the type `std::borrow::Cow<'a, A>` does not fulfill the required lifetime
--> <anon>:3:20
|
3 | impl<'a, A: Clone> A... | C-enhancement,A-diagnostics,T-compiler | low | Critical |
227,011,705 | TypeScript | Noncrashing property access through non-null assertion operator should narrow that property to NonNullable |
**TypeScript Version:** 2.3 (Playground)
**Code**
Using `strictNullChecks`.
```ts
interface Foo {
optional?: number;
}
interface Bar {
foo?: Foo;
}
function test(bar: Bar) {
if (bar.foo!.optional) {
let num: number = bar.foo.optional;
}
if (bar.foo && bar.foo.opt... | Bug,Help Wanted | low | Critical |
227,044,797 | TypeScript | Object key signature is not taken into account with destructive assignment on method definition level | <!-- BUGS: Please use this template. -->
**TypeScript Version:** 2.3.2
**Code**
```ts
interface IMyInterface {
onChange(changes : {[key : string] : {newValue : any, oldValue : any}})
}
class MyClass implements IMyInterface {
onChange({config}) {
console.log(config);
}
}
class MyAnotherCla... | Bug | low | Critical |
227,074,518 | go | proposal: io/v2: add Context parameter to Reader, etc. | Related to #18507, it would be nice if the `io` interface methods all took in `Context` as their first parameter. This allows a cancellation signal to be attached directly to the I/O calls that are using them, instead of requiring an out-of-band method, as in `net.Conn`.
This is obviously a backward-incompatible ch... | v2,Proposal | high | Critical |
227,097,304 | pytorch | [feature request] Support tensors of different sizes as batch elements in DataLoader | Motivating example is returning bounding box annotation for images along with an image. An annotation list can contain variable number of boxes depending on an image, and padding them to a single length (and storing that length) may be nasty and unnecessarily complex.
```python
import torch.utils.data
loader = tor... | feature,module: dataloader,triaged,module: nestedtensor | medium | Critical |
227,104,300 | flutter | Document why files are in the template | Before we add more files to the template, I think we should make sure the template contains a README that documents, for each file in the template:
* What the file is for
* Why you would edit that file
* How to verify that the edits are valid
* How to test the file
The template is growing really big and it's n... | team,tool,d: examples,d: wiki,P2,team-tool,triaged-tool | low | Major |
227,167,656 | TypeScript | Extra entries for JavaScript auto complete(intellisense) make no sense | <!-- 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.2.1 / night... | Suggestion,Committed,Domain: Completion Lists,Domain: JavaScript | low | Critical |
227,184,064 | go | os/exec: Cmd produces misleading error when using Setpgid | ### What version of Go are you using (`go version`)?
```
$ go version
go version go1.8.1 darwin/amd64
```
### What operating system and processor architecture are you using (`go env`)?
```
$ go env
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
GOPATH="/Users/aro... | NeedsInvestigation | low | Critical |
227,185,184 | rust | Non-optimal derived PartialEq for POD struct | Given a struct like
```rust
pub struct Foo {
a: bool,
b: bool,
c: bool,
d: bool
}
```
I would expect generated asm to be doing a dword comparison to check for equality. However, that's not what is seen unless explicitly transmuting before the comparison (interactive: https://godbolt.org/g/k... | A-LLVM,I-slow,C-enhancement,T-compiler,C-optimization | low | Minor |
227,195,760 | rust | Compiling to Webassembly quickly fills up available RAM and crashes computer | When compiling to wasm on a Dell XPS 13 running Ubuntu 16.10, rustc begins using more and more RAM until the computer begins thrashing and eventually becomes unusable.
rustc version: `rustc 1.19.0-nightly (f4209651e 2017-05-05)`
Judging by the `--verbose` output, cargo doesn't even get as far as calling `emcc` be... | I-slow,C-enhancement,O-wasm | low | Critical |
227,300,123 | go | x/mobile: how to change screen to landscape | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go version 1.8
gomobile version +0f31740 Wed Apr 19 17:20:05 2017 +0000 (android,ios); androidSDK=
### What operating system and processor architecture are you using (`go env`)?
CGO_ENABLE=1 ... | NeedsInvestigation,FeatureRequest,mobile | low | Minor |
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.