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 |
|---|---|---|---|---|---|---|
194,037,954 | react | Undo behavior in controlled textareas works differently from the default behaviour in chrome | If you control a textarea with **value**, it behaves differently when you use undo. When the textarea is controlled, you can only undo one letter at a time. This is not how undo works normally with an uncontrolled component. Undo seems to work as expected with input components.
With a controlled textarea component, ... | Type: Bug,Component: DOM | medium | Critical |
194,043,408 | opencv | cudaErrorCudartUnloading (error 29) due to “driver shutting down” | ##### System information (version)
- OpenCV => 3.1
- Operating System / Platform => Debian Jessie 8.0
- Compiler => gcc 4.9:
##### Detailed description
I am running a simple face detection test using the `cuda` version:
```cpp
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/cudaimgproc.hpp>
#i... | bug,priority: low,category: gpu/cuda (contrib) | low | Critical |
194,138,595 | rust | Consider different way of inheriting handles in child processes on Windows | Currently to avoid handles being inherited incorrectly by child processes due to race conditions, Rust wraps the whole blob of code in a mutex to synchronize it. However, it will still accidentally inherit any handles created elsewhere that are inheritable, can cause race conditions with people creating processes using... | O-windows,T-libs-api,C-feature-request,A-process | low | Major |
194,179,350 | go | runtime: frequent blocking syscalls cause high sysmon overhead | The hard-coded 20us `sysmon` tick in the runtime appears to be far too aggressive for minority architectures.
Our storage controllers run a single-core 800MHz arm cpu, which runs single-threaded workloads between 10 and 20 times slower than my desktop Intel machine.
?
go1.7.3
### What operating system and processor architecture are you using (`go env`)?
linux/amd64; [Xeon E5-2670](https://ark.intel.com/products/64595/Intel-Xeon-Processor-E5-2670-20M-Cache-2_60-GHz-8_00-GTs-Intel-QPI) (dual-socket 6-core packages, non-HT)
O... | Performance,NeedsInvestigation | medium | Major |
194,279,966 | rust | export_name with unusual utf8 breaks new version script based linker | Unfortunately it looks like the awesome changes in #38117 caused breakage while linking when a weird export name is used (probably due to the version script requiring ascii, or some other esoterica):
```rust
#[export_name="bad_∢"]
pub extern fn bad(i: usize) {}
```
**NOTE** haven't checked this... | A-linkage,A-Unicode,C-feature-request | medium | Critical |
194,379,013 | go | cmd/compile: some local variables are missing from DWARF | ```
$ cat a.go
package main
func f(x int) {
s := "string"
for i := 0; i < x; i++ {
println(i, s)
}
}
func main() {
f(10)
}
$ go build a.go
$ readelf -w a
...
<1><1530f>: Abbrev Number: 2 (DW_TAG_subprogram)
<15310> DW_AT_name : main.f ... | Debugging,compiler/runtime | low | Critical |
194,388,408 | TypeScript | Inconsistent errors for non-module entities | **TypeScript Version:** nightly (2.2.0-dev.20161208)
**Code**
```ts
// @Filename: /node_modules/f/index.d.ts
declare const s: Static;
export = s;
interface Static {
f(): void;
}
// @Filename: /node_modules/lib1/index.d.ts
import { f } from "f";
declare const _f: typeof f;
export = _f;
// @Fi... | Bug | low | Critical |
194,464,841 | go | cmd/vet: duplicate struct field tag check does not handle XMLName | In Go 1.8beta1 a new check to detect duplicate names used in struct field tags was introduced to `go vet` ([CL 16704](https://golang.org/cl/16704)). This check produces false positive warnings when XML attributes and the special `XMLName` field name are used:
- When fields are encoded as XML attributes, a warning i... | help wanted,NeedsFix,Analysis | low | Minor |
194,484,830 | youtube-dl | Add support for Adobe Pass Auth TV Provider Cox Communications | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.12.09**
- [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections
- [x] [Sear... | tv-provider-account-needed | medium | Critical |
194,493,196 | rust | Can't step into libstd with gdb on Windows | ```rust
fn main() {
let mut input = String::new();
```
When I try to step in, I get:
`Source C:\bot\slave\nightly-dist-rustc-win-gnu-64\build\obj\../src/libcollections/string.rs is not available.`
When I set a breakpoint in string.rs and start a debug session, I get the error:
`No source file named d:\dev\... | A-debuginfo,C-enhancement,T-compiler,O-windows-gnu | low | Critical |
194,519,558 | rust | issues with ABIs and struct return types | With the MSVC x64 ABI, structs are returned in RAX if and only if they are <= 8 bytes in size, *and are effectively a POD type*. See https://msdn.microsoft.com/en-us/library/7572ztz4.aspx . Unfortunately, I can't figure out how to tell Rust this. In C++, `sk_sp<T>` has a user-defined constructor, destructor, etc. In... | A-FFI,T-lang,T-compiler,C-bug | low | Critical |
194,538,503 | go | go/printer: adjust formatting of structs with unexported fields | The documentation for [`sql.NamedArg`](https://tip.golang.org/pkg/database/sql/#NamedArg) currently looks like:
```go
type NamedArg struct {
// Name of the parameter placeholder. If empty the ordinal position in the
// argument list will be used.
//
// Name must omit any symbol prefix.
Name... | NeedsFix | medium | Major |
194,581,741 | rust | llvm/msvc: IsStatement in codeview data is always false | Each entry in the line table FilenameSegments has a 'IsStatement' member. LLVM hardcodes this to 'false', while in MSVC they seem to basically be always 'true'. Changing the default, at the very least, is trivial, but we don't know what this does. None of the Google employees I have asked know (they have mentioned DWAR... | A-debuginfo,P-low,T-compiler,O-windows-msvc,C-bug | low | Minor |
194,595,931 | opencv | cv::cuda::HoughCirclesDetector and cv::HoughCircles do not give the same results | Hello,
##### System information (version)
OpenCV 3.1.0, Windows 7 64 bits, Visual Studio 2010, Cuda 8
##### Detailed description
I have noticed that for a similar input, cv::cuda::HoughCirclesDetector and cv::HoughCircles do not give the same results. I am not sure if it is normal, because the documentation doe... | category: imgproc,category: gpu/cuda (contrib),RFC | low | Major |
194,658,707 | create-react-app | Run Lint from the command line? | It would be great to be able to type
`eslint` into bash and have it run ESLint just like it was building. As it is, it can't find the config file unless I eject. Is ejection really necessary here?
| contributions: up for grabs!,issue: proposal,difficulty: starter | high | Critical |
194,659,475 | material-ui | [Modal] Disable background scrolling in iOS | Tested dialogs in http://www.material-ui.com/#/components/dialog.
On desktop Chrome, background scrolling is disabled when dialogs are shown.
However, it is not disabled in iOS Safari or Chrome. | bug 🐛,external dependency,component: modal | high | Critical |
194,686,174 | vscode | Add SmartIndent capability | Visual Studio has an extensibility point called SmartIndent:
https://msdn.microsoft.com/en-us/library/microsoft.visualstudio.text.editor.ismartindent.aspx
This allows a language service to provide the editor, given a line, what the indentation level should be. If you click on a blank line in Visual Studio, it will ... | feature-request,api,editor-autoindent | low | Major |
194,730,074 | go | x/net/http2: TestTransportFlowControl takes 31 seconds on OpenBSD | TestTransportFlowControl takes 31 seconds on OpenBSD, but 1.8 seconds on the same hardware on Linux.
Why?
/cc @tombergan who suspects relation to #15899
/cc @mdempsky @4a6f656c | Performance,OS-OpenBSD,NeedsInvestigation | low | Minor |
194,732,059 | kubernetes | Harden addons & system pods | Our system pods should run using security best practices, both to enhance cluster security and serve as examples of best practices to users. We should audit all our system pod Dockerfiles, and make sure all security features are enabled with custom profiles when possible.
Low hanging fruit:
- Run as non-root (& d... | area/security,kind/cleanup,sig/auth,help wanted,priority/important-longterm,lifecycle/frozen | medium | Major |
194,755,967 | create-react-app | Help wanted Using react-intl | >## Note from Maintainers
>
>**Please try the solution in https://github.com/facebookincubator/create-react-app/issues/1227#issuecomment-297604621 and let us know if it works well for you.**
----
Hi all,
I'm following this tutorial https://medium.freecodecamp.com/internationalization-in-react-7264738274a0#.p... | issue: proposal | medium | Critical |
194,769,832 | TypeScript | How tsconfig exclude pattern should actually work | **TypeScript Version:** 2.1.1 / nightly (2.2.0-dev.201xxxxx)
Say we have a following structure to specially to test `exclude` pattern:
```
/node_modules
/module/some.ts
nested/
/node_modules
/module/some.ts
/deep-nested/
/node_modules
/module/some.ts
```
Will check this using `tsc -... | Suggestion,Help Wanted | low | Major |
194,776,155 | TypeScript | Generalize `never` type handling for control flow analysis based type guard | <!-- BUGS: Please use this template. -->
<!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript -->
<!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md -->
I guess there would be some duplicates... | Suggestion,In Discussion | medium | Critical |
194,833,599 | rust | Insufficient normalization | The following should work, as far as I know, but unfortunately doesn't. It seems like the type bound on `Bar` is getting ignored when used in `Foo`.
```rust
use ::std::io::Write;
pub trait Foo {
type FooBaz: Bar;
fn get_bars() -> Box<Iterator<Item = Self::FooBaz>>;
}
pub trait Bar where <Self... | A-type-system,A-trait-system,T-compiler,C-bug,T-types | low | Minor |
194,836,880 | opencv | capturing frame from webcam crash (macos) | ##### System information (version)
- OpenCV => 3.1.0-dev
- Operating System / Platform => Mac OS X 10.12.1
##### Detailed description
I have a few lines of code that takes a snap from the webcam and tries to display it. It captures the image fine but when it tries to display it the whole process crashes.
I h... | bug,category: videoio,platform: ios/osx | low | Critical |
194,851,063 | rust | Overloaded call inferred to be through Fn when only FnOnce works | Repro: https://is.gd/AbO8K4
A wrapper around a closure `F` implements `FnOnce`, `FnMut` and `Fn` where `F` does. However, when the wrapper is created with a closure which implements only `FnOnce`, and then the wrapper is called, the compiler expects the closure to implement `FnMut` or `Fn`.
```
rustc 1.15.0-nigh... | P-medium,A-closures,T-compiler,C-bug | low | Major |
194,861,101 | neovim | :undo also undoes mark positioning since previous edit | - `nvim --version`:
0.1.6
- Vim (version: ) behaves differently?
8.0 -- No, same problem
- Operating system/version:
Arch linux
- Terminal name/version:
XTerm(327)
- `$TERM`:
xterm-256color
### Actual behaviour
With the file `test.txt`
```
Hello there
I have text here simply
So that I can position m... | bug-vim,needs:vim-patch | low | Minor |
194,919,258 | TypeScript | Inference isn't working with constructor that contextually types 'this' with intersections of itself | **TL;DR:** There should be no errors in the below example.
I am trying to model a library that takes an options bag for its constructor, and exposes those properties onto the instance that is eventually produced.
For example, if I wrote
```ts
let instance = new Component({
methods: {
hello() { }... | Suggestion,Awaiting More Feedback | low | Critical |
194,972,807 | youtube-dl | [generic] video not found. Fix applied in #7794 no longer works | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like that [x])
- Use *Preview* tab to see how your issue will actually look like
---
... | site-support-request | low | Critical |
195,061,253 | youtube-dl | Support bmObject manifests (was: bloomberg-->add normal mp4s to format dict) | I can't find normal mp4s in -F output, only hls and frm
http://www.bloomberg.com/news/videos/2016-12-12/trump-tweets-f-35-jet-program-costs-out-of-control
is this link in format dict?:
http://cdn3.videos.bloomberg.com/m/Njk3MTgyNQ/MjMzMDc4Mw/Rothacker08511212d_440.mp4 | request | low | Major |
195,095,027 | gin | Response Content-Type Header not set when using c.JSON (while doc says it should) | I am not sure but it seems this function just do nothing, so when using c.JSON, the Content-Type header is not set.
```
func writeContentType(w http.ResponseWriter, value []string) {
header := w.Header()
if val := header["Content-Type"]; len(val) == 0 {
header["Content-Type"] = value
}
}
`... | bug | low | Major |
195,158,293 | TypeScript | Changed behaviour in TS2.1 for Promise<void> | In typescript 2.0 any promise could be used a promise of type void, this does not seem to be the case in typescript 2.1.
I couldn't find this listed as a breaking change or any existing tickets so raised this one.
**TypeScript Version:** 2.1.4
**Code**
```ts
function testVoidPromises(promiseA: Promise<vo... | Suggestion,In Discussion | medium | Critical |
195,164,315 | rust | Tracking issue to stabilize --print target-spec-json | This issue is meant to track the stabilization of the rustc flag `--print target-spec-json` which will output the currently selected target as a valid target spec that can be loaded with `--target` for only the same version of the compiler that generated it. This explicitly avoids saying that target specs are stable bu... | T-compiler,B-unstable,C-tracking-issue,S-tracking-design-concerns | low | Major |
195,212,678 | go | runtime: dlopen/dlsym without CGo | Hello,
Would it be possible to implement dlopen/dlsym functionality to match the Windows DLL loading functionality, for Linux/*nix platforms?
It has been discussed that this is possible with CGo, but that doesn't play as well with a simple build and cross-compile environment as your pure-Go tool-chain does.
Di... | compiler/runtime | medium | Critical |
195,284,434 | rust | Identity Result match mapping should optimize to an identity function | This was isolated by @stjepang in #37939
This program: [(playground)](https://play.rust-lang.org/?gist=42f328079e316204cc8885e4c7b9ea22&version=nightly&backtrace=0)
```rust
pub fn id_result(a: Result<u64, i64>) -> Result<u64, i64> {
match a {
Ok(x) => Ok(x),
Err(y) => Err(y),
}
}
`... | I-slow,C-enhancement,A-codegen,C-optimization | low | Major |
195,332,463 | go | tools/cmd/present: don't show upcoming slide on the right | The present tool shows some of the upcoming slide on the right.
This is particularly bad during some conferences (e.g. GothamGo) with wide screens. It distracts the audience who starts reading the next slide, and it can kill punchlines.
Fix this.
/cc @rsc @broady | NeedsFix | low | Minor |
195,356,765 | go | cmd/compile: investigate closure capture issue | This change reduces allocations:
https://go-review.googlesource.com/c/33765/4/src/encoding/json/encode.go
Why? Can the compiler be changed instead?
(See test file in same CL for details)
/cc @randall77 @mdempsky @aclements | Performance,NeedsInvestigation,compiler/runtime | low | Major |
195,431,470 | opencv | Any Simple Solution for conflicts with opencv2 ? | I had installed opencv2.4 in /usr/local path, so when I compile opencv3, I encountered this error :
`incomplete type 'cv::Mat' named in nested name specifier`
This is because the old version of the header file conflicts with the new version. In xcode project created by cmake, the "Header search paths" setting of al... | category: build/install,incomplete | low | Critical |
195,452,622 | youtube-dl | Show more detailed profile info to properly identify HDR content. | ### Make sure you are using the *latest* version:
- [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.12.12**
### Before submitting an *issue* make sure you have:
- [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](http... | request | low | Critical |
195,461,813 | go | net/http/httptrace: add retry hook | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
`go version go1.7.4 darwin/amd64`
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="dar... | Documentation,help wanted,NeedsInvestigation,FeatureRequest | low | Critical |
195,622,499 | go | x/build: make OpenBSD use a memory filesystem for its workdir | The OpenBSD builders are some of the slowest.
See if it's faster with a memory filesystem for its workdir.
See https://github.com/golang/go/issues/16951#issuecomment-266288016 for details. Basically just:
```
$ mount -t mfs -o rw,nodev,nosuid,-s=1G /dev/sd0b /tmp
```
Make the buildlet do that on start, li... | Performance,OS-OpenBSD,Builders | low | Major |
195,659,574 | go | x/net/trace: support lazy logging in EventLog | Trace supports `LazyLog`/`LazyPrintf` which delays rendering of the event message until (and more importantly **if**) it is being displayed. This would be useful for `EventLog` as well, where large messages can cause noticeable slowdown.
I can work on the change if there is agreement on the new API. We can:
- add ... | NeedsInvestigation | low | Critical |
195,716,702 | TypeScript | Exact Types | This is a proposal to enable a syntax for exact types. A similar feature can be seen in Flow (https://flowtype.org/docs/objects.html#exact-object-types), but I would like to propose it as a feature used for type literals and not interfaces. The specific syntax I'd propose using is the pipe (which almost mirrors the Flo... | Suggestion,Awaiting More Feedback | high | Critical |
195,729,773 | opencv | Why cv::resize with CV_8S and CV_32S type was disabled? | Using cv::resize function with cv::Mat in `CV_8S` and `CV_32S` type will cause an error:
`opencv/modules/imgproc/src/imgwarp.cpp:3368: error: (-215) func != 0 in function resize`
After review of the source code I found:
```
static ResizeFunc linear_tab[] =
{
resizeGeneric_<
HResizeLin... | RFC | low | Critical |
195,756,226 | vscode | Add support for capture groups in onEnterRules | From @siegebell in https://github.com/Microsoft/vscode/issues/3088#issuecomment-267236002
---
Before:
```
// comment
// indented|
```
After:
```
// comment
// indented
// |
```
For this case, `onEnterRules` could be extended to support matching groups like find/replace currently does...
... | feature-request,editor-input,editor-autoindent | low | Major |
195,763,040 | kubernetes | Pod will be created again and again when we have not enough cpu. | ## Pod will be created again and again when we have not enough cpu and will not be delete.
#### version
```
[root@iZbp14tmy66i2l0ln0vwreZ ~]# kubectl version
Client Version: version.Info{Major:"1", Minor:"5", GitVersion:"v1.5.1", GitCommit:"82450d03cb057bab0950214ef122b67c83fb11df", GitTreeState:"clean", BuildDat... | area/kubelet,area/app-lifecycle,area/usability,area/kubectl,area/reliability,sig/node,area/workload-api/deployment,sig/apps,sig/cli,area/workload-api/replicaset,triage/accepted,area/pod-lifecycle | medium | Critical |
195,795,306 | TypeScript | Type Inference in for... in combined with typeof | <!-- BUGS: Please use this template. -->
**TypeScript Version:** 2.1.4
The following code gives an error in TS 2.1:
It's not really nice code, but I think it should work never the less :)
```TypeScript
for (var a in this) {
if (typeof this[a] === "function" && !ko.isObservable(this[a]))
... | Suggestion,Help Wanted | low | Critical |
195,796,063 | youtube-dl | Can't connect to proxy (407 ERROR) | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like that [x])
- Use *Preview* tab to see how your issue will actually look like
---
... | external-bugs | low | Critical |
195,880,741 | youtube-dl | daserste.ndr.de unsupported | I see ndr is supported via ndr.py, so maybe it is just the hostname that needs to be included
(daserste.ndr.de instead of www.ndr.de)
```
$ youtube-dl http://daserste.ndr.de/inas_nacht/videos/Inas-Nacht-mit-Heinz-Strunk,inasnacht4682.html
[generic] Inas-Nacht-mit-Heinz-Strunk,inasnacht4682: Requesting header
WAR... | site-support-request | low | Critical |
195,940,386 | flutter | `flutter analyze` should run `pub get` in directories it decides it is scanning if they contain pubspec.yaml files | If you run `flutter analyze` and it decides to analyze multiple directories containing multiple packages such that it will generate a big joint `.packages`, then we should run `pub get` in each of those packages as necessary (just as we would if we ran `flutter analyze` in that package directly). | tool,P2,team-tool,triaged-tool | low | Minor |
195,969,365 | go | x/net/http2: make Transport send GOAWAY? | We previously debated whether the Transport should send GOAWAY frames on shutdown, but couldn't think of a useful reason why.
The spec does say:
> When either endpoint chooses to close the transport-layer TCP connection, the terminating endpoint SHOULD first send a GOAWAY (Section 6.8) frame so that both endpoint... | help wanted,NeedsFix | low | Major |
195,969,544 | go | x/net/http2: Transport should handle 421 | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
### What operating system and processor architecture are you using (`go env`)?
### What did you do?
If possible, provide a recipe for reproducing the error.
A complete runnable program... | help wanted | low | Critical |
195,993,830 | go | cmd/go: applying swig's %go_import directive to non-builtin packages is not supported | One of swig's useful language-specific directives for the Go language is `%go_import`. It allows defining typemaps and wrappers (with `%insert(go_wrapper)`), among others, using symbols defined in a user-defined package found under $GOPATH/src. However, the go build system only allows `%go_import` of builtin packages... | NeedsInvestigation | low | Minor |
196,003,363 | neovim | Feature request: file complete without user to remember where the asterisk should be | The fishshell https://fishshell.com/ has a really nice feature IMO, your can type any part of file and hit `<tab>` to complete. In vim and other shells I know, user have to type exactly the leading part of file name to complete, that could be hard sometimes, for example, a directoy with many files starts with `controll... | enhancement | low | Major |
196,022,563 | youtube-dl | Search by Filter | How to search any videos based on FEATURES filter such as 4K, Creative commons or 3D? i can see youtube-dl has ability to sort by upload date, min view etc but i can't find for features. e.g : ytsearch:Chritsmas videos :creative commons | request | low | Major |
196,070,653 | three.js | PointsMaterial's sizeAttenuation property should default to false | #### Description of the problem
The default [PointsMaterial](https://threejs.org/docs/api/materials/PointsMaterial.html) sets `sizeAttenuation` to `true`. This produces unexpected results as drawing a _point_ should theoretically produce a single pixel location (unless `size` is set larger). This is how _lines_ (anot... | Suggestion | medium | Major |
196,122,620 | go | runtime: refactor assembly for C calls in signal handlers | On [change 34501](https://go-review.googlesource.com/#/c/34501/), @minux notes:
> It seems the complexity of runtime.sigtramp has got out of control. (sigtramp used to be only called by kernel, now with signal forwarding, it can also be called by foreign C code)
>
> Perhaps we need to separate the concern of saving ... | compiler/runtime | low | Minor |
196,162,405 | javascript | Braces with single-line if blocks | In point [16.1](https://github.com/airbnb/javascript/tree/master/#functions) you state the two block possibilities when it comes to in-line if blocks. These are:
```
if (test) return false;
if (test) {
return false;
}
```
Is there any preference to use one or the other?
Personally, I use the first one... | question | low | Minor |
196,168,611 | go | path/filepath: fix HasPrefix | The [`filepath.HasPrefix`](https://golang.org/pkg/path/filepath/#HasPrefix) function has been in a deprecated-like status for the past 4 years (since 2012). The reasons why it was deprecated is described in [CL/5712045](http://golang.org/cl/5712045). The issue with respecting path boundaries is probably the most signif... | NeedsInvestigation | medium | Critical |
196,193,969 | rust | method resolution problem related to `Box<dyn Trait>` | To reproduce:
```rust
use std::ops::{Deref, DerefMut};
use std::borrow::BorrowMut;
pub enum Managed<'a, T: 'a + ?Sized> {
Borrowed(&'a mut T),
Owned(Box<BorrowMut<T>>)
}
impl<'a, T: 'a + ?Sized> Deref for Managed<'a, T> {
type Target = T;
fn deref(&self) -> &T {
match self {
... | A-type-system,A-associated-items,T-compiler,C-bug,T-types,A-trait-objects | low | Critical |
196,196,284 | youtube-dl | Disney XD -- Unable to downloaded protected videos even with login cookies. | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like that [x])
- Use *Preview* tab to see how your issue will actually look like
---
... | tv-provider-account-needed | low | Critical |
196,239,690 | opencv | [traincascade] fail faster for missing output directory | ##### System information (version)
- OpenCV => 3.1
- Operating System / Platform => Linux Mint 18.1 x64
- Compiler => gcc
##### Detailed description
If a non-existent directory is supplied to the `traincascade` program it will eventually crash when trying to save the first training stage. Training a stage can ta... | feature,category: apps | low | Critical |
196,240,844 | go | image/png: no support for setting and retrieving the PPI/DPI | Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (go version)?
go1.7.4 darwin/amd64
What operating system and processor architecture are you using (go env)?
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
GOPATH="/... | help wanted,NeedsFix,FeatureRequest | low | Critical |
196,289,736 | opencv | VideoCapture hangs immediately after starting | - OpenCV 3.1
- Mac OSX Sierra 10.12.1
- xcode 8.1
hello, I've installed also opencv_contrib, everything looks good, but it seems my first program hangs immediately after the first frame was displayed if I try to capture video from the webcam.
First I've tried the code in Reading and Writing Images and Video ex... | bug,category: videoio,platform: ios/osx | low | Critical |
196,307,222 | rust | Repeated #[link] attributes for the same library cause it to be passed as many times to the linker. | > [If I specify #[link(name="pythonXY")] on 30 extern C blocks, and then compile with rustc -l dylib=pythonXY:python27, then python27.lib is passed to the linker 30 times.](https://github.com/rust-lang/rust/issues/37403#issuecomment-267763227)
In extreme cases this may cause trouble on Windows, where the maximum len... | A-linkage,C-enhancement,T-compiler | low | Major |
196,367,903 | youtube-dl | [groovemp3] Site support request | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like that [x])
- Use *Preview* tab to see how your issue will actually look like
---
... | site-support-request | low | Critical |
196,416,147 | angular | NgModel defers writeValue call to the next tick. Conflicts with OnInit's contract of child components. | <!--
IF YOU DON'T FILL OUT THE FOLLOWING INFORMATION WE MIGHT CLOSE YOUR ISSUE WITHOUT INVESTIGATING
-->
**I'm submitting a ...** (check one with "x")
```
[x] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request... | type: bug/fix,freq1: low,area: core,core: change detection,P3 | low | Critical |
196,464,338 | youtube-dl | Support vk audio search | It would be very good, if you add support to get list mp3 tracks from VK, link example: https://m.vk.com/audio?act=search&q=daydreamer | request,account-needed | low | Minor |
196,574,760 | rust | Tracking issue for the `msp430-interrupt` calling convention/ABI | Added in #38465
This calling convention is used to define interrup handlers on MSP430 microcontrollers. Usage looks like this:
``` rust
#[no_mangle]
#[link_section = "__interrupt_vector_10"]
pub static TIM0_VECTOR: unsafe extern "msp430-interrupt" fn() = tim0;
unsafe extern "msp430-interrupt" fn tim0() {
... | T-lang,B-unstable,C-tracking-issue,WG-embedded,S-tracking-needs-summary,O-msp430,A-hardware-interrupts | low | Major |
196,579,501 | go | x/crypto/acme: Rejected TOS results in inability to register | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
1.6
### What operating system and processor architecture are you using (`go env`)?
amd64
### What did you do?
Call acme.Register with a prompt that returns false, then again with a prompt... | NeedsInvestigation | low | Major |
196,589,432 | You-Dont-Know-JS | You Don't Know JS: Types & Grammar Chapter 2: Values | The text: 'Addition and subtraction cannot result in a negative zero' is not absolute. An edge case is with -0 + -0 = -0. Ditto for the subtraction case.
The ES5 spec contains this rule: https://es5.github.io/#x11.6.3
| for second edition | medium | Minor |
196,597,785 | youtube-dl | Extracting audio does not work for a specific channel | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like that [x])
- Use *Preview* tab to see how your issue will actually look like
---
... | cant-reproduce | low | Critical |
196,719,520 | You-Dont-Know-JS | "types & grammar": fix inaccuracy in ch5 about completion values | Fix discussion of `var x` statement having `undefined` completion value. RE: https://twitter.com/ydkjs/status/811247502762606592
thanks @allenwb for helping me identify a years-old mistake! :) | for second edition | medium | Minor |
196,734,921 | go | cmd/go: provide a way to resolve an import path to a vcs, url, etc. | 'go get' contains non-trivial logic to figure out how to obtain a package based on its import path, including consulting a list of well-known hosting providers and checking for html meta tags. There is no way to get this information other than actually doing the 'go get', or maintaining a non-trivial fork of a subset o... | NeedsInvestigation,FeatureRequest,GoCommand | low | Major |
196,812,082 | youtube-dl | [Request] Output format TS (MPEG Transport Stream) | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.12.20**
- [x] I've at least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections
- [x] ... | request | low | Critical |
196,834,071 | TypeScript | add codefix for extracting an interface from an object literal | given an anonimous object literal, allow extracting interface by looking at the effective types of the values of the properties | Suggestion,Awaiting More Feedback,Domain: Refactorings | low | Major |
196,868,547 | TypeScript | Flow analysis doesn't work with es6 collections 'has' method | **TypeScript Version:** 2.1.1
**Code**
```ts
const x = new Map<string, string>();
x.set("key", "value");
if (x.has("key")) {
const y : string = x.get("key"); // error: y is string | undefined, not string
}
```
**Expected behavior:**
y is narrowed down to string
**Actual behavior:**
y is still... | Suggestion,Awaiting More Feedback | high | Critical |
196,872,950 | rust | question mark and `try!` obscure type inference errors | ```rust
use std::num::ParseIntError;
fn run() -> Result<(), ParseIntError> {
let v = vec![1,2,3];
let x = "1".parse()?;
println!("{:?}", v[x]);
Ok(())
}
fn main() {
let _ = run();
}
```
has the confusing error message
```
error[E0277]: the trait bound `(): std::str:... | C-enhancement,A-diagnostics,T-compiler,A-inference,D-confusing | low | Critical |
196,877,184 | TypeScript | Abstract class type argument inference | It would be good if TypeScript can infer the type of an extended class of an generic abstract class:
```ts
abstract class A<T> {
abstract a: T;
get(): T {
return '' as any;
}
}
class B extends A {
a: 'helloworld';
}
const b = new B():
b.get(); // string
```
In a similar fashi... | Suggestion,Committed,Domain: JavaScript | low | Major |
197,001,336 | rust | Specialization does not find the default impl | ```rust
#![feature(specialization)]
struct JsonSerializer;
struct CborSerializer;
fn main() {
0i32.serialize(&mut CborSerializer);
}
trait Serialize<S: Serializer> {
fn serialize(&self, _: &mut S);
}
trait Serializer {}
impl Serializer for JsonSerializer {}
impl Serializer for CborSerializer... | A-specialization,C-bug,F-specialization | low | Critical |
197,058,527 | rust | test::black_box for big size T? | I'm not sure if this is a bug or not, but I noticed that FB Folly has two versions of `doNotOptimizeAway`
https://github.com/facebook/folly/blob/1c098e2758d1bd55c48ffa26dab389dbbe96a666/folly/Benchmark.h#L308
```C++
asm volatile("" ::"r"(datum));
asm volatile("" ::"m"(datum) : "memory");
```
First one for s... | T-libs-api,C-feature-accepted | low | Critical |
197,074,386 | three.js | Revert FileLoader-based ImageLoader | The initial idea was to gain support for progress events in `ImageLoader` but the side effects have been so far:
1. Security issues. #9826
2. data: urls no longer working. https://github.com/mrdoob/three.js/commit/0576c7c80c472beb67c855031975aa7708175370
3. Some people (A-Frame) relied on image.src being a file pa... | Loaders | medium | Critical |
197,146,465 | opencv | SVD performance issue | ##### System information (version)
- OpenCV => 3.1
- Operating System / Platform => Ubuntu 16.10 64 Bit
- Compiler => gcc 6.2
##### Detailed description
On some particular dataset, the method `cv::SVD::compute()` can take hours where the equivalent eigen method takes only seconds. The enclosed program + data c... | bug,category: core | low | Major |
197,151,553 | TypeScript | Decorated private propoerty flagged as unused with `noUnusedLocals:true` | noUnusedLocals:true
import { Component } from '@angular/core';
@Component({
selector: 'my-component',
template: `
{{text}}
`,
})
export class MyComponent {
@Input()
private text: string;//'text' is declared but never used
} | Suggestion,Awaiting More Feedback | medium | Major |
197,196,513 | rust | Allow access to location information from proc_macro TokenStreams | I would like to build a template engine that leverages custom derive to attach a template rendering function to a struct at compile time. I was planning on attaching an attribute to the struct to specify the path to the template file, which could then be read and transpiled into Rust. However, it seems it is currently ... | T-libs-api,C-feature-request,A-proc-macros | low | Major |
197,204,562 | youtube-dl | [FEATURE REQUEST] - Item exclusion from playlist download and tweaks | If I want to download all the playlists of a given channel but one, I have to put all their links in the command, it would be way more convenient to just put the playlist section of that channel and then add the link of the one I want to ignore with an exclusion command. I think downloading playlists should be more _"t... | request,bug | low | Major |
197,212,340 | rust | Randomize the ordering of struct fields when compiling in debug mode | Now that it looks like https://github.com/rust-lang/rust/issues/28951 will be addressed via https://github.com/rust-lang/rust/issues/37429 , we may have a further obligation to ensure to do what we can to ensure that this doesn't bite people. One way that we could help out would be to randomize the order of struct fiel... | T-compiler,C-feature-request,A-reproducibility | low | Critical |
197,284,341 | TypeScript | Support for type destructuring | **TypeScript Version:** 2.1.4
**Code**
```ts
import { MyNamespace } from 'my-package';
// importing Class objects:
const { NavLink, NavGroup } = MyNamespace; // VALID
// if we want the types as well:
type { NavLink, NavGroup } = MyNamespace; // NOT VALID
// So we have to go manual:
type NavLink = M... | Suggestion,In Discussion | high | Critical |
197,326,897 | go | net/http/cgi: support Python etc non-executable scripts on Windows | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
1.7.4
### What operating system and processor architecture are you using (`go env`)?
set GOARCH=amd64
set GOBIN=
set GOEXE=.exe
set GOHOSTARCH=amd64
set GOHOSTOS=windows
set GOOS=windows... | help wanted,OS-Windows,NeedsInvestigation | medium | Critical |
197,369,688 | opencv | An error occurred while calling the setVocabulary() | **System information (version)**
- OpenCV => 3.1.0
- Operating System / Platform => Windows 10 64 Bit
- Compiler => python 3.5
**Detailed description**
The var that i pass to the function is a numpy.array var and I am sure it is a correct type.An error occurred while calling the setVocabulary() as follow.
... | bug,category: python bindings,category: t-api | low | Critical |
197,407,002 | youtube-dl | Site support request: www.slavishow.bg | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like that [x])
- Use *Preview* tab to see how your issue will actually look like
---
... | site-support-request | low | Critical |
197,445,985 | TypeScript | Support for ECMAScript 'do'-expressions | Sorry if this has been discussed but it is hard to search for such a generic combination of words.
Is there any plan to implement support for https://github.com/tc39/proposal-do-expressions ~~http://wiki.ecmascript.org/doku.php?id=strawman:do_expressions~~
It would be awesome to be able to avoid the extra code r... | Suggestion,ES Next,Waiting for TC39 | high | Critical |
197,467,829 | youtube-dl | Make sleep interval log display more readable | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like that [x])
- Use *Preview* tab to see how your issue will actually look like
---
... | request | low | Critical |
197,514,195 | TypeScript | Compiler API: no Symbol for Node | **TypeScript Version:** 2.1.1
**Code**
I'm trying to implement function detecting is identifier internal (can be renamed) or external but sometimes TS Compiler API returns me no symbols for identifiers:
```ts
private isIdentExternal(node: ts.Node): boolean {
// node here is only ts.Node with kind=65 (Iden... | Bug | low | Major |
197,525,153 | youtube-dl | Comcast_SSO failure with aetv | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like that [x])
- Use *Preview* tab to see how your issue will actually look like
---
... | tv-provider-account-needed | low | Critical |
197,534,595 | TypeScript | Are there jsdoc supported in salsa to polyfill ? | Suppose I was implement
```js
Array.prototype.last = function() {
return this[this.length - 1];
};
```
And wish it present in the intellisense. How should I do?
If it not exist, should we have this feature? | Suggestion,Awaiting More Feedback,Domain: JavaScript | low | Major |
197,594,155 | rust | memset not being optimized out when initializing array contents | Apologies as there's most likely already a tracking issue for this, but I wasn't able to find it. When initializing an array's contents, it seems that the initial memset is not optimized out:
https://godbolt.org/g/pbgnlq
```
let mut arr = [0; 1000];
for i in 0..arr.len() {
arr[i] = i;
}
println... | A-LLVM,I-slow,C-enhancement,T-compiler,A-mir-opt,C-optimization | low | Major |
197,618,451 | go | x/crypto/acme/autocert: Persistent cache results in stuck configuration if TOS is not always accepted | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
1.6
### What operating system and processor architecture are you using (`go env`)?
amd64
### What did you do?
Create a Manager that will not accept the TOS, but that does have a persisten... | NeedsInvestigation | low | Major |
197,623,007 | rust | Error about "does not live long enough" could be more helpful | When we receive a "`(var)` does not live long enough" error message, the compiler doesn't always tell you which line is actually causing the problem. For example (extracted from a larger program):
```
use std::collections::HashMap;
use std::env;
use std::fs::File;
use std::io;
use std::io::{BufRead, BufReader, ... | C-enhancement,A-diagnostics,T-compiler | low | Critical |
197,648,484 | angular | Calling enable()/disable() on nested reactive forms yields unexpected results | <!--
IF YOU DON'T FILL OUT THE FOLLOWING INFORMATION WE MIGHT CLOSE YOUR ISSUE WITHOUT INVESTIGATING
-->
**I'm submitting a ...** (check one with "x")
```
[x] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request... | type: bug/fix,freq1: low,area: forms,state: confirmed,forms: disabling controls,P3 | low | Critical |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.