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 |
|---|---|---|---|---|---|---|
101,122,958 | rust | DST coercions fall over with UFCS | ``` rust
#![feature(core, rc_weak)]
use std::cell::RefCell;
use std::rc::{Rc, Weak};
trait Baz { fn get(&self) -> i32; }
impl Baz for i32 { fn get(&self) -> i32 { *self } }
fn main() {
let a: Rc<RefCell<i32>> = Rc::new(RefCell::new(42));
let c1: Weak<RefCell<Baz>> = Rc::downgrade(&a); // Doesn't ... | A-DSTs,T-compiler,C-bug | low | Minor |
101,236,314 | java-design-patterns | Data-Context-Interaction (DCI) pattern | **Description:**
The Data-Context-Interaction (DCI) design pattern focuses on separating data storage, business logic, and interaction context within a system. It aims to improve code readability and maintainability by clearly defining these three components:
1. **Data**: Represents the structure and storage of data, ... | info: help wanted,epic: pattern,type: feature | low | Major |
101,317,013 | TypeScript | Re-exporting namespace declarations in ES6 ambient declaration | Right now many declaration files take this form:
``` typescript
declare namespace MyLib {
}
declare module 'myLib' {
export = MyLib;
}
```
However, there doesn't seem to be an equivalent for ES6 modules:
``` typescript
declare module 'myLib' {
export default MyLib; // this works for exporting the default, but ... | Suggestion,In Discussion | medium | Major |
101,335,951 | go | go/printer: "Line of stars" detection false positive for commented out block of code with each line dereferencing a pointer. | #### What version of Go are you using (go version)?
```
go version go1.4.2 darwin/amd64
```
#### What operating system and processor architecture are you using?
OS X 10.10.5, amd64.
#### What did you do?
Consider the following program:
``` Go
package main
import "fmt"
func main() {
var i [3]int
p0 := &i[0... | NeedsInvestigation | low | Minor |
101,519,463 | youtube-dl | Add support for universalmusic.fr site | Hi,
Is this possible to add support for this website: http://www.universalmusic.fr/ ?
Here is an example of a video to support: http://www.universalmusic.fr/artiste/10732-calogero/videos/18522-tien-an-men
Thanks :)
| site-support-request | low | Minor |
101,614,766 | youtube-dl | extractor for edx.org courses | Course page: https://courses.edx.org/courses/HarvardX/CS50x3/2015/info
Course wage (list of pages with lectures): https://courses.edx.org/courses/HarvardX/CS50x3/2015/courseware/b2f7d86728354866a2c4438e76c3ec55/
Lecture (actual video): https://courses.edx.org/courses/HarvardX/CS50x3/2015/courseware/b2f7d86728354866a2... | site-support-request,account-needed | low | Minor |
101,616,608 | go | cmd/dist: race detector should run test/ tests | There are lots of interesting code patterns in test/ dir. It would be useful to at least build them with race detector in race.bash.
| RaceDetector | low | Minor |
101,690,238 | go | x/mobile: gomobile test | This may turn into a design for a `gomobile test` subcommand, but for now I'm writing down some notes on what I've been thinking about this topic, as I have a tendency to forget parts of this story when I switch work.
Current and potential testing systems for app programmers:
**All-Go apps:**
- `go test` runs unit te... | mobile | low | Critical |
101,699,440 | go | x/review/git-codereview: does not work with 'git worktree' | See https://github.com/blog/2042-git-2-5-including-multiple-worktrees-and-triangular-workflows for info about 'git worktree'.
At the least, the hook checker needs updating:
``` bash
$ git sync
git-codereview: checking hook: stat /Volumes/Data/src/go.ssa/.git/hooks/commit-msg: not a directory
```
There might be other... | NeedsInvestigation | low | Minor |
101,713,260 | rust | FreeBSD x86_64 test failures | After the new snapshots landed, test failures showed up.
| O-x86_64,O-freebsd,C-bug | low | Critical |
101,839,785 | go | x/tools/go/ssa: expected "Output:" text not instantiated for testing.InternalExample struct | go version go1.5rc1 darwin/amd64
For bonzo_test.go
```
package bonzo
import "fmt"
import _ "testing"
func ExampleHello() {
fmt.Println("hello")
// Output: hello
}
```
x/tools/go/ssa generates code:
```
function: test$main.main
block 0:
t0 = new [1]testing.InternalExample (test main)
t1 = &t0[0:int... | Tools | low | Critical |
101,856,761 | opencv | Organize project management with github issue | Now that we have migrated from chilliproject to github it could be helpful to evaluate one of this tool at http://liftux.com/posts/using-github-issues-project-management/.
Most of this solutions are free for open source projects (like github account itself). Waffle it is also open source. Not reviewed and opensource a... | RFC | low | Minor |
101,872,692 | opencv | videoio last frame forever when usb camera disconnected | Hi I am using opencv 3.0.0 compiled under mingw 4.9.2 and I found out a bug, when the camera is disconnected no empty frame is returned but instead the last captured image from the camera, over and over again. There is no way how to find out if the camera was disconnected even .opened still returns true over the camera... | bug,priority: normal,category: videoio,affected: 3.4 | low | Critical |
101,946,396 | go | image/jpeg: specify APP1 segment for outputting EXIF data in jpeg.Encode()? | Currently there is no way to output EXIF in jpeg.Encode() so if a JPEG file is modified use image/jpeg the EXIF info is lost.
Reading EXIF using jpeg.Decode() has a similar problem but reopening the file and reading a few kilo bytes is probably an acceptable workaround. Reopening a file to insert a segment is much mor... | Thinking | low | Critical |
102,034,903 | TypeScript | Provide suggested fixes for unresolved entities | Something like the following:

See https://github.com/Microsoft/TypeScript-Sublime-Plugin/issues/327 for the original suggestion.
| Suggestion,Help Wanted | low | Minor |
102,035,879 | go | cmd/go,cmd/cgo: link-time symbol resolution for buildmode=c-shared | version:
```
$ go version
go version go1.5 linux/amd64
```
I'm working with a software that loads plugins structured as follows. Plugins implement an interface, and the main program provides an API, so a typical call stack might look like:
```
main_program_function()
\_ plugin_function()
\_ main_program_other_fun... | NeedsInvestigation,GoCommand,compiler/runtime | low | Major |
102,085,607 | kubernetes | Deprecate Kubelet Read-only port | There are some voices that it's no longer necessary/won't be necessary for original purpose, as Heapster is/will be using secured port to scrape cAdvisor data. @roberthbailey @vishh @bgrant0607.
On the other hand with @fgrzadkowski we used it to debug some problems Filip was having, so it isn't completely useless.
@d... | priority/backlog,area/security,kind/cleanup,sig/node,priority/important-longterm,lifecycle/frozen | medium | Critical |
102,106,082 | opencv | Python bindings naming convention and packaging | I've been working on creating automated builds (using [conda](http://conda.pydata.org/docs/)) of [OpenCV2](https://github.com/menpo/conda-opencv) and [OpenCV3](https://github.com/menpo/conda-opencv3). In particular, I am only really interested in the Python bindings. However, I have a couple of questions about the desi... | priority: normal,feature,category: build/install,affected: 3.4,RFC | low | Major |
102,136,672 | opencv | Not determenistic behaviour of flann on android smartphone | I'm using the HierarchicalClusteringIndex from the flann module for image recognition. The image features are computed with ORB.
On my Linux desktop computer (Ubuntu 14.04) everything works fine. On my Android smartphone (Galaxy Nexus, Android 4.3) the knnSearch via "findNeighbors" yields to different results after ea... | bug,priority: normal,affected: 2.4,affected: 3.4,category: flann | low | Minor |
102,171,139 | go | runtime: revisit non-constant assist ratio | Currently we compute a conservative assist ratio that assumes the entire heap is reachable in order to prevent heap overshoot caused by underestimating. Unfortunately, this means we usually over-assist (by a factor of ~2 in steady state). This causes the GC cycle to finish below the heap goal and with high CPU utilizat... | compiler/runtime | low | Critical |
102,197,109 | neovim | PCRE regex support | I'm not asking for https://github.com/neovim/neovim/issues/304 , or even the "refactoring regex matching to a swappable plugin" suggestion within there. As much as I would love that, it seems to me that would either be a headache to plugin writers who'll need to check which style user has and duplicate their regexes, o... | enhancement | high | Major |
102,289,576 | youtube-dl | Get a list of all playlist and descriptions from a channel | Hello,
I am trying to create a podcast from a channel.
Is there a way to get a list of all playlists from a channels (e.g. in the same way we get a list of videos from a playlist) ?
And continuing on that, is there a way to get the playlist description?
-rsd
| request | low | Minor |
102,395,648 | go | cmd/link: combining dwarf on darwin can be very slow | I'm noticing ~15x increase in build time when switched to go 1.5.
It is somehow connected with a package github.com/ry/v8worker - binding for v8 javascript engine.
I'm building on OS X.
This is a trivial program:
``` go
package main
import _ "github.com/ry/v8worker"
func main() {
}
```
**1.4** build time:
real 0... | help wanted,ToolSpeed,NeedsFix,early-in-cycle | medium | Major |
102,520,642 | youtube-dl | [req] egghead.io | technology list: https://egghead.io/technologies/angular2
series list: https://egghead.io/series/react-flux-architecture
search results list: https://egghead.io/search?q=testing
video page: https://egghead.io/lessons/react-development-environment-setup
| site-support-request | medium | Critical |
102,556,643 | go | x/mobile/cmd/gomobile: INSTALL_FAILED_INVALID_APK when dashes in package | Hi,
It seems that it is not possible to build an Android application from Go source code if there is a dash (`-`) somewhere in the Go package name. Since my organization on GitHub has a dash inside, this means I cannot build any Android applications whatsoever.
You can easily test this with the currently available Go... | mobile | low | Critical |
102,638,258 | go | cmd/go: cgo flags drops quotes. | There doesn't seem to be a way to pass a quoted value with cgo flags.
``` go
package libsass
/*
#cgo CFLAGS: -D VERSION="3.2.4-0ae11a4"
char* version(void) {
return VERSION;
}
*/
import "C"
func Version() string {
return C.GoString(C.version())
}
```
``` sh
$ go build -x -v
WORK=/tmp/go-build030587731
test/... | NeedsInvestigation | low | Critical |
102,664,089 | youtube-dl | [Weibo] Unsupported URL | - **URL:** http://video.weibo.com/show?fid=1034:7ffc79010fec610ed9a7dc35bd288062
- **Error:** Unsupported URL: http://video.weibo.com/show?fid=1034:7ffc79010fec610ed9a7dc35bd288062
- **Platform:** openSUSE 13.1, x86_64, XFCE
- **Version:** 2015.08.16.1
- **Video player:** Custom
Oddly, there's supposed to be Weibo sup... | site-support-request | low | Critical |
102,713,176 | opencv | WinRT: imread/ imwrite not working properly in Visual Studio 2015 C++ Universal Windows Application | I wrote a code like this and `imread` only works when the path is in the ms-app folder.
I've changed the permission of the application in AppXManifest to make it able to access My Photo but doesn't help either.
The OpenCV branch I'm using is https://github.com/Microsoft/opencv/tree/vs2015-samples
I'm using Visual Stu... | bug,priority: low,affected: 3.4,platform: winrt/uwp | low | Critical |
102,778,347 | go | net/http: implementing size capped connection pools | Hi,
This issue came up a few times already on golang-nuts. We could use an upper bound on the HTTP connection pool (active + idle) size and either block the caller until a connection becomes available, or return an error.
One of the suggested approaches is to provide a custom Transport that does the bookkeeping insid... | NeedsInvestigation | low | Critical |
102,949,671 | youtube-dl | [bilibili] Add support for authentication | ```
youtube-dl http://www.bilibili.com/video/av2757963/ --verbose --dump-pages
[debug] System config: []
[debug] User config: [u'-f', u'bestvideo+bestaudio/best']
[debug] Command-line args: [u'http://www.bilibili.com/video/av2757963/', u'--verbose', u'--dump-pages']
[debug] Encodings: locale UTF-8, fs utf-8, out UTF-8,... | request | low | Critical |
103,000,355 | neovim | Wrong indenting of compound literals. | Indenting of compound literals is broken in both neovim and vim when assignment and declaration are split.
I'm using:
```
NVIM 0.0.0-alpha+201508240435 (compiled Aug 24 2015 19:21:22)
Commit: 5066128d484ee8d0cb10ddd2260c3f5b47104b92
VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Jul 11 2015 08:44:54)
```
But happens ... | bug-vim,syntax | low | Critical |
103,013,185 | opencv | cv::Point::homogeneous() | Analog to Eigen's [MatrixBase::homogeneous](http://eigen.tuxfamily.org/dox/classEigen_1_1MatrixBase.html#af3513a0abfc3875e6d1912b8bb7b28ac) I vote for a cv::Point::homogeneous and a cv::Point3_::homogeneous , i.e. a convenience method which returns the same point with one additional dimension set to 1 so you can quickl... | priority: normal,feature,category: core | low | Critical |
103,232,492 | youtube-dl | Site Support Request: bugs.co.kr | Is it possible to add support for this url and website:
http://music.bugs.co.kr/mvPlayer?mvId=196710
I got member of this website, but couldn't buy it and download it due to this video is free to watch for everyone.
It got many Korean show undisclosed cut that are not for sale and free to watch.
Any chance to add supp... | site-support-request | low | Critical |
103,276,638 | opencv | In faceDetect.cpp Video input still be executed after it finish (infinite loop) | Hi ,
when trying to execute the code faceDetect.cpp with a video input instead of the camera itself , the display won't stop and when the video is finished : I get this warning (result:10030): GLib-GObject-WARNING **: Attempt to add property GtkSettings::gtk-label-select-on-focus after class was initialised and it will... | bug,priority: normal,category: samples | low | Minor |
103,296,085 | opencv | Unable to compile calib3d with cuda | I get the following compilation error when compiling the latest master WITH_CUDA=True.
```
[ 83%] Building CXX object modules/cudalegacy/CMakeFiles/opencv_cudalegacy.dir/src/calib3d.cpp.o
/home/sam/src/opencv/modules/cudalegacy/src/calib3d.cpp: In function ‘void cv::cuda::solvePnPRansac(const cv::Mat&, const cv::Mat&,... | bug,priority: normal,category: build/install,affected: 3.4,category: gpu/cuda (contrib) | low | Critical |
103,322,744 | TypeScript | Expose `--init` functionality in a tsserver command | We now have `--init` support to generating a default tsconfig.json file (see #4037). Editors would need to expose a functionality that uses this, possibly passing a set of additional defaults based on their scenario. we need to expose this as a Language Service API as well as a tsserver command. see @jrieken's comment ... | Suggestion,Help Wanted | low | Minor |
103,357,204 | rust | [MSVC] `cl.exe` doesn't support static relocations with large address awareness. | See `relocation-model` from `run-make`.
| O-windows,C-enhancement,T-compiler,O-windows-msvc | low | Minor |
103,436,992 | java-design-patterns | Service configurator pattern | ### Description:
The Service Configurator design pattern allows an application to dynamically configure and manage a set of services without requiring a restart. This pattern is useful for applications that need to handle a variety of services with different configurations and lifecycles. Key elements of the Service Co... | info: help wanted,epic: pattern,type: feature | low | Minor |
103,437,284 | java-design-patterns | Acceptor-Connector pattern | **Description:**
The Acceptor-Connector design pattern decouples connection establishment from connection handling in networked systems. The pattern's main components are the Acceptor, Connector, and Handler. The Acceptor is responsible for listening for incoming connection requests and creating a new connection. The C... | info: help wanted,epic: pattern,type: feature | low | Minor |
103,561,097 | rust | Type inference problem with lifetimes and assoiated types | I am trying to get some lifetime polymorphism but I unable to do so because of some bugs (#24424, #23958). This time it seems that the type inference is not working.
``` rust
use std::ops::Range;
pub trait Iter {
type Type: Iterator;
}
pub trait T {
fn f<'a>(&'a self) -> <&'a Self as Iter>::Type where &'a Se... | A-lifetimes,P-low,A-associated-items,I-needs-decision,T-lang,C-bug | low | Critical |
103,632,573 | rust | Add an overview toggle to rustdoc lib output | Rustdoc libs should have an overview button of some sort.
As discussed [here](https://internals.rust-lang.org/t/rustdoc-mockup-for-including-more-structured-content/2540), one problem with the std docs is that you can't tell which part of an unfamiliar page is actually useful. For example, below is a mockup of what th... | T-rustdoc,C-feature-request | low | Minor |
103,801,476 | TypeScript | Improve error message for decorator type mismatches | In TS 1.5 this:
``` ts
//Relation.ts
export function Relation(cls: any) {
return function () {
console.log(cls);
}
}
//Foo.ts
import {Relation} from "./Relation";
export class Foo {
@Relation(Foo)
info: string;
}
```
Compiles without error. In TS 1.6, it reports the error:
```
error TS1240:... | Bug,Help Wanted,Good First Issue,Domain: Error Messages | medium | Critical |
103,816,001 | TypeScript | Improve support for Symbol.toPrimitive | Presently, TS limits index types to 'string', 'number', 'symbol', or 'any'. That's fine, but consider the following:
``` ts
class Foo {
[Symbol.toPrimitive](): number {
return 1;
}
}
var x = ['a','b','c'];
var f = new Foo();
x[f];
```
We give the error `an index expression argument must be of type ..... | Suggestion,Needs Proposal | medium | Critical |
103,817,894 | TypeScript | Poor error recovery in jsx elements | ``` jsx
var x = <div span=3 ></div>;
```
```
Error TS1005 '{' expected. TypeScriptHTMLApp6 c:\Users\mhegazy\Documents\Visual Studio 2015\Projects\TypeScriptHTMLApp6\TypeScriptHTMLApp6\file1.tsx 10
Error TS17002 Expected corresponding JSX closing tag for 'div'. TypeScriptHTMLApp6 c:\Users\mhegazy\Documents\... | Bug,Help Wanted | low | Critical |
103,822,994 | three.js | BoundingSphere per BufferGeometry.group | At the moment `BufferGeometry`'s groups are sorted using the centre of the whole BufferGeometry. In the near future we could consider having a `BoundingSphere` per group so transparent sub parts of a geometry get proper sorted.
Follow up from #7066.
| Enhancement | low | Minor |
103,856,394 | rust | Local ambiguity in macro *definition* | ``` rust
macro_rules! m {
() => ();;
}
```
```
<anon>:2:14: 2:15 error: local ambiguity: multiple parsing options: built-in NTs tt ('lhs') or 1 other options.
<anon>:2 () => ();;
^
```
(the equivalent of `$( $lhs:tt => $rhs:tt );+ $(;)*` is used to parse macros)
This leaks "lhs", which ... | A-diagnostics,P-low,A-macros,T-lang,C-bug | low | Critical |
103,859,130 | youtube-dl | Support for Discoverymax | Hi, I would like to ask you to add support for: www.discoverymax.marca.com.
The web offers the videos in a Brightcove playlist, and it works like this: There is a [playlist url](http://www.discoverymax.marca.com/series/otros/la-fiebre-del-oro/episodios-completos/#) and each video has it's _unique id_ ( i.e. #43838972... | site-support-request,geo-restricted | low | Critical |
103,865,117 | go | gdb: provide a stack unwinder in Python | The recently released Gdb 7.10 added support for writing a frame unwinder in Python,
which is ideal for us.
doc: https://sourceware.org/gdb/current/onlinedocs/gdb/Unwinding-Frames-in-Python.html#Unwinding-Frames-in-Python
The issue tracks that.
| NeedsInvestigation | low | Major |
103,895,892 | go | cmd/compile: disambiguate package short names in "is not assignable" compile errors | I wrote some code that produced the following error in:
```
call.go:83: wrong type of argument 0 to Return for *mock_codesearch.MockCodesearcher.FindManifestsByNodeName: []codesearch.Result is not assignable to []codesearch.Result
```
I was confused because those two types are the same. Then I realized that on the le... | compiler/runtime | low | Critical |
103,901,360 | youtube-dl | [req] e-learning udacity.com | Course page: https://www.udacity.com/course/viewer#!/c-ud032/l-698949179/m-762588556
| site-support-request | low | Major |
103,937,042 | go | encoding/xml: support QName values / expose namespace bindings | It's not uncommon for XML to contain QNames as element and attribute values, e.g.
```
<my-document xmlns:foo="http//..." >
<my-element>foo:bar</my-element>
</my-document>
```
In order to correctly unmarshal the value, you need to know the namespace bindings in effect for my-element, but Decoder doesn't appear... | Thinking,NeedsFix,early-in-cycle | low | Critical |
104,090,902 | neovim | URI for terminal (term://...) | Current proposal:
```
hierarchical part
┌──────────────────┴──────────────────┐
terminal://username@localhost/usr/local/bin/bash:1234/path/cwd/?ls;echo foo;#optional-name
└───┬───┘ └───┬───┘ └───┬───┘└─────────┬────────┘└─┬─┘└───┬────┘└────┬─────┘└─────┬─────┘
scheme user host ... | needs:design,terminal | medium | Major |
104,099,188 | rust | TLS destructors on the main thread are not always run | There are some platforms where TLS destructors are run when the main thread exits, and there are some platforms where this does not happen,~~ and there are some platforms where things just go crazy ~~. For example, testing this program:
``` rust
struct Foo;
impl Drop for Foo {
fn drop(&mut self) {
... | A-destructors,E-needs-test,T-libs-api,A-thread-locals,C-bug | medium | Major |
104,105,131 | opencv | the tutorial of high dynamic range imaging may cause misleading | http://docs.opencv.org/master/d3/db7/tutorial_hdr_imaging.html#gsc.tab=0
despite I didn't really try that,
the outcome of the tone mapped HDR should not be so poor, compared to the result of original paper
Their may be some bugs occur in the overall procedure
Durand, Frédo, and Julie Dorsey. "Fast bilateral filterin... | bug,priority: low,affected: 3.4,category: photo | low | Critical |
104,143,409 | go | x/tools/cmd/goimports: treat import paths as standard library only if they are in goroot | The go tool sets a field to indicate whether a package is part of the standard library:
https://github.com/golang/go/blob/8d478e845c/src/cmd/go/pkg.go#L156
```
p.Standard = p.Goroot && p.ImportPath != "" && !strings.Contains(p.ImportPath, ".")
```
goimports uses a different rule:
https://github.com/golang/tools/blo... | Tools | low | Minor |
104,152,115 | youtube-dl | [req] e-learning -- sitepoint.com | Sitepoint has lots of video courses.
Course page: https://www.sitepoint.com/premium/courses/introduction-to-git-2902
| site-support-request,account-needed | low | Minor |
104,166,707 | TypeScript | Object.constructor isn't implemented specifically enough | Consider:
``` ts
class Foo extends ([].constructor) {
}
```
`[].constructor` should be `Array`, which we aught to be able to extend. However, the checker complains on `[].constructor` that "Type 'Function' is not a constructor function type". Considering `.constructor` is _quite explicitly_ the constructor function f... | Bug,Help Wanted | low | Major |
104,171,157 | react | Play Nicely with The DOM Event System (because it's legacy anyway) | Currently React implements its own plugin system and event bubbling rules. This is important for systems like the responder system since the DOM event system is incapable of implementing proper event negotiation support.
However, on desktop, we don't really take full advantage of our custom event system other than to ... | Type: Big Picture,React Core Team | low | Critical |
104,171,915 | go | x/net/websocket: Asymmetric treatment of Origin | In the docs for websocket.Handler it says you can ignore Origin, for non-browser requests as an example. However the Dial\* functions all throw errors if an empty origin is provided.
| NeedsInvestigation | low | Critical |
104,241,081 | opencv | BFMatcher doesn't work with MatVector | ```
fastDetector->detect(l, imgL_keypoints);
descriptor->compute(l, imgL_keypoints, imgL_descriptors);
vector<Mat> descriptorsL;
for (int i = 0; i < imgL_descriptors.rows; i++)
{
descriptorsL.push_back(imgL_descriptors.row(i));
}
fastDetector->detect(r, imgR_keypoints);
descrip... | bug,priority: normal,category: features2d | low | Critical |
104,390,241 | youtube-dl | Unable to download this ESPN's film vidoe. | Hi!
$ youtube-dl -v http://espn.go.com/30for30/film?page=the-schedule-makers
[debug] System config: []
[debug] User config: []
[debug] Command-line args: [u'-v', u'http://espn.go.com/30for30/film?page=the-schedule-makers']
[debug] Encodings: locale UTF-8, fs UTF-8, out UTF-8, pref UTF-8
[debug] youtube-dl version 2015... | bug | low | Critical |
104,396,865 | go | spec: clarify how unsafe.Pointers may be used to determine offsets between addresses | For background see discussion at https://groups.google.com/d/topic/golang-nuts/Uet5p_3JhZs/discussion
Currently it is possible to determine the offset between two values' addresses by finding the difference between uintptrs converted from unsafe.Pointer values. This is the only way to be able to determine whether two ... | NeedsInvestigation | high | Critical |
104,401,091 | electron | Support two-finger swipe navigation | OSX supports various gestures with the trackpad. One of the most useful of these is the two-finger swipe which allows you to navigate forward and backward in web apps. This could be very useful for electron apps.
| enhancement :sparkles:,pr welcome | high | Critical |
104,422,381 | go | cmd/go: 'go test' should dynamically compute best timeout | Using `go1.5`
I discovered that "go test" crashes after the timeout of 600s has passed. I was running all the benchmarks in `compress/flate` and I set `-benchtime 10s`. Since each benchmark will run for about 10s or more, and there are 36 benchmarks in that package, this occupies at least 360s, which is running close ... | NeedsDecision | low | Critical |
104,582,139 | youtube-dl | specify config file | there's an option to --ignore-config is there any plans to allow specify a specific config file, that is multiple config files.?
Examples, downloading certain file types from specific sites. Downloading with username and password and parameters depending which sites you're downloading from.
Ultimately, I guess it's... | request | low | Minor |
104,636,103 | go | x/mobile/exp/sensor: simplify os thread proxifying mechanism on Android | The Android implementation of the sensor package need to initialize a ALooper. ALoopers must be accessed from the same OS thread, therefore each operation on the package must be done on a goroutine that is locked to an OS thread.
The current mechanism accepts new messages through a signal channel depending on the sign... | mobile | low | Minor |
104,659,720 | go | runtime: c-shared with LD_PRELOAD does not work for some programs | I'm trying to make my own LD_PRELOAD-able library like this:
``` go
// compile: go build -buildmode=c-shared -o example.so example.go
// tested with Go 1.5 on Ubuntu 15.04 amd64
package main
import "C"
func main() {}
//export dummy
func dummy() C.int { return 42 }
```
This `example.so` works well with several simple ... | compiler/runtime | low | Critical |
104,662,761 | TypeScript | Un used variable is emmitted while transpiling enums. | # TypeScript code
<pre>
<code>
module Workspace {
export enum State {
IN_PROGRESS,
BUFFER_RENDERED,
SKIPPED,
TIME_OUT
}
}
</code>
</pre>
# Compled JavaScript Code.
<pre>
<code>
var Workspace;
(function (Workspace) {
(function (State) {
State[State["IN_PROGRESS"] = 0] = "IN_PROGRESS";... | Suggestion,Help Wanted | low | Major |
104,676,371 | go | cmd/internal/obj: lacks tests | There are no tests that check the validity of the generated bytestream against some known golden sample.
| compiler/runtime | low | Minor |
104,721,101 | gin | Pass var to route handler | Hi,
how can I pass a var (db connection pointer) to a route handler like this:
apiV1.GET("/users/:userid", userHandler)
so that I can use in userHandler ?
Now I use a global var but I want to move the handler functions to another package
| question | medium | Major |
104,743,718 | TypeScript | static property inheritance complaining when it shouldn't | I've seen that you've already closed many issues on this. But I'm reporting another one in hopes to wear you down ;)
It seems I can't change the signature of a static function in a derived class. The fact that the subclass is at all aware of the static functions on the super class is really strange.
I developed in C#... | Suggestion,Committed | medium | Critical |
104,780,490 | go | x/build: submit queue, possibly implemented as optional auto-submit on +2 when trybots/slowbots with rebase pass | I see a trend of giving +2 together with trybot recently.
because we've defined that +2 means it's ok to submit,
I wonder if trybot could just submit the change (on behave
of the user who gives +2 and also invokes the trybot) if
the trybot runs are successful.
what do you think?
| Builders,FeatureRequest | medium | Major |
104,786,118 | go | x/mobile/event/mouse: include button state in event | The Button field records which button is transitioning, but for some applications (like chording) it would be nice if there was also a bitmask that said which buttons are up and down. This value can be integrated by following the transitions, but it's arguably something that could be done once by the mouse event driver... | mobile | low | Minor |
104,786,264 | go | x/mobile/event/mouse: implement helper method for modifier keys | It is conventional that on a laptop with only a trackpad button, option and command (on Macs) turn a click into a middle or right click. It would be nice to have this functionality provided once, in the mouse package.
| mobile | low | Minor |
104,805,941 | youtube-dl | Site Support Request: Popular Science / Portico Player | ```
$ youtube-dl --version
2015.09.03
```
```
$ youtube-dl -g http://www.popsci.com/thorium-dream
WARNING: Falling back on generic information extractor.
http://www.popsci.com/\/\/www.popsci.com\/sites\/all\/modules\/bonnier\/bonnier_analytics\/providers\/omniture\/js\/s_code.js
```
The video is ultimately a straight... | site-support-request | low | Minor |
104,875,071 | opencv | about pyopencv_to in cv2.cpp | Hey guys,
I am trying to compile OpenCV with ICC compiler. The code is from github , the latest version. When python component was compiled, it showed me this error message :
```
[ 64%] Building CXX object modules/python2/CMakeFiles/opencv_python2.dir/__/src2/cv2.cpp.obj
cv2.cpp
.\pyopencv_generated_types.h(1838): err... | bug,category: python bindings,priority: low,affected: 3.4 | low | Critical |
104,948,386 | go | net: allow custom Resolver method implementation(s) | I mentioned in #12476 that I would like to detect the time it took for DNS resolution phase of the Dial process in `Dialer.Dial` . The solution posted there was very hacky and adds unnecessarily to the API.
@bradfitz suggested
> Perhaps `net.Dialer` could have an optional `Resolver`, akin to how `http.Client` has an ... | help wanted,Proposal,Proposal-Accepted | high | Critical |
104,990,813 | go | x/build: bring back "broke the build" notifications | I monitor the dev.ssa dashboard for build failures, with decreasing frequency these days. It'd be nice to bring back the automatic notification.
cc @bradfitz
| help wanted,Builders,NeedsInvestigation,FeatureRequest | low | Critical |
105,024,637 | go | x/mobile/example/audio: build on windows system,run CRASH | Hello.
I am using gomobile in Windows System.
When build the example named "Audio",it is successful.Howevery,when run it on the Genymotion virtual device and a true Android device, the application is crashed the same.
After the debug, something I found:
- I can find the error message from logcat, it show this:
```
I/... | OS-Windows,mobile | low | Critical |
105,043,756 | go | runtime: throw in linked c++ library causes app crash even if caught, on windows platform | when compiling go code using cgo to link a c++ application that uses try/catch/throw logic, the golang app crashes immediately when an exception is thrown. on linux, it performs as expected.
code versions:
go version go1.5 windows/amd64
tdm64-gcc-5.1.0-2
the code that demonstrates issue can be found in htt... | help wanted,OS-Windows,NeedsInvestigation | medium | Critical |
105,478,672 | angular | component events should mask event propagation. | ```
@Component({
selector: 'my-component'
events: ['change']
})
@View({
template: '<input (change)="...">'
})
class MyComponent {
}
```
The above code creates an issue. It conflates the `change` event from the `MyComponent` with the bubbling `change` event from the `<input>`.
The correct behavior is that the `... | type: bug/fix,area: core,state: confirmed,core: event listeners,core: inputs / outputs,P3 | medium | Critical |
105,490,336 | TypeScript | NavigateTo inappropriately writes "module" instead of "namespace" in display | 
| Bug,Help Wanted | low | Minor |
105,591,273 | opencv | cv::BFMatcher::match crashes graphics driver | I found a problem in the GPU brute force matcher. When a certain amount of points/data is used, the program crashes the graphics driver with the following exception:
OpenCV Error: Assertion failed (clEnqueueReadBuffer(q, (cl_mem)u->handle, CL_TRU
E, 0, u->size, alignedPtr.getAlignedPtr(), 0, 0, 0) == CL_SUCCESS) in cv... | bug,priority: normal,affected: 3.4,category: ocl | low | Critical |
105,626,263 | You-Dont-Know-JS | "types & grammar": ch4, JSON Stringification is not always a string | Big fan, read all the books, have some remarks on "Behavior Delegation" but really, Great sequel!
In ch4, "JSON Stringification", you wrote:
> ... the serialization result is always a string
but that's not true
``` javascript
typeof JSON.stringify() === "undefined"
```
| for second edition | low | Minor |
105,643,062 | You-Dont-Know-JS | "types & grammar": ch4, a few more "crazy" comparisons | It may be worthwhile to point out a few more ["loose equals" (`==`) oddities](https://github.com/getify/You-Dont-Know-JS/blob/master/types%20&%20grammar/ch4.md#the-crazy-ones) resulting from Booleans being coerced to Numbers, and Objects to their primitive values. I'm thinking specifically of Arrays:
``` js
// These a... | for second edition | medium | Minor |
105,658,333 | thefuck | changing package name when I use "sudo apt-get install" | I know there shouldn't be nothing wrong with the command `sudo apt-get install numix-wallpaper-aurora` itself, but I think thefuck shouldn't be suggesting me to install other package.
 is a program containing a type `Foo` that implements `gob.GobEncoder` in a silly way: by calling back into `gob.Encoder.Encode` using a type alias in order to avoid recursing. (The real world use for this is to zero a problematic field and then gob-encode the rest.)
It cause... | NeedsInvestigation | low | Critical |
105,764,385 | youtube-dl | [site-support-request] DeutschlandRadioKultur, Deutschlandradio, DR Wissen | Pages like http://www.deutschlandradiokultur.de/bestsellerautor-marc-elsberg-wie-realistisch-sind-ihre.970.de.html?dram:article_id=330629 have mp3 "play" urls (in this specific case: http://ondemand-mp3.dradio.de/file/dradio/2015/09/10/drk_20150910_0907_9054fc27.mp3 ), but are currently not detected by youtube-dl.
Wou... | site-support-request | low | Minor |
105,865,271 | go | x/mobile/bind: support types from external packages | @crawshaw
| mobile | low | Minor |
105,866,809 | go | x/mobile/cmd/gomobile: gomobile bind returning io.Reader errors | I'm running into an error when running "gomobile bind --target=ios":
gomobile: type io.Reader not defined in package package goax ("github.com/garry415/goax")
unsupported, direct named type github.com/garry415/goax.KeyExchange: struct{IdentityPublic []byte "bencode:\"identity\""; Dh []byte "bencode:\"dh\""; Dh1 []byte... | NeedsInvestigation,mobile | low | Critical |
106,024,468 | youtube-dl | cant download from qq | Hi
I tried:
```
youtube-dl http://v.qq.com/page/y/i/0/y01647bfni0.html
[generic] y01647bfni0: Requesting header
WARNING: Falling back on generic information extractor.
[generic] y01647bfni0: Downloading webpage
[generic] y01647bfni0: Extracting information
ERROR: Unsupported URL: http://v.qq.com/page/y/i/0/y01647bfni0... | site-support-request | medium | Critical |
106,115,035 | youtube-dl | Support for video.thethao247.vn | Dear all,
Can you help for getting direct link from this site: mecloud.vn
For examlple:
embed.mecloud.vn/play/SLJtqLj3IO.
Regards,
SSD
| site-support-request | low | Minor |
106,177,806 | go | database/sql: Ability to get drivername from instance | I'd like to be able to get the driver name..
eg
``` go
Db, err = sql.Open("mysql", "root:root@/somestuff")
fmt.Printf("Driver= ", Db.Driver.Name) << Need...
```
Case Example.. I want to derive an sqlx instance from an existing connection
``` go
// Currently
func SetupDb( driver string, db *sql.DB){
Dbx = sqlx.... | FeatureRequest | medium | Critical |
106,179,722 | youtube-dl | can not combine --playlist-reverse and --playlist-start? | Hello everyone
i was playing with the --playlist-reverse and the --playlist start NUMBER options to try to download in chronological order and resume where i stopped (like the next day continue at the 26th video) and found that these two options do not work together.
im not sure if this is a bug or if they are not s... | request | medium | Critical |
106,197,666 | youtube-dl | List human-readable video title where possible in format list (-F) display | I often use `-F` to list the possible video encoding formats I can use for videos.
When I do this, I see something like
```
[info] Available formats for dQw4w9WgXcQ:
...
```
which tells me nothing about the video.
I've recently discovered that the formats available for YouTube videos is unpredictable and depends on... | request | low | Minor |
106,320,712 | go | encoding/xml: XML CDATA section could be joined together with regular characters | go version go1.5 darwin/amd64
One thing I stumbled across yesterday (not a real bug, but a minor nuisance from a user's perspective perhaps):
```
package main
import (
"encoding/xml"
"fmt"
"strings"
)
func main() {
src := `<root>a<![CDATA[b]]>c</root>`
r := strings.NewReader(src)
dec := xm... | NeedsInvestigation | low | Critical |
106,342,563 | opencv | Optimizing cvReprojectImageTo3D() | As part of an API release, I have published a method for projecting a disparity map to 3D points, similar to cvReprojectImageTo3D(). Unlike the OpenCV implementation, my approach makes use of SSE2 or AVX2 to gain significant speed-ups. The code has been published under the MIT license, which should allow a re-distribut... | priority: normal,feature,category: calib3d,affected: 3.4 | low | Major |
106,416,585 | youtube-dl | request: add option for re-download video in better quality | YouTube public video is not in the best quality to make it available as soon as possible (for video encoding in a better quality requires more time). If the video is downloaded in any capacity, the programa miss it. I would like to be able to re-download the video in better quality, instead of the old, if possible. Imp... | request | low | Minor |
106,429,297 | neovim | default mapping: <c-r>? to put prettified search text | Hi,
when paste last search (with `<C-r>/` for insert mode or `"/p` for normal) : always remove `\< \>` has seen in <my_search>
scenario :
given
My current search is : "<foobar>"
when
In normal mode I press : "/p
then
It prints "foobar"
Currently it works with vimscript with that:
``` vimscript
" remove ugly char wh... | enhancement,defaults | 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.