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 |
|---|---|---|---|---|---|---|
132,425,810 | opencv | cvUndistortPoints returns imprecise results | cvUndistortPoints calculates the result iteratively. Currently, the number of iterations is five (hardcoded), which is not enough to get the correct result.
| feature,category: imgproc | low | Minor |
132,462,146 | opencv | buildPyramid segfaults with Clang | Following test program segfaults if compiled with Clang:
```
#include <opencv2/opencv.hpp>
#include <vector>
int main() {
cv::Mat I(1000,1000,CV_8UC1);
std::vector<cv::Mat> P;
cv::buildPyramid(I, P, 30);
return P.size();
}
```
clang --version
Ubuntu clang version 3.6.2-1 (tags/RELE... | incomplete | low | Minor |
132,525,250 | rust | Named functions don't implement Debug | Trying to compile (https://play.rust-lang.org/?gist=3b38f384f0f7ddecc142&version=stable):
```
fn foo() {}
fn main() {
println!("{:?}", (foo as fn())); // Works
println!("{:?}", foo); // Fails
}
```
It seem that named functions have to be coerced to anonymous ones in order to implement `Debug`. This means a... | A-type-system,T-lang,C-feature-request,T-types | low | Critical |
132,583,050 | go | go/build: Import seems to require absolute srcDir | While investigating go/types issue https://github.com/golang/go/issues/14215, I noticed that (after fixing the obvious go/types bug), build.Import didn't find the desired package if srcDir was relative. Computing its absolute path (relative to cwd) fixed the problem.
Reminder to investigate behavior. Fix and/or docume... | FrozenDueToAge | low | Critical |
132,651,175 | youtube-dl | Simplify access to multiple audio channels on pluzz | Hello
I might be missing something, but I can't find a straightforward way to get the OST version of a video on pluzz.fr, which of course defaults to the French version.
I'm using the latest youtube-dl version packaged for Debian.
```
$ youtube-dl --version
2015.11.27.1
$ youtube-dl -U
It looks like you installed yo... | geo-restricted | low | Critical |
132,693,904 | youtube-dl | Improve regression detection with continous testing | It seems the youtube-dl project has abandoned the idea of using tests with travis-ci to keep all IEs always working (last passed build was 2 years ago, [#2571](https://travis-ci.org/rg3/youtube-dl/builds/99421929)). Not that it's a bad idea, since it's hard to keep up with all those sites. But a side effect of that is ... | request | low | Major |
132,712,237 | opencv | LineIterator is missing from Java bindings | Title says it all. I now have to implement my own Bresenham algorithm.
| feature,priority: low,category: java bindings | low | Minor |
132,740,460 | TypeScript | JSX: a way to make all the properties of value-based elements optional | It's not documented, but currently, if the `JSX.ElementAttributesProperty` interface is declared empty,
``` ts
declare namespace JSX { interface ElementAttributesProperty {} }
```
then the _element attributes type_ becomes same as the _element instance type_. However, if the element instance type is a class, this lea... | Suggestion,In Discussion | medium | Critical |
132,760,549 | go | cmd/asm: accepts MOVB (BX)(R8*4), AH incorrectly | `MOVB (BX)(R8*4), AH`
The assembler accepts this instruction but silently misassembles it to:
`MOVB (BX)(R8*4), SP`
This is because we need the RAX prefix for the indexed address, but then the RAX prefix also forces the use of standard register naming instead of the weird *H register naming.
gas rejects this instructi... | NeedsFix,compiler/runtime | low | Minor |
132,821,186 | go | x/exp/shiny/driver/gldriver: deadlock when creating multiple windows on darwin | I am attempting to create multiple windows, to avoid having to write any layout or windowing code myself.
``` go
func main() {
driver.Main(func(s screen.Screen) {
w, err := s.NewWindow(nil)
if err != nil {
log.Fatal(err)
}
w2, err := s.NewWindow(nil)
if err != ni... | NeedsInvestigation | low | Minor |
132,826,205 | opencv | Some of the features2d algorithms would need a little bit of refactoring | As the title mentions, in the latest version of the "opencv" repository up-to-date (master-2c4ed7f8a5a6a2dce331b2f075f425cfe7ad522b, thus OpenCV3.1.0-dev), I think that some of the algorithms (both CUDA and non) that falls in the category of features detection, descriptors extraction, and features matching need a littl... | feature,category: features2d,category: gpu/cuda (contrib) | low | Minor |
132,874,000 | TypeScript | Consider re-ordering Array#reduce overloads in lib.d.ts | Example code:
``` typescript
type UnaryFunction = (arg1) => any;
type BinaryFunction = (arg1, arg2) => any;
let binaryFuncs: BinaryFunction[] = [];
let unaryFunc = arg1 => {};
let reduced = binaryFuncs.reduce((prev, next) => prev, unaryFunc);
// ACTUAL:
let f: UnaryFunction = reduced; // ERROR binary not assigna... | Suggestion,Help Wanted,Domain: lib.d.ts,Good First Issue | medium | Critical |
133,056,832 | rust | Can't Unify Super Generic Code | I was trying to verify that the associated-items-based HKT described in the associated items RFC still worked. As best I know, I updated everything to work with today's stable Rust (1.7), but it fails out in unifying in the actual implementation of `Mappable for Vec<T>` (see the FIXME).
``` rust
// The kind * -> *
t... | A-type-system,A-associated-items,T-compiler,C-bug,T-types | low | Major |
133,127,799 | TypeScript | Emitted extends clause should come after deatched-comment at the top of the file | ``` typescript
// --------------------------------------------------
// Some Copy Right
// --------------------------------------------------
class B {}
class C extends B {}
```
``` js
"use strict";
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];... | Bug,Help Wanted | low | Minor |
133,159,421 | go | x/build: use `go tool dist test -k` on fast builders? | Especially for fast builders, I suggest that we make then use the keepgoing
mode of `go tool dist test` so that even if a test fails, all the remaining tests
are still tested.
This will be especially useful if a flaky tests fails and then masks the real
problem of a given a CL because the affected tests are not run.
... | Builders,Proposal,Proposal-Accepted | low | Major |
133,180,226 | rust | `create_dir_all` can't create directories through a dangling symlink. | Currently `create_dir_all` first does a stat on the file to see if it is a directory, and if not tries to create the parent dirs. This does not take into account that stat can fail if the path is a dangling symlink.
The classic `mkdir -p` just tries to create a directory and see why it fails. This spares a syscall and ... | T-libs-api,C-feature-accepted,A-io | low | Major |
133,189,201 | youtube-dl | please add support for rte.ie/archives | http://www.rte.ie/archives/2016/0210/766882-beat-of-the-feet/
```
$ youtube-dl http://www.rte.ie/archives/2016/0210/766882-beat-of-the-feet/ -v
[debug] System config: []
[debug] User config: []
[debug] Command-line args: [u'http://www.rte.ie/archives/2016/0210/766882-beat-of-the-feet/', u'-v']
[debug] Encodings: local... | site-support-request | low | Critical |
133,215,937 | java-design-patterns | Composition root pattern | ### Description:
The Composition Root design pattern is a method of organizing code to ensure that all dependencies are created in a single location within an application. This helps manage dependencies more effectively, improve testability, and promote a clear separation of concerns. By centralizing the creation of de... | info: help wanted,epic: pattern,type: feature | low | Minor |
133,226,751 | go | x/text/currency: position of the ISO code or sign in amounts | ``` go
currencyCode = "PLN"
unit, _ := currency.ParseISO(currencyCode)
p := message.NewPrinter(language.Polish)
amount := float64(100)
p.Print(currency.Symbol(unit.Amount(amount)))
```
The result is `zł 100` but I would expect `100 zł`.
https://en.wikipedia.org/wiki/ISO_4217#Position_of_ISO_4217_co... | NeedsInvestigation | low | Major |
133,317,869 | go | cmd/go: decide, document standard benchmark data format | We propose to make the current output of `go test -bench` the defined format for recording all Go benchmark data. Having a defined format allows benchmark measurement programs and benchmark analysis programs to interoperate while evolving independently.
See [golang.org/design/14313-benchmark-format](https://golang.org... | Documentation,Proposal,Proposal-Accepted,NeedsInvestigation | medium | Critical |
133,354,646 | TypeScript | Permit type alias declarations inside a class | I normally want my class declaration to be the first thing in my file:
``` typescript
module foo {
/** My foo class */
export class MyFoo {
}
}
```
So when I want to declare an alias, I don't like the fact that my class has been pushed down further:
``` typescript
module foo {
type foobar = foo.bar.baz.Foo... | Suggestion,In Discussion | high | Critical |
133,363,486 | flutter | Draggable feedback should animate back to the draggable when the drop fails | Possibly giving me an offset from it's original position.
| c: new feature,framework,a: animation,customer: solaris,P3,team-framework,triaged-framework | medium | Major |
133,404,927 | rust | Compiletest doesn't pass environment variables to emscripten tests | Compiletest sometimes passes environment variables when building the `Command` object. However in the case of emscripten, these values get passed to `node` instead of the program itself.
`node` can't propagate env vars to the javascript code, since javascript has no concept of an environment variable. It is possible t... | O-wasm,O-emscripten | low | Minor |
133,438,086 | angular | fix(Changedetection): ngAfterViewChecked is called when component is set to OnPush and no input properties changed | Similar to https://github.com/angular/angular/issues/7054 it seems that `ngAfterViewChecked()` is called, when a component is set to `OnPush` and **no input property changed, or event is fired inside that component**.
Here's a plunk that demonstrates the issue: http://plnkr.co/edit/3HEH7AcrQaVUF0PTQBNv?p=preview
You'... | feature,area: core,core: change detection,feature: under consideration | high | Critical |
133,481,215 | flutter | ui.window.locale should be set on startup | Currently, it's not, which means we waste 16ms in every app with a MaterialApp because we spin an entire frame waiting for the locale to be set.
This requires some redundant pumps in tests, too.
| a: tests,framework,engine,f: material design,c: performance,a: internationalization,d: examples,P2,team-design,triaged-design | low | Minor |
133,552,588 | go | cmd/compile: recognize append loop | Loops with appends are common in Go. And often the loops have a fixed iteration count.
cmd/compile could recognize something of the form:
``` go
for ... := range x {
s = append(s, v)
}
```
And compile it as:
``` go
s = runtime_ensurecapacity(s, len(x))
for .... | Performance,compiler/runtime | low | Major |
133,655,011 | opencv | solvePnP fails with perfect coordinates (and cvPOSIT passes) | I have found a set of parameters for which solvePnP does not give correct results although :
- the image points are perfect coordinates obtained with projectPoints applied to the objectPoints (no error at all in the image points)
- cvPOSIT is perfectly able to reconstruct the pose, when solvePnp seems not to be able to... | bug,category: calib3d,affected: 2.4,affected: 3.4 | low | Critical |
133,664,093 | go | x/mobile: gomobile bind unsupported seqType: string Array | when i'm trying to build aar library for undroid i have panic
panic: unsupported seqType: [100][100][2]string / *types.Array
Gomobile version:
gomobile version +002f07f Fri Feb 5 00:56:26 2016 +0000 (android);
androidSDK=/home/user/IDE_Android/adt-bundle-linux-x86_64-20130522/sdk/platforms/android-23
Go version:
g... | mobile | low | Minor |
133,754,547 | three.js | Proposal: Lets make EffectComposer "Stereo Aware" to simplify VR post effects | So I was trying my hand at stereo effects in ThreeJS and the first issue I ran into is that they are somewhat incompatible with EffectComposer. The issue is that the "effects" in the examples/js/effects directory are not actually possible to put into the EffectComposer. This was initially a little confusing to me. Y... | Suggestion,Post-processing | low | Major |
133,802,531 | java-design-patterns | Service Stub pattern | ### Description
The Service Stub design pattern is used to create a simplified version of a service that mimics the behavior of a real service in a controlled manner. This is especially useful during development and testing phases when the actual service might be unavailable or its usage might be costly or impractical.... | info: help wanted,epic: pattern,type: feature,status: stale | low | Critical |
133,932,337 | java-design-patterns | Service Registry pattern | ## Description
The Service Registry design pattern is a central service registry that maintains a database of available services. It acts as a lookup mechanism, allowing services to register themselves and clients to discover services. This pattern is crucial for service-oriented architectures (SOA) and microservices, ... | info: help wanted,epic: pattern,type: feature | low | Major |
133,992,388 | youtube-dl | Convert MP4 files to video with chapters? | What is the easiest way to merge all of the downloaded videos into one single video file with chapters? Would there be a max size (duration) for the video? I'm currently pulling down Pluralsight courses and would like to use the name of each file for the chapters. The goal would be to include the video in iTunes and... | request | low | Minor |
134,010,774 | TypeScript | Precedence in parsing types | It looks to me like this should parse, but it doesn't:
```
var x: number | (string)=>void;
```
It works with added parens:
```
var x: number | ((string)=>void);
```
But if the parser is not too hacky, then maybe it's easy to make the first work?
(FWIW, I ran into this in a rest argument, where it would be nice to ... | Help Wanted,Docs | low | Major |
134,061,264 | rust | HashSet operations against another HashSet should allow for differing hash algorithms | Operations such as `intersection` take a second `HashMap`. It's required that the second `HashMap` implement the same hashing algorithm as the first one:
``` rust
impl<T, S> HashSet<T, S>
where T: Eq + Hash,
S: HashState
{
fn intersection<'a>(&'a self, other: &'a HashSet<T, S>) -> Intersection<'a, T,... | C-enhancement,T-libs-api | low | Minor |
134,225,920 | go | encoding/xml: support for xml:lang attribute | xml:lang is a standard attribute defined by the XML specification. Using it is complicated by the fact that an element inherits the nearest xml:lang declaration on itself or an ancestor. For example:
```
<document>
<foo xml:lang="en-GB">
<bar>This is in en-GB</bar>
</foo>
</document>
```
The element... | NeedsInvestigation | low | Minor |
134,237,061 | go | x/mobile/exp/f32: LookAt uses column major order, but everything else seems to use row major (e.g. Translate) | I think it should be:
``` go
*m = Mat4{
{s[0], s[1], s[2], -s.Dot(eye)},
{u[0], u[1], u[2], -u.Dot(eye)},
{-f[0], -f[1], -f[2], +f.Dot(eye)},
{0, 0, 0, 1},
}
```
When sending model or projection matrix to shader using UniformMatrix4fv I need to transpose them to column major order. That's not the case... | mobile | low | Minor |
134,303,170 | youtube-dl | [letv]ERROR: unable to download video | ```
[c:\~]$ youtube-dl -v http://www.letv.com/ptv/vplay/2068007.html
[debug] System config: []
[debug] User config: []
[debug] Command-line args: [u'-v', u'http://www.letv.com/ptv/vplay/2068007.html']
[debug] Encodings: locale cp936, fs mbcs, out None, pref cp936
[debug] youtube-dl version 2016.02.13
[debug] Python ver... | bug,geo-restricted | low | Critical |
134,331,716 | rust | Implementation of traits on functions ignored after function call | In this example, I implement a trait on generic functions. One with mutability and one without. When invoked manually, the proper trait gets called. Instead, if I try to peel off the function's unique tag using another function, the traits are no longer visible.
Checked against: rustc 1.8.0-nightly (57c357d89 2016-... | C-enhancement,A-diagnostics,A-trait-system,T-compiler,D-confusing | low | Critical |
134,442,958 | rust | "cannot move out of" error using `==` with `Box<Trait>`, where no move is needed | The following code has a compilation error, but it should be a valid program [(playground)](https://play.rust-lang.org/?gist=f39d36c50f0f54b8c3fd&version=nightly)
([Updated code in 2021 edition](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2021&gist=088ae790d8e2c2ce283918a344c8cf31))
``` rust
tra... | A-type-system,A-borrow-checker,T-compiler,A-docs,C-bug,T-types,A-trait-objects | medium | Critical |
134,647,465 | vscode | Allow customization of mouse shortcuts | Some users would like to be able to customize not just pure keyboard shortcuts but also mouse + modifier ones. These are currently hard coded, for example <kbd>alt</kbd>+click to add a selection.
See https://github.com/Microsoft/vscode/issues/3091 for some more context.
| feature-request,keybindings | high | Critical |
134,684,971 | rust | Normalization fails with where clauses on methods | [This code](http://is.gd/nSF2lc) from @jroesch fails to compile:
``` rust
pub enum Mut {}
pub enum Imm {}
trait MutType<'v, T> {
type Output;
}
impl<'v, T: 'v> MutType<'v, T> for Mut {
type Output = &'v mut T;
}
impl<'v, T: 'v> MutType<'v, T> for Imm {
type Output = &'v T;
}
enum Lit {
Int(i32)
}
... | A-trait-system,A-associated-items,T-compiler,C-bug,A-lazy-normalization | low | Critical |
134,834,140 | go | encoding/xml: proposed fixes for namespaces | Issue #13400 lists a number of issues related to namespace handling in encoding/xml. It's been noted that this area needs a bit of a rethink. This issue documents a set of proposed fixes to address the problems currently seen. I've grouped the current set of bugs into 7 separate topics to be addressed:
## 1. Lack of... | NeedsDecision,early-in-cycle | medium | Critical |
134,926,057 | flutter | Formatter for Flutter (or, tree-aware code) | dartfmt is a really great utility, but it doesn't know about code that is trying to represent a tree. Which, is what Flutter does a lot of :)
We would like an automatic formatter that knows that Flutter code has a lot of tree-like structures, and retains a formatting style that makes tree-like structures easy to read.... | c: new feature,tool,P3,team-tool,triaged-tool | medium | Critical |
135,088,916 | rust | Windows paths should not be prefixed with \\?\ when displayed | That just turns this already confusing error into an insult:
```
kernel\std\std.rs:17:1: 17:46 error: found possibly newer version of crate `core` which `core_collections` depends on [E0460]
kernel\std\std.rs:17 extern crate collections as core_collections;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~... | O-windows,I-needs-decision,C-bug,A-io | low | Critical |
135,100,702 | flutter | Support making Android Wear apps | - [ ] run on wear emulator
- [ ] determine if a screen is round or square
- [ ] easily set a wake lock (for Wear prototyping since timeout to ambient is aggressive at 6 seconds and we need more time)
| c: new feature,platform-android,framework,engine,customer: crowd,P3,team-android,triaged-android | high | Critical |
135,105,444 | TypeScript | Decorator Metdata: expose array element type | TSC 175, target ES6, Node 5.6
Sample class with decorated properties:
``` javascript
@sg.DMClass
export class User implements IUser {
@sg.DMProperty
firstName: string;
@sg.DMProperty
lastName: string;
@sg.DMProperty
friends: User[];
}
```
Property decorator:
``` javascript
export function DM... | Suggestion,Needs Proposal,Domain: Decorators | high | Critical |
135,113,012 | youtube-dl | [Site Support Request] huya.com | It's a chinese gaming stream website similiar to twitch.tv.
Example stream url: http://www.huya.com/499xiaoyu
livestream directory: http://www.huya.com/g/lol
| site-support-request | low | Minor |
135,135,783 | go | x/image/font: make it easier to measure a string's bounds and draw it in a bounding box | This issue applies to github.com/golang/freetype, if that is still under development.
I want to accomplish the following (superficially) easy tasks:
- Given a string and a fully specified font/context, determine the rendered string's bounds, taking into account ascenders, descenders, etc.; something along the lines of... | NeedsInvestigation | low | Minor |
135,185,953 | go | x/term: ReadPassword not supported on plan9 | x/crypto/ssh/terminal doesn't provide `terminal.ReadPassword` on plan9.
Related #13085
| OS-Plan9 | low | Minor |
135,218,463 | go | proposal: runtime/v2: rationalize runtime.Errors | Package runtime defines an Error interface for runtime errors and exactly one exported type that implements it: TypeAssertionError. But there are about a half dozen other panics in the runtime caused by programmer errors that are detected at runtime; things like "index out of range" and "divide by zero". Currently thes... | v2,Proposal | low | Critical |
135,226,548 | opencv | OpenCV reduction based algorithms | Are you aware of any particular algorithms that would benefit from the work-group reduce add/min/max ? - maybe something SIMD oriented that would though require moderate thread communication / map-reduce type operation.
I'm working to improve the work-group reduce functions in a Linux OpenCL stack for GPGPUs. The work... | category: ocl,category: t-api,RFC | low | Minor |
135,245,565 | nvm | Shorter URL for install script? | Can you add a gh-pages branch that with the download script? It would be nice to be able to just remember something like `curl -o- http://creationix.githubio/nvm|bash` than having to look up the install command each time. This is similar to [get-pip.py](https://bootstrap.pypa.io/get-pip.py) and other tools.
Since gith... | feature requests,installing nvm | low | Major |
135,253,994 | go | cmd/link: support cgo internal linking on linux/mipsx, linux/mips64x | compiler/runtime | low | Minor | |
135,281,022 | vscode | Custom peek widgets | LightTable and Swift allow for inline evaluation which also places the results in line with the particular line of source which was evaluated.
A new widget would be necessary for this. This widget would be able to hold values or arrays or plots with arrays and plots requiring expansion to be shown fully as to not clut... | feature-request,api,webview,editor-insets,editor-api | high | Critical |
135,315,206 | go | x/sys/unix: missing flags support for Setxattr on freebsd. | Currently, flags parameter is ignored.
We can implement XATTR_CREATE and XATTR_REPLACE for this.
| help wanted,OS-FreeBSD,NeedsFix,compiler/runtime | low | Minor |
135,332,557 | rust | Closure return type not deduced from bounds if the type is wrapped. | In a tuple, for example:
``` rust
fn call<R, F: FnOnce() -> R>(f: F) -> R {
f()
}
fn main() {
let _: (&[i32],) = call(|| (&[],));
}
```
AFAICT, we don't deduce that `call::<$R, _>(|| (&[],)) expects (&[i32],)` implies `&[] expects &[i32]`, only `(&[],) expects $R`.
| A-inference,C-bug | low | Minor |
135,339,370 | kubernetes | Replication controller to re-schedule Pod in `ContainerCreating` and `ImageNotReady` status for a long time | I have meet an issue in my cluster described here https://github.com/kubernetes/kubernetes/issues/21656.
My question is, my Pod in a RC was scheduled to a node which docker CIDR already full. So the Pod stay in `ImageNotReady` status. Only after I delete the Pod manually by `kubectl delete pod`, the Pod got reschedule... | kind/bug,priority/important-soon,sig/scheduling,milestone/removed,lifecycle/frozen | low | Critical |
135,394,611 | rust | `-msvc` distribution has unused import libraries | Currently in the binary distributions for the `-msvc` packages, the `bin` folder has import libraries (`.dll.lib`) for all the DLLs there even though they are never linked to and could be removed to save some space.
| C-enhancement,O-windows-msvc,T-infra | low | Minor |
135,472,049 | go | encoding/xml: `,innerxml` makes light of namespaces. | See [the example](http://play.golang.org/p/KjOhmzacUc). The result is obviously not what we wish. We have no way we can obtain and recover the context, namely the prefix-namespace correspondence, where the fragment is extracted. I found xml.go naively accumulating input stream in `saved` while `,innerxml` is effective.... | NeedsInvestigation | low | Minor |
135,486,498 | go | database/sql: common interface for query functions in sql.DB and sql.Tx | Hi,
I'm proposing a interface that implements all functions in `sql.DB` and `sql.Tx` that takes a `query string` as one of its arguments. This could be useful when implementing "dumb" functions that retrieves information but in itself dose not need to be prepared however might be used to verify whether to commit or ro... | NeedsInvestigation | high | Critical |
135,671,388 | go | tour: Add tests for web crawler task | Context: https://tour.golang.org/concurrency/10
I think web crawler task is harder than it looks. I saw a lot of solutions and all of them are wrong, even the [official one](https://github.com/golang/tour/blob/master/solutions/webcrawler.go).
In order to prove that I have written [some tests](https://github.com/amorgu... | Documentation,help wanted,NeedsInvestigation | low | Major |
135,700,320 | youtube-dl | add support for LCP replay | LCP (aka La Chaîne Parlementaire) is the french national assembly TV channel.
It has a replay web site that doesn't seems to be handled by youtube-dl.
e.g. http://www.lcp.fr/emissions/transportez-moi
could youtube-dl support this web site ?
| site-support-request | low | Minor |
135,795,757 | vscode | [folding] Collapse ending brace to the same line | Consider a large JavaScript file
``` js
function a() {
...
}
function b() {
...
}
function c() {
...
}
and so on...
```
Collapsing all currently yields:
``` js
function a() { ...
}
function b() { ...
}
function c() { ...
}
and so on...
```
This would be more readable if the closing brace was on the same... | feature-request,editor-folding | high | Critical |
135,807,289 | rust | Tracking issue for specialization (RFC 1210) | This is a tracking issue for specialization (rust-lang/rfcs#1210).
Major implementation steps:
- [x] Land https://github.com/rust-lang/rust/pull/30652 =)
- [ ] Restrictions around lifetime dispatch (currently a **soundness hole**)
- [ ] `default impl` (https://github.com/rust-lang/rust/issues/37653)
- [ ] Integration ... | A-trait-system,B-RFC-approved,T-lang,B-unstable,I-unsound,A-specialization,B-RFC-implemented,C-tracking-issue,requires-nightly,F-specialization,S-tracking-design-concerns | high | Critical |
135,881,553 | javascript | single return vs multiple returns | I see some examples of multiple returns but don't see any guidelines defined that say it explicitly.
Is there a preference between a single return where a variable is assigned the output value vs just having multiple return statements?
```
function isGood(battery) {
if (battery.charge) {
return true;
}
if (... | question | medium | Major |
135,911,719 | rust | Allow linking against dylibs in LTO mode | I would like to build a binary that links against some crates using LTO and others dynamically. (Why? Because I have a dynamic library that contains all of LLVM and is 30MB, slowing down linking. Note that this is not LLVM's own dynamic library, it's a Rust crate compiled to dylib that itself links LLVM statically. ... | A-linkage,C-feature-request,-Cprefer-dynamic | low | Critical |
135,952,761 | go | net: TestCgoLookupIP fails on brillo | Reproducible on Qualcomm Dragonboard 410c, Brillo image built with BDK 7.5.4.
```
go_android_exec: adb shell mkdir -p /mnt/media_rw/tmp/net.test-55266
go_android_exec: adb push /var/folders/00/1b8h8000h01000cxqpysvccm005d21/T/go-build559449628/net/_test/net.test /mnt/media_rw/tmp/net.test-55266/net.test-55266-tmp
135... | Testing | low | Minor |
135,953,518 | go | syscall: TestLinuxDeathSignal fails on brillo | Reproducible on Qualcomm Dragonboard 410c, Brillo image built with BDK 7.5.4.
```
go_android_exec: adb shell mkdir -p /mnt/media_rw/tmp/syscall.test-55724
go_android_exec: adb push /var/folders/00/1b8h8000h01000cxqpysvccm005d21/T/go-build559449628/syscall/_test/syscall.test /mnt/media_rw/tmp/syscall.test-55724/syscall... | compiler/runtime | low | Critical |
136,104,178 | TypeScript | noImplicitAny incorrectly permits 'any' when returned via arrow function | _Apologies for the vague title, I can't quite pin down the cause of this, hence the poor wording_
```
$ tsc --version
1.9.0-dev.20160208
```
The problem is best described using the following example:
``` typescript
// using --noImplicitAny
let a = undefined; // OK: error as expected: Variable 'a' implicitly has an... | Bug,Help Wanted | low | Critical |
136,124,084 | flutter | RenderBlockViewport should override debugAssertDoesMeetConstraints to verify intrinsics match itemExtent | If itemExtent is set, then the totalExtentCallback's return value should be an even multiple of the itemExtent.
| team,framework,P3,team-framework,triaged-framework | low | Critical |
136,144,985 | neovim | Implement :gui in at least a minimal form? | One of the main things keeping me from using neovim is that my workflow centers too heavily around starting with vim in a terminal, then using `:gui` to reclaim the terminal once I've determined whether I want to keep it around.
I was thinking about how one might implement `:gui` without forcing a GUI to be built into... | enhancement,ui,server,ui-extensibility,remote | low | Minor |
136,170,752 | kubernetes | All controllers should raise events when they can't create objects as expected | This is coming from https://github.com/kubernetes/kubernetes/issues/21079#issuecomment-182967854:
All controllers should raise events when they can't create objects as expected (Pods, ReplicaSets, whatever), except when namespace deletion is in progress.
cc @piosz @mwielgus @jszczepkowski @madhusudancs @janetkuo @kar... | priority/important-soon,area/controller-manager,sig/autoscaling,kind/feature,sig/apps,lifecycle/frozen | low | Major |
136,204,400 | vscode | [themes] Themes don't support background styling | .tmTheme files allow specification of background colors which don't seem to be supported, for example:
``` xml
<dict>
<key>name</key>
<string>Separator</string>
<key>scope</key>
<string>meta.separator</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#E0E0E0</string>
<key>foregr... | feature-request,debt,themes | high | Critical |
136,244,712 | kubernetes | Don't schedule all addons on the first node | This used to not happen but it does now. The following pods landed on the first node that became ready on kube-up (jenkins-e2e-minion-50tl):
```
14:28:59 Feb 23 14:28:53.406: INFO: downwardapi-volume-8c06635c-da7c-11e5-b51c-42010af01555 jenkins-e2e-minion-50tl Running [{Ready True 0001-01-01 00:00:00 +0000 U... | sig/scheduling,lifecycle/frozen,needs-priority,needs-triage | medium | Critical |
136,291,660 | rust | Error to enable feature gate prevents error from incorrect placement of feature gate | Suppose I'm on nightly and I try to use gated syntax in a module (other than the crate root). As expected, I get an error:
```
feature_gated.rs:3:5: 3:10 error: box expression syntax is experimental; you can call `Box::new` instead. (see issue #27779)
feature_gated.rs:3 box 2;
^~~~~
feature... | A-diagnostics,A-stability,T-compiler,C-bug | low | Critical |
136,302,617 | youtube-dl | Support for mixcrate.com | Example url: http://www.mixcrate.com/kanyeasada/kiss-kiss-bang-bang-volume-4-10313280
Starting to play the song the mp3 source file is visible in the network manager so shouldn't be too big a task to parse?
| site-support-request | low | Minor |
136,336,234 | TypeScript | JSDoc property and memberof does not work in salsa | Since we cannot register intellisense by set a value directly. salsa should support `@memberof` or `@property` tag

It also useful for extension method, set a prototype like this cannot registered in inte... | Suggestion,In Discussion,Domain: JSDoc,Domain: JavaScript | medium | Major |
136,464,460 | go | regexp: match additional Unicode properties | The [docs](https://golang.org/pkg/regexp/syntax/) (and [the RE2 docs](https://github.com/google/re2/wiki/Syntax)) describe how to match Unicode properties by using `\p{…}` inside a character class:
> [snip]
>
> <table>
> <tr><td><code>[\p{Name}]</code></td><td>named Unicode property inside character class (≡ <code>\p... | NeedsDecision,FeatureRequest,early-in-cycle | low | Major |
136,565,382 | go | tour: [confusing description of interfaces] | Context: https://tour.golang.org/methods/9
The text on the left reads
> A value of interface type can hold any value that implements those methods.
I'm not an advanced Go programmer and this is the first time I encounter this expression
> any value that implements those methods
in the Tour.
Because I don't find i... | NeedsInvestigation | low | Minor |
136,580,539 | go | cmd/link: include declared constants in DWARF | Currently the DWARF information does not include constant symbols (such as `const x = 1`). This can make debugging more difficult, as constants available to the program are not available in the debugger. It also causes problems for debugging helpers. For example, our own runtime-gdb.py GDB helper hard-codes the G statu... | Debugging,compiler/runtime | low | Critical |
136,683,096 | opencv | Bad ORB descriptors match on Mac | I am doing some tests using ORB for both features detection and descriptors extraction on Windows and Mac. I get good results on Windows but the ones on Mac do not make any sense to me.
Here is a simple code snippet to reproduce the problem, I'm loading two example images found in openCV package
```
` // load image... | bug,category: features2d | low | Critical |
136,758,253 | go | gccgo: too many syntax errors for a simple mistake | Reduced from feedback I received from a student taking a class using Go.
The mistake in this program is the `int` in `for int i := 0`.
```
$ cat x.go
package p
func f() {
for int i := 0; i < n; i++ {
println(i)
}
}
```
The gc compiler and the go/parser both print two not terribly helpful syntax erro... | NeedsInvestigation | low | Critical |
136,778,887 | opencv | UMat tests hang on Odroid | On an Ondroid XU4 board using OpenCL via T-API causes the function to never return, the program has to be stopped with Ctrl+C. The behavior is reproduced in the unit tests: if I run `bin/opencv_test_core --gtest_filter=UMat.*`, it gets stuck in `UMat.unmap_in_class` after printing "leave ProcessData()". I found that it... | bug,priority: low,category: ocl,category: t-api | low | Minor |
136,835,295 | opencv | Exception when using CUDA APIs after resume from suspension | With the curent OpenCV on the repository, an error occurs if the laptop is suspended and then resumed while a program using OpenCV is running. This error appears to happen when using CUDA APIs, and specifically in my case happens with the matcher in features2d module. Note that it doesn't happen when using the correspo... | bug,category: gpu/cuda (contrib) | low | Critical |
136,939,693 | opencv | Linux build instructions, ffmpeg or libav | I would like to add to the linux install instructions the option to use ffmpeg instead of libav packages.
I am new to all of this, so please help me avoid doing something the wrong way.
I have my suggested changes to the corresponding doc file already in a forked repo, should I create a pull request?
| feature,category: documentation | low | Minor |
137,046,040 | youtube-dl | No keep audio option? (Target resault: video+audio file, audio only file) | At the moment, the "--keep-video" option saves both the video and audio files after they've been merged.
I would like the ability to save just the audio file with the merged file, producing the followings files:
Video+Audio (Merged) file
Audio file
Or am I blind and have missed the option somewhere?
| request | low | Minor |
137,111,426 | TypeScript | Allow subclass constructors without super() call | **TypeScript Version:**
1.8.0
**Code**
Custom element classes often have constructors that just return `document.createElement()`, since HTMLElement doesn't have a callable constructor, but this generates an error in TypeScript:
``` ts
class MyElement extends HTMLElement {
constructor() {
return document.cre... | Suggestion,Needs Proposal | medium | Critical |
137,124,713 | go | spec: clarification for the language used in the language specifications | Hi,
I'm not a native English speaker so please bare with me.
While looking at the documentation for https://golang.org/ref/spec#Integer_overflow I've realized that the sentence: `Loosely speaking, these unsigned integer operations discard high bits upon overflow, and programs may rely on "wrap around".` currently lea... | Documentation,NeedsInvestigation | low | Major |
137,226,738 | go | cmd/compile: coverage instrumentation for fuzzing | Go-fuzz (https://github.com/dvyukov/go-fuzz) is quite successful at finding bugs in Go code and reasonably widely used in Go community. However there are several problems with the current go-fuzz implementation that hinder wider adoption (in particular internal adoption at Google):
1. go-fuzz mimics go tool build logic... | NeedsFix,FeatureRequest,compiler/runtime | high | Critical |
137,236,790 | vscode | Get selected file/folder in the explorer view | It would be nice if it was possible to retrieve the selected file/folder in the explorer view. The use case where I want to use it for is my `vscode-yo` extension to be able to run the generator in the selected directory. An API for this would be nice.
| feature-request,api,file-explorer | high | Critical |
137,287,126 | neovim | Consider removing netrw in favor of dirvish | Netrw is not bad but it shouldn't be the default file manager for this reasons:
- adds over 300 tags to help file
- has no sane method of updating when bundled by default (realistically an over 10 000 line plugin should be updateable easily)
- needs some additional plugins to behave reasonably (like vim-vinegar)
- has ... | runtime | medium | Critical |
137,393,454 | kubernetes | Preemption priority / scheme | We expect Kubelet to make more and more decision on which pods should run on a given node. For example,
- Reject pods on port conflict
- Reject incoming / evict existing pods when node constraints are violated.
- Reject incoming / evict existing pods in response to resource starvation, such as OOD, OOM, etc. (#147, #1... | priority/important-soon,area/api,sig/scheduling,sig/node,kind/feature,milestone/removed,lifecycle/frozen | high | Critical |
137,401,552 | thefuck | Change way of interaction with shells | I guess it would be nice to:
- put shell aliases in environment variable (`TF_SHELL_ALIASES`) in alias and get it from there, instead of calling shell from app (done for bash and zsh);
- move all writes to history to alias (done for bash and zsh).
It would speedup thefuck, and probably will fix #428, #422 and #402.
| help wanted | low | Minor |
137,447,611 | rust | It should be possible to override the dsymutil path | The compiler currently invokes `dsymutil` directly, but a cross compilation toolchain may have it located under a different name like `x86_64-apple-darwin15-dsymutil`. There should be a compiler flag to override it like there is for the linker.
| A-frontend,C-feature-request | low | Minor |
137,576,793 | You-Dont-Know-JS | "types & grammar": Pre-ES6 Number.isSafeInteger(..) polyfill - Number.MAX_SAFE_INTEGER is also introduced ES6 | In Chapter 2 of "types & grammar", the following polyfill is prescribed for `Number.isSafeInteger(..)`
> To polyfill Number.isSafeInteger(..) in pre-ES6 browsers:
>
> ```
> if (!Number.isSafeInteger) {
> Number.isSafeInteger = function(num) {
> return Number.isInteger( num ) &&
> Math.abs( num... | for second edition | low | Minor |
137,594,127 | TypeScript | allow decorators for functions | did a quick search, it looks like this hasn't been yet requested
currently decorators can only be added to classes, methods and properties
consider allowing them on functions too
| Suggestion,Domain: Decorators,Waiting for TC39 | high | Critical |
137,660,810 | youtube-dl | Support setproctitle on Mac OS X [was: Question: Any way for a shell script to check if youtube-dl is running?] | Hello, I've created an Applescript for personal use that works as a sort of wrapper around youtube-dl so I can download multiple videos quickly. I'm trying to modify it so that it won't download multiple videos at the same time.
In order to accomplish this, I need to check to see if the youtube-dl process is already r... | request | low | Major |
137,685,779 | neovim | Softwrap at arbitrary boundary | - Neovim version: 0.1.2
- Operating system: Arch Linux
- Terminal emulator: Gnome Terminal
### Actual behaviour
Vim `:set wrap` has always soft-wrapped at the window border. Neovim follows this behavior
### Expected behaviour
I would be able to like to have a `:set wrapwidth=80` and have Neovim softwrap at the 80th c... | enhancement,complexity:high,core | medium | Critical |
137,696,538 | flutter | Redirect "dart:io" stderr and stdout to adb (Android) and syslog (iOS) | Today we only redirect `print` (see https://github.com/flutter/engine/blob/master/sky/engine/bindings/dart_runtime_hooks.cc). We should also do this for stderr and stdout.
### Steps to Reproduce
- In your app `import 'dart:io';`
- Do `stdout.writeln('message')` or `stderr.writeln('message')`
- Run `flutter logs`
- Run ... | c: new feature,platform-android,platform-ios,framework,engine,dependency: dart,has reproducible steps,P3,dependency: dart:io,team-engine,triaged-engine,found in release: 3.16,found in release: 3.18 | low | Major |
137,711,441 | go | cmd/compile: SSA, don't re-copy spilled output parameters | ``` go
func f(a []int) (s int) {
for _, x := range a {
s += x
}
runtime.GC()
return
}
```
The SSA-generated code does this after runtime.GC():
```
MOVQ "".s+32(FP), BX
MOVQ BX, "".s+32(FP)
```
We should teach the compiler that it doesn't need to move the result to the ou... | Performance,compiler/runtime | 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.