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
275,529,099
rust
vtable addresses differ based on the number of codegen units
I'm seeing the ptr::eq function from the standard library sometimes return false when it should return true. This is happening in debug mode in nightly and beta, but not stable, and not in any version in release mode. Here's the simplest I could get a reproduction of the issue: use std::ptr; use contain...
A-codegen,A-trait-system,T-lang,T-compiler,C-bug
medium
Critical
275,539,148
go
cmd/compile: cannot compile valid (but esoteric) self-recursive interface
https://play.golang.org/p/YSkuYfVQHI Esoteric case. Just for reference.
compiler/runtime
low
Minor
275,578,325
vscode
ANSI color support in edit buffer
<!-- Do you have a question? Please ask it on http://stackoverflow.com/questions/tagged/vscode. --> Now ANSI colors are supported in the debug console, I'd like to see it in the editor, something like [SublimeANSI](https://github.com/aziz/SublimeANSI). <!-- Use Help > Report Issues to prefill these. --> - VSCode V...
feature-request,editor-rendering
high
Critical
275,609,945
go
proposal: net: add support for "let localhost be localhost"
The I-D https://tools.ietf.org/html/draft-ietf-dnsop-let-localhost-be-localhost became an IETF dnsop-wg draft. It would be better to support the feature once the I-D has been published as an RFC for the sake of convenience instead of saying "sorry, there's no direct relationship between the IPv4 loopback address prefix...
Proposal,Proposal-Hold
low
Major
275,612,605
TypeScript
Sort jsdoc parameter suggestions by argument position
<!-- 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 --> From https://github.com/Microsoft/vsco...
Suggestion,Help Wanted,Good First Issue,Domain: Completion Lists,VS Code Tracked,PursuitFellowship
low
Critical
275,614,822
TypeScript
TypeScript: aggregate errors for file from all projects
_From @OliverJAsh on September 30, 2017 16:20_ I have a project with three folders, two of which are TS projects and the third of which is shared between them: - shared - service-worker (with `tsconfig.json`) - browser (with `tsconfig.json`) Both "browser" and "service-worker" depend on "shared". However, w...
Bug,Domain: TSServer
medium
Critical
275,621,320
go
net: clarification on the use of 0.0.0.0/8, ::/128 and ::ffff:0.0.0.0/128 as destination
The fixes for #6290 and #18806 revealed that the use of special IP addresses, 0.0.0.0/8 or ::/128, as the destination is confusing especially when working with datagram transport protocols as described in #22811. It would be better to clarify and to implement consistent API semantics (because some of the special addres...
help wanted,NeedsInvestigation
low
Minor
275,689,141
godot
Implement InputEventGesture (incl. Pan and Magnify) for all platforms
**Operating system or device, Godot version, GPU Model and driver (if graphics related):** Current master (5a23136). **Issue description:** `InputEventGesture` was added to core in #12573, together with `InputEventPanGesture` and `InputEventMagnifyGesture`, but they're only implemented for macOS so far. They sh...
enhancement,platform:windows,platform:linuxbsd,platform:web,platform:ios,platform:android,topic:core,topic:porting,platform:uwp,topic:input
medium
Critical
275,708,423
rust
Infer if type through indirection.
It surprised me that the first example works, while the second doesn't. https://play.rust-lang.org/?gist=a1bee92067f87a67240b4ccd2bc9a6a4&version=stable ```rust trait Foo {} struct A; impl Foo for A {} struct B; impl Foo for B {} pub fn test() { let a = A; let b = B; // Works. le...
C-enhancement,A-inference
low
Critical
275,731,948
angular
request| feat(form): Ability to programmatically submit an AbstractControl, NgForm or a FormGroupDirective
## I'm submitting a... <pre><code> [ ] Regression (a behavior that used to work and stopped working in a new release) [ ] Bug report <!-- Please search GitHub for a similar issue or PR before submitting --> [x] Feature request [ ] Documentation issue or request [ ] Support request => Please do not submit support...
feature,state: Needs Design,freq2: medium,area: forms,feature: under consideration
medium
Critical
275,765,024
rust
We should lint when !-fallback results in questionable code
An example is the following code: ```rust #![feature(never_type)] use std::error::Error; pub trait Deserialize: Sized { fn deserialize() -> Result<Self, Box<Error>>; } impl Deserialize for ! { fn deserialize() -> Result<!, Box<Error>> { Err("oh geez")?; panic!() } } fn foo() -> Resu...
C-enhancement,A-lints,A-diagnostics,T-compiler,F-never_type
low
Critical
275,770,703
angular
by default not send undefined params in url
## I'm submitting a... - [x] Feature request ## CURRENT To be simple, I will take example for GET request. Here you have a simple method making http call with an optional parameter: ``` public getCity(cityId?: number){ this.get('city', { params: {city: cityId}}) } ``` `cityId?` is optional, so you can c...
feature,breaking changes,area: router,feature: under consideration
high
Critical
275,814,519
youtube-dl
VEVO not working
## 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 ...
geo-restricted
low
Critical
275,849,413
rust
Rustdoc: replace Self with concrete types
It's pretty common to write code like: ```rust pub struct Foo { field: usize, } impl Foo { pub fn new() -> Self { Self { field: 0 } } } impl Default for Foo { fn default() -> Self { Self::new() } } ``` Generated docs: ![](https://screenshots.firefoxusercont...
T-rustdoc,C-feature-request
low
Major
275,852,483
TypeScript
`+=` on `string | undefined` should narrow its operand to `string`
<!-- 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...
Bug
low
Critical
275,855,466
pytorch
Memory leak when doing backward with grad as yourself
@zdevito You said you wanted to make a python repro? ``` void backward(std::vector<Variable> outputs) { variable_list varlst; function_list funclst; for (auto v : outputs) { funclst.emplace_back(v.grad_fn(), v.output_nr()); varlst.emplace_back(v); } detail::engine.execute(funclst, v...
module: autograd,module: memory usage,triaged,quansight-nack
medium
Major
275,889,725
opencv
Absent documentation for sub-pixel coordinate system
##### System information (version) - OpenCV => all - Operating System / Platform => all - Compiler => all ##### Detailed description There are a number of methods in OpenCV that accept or generate pixel coordinates as floating point numbers, `remap` is one of those methods I am using. I googled for a while try...
category: imgproc,category: documentation,RFC
low
Major
275,904,316
go
proposal: net/http: add Client.Put, Client.Patch
# PROPOSAL I am proposing the addition of the following functions to the net/http package. func Put() func Patch() func ()Put func ()Patch These functions would be similar to the Post functions that already exist. ## REASONS I believe all the reasons that the Post functions where added would also apply t...
Proposal,Proposal-Hold
low
Major
275,913,059
pytorch
Fuse bias to CuDNN convolution
CuDNN provides a fused cudnnConvolutionBiasActivationForward, but we don't use it. We should. NB: Please don't work on this until #3666 merges.
triaged,enhancement
low
Minor
276,025,466
TypeScript
Possible to narrow type of object literal property with strictNullChecks?
**TypeScript Version:** Current playground (2.6?) **Code** ```ts type Foo = { bar?: number[]; } let f1: Foo = {}; f1.bar = []; f1.bar.push(0); let f2: Foo = { bar: [] }; f2.bar.push(0); ``` **Expected behavior:** Both references to `.bar` compile successfully. **Actual behavior:** Seco...
Suggestion,Committed
low
Critical
276,036,156
TypeScript
Feature Request: add TypeChecker API to query if identifier is definitely assigned
Currently it's not possible to query CFA. I need to find out if an identifier is definitely assigned. This logic is part of `checkIdentifier` and is not accessible outside of that function. My use case is the TSLint rule `no-unnecessary-type-assertion` where we need to identify false positives. The current implement...
Suggestion,In Discussion,API
low
Minor
276,036,848
electron
Can't set VisibleOnAllWorkspaces for window.open windows
Here is what I'm trying to achieve: ``` var win = window.open(window.location.pathname + '#/my-subwindow', 'Lovely Title'); win.focus(); win.setVisibleOnAllWorkspaces(true); ``` But of course, the window that is returned from the window.open() is not a BrowserWindow but instead, it's a [BrowserWindowProxy]...
enhancement :sparkles:,platform/macOS
low
Major
276,093,057
opencv
cv::cudacodec::createVideoReader segfault
<!-- 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...
feature,priority: low,category: gpu/cuda (contrib)
low
Critical
276,152,885
kubernetes
API validation code is hard to review
I do a fair number of code reviews. I try to pay attention to API validation. It's gotten very hard to review. * There are at least 2 util libraries, and the core API validation is effectively a 3rd. * There are poor conventions across those libraries. * Commonly used functions might be in any of the 3. *...
sig/api-machinery,kind/feature,lifecycle/frozen
low
Major
276,166,465
rust
ill-typed unused FFI declarations can cause UB
This compiles and prints "p is not null and 0x0": ```Rust pub mod bad { #[allow(improper_ctypes)] extern { pub fn malloc(x: usize) -> &'static mut (); } #[no_mangle] pub fn bar() { let _m = malloc as unsafe extern "C" fn(usize) -> &'static mut (); } } pub mod good { ex...
A-LLVM,A-codegen,A-FFI,P-medium,T-lang,T-compiler,I-unsound,C-bug
high
Critical
276,201,000
node
Debugger crashes with assertion failure while using Chrome DevTools and remote debug
<!-- Thank you for reporting an issue. This issue tracker is for bugs and issues found within Node.js core. If you require more general support please file an issue on our help repo. https://github.com/nodejs/help Please fill in as much of the template below as you're able. Version: output of `node -v` P...
inspector,async_hooks
medium
Critical
276,205,475
go
cmd/vet: know what builtin functions have no side effects
Reminder issue to continue the work in https://go-review.googlesource.com/c/go/+/79536. For example, `len` and `cap` never have any side effects, and it would be useful to know that `i == len(x) || i == len(x)` is a suspicious expression. More broadly, this could be extended to automatically detect what functions...
help wanted,NeedsFix,Analysis
low
Minor
276,223,882
puppeteer
Properly handle target crashes
Crashed targets should be handled gracefully: 1. All pending commands should be rejected. This includes protocol messages and watchdogs, such as NavigatorWatcher / WaitTask 2. All subsequent commands to the crashed target should reject right away Neither (1) or (2) happen with Puppeteer v0.13.0.
feature,chromium
medium
Critical
276,229,768
godot
Double-clicking on a .gdns or .gdnlib opens the script editor
Godot 3.0 master Windows 10 64 bits I noticed that double-clicking on .gdn or .gdnlib resources in the file browser is not only opening them in the inspector, but also opens an empty script editor and adds them to the open list as if they were scripts. I guess this is not intented, as these don't contain source c...
bug,topic:editor,confirmed,topic:gdextension
low
Minor
276,246,454
bitcoin
Multiwallet rescan sequentially scans multiple wallets instead of in parallel
If you start up with a collection of N out of sync wallets bitcoin will perform N interdependent rescans; this can be rather slow e.g. if they're all at height 200k. This should be fixed, or we should offer suicide counseling at a minimum.
Wallet
low
Major
276,248,607
flutter
iOS mid-fling scroll simulation inaccurate
The scroll motions during the ~50ms in the middle of a fast fling motion on iOS is not accurate. In the middle of the fling itself (and generally), the scrollable's position offset follows the finger exactly whereas on iOS, when the finger moves too fast, the scrollable has an inertia and follows the finger with a ...
platform-ios,framework,a: fidelity,f: scrolling,f: cupertino,customer: crowd,has reproducible steps,P2,found in release: 3.6,team-ios,triaged-ios
low
Major
276,271,023
neovim
msgpack & shada functional tests fail with TZ=GMT-14
### Steps to reproduce ``` env TZ=GMT-14 make functionaltest ``` ### Actual behaviour ``` [1m[ ERROR ] 17 errors, listed below: [ ERROR ] ...neovim-0.2.2/2nd/test/functional/plugin/msgpack_spec.lua @ 284: In autoload/msgpack.vim function msgpa...
test,runtime
low
Critical
276,368,703
opencv
Error in resize method when using nearest neighbour interpolation
##### System information (version) - OpenCV => master - Operating System / Platform => all - Compiler => all ##### Detailed description When resizing image with nearest neighbour source image pixel coordinates are computed incorrectly. For example shrink a 5x5 image down to 1x1, you should get center pixel val...
category: imgproc,RFC
low
Critical
276,425,621
flutter
Text editing handles go over, not under, appbars
Cursor is not respecting the app z-index (it should be under the AppBar) ## Steps to Reproduce As you can see in the image bellow, the cursor is not Hidden by the AppBar. ![z-index](https://user-images.githubusercontent.com/1667961/33181696-573f334c-d058-11e7-8195-6f9628c4706f.png) ## Flutter Doctor ``` [...
a: text input,framework,f: material design,a: fidelity,a: quality,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-text-input,triaged-text-input
low
Major
276,462,546
godot
The Remote Scene Tree causes jerky movement everytime it updates
**Operating system or device, Godot version, GPU Model and driver (if graphics related):** Godot 3.0 master https://github.com/godotengine/godot/commit/3a33725014169ce51d6ac581a4dce3b97a60da00 **Issue description:** <!-- What happened, and what was expected. --> In the example, Every time the Remote Scene Tree up...
enhancement,topic:editor,confirmed,performance
medium
Critical
276,474,214
flutter
Hot reloading messaging is confusing
I ❤️ the new IDE "reload-on-save" feature(s), but I think the output emitted is pretty confusing: > Launching lib/main.dart on iPhone SE in debug mode... > Reloaded 0 of 466 libraries in 410ms. > Reloaded 0 of 466 libraries in 303ms. I ask myself the following questions when reading this output: * Does it me...
tool,t: hot reload,a: quality,P3,team-tool,triaged-tool
low
Critical
276,482,428
go
path/filepath: Clean definition is not idempotent
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? version 1.9 ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using (`go env`)? windows/amd64 ### Issue ...
Documentation,NeedsFix
low
Critical
276,544,627
youtube-dl
Alphatv.gr site support
## - 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 --- ### Make sure you are us...
site-support-request
low
Critical
276,567,342
go
fmt: "%%" placeholder accepts incorrect index values
What version of Go are you using (go version)? go1.9.2 Does this issue reproduce with the latest release? yes What operating system and processor architecture are you using (go env)? macOS Sierra 10.12.6, darwin/amd64 ### What did you do? Run the following code ``` package main import ( "f...
NeedsFix
low
Critical
276,643,954
angular
Possibility to have a loop animation, using triggers. [Feature Request]
Hello i`m trying to make a loop animation with full control using triggers, right now theres no easy way to make it, only a few possibles work arounds. ## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopped working in a new ...
feature,area: animations,freq1: low,P4,feature: under consideration
medium
Critical
276,673,423
rust
Test coverage for double trailing commas is poor
#### Theory Every place in the grammar which supports trailing commas should be tested that it fails for double commas, lest Rust be locked into supporting it forever. A particularly notable case of this is for `macro_rules!` macros, many of which must manually implement their own trailing comma support (leading to...
C-cleanup,A-parser,E-needs-test
low
Major
276,697,414
pytorch
Considerable slowdown in Adam.step after a number of epochs with multiple losses
I have a model with multiple outputs and, therefore, multiple losses. When training I accumulate the losses using retain_graph. Something along the lines of: ```python self.zero_grad() for output_label, output in self(input, target).items(): loss = self.loss(output, target[output_label]) loss.backward(re...
awaiting response (this tag is deprecated),needs reproduction,module: performance,module: optimizer,triaged
low
Major
276,698,767
opencv
Open CV Segmentation Violation Java
##### System information (version) Open CV 3.3.1 Linux ARM Debian Oracle JDK 8 and Open JDK 8 ##### Detailed description Core dump when loading native Library, same as closed issue #10080 which I believe needs to be reopened. I've investigated at length, confirm compiling with FFMPEG disabled, the problem doesn...
priority: low,incomplete
low
Major
276,732,195
TypeScript
tsc --watch should listen for stdin requests to transpile on demand
nodemon will listen for "rs" streaming to `process.stdin` and this allows the user to manually restart a process. In the same way, there are times where it would be nice to manually restart an incremental build with `tsc --watch`, although it might not be much faster since it will rebuild everything, it should be a ...
Suggestion,Needs Proposal
low
Minor
276,733,103
opencv
Increasing efficiency of the Keypoint and DMatch Python wrappers
##### Detailed description Python wrapper for `Keypoint` and `DMatch` is totally inefficient in which we need to access each object separately in order to extract its attributes (center, radius, trainingIdx and queryIdx), rather than using Numpy arrays. Is it possible to change that behavior to something similar to...
feature,category: python bindings,category: features2d
low
Minor
276,733,541
pytorch
[Feature Request] Implement "same" padding for convolution operations?
The implementation would be easy, but could help many people suffered from the headache of calculating how many padding they need. cc @ezyang @gchanan @zou3519 @bdhirsh @jbschlosser @albanD @mruberry @walterddr
high priority,module: nn,module: convolution,triaged,enhancement,needs design
high
Critical
276,748,397
go
proposal: spec: read-only types
I propose adding read-only types to Go. Read-only types have two related benefits: 1. The compiler guarantees that values of read-only type cannot be changed, eliminating unintended modifications that can cause subtle bugs. 2. Copying as a defense against modification can be reduced, improving efficiency. An ad...
LanguageChange,Proposal,LanguageChangeReview
high
Critical
276,754,529
youtube-dl
Unsupported URL :- cricket.com.au
Cricket.com.au yields Unspported URL. <br> Here is the log. <br> youtube-dl -v http://www.cricket.com.au/news/match-report/australia-england-first-ashes-test-day-three-gabba-live-stream-scores-highlights-scores-smith-marsh/2017-11-25 > log.txt [debug] System config: [] [debug] User config: [] [debug] Custom confi...
site-support-request
low
Critical
276,755,238
rust
Adding serde_json as an unused external crate causes a compiler error in unrelated code
This code compiles: ```rust use std::cell::Cell; use std::default::Default; fn main() { let cell = Cell::new(0u64); cell.get() == Default::default(); } ``` This code does not: ```rust extern crate serde_json; use std::cell::Cell; use std::default::Default; fn main() { let cell = Cell::n...
C-enhancement,A-diagnostics,T-compiler
low
Critical
276,769,195
pytorch
Wrap Cephes library for mathematical special functions
The Cephes library provides many useful special functions and is used inside Scipy. The Deepmind folks wrapped Cephes for use in Torch ([site](http://deepmind.github.io/torch-cephes/), [code](https://github.com/deepmind/torch-cephes)). Is if feasible to wrap Cephes for similar use in PyTorch? **EDIT**: Request f...
feature,triaged,module: numpy
medium
Major
276,782,411
svelte
await once
Follow-up to #952 / https://github.com/sveltejs/svelte/issues/654#issuecomment-345490875. It would modify the behaviour of `await` blocks such that you'd only see the 'pending' state once — thereafter, whenever a new promise value was set, the old one would be preserved until the promise resolved. An additional argumen...
feature request,stale-bot,temp-stale
low
Critical
276,783,193
svelte
Async/streaming SSR renderer
Now that we have an `await` template primitive, it makes sense to have a streaming renderer: ```js require('svelte/ssr/register'); const app = express(); const SomeRoute = require('./components/SomeRoute.html'); app.get('/some-route', (req, res) => { SomeRoute.renderToStream({ foo: getPromiseSomehow(...
feature request
high
Critical
276,797,602
kubernetes
Kubernetes should configure the ambient capability set
> /kind bug **What happened**: The following takes place on a k8s 1.8.2 cluster. I have a Docker container image that wants to listen on :80, and specifies a non-root USER. To get this running, in my pod spec the container has the following security context: ```yaml securityContext: capabilities: ...
sig/node,kind/feature,lifecycle/frozen,sig/security
high
Critical
276,826,196
vscode
Git - Support git subtree
- VSCode Version: Code - Insiders 1.19.0-insider (89b158e11cb1c3fe94a3876222478ed2d0549fc8, 2017-11-24T05:14:03.606Z) - OS Version: Windows_NT x64 10.0.15063 - Extensions: Extension|Author (truncated)|Version ---|---|--- markdown-mermaid|bie|0.1.1 team|ms-|1.122.0 debugger-for-chrome|msj|3.5.0 --- S...
feature-request,git
high
Critical
276,829,365
neovim
VimL heredoc (<<HERE) for user commands
Currently if one wants to emulate `:python` with user commands he will be stuck at implementing `<< EOF`: there is no way for user commands to have multiline input, except for not adding `-bar` and using `:execute 'MyCmd' "multiline\nstring"`. On the other hand it is impossible to just add `command -herestring` and exp...
enhancement,vimscript
low
Critical
276,864,227
react
RFC: Drop isAttributeNameSafe() check
We currently validate DOM attributes on the client and ignore the ones with invalid names: https://github.com/facebook/react/blob/0c164bb4851e78e5f789dd8619f17ffcfee0221f/packages/react-dom/src/client/DOMPropertyOperations.js#L202-L204 This check used to be important for safety when we did `innerHTML` rendering o...
Type: Enhancement,Type: Breaking Change,React Core Team
low
Major
276,942,659
go
cmd/compile: implement powerpc 32-bit backend (ppc32)
Tracking bug for missing PowerPC 32-bit backend. People interested in this can put a 👍 reaction here so that we can track interest.
FeatureRequest,compiler/runtime
high
Critical
276,986,874
pytorch
Sparse matrices in dataloader error
I have noticed that using sparse matrices with a DataLoader works only if num_processes = 0. Example: ``` import torch from torch.utils.data import DataLoader print('torch version: ', torch.__version__) i = torch.LongTensor([[0, 1, 1], [2, 0, 2]]) v = torch.FloatTensor([3, 4, 5]) sparse_tensor = torch.s...
module: sparse,triaged
medium
Critical
277,026,283
vue
Issues with v-model.number
### Version 2.5.8 ### Reproduction link [https://jsfiddle.net/50wL7mdz/79189/](https://jsfiddle.net/50wL7mdz/79189/) ### Steps to reproduce Included in fiddle ### What is expected? Input type='number' should not clear values, accept stings formatted in different locales. v-model.number should not return s...
discussion
medium
Major
277,049,699
opencv
features2d wrapper without flann module
<!-- 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...
bug,category: python bindings,category: build/install,category: features2d,category: flann
low
Critical
277,066,843
rust
trait implementation hidden by where clause
In both cases in the code below, the trait implementation `impl Op<()> for Single` seems to be hidden by the clause `where Single: Op<T>`. Using universal function call syntax works as a workaround. ```rust trait Op<T> { fn op(&self, t: T); } struct Single; impl Op<()> for Single { fn op(&self, _t:...
A-trait-system,T-compiler,A-inference,C-bug,T-types
low
Critical
277,085,054
vue
shouldPrefetch enhancement
### What problem does this feature solve? Currently, I use `import(/* webpackChunkName: "lang-[request]" */ json!yaml!./myForm.lang.${currentLocale}.yaml)` to load the appropriate translation for my components. This generates `numberOfForms * numberOfLangages` chunks that are prefetched when the application start...
feature request
low
Minor
277,114,443
pytorch
Implement DE in pytorch.optim
Hi, I’d like to use PyTorch to run Evolutionary algorithms on GPU. I noticed that DE (differential evolution) is implemented in Torch (https://github.com/torch/optim/blob/master/de.lua), so I was thinking to implement DE in PyTorch. As DE is not (widely) used in Deep Learning I wanted to check with you if it is i...
module: optimizer,triaged,enhancement,needs research
low
Minor
277,135,891
flutter
Enable the Flutter tool to change app id after project creation
The app id can be set when a project is created using --org. It'd be great if the flutter tool could also update the app id after the project's been created, so that the Android and Xcode projects don't have to be manually edited.
c: new feature,tool,P3,team-tool,triaged-tool
low
Major
277,142,963
react-native
[iOS] TextInput clear button is not accessible
### Is this a bug report? Yes ### Have you read the [Contributing Guidelines](https://facebook.github.io/react-native/docs/contributing.html)? Yes ### Environment Environment: OS: macOS High Sierra 10.13.1 Node: 6.12.0 Yarn: 1.3.2 npm: 5.5.1 Watchman: 4.7.0 Xcode: Xcode 9.1 Build version 9B...
Component: TextInput,Accessibility,Accessibility Team - Evaluated
low
Critical
277,173,908
rust
API convention for blocking-, timeout-, and/or deadline-related functions
The standard library currently exposes several blocking- and/or timeout-related functions: Function \ Versions | Blocking | Timeout (ms) | Timeout --- | --- | --- | --- `std::sync::Condvar::wait*` | `wait` | `wait_timeout_ms` | `wait_timeout` `std::sync::mpsc::Receiver::recv*` | `recv` | none | `recv_timeout` `s...
C-enhancement,T-libs-api,B-unstable,A-time
medium
Major
277,175,370
react
Resetting a form containing a focused controlled number input puts it out of step with state
Here's a fixture demonstrating the issue (first test case): http://react-number-input-form-reset-bug.surge.sh/number-inputs If you have a controlled number input within a form containing a reset button, hitting Enter can trigger that reset event. This causes the focused input to be reset to the `defaultValue`, which...
Type: Bug,Component: DOM
medium
Critical
277,199,339
go
runtime: gdb tests fail on NetBSD
The netbsd-amd64-8branch (NetBSD 8.0+) builder is back and NetBSD is kinda working for the first time in ages. But only kinda. The runtime tests fail with a timeout about two thirds of the time. Examples: https://build.golang.org/log/9ff11d9a995eb3b2555ce8f88bb3280c91639386 https://build.golang.org/log/d9a...
help wanted,OS-NetBSD,NeedsInvestigation,compiler/runtime
low
Major
277,256,379
go
x/text: cgo changes broke golang.org/x/text/collate/tools/colcmp on Darwin
The golang.org/x/text/collate/tools/colcmp binary no longer compiles at Go tip. (It works at Go 1.9 and Go 1.8) https://build.golang.org/log/6a0073f83d8b33849ca6b8f57120b1161e849c32 ``` # golang.org/x/text/collate/tools/colcmp /var/folders/dx/k53rs1s93538b4x20g46cj_w0000gn/T/workdir/gopath/src/golang.org/x/text/c...
OS-Darwin,NeedsFix
low
Critical
277,281,907
neovim
tnoremap <Esc> <C-\><C-n>
Can we please make this default? Personally I believe it would add quite a bit to the popularity of :terminal if people knew that you can use normal mode in a terminal buffer.
enhancement,defaults,terminal
medium
Major
277,302,249
go
net: LookupHost shows different results between GODEBUG=netdns=cgo and go
### What version of Go are you using (`go version`)? go version go1.9.2 darwin/amd64 ### What did you do? ``` package main import ( "net" "fmt" ) func main() { fmt.Println(net.LookupHost("10.256")) fmt.Println(net.LookupHost("10.256.1")) fmt.Println(net.LookupHost("10.10.256")) fmt.Println(...
help wanted,NeedsFix
low
Critical
277,356,805
pytorch
[docs] Tensor.new is not documented
Docs master has in http://pytorch.org/docs/master/tensors.html: new(*args, **kwargs) Constructs a new tensor of the same data type. Missing documentation of arguments. From some other pages it can be figured out that `new` is preserving the storage and even the device number and can take a size argument. Would b...
module: docs,triaged
low
Major
277,385,432
rust
[docs] unclear how to create a Box<[T]> from a pointer and a length
I wanted to create a `Box<[T]>` from a pointer and a length and neither the docs of `slice` or `Box` were helpful. It wasn't hard (`Box::from_raw(slice::from_raw_parts_mut(ptr, len) as *mut [u8])`), but the experience could have been better.
C-enhancement,P-medium,T-libs-api,E-medium,A-docs
low
Minor
277,427,882
go
archive/tar: Header.FileInfo.Mode.IsRegular reports true for non-regular files
### Background ### A tar file is a format for archiving a filesystem and is able to represent anything including regular files, directories, block and character devices, symlinks, and hardlinks. Over the years, many incompatible extensions to tar have become common practice. Specifically, one them is the use of p...
NeedsDecision
low
Minor
277,510,074
TypeScript
Wrong overload selected on function when passed a callback annotated with a type with multiple optional properties
**TypeScript Version:** 2.7.0-dev.20171128 **Code** This issue was first noticed in code that uses LoDash with the typings from DefinitelyTyped. It seems to manifest only in a very specific set of circumstances. The following code sample is as minimal a reproduction as I could find. ```ts let _: LoDashStat...
Bug
low
Critical
277,510,169
go
cmd/cgo: provide some mechanism for treating certain C pointer types as uintptr
Please answer these questions before submitting your issue. Thanks! ### 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" ...
help wanted,NeedsInvestigation,FeatureRequest
medium
Critical
277,528,163
go
net/url: URL allows malformed query round trip
#### What did you do? ```go package main import ( "fmt" "log" "net/url" ) func main() { u, err := url.Parse("http://example.com/bad path/?bad query#bad fragment") if err != nil { log.Fatal(err) } fmt.Println(u.String()) } ``` https://play.golang.org/p/hdX1zpv3BN #### What did you exp...
NeedsDecision
medium
Critical
277,533,673
rust
`thread::Builder::spawn` returns WouldBlock for EAGAIN
When trying to launch a thread and the thread limit is reached or there is not enough virtual address space available for another thread, `thread::Builder::spawn` returns an `io::Error` of kind `WouldBlock`. ```rust extern crate libc; fn main() { unsafe { libc::setrlimit(libc::RLIMIT_NPROC, &libc::...
O-linux,P-low,T-libs-api,C-bug
low
Critical
277,564,321
kubernetes
start migrating controllers to use the new Event API group
Following #49112 The kubernetes/features#383 intends to migrate the different controllers towards the event API group described. This issue intends to track the PRs related to this migration. cc @gmarek
sig/scalability,area/controller-manager,lifecycle/frozen
low
Major
277,580,638
pytorch
Suppress hidden state output of RNNs?
Currently the forward method of RNN modules (LSTM, GRU, etc) return the output as well as the hidden states of all layers. When an RNN module contains many layers, the second output can take up a significant amount of memory, even though in many cases it is not needed. E.g. ``` lstm = nn.LSTM(40, 320, 5) y, _ = lstm...
module: memory usage,triaged,enhancement
low
Major
277,620,971
opencv
build warning: QuartzCore.framework/QuartzCore.tbd out of sync
``` [ 28%] Linking CXX shared library ../../lib/libopencv_videoio.dylib ld: warning: text-based stub file /System/Library/Frameworks//QuartzCore.framework/QuartzCore.tbd and library file /System/Library/Frameworks//QuartzCore.framework/QuartzCore are out of sync. Falling back to library file for linking. ``` Inst...
category: build/install,platform: ios/osx
low
Minor
277,659,827
rust
Program compiles even though a type cannot be inferred
The code below compiles, even though the type of the elements of the `Vec` is unknown. ```rust use std::mem; use std::os::raw::c_void; #[no_mangle] pub extern "C" fn alloc(size: usize) -> *mut c_void { let mut buf = Vec::with_capacity(size); let ptr = buf.as_mut_ptr(); mem::forget(buf); ret...
T-compiler,A-inference,C-bug
low
Major
277,707,779
go
x/text: Support UnicodeSet as per UTR35
Feature request: Support the [UnicodeSet](http://unicode.org/reports/tr35/#Unicode_Sets) syntax as defined in [Unicode Technical Report 35](http://unicode.org/reports/tr35/). This would be needed to implement [CLDR transliteration rules](http://unicode.org/repos/cldr/trunk/common/transforms/) which use UnicodeSets for ...
NeedsDecision
low
Minor
277,728,074
rust
Adding a specialized impl can break inference.
Relevant to #31844. This is how it happens: ```rust #![feature(specialization)] trait B { fn b(&self) -> Self; } // Impl 1 impl<T> B for Option<T> where T: Default { default fn b(&self) -> Option<T> { Some(T::default()) } } // Removing one of the two concrete impls makes inference succeed. // Impl 2 ...
T-compiler,A-inference,C-bug,F-specialization
low
Minor
277,864,373
rust
Poor error message for attempt to make doubly-fat pointers
Compiling the following code yields the given error: ```rust #![allow(unused_variables)] trait T1 { fn f(&self); } trait T2 { fn g(&self); } struct S; impl T1 for S { fn f(&self) { println!("<S as T1>::f"); } } impl T2 for T1 { fn g(&self) { println!("<T1 as T2>::g"); ...
C-enhancement,A-diagnostics,T-compiler
low
Critical
277,879,455
rust
cargo test incorrectly warns for dead code
Hi! I got unexpected dead code warnings when executing `cargo test` with multiple test files. I use a very simple example below that reproduces the issue. I have two files that contains tests, `tests/test_one.rs` and `tests/test_two.rs`. Both contains exactly the same content (except for the unique test function ...
C-enhancement,T-cargo
medium
Critical
277,892,640
go
go/types: TestStdFixed test results are cached across $GOROOT/test changes
"go test go/types -run TestStdFixed" results may be cached by cmd/go even after changing files in $GOROOT/test. I noticed this by changing "ignored" to "package ignored" in test/fixedbugs/issue22877.go (in CL 80759), and repeated runs of go test still output "(cached)" pass results. /cc @rsc @griesemer
NeedsInvestigation
low
Critical
277,899,032
TypeScript
Suggest specifying generic as union if candidates are different
<!-- 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,Needs Proposal,Domain: Error Messages
low
Critical
277,908,758
go
runtime: unsafe pointer maps
There are several places in the code where pointers are stored into slots that the pointer maps do not note as holding pointers. While the occurrences found so far appear benign with the current GC they do prevent adding diagnostics to the write barrier intended to detect errant writes. At the very least they shoul...
NeedsInvestigation,compiler/runtime
low
Minor
277,976,276
opencv
'Segmentation fault' with gpu video decoding
- OpenCV => 3.3.1-dev (github trunk: 29e4a4940dd81b22b26cbb51a2673d8c17f9f57d) - Operating System / Platform => CentOS 7.3 64Bit - Compiler => Default compiler on OS, gcc 4.8.5 20150623 (Red Hat 4.8.5-11) - Cuda => 9.0 - GPU => 1080 Ti I am trying 'samples/gpu/video_reader.cpp' to decode video using nvidia's gpu...
bug,priority: low,category: gpu/cuda (contrib)
low
Major
278,179,354
bitcoin
Bitcoin is returning higher fees for 36 block window than 2 block window (on testnet)
In testnet, right now, `estimatesmartfee` is returning *higher* estimates for 36 block window than 2 block window. The results: ``` estimatesmartfee 2 -> { "feerate": 0.01254483, "blocks": 2 } estimatesmartfee 36 -> { "feerate": 0.03863968, "blocks": 36 } estimaterawfee 2 -> { "short": {...
TX fees and policy
low
Critical
278,232,674
go
sync: TestWaitGroupMisuse2 takes 45-90 seconds on netbsd, AIX
TestWaitGroupMisuse2 on Linux with 8 cores takes 0.22s. On NetBSD it does pass but takes 45-90 seconds. Why? /cc @bsiegert
Testing,help wanted,OS-NetBSD,NeedsInvestigation,OS-AIX,compiler/runtime
low
Major
278,323,630
react
value|defaultValue={Symbol|Function} should be ignored, not stringified
Regression in master from https://github.com/facebook/react/pull/11534. Found it thanks to the attribute fixture snapshots.
Type: Bug,Difficulty: starter,Component: DOM,good first issue,React Core Team
high
Critical
278,375,010
go
net: a better builtin DNS stub resolver
This is a meta bug for tracking the status of the issues regarding builtin DNS stub resolver. - Refabrication - #16218 - Transport - #21160 - #23866 - #23873 - #27552 - Labels - #7122 - #9391 - #10631 - #10622 - #17659 - #22782 - #22826 - RRs - #27546 - Error handling - ...
NeedsFix,umbrella
low
Critical
278,473,347
go
x/net/publicsuffix: ICANN flag returns true for "za" domains not in the list
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.9.2 ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? goos: darwin goarch: amd64 ...
NeedsInvestigation
low
Critical
278,546,180
godot
Display a progress bar in the background of numerical properties in the Inspector and Project Settings
On the values of the Inspector and Project Settings, a progress bar in the background of numerical properties could be displayed. This would add some visual feedback (making visual grepping faster), as well as making adjustements by dragging the mouse more intuitive for users. The latter may require changing the draggi...
enhancement,topic:editor,usability
low
Major
278,582,769
go
cmd/go: add test -coverhtml
(maybe this shouldn't be a proposal, it seems trivial enough that we should just do it?) _Inspired by rakyll's suggestion in #16768._ I propose a small change to go test's "coverprofile" flag to output both the binary coverage format as well as HTML. The file extension passed in by the user would switch the outpu...
help wanted,Proposal,Proposal-Accepted,DevExp
low
Major
278,586,839
go
x/build: create mips32 soft-float builder
Commit 6be1c09 finished support for mips32 soft-float. We should have a builder configuration to test this.
Builders,NeedsFix,new-builder
low
Minor
278,601,567
go
encoding/json: bad encoding of field with MarshalJSON method
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? version 1.9 ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using (`go env`)? windows/amd64 ### What did y...
NeedsDecision,early-in-cycle
low
Critical
278,623,621
rust
Move more of rustc_llvm to upstream LLVM
In general we try to use the LLVM C API whenever we can as it's generally nice and stable. It also has the great benefit of being maintained by LLVM so it tends to never be a pain point when upgrading LLVM! Unfortunately though LLVM's C API isn't 100% comprehensive and we often need functionality above and beyond what ...
C-cleanup,A-LLVM,T-compiler,E-help-wanted,E-medium,C-tracking-issue,S-tracking-impl-incomplete
low
Critical