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
344,555,311
flutter
TextInputType.emailAddress should imply autoCorrect: false
## Steps to Reproduce Create a textfield like this: ```dart TextField( keyboardType: TextInputType.emailAddress ) ``` Run this on iOS. (I didn't check on Android yet.) You get something like this: ` _______ ` Start typing an email address beginning with a well-known name. ` jim_______ ` Type ...
a: text input,c: new feature,framework,a: fidelity,P2,team-framework,triaged-framework
low
Major
344,565,825
rust
Allow attr batching like #[attr1, attr2, attr3] and #[cfg_attr(cond, attr1, attr2, attr3)]
It would be useful / convenient if the compiler would allow batching attrs like `#[attr1, attr2, attr3]` and especially with `cfg_attr` like `#[cfg_attr(cond, attr1, attr2, attr3)]`, it would really reduce the verbosity of using `cfg_attr` (and normal attrs, too). E.g. it would allow writing: ```rust #[cfg_attr(fe...
A-attributes,T-lang,C-feature-request
low
Critical
344,583,183
godot
Changing energy of Light2D node with AnimationPlayer requires clickthrough of Node in editor to reset after playing project
Godot v3.05 Windows 10 When using AnimationPlayer to change Energy of Light2D node, failure to click the AnimationPlayer node in project (not change anything, simply clicking the node) in-between project plays seems to cause the Energy animation track not to function during the next project play, while all other an...
bug,topic:editor
low
Critical
344,588,486
vscode
[scss] Breadcrumbs in scss file not working for multi-line selectors
Issue Type: <b>Bug</b> Having `scss` file: ```scss .btn, .link { &.another-class { } &.classs { } } ``` ![breadcrums](https://user-images.githubusercontent.com/9638156/43224517-23828d16-905f-11e8-91d1-7199f4e2d199.gif) Expected path to change to `.btn &.another-class ` and `.btn &.cl...
bug,css-less-scss
low
Critical
344,607,201
flutter
GestureDetector should not cancel a tap until finger moves off of button
When a user taps on a button and then slides his/her finger around the button, if the finger moves more than the "slop" amount, the GestureDetector invokes onTapCancel. This behavior is not desired. The desired behavior is that as long as the user's finger remains on the button, the button should remain pressed. Onl...
c: new feature,framework,f: gestures,P3,team-framework,triaged-framework
low
Major
344,654,049
pytorch
TestSequenceOps.test_gather_padding failing
``` =================================== FAILURES =================================== _____________________ TestSequenceOps.test_gather_padding ______________________ self = <caffe2.python.operator_test.sequence_ops_test.TestSequenceOps testMethod=test_gather_padding> @given(start_pad_width=st.integers(min_v...
caffe2
low
Critical
344,654,277
pytorch
TestConvolution.test_conv_separate_stride_pad_gradients failing
``` 21:57:49 =================================== FAILURES =================================== 21:57:49 ___________ TestConvolution.test_conv_separate_stride_pad_gradients ____________ 21:57:49 21:57:49 self = <caffe2.python.operator_test.deform_conv_test.TestConvolution testMethod=test_conv_separate_stride_pad_gra...
caffe2
low
Critical
344,663,050
flutter
`newSlot` not documented in framework.dart updateChild
https://github.com/flutter/flutter/blob/1cc036519cb6af2bc1af8c9bc39468bc2fc8e05f/packages/flutter/lib/src/widgets/framework.dart#L2690 There's no reference to this parameter in the documentation, but it is used 44 times in the file.
framework,d: api docs,P2,found in release: 1.21,team-framework,triaged-framework
low
Minor
344,672,476
godot
Blurry Icon in Tab Switcher on Linux Mint 19
**Godot version:** 3.0.5 **OS/device including version:** Linux Mint 19 Also reported to happen in Elementary OS **Issue description:** Blurry Icon in tab switchers / dock Using Docky ![unknown](https://user-images.githubusercontent.com/3322994/43237945-f19bdae6-9040-11e8-83ce-f2946e055d73.png) Using Tab...
enhancement,platform:linuxbsd,topic:editor
low
Major
344,725,118
pytorch
How can I sure that I run caffe2 with GPU
I have installed CUDA and CUDNN, but today I run MNIST for a test, then it show me that " I0726 15:18:46.212692 6426 operator.cc:169] Engine CUDNN is not available for operator Conv. I0726 15:18:46.212774 6426 operator.cc:169] Engine CUDNN is not available for operator MaxPool. I0726 15:18:46.212832 6426 operator...
caffe2
low
Minor
344,731,871
rust
Allow to use a custom dsymutil command
`src/librustc_codegen_llvm/back/link.rs` does this: ``` match Command::new("dsymutil").arg(out_filename).output() { ``` `dsymutil` might not be in your `PATH`, or worse, have a different name (like, `llvm-dsymutil`)
A-linkage,O-macos,A-debuginfo,T-compiler,C-feature-request
low
Minor
344,790,785
nvm
Install of old Node.js versions aborts with "Could not autodetect OpenSSL support"
- Operating system and version: macOS High Serrira v10.13.6 - `nvm debug` output: <details> ```sh $ nvm debug nvm --version: v0.33.11 $TERM_PROGRAM: Apple_Terminal $SHELL: /bin/bash $SHLVL: 1 $HOME: /Users/medikoo $NVM_DIR: '$HOME/.nvm' $PATH: $HOME/anaconda3/bin:/Library/Frameworks/Python.framework...
installing node
low
Critical
344,793,696
pytorch
Pytorch is slow when only using CPU, and cannot utilize multicore of CPU
When I testing the acceleration effect on CPU by decomposing convolution layers, I found pytorch is slow and cannot utilize multicores of CPU. ``` # To blind GPU os.environ["CUDA_VISIBLE_DEVICES"] = ' ' # Generate input data t = np.random.randn(50,128,128,64).astype(np.float32) ``` ``` import torch impo...
module: performance,module: cpu,triaged,module: multithreading
medium
Major
344,816,824
pytorch
onnx to caffe2 err
## Issue description Provide a short description. from pytorch model to onnx, and from onnx to caffe2, err ocurr, help me please, thanks all. ## Code example from torch.autograd import Variable import torch.onnx import torchvision dummy_input = Variable(torch.randn(10, 3, 224, 224)).cuda() model = torchvis...
caffe2
low
Critical
344,835,471
vscode
"Quick Open" open all/multi-select files
Sometimes I need to open all files matching a certain criteria. For example: ![files matching dialog](https://user-images.githubusercontent.com/14938293/43263867-c7fbaef6-90e4-11e8-8633-64ea5c4b1524.png) At the moment I have to start "Quick Open" and then enter my search term and then go through each entry and hit...
feature-request,quick-open
low
Major
344,890,538
pytorch
cannot open caffe2.lib in VS2015 debug mode
Environment: Win10 64Bit, VS2015, Caffe2 CPU Only mode issue: I build caffe2.lib successfully in VS2015 debug mode, but link error happened when I build project caffe2_pybind11_state. link error message: LNK1104 can not open β€œ../lib/debug/caffe2.lib” file caffe2.lib exceed 2.6G, is that reason?
caffe2
low
Critical
344,921,601
go
regexp: investigate further performance improvements
Languages Regex Benchmark: Language | Email(ms) | URI(ms) | IP(ms) | Total(ms) --- | ---: | ---: | ---: | ---: **C PCRE2** | 25.00 | 25.02 | 5.65 | 55.66 **Rust** | 31.31 | 31.73 | 6.75 | 69.79 **PHP** | 54.39 | 50.22 | 5.80 | 110.40 **Javascript** | 74.88 | 63.09 | 2.02 | 140.00 **D ldc** | 146.01 | 140.03 | ...
Performance,NeedsInvestigation
high
Major
344,922,453
pytorch
Unintuitive reduction of mini-batch loss for NLLLoss
I find the reduction method that was chosen for the NLLLoss quite unintutive. <img width="712" alt="screen shot 2018-07-26 at 18 33 10" src="https://user-images.githubusercontent.com/14793026/43275573-774953a0-9102-11e8-8f84-8d8f7955cd9a.png"> This introduces a weird interdependence of the chosen class weights wi...
module: docs,module: nn,module: loss,triaged
low
Minor
344,929,494
pytorch
NetTest.OperatorWithExecutorHelper intermittently hangs
Sample log: ``` 06:36:16 [ RUN ] NetTest.OperatorWithExecutorHelper 06:36:16 I0726 06:36:16.360155 1596 net_dag_utils.cc:102] Operator graph pruning prior to chain compute took: 4.741e-06 secs 06:36:16 I0726 06:36:16.360244 1596 net_async_base.cc:435] Using specified CPU pool size: 4; NUMA node id: -1 06:...
caffe2
low
Critical
344,940,132
pytorch
[doc] functionalities not documented
- [ ] FeatureAlphaDropout - [ ] nn.init.zeros_, nn.init.ones_ - [ ] bilinear missing doc content - [x] DistributedDataParallelCPU - [ ] torch.as_strided - [ ] F.softplus - [ ] torch.default_generator
module: docs,good first issue,triaged
medium
Major
344,941,809
vue
Slots with only comments use fallback instead
### Version 2.5.16 ### Reproduction link [https://jsfiddle.net/sg0bkLhv/7/](https://jsfiddle.net/sg0bkLhv/7/) ### Steps to reproduce * Register a component with a slot * Use the component in a Vue instance with comments=true, filling the slot with only HTML comment(s) ### What is expected? The HTML commen...
improvement
low
Major
344,943,934
rust
The run-pass/simd-intrinsic-float-minmax.rs fails on mips* with glibc 2.27
This is a combination of several issues. First on Mips targets the LLVM expands @llvm.min/maxnum.v4f32 into per element fminf/fmaxf libcalls. Since glibc 2.25 [1] the semantics of these libm functions is changed and no longer follows the rules defined in LLVM lang ref [2]. Now these functions return QNAN if any of the ...
O-MIPS
low
Critical
344,950,031
rust
External statics compile incorrectly when there's no #[link(... above the extern block
External statics return stuff from incorrect memory locations when their `extern` blocks are not marked with `#[link(name = "their_lib_name")]` explicitly . #### Environment ``` rustc 1.29.0-nightly (6a1c0637c 2018-07-23)` binary: rustc commit-hash: 6a1c0637ce44aeea6c60527f4c0e7fb33f2bcd0d commit-date: 2018-07-...
T-compiler,O-windows-msvc,C-bug
low
Minor
344,957,043
pytorch
interaction with FindCUDA causes spurious re-cmakes
(see https://github.com/pytorch/pytorch/pull/9845 for a discarded potential solution) FindCUDA generates a C++ source file at CMake time. When building with ninja (haven't tested with make), a dependency is recorded of build.ninja on that generated file. After invoking cmake manually, that generated file is (for som...
module: build,triaged
low
Critical
344,957,195
flutter
Can't resolve symbol io.flutter.plugin dependency
## Edit from Flutter team: Please see https://github.com/flutter/flutter/issues/19830#issuecomment-1688736003. If following these steps still doesn't resolve the imports, please add a comment with your Android Studio version and the output of `flutter doctor -v` ## Original issue: I'm trying to build a flutter...
platform-android,tool,customer: crowd,P2,a: plugins,team-android,triaged-android
low
Critical
344,965,742
pytorch
[docs] Script for releasing new versions of the docs
I have a script but I need to clean it up a little. Leaving this issue here to remind myself. cc @jlin27 @mruberry
module: docs,triaged
low
Minor
344,968,969
go
runtime: signal handling panics for signals generated by sigqueue/tgkill
### What version of Go are you using (`go version`)? go version devel +30d7e6449f Mon Jul 23 15:16:01 2018 +0000 linux/amd64 ### Does this issue reproduce with the latest release? Yes (Go 1.10). This is reproducible at least to 1.6 and much earlier. ### What operating system and processor architecture are you u...
NeedsFix,compiler/runtime
low
Critical
344,980,049
pytorch
[Feature Request] Checkpoint manager
Would like to see a checkpoint manager taking a module, dataloader, and optimizer at construction that would be able to: - Save the module - Save the optimizer (including state) - Save the dataloader state (be able to continue from the middle of an epoch) - Save RNG states (CPU, GPU, including data sampler) - Call...
feature,triaged
low
Major
344,985,064
angular
Microsyntax is parsed differently depending on whether "let" is used
## I'm submitting a... <pre><code> [ ] Regression (a behavior that used to work and stopped working in a new release) [x] Bug report [ ] Performance issue [ ] Feature request [ ] Documentation issue or request [ ] Support request => Please do not submit support request here, instead see https://github.com/angula...
type: bug/fix,freq2: medium,area: core,hotlist: google,core: ng-template and *microsyntax,P3
low
Critical
345,034,730
pytorch
CRITICAL:root:Cannot load caffe2.python. Error: DLL load failed: A dynamic link library (DLL) initialization routine failed.
I just built Caffe2 using shared libraries option on Windows 10 and i'm getting the error in the title when I try to "import from caffe2.python import core". - I built everything from sources - I use only a single version of python on my PC, 2.7.14. - I've copied the pyd file to C:\Python27\DLLs - It works well ...
caffe2
low
Critical
345,042,733
pytorch
Stop ifdef'ing out scatter/gather (comm) in libtorch
@goldsborough @mruberry cc @yf225 @glaringlee @ngimel
module: cpp,module: cuda,triaged
low
Minor
345,054,797
flutter
SizeTransition hard codes cross axis alignment.
The SizeTransition should just take an AlignmentGeometry like everything else, not a double for the `axisAlignment`, which takes a bit of learning to understand. It hard codes right side alignment for the cross axis (the one that is not being clipped), and it shouldn't: it limits the use cases quite a lot.
framework,a: animation,a: quality,c: proposal,P2,team-framework,triaged-framework
low
Minor
345,078,270
flutter
Crash while trying to run "flutter packages get", give better error message when iOS project is missing
I was trying to rearrange the repo, and I moved some things around and probably have some invalid paths in my `pubspec.yaml`. In any case, it shouldn't crash, it should give a reasonable error message or recover. It says the `assets-for-api-docs/packages/diagram_capture/ios/Runner.xcodeproj` directory is missing (i...
c: crash,tool,P2,team-tool,triaged-tool
low
Critical
345,100,267
pytorch
A serious problem when installing caffe2. Can anyone help me?
[ 88%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/tanh_op_cudnn.cc.o In file included from /home/lgc/pytorch/caffe2/core/context_gpu.h:19:0, from /home/lgc/pytorch/caffe2/operators/activation_ops_cudnn.h:4, from /home/lgc/pytorch/caffe2/operators/tanh_op_cudnn.cc...
caffe2
low
Critical
345,181,827
opencv
Proposal: camera multiplexing API
# OpenCV camera multiplexing API ## Motivation Current `cv::VideoCapture` provide only blocking-style API for access cameras, call to `VideoCapture::read` or `VideoCapture::grab` will block calling thread until frame data is available. When working with multiple cameras this require to create dedicated thread f...
feature,category: videoio(camera)
low
Critical
345,187,017
rust
rustc --version segmentation fault
After installing rust with `$ curl -sSf https://static.rust-lang.org/rustup.sh | sh` (following info found at [https://github.com/rust-lang-nursery/rustup.rs/issues/695](https://github.com/rust-lang-nursery/rustup.rs/issues/695)), a segmentation fault occurs when running rustc. I tried the following code and receive...
I-crash,O-x86_64,T-compiler,C-bug,O-x86_32
low
Critical
345,199,053
go
x/crypto/ssh: client.NewSession can hang indefinitely
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? 1.9.3 ### Does this issue reproduce with the latest release? I'm not able to verify this. ### What operating system and processor architecture are you using (`go env`)? linux, amd64 ...
NeedsInvestigation
low
Critical
345,248,100
rust
thread::ThreadId Display missing
Currently the `thread::ThreadId` can only be debug rendered. That's not entirely great because it renders with the `ThreadId()` thing around. Right now to report the thread ID to sentry we transmute it so we can get the inner u64 out. Would it be reasonable to have a `Display` implementation to get a nice string ver...
T-libs-api,C-feature-request
low
Critical
345,249,539
vscode
Use smartCase for Find
Issue Type: <b>Feature Request</b> The `search.smartCase` setting is really useful. Thanks for implementing it. It would be great if it worked in the "Find" functionality too, so I can quickly perform a case sensitive search within the text in a file. VS Code version: Code 1.25.1 (1dfc5e557209371715f655691b123...
feature-request,editor-find
medium
Major
345,274,267
create-react-app
The eject survey doesn't indicate the meaning of the scale on the comfortable question
On the [eject survey](http://goo.gl/forms/Bi6CZjk1EqsdelXk1), one question asks to indicate your comfort level on a scale of 1 to 10. Though there was no definition for 1 or 10, so it could be misread. ![image](https://user-images.githubusercontent.com/3915000/43330519-6d49e6fa-9191-11e8-93dc-5e5856132f7d.png) I ...
issue: proposal
low
Minor
345,277,922
vscode
[folding] provide non-selection aware fold level command
- VSCode Version: ![vscode version](https://user-images.githubusercontent.com/33103832/43330619-09562f04-91c4-11e8-9ccf-f1e483b08fc8.png) - OS Version: Win 10 64 bit Steps to Reproduce: 1. Open a file which has different folding levels through indentation 2. Move the cursor to a specific level x 3. Run comma...
feature-request,editor-folding
low
Major
345,283,767
vscode
Problem matchers should support creating related diagnostic information
See #55120 for motivation.
feature-request,tasks
low
Major
345,284,803
youtube-dl
Can anybody try to download from here?
https://www.game-leap.com/courses/arc-warden-the-self-arrives-at-last/arc-warden-introduction Is it possible with youtube-dl?
site-support-request
low
Major
345,316,316
TypeScript
Allow ability to do an in-place override (_not_ extend) of interface properties
<!-- 🚨 STOP 🚨 𝗦𝗧𝗒𝗣 🚨 𝑺𝑻𝑢𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section. --> ## Search Terms <!-- List of keywords you searched for before creating this issu...
Suggestion,Awaiting More Feedback
low
Critical
345,317,321
flutter
Default color contrast for FloatingActionButton.extended too low
(This issue was found on the Demo page for the Material Search widget in the gallery) The contrast ratio between text and background of the FloatingActionButton.extended is to low with the default theme. It's 2.24 and should be at least 3.0 Current background color: `#13B9FD` Current foreground color: `#FFFFFF`
framework,f: material design,a: accessibility,P2,team-design,triaged-design
low
Minor
345,323,231
flutter
Outline Button outline stroke is too light
The material outline button has a stroke that is defined at 12% opacity of the provided color. Even in its best state, where the onSurfaceColor is black and the surfaceColor is white (which happens to be the default), the contrast ratio is only 1.31:1 [1]. [1] http://contrast-ratio.com/#hsla%280%2C0%25%2C0%25%2C.12%...
framework,f: material design,a: accessibility,P2,team-design,triaged-design
low
Minor
345,333,476
pytorch
WERROR=1 doesn't work with FULL_CAFFE2
It seems to toggle too many warnings for Caffe2 and then `-Werror` fails.
caffe2
low
Critical
345,350,094
pytorch
Stop passing inplace/out arguments as (non-const) Tensor& to functions
Currently, when you define an inplace function or a function that writes to an output function, you get a non-const reference. E.g., ``` Tensor& add_out(Tensor& result, const Tensor& self, const Tensor& other); ``` The use of a non-const reference here is highly misleading, and can lead newbies down the wrong p...
module: internals,module: cpp,triaged,enhancement
low
Critical
345,361,695
pytorch
[feature request] Add COCOB Optimizer
COntinuous COin Betting (COCOB) in stochastic subgradient descent based algorithm that does not requires any learning rate. Paper- https://arxiv.org/pdf/1705.07795.pdf cc @vincentqb
module: optimizer,triaged,function request
low
Minor
345,367,667
flutter
TimePicker uses disruptive announcements on Android
framework,f: material design,a: accessibility,f: date/time picker,a: quality,P2,team-design,triaged-design
low
Minor
345,372,352
material-ui
Can't test pages using Material UI with Capybara
<!--- Provide a general summary of the issue in the Title above --> It is literally impossible to test material ui using capybara+selenium-webdriver <!-- Checked checkbox should look like this: [x] --> - [x] This is a v1.x issue. <!-- (v0.x is no longer maintained) --> - [x] I have searched the [issues](https://g...
waiting for πŸ‘,package: material-ui
low
Critical
345,373,696
flutter
Select to Speak reads TabBar tabs inconsistently
Sometimes it only reads visible tabs, other times it reads offscreen tabs.
framework,f: material design,a: accessibility,P2,team-design,triaged-design
low
Minor
345,376,809
TypeScript
Show signature help when overriding/implementing method
**TypeScript Version:** 3.1.0-dev.20180727 **Code** ```ts class A { m(n: number): void {} } class B extends A { m(/**/) } ``` **Expected behavior:** Get signature help for `m(n: number): void`. Extension of #26022. **Actual behavior:** No signature help.
Suggestion,Domain: Signature Help,Experience Enhancement
low
Minor
345,399,751
go
x/build: add a builder with oldest git supported by cmd/go to catch regressions
### What did you expect to see? The bug fix for breaking go on Ubuntu 16 would have a test or ci change to prevent a similar error in the future. ### What did you see instead? A code change with no test change. ### Context https://github.com/golang/go/issues/26501#issuecomment-407431340
Testing,Builders,NeedsFix,modules,new-builder
low
Critical
345,400,450
rust
`#[macro_use]` on `use` broken with gfx-rs
With rust 2015 we can do this: ```rust #[macro_use] extern crate gfx; gfx_defines! { vertex Vertex { pos: [f32; 2] = "a_Pos", } pipeline rect_pipe { vertices: gfx::VertexBuffer<Vertex> = (), } } fn main() {} ``` But it's 2018 so we should deal with this warning: ``` wa...
A-lints,S-needs-repro,A-edition-2018
low
Critical
345,436,704
rust
Special-case `format!("{}", string_like)` for increased performance
Changes like #52767 and existence of the [useless_format](https://rust-lang-nursery.github.io/rust-clippy/v0.0.212/index.html#useless_format) clippy lint show that people end up writing `format!("{}", a_string)` way more often than they should (i.e., >0 times). Since `format` is a proc macro/builtin in the compiler,...
I-slow,C-enhancement,T-libs-api
low
Major
345,448,483
flutter
Return index of the first visible item in ListView
In the current implementation of ListView, there is no easy way to find which item is the first one in a visible part of the screen. There could be many use cases if we know the index of the first visible item. For instance, playing audio of the first visible item, etc. Could you please add this feature to the List...
c: new feature,framework,f: scrolling,customer: crowd,P3,team-framework,triaged-framework
high
Critical
345,453,261
pytorch
python caffe2/python/operator_test/activation_ops_test.py Segmentation fault (core dumped)
/Downloads$ python /home/jasonma/caffe2/pytorch/build/caffe2/python/operator_test/activation_ops_test.py WARNING:root:This caffe2 python run does not have GPU support. Will run in CPU only mode. WARNING:root:Debug message: No module named caffe2_pybind11_state_hip python: Relink `/usr/lib/x86_64-linux-gnu/libnspr4....
caffe2
low
Critical
345,470,008
rust
Investigate the RyΕ« algorithm for a simpler/faster implementation of float -> string conversion
There's a new paper making the rounds on the topic of converting floats to their decimal string representations that claims to be both simpler and faster than prior algorithms: https://pldi18.sigplan.org/event/pldi-2018-papers-ry-fast-float-to-string-conversion . I'm particularly interested in the simplicity aspect, si...
I-slow,T-libs-api
medium
Major
345,484,177
puppeteer
Request event doesn't include websocket requests
<!-- STEP 1: Are you in the right place? - For general technical questions or "how to" guidance, please search StackOverflow for questions tagged "puppeteer" or create a new post. https://stackoverflow.com/questions/tagged/puppeteer - For issues or feature requests related to the DevTools Protocol (https://ch...
feature,chromium,confirmed
medium
Critical
345,497,745
pytorch
[feature request] Add matrix functions
Add matrix power as implemented by [numpy.linalg.matrix_power](https://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.matrix_power.html), matrix exponential as implemented by [scipy.linalg.expm](https://docs.scipy.org/doc/scipy-0.15.1/reference/generated/scipy.linalg.expm.html), and matrix logarithm as imple...
triaged,module: numpy,module: linear algebra,function request
high
Critical
345,523,782
godot
Godot slow to open, slow to edit, slow to launch simple game [Windows, caused by specific USB peripherals]
*Bugsquad edit:* This bug has been well confirmed as something that's caused by specific USB peripherals and their drivers, apparently triggering an elusive DirectInput bug on Windows which is only reproducible in specific combinations of hardware (both host and peripheral) and drivers. This seems to trigger particu...
bug,platform:windows,topic:porting,confirmed,topic:thirdparty,high priority,performance
high
Critical
345,533,662
electron
Add app event: `before-browser-window-created`
It would be great to have a `before-browser-window-created` event that developers can use to create reusable modules that can globally intercept and modify `BrowserWindow` options before window creation. It is already possible to do this for `BrowserWindow`s passed through the [`webContents 'new-window'`](https://el...
enhancement :sparkles:
low
Minor
345,538,351
go
crypto/cipher: It should support another interface for CTR mode
### What did you do? I want to write code that can efficiently encrypt or decrypt a portion of large files using random access I/O. **Theoretically in CTR mode it is possible to encrypt/decrypt arbitrary block independently.** But with the lack of alternative interface to Stream interface, there is no way to take ...
NeedsInvestigation
low
Minor
345,542,090
godot
RigidBody2D won't detect collision sometimes when colliding with 2 StaticBody2D
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** master @ cfcb6e11f25adb13177ba08777263288a5ec6f61 (just before typed gdscript merge) **OS/device including version:** Windows 10 Home Version 1803 B...
bug,confirmed,topic:physics
low
Critical
345,563,994
three.js
Scene: Respect original material settings in .overrideMaterial
When setting the override material for a scene the maps and other settings on the original material are not used -- this applies to animations, mesh instances, and other uniforms and defines, as well. This jsfiddle shows that the normal map is not applied when rendering the scene with a `MeshNormalMaterial` applied: ...
Enhancement
low
Major
345,565,747
javascript-algorithms
My concern about no classification by Procedural/Imperative and Functional programming Paradigm
Hi, this is a great project. Thanks. I have a concern that I would like to share. For instance, looking at `/algorithms/math/factorial` which is one of the most basic math topic: https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/factorial I found 2 implementations: ### factor...
enhancement
low
Major
345,567,518
flutter
DataTable only communicates selection/deselection visually
Ideally checkbox state would be communicated. We could also use a live region on the header to update the selected count without being too chatty.
framework,f: material design,a: accessibility,P2,team-design,triaged-design
low
Minor
345,570,287
go
cmd/compile, runtime: pack info into low bits of interface type pointers
We've generally avoided doing any bit packing, so I don't anticipate this happening, but wanted to record the idea for reference and in case it generates interesting discussion. We could pack some information into the bottom bits of interface type pointers. As long as `sizeof(reflect.type) % 16 == 0`, it'll point wi...
Performance,NeedsDecision,compiler/runtime
low
Minor
345,573,541
node
doc: explanation about flagged feature etiquette needed
There is a lot of misunderstanding in the ecosystem about how harmony* and experimental flags should be used, most alarmingly in the case of libraries that ship support for features that are flagged. We need to document: - Why flags are how we (and V8*) ship experimental features - Why you should only use flagged ...
help wanted,doc
low
Major
345,577,881
rust
#[repr(align(…))] should allow arbitrary constant expressions, not just integer literals
For example: ```rust const ALIGN_OF_FOO: usize = 32; #[repr(align(ALIGN_OF_FOO))] struct Foo; ``` Currently this produces an error: ``` error[E0552]: unrecognized representation hint --> src/main.rs:2:8 | 2 | #[repr(align(ALIGN_OF_FOO))] | ^^^^^^^^^^^^^^^^^^^ ``` A potential use case is ...
T-compiler,C-feature-request,A-repr
low
Critical
345,579,258
go
x/net/http2/h2c: support closure of all connections and graceful shutdown
Very happy to see h2c supported: https://github.com/golang/net/commit/c4299a1a0d8524c11563db160fbf9bddbceadb21 However, there is no way to enable graceful shutdown, or even close all h2c connections. We should support this. You could use `http2.ConfigureServer` to configure a http2 server's graceful shutdown to b...
NeedsInvestigation,FeatureRequest
low
Major
345,580,111
flutter
Flutter sending message from native to the dart side : Dart side listen to native events
I am building an audio app in Flutter, I am already able to show remote player controls on iOS lock screen and the events are being received already. The only problem is those events are being received only in the native side : How can the native side pass a message to the Dart side **without the Dart code calli...
engine,d: api docs,P2,a: plugins,team-engine,triaged-engine
low
Major
345,590,372
rust
Rust fails to infer types for this function
[Playground](http://play.rust-lang.org/?gist=00c5e5c8d5c34d22b34ba0d9442053f4&version=stable&mode=debug&edition=2015) [Playground that works](http://play.rust-lang.org/?gist=c73ea26df08348ed121281339f57c25b&version=stable&mode=debug&edition=2015) As far I know, this should be a bug. There is only one impl of `Fro...
T-compiler,A-inference,C-bug
low
Critical
345,633,672
TypeScript
Tuple iteration and merging
**Edit:** Remove indexing part **Edit 2:** Replace tuple mapping syntax with [normal mapped types](https://github.com/Microsoft/TypeScript/pull/26063) ## Search Terms <!-- List of keywords you searched for before creating this issue. Write them down here so that others can find this suggestion more easily --> ...
Suggestion,In Discussion
medium
Critical
345,669,239
flutter
Dynamic Forms
How does flutter implement dynamic form ???
a: text input,c: new feature,framework,P3,team-framework,triaged-framework
low
Major
345,702,500
TypeScript
Preserve executable file permission when generating from executable .ts file
As many libraries ship executable files to help with testing or administration it is convenient to be able to keep the executable permission on UNIX like systems while generating .js files from .ts files. The creator of the library can provide a build script or manually keep the proper permissions in distributed gene...
Suggestion,Help Wanted
medium
Major
345,704,717
rust
rustc infinite loop on recursive type (FingerTree, indirectly polymorphic/nonregular)
Spawned off of #4363, specifically the [example provided by @goffrie](https://github.com/rust-lang/rust/issues/4363#issuecomment-73419917) This example code causes rustc to infinite loop ([playground](https://play.rust-lang.org/?gist=1addfdb2297fd4c93804a07eada62865&version=nightly&mode=release&edition=2015)): ``...
P-medium,T-compiler,I-hang
low
Minor
345,738,590
angular
bug(animations) nested animations don't work properly when switching between states
## 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 release) [x] Bug report <!-- Please search GitHub for a similar issue or PR before submitting --> [ ] Performance issue [ ] Feature request [ ] Docume...
type: bug/fix,area: animations,freq2: medium,P3
low
Critical
345,772,650
vue
Typescript - Component's property types are not correct
### Version Vuejs: 2.5.16 Typescript: 2.8.1 ### Reproduction link [https://stackblitz.com/edit/typescript-rrnw8z?file=index.ts](https://stackblitz.com/edit/typescript-rrnw8z?file=index.ts) ### Steps to reproduce - Use typescript - Create a component with at least one property ### What is expected? If you...
typescript
low
Critical
345,788,274
pytorch
RNN gradients in eval mode in pytorch 0.4
I need to be able to compute the gradients of an RNN with dropout temporarily turned off. In earlier versions if pytorch, it was possible to do this just by setting model.eval() and calling loss.backward(), but in pytorch 0.4 I get this error message: ``` Traceback (most recent call last): File "dynamiceval.py",...
module: nn,module: rnn,triaged
medium
Critical
345,812,045
pytorch
Upgrade Caffe2 Hypothesis
Currently, we are pegged on Hypothesis 3.59.0 as per https://github.com/pytorch/pytorch/pull/9830 This is bad, we should endeavor to take updates of the versions of our dependencies on a timely basis. Unfortunately, the new version of Hypothesis has some behavior changes which cause previously stable tests to sta...
caffe2
low
Minor
345,858,259
flutter
Improved Image Widget
The current Image implementations has a series of disadvantages that should be improved: - Image.network if the URL isn't available there is no chance to react on that. We should offer an errorBuilder that fills the image space if an loading error occurs or at least offer an error place holder Image that will be dis...
c: new feature,framework,a: images,P3,team-framework,triaged-framework
low
Critical
345,873,960
flutter
Code samples for how to use tabBar with flexibleSpace in an AppBar
The AppBar documentation doesn't show how to get these fields to interact well: FlexibleSpace shows 'behind' the TabBar, so it can make more sense to put the TabBar into the FlexibleSpace. We should add a code sample to the AppBar documentation that illustrates how to do this.
team,framework,f: material design,d: api docs,d: examples,P2,team-design,triaged-design
low
Minor
345,908,327
rust
Variadic C function calls don't decay references to pointers as other function types do
It seems like calling a variadic C function doesn't hold the exact same rules for reference to pointer conversions as does calling a regular function: ```rust fn bar(_a: *mut i32, _b: *mut i32) {} extern "C" fn bar2(_a: *mut i32, _b: *mut i32) {} extern crate libc; // 0.2.42 extern "C" { #[no_mangle] ...
A-FFI,T-lang,C-bug
low
Critical
345,947,227
go
cmd/gofmt: unfinished else statement followed by if statement should maybe have indentation
### What version of Go are you using (`go version`)? ``` go version go1.10.2 darwin/amd64 ``` ### Does this issue reproduce with the latest release? Yep ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="" GOCACHE="/Users/matt/Library/Caches/go-b...
NeedsInvestigation
low
Critical
345,954,821
go
net/http: PUT: DefaultClient significantly slower than DefaultTransport when network is slow
**What version of Go are you using (go version)?** go version go1.10.3 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/test/go/bin" GOCACHE="/Users/test/Library/Caches/go-build" ...
Performance,NeedsInvestigation
low
Critical
345,958,335
godot
Unable to Force Update 2D UI Controls before Next Frame
**Godot version:** 3.0.5 **OS/device including version:** All **Issue description:** Other game engines have a way to force components to update after new data is set. Godot seems unable to do this. For example: setting text in a wordwrapped Label and finding the new vertical size, adding children to VBo...
enhancement,topic:gui
high
Critical
345,996,320
pytorch
Sparse tensor use cases
We are working on to increase supports for sparse tensor. Currently we have [summarized current state of sparse tensor](https://github.com/pytorch/pytorch/issues/9674) and listed out [sparse ops to support](https://github.com/pytorch/pytorch/issues/8853). We would like to collect sparse tensor use cases to facilitate t...
module: sparse,feature,triaged
high
Critical
346,010,511
TypeScript
type.isLiteral() returns false for boolean literals
**TypeScript Version:** 3.1.0-dev.20180728 (new in 3.0.1) **Search Terms:** isLiteral() **Code** 1. Create a boolean literal in the compiler api. 2. Call `isLiteral()` on it. Change seems to be done here: https://github.com/Microsoft/TypeScript/commit/e46d214fceb72cc76145779543bf871ce9ff66b0#diff-233e11...
Bug,Help Wanted,API
low
Critical
346,029,871
opencv
timestamp = cap.get(CV_CAP_PROP_POS_MSEC) always returns the same timestamp.
OpenCV 3.40 Centos 7 GCC compiler I am trying to fetch the video timestamp but it is always giving me 40 and does not change as i move in frames. Is this a bug ? ``` width = cap.get(CV_CAP_PROP_FRAME_WIDTH);//1280 height = cap.get(CV_CAP_PROP_FRAME_HEIGHT);//720 ...
category: videoio,incomplete,needs reproducer,needs investigation
low
Critical
346,055,330
TypeScript
comments before imports are stripped in AMD output unless there's a blank line after them
**TypeScript Version:** 3.0.1 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** preserve comments removes comments **Code** Compile the following with `--module amd` ```ts // foo import 'foo'; console.log('hi'); ``` **Expected behavior...
Bug,Domain: Comment Emit
low
Major
346,058,359
kubernetes
Eviction should be able to request eviction asynchronously
**Is this a BUG REPORT or FEATURE REQUEST?**: /kind feature **What happened**: `kubectl drain` got stuck because we had PodDisruptionBudget (PDB) with `spec.minAvailable: 1` and the deployment only had one replica -> allowed disruptions was always 0. **What you expected to happen**: Instead of `kubectl drain` ...
priority/backlog,sig/node,kind/feature,sig/apps,lifecycle/frozen
high
Critical
346,069,201
rust
Should std::{f32,f64}::NAN be a QNAN or SNAN ?
Right now, whether they are a QNAN or an SNAN depends on the architecture. Currently, they are an SNAN on MIPS (EDIT: r5 and older) at least, and a QNAN on most others. It probably makes sense to offer consistent behavior here independently of whether LLVM preservers payloads, signaling/quietness, etc. cc @rkrupp...
T-libs-api,A-docs,A-floating-point
medium
Major
346,106,071
vscode
Disable undo menu item when there is no more history available
From #55389 **Feature request** Disable the undo menu item if there is no undo history available. (same for redo if there is no more forward history)
feature-request,menus,undo-redo
low
Major
346,134,324
go
cmd/gofmt: Remove redundant parenthesis in foo = (1 << 42)
go version go1.10.3 linux/amd64 Reviewing CLs showed lists of const bit-masks that were foo = 1 << 42, etc., all had redundant parenthesis around the (1 << 42). The author said they were copying similar ones in existing source. gofmt doesn't remove them. It does remove the outer pair of double ones, i.e. ((1 << 3...
NeedsInvestigation,FeatureRequest
low
Major
346,168,601
flutter
URL_Launcher OnDismiss Callback or Listener
There currently isn't a way to tell when the SFSafariViewController is dismissed. It seems necessary when certain actions need to be carried out afterwards.
c: new feature,p: url_launcher,package,c: proposal,team-ecosystem,P3,triaged-ecosystem
low
Minor
346,188,765
pytorch
UnicodeDecodeError while loading caffe2 model
If you have a question or would like help and support, please ask at our [forums](https://discuss.pytorch.org/). If you are submitting a feature request, please preface the title with [feature request]. If you are submitting a bug report, please fill in the following details. ## Issue description Provide a s...
caffe2
low
Critical
346,252,713
rust
rust-lld errors with duplicate symbol: __rustc_debug_gdb_scripts_section__ for embeded target.
Hi, I'm using `cargo xbuild` to compile & link my code to a embedded target. @phil-opp the maintainer of cargo xbuild believes that this is a rust-ldd [issue](https://github.com/japaric/xargo/issues/218) beginning with the second comment. In short beginning with at least nightly-2018-03-06 I started getting linki...
A-linkage,T-compiler,C-bug,WG-embedded
low
Critical
346,256,370
go
cmd/doc: add example support
To go along with #25443, #25595, and #18807, it would be nice to get support for `godoc`'s `-ex` flag in `go doc`.
Proposal-Accepted,NeedsFix,FeatureRequest
medium
Major