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
318,939,946
angular
Service Worker: Hash Mismatch
I'd like to use this to start a discussion based upon a topic I talked about with @gkalpak at ng-conf 2018. As mentioned in #21288, the service worker implementation checkes the hashes of the cached files and if they don't match, it just serves the data from the network (which is like having no service worker). T...
feature,area: service-worker,feature: under consideration
high
Critical
318,942,212
flutter
provide terse, actionable, flutter doctor output
As a follow-up to https://github.com/flutter/flutter/pull/14173#issuecomment-384990179, I think we should: - unify the `flutter doctor` and `flutter doctor -v` output, and - remove the `-v` option We see issues coming in w/o the `-v` text, and it would be good to have the default output of the tool be the one that...
tool,t: flutter doctor,P2,team-tool,triaged-tool
low
Major
318,972,537
go
cmd/go: support ldflags -X with gccgo
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? 1.10 ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using (`go env`)? GOARCH="amd64" GOBIN="" GOEXE="" GOHOST...
NeedsFix
low
Critical
318,975,055
rust
Higher-ranked trait bounds on associated types are not elaborated
This code works: ```rust trait Boring {} trait Usage where Self::Thing: Boring, { type Thing; } fn value_example<T: Usage>(t: T::Thing) { use_the_trait(t); } fn use_the_trait<T: Boring>(_: T) {} fn main() {} ``` While this code fails: ```rust trait Boring {} trait Usage wh...
C-enhancement,A-trait-system,A-associated-items,T-types,A-higher-ranked
low
Critical
318,990,130
go
spec: document cycle restrictions for alias type declarations
Per the original type-alias design doc from @rsc, it must be possible to "expand out" type alias declarations; this wouldn't be possible for `type T = *T` without expanding endlessly. The spec doesn't say anything in this regard; and is generally vague or silent on the subject of cycles.
Documentation,NeedsFix
low
Major
319,023,868
flutter
A cold-start "flutter test" takes multiple seconds
Running "flutter test" used to be pretty fast (a few hundred milliseconds until the test runs — not great, but workable). Now though it takes entire seconds to start up the test. This makes iterating on a test an unbearably slow process. cc @mraleph @aam @a-siva @tvolkert
a: tests,tool,dependency: dart,P2,team-tool,triaged-tool
low
Major
319,026,196
go
cmd/compile: elide useless type assertion
Consider the following: ```go type CustomUnmarshaler interface { CustomUnmarshal([]byte) error } type MyMessage struct{} func (m *MyMessage) Unmarshal(b []byte) error { if u, ok := (interface{})(m).(CustomUnmarshaler); ok { return u.CustomUnmarshal(b) } return nil } ``` In this situation, the c...
Performance,compiler/runtime
low
Critical
319,043,089
TypeScript
In JS, export assignments should bind as types, not just values
Currently, there is special code in the checker to look up values as type in order to support the value-only way that the binder exports things that come from an export assignment, even things that in Typescript export types, such as classes. The binder should instead treat JS export assignments as types if the init...
Bug,checkJs,Domain: JavaScript
low
Minor
319,047,561
flutter
Android things: All shared object libraries(*.so) in the APK should be uncompressed
i am using flutter with Android things on a rpi3. everything works and i am testing a basic hello world. when i upload to the android things console to embed my app i get: "All shared object libraries(*.so) in the APK should be uncompressed" Any tips ?
platform-android,tool,P2,team-android,triaged-android
low
Major
319,104,562
pytorch
how can i use openMP for caffe2? why caffe2 not work in multi-threads mode?
i had compile caffe2 with set openMP ON and use openblas, it compile correctly . but problem is how to use it? 1) i set openBLAS_NUM_THREADS=1 and OMP_NUM_THREADS=4 then run command: python convnet_benchmarks.py --batch_size=16 iteration 1 --cpu --mode AlexNet i can see only one core is run, and the result is Mi...
caffe2
low
Minor
319,152,475
go
cmd/compile: BCE/Prove do not take arithmetic into account
This is follow-up to https://github.com/golang/go/issues/19714 where prove/BCE were taught to take transitivity into account, but originally-motivating example where indices are constructed as arithmetic expressions remains with bounds checks not eliminated: ```go package hex func Encode(dst, src []byte) { ...
NeedsInvestigation,compiler/runtime
low
Major
319,160,418
flutter
Example application in Flutter Plugin project does not include Gradle sub-projects
## Steps to Reproduce 1. Create a new Flutter Plugin project. 2. Add a new Gradle project under the `android/` folder called `foo`. 3. Add some Java code to `foo`. 3. Make the `android/` project depend on the `foo` sub-project (add a dependency like `implementation project(':foo')`). 4. Use Java code from `foo` ...
tool,t: gradle,P2,team-tool,triaged-tool
low
Critical
319,168,769
go
net/http/httptrace: internal nettrace leaks into other net.Dial calls
### What version of Go are you using (`go version`)? go version go1.10.2 linux/amd64 ### Does this issue reproduce with the latest release? Yep ### What did you do? Run the following program ``` package main import ( "context" "fmt" "net" "net/http" "net/http/httptrace" ) func main() { dia...
NeedsInvestigation
low
Critical
319,203,302
electron
Make single instance the default
Running multiple instances of Electron is generally a bad idea and [not really supported](https://github.com/electron/electron/issues/4727) with the default configuration. Some renderer features don't work in this scenario ([localStorage](https://github.com/electron/electron/issues/2493), [IndexedDb](https://github.com...
enhancement :sparkles:,discussion,semver/major
low
Major
319,207,816
pytorch
[Caffe2 warpctc] How to use the offered warpctc?
caffe2 offers warpctc in caffe2/contrib/warpctc. But how can I use it as a caffe2 op? When I run `ctc_ops_test.py`, the error happens, `Ignoring @/caffe2/caffe2/contrib/warpctc:ctc_ops as it is not a valid file.`. Is there anyone can help me? Thanks!
caffe2
low
Critical
319,265,734
kubernetes
kubelet: CRI: return structured errors from CRI calls
Currently, the CRI does not return any structured errors such that the kubelet code can, for example, distinguish between a "Runtime not available" error or a "Container not found" error. See https://github.com/kubernetes/kubernetes/pull/63334 for an example. The kubelet has many paths where a "Container not foun...
area/kubelet,sig/node,kind/feature,lifecycle/frozen
medium
Critical
319,268,323
rust
Confusing error when forgetting to include system crates in Cargo.toml
Using a crate like `rand` without adding it to dependencies produces a long message: `error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via 'Cargo.toml' instead? (see issue #27812)` etc. ...
C-enhancement,A-diagnostics,T-compiler
low
Critical
319,296,790
flutter
Attach widget creation source in build/paint profile timeline events
Would be nice in places like https://github.com/flutter/flutter/blob/master/packages/flutter/lib/src/widgets/framework.dart#L3627 and https://github.com/flutter/flutter/blob/master/packages/flutter/lib/src/rendering/object.dart#L122 to also point out where the widget was created. cc @jacob314 I think we chatted abo...
framework,a: debugging,c: proposal,P2,team-framework,triaged-framework
low
Minor
319,303,754
puppeteer
extensions: Ability to click browser action buttons
We are relying on puppeteer to automate testing of our extension. I can automate most things except I cannot click the button that our extension adds to the browser's toolbar. Could there be an API to interact with browser action buttons? Something to the tune of ```js let actionButtons = await browser.actionBu...
feature,upstream,chromium
high
Critical
319,413,801
neovim
option 'splitvertical' to split vertically by default
There's an old patch for Vim that adds an option, 'splitvertical' which opens splits vertically rather than horizontally by default: [vim-mq-patches/vertsplit](https://github.com/chrisbra/vim-mq-patches/blob/master/verstplit) It's a nice option to have since most monitors are wider than tall. Could this be added as ...
enhancement,has:vim-patch,has:workaround,has:plan
low
Major
319,477,718
go
x/crypto/ssh: test cipher implementations against known good input/output data
If I apply the following patch to the cipher.go file the tests still pass. It would be nice to catch this kind of error so we can refactor this code and have some confidence we haven't broken it. ```diff diff --git a/ssh/cipher.go b/ssh/cipher.go index 67b0126..d99ffc7 100644 --- a/ssh/cipher.go +++ b/ssh/cipher...
Testing,help wanted
low
Critical
319,519,214
go
runtime: can not read stacktrace from a core file
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? This problem was introduced by b1d1ec9 (CL 110065) and is still present at tip. ### Does this issue reproduce with the latest release? No. ### What operating system and processor arc...
NeedsInvestigation,Debugging,compiler/runtime
medium
Critical
319,526,165
TypeScript
CFA failure with fallthrough clauses in switch statements
**TypeScript Version:** master <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** **Code** ```ts declare const o: { c?: 1; }; switch (0) { case 0: break; case o.c && o.c.valueOf(): case o.c && o.c.valueOf(): break; } ``` ...
Bug
low
Critical
319,588,548
pytorch
[caffe2]when i do CMAKE
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 when i cmake ...
caffe2
low
Critical
319,646,555
pytorch
[Caffe2 Bug] Windows timer is not accurate
## Issue description Caffe2 fails the timer related test on Windows: * parallel_net_test.exe - This one always fail. * timer_test.exe - Not always but...good luck... ``` PS <...erase for privacy...>\pytorch\build> .\bin\RelWithDebInfo\parallel_net_test.exe Running main() from gtest_main.cc [==========] Runni...
caffe2
low
Critical
319,663,585
youtube-dl
[ESPN] ESPN+ "Unable to open key file" and "ffmpeg exited with code 1"
## 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,account-needed
high
Critical
319,667,869
flutter
Hot reload fails with error: Unexpected tag 74 (ReturnStatement)
## Steps to Reproduce I'm running `/Users/scheglov/Source/flutter/bin/flutter --no-color, run, --machine, --track-widget-creation, --device-id=flutter-tester, /Users/scheglov/dart/flutter-projects/test_sink/.dart_tool/render_server.dart` and hot reload fails with the error below when I change `render_server.dart` ...
tool,dependency: dart,t: hot reload,P2,team-tool,triaged-tool
low
Critical
319,676,961
bitcoin
RPC wont bind without an IP address on a non-localhost interface
If the only interface which has an IP address and is up is lo, one of the two default rpcbinds (:: and 0.0.0.0) will fail with "libevent: getaddrinfo: address family for nodename not supported".
RPC/REST/ZMQ
low
Major
319,691,404
youtube-dl
Error Unable to extract Video [Openload]
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2018.05.01*. 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**...
cant-reproduce
low
Critical
319,717,215
go
proposal: crypto/tls: implement Session IDs resumption
### What version of Go are you using (`go version`)? go version go1.10 linux/amd64 ### Does this issue reproduce with the latest release? Yes ### What did you do? Crypto/tls today only implements session ticket resumption described in RFC 5077. Per https://en.wikipedia.org/wiki/Comparison_of_TLS_implementati...
Proposal,Proposal-Hold,Proposal-Crypto
medium
Major
319,729,777
angular
ExpressionChangedAfterItHasBeenCheckedError with dynamic validators in a template driven composite form control
<!-- 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>[x] Bug report </code></pre> ## Current behavior If ...
type: bug/fix,freq2: medium,area: forms,state: confirmed,P4
high
Critical
319,765,015
TypeScript
Suggestion: Allow interface to extend conditional type
An interface cannot currently extend a conditional type. See: ([playground link](https://www.typescriptlang.org/play/index.html#src=type%20Test%3CT%3E%20%3D%20T%20extends%20%7B%7D%20%3F%20%7B%20test%3A%20T%20%7D%20%3A%20%7B%7D%0D%0A%0D%0A%2F%2F%20Ok%3A%20type%20with%20selected%20condition%0D%0Ainterface%20I%20extends%2...
Bug,Help Wanted,Domain: Error Messages
low
Critical
319,765,571
pytorch
Do not put system paths in RPATH
This is what I'm seeing today: ``` $ readelf -d /opt/conda/envs/pytorch-py3.6/lib/python3.6/site-packages/torch/_nvrtc.cpython-36m-x86_64-linux-gnu.so | grep RPATH 0x000000000000000f (RPATH) Library rpath: [/opt/conda/envs/pytorch-py3.6/lib:/usr/lib/x86_64-linux-gnu/:/usr/local/cuda/lib64:$ORIGIN/lib] ...
module: build,triaged
low
Minor
319,778,221
rust
concat_idents cannot be used in pattern position
* The three places where an ident-returning macro can be used are patterns, types, and expressions. * The two places where `concat_idents` can be used are types and expressions. * **_Hmmmm._** I looked around previous issues and PRs related to `concat_idents` and the word "pattern" never even comes up. This seems...
A-macros,T-compiler,C-feature-request,A-patterns
low
Minor
319,787,827
pytorch
[Caffe2]Install problem
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 I want to u...
caffe2
low
Critical
319,789,915
flutter
Drag Box FeedBack Limit
Can we Set the limit or range of the Feedback of DragBox on the Screen?
c: new feature,framework,f: gestures,P2,team-framework,triaged-framework
low
Major
319,796,692
electron
Implement powerMonitor 'shutdown' event for Windows
Electron v2.0.0 introduced a new [shutdown](https://github.com/electron/electron/blob/2-0-x/docs/api/power-monitor.md#event-shutdown-linux-macos) event to `powerMonitor` - that's currently implemented for Linux and macOS but not for Windows. Please implement the 'shutdown' event for Windows as well.
enhancement :sparkles:,platform/windows,2-0-x,semver/minor
low
Major
319,866,774
TypeScript
JSDoc support for @yields
It would be nice to be able to use the [`@yields`](http://usejsdoc.org/tags-yields.html) JSDoc tag. We work with JS and JSDoc, but taking advantage of TSC and VSCode. We also use the [valid-jsdoc](https://eslint.org/docs/rules/valid-jsdoc) eslint rule. ## We have: ``` javascript /** @typedef Thing (...) */ ...
Suggestion,Awaiting More Feedback,Domain: JSDoc
low
Major
319,907,999
You-Dont-Know-JS
Types & Grammar - Chapter 2 : TypeError while reversing a string.
https://github.com/getify/You-Dont-Know-JS/blob/master/types%20%26%20grammar/ch2.md#strings There's a code in this section that tries to use the **Array.prototype.reverse** function to reverse a string. ``` Array.prototype.reverse.call( a ); // still returns a String object wrapper (see Chapter 3) // for "foo" :( ...
for second edition
low
Critical
320,022,407
pytorch
feature request: support for new/future hardware accelerators
## Issue description There are a slew of new AI hardware accelerators available that can beat the GPUs handily either in terms of raw performance or performance per Watt. There are also many new efforts in analytic and sensor fusion hardware acceleration that are optimizing tensor processor for specific tasks using ...
feature,triaged,shadow review
low
Major
320,043,204
rust
Improve "private type in public interface" message
There seems to be an issue with detecting the `pub`-ness of types on the current nightly (EDIT: and actually stable) branch. Consider the following code: `main.rs`: ```rust mod hardware; fn main() { hardware::do_stuff(); } ``` `hardware/mod.rs`: ```rust mod parser; #[derive(Debug)] struct Hardwa...
C-enhancement,A-lints,A-diagnostics,T-compiler
low
Critical
320,067,892
go
cmd/go: test mixes stderr and stdout
https://github.com/golang/go/commit/7badae85f20f1bce4cc344f9202447618d45d414 appears to have made `go test` mix stderr and stdout from tests, which has made go 1.10 a regression for CockroachDB's benchmarks. This issue is related to https://github.com/golang/go/issues/18010 : Not only is the benchmark output not swa...
NeedsInvestigation
low
Minor
320,089,952
flutter
Centralized location for test file output
If we had the notion of a test output folder, tests would have the flexibility to not only write to stdout and stderr, but to write more helpful info, like the contents of adb logs, screenshots, etc. ### Proposal During `flutter test`, we have The Flutter tool create a temp folder before running any tests. For e...
a: tests,tool,P3,team-tool,triaged-tool
low
Minor
320,130,914
vscode
VSCode opens URL without user's permission
- VSCode Version: today's "insider build" (May 3, 2018) - OS Version: macOS Steps to Reproduce: 1. download today's insider build (May 3, 2018) 2. run it <!-- Launch with `code --disable-extensions` to check. --> Does this issue occur when all extensions are disabled?: ? ----------- VSCode will open a...
under-discussion
medium
Major
320,134,356
vue
warn if $set is used on a property that already exist
### Version 2.5.16 ### Reproduction link [https://codepen.io/JJPandari/pen/gzLVBq?editors=1010](https://codepen.io/JJPandari/pen/gzLVBq?editors=1010) ### Steps to reproduce See the codepen snippet. Follow the comment there to change the vm's data and see what happens. ### What is expected? Even if the prop...
feature request,good first issue,has PR
low
Major
320,174,704
opencv
[RFC] switch for LTO friendliness
<!-- 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...
RFC
low
Critical
320,287,874
vscode
[html-templating] easy way to inherite advanced html features
With the vscode extension [Better Jinja](https://github.com/samuelcolvin/jinjahtml-vscode) the `jinja-html` language highlights jinja html templates, however some more advanced features available with the `html` langauge are not working with `jinja-html`: * highlighting the opening tag when the cursor is in the closin...
feature-request,html
low
Critical
320,307,848
go
proposal: os: make a Go 2 type for environment variables?
Should we change the type of environment variables in Go 2? Currently it's `[]string` which is slightly odd. We at least solved the duplicated problems in Go 1.9 with https://golang.org/doc/go1.9#os/exec (#12868). In https://github.com/golang/go/issues/25210#issuecomment-386256365, @alexbrainman suggested `map[st...
v2,Proposal
medium
Critical
320,374,424
rust
derive(Debug) on huge enum causes massive memory spike during liveness checking
Discovered on twitter: https://twitter.com/malwareunicorn/status/992438462652403713 `#[derive(Debug)]` on an enum with 10,000 variants causes a 7GB spike. `#[derive(Debug)]` on an enum with 20,000 variants causes a **massive** 28GB spike. 20,000 variant code to reproduce: https://gist.github.com/retep998/fdddd37...
C-enhancement,T-compiler,I-compilemem
low
Critical
320,382,278
go
x/net/publicsuffix: PublicSuffix() is case sensitive
### What version of Go are you using (`go version`)? ``` go version go1.10.1 linux/amd64 ``` ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOOS="linux" ``` ### What did you do? PublicSuffix...
NeedsInvestigation
low
Major
320,389,679
go
x/mobile/cmd/gomobile: RunOnJVM is not available from init functions
In my library, JNI functions are called from Go side. JVM is accessed via a global C variable `current_vm`. I admit depending this variable is not a good way, but there is no other way to access JNI from Go. Actual code is https://github.com/hajimehoshi/ebiten/blob/master/internal/jni/jni_android.go I realized that ...
mobile
low
Major
320,401,204
TypeScript
Repeated mapped type inference causes incorrect typeToString results
**TypeScript Version:** 2.8.0-insiders.20180320 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** mapped type inference display typetostring **Code** Via https://stackoverflow.com/questions/50181650/type-inference-lost-inner-level-types-in-types...
Bug,Domain: Type Display
low
Major
320,443,934
TypeScript
Proposal: Easier Migration with Types in JavaScript Files
This issue is the dual of #22665. # Background In last week's design meeting, we discussed #22665 and it seemed like we had some positive sentiment around the proposal. Specifically, issues where users hit an expressivity wall or mismatch in `.js` when migrating to `.ts` files provide a compelling case. Howeve...
Suggestion,Awaiting More Feedback
low
Critical
320,453,909
pytorch
[proposal] [discussion] Refactor pruning/weight_norm using new Reparametrization functionality + actually deprecate old impl of SpectralNorm
Currently the [weight_norm](https://github.com/pytorch/pytorch/blob/master/torch/nn/utils/weight_norm.py) and [spectral_norm](https://github.com/pytorch/pytorch/blob/master/torch/nn/utils/spectral_norm.py) are patching a passed module + implement special functions for adding/removing these from a module. Some ideas ...
module: nn,triaged
high
Critical
320,454,689
TypeScript
Experiment with always using parameters from base types for derived methods
Note some related issues for doing this with *properties* rather than methods: #3667, #6118, #1373. # Goal We want to make it easier for users to derive types without rewriting the same parameter signature every time ```ts class Base { method(x: number) { // ... } } class Derived extends Base {...
Suggestion,In Discussion
high
Critical
320,459,106
material-ui
[Menu] Clicking outside a menu blocks click from bubbling up
## Current Behavior There a fundamental issue with the menu dismissal. When presented with multiple buttons or select fields that show a menu, it take 2 clicks to dismiss the existing menu and show the next one. ![material-ui](https://user-images.githubusercontent.com/2038264/39656921-7d1544dc-4fd1-11e8-9956-fb34...
new feature,component: menu,component: select
medium
Critical
320,475,543
pytorch
Optional modifiers (e.g., Tensor?) are not checked for non-dispatched native functions
I noticed this because I swapped some of the CuDNN RNN functions from pass through to dispatched, and I started getting failures when I passed undefined tensors to `Tensor x` arguments (...from C++, I think). Which is clearly supposed to be not allowed, but it shouldn't have mattered which dispatch strategy was being u...
triaged,module: dispatch
low
Critical
320,489,157
rust
Suggested fix for E0658 does not resolve the compiler error
A little while back I've released my [bitrange](https://github.com/trangar/bitrange) crate. On `rustc 1.27.0-nightly (ac3c2288f 2018-04-18)`, this works like a charm. On `rustc 1.27.0-nightly (91db9dcf3 2018-05-04)`, I get the following error: ``` error[E0658]: procedural macros cannot be expanded to expressio...
C-enhancement,A-macros,T-compiler
low
Critical
320,493,089
godot
Polygon 2D UV editor UI unclear
<!-- 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. --> af9a620 **OS/device including version:** <!-- Specify GPU model and drivers if graphics-related. --> ...
enhancement,discussion,topic:editor,usability
low
Critical
320,508,979
godot
[Bullet] Rigidbodies have crazy movement when used with joints
<!-- 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. --> 3.0.2 **OS/device including version:** <!-- Specify GPU model and drivers if graphics-related. --> li...
bug,confirmed,topic:physics
low
Critical
320,597,277
go
math: Pow() results are less accurate than libc pow()
Please see detailed discussion on the topic here: https://groups.google.com/forum/#!topic/golang-nuts/LqVD5kMHJQw Note that the headline is about Fibonacci numbers, however, the root issue is regarding the accuracy of math.Pow, compare to libc pow() function. ### What version of Go are you using (`go version`)? ...
NeedsInvestigation
low
Critical
320,601,196
youtube-dl
Bharat Acharya Education Site Support
for example log into bharatacharyaeducation.com and log in using these credentials email : chinnu.akanksh@gmail.com pwd: bankai and choose 8086 as topic for watching videos and afterwards video will play...and how do I download these videos
site-support-request
low
Minor
320,604,834
pytorch
Issue when importing both retro (from OpenAI) and torch
**Issue description:** Crash when importing both retro and torch, order doesn't matter **Code example:** import retro import torch I then get the windows pop-up saying python has stopped working - PyTorch or Caffe2: PyTorch - How you installed PyTorch (conda, pip, source): Conda - OS: Windows 10 - Py...
triaged,module: pybind
low
Critical
320,635,425
rust
Misleading diagnostic when trying to use Box<Error> for io::Error:new
```rust fn main(){ let q : Box<::std::error::Error /* + Send + Sync */ > = unimplemented!(); let w : ::std::io::Error = ::std::io::Error::new(::std::io::ErrorKind::Other, q); } ``` First compiler error message: ``` error[E0277]: the trait bound `std::error::Error: std::marker::Sized` is not satisfie...
C-enhancement,A-diagnostics,T-compiler
low
Critical
320,775,047
rust
Warn when a user-defined trait is used on an std library type without full path
I'd like rustc to warn me when I use a trait method on a std (or liballoc, core, ...) type without using the full trait path. That is, if I implement my own trait for a `std` library type: ```rust trait Foo { fn bar(&self); } impl Foo for Vec<u32> { fn bar(&self) { } } fn main() { let v = Vec::new...
C-enhancement,A-trait-system,T-compiler
low
Critical
320,814,650
flutter
Would like a benchmark tracking install size of hello_world
Including after extracting icudata. We also get asked about install-size occasionally: https://github.com/flutter/flutter/issues/16833#issuecomment-387019591
team,engine,c: performance,a: size,perf: app size,team: benchmark,P3,team-engine,triaged-engine
low
Minor
320,841,382
rust
EvaluationCache overwrites its entries
When the insertion to `EvaluationCache ` is changed to use `HashMapExt::insert_same`. It triggers an the assertion which checks that the old value is the same as the new one. This is because the DepNodeIndex changed. [Backtrace](https://gist.github.com/Zoxc/c81faf46c9b1a532f029c1a3776c6a4b#file-gistfile1-txt) [Log ...
C-enhancement,T-compiler
low
Minor
320,894,890
pytorch
[feature request] [PyTorch] More flexible optimizer API
Currently, there is no easy way to change the decay / momentum / lr for a parameter after constructing the optimizer. For example, it is hard to stop a parameter from being decayed in an iteration. Maybe we should support a getter/setter API like `optim.set(my_parameter, 'decay', 0)`. cc @vincentqb
module: optimizer,triaged,enhancement
low
Major
320,896,726
pytorch
[memory leak] [PyTorch] .backward(create_graph=True)
```python >>> import torch >>> import gc >>> _ = torch.randn(1, device='cuda') >>> del _ >>> torch.cuda.synchronize() >>> gc.collect() 0 >>> print(torch.cuda.memory_allocated()) 865280 >>> x = torch.randn(1, device='cuda', requires_grad=True) >>> y = x.tanh() >>> y.backward(torch.ones_like(y), create_graph=...
module: autograd,module: memory usage,triaged
low
Major
320,897,741
go
cmd/cover: use different //line comment for code that does not come from source file
### What version of Go are you using (`go version`)? go version go1.10.1 darwin/amd64 ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? GOARCH="amd64" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOOS="darwin" GORACE=...
help wanted,NeedsFix,compiler/runtime
low
Critical
320,915,929
TypeScript
JSDoc referencing non-global class: Namespace 'X' has no exported member 'MyClass'
**TypeScript Version:** 2.9.0-dev.20180430 **Code** ```js class Circle {}; class Rectangle {}; const Shapes = {Circle, Rectangle}; // `Shapes` imported into another file class Square extends Shapes.Rectangle { /** * @param {Shapes.Circle} circle */ intersects(circle) { // ...
Bug,Domain: JSDoc,Domain: JavaScript
low
Critical
320,915,977
three.js
Optimization: Output flags on materials to avoid material switching for specialized outputs.
##### Description of the problem So I am interested in quickly switching between different outputs of a shader without having to create new materials to just get different outputs. One area in particular were this would be useful (there are many) is in the shadowing code. It would allow us to not have to create ...
Suggestion
low
Major
320,934,189
rust
Unhelpful borrowck error when wrong lifetimes are used
Consider the following code: ```rust fn run() -> () { let mut buf = [0u8; 1]; let mut foo = Foo(&mut buf[..]); let _bar = foo.bar(); foo.next(); } pub struct Foo<'a>(&'a mut [u8]); impl<'a> Foo<'a> { pub fn bar(&self) -> bool { true } pub fn next(&'a mut self) -> &'a () { unimplemen...
C-enhancement,A-diagnostics,A-lifetimes,A-borrow-checker,T-lang,D-confusing
low
Critical
320,943,155
rust
println!() prevents optimization by capturing pointers
This weekend I ran some benchmarks on some of my code. After making a seemingly insignificant code change I noticed a small, but measurable performance regression. After investigating the generated assembly, I stumbled upon a case, where the compiler emits code that is not optimal. This minimal example shows the sam...
A-LLVM,I-slow,C-enhancement,A-codegen,T-compiler,C-optimization
medium
Major
320,951,625
pytorch
Check for F2C convention (for blas) at runtime
In `cmake/Modules/FindBLAS.cmake` we have a test to see if `sdot_` returns a float or a double (which may vary, depending on whether or not BLAS is compiled with the F2C convention or not.) However, in general, we *dynamically* link against our BLAS library, which means that it is possible that at runtime we get a BLAS...
module: build,triaged
low
Minor
320,953,850
pytorch
Windows MAGMA binary requires explicit linking against MKL LAPACK, or it will silently give incorrect results
Short steps to reproduce: 1. Check out https://github.com/pytorch/pytorch/pull/7275 2. Comment out in `aten/src/ATen/CMakeLists.txt` these lines: ``` if(CUDA_FOUND) TARGET_LINK_LIBRARIES(ATen_cuda ${LAPACK_LIBRARIES}) endif() ``` 3. Run `torch.symeig(torch.eye(48).cuda(), eigenvectors=True)` I th...
module: build,module: cuda,triaged
low
Critical
320,975,044
flutter
When generating golden files, catch the case of duplicate names
Sometimes when writing a test you copy and paste a test to make a new variant, and as a result you end up having two parts of the test overwrite the same file. We should be able to catch that case. cc @tvolkert
a: tests,team,framework,P2,team-framework,triaged-framework
low
Minor
321,001,551
pytorch
DataParallel on list inputs
ERROR: type should be string, got "\r\nhttps://github.com/pytorch/pytorch/blob/master/torch/nn/parallel/scatter_gather.py#L5\r\nIf your input is a list of two variables in which the first one has dimension 5 and the other 1.\r\nThis will create a single replica which only contains the first 3 batches of the first variable.\r\n"
triaged,module: data parallel
low
Minor
321,008,392
TypeScript
Support for custom Automatic Type Acquisition scopes.
<!-- 🚨 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 Automatic type acquisition scopes, custom type acquisition, acqu...
Suggestion,Awaiting More Feedback
low
Critical
321,011,312
pytorch
[feature request] [PyTorch] Dynamic Samplers.
I am trying to implement Dynamic Samplers in Pytorch. This seems impossible with the existing train_loader api's. As the weighted the samplers only allow weights to be set once. I was thinking that weights could change based on the loss value for each and individual data point. This can be done without train_loader API...
feature,module: dataloader,triaged
low
Major
321,016,891
pytorch
[caffe2] Can I load the gpu data to cpu in .cu file?
Can I load the gpu data to cpu in .cu file? In caffe v1, we can use cpu_data() or gpu_data() to fectch data in different context. However, how to do that for caffe v2?
caffe2
low
Minor
321,017,896
godot
When using placeholders, signals and groups are added to the InstancePlaceholder and lost when instancing
**Godot version:** 3.x and v4.0 Tested on 3.4b3 and 4.0.dev.20210811.official [7188cb601] **OS/device including version:** **Issue description:** Scenes set as placeholders in the scene tree, get the connections and groups set via the editor when the placeholder is added. This means that there will be error...
enhancement,topic:core,confirmed
low
Critical
321,032,193
pytorch
nn.DataParallel fills None grads with 0
On pytorch 0.4.0, using nn.DataParallel leads to grads of parameters not used being filled with 0. This is a problem when the model has many parameters but only small part of it is used in forward. Test: ```python import torch from torch import nn class Test(nn.Module): def __init__(self): super(Te...
triaged,module: data parallel
low
Major
321,103,152
opencv
Different result of fisheye::stereoRectify
##### System information (version) - OpenCV 3.4, 2.4.11 - Operating System / Platform =>Ubuntu 14.04 64 Bit and macOS 10 - Compiler => gcc 4.8.4 ##### Detailed description ##### Steps to reproduce Just as test in https://github.com/AHoveringFish/fisheye_stereo_rectify.git The outputs of mac(on which openc...
incomplete
low
Minor
321,232,488
pytorch
[Caffe2] Can't use resnet50_trainer.py through redis.
## Issue description I was trying to use resnet50_trainer.py to do distributed training. However, I encountered this problem. > RuntimeError: [enforce fail at operator.cc:185] op. Cannot create operator of type 'RedisStoreHandlerCreate' on the device 'CPU'. Verify that implementation for the corresponding device e...
caffe2
low
Critical
321,249,939
thefuck
Enabling experimental instant mode causes The Fuck to stop working entirely
<!-- If you have any issue with The Fuck, sorry about that, but we will do what we can to fix that. Actually, maybe we already have, so first thing to do is to update The Fuck and see if the bug is still there. --> <!-- If it is (sorry again), check if the problem has not already been reported and if not, just op...
help wanted,zsh
low
Critical
321,308,759
TypeScript
fixUnusedIdentifier may remove a used side-effect
**TypeScript Version:** 2.9.0-dev.20180506 **Code** ```ts { const x = launchMissiles(); } ``` **Expected behavior:** `const x = ` removed, and missiles still launched. **Actual behavior:** Missiles unlaunched. Unfortunately we have no way of knowing whether a function call does have side effects...
Suggestion,Needs Proposal,Domain: Quick Fixes
low
Minor
321,324,726
godot
New signal methods in C# are declared outside of its class, making the script invalid
*Bugsquad edit: This long standing issue is still valid as of Godot 4.2. It doesn't need further confirmation, but feel free to :+1: the OP to confirm it affects you. Any help welcome to solve this, it's something the .NET team is having difficulty fixing properly, but it's recognized as a major usability issue.* --...
bug,topic:editor,confirmed,usability,topic:dotnet
medium
Critical
321,328,807
flutter
Create a build with Flutter Fastlane action
https://docs.fastlane.tools/actions/#building Create one to build an Android and/or iOS app via Fastlane. For simplicity, it can initially just aggregate build_ios_app and build_android_app with parameters from both.
tool,P3,team-tool,triaged-tool
low
Minor
321,349,219
go
cmd/compile: tweak branchelim heuristic on amd64
### What version of Go are you using (`go version`)? master: ```go version devel +cd1976d Tue May 8 19:57:49 2018 +0000 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="" GOCACH...
Performance,compiler/runtime
low
Critical
321,352,531
kubernetes
Export metrics for precidates restrictiveness
Currently users do not have any metrics on predicates restrictiveness (i.e capacity of a predicate to filter potential target nodes). The idea is to provide a metric each time the predicate is computed. This (And how handle ordering predicates in general) might be impacted by the new scheduling framework. cc @bsala...
sig/scheduling,lifecycle/frozen
low
Major
321,398,176
rust
Coherence rules are not consistent when applied to auto traits
The coherence rules which allow blanket trait implementations to coexist with more specific impls are not consistent when applied to normal traits and auto traits. An example is provided below. If this is expected behavior, I could not find it documented anywhere. The same error occurs on both stable and nightly com...
C-enhancement,A-trait-system,T-lang
low
Critical
321,421,285
godot
AudioDriverWASAPI error while using editor if another application is using exclusive mode
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** 3.0.3 RC1 **OS/device including version:** Windows 10, not related to video, apparently. **Issue description:** I have used the editor for a wh...
bug,platform:windows,topic:porting,confirmed,topic:audio
medium
Critical
321,422,530
go
cmd/compile: incorrect error for function conversion based on cyclic definition (esoteric)
I'm only reporting this for future use should we ever get to a more thorough rethink of the type checker. This is a completely esoteric test case: https://play.golang.org/p/JjZZGCopERA The error message is "cannot convert nil to type F" but F is clearly a function and thus nil can be converted into that function (of...
NeedsInvestigation,compiler/runtime
low
Critical
321,466,686
pytorch
[Caffe2] Negative export to ONNX fails
The following sample fails. The error seems to be coming from the exact same cause of #7020, but I cannot workaround the error with the same fix in frontend.py. After some debugging I found out that for `Negative`, the export process goes through `C.support_onnx_export()` and `C.export_to_onnx()` unlike #7020. These...
caffe2
low
Critical
321,551,887
go
x/crypto/salsa20: implement cipher.Stream interface
salsa20 is the odd one out that implements only a stateless XORKeyStream at the package level.
help wanted,NeedsFix
low
Minor
321,554,841
go
x/crypto/cryptotest: new package
crypto/cipher has well defined interfaces with plenty of tricky requirements (about aliasing, different lengths, state) that are hard to test for and easy to overlook. cryptotest will be an interface test suite, like nettest. It caught a bug in x/crypto/internal/chacha20 and can replace a bunch of duplicated tests i...
Proposal-Accepted,NeedsFix,Proposal-Crypto
low
Critical
321,587,812
pytorch
Multi queue for dataloader when workers > 1
Recently I have read the implementation of dataloader and get some ideas may be make dataloader faster when use multi prefetch data loader. Currently there is only one index_queue and data_queue, sampler will put batch indices to index_queue, and multi processes will put the single data_queue at the same time , ther is...
module: dataloader,triaged,enhancement
low
Minor
321,597,089
go
test: generate gcgort
In e0adc35c470d9bf7f462c9d26340b494cbe7ce43 test/gcgort.go is added. This test may benefit from being generated instead of hand-written to increase maintainability by reducing repeating and narrow test coverage by removing extraneous setup code like the modifier struct. This change would be after 1.11 and my opinion...
help wanted,NeedsFix
low
Critical
321,600,058
You-Dont-Know-JS
Async & Performance Chapter 6 "Repetition" section
**Yes, I promise I've read the [Contributions Guidelines](https://github.com/getify/You-Dont-Know-JS/blob/master/CONTRIBUTING.md)** (please feel free to remove this line). I've been having lots of trouble with 3 paragraphs in this section, IMO, the whole section is too dense and short. This paragraph: > A straig...
for second edition
low
Critical