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
284,767,792
opencv
setWindowProperty will not put window into fullscreen mode unless window property set to WINDOW_NORMAL
##### System information (version) - OpenCV => 3.1 - Operating System / Platform => Linux Ubuntu 16.04 - Compiler => gcc ##### Detailed description On GTK, calling `cv::setWindowProperty(name, WND_PROP_FULLSCREEN, WINDOW_FULLSCREEN)` will only enforce the window to go fullscreen *if* the current property value...
category: highgui-gui,category: documentation
low
Minor
284,785,041
vue
Required inputs in child components are highlighted as invalid on render in Firefox.
### Version 2.5.13 ### Reproduction link [https://jsfiddle.net/50wL7mdz/85928/](https://jsfiddle.net/50wL7mdz/85928/) ### Steps to reproduce No additional steps required. Opening the JSFiddle in Firefox should automatically cause the issue to display. ### What is expected? Required inputs that are rendered...
browser quirks
low
Minor
284,789,111
kubernetes
Remove direct write access to this repo
EDIT: updated as of 2019-07-19 We now have sufficient automation in place to address most if not all of the use cases that would require direct write access to this repo: - https://prow.k8s.io/tide: we allow people without direct write access to merge via /lgtm, /approve, and OWNERS files - https://go.k8s.io/bot-c...
priority/backlog,kind/cleanup,sig/contributor-experience,lifecycle/frozen
medium
Critical
284,802,288
go
net/http: Request not cancelled when body is not read
### What version of Go are you using (`go version`)? go version go1.9.2 darwin/amd64 ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using (`go env`)? GOARCH="amd64" GOBIN="/Users/sheerun/go/bin" GOEXE="" GOHOSTARCH="amd64" GOHOS...
Thinking,help wanted
medium
Critical
284,817,671
TypeScript
strictPropertyInitialization with subclasses that refine the types of properties
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** 2.7.0-dev.20171226 **Code** ```ts class A { x: {y: string} = {y: 'y'}; } class B extends A { x: {y: string, z?: number}; } ``` **Expected behavior:** I expected this not to...
Suggestion,In Discussion
low
Critical
284,847,655
opencv
Kinect Sensor not working with OpenCV3 and OpenNI2
##### System information (version) - OpenCV => 3.3 - Operating System / Platform => Ubuntu 16 ARM64 (aarch64) - Compiler => g++ (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.5) 5.4.0 20160609 ##### Detailed description My Jetson TX1 ARM64 ubuntu 16 system is running libfreenect2 (Protonect) and OpenNi2 (NiViewer2) succ...
priority: low,category: videoio(camera)
low
Critical
284,863,827
opencv
Incorrect work with border cornerHarris and cornerMinEigenVal
##### System information (version) - OpenCV => 3.3.1 - Operating System / Platform => Ubuntu 16.04 - Compiler => gcc version 5.4.0 ##### Detailed description Function `cornerHarris` and `cornerMinEigenVal` works with border incorrect. Еspecially, it can be demonstrated on submat. At first, this algorithm call ...
bug,category: imgproc
low
Minor
284,896,980
angular
Provide extension points in order to add custom behavior to the service worker file generated by the angular cli.
<!-- PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION. ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION. --> ## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopp...
feature,area: service-worker,feature: under consideration
medium
Critical
284,959,452
flutter
API doc clarification request: if a key is not provided for a widget, what is default key?
Trying to learn about keys, and I found https://docs.flutter.io/flutter/foundation/Key-class.html One of my initial questions was: "what is the "default" key?" and "if I don't provide a key, what's the default?" I also checked https://docs.flutter.io/flutter/widgets/Widget/key.html and didn't find an obvious answ...
framework,d: api docs,has reproducible steps,P2,found in release: 3.3,found in release: 3.5,team-framework,triaged-framework
low
Major
284,960,285
TypeScript
TS Proposal : "Interface incorrectly extends interface" - sub-interface method overload OR override ?
**TypeScript Version :** 2.6.2 ## The problem **Initial scenario** I encountered the issue yesterday days as I was trying to add some features to one of my interface inheritance chain. The context of this example is just imagined : It is longer than needed to demonstrate the issue, but I wanted a full example...
Suggestion,Needs Proposal
medium
Critical
284,965,010
opencv
Build for OSX fails
Hi, the build_framework for osx is out of date as you stated earlier. Is there any workaround that you know of that can help me build OSX stuff without Cuda or perhaps another module? The issue is that running the script that generates the OpenCV3.4 framework for use on OSX is not working, in case others reading are...
category: build/install,platform: ios/osx,incomplete
low
Minor
284,992,453
go
cmd/dist: detect FPUless ARMv7 platforms?
Hi, I'm trying to build Go on an FPUless ARMv7 platform: ``` [root@unknown src]$ cat /proc/cpuinfo Processor : ARMv7 Processor rev 0 (v7l) processor : 0 BogoMIPS : 1599.07 processor : 1 BogoMIPS : 1595.80 Features : swp half thumb fastmult edsp CPU implementer : 0x...
help wanted,NeedsFix
low
Critical
284,994,686
pytorch
Cache CuDNN benchmark selection, turn it on by default, use it across PyTorch runs
CuDNN benchmark mode can have some beefy speed increases for our cuDNN users, but we don't turn it on by default because the benchmarking process takes a long time. One possibility to alleviate this so that we can turn it on by default is to cache the benchmark selection (keyed on PyTorch version, cuDNN version, device...
module: cudnn,triaged
low
Critical
284,994,930
go
cmd/gofmt: -r 'bar(x) -> bar(x)' mistakenly replaces a comment with a newline in closures inside function
### What version of Go are you using (`go version`)? go version go1.9.2 linux/amd64 ### What did you do? `$ gofmt -r 'bar(x) -> bar(x)' /tmp/test.go` /tmp/test.go is: ``` package main func main() { // Call foo(). foo() bar(func() { // Call foo(). foo() }) } ``` ...
NeedsFix
low
Minor
285,016,605
go
cmd/link: nicer error when trying to link an invalid .syso file built on another OS
### What version of Go are you using (`go version`)? ``` go version go1.9.2 linux/amd64 ``` ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? ``` $ go env GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS...
NeedsFix,compiler/runtime
low
Critical
285,019,665
pytorch
Installation Optimise For Chinese Users Who Behind the Wall
As you know, we are just can not access all Google etc access behind the f*k great wall. The pytorch.org wesite can not load properly when click pip and cuda chips. Just not responding, I think the site using some access which block in China. Just for suggestion, write more install command in Github README.md or anywh...
module: docs,triaged
low
Major
285,071,995
pytorch
DistributedDataParallel doesn't converge well when using MPI
## Originally posted by @alsrgv: I got Gloo working with 4 nodes with 4 GPUs each, but it fails on 32 nodes. I tried MPI backend with `DistributedDataParallel` and found that it doesn't converge very well. I scaled back experiment to 4 nodes with 4 GPUs each and observed that MPI backend with `DistributedDataPar...
oncall: distributed,triaged
low
Major
285,146,868
youtube-dl
Unable to download from http://members.bangbros.com
## 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 this: `[x]`) - Use the *Preview* tab to see what your issue will actually look like ...
account-needed,nsfw
low
Critical
285,147,334
create-react-app
Add WebWorker Support
Add ability to load WebWorkers (and SharedWorkers?) via the react-scripts. My use-case is for using latency (and debug) sensitive protocols over WebSocket which may get dumped by the server if no activity occurs. There has been a lot of discussion regarding this on #1277 but no definitive answer and now closed. Also...
issue: proposal
high
Critical
285,153,379
opencv
Inconsistent return type from CascadeClassifier.detectMultiScale in Python
##### System information (version) - OpenCV => 3.3.1 - Operating System / Platform => Windows 10 64 Bit - Compiler =>Python 3.6.3 ##### Detailed description in CascadeClassifier.detectMultiScale, I expected the library to return an empty ndarray when there is no detection. The library returns a single empt...
category: python bindings,category: objdetect
low
Minor
285,212,510
react
Consider a more specific warning for key={undefined}
Proposed in [this comment](https://dev.to/k1sul1/comment/1o68): >I had changed the casing of "ID" in the response, but forgot to commit it aaaaaand I ended up with it happening. >Basically I was doing key={undefined}. Could React warn user when this happens, something like "Looks like you tried to supply a key, b...
Type: Enhancement,Component: Core Utilities,React Core Team
low
Major
285,213,763
ant-design
Expand all header
### What problem does this feature solve? It feels natural to have an expand all button alongside with `onExpandAll` property, the same way it's done for selection column. It can be achieved using existing api, but UI would be much cleaner with header button. And perhaps it makes sense to group expandable options ...
🗣 Discussion,💡 Feature Request,Inactive,IssueHuntFest
medium
Major
285,221,198
youtube-dl
[Request] Add Cablevision (Optimum) to --ap-mso
## 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 this: `[x]`) - Use the *Preview* tab to see what your issue will actually look like ...
tv-provider-account-needed
low
Critical
285,222,401
rust
Difference in trait object default bounds for early/late bound lifetimes
It looks like early- and late-bound lifetimes behave differently in default object bounds: ```rust trait A<'a>: 'a {} pub fn foo<'a>(x: Box<A<'a>>) -> Box<A<'a> + 'static> // Infers 'static { x } pub fn bar<'a>(x: Box<A<'a> + 'a>) -> Box<A<'a>> // Infers 'a where 'a: 'a { x } ```
A-lifetimes,C-bug,T-types,A-trait-objects
low
Minor
285,248,445
flutter
Building on Ubuntu Xenial requires installing gcc-multilib and g++-multilib
...and uninstalling `g*-arm-linux-gnueabihf` which got installed by our tools. At least, that seems to have been the problem. I haven't tried to figure out exactly what part of `install-build-deps.sh` needs updating, since I'm not super familiar with the relevant packages and their interdependencies.
team,engine,platform-linux,P3,team-engine,triaged-engine
low
Minor
285,249,874
flutter
Need more error handling to handle connecting to an Android device that hasn't authorized the host
``` ianh@burmese:~$ flutter devices 1 connected device: Error retrieving device properties for ro.product.cpu.abi: error: insufficient permissions for device ???????????? • ???????????? • android-arm • Android null (API null) ianh@burmese:~$ ```
platform-android,tool,a: first hour,P2,team-android,triaged-android
low
Critical
285,256,423
vscode
Suggestion: Use RegEx classes in "editor.wordSeparators" settings
It looks like the settings string for "editor.wordSeparators" contains (almost) any punctuation character. Wouldn't it make more sense to introduce the ability to utilize [regular expression character classes](https://docs.microsoft.com/en-us/dotnet/standard/base-types/character-classes-in-regular-expressions) for t...
feature-request,editor-core
low
Minor
285,286,917
opencv
does cuda::cvtColor support the format of 'cv::COLOR_YUV2BGR_NV21'?
the following code will give an error: cv::cuda::cvtColor(g_src, g_dst, cv::COLOR_YUV2BGR_NV21);
feature,priority: low,category: gpu/cuda (contrib)
low
Critical
285,289,298
go
x/build: we should run at least one windows builder as each of Administrator and non-Administrator
Some tests do not run unless they are run by Administrator. Compare normal user runs: ``` c:\>go test -v -short os | grep -i skip --- SKIP: TestStatError (0.00s) testenv.go:189: skipping test: cannot make symlinks on windows/amd64: you don't have enough privileges to create symlinks --- SKIP: TestReaddi...
OS-Windows,Builders
low
Critical
285,318,302
nvm
NVM D
<!-- Thank you for being interested in nvm! Please help us by filling out the following form if you‘re having trouble. If you have a feature request, or some other question, please feel free to clear out the form. Thanks! --> - Operating system and version: OSX 10.11.6 - `nvm debug` output: No output from that co...
needs followup,installing nvm
low
Critical
285,319,419
rust
What to do about repr(C, simd)?
Currently, `repr(C, simd)` warns about "incompatible representation hints", but leaving off the `repr(C)` triggers the FFI lint when the SIMD type is used in FFI. Note that `#[repr(C)] #[repr(simd)]` does not warn only due to #47094. Most uses of SIMD in FFI this in the Rust source tree use two separate repr attribu...
C-enhancement,A-FFI,T-compiler,A-SIMD,F-simd_ffi,A-repr
medium
Major
285,384,621
vscode
when writing a new CompletionItemProvider it is very hard debug as to why the item is not being offered
Whenever I try to write a new CompletionItemProvider, I always have to bang my head against the table many times because there are many rules which hide your item from the completion menu. I get that these rules are needed, but it is often frustrating for a developer to just see his completion items disappear. Could...
feature-request,suggest
low
Critical
285,407,580
vscode
macOS: alt+i always inserts '^' character
- VSCode Version: 1.19.1 & 1.20.0-insider (f9115349ef09cfef2bed669680d10ac58b490dce) - OS Version: macOS Sierra 10.12.6 Steps to Reproduce: 1. Assign keyboard shortcut "option+i" to a command such as 'Toggle Sidebar Visibility' or 'Go to Definition': ![image](https://user-images.githubusercontent.com/593118/344...
upstream,keybindings,macos,upstream-issue-linked,chromium
medium
Critical
285,463,984
go
runtime: memmove sometimes faster than memclrNoHeapPointers
Memory allocation using `make([]int, K)` is surprisingly slow compared to `append(nil, ...)`, even though `append` does strictly more work, such as copying. ``` $ cat a_test.go package main import "testing" const K = 1e6 var escape []int func BenchmarkMake(b *testing.B) { for i := 0; i < b.N; i++ { ...
Performance,NeedsInvestigation,compiler/runtime
low
Major
285,479,083
flutter
Flutter Inspector on device UI polish: visual change when entering select mode.
Show a mode change when first entering inspect mode (there’s no visual difference currently, so it’s not always clear to the user that clicking the inspect button did anything). For example, show target icons in the corners of the screen.
c: new feature,framework,f: inspector,P2,team-framework,triaged-framework
low
Minor
285,479,239
flutter
Display of debug paint for selected widgets in the inspector
This will require a refactor of the binding code it flutter so that we have hooks in the appropriate places. User story is visually seeing padding, alignment, and other debug paint data for the selected widget where it is easily understandable as compared to the current behavior of seeing debug paint information for al...
c: new feature,framework,f: inspector,P3,team-framework,triaged-framework
low
Critical
285,479,569
flutter
Better debugging of overflow issues using the inspector
Make sure red overflow error areas are always easily clickable bringing you directly to a description of the issue. Also consider making it possible to jump directly from an overflow exception in the console to inspecting the associated node. Git clone https://github.com/sergiandreplace/planets-flutter Try to run it...
framework,f: inspector,P3,team-framework,triaged-framework
low
Critical
285,483,865
youtube-dl
Add support for Adobe Pass Auth TV Provider Midco
## Please follow the guide below - [x ] I've **verified** and **I assure** that I'm running youtube-dl **2017.12.31** ### Before submitting an *issue* make sure you have: - [x ] At least skimmed through the [README](https://github.com/rg3/youtube-dl/blob/master/README.md), **most notably** the [FAQ](https://gith...
tv-provider-account-needed
low
Critical
285,484,862
rust
Incorrect warning about unused const
In the following program: ``` const SIZE: usize = 4; fn _f(arr: [i32; SIZE]) { for x in arr.iter() { println!("{}", x); } } fn main() {} ``` I get a warning about `SIZE` being unused: ``` warning: constant item is never used: `SIZE` --> src/main.rs:1:1 | 1 | const SIZE: usize =...
C-enhancement,A-lints,A-diagnostics,T-compiler,WG-diagnostics
medium
Major
285,487,141
pytorch
Assert that some tests must not be skipped under certain CI configurations
It seems pretty easy to accidentally misconfigure one of our CI environments, and consequently fail to run a test. It would be great if we could somehow either: 1. Assert that all tests eventually get run under some configuration (not sure how to do this) 2. Assert that in a given CI environment, some test must not...
high priority,module: ci,module: tests,triaged,quansight-nack
low
Critical
285,492,046
flutter
Build Android artifacts on Windows
Currently, we can only build host artifacts (like `gen_snapshot` and `flutter_tester`) on Windows. We do not support building artifacts on Windows that are supposed to run on other platforms (e.g. the engine for Android).
c: new feature,engine,platform-windows,P3,team-engine,triaged-engine
low
Minor
285,536,561
rust
Diagnostics for conversions erroneously say that 'as' only works between primitive types.
See https://play.rust-lang.org/?gist=7194dac428b4355e3f2872e9c0206800&version=stable The note says "an `as` expression can only be used to convert between primitive types. Consider using the `From` trait", but as show by the expression `Baz as i32`, this is not true.
C-enhancement,A-diagnostics,T-compiler,D-papercut,D-incorrect
low
Minor
285,567,129
go
syscall: use Windows FILE_FLAG_BACKUP_SEMANTICS in remaining places (Open)
Hi, `FILE_FLAG_BACKUP_SEMANTICS` is an optional flag to the Windows `CreateFile` API. It allows accessing files when privilege would be denied by normal Windows ACLs, except for that the user account has the `SE_BACKUP_NAME` privilege. If the calling user account does not have this privilege, adding this flag has no...
OS-Windows,NeedsInvestigation
low
Major
285,738,440
flutter
use package: references in the assets section of a pubspec file
You can currently refer to assets from another package using the `packages/package_name/asset_name` format. We should move to using a `package:package_name/asset_name` format - this will be the same as other url references (like imports).
tool,c: API break,a: assets,P2,team-tool,triaged-tool
low
Major
285,769,824
rust
Some debuginfo tests are not running
I noticed when adding a debuginfo test that nothing I did caused the test to fail. Tracing back this seems to have been caused by 3e6c83d which broke parsing of the command/check lines, leaving all tests passing without any checking. PR #47155 runs them again and ignores the failing ones
A-testsuite,A-debuginfo,T-compiler,C-bug
low
Critical
285,776,448
go
cmd/go: pass CGO_FLAGS to C compiler when compiling _cgo_main.c or gccgo
I'm unable to compile `go-sqlite3` with `gccgo` for the PowerPC plataform. ### What version of Go are you using (`go version`)? `go version go1.8.3 gccgo (Ubuntu 7.2.0-8ubuntu3) 7.2.0 linux/amd64` ### Does this issue reproduce with the latest release? I have not tested with the latest since the above is the...
NeedsFix
low
Critical
285,778,810
rust
Command-line arguments are cloned a lot on Unix
The `std::sys::unix::args` module does a lot of allocation and cloning of command-line parameters: 1. On startup, `std::sys::unix::args::init` copies all of the command-line arguments into a `Box<Vec<Vec<u8>>>` (except on macOS and iOS). 2. When `std::env::args` or `args_os` is called, it eagerly copies all of the ...
I-slow,O-linux,C-enhancement,T-libs
low
Major
285,832,746
TypeScript
export as namespace doesn't support nesting namespaces
<!-- 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 --> <!-- Please try to reproduce the issue...
Suggestion,In Discussion
low
Critical
285,842,688
flutter
Consistent .gitignore for Dart and Flutter projects
We should have a standard and consistent `.gitignore` file common to Dart and Flutter that combines the [recommendations currently on GitHub](https://github.com/github/gitignore/blob/master/Dart.gitignore) with those generated by flutter create (which are different). From [https://github.com/github/gitignore/blob/m...
tool,customer: crowd,P3,team-tool,triaged-tool
high
Critical
285,909,561
vscode
[html] extract class name to css file
Steps to Reproduce: 1. click &lt;html&gt; tag; 2. light icon showing, click to show extract menu: menuitem: extract class name to style tag; menuitem: extract class name to css file; demo: ``` <!DOCTYPE html> <html> <head> </head> <body> <div class="a"> <div class="a-1"> </div>...
feature-request,html
low
Minor
285,919,749
rust
Stabilize -Z sanitize
Hi, I would really like to see -Z sanitize options available in stable rust. Today they are available in nightly. I have used them for 6 months in the 389 Directory Server project in a production ldap environment as part of the code IO event path. I have exercise the leak and address sanitize options extensively...
T-compiler,C-feature-request,A-sanitizers
medium
Critical
285,976,744
kubernetes
Modifying nodeSelector on StatefulSet doesn't reschedule Pods
/kind bug **What happened**: Changing nodeSelector of a StatefulSet doesn't trigger rescheduling of it's existing pods. I `kubectl apply` the StatefulSet below, and wait for it's Pods to get scheduled onto Nodes with label `node_type: type1`. Then I change the nodeSelector label to `node_type: type2` and do `kubect...
kind/bug,sig/scheduling,sig/apps,lifecycle/frozen
medium
Critical
286,007,863
pytorch
[docs] Return value type hint to be specified in docs for torch.is_grad_enabled (i.e. -> bool)
Including master docs: https://pytorch.org/docs/master/search.html?q=is_grad_enabled cc @jlin27
module: docs,triaged
low
Major
286,027,948
youtube-dl
[bilibili] error 466 in downloading
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.12.31*. If it's not, read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected. - [x] I've **verified**...
bug
medium
Critical
286,117,271
neovim
jobstart({string}) fails if 'shell' has unescaped space
Prompted from https://github.com/vim-airline/vim-airline/issues/1595 . If neovim is ran from Git Bash which (by default) exists under `C:\Program Files\Git\usr\bin\bash` functions such as `jobstart` will break due to using the `shell` variable when running the command. ```sh # We get this C:\Program Files\Git\usr\...
bug,job-control,complexity:low
low
Major
286,129,107
rust
Reset rustc's scoped TLS state during unwinding.
This should only happen in the event of an ICE, but right now, if a `Drop` implementation (for e.g. a field in `Session`) would try to access, say, the `TLS_TCX`, it would use-after-free the global `TyCtxt`.
C-cleanup,T-compiler,A-thread-locals
low
Minor
286,144,548
flutter
Buttons on iOS do not use squircle paths
@abarth brings this up from time to time (I think mostly jokingly). That CupertinoButton shouldn't actually be a rounded rect, but rather a squircle to match UIKit-based apps.
platform-ios,framework,a: fidelity,f: cupertino,P2,team-design,triaged-design
low
Critical
286,168,599
go
runtime: make defs_$GOOS.go regeneratable
It seems that `defs_$GOOS.go` used to generate `defs_$GOOS_$GOARCH.go` in the old days. https://github.com/golang/go/blob/596e3d9c0176db442a51202a2ae2834ac892d594/src/runtime/defs_darwin.go#L7-L12 However, `-cdefs` is not a valid cgo option today and people started to add features ad hoc. I think making those ...
NeedsInvestigation,compiler/runtime
low
Major
286,221,231
rust
Option map won't compile while match works well
Consider this snippet: ```rust fn xxx() -> Option<&'static str> { Some("word1 word2 word3") } fn to_words<'a>() -> Option<Box<Iterator<Item = &'a str> + 'a>> { xxx().map(|x|Box::new(x.split(' '))) } fn main() { println!("{}", to_words().unwrap().count()); } ``` it won't compiles with the...
C-enhancement,T-lang,A-coercions
low
Critical
286,291,624
opencv
Problem compiling both Python2 and 3 support on macOS
<!-- If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses. If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute). This is a template helping you to create an issue which can be...
category: build/install,incomplete
low
Critical
286,293,339
vue
[SSR] Support inline resource for specified files for server side rendering.
### What problem does this feature solve? When we are using SSR with CommonsChunkPlugin, we often generate a `manifest.js` at the same time, but `manifest.js` is always very small (about 1kb). Without SSR using `html-webpack-plugin` and its inline resource plugin, we are able to make `manifest.js` transformed inlin...
feature request
low
Major
286,313,072
angular
[Animations] query doesn't work when using the async pipe
## I'm submitting a... <!-- Check one of the following options with "x" --> ``` [ x ] Bug report ``` ## Current behavior Animation query doesn't work when using the async pipe. ## Minimal reproduction of the problem with instructions https://stackblitz.com/edit/query-async There are 5 sections in the dem...
type: bug/fix,area: animations,freq2: medium,P3
low
Critical
286,328,101
rust
Using deprecated items within the crate that deprecated them issues warnings
When deprecating an item, you typically still want the helper methods supporting it to work without the compiler whining that the item is deprecated. I tried this code: [playground](https://play.rust-lang.org/?gist=de706d2986d8b1cd12a7852e29bc5c1c) #[deprecated] pub struct Foo; impl Foo { ...
A-lints,T-lang,C-bug,L-deprecated
low
Major
286,328,956
react
Consider removing mouseenter/mouseleave polyfill
As suggested in https://github.com/facebook/react/pull/10247. Not sure we want to do it, but I decided to create an issue to track future attempts (the PR is stale).
Component: DOM,Type: Breaking Change,React Core Team
low
Major
286,372,826
go
cmd/gofmt: quadratic handling of large addition expressions
Given a program with a large string addition var x = 1 + 1 + 1 + ... 1 gofmt takes time quadratic in the size of the expression to print it back out. Note that this is an integer addition, not a string addition: the problem does not involve string concatenation. go get -u rsc.io/tmp/bigprog bigprog gofmt prints...
NeedsFix
low
Major
286,421,328
pytorch
Bind in Python _backward ATen functions
At the moment they are not bound because we don't support `std::array<bool, N>` binding, but this should be easy to add. cc @ezyang @SsnL @albanD @zou3519 @gqchen
module: autograd,triaged
low
Minor
286,422,128
vscode
[html] code completion replaces text after cursor
- VSCode Version: 1.19.1 - OS Version: MacOS Sierra Steps to Reproduce: 1. Put some html in and html page with some text `<div>Hello my name is ....</div>` 2. Then before hello type a tag (ie strong "<str" ) 3. Hit tab to have it expand strong. 4. Notice that hello is consumed. Here is a video that sh...
feature-request,html
low
Critical
286,449,936
kubernetes
Setting defaultMode is not Fully Respected When Pod.spec.securityContext.runAsUser is Set
**Is this a BUG REPORT or FEATURE REQUEST?**: /kind bug **What happened**: Setting `Pod.spec.securityContext.runAsUser` causes the group read permission bit to be set on secrets exposed via volumes, even if `Pod.spec.volumes[x].defaultMode` is set to `256`. See also: https://github.com/openshift/origin/issu...
kind/bug,sig/storage,priority/important-longterm,lifecycle/frozen,triage/accepted
high
Critical
286,475,970
electron
Add --disable-smooth-scrolling command line switch.
<!-- Thanks for opening an issue! A few things to keep in mind: - The issue tracker is only for bugs and feature requests. - Before reporting a bug, please try reproducing your issue against the latest version of Electron. - If you need general advice, join our Slack: http://atom-slack.herokuapp.com --> * ...
enhancement :sparkles:,platform/macOS,platform/linux
medium
Critical
286,480,453
godot
Engine.GetSingleton() fails to resolve auto loaded nodes in C#
**Godot version:** `master` / 0e6e98a65f26c915b5717992ba881cf33406c8bf **OS/device including version:** _Manjaro Linux 17.1-rc2_ **Issue description:** If I have an auto loaded node named `RootContext`, running the following code fails to resolve the node instance with an error, _"Failed to retrieve non-existe...
topic:core,documentation
low
Critical
286,481,430
TypeScript
Better error for semicolon after decorator
<!-- BUGS: Please use this template. --> <!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript --> <!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md --> **TypeScript Version:** 2.7.0-dev.201...
Suggestion,Help Wanted,Domain: Error Messages
low
Critical
286,508,661
opencv
Python bindings: objects sharing between multiple threads
OpenCV C++ algorithms/objects are not thread-safe by default due performance and coding simplification reasons. Concurrent usage of OpenCV objects in multiple threads leads to application crashes. It is OpenCV usage / programming issue, but it confuses OpenCV users. Improvement options are: - integrate automati...
feature,category: python bindings,RFC
low
Critical
286,516,296
rust
Using items from a deprecated module does not warn
Attempting to `use deprecated_module;` or `use deprecated_module::*;` fails, but doing `use deprecated_module::SpecificItem;` compiles with no error. Right now in Diesel I'm actually seeing an even more confusing error: > use of deprecated item 'types::__test_reexports' Even though there is nothing in the projec...
A-lints,A-resolve,T-compiler,C-bug,L-deprecated
low
Critical
286,516,605
rust
A deprecated module containing tests emits an incredibly confusing deprecation warning that is impossible to silence
This code demonstrates the issue in question: ```rust #[deprecated(since = "0.1.0")] mod foo { #[test] fn stuff() {} } ``` Attempting to run `cargo test` on this will give an incredibly opaque error message: `use of deprecated item 'foo::__test_reexports'`. I had to resort to grepping rustc's codeba...
A-lints,A-diagnostics,T-compiler,A-libtest,C-bug,L-deprecated
low
Critical
286,526,291
rust
libtest Shouldn't Panic On Unexpected Command-line Arg
Right now, if the user passes a command-line argument to a test or benchmark executable that isn't recognized, it will produce an error like the following: ``` thread 'main' panicked at '"Unrecognized option: \'example\'."', /checkout/src/libtest/lib.rs:278:26 note: Run with `RUST_BACKTRACE=1` for a backtrace. er...
T-dev-tools,A-libtest,C-bug
low
Critical
286,556,382
youtube-dl
I can't download from qqmusic
Please help me, one month ago i can download from site, but now i can't sorry for my english > youtube-dl https://y.qq.com/n/yqq/song/0048jnGb1B9mpX.html > [qqmusic] 0048jnGb1B9mpX: Download song detail info > [qqmusic] 0048jnGb1B9mpX: Retrieve vkey > [qqmusic] 0048jnGb1B9mpX: Checking m4a video format URL > [q...
geo-restricted,account-needed
low
Critical
286,578,894
vscode
Git - add of file with unicode name fails in Git panel
- VSCode Version: Code 1.19.1 (0759f77bb8d86658bc935a10a64f6182c5a1eeba, 2017-12-19T09:46:02.926Z) - OS Version: Windows_NT ia32 10.0.16299 - Extensions: Extension|Author (truncated)|Version ---|---|--- vscode-base64|ada|0.0.1 vscode-database|baj|1.2.0 toml|be5|0.0.3 vscode-markdownlint|Dav|0.12.0 createuni...
bug,help wanted,git
medium
Critical
286,582,826
You-Dont-Know-JS
Async & Performance: optimize gen-runner in chapter 4
In the promise-aware gen runner, to prevent the unnecessary extra tick at the beginning, change: ```js return Promise.resolve().then( function handleNext(value){ .. } ); ``` ...to: ```js return Promise.resolve( (function handleNext(value){ .. })() ); ```
for second edition
low
Major
286,628,659
go
testing: update documentation to be clear about when parallel subtests run
### What version of Go are you using (`go version`)? `go version go1.9.2 darwin/amd64` ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOOS="...
Documentation,help wanted,NeedsFix
low
Critical
286,683,871
rust
optimization remarks broken, names mangled, no file/line addresses (-C remark=all)
ad9a1daa819bbeb8e643a01167b3b69055b88d57 added support for optimization remarks ````RUSTFLAGS="-C remark=all" cargo build --release```` however the output is very hard to use since source locations are broken and names are mangled. ```` note: optimization analysis for inline at <unknown file>:0:0: _ZN11pathfinding12...
A-LLVM,T-compiler,C-bug
low
Critical
286,699,110
pytorch
descriptor 'add' of 'torch._C._VariableBase' object needs an argument
the pytorch document said that the add opeartion can be like this ## ` torch.add(input, value=1, other, out=None)` but it will rise the error of descriptor 'add' of 'torch._C._VariableBase' object needs an argument when i do ## `torch.add(input=a, value=0.01, other=a)` a is a Variable like Va...
module: docs,triaged
low
Critical
286,737,886
rust
Rust's stdio should not ignore EBADF error on non-windows platforms
I've discovered, that `std::io::stdin/out/err()` streams unconditionally ignore `EBADF`-like IO errors on all platforms. This is done by checking the read/write error in a `handle_ebadf()` function. https://github.com/rust-lang/rust/blob/1ccb50eaa670f86b69e7a64484a8c97e13169183/src/libstd/io/stdio.rs#L123-L128 It...
C-enhancement,T-libs-api,A-io
low
Critical
286,767,880
angular
[Animations] weird initialisation states
<!-- PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION. ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION. --> ## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopp...
type: bug/fix,area: animations,freq3: high,P3
low
Critical
286,850,094
go
cmd/pprof: use $GOPATH for source file lookup
### What version of Go are you using (`go version`)? go version go1.9.2 darwin/amd64 ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="/Users/phemmer/.go/bin" GOEXE="" GOHOSTARCH="amd64" GOH...
NeedsInvestigation,compiler/runtime
low
Critical
286,852,534
go
cmd/compile: inefficient CALL setup when more than 32bytes of args
``` $ gotip version go version devel +a62071a209 Sat Jan 6 04:52:00 2018 +0000 linux/amd64 ``` ``` type T struct { s1, s2 string } //go:noinline func foo(t T) { _ = t } func bar() { var t T foo(t) } ``` generates ``` 0x0020 00032 (test.go:14) MOVUPS X0, (SP) 0x0024 00036 (test.go:14) MOVU...
Performance,binary-size,compiler/runtime
low
Minor
286,865,098
vscode
Add an optional configurable toolbar below the menu
Whole my life I used ide where there was a customizable toolbar. I starded to use vscode and stopped to use it after one day. It is impossible to remember all shorcuts. In any other popular ide you can put any menu item on toolbar and use it from time to time. **visual vtudio:** ![screen010](https://user-images.git...
feature-request,layout
high
Critical
286,898,764
go
dist: provide one-line installer
We all agree we want a 1-line installer. tools/cmd/getgo is a start but has work to do. This is the tracking bug for shipping it (and advertising it on the install page).
NeedsFix,FeatureRequest,DevExp
medium
Critical
286,899,301
godot
UndoRedo error with consecutive create_action calls
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** 99da466 **OS/device including version:** Ubuntu 17.10 **Issue description:** After this, I'm done torturing UndoRedo, I think. :) There d...
topic:core,confirmed,documentation
low
Critical
286,900,597
pytorch
Carefully audit contiguity requirements of code
While I was working on the cuDNN bindings, I was a bit nervous about when we required things to be contiguous or not (for the most part, I tried to exactly mimic what the API did previously, but I did not feel very confident about it.) The reason I was nervous is that we don't seem to carefully test our algorithms on a...
module: cudnn,triaged
low
Critical
286,918,277
opencv
ORB descriptor cannot use SIFT keypoints
##### System information (version) - OpenCV => 3.4.0-dev - Operating System / Platform => ALL - Compiler => ALL ##### Detailed description Although ORB works with FAST or AKAZE keypoints, it fails to use the SIFT ones! ##### Steps to reproduce ```.py import cv2 sift = cv2.xfeatures2d.SIFT_create() orb =...
category: features2d,RFC
low
Critical
286,949,508
vscode
[xml] add on enter rules
- VSCode Version: Code 1.19.1 (0759f77bb8d86658bc935a10a64f6182c5a1eeba, 2017-12-19T09:46:23.884Z) - OS Version: Windows_NT x64 10.0.16299 - Extensions: Extension|Author (truncated)|Version ---|---|--- xml|Dot|1.9.2 auto-close-tag|for|0.5.5 auto-complete-tag|for|0.0.2 auto-rename-tag|for|0.0.15 beautify|Hoo...
feature-request,languages-basic
low
Minor
286,958,283
pytorch
Met 'cudnnDestroyDropoutDescriptor' while run multiply gpu-based models in multiply processes
I loaded a model and replicated 3 models which are all on different GPUs, and use torch.multiprocessing to create 4 processes. By this setting, I run one model in on process, so that I parallel run them. The running is fine, but when the processes were finished, this error occurred: ``` Exception ignored in: <bound ...
module: multi-gpu,module: cudnn,triaged
low
Critical
287,029,058
flutter
[google_sign_in] Remove guava dependency
This is no bugreport, more a question. I started editing the google sign in plugin for android and figured out several problem, I would like to fix. In order to do so, I would like to know what the getToken method is used for. According to the rest of the implementation, you can get the token out of the GoogleSig...
c: new feature,team,platform-android,p: google_sign_in,package,c: proposal,P2,team-android,triaged-android
low
Critical
287,041,491
opencv
`KeyPoint` and `vector<KeyPoint>` are not sufficient for detector/descriptor decoupling
Sorry for the long report in advance, I hope developers can react to this, and agree to find a better approach. The existence of `Feature2D::detect` and `Feature2D::compute` advertises for detector/descriptor decoupling, in which detected keypoints by virtually any detector shall be describable using any descriptor....
RFC
low
Major
287,071,466
create-react-app
Proposal: explicit named imports for non-JS/CSS assets
## Problem We currently allow you to do this: ```js import logo from './logo.png'; ``` After getting used to it, you’ll probably be comfortable with this giving you a URL. But what about other types? For example, what should this return? ```js import doc from './doc.md'; ``` Markdown source? Compi...
issue: proposal
high
Critical
287,073,778
go
cmd/internal/obj/x86: FSAVE assembled as FNSAVE
### What version of Go are you using (`go version`)? `go version go1.9.2 linux/amd64` ### Does this issue reproduce with the latest release? Yes. ### What operating system and processor architecture are you using (`go env`)? GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="...
NeedsFix
low
Critical
287,096,512
godot
Object is not rendered behind Dof Near Blur distance on Android
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** <!-- Specify commit hash if non-official. --> 4b414f45c **OS/device including version:** <!-- Specify GPU model and drivers if graphics-related. -->...
bug,platform:android,topic:rendering,confirmed,topic:3d
low
Critical
287,120,986
vscode
Heterogeneous DPI support on Linux
- VSCode Version: Code 1.19.1 (0759f77bb8d86658bc935a10a64f6182c5a1eeba, 2017-12-19T09:41:01.414Z) - OS Version: Linux x64 4.14.11-300.fc27.x86_64 Steps to Reproduce: 1. A Wayland desktop session on a multi-display setup with heterogeneous DPI scaling. Mine is a HiDPI laptop display scaled at 200% and an externa...
feature-request,upstream,linux,electron,workbench-os-integration,upstream-issue-linked
high
Critical
287,213,298
pytorch
Mixed Tensor/TensorList arguments in ATen functions with explicit derivatives
Today, you cannot write a derivative for a function with signature `f(Tensor, TensorList)` (or any combination thereof) because our code generation does not support it. The primary technical barrier to implementing this is the fact that autograd internals works with a completely flat list of tensors. To support mixe...
module: autograd,triaged,enhancement
low
Minor
287,286,835
go
cmd/compile: conversion error is a bit inaccurate
Please answer these questions before submitting your issue. Thanks! #### What did you do? If possible, provide a recipe for reproducing the error. A complete runnable program is good. A link on play.golang.org is best. ``` package main func main() { s := "s" _ = 'r' != s _ = 1 != s _ = 1.1 != s } `...
compiler/runtime
low
Critical