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
321,649,026
go
doc: eliminate commit-message skew between Contribution Guide and wiki
After @rasky's updates, https://tip.golang.org/doc/contribute.html#commit_messages has a nice, clear guide to Go commit messages.โ€‚https://github.com/golang/go/wiki/CommitMessage has a very similar guide. Unfortunately, they have a bit of skew: for example, the wiki mentions a 76-column limit, whereas `contribute.htm...
Documentation,help wanted,NeedsInvestigation
low
Major
321,716,280
go
cmd/compile: call memmove on amd64 for large OpMove
Currently we lower OpMove with large size into REP MOV. Memmove has optional AVX&co codepath, so it should be faster than REP MOV, or at least as fast if REP MOV is optimal (call overhead is insignificant for large sizes). We should probably generate a call to memmove for really big OpMove.
Performance,NeedsInvestigation,compiler/runtime
low
Minor
321,733,729
TypeScript
"program.emit" produces wrong declaration file if "declaration" option is false or not specified
**TypeScript Version:** 2.9.0-dev.20180506 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** declaration, emitting. **Code** ```ts declare module ModuleName {} declare var ModuleName: { prototype: any }; export { ModuleName }; ``` Steps to...
Bug,Help Wanted,API
low
Critical
321,757,181
go
net: DNS address resolution quirks (AAAA records inconsistency)
This bug reports is about an inconsistency on how resolution is handled between the Go resolver and the CGO one. I do not expect a bugfix (although probably beneficial, but I leave that estimation to others) but at least an understanding of why the Go resolver behaves this way. ### What version of Go are you usin...
NeedsInvestigation
low
Critical
321,784,058
vscode
[Emmet] Include should be more like DocumentSelector
Currently, the Emmet extension has a setting called `emmet.includeLanguages` which just targets language IDs to map to the Emmet-capable language ID. I think it would be very useful if instead you could use something more like `DocumentSelector`, which also allows [`DocumentFilter`](https://code.visualstudio.com/docs/e...
help wanted,feature-request,emmet
low
Major
321,789,398
storybook
Show more source files in storysource
Hello, I'm interested in getting the version of this demo https://building.coursera.org/coursera-ui/?selectedKind=Welcome&selectedStory=to%20Storybook&full=0&addons=0&stories=1&panelRight=0&addonPanel=storybook%2Factions%2Factions-panel to render, test and play out locally. Can you help with where to clone/downloa...
feature request,addon: storysource
medium
Critical
321,805,056
go
crypto/rand: add package example
The crypto/rand package has no package example; even just copying the Read example up to the package level would be helpful. The crypto/rand package also doesn't have the same convenience helpers that math/rand has, so it might be helpful to see e.g. how to implement Intn using the crypto/rand package.
Documentation,help wanted,NeedsFix
low
Major
321,850,822
pytorch
[feature request] torch.nn.DataParallel should work nicely both for cpu and gpu devices
If the working machine has a GPU card, it seems that there is no way for torch.nn.DataParallel to work on the CPU. This is due to the following lines in the torch.nn.DataParallel. ``` if not torch.cuda.is_available(): self.module = module self.device_ids = [] return ...
triaged,enhancement,module: data parallel
low
Minor
321,862,190
flutter
Encourage reproducible builds
I've been thinking about how this could be tackled for a while, but what triggered me to open this issue was a question by a fellow flutter dev. "Is there any way to see which flutter version someone is using from their github repo?" - @iampawan Although I consider good practice writing `pubspec.yaml` with specif...
c: new feature,framework,P2,team-framework,triaged-framework
low
Major
321,981,819
TypeScript
Improve references for import type of JS modules
See `findAllRefs_importType_js.ts` (added in #23998)
Bug
low
Minor
321,991,178
pytorch
Make c10d/FileStore cache file descriptor
Per comment from @apaszke in #7439, there is no need to reopen the underlying file for every operation. Instead we can keep the file open and only acquire/release the shared/exclusive lock.
newcomer,oncall: distributed,feature,triaged
low
Minor
322,000,814
kubernetes
CRDs: support binary encoding
/kind feature I think eventually we will be asked to add a proto encoding for CRDs. It's very non-obvious how to do this, so I think we should start talking about it now. I can think of two approaches off the top of my head: 1. Require the user to supply a proto spec as part of the CRD object. 2. Add x-proto-fi...
area/extensibility,sig/api-machinery,kind/feature,priority/important-longterm,area/custom-resources,lifecycle/frozen
medium
Major
322,013,113
go
net/http: document when url.Error type is returned
Document when url.Error type is returned. (which Client methods)
Documentation,NeedsFix
low
Critical
322,014,163
terminal
Copying with Ctrl-Shift-C copies literal buffer, not lines
Selecting text and copying with Ctrl-Shift-C copies the buffer literally, which gives a line full of spaces and no newline. Copying with right click works as intended. Verified in cmd.exe, pwsh.exe and zsh. * Your Windows build number: (Type `ver` at a Windows Command Prompt) 17666 * What you're doing and what'...
Work-Item,Product-Conhost,Area-Interaction,Issue-Task
low
Major
322,029,811
go
x/build/cmd/gerritbot: does not respect codereview.cfg for fixing commit messages
https://go-review.googlesource.com/112277, which came from PR golang/vgo#4, said "Fixes #24099." The git-codereview tool would have read the vgo repo's codereview.cfg and automatically rewritten that line to say "Fixes golang/go#24099." This helps both authors and reviewers, neither of whom have to think about this any...
help wanted,Builders,NeedsFix
low
Minor
322,034,978
rust
Incorrect padding on hexadecimal formatting of integers
The behavior in https://github.com/rust-lang/rust/pull/48978 does not seem correct. [Playground link](https://play.rust-lang.org/?gist=ccadba488e9120ff29235cbdfdca799b&version=beta&mode=debug) The number of digits in the output doesn't seem to match the requested amount of padding.
C-enhancement,T-libs-api
low
Critical
322,048,207
go
cmd/go: go test -list does things other than listing tests
This is a small quibble, but caused me some surprise recently. ### What version of Go are you using (`go version`)? go version go1.10.2 linux/amd64 ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" G...
NeedsInvestigation
low
Critical
322,049,245
go
x/text/language: Cannot parse ISO/IEC 15897 (C, POSIX, etc.) as language tags
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? ```console ~/.local/lib/go/src/golang.org/x/text $ go version go version go1.10.2 linux/arm64 ~/.local/lib/go/src/golang.org/x/text $ git describe v0.3.0-48-g67e48ad ``` ### Does this i...
NeedsInvestigation
low
Critical
322,051,337
pytorch
[caffe2] How to use multiple CPUs?
I want to run a caffe2 model on multiple CPUs (evaluation). Is there a way to do that directly? Maybe it requires OpenBLAS? I don't think is it possible to use multiprocessing and call RunNet on different workspaces.
caffe2
low
Minor
322,058,200
go
x/net/ipv4: add IPv4 header checksum computation for ipv4.Header type
I'm working on a project that uses packet sockets directly, and I have to calculate the IPv4 checksum on my own since I'm building from Ethernet frames up. I notice that `x/net/ipv4` doesn't provide any way to easily calculate a checksum, but I think such a function/method could be useful in conjunction with the `ip...
Proposal,Proposal-Accepted
medium
Critical
322,112,309
opencv
Mouse Wheel Zoom cannot be disabled?
Hi, I'm using version 3.4.0 for python on Ubuntu. I want to implement custom functionality by listening to mouse-wheel events (wheel up and down). How can I disable the by default activated zoom in the window when using the mouse wheel? Thanks a lot, Kim
feature,priority: low,category: highgui-gui
low
Major
322,122,105
TypeScript
Destructuring parameter JSDoc not matched up correctly
<!-- ๐Ÿšจ STOP ๐Ÿšจ ๐—ฆ๐—ง๐—ข๐—ฃ ๐Ÿšจ ๐‘บ๐‘ป๐‘ถ๐‘ท ๐Ÿšจ Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! Please help us by doing the following steps b...
Bug,Domain: JSDoc,Domain: JavaScript
low
Critical
322,148,466
vscode
Setting to ignore whitespace-only lines
VS Code currently removes all trailing whitespace including on whitespace only lines. Consider the following JavaScript/Typescript snippet: ``` export default class Example { constructor() { console.log("called constructor"); } doSomething() { console.log("I did something."...
feature-request,editor-core
high
Critical
322,151,474
pytorch
[Caffe2]: caffe2.python.caffe_translator.py script doesn't convert "Split" and "Slice" Layer
## Issue description I ran the caffe_translator.py script to convert my Caffe model to Caffe2. My Caffe model has "Split" and "Slice" Layer. The caffe_translator.py doesn't seem to handle them. I had to hack on my own copy of caffe_translator.py to get it running and then manually edit the pbtxt file. ## Code ...
caffe2
low
Critical
322,159,129
pytorch
[caffe2] How to know the input shape for certain pre-trained network
Sorry, I'm new in Caffe2. I downloaded the some of models from model zoo. The models are just like pkl, init_net.pb & predict_net.pb, etc. Does caffe2 can show the model detail similar with the keras "model.summary"? Because I have to know the input shape for the model.
caffe2
low
Minor
322,160,550
go
x/build/cmd/gopherbot: reply to unversioned urls with permalink
It seems to be a frequent occurrence that non-versioned github urls with line numbers are included in issues. These links make investigations more time consuming when code inevitably changes. The problematic pattern is: `https://github.com/<repo>/blob/master.+#L\d+` Example: https://github.com/golang/go/blob/maste...
Builders,FeatureRequest
low
Minor
322,174,952
flutter
Text does not conform to DefaultTextStyle which is beyond Scaffold
## Steps to Reproduce `Text` does not conform to `DefaultTextStyle` which is beyond `Scaffold`. I am using `DefaultTextStyle` to set default `Locale` to all text. I would like to set `DefaultTextStyle` at the root of the application instead of setting each `Text`. In the following example, `Text` does not conf...
framework,a: internationalization,a: typography,has reproducible steps,P2,found in release: 2.5,found in release: 2.6,team-framework,triaged-framework
low
Critical
322,176,854
pytorch
Build from source with anaconda [caffe2]
I have a GPU so, when I run this command "CONDA_INSTALL_LOCALLY=1 BUILD_ENVIRONMENT=conda-cuda-macos ./scripts/build_anaconda.sh " "To build Caffe2 with different settings, change the dependencies in meta.yaml and the CMAKE_ARGS flags in conda/no_cuda/build.sh and run the script again." What i need to change in met...
caffe2
low
Minor
322,256,498
go
brand: book table of contents
### What did you do? Read the 1.0.2 version of [brand book pdf](https://storage.googleapis.com/golang-assets/go-brand-book-v1.0.2.pdf). ### What did you expect to see? Very incorrect contents page on page 3. Section 1 doesn't contain 1.3.1,1.3.2,1.3.3 sub sections. Section 2 doesn't contain 2.0.2,2.3 sub section ...
NeedsInvestigation
low
Minor
322,263,972
go
crypto/tls: GetCertificate called on resumed sessions
GetCertificate is called just before checking the client session ticket. If the ticket is valid and the session is resumed, that call is probably pointless. Off the top of my head, I can't remember why the server would need to know its own certificate in a resumed session, but there might be something I'm forgetting...
NeedsInvestigation
low
Minor
322,282,053
TypeScript
Remove Unnecessary lib.*.d.ts Entries
Why in `lib.es6.d.ts` do these exist: ```typescript interface String { /** Returns a string representation of a string. */ toString(): string; } interface Symbol { /** Returns a string representation of an object. */ toString(): string; } ``` Where this does not: ```typescript interface B...
Bug,Help Wanted,Domain: lib.d.ts
low
Minor
322,300,680
opencv
BFMatcher (OpenCL implementation) on ARM Mali T764
##### System information OpenCV => 3.4 Operating System / Platform => TinkerOS latest Compiler => g++ Hardware platform => Tinker Board 2GB ##### Detailed description I have run into a similar problem as this question [when](https://stackoverflow.com/questions/40218837/clenqueuendrangekernel-failed-with-er...
priority: low,category: features2d,category: ocl,incomplete
low
Critical
322,309,862
rust
Use section/symbol ordering files for compiling rustc (e.g. BOLT)
The order in which code is located in binaries has an influence on how fast the binary executes because (as I understand it) it affects instruction cache locality and how efficiently the code is paged in from disk. Many linkers support specifying this order (e.g. LLD via `--symbol-ordering-file` and MSVC via `-ORDER`)....
A-LLVM,C-enhancement,I-compiletime,T-compiler,T-bootstrap,T-infra,S-blocked,WG-compiler-performance
medium
Major
322,322,616
flutter
showAboutDialog make licenseDialog background customizeable
My app has the same scarfold background color like the toolbar because of the Backdrop style. If i launch the licenseDialog all text ist on (in my case) grey blue background. I want to customize the dialog where the licenses will be shown.
c: new feature,framework,f: material design,P3,team-design,triaged-design
low
Major
322,347,726
go
cmd/compile: aggressive IMUL rewrites on AMD64 sometimes lead to performance regressions
``` image/draw name old time/op new time/op delta CopyOver-4 1.18ms ยฑ 0% 1.52ms ยฑ 0% +28.49% (p=0.008 n=5+5) ``` Bisecting from tip leads to b1df8d6ffa2c4c5be567934bd44432fff8f3c4a7. This is regression from go1.10.2. Performance delta is shown for b1df8d6ffa2c4c5be567934bd44432fff8f3c4a7 itself an...
Performance,NeedsInvestigation,compiler/runtime
low
Major
322,374,524
TypeScript
Typescript does not recognize function Boolean() as a check for undefined
I followed the submission guidelines. I prefer to check for a defined object using Boolean(object) rather than !!object, which I consider bad style. Typescript linter recognizes !! as a check for undefined but does not recognize Boolean() as a check for undefined. I could not find a tsconfig or tslint configurat...
Suggestion,Help Wanted
low
Critical
322,408,081
kubernetes
Managed ca-certs
/kind feature **What happened**: A common requirement of container base images is to provide ca-certs. For example, many of our addons are based on alpine purely to install the `ca-certificates` package. I believe this is an anti-pattern: - Revoking or adding new ca-certificates requires rebuilding & redepl...
priority/backlog,kind/feature,sig/auth,help wanted,lifecycle/frozen
high
Critical
322,414,079
TypeScript
Extract function parameters or change function return type in mapped types
## Search Terms extract function parameters change function return type ## Suggestion Allow mapped types to change the return type of a function ## Use Cases I am writing a mocking framework. My system under test might be like this: ``` MyClass{ myClassFunction(paramOne: string, paramTwo: num...
Suggestion,Awaiting More Feedback
low
Major
322,428,108
kubernetes
Pod-specific dual client/serving cert auto-approval and validation
/kind feature **Problem**: As part of https://github.com/kubernetes/kubernetes/issues/62747, we need a way to authenticate serving pods (control plane & daemon set), i.e. provide serving certs. This proposal is for dealing with cases (2.a) & (3.a). **Idea**: 1. Pods initiate a certificate signing request wh...
priority/awaiting-more-evidence,kind/feature,sig/auth,lifecycle/frozen
medium
Major
322,428,297
go
x/build/cmd/gerritbot: commit message source confuses a lot of people
Mapping from the title/first comment -> Gerrit commit message is confusing to almost everyone. It would be nice if this were either more clear or the commit message was determined by a more user-friendly method. Since PRs can have multiple commits, squashing all commit messages into one for the final commit message is ...
help wanted,Builders,NeedsInvestigation
medium
Major
322,469,368
material-ui
[Collapse] Transition Breaks Inside Popover
<!--- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! โค๏ธ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should look like this: [x] --> - [x] I have searched the...
bug ๐Ÿ›,component: Collapse
medium
Critical
322,476,459
rust
Can't use #[derive] and macro on a generic type at the same time
[I have this code:](https://play.rust-lang.org/?gist=7f62c00d6734da5fa2d7ed3309a2fb84&version=stable&mode=debug) ````rust macro_rules! typ { () => { i32 }; } #[derive(Debug)] struct MyStruct<T> { field: typ!(), } ```` The compiler gives this error: ```` error: `derive` cannot be used on items wi...
C-enhancement,A-macros,T-compiler
low
Critical
322,503,706
three.js
Adopting a Progressive Photorealistic Global Illumination in Three.JS
There has recently been a bunch of work towards progressive photo-realistic global illumination in WebGL. The best example I've seen of this is https://cl3ver.com renderer. There is some overlap between this and the high end rendering that Octane and other photorealistic GPU renderers do. I think it is time to add th...
Enhancement
high
Critical
322,504,505
three.js
Render to Unwrapped Texture (for baking)
It is possible to modify the main ThreeJS shaders so that we can enable rendering a final color to an unwrapped texture target. This involves using the world position for lighting, but the desired UV coordinate when writing the final results. This should be implemented in a fairly flexible fashion to Three.JS. (...
Enhancement
low
Minor
322,504,525
three.js
Adding a Baking Workflow to Three.JS
This ties into the previous meta task that describes the progressive global illumination workflow. Basically once you can calculate global illumination, you likely want to bake it into the meshes for reuse. This would also be useful for ambient occlusion and shadow baking as well. There are two aspects to a baking...
Enhancement
low
Major
322,553,377
TypeScript
Generic enumerated type parameter narrowing (conditional types)
## Search Terms conditional type inference enum enumerated narrowing branching generic parameter type guard ## Suggestion Improve inference / narrowing for a generic type parameter and a related conditional type. I saw another closed-wontfix issue requesting generic parameter type guards, but a type guard should...
Suggestion,Needs Proposal
medium
Critical
322,554,703
rust
Error messages about modules are confusing to beginners
When a beginner [0] first tries to use modules, they are likely to do it wrong. The error message printed is misleading because it only mentions `extern crate foo` and never mentions ## Example Consider the following project: src/main.rs: ```rust use foo::say_hello; fn main() { say_hello(); } ``` ...
C-enhancement,A-diagnostics,T-compiler,D-newcomer-roadblock
low
Critical
322,590,259
godot
GIProbe indirect lighting on GridMaps not working
Godot 3.0.2 Win 7 64 bits GeForce 960 Hi there, I made a scene with an emissive material and Global Illumination, but lighting only throw on floor, but walls don't receive any bounces lighting. https://github.com/DevMagicLord/Godot3/blob/master/bugs/Giprobeissue.jpg While materials without normal map and ...
bug,topic:rendering,confirmed,topic:3d
medium
Critical
322,592,253
three.js
Texture preservation for mesh simplification(LOD)
##### Texture preservation for mesh simplifier Here's a model reduced to 40% of original vertex count with textures preserved. With this you can generate LOD instead of baking it. This modification of SimplifyModifier adds texturing support and is replacing face UVs on removed vertex to UV coordinates of remainin...
Enhancement
medium
Major
322,592,424
pytorch
[feature request] Global GPU Flag
The [PyTorch 0.4 Migration Guide](https://pytorch.org/2018/04/22/0_4_0-migration-guide.html), simplifies writing device-agnostic code as follows: ```python # at beginning of the script device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu") ... # then whenever you get a new Tensor or Module ...
feature,module: cuda,triaged
medium
Critical
322,611,727
rust
Unhelpful error with "overlapping" never applicable impls
These two implementations are overlapping (it's allowed to write `where for<'a> M: B<'a>` even when `M` doesn't implent `B<'a>`) but the error doesn't say this. ```rust trait A { /* ... */ } trait B<'a> {} struct M; impl A for M where for<'a> M: B<'a> { /* ... */ } impl A for M where for<'a> M: B<'a> { /* ......
A-trait-system,T-lang,C-bug
low
Critical
322,619,305
TypeScript
strictNullChecks false positives in case clause
<!-- ๐Ÿšจ STOP ๐Ÿšจ ๐—ฆ๐—ง๐—ข๐—ฃ ๐Ÿšจ ๐‘บ๐‘ป๐‘ถ๐‘ท ๐Ÿšจ Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! Please help us by doing the following steps b...
Bug
low
Critical
322,625,286
rust
Confusing error message when trying to cast usize to fat pointer
Trying to cast a `usize` to a fat pointer (in this case `*const T` where `T: ?Sized`) gives a confusing error message (in that it's not immediately obvious that it's invalid because it's a fat pointer): ``` error[E0606]: casting `usize` as `*const T` is invalid | 38 | self.0 as *const T | ^^^...
C-enhancement,A-diagnostics,T-compiler
low
Critical
322,632,157
flutter
On Android 5 (API 21) Appbar is shown behind the header on recent apps list
On Android when recent apps list is shown, appbar is still visible under the header. Can be observed more easily when `AppBar` `backgroundColor` is given explicitly ```dart return new Scaffold( appBar: new AppBar( // Here we take the value from the MyHomePage object that was created by /...
platform-android,framework,f: material design,a: fidelity,e: OS-version specific,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-android,triaged-android
low
Major
322,663,405
rust
#[derive] fails to detect associated type when qualified path is used
The deriving code scans the field types in order to generate bounds on associated types, if they happen to be used as a field type (this isn't foolproof but it catches a lot of cases). https://github.com/rust-lang/rust/blob/9fae1537462bb10fd17d07816efc17cfe4786806/src/libsyntax_ext/deriving/generic/mod.rs#L350-L352 ...
A-macros,A-associated-items,T-compiler,C-bug,T-types
low
Critical
322,668,948
pytorch
[Caffe2] Build broken on macOS High Sierra: can't find sys headers in /usr/local/include.
Information about what failed when building from HEAD (see error logs.) /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_8a5ea.dir/build.make CMakeFiles/cmTC_8a5ea.dir/build Building CXX object CMakeFiles/cmTC_8a5ea.dir/src.cxx.o /Applications/Xcode.app/Contents/Developer/Toolchains/Xcode...
caffe2
low
Critical
322,708,387
flutter
Provide a Backdrop Widget
Please provide a backdrop widget in flutter library
c: new feature,framework,f: material design,P3,team-design,triaged-design
medium
Major
322,709,814
opencv
MSER different results in transition from 2.4 to 3 version
Due to the facts that default parameters value have not changed in transition from opencv2.4 to 3 we expect to not get different regions with our previous parameters setting but we get absolutely different and wrong regions with those parameters (exactly the same, except the mask which is not an argument for mser anymo...
category: imgproc,incomplete,needs reproducer
low
Critical
322,754,722
material-ui
[Table] Improve mobile display / responsive stacking
# Feature Request Can you guys make the table responsive to break into pieces with its Heading while right now we have to scroll left/right in mobile devices? ## Expected Behavior ![image](https://user-images.githubusercontent.com/25475456/39991642-ea7b312e-578f-11e8-8aed-a2c380c87a0c.png) **Example** : -...
new feature,waiting for ๐Ÿ‘,component: table,mobile
medium
Critical
322,839,617
javascript
Shown Example Is Not Appropriate for arrays--callback-return
[4.6 in Readme](https://github.com/airbnb/javascript#arrays--callback-return) last example is shown as ``` inbox.filter((msg) => { const { subject, author } = msg; if (subject === 'Mockingbird') { return author === 'Harper Lee'; } return false; }); ``` but its no...
needs followup,editorial
low
Minor
322,842,935
flutter
add2app: flutter run --use-application-binary should launch by Intent
In add2app scenarios, a single Android package may have multiple launchable Activities, only one of which should be the default one. Parsing `aapt` output doesn't seem to be able to tell us which one is default, whereas launching by specific intent does the correct thing: ``` shell am start -a android.intent.action.M...
platform-android,tool,engine,a: existing-apps,P2,team-android,triaged-android
low
Minor
322,933,797
godot
Editor randomly freezes computer
**Godot version:** 3.0.2 Stable **OS:** Windows 8.1 laptop _edit: more specs_ **CPU:** Intel Core i3-5005U **Graphics:** IntelHD 5500 I've been using Godot for around a week or so, but I've been getting a very serious problem: in random instances, my *whole computer* freezes, including the cursor. I have to hard...
bug,topic:editor,confirmed
high
Critical
322,954,466
rust
use `evaluate_obligation` to decide when to do unsized coercions
As part of the coercion logic, we sometimes invoke `coerce_unsized`: https://github.com/rust-lang/rust/blob/cb1ce7ddf8e791faddc9760ca505d513ce1c00c9/src/librustc_typeck/check/coercion.rs#L457 This would e.g. coerce from `&[T; 32]` to `&[T]` or from `Arc<T>` to `Arc<dyn Trait>` where `T: Trait`. To decide whether ...
C-enhancement,A-trait-system,T-compiler,A-coercions,T-types,S-types-tracked
low
Major
323,042,001
godot
Audio with compress mode set to RAM always plays from the beginning
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** 47d4a01 **Issue description:** I don't know if this is just a limitation or not, but if a audio file has its compress mode set to RAM (Ima-ADPCM), ...
bug,confirmed,topic:audio
low
Major
323,068,573
electron
Disallow permission requests by default
**Is your feature request related to a problem? Please describe.** Electron is known for being insecure. It should come with better security defaults. **Describe the solution you'd like** The Electron [security checklist](https://github.com/electron/electron/blob/master/docs/tutorial/security.md#4-handle-sessi...
enhancement :sparkles:
low
Major
323,077,857
react
Provide ways to do post-mortem analysis of โ€œMaximum update depth exceededโ€ error in production.
<!-- Note: if the issue is about documentation or the website, please file it at: https://github.com/reactjs/reactjs.org/issues/new --> **Do you want to request a *feature* or report a *bug*?** Feature **What is the current behavior?** Our error logging systems has been reporting this error in production...
Type: Feature Request
medium
Critical
323,108,216
TypeScript
[Regression] TS2562 - mixins cannot accept generic types
**TypeScript Version:** 2.6.0 and more **Search Terms:** mixin, 2.6. **Code** ```ts export interface Constructor<T = any> extends Function { new(...args: any[]): T; } class A<T> { public a: T; } class B<T> { public b: T; } function Mixin<T>(...classes: any[]): Constructor<T> { return ...
Suggestion,Awaiting More Feedback
medium
Critical
323,123,506
pytorch
[Caffe2]How to set lr_mult and decay_mult in Conv layer?
In facebookresearch/detectron, I see a conv layer is add by: conv_rpn_fpn = model.Conv( bl_in, 'conv_rpn_fpn' + slvl, dim_in, dim_out, kernel=3, pad=1, stride=1, weight_init=gauss_fill(0.01), bias_init=const_fill(0.0) ) Ho...
caffe2
low
Critical
323,151,532
pytorch
the latest version of caffe2, Which file is the function loadToNCHW()
I installed caffe2 with https://github.com/pytorch/pytorch.git. the function loadToNCHW() didn't find.
caffe2
low
Minor
323,207,942
opencv
Video reader can't read new frames after reaching the end of continuously written video
##### System information (version) - OpenCV => 3.4.1 - Operating System / Platform => Linux Ubuntu 16.04 x86_64 - Compiler => gcc (Ubuntu 5.4.0-6ubuntu1~16.04.9) 5.4.0 20160609 ##### Detailed description It is currently possible to read and write the same video file if container and codec supports reading of...
priority: low,category: videoio
low
Critical
323,294,132
go
reflect: permit unexported fields in StructOf
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.10.2 linux/amd64 ### Does this issue reproduce with the latest release? yes ### What did you do? ``` package main import "fmt" import "reflect" func main() ...
help wanted,NeedsFix
medium
Major
323,298,172
go
reflect: the string representation of the type with anonymous fields and created by StructOf looks the fields are not anonymous
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.10.2 linux/amd64 ### Does this issue reproduce with the latest release? yes ### What did you do? ``` package main import "fmt" import "reflect" type MyInt i...
NeedsInvestigation,compiler/runtime
low
Minor
323,308,151
vscode
Add commands to outline elements
The outline view should offer commands that can be run straight from an element. E.g. rename but also triggering things like find references et al. Similar to the editor-context-menu this could be made open for contributions
feature-request,outline
medium
Critical
323,324,044
go
x/build/cmd/relui: collect open source NOTICES into top-level NOTICES file?
We should probably make x/build/cmd/release collecting all the misc LICENSE/NOTICE files from the packages we depend on and concatenate them all together into one top-level NOTICES file next to our LICENSE file in Go's release. We'd also need to make such NOTICE files for each directory where the notice is currently...
help wanted,Builders,NeedsFix
low
Minor
323,386,507
go
proposal: io: add OnceCloser helper
Proposal, to add to the `io` package: ```go // OnceCloser returns a Closer wrapping c that guarantees it only calls c.Close // once and is safe for use by multiple goroutines. Each call to the returned Closer // will return the same value, as returned by c.Close. func OnceCloser(c Closer) Closer { return &once...
Proposal,Proposal-Hold
medium
Critical
323,398,404
flutter
FlutterDriver.scrollUntilVisible scrolls when the item to find is onscreen
`scrollUntilVisible` should not attempt to scroll when the item to find is onscreen, but we often see one extra scroll. This is particularly problematic when the item to find is at the top of the screen, in which case we may scroll it offscreen, resulting in a failure in the [`scrollIntoView` call](https://github.com/f...
tool,t: flutter driver,P2,team-tool,triaged-tool
low
Critical
323,406,891
rust
Doctests don't work in bin targets, non-public items
It's surprising that doctests sometimes don't run at all, and there's no warning about this. ```sh cargo new foo --bin ``` ```rust /// ```rust /// assert!(false); /// ``` fn main() { println!("Hello, world!"); } ``` ```sh cargo test --all ``` I'd expect the above to fail, but it looks like th...
T-rustdoc,C-enhancement,A-doctests
high
Critical
323,419,885
TypeScript
Simplify error messages against intersections of weak types
I spoke a bit with @sandersn about ways we can tackle the type madness issue (#14662). I noted that JSX scenarios are much more broadly applicable right now and are pretty prevalent given the sorts of type arithmetic we see a lot of in the React community. :smiley: # Problem: JSX optional attributes make errors too...
Suggestion,Domain: Error Messages,Experience Enhancement
low
Critical
323,577,767
pytorch
Inconsistent interactions of PyTorch tensors and NumPy ops
```python import numpy import torch type(numpy.sum([torch.tensor(0, requires_grad=True)])) # returns torch.Tensor type(numpy.sum([torch.tensor(0)])) # returns numpy.int64 ``` cc @mruberry @rgommers @heitorschueroff
triaged,module: numpy
low
Major
323,580,637
flutter
OverscrollNotification does not work on iOS
## Steps to Reproduce 1. Add an OverscrollNotification to a ListView, take Gallery as an example 2. Scroll down to the bottom of the list 3. There's no notification callback on iOS, while OK on Android. Modify the Gallery code as an example, list_demo.dart line 237 The code after modified: ```dart body:...
platform-ios,framework,f: material design,f: scrolling,f: cupertino,d: api docs,customer: alibaba,has reproducible steps,P2,workaround available,found in release: 3.7,found in release: 3.10,team-ios,triaged-ios
low
Critical
323,582,003
go
os: ambiguous documentation of type FileMode
### What version of Go are you using (`go version`)? N/A ### Does this issue reproduce with the latest release? Yes ( [latest document online](https://golang.org/pkg/os/#FileMode) ) ### What operating system and processor architecture are you using (`go env`)? N/A ### What did you do? Read [documentation o...
Documentation,help wanted,NeedsFix
medium
Major
323,587,722
TypeScript
Support `export { x as default }` in namespace declarations
<!-- ๐Ÿšจ 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,In Discussion
low
Critical
323,621,511
pytorch
[Caffe2] modify op in the net from init and predict files
I have a trained model stored as init.pb and predict.pb files. I load them successfully and print predict. one of the operations appears to be: ``` op { input: "300" input: "298" output: "301" name: "" type: "Add" arg { name: "broadcast" i: 1 } } ``` I would like to change the...
caffe2
low
Minor
323,664,888
angular
Animations - child element triggers not performing easing
<!-- PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION. ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION. --> ## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopp...
type: bug/fix,area: animations,freq2: medium,P3
low
Critical
323,671,328
go
cmd/compile: revisit statement boundaries CL peformance and binary size impact
Volunteer (and often reluctant) toolspeed cop here. (Sorry, @dr2chase.) [CL 102435](https://go-review.googlesource.com/102435) has a non-trivial impact on compilation speed, memory usage, and binary size: ``` name old time/op new time/op delta Template 176ms ยฑ 2% 181ms ยฑ 3% +...
ToolSpeed,NeedsInvestigation
medium
Critical
323,727,267
pytorch
checkpoint(function, *args) should have the same requires_grad as function(*args)
## Issue description In principle, to my understanding, checkpoint(function, *args) should behave exactly the same during forwarding as function(*args). However, now, if the all the inputs have requires_grad to be False, the output will also checkpoint(...) will also have requires_grad to be False. While function...
module: checkpoint,module: autograd,triaged
medium
Critical
323,766,630
go
cmd/gofmt: better error message when gofmt is out of date
It's not uncommon to run an old gofmt that may not be up-to-date with the latest syntactic changes (most recently, alias type declarations). There may be future (Go 2) changes where this becomes more acute. When gofmt reports a syntax error, we may want to compare the gofmt (build time) version with the current "go ...
NeedsInvestigation
low
Critical
323,776,755
neovim
TUI + guicursor : artifacts on mode-change
<!-- Before reporting: search existing issues and check the FAQ. --> - `nvim --version`: ``` NVIM v0.2.3-856-g0848add48 Build type: Release LuaJIT 2.0.5 Compilation: /usr/local/Homebrew/Library/Homebrew/shims/super/clang -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DNVIM_MSGPACK_HAS_FLOAT32 -DNVIM_UNIBI_...
bug,tui,display
low
Critical
323,791,051
flutter
Scrollable.ensureVisible is not useful for items scrolled out of view.
Internal: b/292548523 When a context is thrown out, it's not possible to ensure that it's visible. To reproduce in the Flutter Gallery: https://github.com/flutter/flutter/compare/master...DaveShuckerow:ensure-visible?expand=1 It would be helpful to have APIs for scrolling a Scrollable in the direction of somethi...
c: new feature,framework,f: scrolling,customer: mulligan (g3),P2,team-framework,triaged-framework
low
Major
323,820,956
opencv
imreadmulti cannot read 32-bit
##### System information (version) - OpenCV => 3.1 - Operating System / Platform => Windows 64 Bit - Compiler => Visual Studio 2017 and - Operating System / Platform => ubuntu 16.4 - Compiler => gcc-7 ##### Detailed description 32-bit image stacks which include several slices but can only be identified...
priority: low,category: imgcodecs
low
Minor
323,910,392
neovim
call sync() on CursorHold
https://github.com/neovim/neovim/pull/8304 changed `nofsync` to be somewhat more robust, in particular swapfiles are fsync'd on CursorHold. But we could also call [sync()](https://en.wikipedia.org/wiki/Sync_(Unix)) on CursorHold, to reduce dependence on swapfiles. However a small but probably worthwhile optimization...
enhancement,performance,robustness,io,system
low
Critical
323,915,539
rust
"#[derive] can't be used on a non-Copy #[repr(packed)] struct" but struct is Copy
Reported by @retep998 at https://github.com/rust-lang/rust/issues/46043#issuecomment-389696974, here's a minimal example: ```rust #[repr(packed)] #[derive(Debug)] struct Foo { x: usize, } impl Clone for Foo { fn clone(&self) -> Self { Foo { x: self.x } } } impl Copy for Foo {} ``` [p...
C-bug,A-repr-packed
low
Critical
323,954,543
go
x/cmd/gotype: undeclared name: _Ctype_struct_bpf_program
Cgo struct types of the form `_Ctype_struct_` seems to be unknown to `gotype`. ### What version of Go are you using (`go version`)? go version go1.10.2 linux/amd64 ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? GOARCH...
NeedsInvestigation
low
Critical
324,034,970
vscode
Feature request: Allow Code Outline in Minimap location
I'm using the VS Code insiders build, which has Code Outline built in. I loved this feature from Nuclide, but in its current incarnation it's not as useful as it could be (to me). I have to choose now between file tree (or git or any other of course) sidebar and Code Outline, but I'd prefer to always have it next to my...
feature-request,outline
medium
Critical
324,090,250
go
brand: presentation theme: awkward overlap on Quote slide
In the second Quote slide of the Go presentation theme (https://golang.org/s/presentation-theme#slide=id.g33148270ac_0_439), the name at the bottom often just barely clips the top of the jellyfish picture (see the letter โ€˜Rโ€™ in the screenshot below). None of the rest of the text on that slide clips into the pictures...
NeedsInvestigation
low
Minor
324,102,417
go
html/template: does not recognize rgb() as a CSS color
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? tip ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using (`go env`)? does not matter ### What did you do? An...
help wanted,NeedsInvestigation
low
Major
324,133,442
rust
Warn and eventually forbid transmute::<T, U> for T or U with unspecified (Rust) layout
It is a fairly commonplace mistake to do a `transmute::<T, U>` for `T` and `U` which are not necessarily compatible, but happen to work at that some particular point in time. These transmutes either change in behaviour when the compiler is updated or stop compiling altogether (because the size of T and size of U are no...
A-lints,T-compiler,C-feature-request
medium
Critical
324,163,074
TypeScript
Revise whitespace handling in JSDoc
Ref #24184 Our JSDoc scanner currently always scans whitespace and newlines as significant - the constant need to skip or ignore these tokens, then fix up node positions to account for them (or ignore them) is a brittle process - especially as the jsdoc scanner is interwoven with the normal scanner for certain parts...
Bug
low
Minor
324,187,566
flutter
Updated AppBar action button during validate callback in TextFormField
Internal: b/292548353 Requirement: When `TextFormField` validate callback detects an error, update the AppBar in the Scaffold to disable an action button. I was trying to call setState in the validate callback to trigger another widget.build() call. Unfortunately I get "setState() or `markNeedsBuild()` called duri...
a: text input,framework,customer: mulligan (g3),has reproducible steps,P2,found in release: 3.3,found in release: 3.5,team-framework,triaged-framework,fyi-text-input
low
Critical
324,202,952
TypeScript
Cannot create declaration files from static factory class returned from a function.
**TypeScript Version:** 2.8 and 2.9 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** Cannot create declaration files from static factory class returned from a function. **Code** (pay special attention to `class SomeClass`) ```ts namespace T...
Bug
low
Critical