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 |
|---|---|---|---|---|---|---|
117,469,958 | flutter | Matrix lerp | If we had a true Matrix lerp(), then we could do things like support Hero animations regardless of how transformed the hero was (instead of now, where the Hero and the Navigator have to be axis-aligned for it to work).
| c: new feature,framework,a: animation,P3,team-framework,triaged-framework | low | Major |
117,490,419 | opencv | Bug in stitching module when applying composePanorama multiple times | Attempting to use composePanorama multiple times from the stitching module, yields very strange results. First time composePanorama is used, the resulting panorama is perfect, however the next time composePanorama, from the same stitch object is used, the resulting panorama is very strange.
The code that triggers the ... | bug,priority: normal,category: stitching | low | Critical |
117,545,258 | go | x/term: ReadKey() interface | Now that there is x/term (#13104) there should be some user stories.
The story here is that in LXC we have console client and server separated by websocket channel. Client uses os.Stdin to read the input from user. Server interprets what is being sent to it (passes it to pty?) Client most likely uses Read function fro... | NeedsInvestigation | low | Minor |
117,711,073 | vscode | Provide option to opt out of line ending normalisation for files | Upon saving a file edited with VS Code, it appears to perform line ending normalisation automatically and without user notification of any sort. Because of this, I've found myself bitten by large diffs in Git (I'm aware you can circumvent this using the `-w` flag) where a trivial fix to a single line of source code app... | feature-request,editor-textbuffer | high | Critical |
117,764,660 | go | net: TestDialerDualStack fails with "i/o timeout" or "got 5.81849453s; want <= 95ms" | TestDialerDualStack is commonly flaking on OpenBSD and Windows, albeit with different error messages:
https://www.google.com/search?q=TestDialerDualStack+openbsd+site%3Abuild.golang.org
```
--- FAIL: TestDialerDualStack (14.78s)
dial_test.go:633: got 5.81849453s; want <= 95ms
```
https://www.google.com/search?q=... | Testing,OS-OpenBSD,OS-Windows,NeedsInvestigation | low | Critical |
117,765,591 | vscode | Better drag and drop / clipboard integration of files across applications | This includes being able to drag files and folders from VS Code into other applications as well as to being able to copy a file or folder to the native clipboard.
**Specifically:**
* [ ] copy files/folders from VS Code file explorer to clipboard and paste into native OS explorer
* [x] copy files/folders from nativ... | help wanted,feature-request,upstream,workbench-os-integration,workbench-dnd,upstream-issue-linked | high | Critical |
117,814,442 | vscode | [grammars] provide alternative to TextMate grammars | TextMate isn't sufficient for many languages.
We have been integrating in to the lower level, in the src/vs/languages directory and using Modes.IState and supports.TokenisationSupport. There needs to be a way of writing an extension that can do this, which at least currently there doesn't seem to be,
Thanks.
| feature-request,api,languages-basic | medium | Critical |
117,846,001 | rust | Vec's reallocation strategy needs settling | # Background
Currently, Vec's documentation frequently contains the caveat that "more space may be reserved than requested". This is primarily in response to the fact that jemalloc (or any other allocator) can actually reserve more space than you requested because it relies on fixed size-classes to more effeciently ... | C-enhancement,A-allocators,A-collections,T-libs-api,Libs-Tracked | high | Critical |
118,045,131 | vscode | Support workspace extensions | It would be interesting for people working on different projects to have a way to :
1: Set up extensions for the all team to have an uniform configuration
2: Have different extensions on different projects
I think that having a list of extensions in the Workspace configuration could solve this.
Otherwise i'll just h... | feature-request,plan-item,extensions | high | Critical |
118,055,447 | go | x/exp/shiny: no API to change a window size | it seems there is no way to programmatically change a `screen.Window` size.
currently, a `screen.Window` size can only be changed from outside the program (_e.g._ using the mouse).
I'd propose to extend `screen.Window` as such:
``` go
type Window interface {
// ...
// Resize resizes the window.
Resize(siz... | NeedsInvestigation | low | Major |
118,077,069 | opencv | Unexpected result in matchTemplate for TM_CCOEFF_NORMED | When the template is flat (all pixels have same value) the result of TM_CCOEFF_NORMED is 0/0 but matchTemplate returns 1.
Looking at [the formula](http://docs.opencv.org/3.0.0/df/dfb/group__imgproc__object.html#ga3a7850640f1fe1f58fe91a2d7583695d), `T` is the template:
`T'(x,y) = T(x,y) - mean(T)`
If T(x,y)=C for each ... | bug,priority: normal,category: imgproc | low | Major |
118,109,487 | vscode | [html] intellisense should be more context aware | Currently HTML intellisense will present special attributes that are only related to tags but that's about as smart as it gets. Here are some improvements that could be made:
- Don't suggest attributes that aren't valid on a particular tag (eg. aria widget attributes on a non-widget element)
- Don't suggest tags that a... | feature-request,html | low | Major |
118,116,525 | go | x/mobile: Permissions are needed in AndroidManifest.xml file | Many native Golang features are not usable without specifying permissions in AndroidManifest.xml. Suggest to put permissions by the time each package is imported, for example:
add the following permission when package "os" is imported:
< uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" / >
an... | mobile | low | Minor |
118,205,768 | go | x/mobile: panic when run golang.org/x/mobile/example/sprite on samsung phone. | golang 1.5.1
```
I/GoLog (21453): [kmgAndroidSprite1]
I/GoLog (21453): [kmgAndroidSprite2]
I/DEBUG ( 5150): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 5150): Build fingerprint: 'samsung/m0zm/m0cmcc:4.0.4/IMM76D/I9308ZMBMA2:user/release-keys'
I/DEBUG ( 5150): pid: 21453, tid: 21... | mobile | low | Critical |
118,306,150 | rust | rustc should warn when a (library) crate's name doesn't match its filename | Staring at `libfoo.rlib` while having rustc insist that it can't find crate `foo` is really confusing.
```
$ cat lib.rs
#![crate_type = "rlib"]
pub fn foo() {}
$ cat main.rs
extern crate foo;
fn main() { foo::foo(); }
$ rustc lib.rs -o libfoo.rlib
$ rustc -L. main.rs
main.rs:1:1: 1:18 error: can't find crate for `... | A-frontend,T-compiler,C-feature-request | low | Critical |
118,311,491 | opencv | program crash in cv::gpu::device::hog::set_up_constants | I'm using hog of the gpu module. I have NVIDA GTX660 and NVIDA GTX550 and my OpenCV version is 2.4.11.
I got an error when I reboot my computer(Centos6.4, Centos 7, Ubuntu14.4) _every time_. The more detail is as follows:
<br/p>
`OpenCV Error: Gpu API call (unknown error) in set_up_constants, file /home/setup/opencv-2.... | bug,priority: normal,affected: 2.4,category: gpu/cuda (contrib) | low | Critical |
118,398,968 | three.js | Allow post effects to request access to depth and normal passes | Many post effects request specific special passes, normal and depth mostly, to create their effect. Specifically:
DOF: depth
SSAO: depth, normal
SAO: depth, normal
MB: motion, depth?
While it is possible to set up the creation of a normal and depth pass and then coordinate passing that result into another effect, it... | Enhancement,Post-processing | low | Minor |
118,403,594 | opencv | FlannBasedMatcher throws exception on large inputs | I'm getting the following exception from the call to knnMatch (see code given below):
`opencv/modules/core/src/ocl.cpp:4585: error: (-215) u->origdata == data in function deallocate`
The exception is only thrown when the descriptor sets are very large (i.e. dense features for two images).
The exception is thrown when... | bug,priority: normal,affected: 3.4,category: t-api | low | Critical |
118,407,946 | rust | thread_local macro stability precludes safe async signal handling | The `thread_local!` macro accepts arbitrary (non-Sync) objects to be put into thread local storage. It is not hard to construct a case where this causes signal handlers to observe inconsistent state:
``` rust
extern {
fn signal(num: i32, handler: extern fn(i32)) -> extern fn(i32);
}
use std::cell::{RefCell};
///... | P-low,I-needs-decision,T-lang,C-bug | low | Major |
118,506,825 | opencv | HoughLine results not ordered when using OpenCL | I have been using HoughLine function with UMat parameters on GPU. When I transfer back the results, they are not ordered according to their accumulator values, as advertised in the documentation.
It works well on CPU.
OpenCV version is 3.0.0
| priority: normal,feature,category: imgproc,category: t-api | low | Minor |
118,507,949 | vscode | Allow to change the font size and font of the workbench | At the moment, we can only change the font size / font of the editor. If we want to change the font size, we need to use a roundabout method of "zooming in / out". It would be nice if this could be adjusted through the preferences.
| feature-request,workbench-fonts | high | Critical |
118,520,263 | go | cmd/internal/obj: implement auto-nosplit for arm64, ppc64 | See #11482 and CL 17165. The fix was to add nosplit tags, but the implication is that arm64 and ppc64 do not have the same "auto-nosplit" optimization that the other architectures do for leaf functions with tiny frames. They should.
| compiler/runtime | low | Minor |
118,569,207 | TypeScript | decorators in object literals not working | _From @pascalopitz on November 19, 2015 11:43_
I am getting a parsing error for decorators on object literal properties. My jsconfig.json looks like this:
```
{
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"experimentalDecorators": true
}
}
```
This code compiles okay i... | Suggestion,Committed,Domain: Decorators | medium | Critical |
118,658,107 | go | crypto/tls: Disable CBC Ciphers by default | Per @agl on Twitter, the only way to be safe with Go and TLS if you are worried about Lucky13-style attacks is to disable CBC mode ciphers:
https://twitter.com/agl__/status/669182140244824064
Currently none of the CBC ciphers are marked with `suiteDefaultOff`: https://github.com/golang/go/blob/master/src/crypto/tls/c... | Security | low | Major |
118,660,046 | go | runtime: annotation for sysAlloced types | @randall77 recently found some subtle issues related to write barriers on fields that point from runtime structures allocated from non-GCed (and hence non-scanned) memory to GCed heap memory. I manually audited all non-GCed structures to find any other such pointers, but obviously manual auditing can get out of date.
... | NeedsInvestigation | low | Major |
118,663,224 | java-design-patterns | Backends for Frontends pattern | **Description:**
The Backends for Frontends (BFF) design pattern is intended to create separate backend services for different user interfaces or clients. This pattern is particularly useful when different clients (such as mobile apps, desktop applications, and web applications) have distinct needs and require tailored... | info: help wanted,epic: pattern,type: feature | low | Major |
118,665,468 | java-design-patterns | Elm architectural pattern | **Description:**
The Elm design pattern, originating from the Elm language, is a pattern for building web applications that emphasizes simplicity, maintainability, and robustness. It follows the Model-View-Update (MVU) architecture, making state management predictable by using a single, immutable state.
**Main Element... | info: help wanted,epic: pattern,type: feature | low | Minor |
118,676,703 | neovim | Increment and decrement operations truncate big numbers | Clicking Ctrl+a (increment) or Ctrl+x (decrement number) while cursor is under
```
12016012609141909200527091927191118250205120747
```
will truncate it to
```
12555055019999496428
```
and
```
12555055019999496426
```
respectively.
| bug-vim | low | Major |
118,699,968 | vscode | Can I get scope / scopeRange at a position? | _From @billti on November 1, 2015 6:10_
The API call `document.getWordRangeAtPosition(position)` appears to use its own definition of a word. For example, my tmLanguage defines `attrib-name` as a token/scope, yet `getWordRangeAtPosition` appears to break this into 2 words on the `-` character.
How can I get token ran... | feature-request,api,tokenization | high | Critical |
118,700,066 | vscode | Support autoClosingPairs for strings like `begin` and `end` | _From @Wosi on October 27, 2015 20:23_
I'd like to define `autoClosingPairs` for Pascal like `begin <-> end`, `if <-> then` etc.
Definitions for closing pairs like these seem to be ignored by VSCode. It looks like auto closing is currently supported for character pairs only.
Please add support for longer auto closin... | feature-request,editor-autoclosing | medium | Critical |
118,700,228 | vscode | Link to a file position in Output Channel | _From @ArtemGovorov on October 19, 2015 2:0_
As mentioned in [this issue](https://github.com/Microsoft/vscode-extensionbuilders/issues/19#issuecomment-148695187), output channel supports link rendering. I'd like to append a link to a workspace file position (by providing a file name, line and column in some form). If ... | feature-request,output | medium | Critical |
118,712,587 | angular | Implement @ObserveChildren or similar API | Previously discussed with @vsavkin and @jeffbcross
Background - programmatically listening to events propagated by children is difficult currently.
Consider:
You have a `<accordion>` component and n `<accordion-item>` components:
```
<accordion>
<accordion-item></accordion-item>
<accordion-item></accordion-it... | feature,hotlist: components team,area: core,core: queries,design complexity: major,feature: under consideration | medium | Major |
118,715,703 | rust | Mutable references as function arguments generate inefficient code in trivial cases | ``` rust
#![crate_type = "lib"]
#[no_mangle]
pub fn good1(x: &mut bool) {
*x = *x;
}
#[no_mangle]
pub fn good2(x: &mut bool) {
if *x {
*x = *x;
} else {
*x = *x;
}
}
#[no_mangle]
pub fn good3(x: &mut bool) {
let mut y = *x;
if y {
y = y;
}
*x = y;
}
#[no_man... | A-LLVM,I-slow,C-enhancement,A-codegen,T-compiler | low | Major |
118,721,621 | go | tour: link to more resources throughout all content | Context: https://tour.golang.org/concurrency/5
It would be very useful to have a "Would you like to know more?" link in the description to the documentation, in this case https://golang.org/ref/spec#Select_statements
| NeedsInvestigation | low | Major |
118,761,410 | youtube-dl | Add support for bosrtv.nl | http://bosrtv.nl/televisie/....
youtube-dl http://bosrtv.nl/televisie/in-het-spoor-van-nichiren
[generic] in-het-spoor-van-nichiren: Requesting header
WARNING: Falling back on generic information extractor.
[generic] in-het-spoor-van-nichiren: Downloading webpage
[generic] in-het-spoor-van-nichiren: Extracting informa... | site-support-request | low | Critical |
118,776,362 | java-design-patterns | Presentation-Abstraction-Control pattern | ## Description:
The Presentation-Abstraction-Control (PAC) is a design pattern used in software architecture that focuses on the separation of concerns into three interconnected components:
1. **Presentation:** Manages the user interface and user interactions.
2. **Abstraction:** Encapsulates the business logic and dat... | info: help wanted,epic: pattern,type: feature | low | Major |
118,866,227 | youtube-dl | --flat-playlist doesn't also work with --get-url or --get-title or other --get- features | Maybe this is a wishlist bug: it would be great if --flat-playlist worked with --get-url or --get-title or other --get- features to allow users to get reports about the content of playlists. Supporting --get-duration for flat-playlists would be cool because then you would know how many hours of video you are about to d... | request | low | Critical |
118,882,936 | go | encoding/xml: fix name spaces | There are many pending issues related to the handling of xml name spaces. We need to rethink this. One more try and then we're going to give up.
- #7535 encoding/xml: Encoder duplicates namespace tags
- #11496 encoding/xml: Serializing XML with namespace prefix
- #9775 encoding/xml: Unmarshal does not properly handl... | NeedsFix,early-in-cycle | high | Critical |
118,905,802 | youtube-dl | Site request: www.sdarot.pm | This is an Israeli TV streaming site.
Example season URL:
http://www.sdarot.pm/watch/1004-%D7%94%D7%99%D7%A9%D7%A8%D7%93%D7%95%D7%AA-%D7%99%D7%A9%D7%A8%D7%90%D7%9C-survivor-israel/season/7
Normally each episode requires a 30 second wait before viewing link becomes active.
| site-support-request | low | Minor |
118,914,382 | vscode | Native node modules from extensions | I’m looking to build an extension but one of the packages I need to depend on is a native module. When I do an `npm install` it installs the package just fine, I can launch a node shell and interact with it, etc. But when I go to use the package from within my plugin I get an error as it’s trying to load the ia32 build... | feature-request,extensions | high | Critical |
118,929,428 | go | go/printer: consider permitting one-line "enum" const decls | A declaration of the form:
```
const (
Do = iota; Re; Mi; Fa; Sol; La; Ti;
)
```
gets formatted as:
```
const (
Do = iota
Re
Mi
Fa
Sol
La
Ti
)
```
The former is close to what in other languages might be achieved with an "enum" declaration. If there's several such simple const decls, ... | NeedsDecision | low | Major |
118,936,297 | You-Dont-Know-JS | Async & Performance - ch6 - Calculation error | In the **Chapter 6**, under **Context Is King** we can read:
> You could claim that Y is 20% slower than X,...
Three paragraphs after, one operation of X is estimated to take 100ns and a Y operation one to 80ns. If a Y operation is slower than a X operation by 20%, it should take 120ns to be done and not 80ns.
``` d... | for second edition,errata | medium | Critical |
119,114,113 | youtube-dl | Support for Het Nieuwsblad | - **URL:** http://www.nieuwsblad.be/cnt/dmf20151124_01986463
- **Error:** Unsupported URL: http://www.nieuwsblad.be/cnt/dmf20151124_01986463
- **Platform:** openSUSE 13.1, x86_64, XFCE
- **Version:** 2015.11.24
- **Video player:** VRT Player (custom?)
```
sven@linux-etoq:/mnt/storage2/archive> ytdl -v http://www.nieuw... | site-support-request | low | Critical |
119,200,098 | rust | Codegen for a large static array uses a lot of memory | Following 2 lines of Rust code can use more than 200 MB of memory to compile.
``` rust
const L: usize = 1 << 25;
pub static S: [u32; L] = [1; L];
```
```
$ rustc --crate-type lib -Z time-passes test.rs | grep translation
time: 0.710; rss: 209MB translation
```
Reported on [users.rust-lang.org post](https://users.rus... | A-LLVM,C-enhancement,T-compiler,I-compilemem | low | Major |
119,239,163 | vscode | Hide empty folders after apply file exclusions (user settings) | I'm a Unity 3D developer. Although I use file exclusions, it would be nice to hide folder that get empty after file exclusions are applied.
| feature-request,file-explorer | medium | Critical |
119,379,845 | neovim | quickfix: Relative/absolute filenames mess | vim/neovim names its file buffers according to the path passed to `:e`. When the passed path is relative the buffer name becomes relative, when it's absolute the buffer name becomes absolute. But then `:cd X` and `:lcd X` rename the buffers to become absolute if outside X, otherwise relative. Even worse: an `:lcd` in a... | bug-vim,quickfix | medium | Major |
119,436,145 | java-design-patterns | Staged Event Driven Architecture (SEDA) | ### Description
The Staged Event-Driven Architecture (SEDA) is a design pattern used to manage the complexity of highly concurrent systems. It divides the processing of events into a series of stages connected by queues, allowing for more manageable concurrency and better isolation of different parts of the system. Eac... | info: help wanted,epic: pattern,type: feature | low | Major |
119,514,111 | vscode | Provide encoding-related APIs for editor extensions | Currently there are only two fields in the TextEditorOptions API, a few other TextEditor-related APIs, and none of them is able to deal with the text buffer's encoding.
Comparing to [Atom's TextEdit API](https://atom.io/docs/api/v1.2.4/TextEditor), that is far from enough.
Most importantly, the API limitation makes it... | feature-request,api,file-encoding | high | Critical |
119,553,622 | TypeScript | Keep indentation level consistent in a multiline list | Copied from #3436:
> Another example:
>
> ``` typescript
> return (
> h.div({
> className: "view-node-row",
> style: {
> width: width,
> height: rowHeight
> }
> },
> backgroundElement,
> centerElement,
> toolsElement,
> h.div({ cl... | Bug,Help Wanted,Domain: Formatter | low | Minor |
119,556,527 | go | cmd/internal/obj: stackGuardMultiplier is wrong for a cross-compiler | This issue is similar to that reported in https://github.com/golang/go/issues/12764 except that GOOS=linux and i'm running on a fairly pristine image of macosx El Capitan.
when cross compiling to GOOS=linux on macosx El Capitan using go 1.5.1 I get a nosplit stack overflow. It happens in the link step, AFAICT from usi... | compiler/runtime | low | Minor |
119,606,768 | go | x/net/http2: TestServer_RejectsLargeFrames fails with "An existing connection was forcibly closed by the remote host" on windows | From windows-amd64-gce builder http://build.golang.org/log/a0906e4fa3713e6512cdff9af6662d1db0faad0d
```
--- FAIL: TestServer_RejectsLargeFrames (0.31s)
http2_test.go:64: 2015/11/30 20:57:53 127.0.0.1:49238: connection error: PROTOCOL_ERROR
http2_test.go:64: 2015/11/30 20:57:53 127.0.0.1:49238: connection error... | OS-Windows | low | Critical |
119,606,913 | rust | Desugared x.index(y) is not equivalent to x[y] | ``` rust
use std::ops::Index;
fn main() {
let _sugar = &"a".to_owned()[..];
let _desugar1 = "a".to_owned().index(..);
let _desugar2 = &*"a".to_owned().index(..);
}
```
```
<anon>:5:21: 5:35 error: borrowed value does not live long enough
<anon>:5 let _desugar1 = "a".to_owned().index(..);
... | A-lifetimes,P-medium,I-needs-decision,T-lang,C-bug | medium | Critical |
119,639,470 | go | x/mobile/cmd/gomobile: gomobile bind -n -target=ios fails when attempting to read Info.plist | Using gomobile version +01216d9
The following command fails to complete:
```
$ gomobile bind -n -target=ios golang.org/x/mobile/asset
```
with the following error:
```
mkdir -p Asset.framework/Versions/A/Headers
mkdir -p Asset.framework/Versions/A/Resources
ln -s Versions/Current/Resources Asset.framework/Resource... | mobile | low | Critical |
119,711,370 | TypeScript | Opaque types for WebGL | WebGL types are included in the default `lib.d.ts`. However, most types are defined as empty interfaces, which means that the compiler doesn't catch many WebGL errors.
Consider the following code:
``` ts
function foo(gl: WebGLRenderingContext, fbo: WebGLFramebuffer) {
gl.bindFramebuffer(gl.FRAMEBUFFER, fbo); // Cor... | Bug,Help Wanted,Domain: lib.d.ts | low | Critical |
119,712,437 | youtube-dl | Site support Request: Realm.io Videos | Up till a couple weeks ago, Realm hosted their videos on Youtube, but they've now switched to Wistia. Here's an example page: https://realm.io/news/alexis-gallagher-3d-touch-swift/
```
$ youtube-dl --version
2015.11.27.1
```
```
$ youtube-dl -jv "https://realm.io/news/alexis-gallagher-3d-touch-swift/"
[debug] System ... | site-support-request | low | Critical |
119,744,338 | vscode | Exclude all files except for... | The files exclude allows you to set `true/false` values, but it doesn't seem to take them completely into account.
For example, I would like to hide **everything** except for the scripts folder. You might then assume that this would do this:
```
{
"files.exclude":
{
"**/*": true,
"**/Scripts":... | feature-request,file-explorer,file-glob | high | Critical |
119,744,454 | youtube-dl | Site request: ispot.tv | URL Example: http://www.ispot.tv/ad/7p_Q/viagra-fishing
Output:
C:>youtube-dl -v http://www.ispot.tv/ad/7p_Q/viagra-fishing
[debug] System config: []
[debug] User config: []
[debug] Command-line args: [u'-v', u'http://www.ispot.tv/ad/7p_Q/viagra-fishing'
]
[debug] Encodings: locale cp1252, fs mbcs, out cp850, pref cp... | site-support-request | low | Critical |
119,749,466 | vscode | Macro like keybindings | When creating keyboard shortcuts, it would be nice if you could pass an array of commands (to execute like a macro) that would run the commands in that order.
So take this for example:
```
{
"key": "ctrl+s",
"command": [
"editor.action.format",
"editor.action.trimTrailingWhitespace",
"... | feature-request,keybindings | high | Critical |
119,771,336 | go | net/rpc: `(*Client).Go` is not asynchronous with respect to outbound traffic | In the event of a network partition, `net/rpc.(*Client).Go` can block, which is surprising given the documented behaviour of this method.
| NeedsInvestigation | low | Minor |
119,800,047 | TypeScript | Polymorphic "this" for static members | When trying to implement a fairly basic, but polymorphic, active record style model system we run into issues with the type system not respecting `this` when used in conjunction with a constructor or template/generic.
I've posted before about this here, #5493, and #5492 appears to mention this behavior also.
And here... | Suggestion,In Discussion | high | Critical |
119,804,187 | go | x/mobile/bind: support slices of supported structs | Just want to know if it will ever be possible to support slices of supported. I currently have to write a wrapper object around an array to pass it back and forth between IOS and Go.
| mobile | medium | Critical |
119,926,231 | vscode | Don't activate dirty file indicator if the file state matches the previous written state | Vscode show me I have unsaved changes:

Ok, before I saved it, I check md5 for this file.

After... | feature-request,file-io,keep | high | Critical |
119,954,446 | javascript | Explicitly clarify naming policy for React event handler methods | The [ordering section](https://github.com/airbnb/javascript/tree/master/react#ordering) implies that event handlers should be named `onFoo` rather than `handleFoo` per FB examples. Is this an explicit rule? If so, it would be nice to have it listed in either the "naming" or "methods" sections.
| question | low | Major |
119,986,939 | rust | Debug trait for tuples, array/slices, Vec, String (etc?) do not respect `width` parameter | Consider the following println:
``` rust
let msg = "Hello";
println!("(i,j,k): |{:30}|", msg);
```
This is using the `width` parameter to ensure that the output occupies _at least_ `width` characters. (One can provide other arguments like fill/alignment to adjust the fill character or whether the output is le... | T-libs-api,C-bug,A-fmt | low | Critical |
119,990,534 | opencv | BFMatcher SigSegv (OpenCL implementation) | My application very rarely segfaults around BFMatching.knnMatch (OpenCL via transparent API).
After investigation I created sample code that also segfaults:
``` cpp
#include <opencv2/features2d.hpp>
#include <opencv2/imgcodecs.hpp>
#include <opencv2/opencv.hpp>
#include <opencv2/core/ocl.hpp>
#include <vector>
#includ... | bug,priority: normal,affected: 3.4,category: ocl,category: t-api | low | Critical |
120,038,919 | go | x/tools/cmd/oracle: 'implements' query needs to inspect all packages in the analysis scope | The implements query inspects only the query package and its forward transitive closure, but users expect (and the documentation states) that it will report all related types in the analysis scope. Thus a query at bufio.Reader will report io.Reader, but a query at io.Reader will not report *bufio.Reader.
This is most... | Tools | low | Minor |
120,147,416 | go | runtime: additional memory profiler report modes or similar | Memory profiler reports heap contents at the end of one of the previous GCs. This makes profiles "stable" in the sense that it does not dependent on exact point in time it is queried (just after GC, just before GC, somewhere in the middle). It makes sense. However, we see periodic confusion caused by the fact that actu... | NeedsInvestigation | medium | Major |
120,198,091 | vscode | Explore: Integrated TypeScript building/transpilation | Make it simpler to setup TypeScript compilation.
Can we make this incrementally?
| feature-request,upstream,typescript | medium | Major |
120,217,640 | go | cmd/cgo: make identical C types identical Go types across packages | https://golang.org/cmd/cgo/ says:
> Cgo translates C types into equivalent unexported Go types. Because the translations are unexported, a Go package should not expose C types in its exported API: a C type used in one Go package is different from the same C type used in another.
While that's a convenient workaround ... | compiler/runtime | high | Critical |
120,233,403 | TypeScript | [tsserver] "Error processing request. watch ENOENT" with TypeScript 1.7.3 | I have a problem "Error processing request. watch ENOENT" when I send an open command. To reproduce since I have migrated to 1.7.3 (with 1.6, it worked).
Here steps to reproduce the problem:
- create a folder `C:/sample` which contains 2 files :
- `a.ts` which is empty
- `tsconfig.json` which contains `{}`
- d... | Bug,Help Wanted | low | Critical |
120,284,625 | kubernetes | "don't require a load balancer between cluster and control plane and still be HA" | Can I connect kube-proxy to multiple api servers like:
`—master=http://master1:8080,http://master2:8080,http://master3:8080` ?
| priority/backlog,sig/network,area/kubelet,area/kube-proxy,area/HA,sig/node,sig/api-machinery,kind/api-change,kind/feature,help wanted,lifecycle/frozen,triage/accepted | high | Critical |
120,299,079 | go | proposal: os/v2: Stdin, Stdout and Stderr should be interfaces | The three variables os.Stdin, os.Stdout, and os.Stderr are all *Files, for historical reasons (they predate the io.Writer interface definition).
They should be of type io.Reader and io.Writer, respectively. This would make it easier to do interesting things with special input or output processors. For instance, one co... | v2,Proposal | high | Critical |
120,307,006 | kubernetes | Needed: field-level extension mechanism | We don't have a good mechanism for plugging extension fields into objects. That is, suppose we have an Autoscaler type, and we want user on FooCloud to be able to set some extra fields in Autoscaler.FooExtensions for the FooCloudProvider to make use of.
Currently, we do this by letting everyone add a *FooCloudOptions ... | priority/backlog,area/api,area/apiserver,sig/api-machinery,kind/feature,lifecycle/frozen | medium | Major |
120,348,173 | go | cmd/compile: Suggest typo fixes for resolution errors | In case of "cannot find package" or "undefined" errors, perhaps we should suggest typo fix solutions?
The basic idea is to look for all allowed names in that position with the minimum levenshtein distance (perhaps capping it at 3 or something), and suggest those.
[Rust does this](http://is.gd/BYma9H) and it's pretty ... | NeedsInvestigation,compiler/runtime | low | Critical |
120,350,459 | rust | Add levenshtein distance based suggestions everywhere | Currently, we suggest typo fixes in case of function calls, locals, and field accesses. So, both the marked lines below will suggest the correct fix:
``` rust
struct A {foo: u8}
fn main() {
let x = A {foo: 1};
x.fob; // here
let aaaaaaa=1;
let z = aaaaaab; // here
}
```
However, this is not the case f... | C-enhancement,A-diagnostics,P-low,E-mentor,T-compiler | medium | Critical |
120,354,711 | TypeScript | [tsserver] documentation "about how to implement tsClient?" | I'm implementing tsClient inside Eclipse, but it's very hard for me, because there are no documentation about protocol. So I study implementation with sublime, vim and vscode, but it's not my language, so it's a little hard.
So, it should be very cool if you could provide a documentation to implement tsClient, I mean ... | Docs | low | Major |
120,460,978 | rust | UFCS can bypass trait stability | Right now we have a trick in the standard library where sometimes a trait is unstable but the methods are stable. This is primarily used for `SliceConcatExt` to make `join` stable on slices but you can't import the trait or rely on the fact that it's defined through a trait.
There are a few ways to bypass this, howeve... | A-stability,T-compiler,C-bug,F-staged_api | low | Critical |
120,501,316 | TypeScript | Cascading errors when incorrectly extending a generic type | Only one error should be reported for `xyz`: "Generic type '{0}' requires {1} types argument(s).". Subsequent uses of `xyz` should not report errors. In the example below, calling `new` does, and previously referring to properties on an instance of `xyz` did too.
Note that this cleanup should not break the language se... | Bug,Help Wanted | low | Critical |
120,515,501 | go | runtime: c-shared builds fail with musllibc | Currently, some of the init_array functions provided by a c-shared build expect to be called with (argc, argv, envp) arguments as is done by glibc, but this isn't specified by the ELF gABI for DT_INIT_ARRAY (http://www.sco.com/developers/gabi/latest/ch5.dynamic.html#init_fini), and isn't done with other libc implementa... | compiler/runtime | high | Critical |
120,523,771 | go | cmd/compile: storing pointer of a local value escapes | Using `go.1.5.1`
Consider the following program:
``` go
package main
func foo() {
type node struct{ n0, n1 *node }
var nodeCache [1024]node
var nodePtrs [1024]*node
nodes := nodePtrs[:0]
n := &nodeCache[0]
n.n0 = &nodeCache[1]
n.n1 = &nodeCache[2]
nodes = append(nodes, n)
}
func ma... | Performance,compiler/runtime | low | Major |
120,547,245 | rust | concurrent rustdoc usage can lead to bad times | I noticed that the documentation generated by `cargo doc` was not exactly the same depending on if I ran `cargo test` or `cargo build` first.
Running:
``` shell
$ cargo clean
$ cargo doc
$ mv target/doc tdoc
$ cargo clean
$ cargo test # or cargo build
$ cargo doc
$ diff -r tdoc target/doc
```
- in `search-index.js`: ... | T-rustdoc,C-bug,E-needs-mcve | low | Critical |
120,566,131 | go | encoding/xml: add generic representation of XML data | It would be helpful to have a more 'natural' data-object for XML data, so that all the information is preserved. Something like the DOM nodes in javascript.
Here is an implementation of what I would expect an XML parser to return:
https://github.com/fluhus/gostuff/tree/master/xmlnode
What do you think? Can we add suc... | Proposal,Proposal-Accepted | medium | Critical |
120,600,867 | opencv | viz3d.cpp compiler error with vtk in build | It appears functions are being defined in the [viz3d.cpp](https://github.com/Itseez/opencv/blob/master/modules/viz/src/viz3d.cpp) file which aren't defined in any corresponding class definition or header. There are also a few undeclared identifiers, probably enums, in [types.cpp](https://github.com/Itseez/opencv/blob/m... | bug,priority: normal,category: build/install,affected: 3.4,category: viz | low | Critical |
120,602,276 | TypeScript | Class View in Visual Studio? | TypeScript has some integration with VS, but the it doesn't seem to populate the class view window. Are there plans to implement this?
| Suggestion,Visual Studio | low | Minor |
120,626,631 | go | x/mobile/example: paint event sending is too much on iOS | - Go 1.5.2(OS-X 10.10)
- target device: iPhone5s iOS 9.1
- expected behavior: Just a good paint frequency.
- instead behavior: high CPU load and Irregular paint timing.
iOS device requires following patch
```
diff --git a/example/basic/main.go b/example/basic/main.go
index 2b2e0c9..f826c45 100644
--- a/example/basic... | mobile | low | Minor |
120,792,138 | rust | Error messages about lifetimes for mutable Iterator are cryptic. | Example: http://is.gd/8dVXWc
```
<anon>:42:14: 42:33 error: cannot infer an appropriate lifetime for borrow expression due to conflicting requirements
<anon>:42 Some(&mut self.cont.item)
^~~~~~~~~~~~~~~~~~~
<anon>:39:5: 43:6 help: consider using an explicit lifetime parameter as shown: f... | C-enhancement,A-diagnostics,A-lifetimes,T-compiler | low | Critical |
120,878,404 | go | net: add support for FileConn, FilePacketConn, FileListener on Plan 9 | A new test reveals that Plan 9 doesn't support File{Conn,Listener,PacketConn}.
```
--- FAIL: TestFileConn (0.00s)
file_test.go:121: write tcp 127.0.0.1:58090: write /net/tcp/26/data: i/o on hungup channel
FAIL
```
Just FYI: https://storage.googleapis.com/go-build-log/b7d5a4b1/plan9-386_d2e48151.log
| OS-Plan9,FeatureRequest | low | Minor |
120,890,642 | angular | Handling of "<" in html | #5657 allows "<" in text nodes so that `<p>{{ a < b ? c : d }}</p>` does not throw.
However this is not valid html - `<` would have to be `<` to have a valid html.
One potential issue with the current approach is that in `<p>{{ a <b && c > d }}</p>` `<b && c >` would be parsed as an html tag and would not be eas... | type: bug/fix,area: compiler,P3,compiler: parser,feature: votes required | low | Critical |
120,899,779 | flutter | Drop downs and popup menus have opposite material bugs | You can't interact with an item on a popup menus before it has finished animating in.
You _can_ interact with an item in a drop down menu, but doing so will draw ink splashes in the air before the material has painted there.
We should come up with a rationalisation that solves both these problems cleanly.
| framework,a: animation,f: material design,a: quality,P3,team-design,triaged-design | low | Critical |
120,906,923 | go | x/net/websocket: ErrBadStatus should include the bad status code | Right now, if a `x/net/websocket` client connects to an HTTP endpoint and receives a response with any status other than 101, it returns an `ErrBadStatus` ([source](https://github.com/golang/net/blob/01256db42e5106196a3473ec1620727a383500e8/websocket/hybi.go#L448)). This error does not include the actual status code r... | NeedsInvestigation | low | Critical |
120,921,739 | go | tour: better explanation about type declarations? | Context: https://tour.golang.org/moretypes/2
I just decided to look through the Go tour to see how it explains named types and assignability. As far as I can tell, the only explanation is the parenthetical sentence "And a `type` declaration does what you'd expect."
Based on user questions like issue #13529, I suspec... | Documentation,NeedsInvestigation | low | Major |
121,036,397 | neovim | :colorscheme - no syntax highlighting when changing colorscheme | Start with a colorscheme - like monokai, all tags are highlighted, everything works.

Now change to a heavier colorscheme - one which defines more syntax rules (like solarized or Pape... | bug-vim | low | Major |
121,056,717 | youtube-dl | abort video + audio when --max-filesize reached | ```
youtube-dl -f bestvideo[ext=mp4]+bestaudio[ext=m4a]/best --max-filesize 2G --abort-on-error 'https://www.youtube.com/watch?v=ksWHFG8-gC4'
```
When i exec this command for a youtube video, if the video file is bigger than 2G, video download is aborted, but audio file is still downloaded.
is there any option combin... | request | low | Critical |
121,068,362 | TypeScript | Automatically inserting JSX closing element in TypeScript JSX file | Currently, when users type non self-closing JSX tag, they will have to type corresponding closing JSX tag. In this situation, our language service can help the users by automatically insert the corresponding JSX tag. The newly inserted tag should respect existing format and If the matching closing tag exists, the closi... | Suggestion,Visual Studio | medium | Critical |
121,116,466 | kubernetes | Handle node label updates and deletions | As of now node labels can be updated either via the API server directly or through the kubelet.
Inside of the kubelet, labels can be set directly from inside of kubelet, or by using command line flags and localhost files.
Ownership of labels is not explicit. As of now a label set via the kubelet can be updated through... | sig/node,kind/feature,priority/important-longterm,lifecycle/frozen,needs-triage | medium | Critical |
121,248,055 | TypeScript | Differing user-defined type guard and 'typeof' type guard behaviour when narrowing 'any' | In the below code, using a typeof type guard and an equivalent (I thought) user-defined guard, only one error is produced.
``` typescript
var y: any;
// Built-in type guard
if (typeof y === "string") {
y.hello = true; // Correct error - 'hello' does not exist on type string
}
// Equivalent user-defined type guar... | Suggestion,Help Wanted,Effort: Moderate | low | Critical |
121,256,418 | go | cmd/compile: escape analysis overconservative for recursive calls | Sample program. Allocation in inner loop of recursive foo does not escape, but conservative assumptions (because escape analysis does not do fixed-pointer iteration) force conclusion that it does.
```
package main
// import "fmt"
type Node struct {
next *Node
name string
}
var sink string
func foo(list *Node,... | NeedsFix,compiler/runtime | low | Minor |
121,275,472 | go | archive/tar: add support for writing tar containing sparse files | I've created a [Github Repo](https://github.com/grubernaut/Golang-Tar) with all the needed steps for reproducing this on Ubuntu 12.04 using Go1.5.1. I've also verified that using Go1.5.2 still experiences this error.
Run `vagrant create` then `vagrant provision` from repository root.
```
vagrant create
vagrant provis... | NeedsFix,FeatureRequest | medium | Critical |
121,302,677 | youtube-dl | Site Support Request: serviporno.com | Hi,
Another popular site:
./youtube-dl http://www.serviporno.com/videos/adolescente-cenida-y-su-maquina-de-follar/
[generic] adolescente-cenida-y-su-maquina-de-follar: Requesting header
WARNING: Falling back on generic information extractor.
[generic] adolescente-cenida-y-su-maquina-de-follar: Downloading webpage
[gene... | site-support-request | low | Critical |
121,673,963 | kubernetes | Rolling updates should fail early if a pod fails to start | In 1.0.x, rolling update didn't block, so we could check things like a failed pod while waiting for the update to complete.
In 1.1.x, rolling update does block up to the timeout amount. This is great since we had to script it externally before. However it waits the entire timeout even if the update fails immediately. ... | priority/backlog,area/app-lifecycle,area/workload-api/deployment,sig/apps,lifecycle/frozen | medium | Critical |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.