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 |
|---|---|---|---|---|---|---|
501,425,924 | flutter | Text not rendered in snapshot test | I am having problems with snapshot testing. My text is not rendered. When I run the app itself everything works perfectly.
```
void main() {
testWidgets('Test an account Overview Item', (tester) async {
await tester.pumpWidget(TestWrapper());
await tester.pumpAndSettle();
await expectLater(
... | a: tests,framework,d: api docs,P2,team-framework,triaged-framework | low | Major |
501,439,297 | bitcoin | contrib: makeseeds.py improvements | Some suggestions for improvements, or at least for discussion between major releases:
- [x] Read [suspicious hosts](https://github.com/bitcoin/bitcoin/pull/16999#issuecomment-536869449) from a file (done in #17823, removed completely in #24862)
- [x] [Determinism](https://github.com/bitcoin/bitcoin/pull/16999#is... | P2P,Scripts and tools,good first issue | medium | Minor |
501,555,165 | godot | Unrecoverable renaming error (without manual file edition) | **Godot version:**
branch master, commit bf8322376c97eee0f2ce25737c959bc33b945e60
**OS/device including version:**
Linux Mint 18.2 cinnamon 64bits
**Issue description:**
After an error of renaming in the editor, scene can not be opened anymore.
**Steps to reproduce:**
- in a scene, append another scene (... | bug,topic:editor,confirmed | low | Critical |
501,557,588 | vue | transitions with appear should be SSR with the "-enter" class | ### Version
2.6.10
### Reproduction link
```sh
mkdir vue-bug-repo
yarn init -y
yarn add vue vue-server-renderer
```
```js
// Step 1: Create a Vue instance
const Vue = require('vue')
const app = new Vue({
data: () => ({ show: true }),
template: `<div>
<transition appear name="fade">
... | transition | low | Critical |
501,558,994 | TypeScript | If all values used in a template literal have a literal type, then the template should have a literal type | <!-- π¨ STOP π¨ π¦π§π’π£ π¨ πΊπ»πΆπ· π¨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker.
Please help us by doing the following steps before logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the FAQ, especia... | Suggestion,In Discussion | low | Critical |
501,560,367 | rust | wrap llvm messages | When using `-Cpasses=lint`, llvm prints its messages directly into stderr
````
Compiling smallvec v0.6.10
Compiling syn v1.0.5
Unusual: unreachable immediately preceded by instruction without side effects
unreachable, !dbg !113
Unusual: unreachable immediately preceded by instruction without side effects
... | A-LLVM,C-enhancement,A-diagnostics,T-compiler | low | Minor |
501,561,007 | scrcpy | Chrome on Android 10 won't work if screen is off. | I actually imagine this is likely Chrome's fault, from recent updates, but leaving info here in case:
Pixel 2 XL, Android 10. Chrome and Chrome Beta will not work correctly if using scrcpy 1.10 on Windows 10, and I've turned the phone display off.
Both versions of Chrome will stop rendering tabs usually. If the... | screenoff | low | Major |
501,572,406 | pytorch | pytorch data_parallel oom on gpu:0 | I try espnet(https://github.com/espnet/espnet) with pytorch(1.0.1.post2), the data_parallel interface is used as follows, however the GPU memory usage on gpu:0 gradually increases and finally OOM, I do not know what causes the problem, so I ask for help here. The revelant issue for espnet is here: https://github.com/es... | module: memory usage,triaged,module: data parallel | low | Minor |
501,649,458 | TypeScript | Object with keys named after variables using [myVar] syntax breaks symbol lookup in TS 3.7.0-dev.20191002 | **TypeScript Version:** 3.7.0-dev.20191002
**Search Terms:** object keys key symbols found
**Code**
Open `Go to symbol in file` (or equivalent) for:
```ts
const foo = 'foo'
const bar = 'bar'
const obj = {
[foo]: 'foo-value',
[bar]: 'bar-value'
};
```
**Expected behavior:**
- foo
- bar
- ob... | Bug,Rescheduled | low | Critical |
501,679,719 | rust | Suggest .err().expect() if .expect_err() is not implemented | If `T` in `Result<T, _>` is not `fmt::Debug`, the following will fail to compile. The compiler rightfully blames `fmt::Debug` not being implemented for `Result<Foo, ()>`.
```rust
struct Foo;
Result::<Foo, _>::Err(()).expect_err("Foo!");
```
However, users may get stuck if they can't - for whatever reason - a... | C-enhancement,T-compiler,A-suggestion-diagnostics,A-result-option | low | Critical |
501,697,344 | flutter | TextStyleTween has unexpected lerping behavior for underlines | When TextStyleTween is lerping between two TextStyles, one with and the other one without an underline, I expect it to provide fading transition on the underline. Currently, the underline suddenly appears/disappears in the middle of transition.
## Steps to Reproduce
1. Define two text styles one with an underlin... | c: new feature,framework,P2,team-framework,triaged-framework | low | Major |
501,712,291 | flutter | Test external texture support using the Embedder unittests harness. | There are currently not tests for this in either the embedder or shell unittests target. Not that both support OpenGL via SwiftShader, the requisite tests must be added. | a: tests,engine,e: embedder,P2,team-engine,triaged-engine | low | Minor |
501,716,097 | flutter | Measure flutter tools memory usage | Developers have complained that our tools or IDEs drain their host machine memory.
Our first step will be to measure the memory usage in our controlled lab environment to have a sense of the minimum memory needed to build and run a Flutter app.
Here's some draft drawings of what we'd like to measure:
 from @ehuss's ne... | C-enhancement,I-compiletime,T-compiler,A-contributor-roadblock,A-query-system | medium | Critical |
501,830,732 | godot | .vs Visual Script file corrupting to RSCC | ___
***Bugsquad note:** This issue has been confirmed several times already. No need to confirm it further.*
___
**Godot version:**
3.1.1 and 3.2
**OS/device including version:**
Windows 10 and Mac OS 10.14.6
**Issue description:**
Visual Script files are becoming corrupted and the data disappears. Th... | bug,topic:core,confirmed,topic:visualscript,high priority | medium | Critical |
501,844,506 | node | The differences between http2 compatibility API and http[s] | Thanks to the efforts of making the compatibility API, differences between `http[s]` and `http2` modules seldom annoy developers.
But, some http2 compatibility API still behaves differently and lacks some APIs from `http[s]` and it causes breakages to ecosystems for `http[s]`(e.g. https://github.com/expressjs/express/... | http,https,http2 | medium | Critical |
501,845,547 | rust | Add an unstable 'extra randomization' compile-time flag for hashers | When working on https://github.com/rust-lang/rust/pull/64906, I ran into a latent dependency on the iteration order of a `HashMap`. This resulted in the PR becoming unmergeable - since a `FxHashMap` was being used, the iteration order ended up differing between platforms, which made it impossible to make the tests pass... | A-testsuite,C-enhancement,T-compiler,T-bootstrap,C-feature-request,A-reproducibility | low | Major |
501,848,189 | pytorch | Add in-place view (view_) | ## π Feature
Add support for an in-place version of the `view` operation called `view_`.
## Motivation
Often, view is used to manipulate an existing Tensor in the following way:
`x = x.view(...)`
Since this is such a standard use case, I think adding a `view_` function is useful:
`x.view_(...)`
This... | triaged,function request,module: viewing and reshaping | low | Minor |
501,905,292 | flutter | Document how to use Intl in Flutter (specifying the locale obtained from the widget tree) | <!-- Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
* https://flutter.dev/
* https://api.flutter.dev/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you hav... | framework,a: internationalization,d: api docs,P2,team-framework,triaged-framework | low | Critical |
501,923,727 | storybook | [addon-docs] DocGen description are not displayed with StyledComponent | **Describe the bug**
Description related to the component or to the props are not displayed when component is based on StyledComponent.
**To Reproduce**
Steps to reproduce the behavior:
1. Create a component based on StyledComponent
2. Launch Storybook
**Expected behavior**
Should display description as expe... | bug,react,has workaround,addon: docs,block: props | medium | Critical |
501,928,986 | thefuck | Installing Redis instead of RabbitMQ after using fuck | The output of `thefuck --version` (something like `The Fuck 3.1 using Python
3.5.0 and Bash 4.4.12(1)-release`):
`The Fuck 3.29 using Python 3.6.8 and Bash 4.4.20(1)-release`
Your system (Debian 7, ArchLinux, Windows, etc.):
Linux Mint 19.2 Tina
How to reproduce the bug:
So I was trying to install RabbitMQ, a... | enhancement,help wanted,hacktoberfest | low | Critical |
501,967,412 | opencv | Natural feature tracking(NFT)/ Feature Matching in videostream for Javascript | Hello. I want to run Natural feature tracking(NFT) with video stream, it is possible with this lib?
Any example? | incomplete | low | Minor |
501,994,936 | puppeteer | Feature Req: chrome context menu testing | I am developing a Chrome extension that makes extensive use of the context menu. Currently I am unable to test that with Puppeteer.
And Puppeteer is supposed to be an all-round solution for chrome testing, right?
So.. can we add this (and more generally - extension testing overall) to the roadmap? | feature,confirmed | low | Major |
502,008,539 | scrcpy | [Feature Request] Copying files from Android to PC by invoking ACTION_GET_CONTENT intent and using adb pull | Is it possible to add a feature, such that when a specified keywords are pressed (ex: Ctrl + Shift + F) the scrcpy application running in Android device will invoke an intent to select a file name/content and then using the adb pull on the server/PC to save the selected file into PC.
Thank you. | feature request | low | Minor |
502,084,077 | PowerToys | Add Calendar Week Numbers to systray calendar | Some places use week numbers on their calendars as of right now the only way to get them on windows tray is to use third party calendars.
| Idea-New PowerToy | medium | Critical |
502,167,180 | react | DevTools not properly shutting down between reloads in some cases | Noticed this while testing the recently added "highlight updates" feature. It seems like relying on the content script's "disconnect" to shutdown things is too late, and we seem to be leaving at least an `Agent` (possibly more) connected.
I think we may want to add some cleanup code to our initialization path (of th... | Component: Developer Tools,React Core Team | medium | Minor |
502,170,551 | pytorch | CUDA error: device-side assert triggered(insert_events at /pytorch/c10/cuda/CUDACachingAllocator.cpp:569) | ## π Bug
During the training of image classification model, I met some problem:
losses.update(loss.item(), input.size(0))
RuntimeError: CUDA error: device-side assert triggered
terminate called after throwing an instance of 'c10::Error'
what(): CUDA error: device-side assert triggered (insert_events at /py... | module: cuda,triaged | low | Critical |
502,172,832 | flutter | Fix example tests and enable them on CI in Web mode | We currently skip all `packages/flutter/test/examples` tests on CI because they fail. We should fix them. | a: tests,framework,platform-web,P2,team-web,triaged-web | low | Minor |
502,190,385 | flutter | Textspan does not support MultiTapGestureRecognizer | <!-- Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
* https://flutter.dev/
* https://api.flutter.dev/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you hav... | a: text input,c: crash,framework,a: accessibility,has reproducible steps,P2,found in release: 3.3,found in release: 3.5,team-framework,triaged-framework | low | Critical |
502,208,132 | flutter | [web]: HTML Reading Mode for Static Content | ## Use case
When building a simple site and you want to let the use use reading mode in Safari or Google Chrome it would be nice to semanticly render the H1 and text tags for the flutter widgets. Example Flutter website blog: https://rodydavis.com/#/blog
## Proposal
Render a invisible H1 and Text tree that the... | c: new feature,engine,platform-web,c: proposal,e: web_html,P3,team-web,triaged-web | medium | Major |
502,221,603 | pytorch | Tensorboard add image with boxes, labels, and confidence scores. | ## π Feature
<!-- A clear and concise description of the feature proposal -->
Add a method to `torch.utils.tensorboard.writer.py` that will take an image, list of bounding boxes, list of class ids, and list of confidence scores and adds a summary to the events file.
## Motivation
<!-- Please outline the motivati... | triaged,module: tensorboard | low | Major |
502,234,422 | scrcpy | [FEATURE REQUEST] Native support for Wifi Direct or mesh networking. | Wifi Direct implementation:
https://stackoverflow.com/questions/31877144/how-to-set-up-a-wifi-direct-connection-between-android-and-linux
https://github.com/NaniteFactory/Wifi-Direct-on-Linux
https://android.googlesource.com/platform/development/+/master/samples/WiFiDirectDemo
Mesh networking:
https://github.com... | feature request | low | Minor |
502,266,006 | pytorch | torch.Tensor.mean erroneously documented as sometimes returning a tuple | [torch.Tensor.mean](https://pytorch.org/docs/master/tensors.html#torch.Tensor.mean) is documented to sometimes return a tuple, but [torch.mean](https://pytorch.org/docs/master/torch.html#torch.mean) is not. | module: docs,triaged,module: reductions | low | Minor |
502,272,352 | kubernetes | Pods get stuck in ContainerCreating state when pulling image takes long | **What happened**:
If pulling a docker image takes a bit longer than usual, pods are never created.
**What you expected to happen**:
Kubernetes to wait or retry pulling.
**How to reproduce it (as minimally and precisely as possible)**:
Throttle download speed to the docker registry where you are pulling it f... | kind/bug,priority/backlog,sig/node,triage/accepted | high | Critical |
502,276,950 | go | html/template: document ability to modify FuncMap after template parse by calling Funcs again | # Background
I have a bunch of templates that have a complex dependency structure like:
A -> B, D, E
B -> E, F
C -> E, G
D -> F, H
E -> H
F -> nil
G -> nil
H -> nil
The contents of the corresponding files ('A.tmpl', 'B.tmpl', etc.) are static; however, the `templ... | Documentation,help wanted,NeedsFix | medium | Major |
502,308,233 | go | proposal: unsafe: clarify unsafe.Pointer rules for package syscall | unsafe.Pointer's rule 4 says:
> Conversion of a Pointer to a uintptr when calling syscall.Syscall.
>
> The Syscall functions in package syscall pass their uintptr arguments directly to the operating system, which then may, depending on the details of the call, reinterpret some of them as pointers. That is, the sys... | Proposal,Proposal-Hold | medium | Critical |
502,310,688 | flutter | Flutter driver test won't tap on empty GuestureDetector | I replaced the `FloatingActionButton` in the standard flutter example app (created with a driver test) with
```
floatingActionButton: SizedBox(
height: 200,
width: 200,
child: GestureDetector(
key: Key('target'),
onTap: _incrementCounter,
behavior: ... | a: tests,tool,t: flutter driver,P3,team-tool,triaged-tool | low | Critical |
502,331,792 | pytorch | Allow one inferred axis in torch.split | ## π Feature
Currently `split_with_sizes` expects to fully span the given dimension. Similar to `view()` it will be nice to allow `-1` to mean a split should be inferred.
## Motivation
```python
import torch
a = torch.arange(15).reshape(3,5)
splits = torch.split(a, [1, 2, 2], 1)
```
In order to do a split ... | triaged,enhancement | low | Critical |
502,345,488 | pytorch | [jit] `ScriptFunction`s are loaded as `ScriptModule`s | If you have a `ScriptFunction` and you save it, then load it in the resulting object is a `ScriptModule`, not a `ScriptFunction`.
cc @suo | oncall: jit,triaged | low | Minor |
502,358,528 | flutter | Provide embedder sample project inside engine repo | Chinmay has a gist for embedding flutter using glfw: https://gist.github.com/chinmaygarde/8abf44921f7d87f6da7bf026267c4792
We should move that into flutter/engine and get a LUCI script that builds it to make sure that it is always up to date and compiling. We could create a CMake build file to make it easy for peop... | engine,d: examples,e: embedder,P2,team-engine,triaged-engine | low | Major |
502,359,725 | rust | Bounds on associated types prevent a trait from being dyn-compatible | [playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=b33e91b1b5bbcc0de0a646cf9622f74c)
```rust
trait Foo {
type Bar: Other<Self::Bar>;
}
impl dyn Foo<Bar = ()> {}
trait Other<T> {}
impl<T> Other<T> for T {}
```
Doesn't compile with the error,
```
error[E0038]: the trait `Foo` c... | A-trait-system,A-associated-items,T-lang,T-compiler,C-bug,A-trait-objects | low | Critical |
502,365,576 | youtube-dl | Site support request: Yelo Play | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | site-support-request | low | Critical |
502,635,913 | youtube-dl | kuaishou | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | site-support-request | low | Critical |
502,638,474 | flutter | [Desktop] - Splash screen or background color customization | Internal: b/233627067
## Use case
For desktop support, it would be nice to have an easy way to configure a splash screen or a window background color (visible before Flutter first frame is rendered).
## Proposal
Add properties in c++ code (win32_flutter_window.cc, flutter_glfw.cc, etc) or in a configuration f... | c: new feature,engine,platform-mac,platform-windows,customer: crowd,platform-linux,customer: google,a: desktop,P2,team-macos,triaged-macos | low | Critical |
502,680,092 | flutter | Creating a Podfile to add iOS pods before adding any Flutter plugins never hooks up the plugin pods in the existing Podfile | We are currently experiencing an issue where the flutter plugins (specifically, url_launcher) fails to compile during the Xcode build phase. It is related to the issue referenced here: https://github.com/flutter/flutter/issues/27893#issuecomment-463720629
When adding in "url_launcher: ^3.0.2" to the .yaml file and r... | platform-ios,tool,t: xcode,P3,team-ios,triaged-ios | medium | Critical |
502,681,318 | flutter | Plugins are displayed as modules in Android Studio [existing app as module] | *@Sese-Schneider commented on Oct 3, 2019, 10:24 AM UTC:*
## Steps to Reproduce
1. Add a flutter project _with plugins_ to an existing android app as described [here (as module)](https://github.com/flutter/flutter/wiki/Add-Flutter-to-existing-apps#2-depend-on-the-modules-source-code)
2. Open the existing android ap... | tool,a: existing-apps,P3,team-tool,triaged-tool | low | Major |
502,689,569 | rust | A single method to rotate slices or vecs | Hello,
I know there's already 2 methods to rotate slices or vec (rotate_right and rotate_left).
But they both accept unsigned numbers exclusively.
Why not a single method which could accept a signed number ?
A positive number would turn to the right and a negative one to the left | T-libs-api,C-feature-request | low | Major |
502,721,890 | godot | LightOccluder2D lets light through on Android when using GLES2 | **Godot version:**
3.1.1
**OS/device including version:**
Win 10 / Android. Xiaomi Pocophone F1
**Issue description:**
When exporting to Android using GLES2, LightOccluder2D lets through light as seen in the picture below. The light is displayed correctly when switching to GLES3.
_ There's been discussion before about allowing custom theming, hypothetically powered by XAML. Wou... | Help Wanted,Area-UserInterface,Area-Settings,Product-Terminal,Issue-Task | low | Major |
502,783,369 | flutter | Fix and re-enable EmbedderTest.CanLaunchAndShutdownMultipleTimes. | engine,P2,team-engine,triaged-engine | low | Minor | |
502,786,703 | flutter | Use libdispatch for concurrent workqueues on Darwin. | engine,P2,team-engine,triaged-engine | low | Minor | |
502,788,274 | TypeScript | bind, call and apply do not work on unions of function types with different return types. | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.6.3
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
call, bind, apply, function, functions, Function.prototype.call, Funct... | Suggestion,Awaiting More Feedback | low | Critical |
502,808,935 | youtube-dl | [niconico] Support for HLS-only videos | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | account-needed | low | Critical |
502,817,132 | flutter | Investigate ios-webkit-debug-proxy for debugging Flutter for Web apps on a connected iOS device | The chrome remote device debugging does not currently work for non-Android device. The article below describes how to set up ios-webkit-debug-proxy to remotely debug web pages
https://medium.com/@nikoloza/how-to-debug-remote-ios-device-using-chrome-devtools-f44d697003a7
@mdebbar @nturgut and I weren't able to get... | tool,platform-web,P2,team-web,triaged-web | low | Critical |
502,826,932 | rust | Audit ABI implementations in rustc_target (vs Clang). | In https://github.com/rust-lang/rust/pull/63649#issuecomment-537896684 I wrote:
> The `wasm-bindgen` mismatch could've been avoided, had we validated the call ABI by comparing it with what Clang does, when it was initially implemented (to be clear, I think I dropped the ball here).
>
> Irrespective of what happens t... | A-codegen,A-FFI,T-compiler,WG-llvm,A-ABI | low | Major |
502,837,879 | godot | Mono export templates lack mono shared libs on Linux system using /usr/lib64 | **Godot version:**
3.2 master (5a23ab61)
**OS/device including version:**
Linux, RPM-based distro or similar using `/usr/lib64` for 64-bit libraries (versus `/usr/lib` on Debian-based distros).
**Issue description:**
Our current logic to copy shared mono libraries to the export templates' `data.mono.*` folders... | bug,topic:buildsystem,confirmed,topic:dotnet | low | Major |
502,846,853 | opencv | Opencvjs solvepnp not working in Safari-12, but works in safari-13 and chrome browser | Hello,
We followed opencvjs documents and compiled the JS file.
solvepnp function working fine in safari-13 and other browsers like chrome, but it is not working on safari-12.
```
let success = cv.solvePnP(
modelPoints,
imagePoints,
cameraMatrix,
distCoeffs,
rvec,
... | category: javascript (js) | low | Critical |
502,852,374 | flutter | Glitch with short paths with wide stroke. | This is an issue that came to our attention in a Flare bug report:
https://github.com/2d-inc/support/issues/244
The glitch occurs when a short path is stroked. This can occur when animating the trim of a path in Flare.
Here's a repo with more details and example code in pure Flutter which exhibits the issue:
ht... | engine,dependency: skia,customer: web10,customer: thrive,P2,team-engine,triaged-engine | low | Critical |
502,875,332 | pytorch | Installer not setting rpath for MAGMA (OS X w/ GPU) | ## π Bug
The installation scripts aren't adding the magma path to the dylib. This is at least as far back as 1.1, and exists in the current master.
It's easily fixable post-install with `install_name_tool -add_rpath /usr/local/magma/lib /path/to/libtorch.dylib` (actually in 1.1 its the `caffe_gpu` dylib), but o... | module: build,module: cuda,triaged,module: macos | medium | Critical |
502,884,369 | terminal | Enable users to disable VT colors (for accessibility, visibility, contrast, etc.) | # Description of the new feature/enhancement
Users, esp those with accessibility needs, should be able to disable command-line apps from altering text and background colors, either via API calls, or via VT sequences.
Terminal should still honor users' color theme and default foreground and background color choices,... | Issue-Feature,Area-Rendering,Area-VT,Area-Accessibility,Area-Settings,Product-Terminal | low | Major |
502,945,161 | rust | Document the error cases for std::process::Command | The current documentation of the [std::process::Command](https://doc.rust-lang.org/std/process/struct.Command.html#method.spawn)-struct lacks the description of possible error cases. All examples assume the working case, too.
There is currently no easy was to see, why a e.g. a call to `spawn()` could fail (before runn... | C-enhancement,T-libs-api,A-docs,A-process | low | Critical |
502,951,021 | rust | link_section attribute misleadingly allowed on modules and impls | The `#[link_section]` attribute seems to be allowed on modules and impl blocks, but it will not do anything. I would expect either all functions/statics within the module/impl to be placed into the specified link_section, but this does not happen.
Code used:
```
#[link_section = ".textaux1"]
mod foo{
//#[... | A-linkage,A-attributes,T-compiler,C-bug | low | Critical |
502,953,703 | pytorch | [dataloader] Sampler abstract constructor API minor proposal | Currently the base abstract Sampler class [has](https://github.com/pytorch/pytorch/blob/master/torch/utils/data/sampler.py#L17):
```python
def __init__(self, data_source):
pass
```
The `data_source` is declared as a common argument but not saved to `self.data_source`. Many samplers that do take `data_source` a... | module: dataloader,triaged | low | Minor |
502,958,019 | opencv | Redesign of OpenCV's PnP algorithms | The implementation of Perspective n Point (PnP) in OpenCV needs a significant improvement.
Object oriented design could help a lot to provide interfaces and implementations for:
- PnP Solvers: Algorithms that solve PnP without an initial estimate (also called closed-form solutions)
- PnP Refiners: Algorithms that ... | category: calib3d,RFC | low | Critical |
502,958,449 | youtube-dl | Support for socks5h:// proxies | ## Checklist
- [x] I'm reporting a feature request
- [x] I've verified that I'm running youtube-dl version **2019.09.28**
- [x] I've searched the bugtracker for similar feature requests including closed ones
## Description
The difference between SOCKS5 and SOCKS5H is that SOCKS5H resolves DNS requests thro... | request | low | Critical |
502,958,516 | vscode | The result of proxyResolver.request is wrong | After calling http(s).request only with options the method and path are changed to wrong value.
I've written simple example.
- VSCode Version: 1.38.1
- OS Version: Ubuntu 19.04 and Windows 10 1903
Steps to Reproduce:
1. Run this code.
```
const https = require('https');
const Url = require('url');
c... | bug,proxy | low | Critical |
502,962,715 | terminal | More Unicode-savvy wordDelimiters | <!--
π¨π¨π¨π¨π¨π¨π¨π¨π¨π¨
I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING:
1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement.
2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl... | Help Wanted,Area-Settings,Product-Terminal,Issue-Task,Priority-3 | low | Critical |
502,964,097 | terminal | Per-profile wordCharacters | <!--
π¨π¨π¨π¨π¨π¨π¨π¨π¨π¨
I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING:
1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement.
2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl... | Help Wanted,Area-Settings,Product-Terminal,Issue-Task | low | Critical |
502,977,045 | terminal | DEC private 47/1047 not supported (alt buffer) | <!--
π¨π¨π¨π¨π¨π¨π¨π¨π¨π¨
I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING:
1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement.
2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl... | Product-Conhost,Help Wanted,Area-VT,Issue-Task | low | Critical |
502,990,367 | go | x/mobile: Remove gomobile dependency on gobind binary | Currently `gomobile bind` internally depends on gobind command. This is not user friendly and seems unnecessary too complex as user need to build both binaries. I propose to remove cmd/gobind so there is only one binary. As there is difference what `gomobile bind` and `gobind` does we can pass extra flag to `gomobile b... | NeedsDecision,mobile | low | Major |
503,004,989 | go | cmd/go: handle ldflag escapes in pkg-config output | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.12.9 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture ar... | NeedsInvestigation | low | Critical |
503,007,881 | terminal | Random parsing/rendering bugs when input arrives slowly | <!--
π¨π¨π¨π¨π¨π¨π¨π¨π¨π¨
I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING:
1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement.
2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl... | Product-Conhost,Help Wanted,Area-VT,Issue-Bug | low | Critical |
503,008,207 | rust | SIGSEGV in LLVM | I was trying to compile some x86 early boot code and encountered a SIGSEGV in LLVM:
```
* thread #4, stop reason = EXC_BAD_ACCESS (code=1, address=0x18)
* frame #0: 0x00000001061cca13 librustc_codegen_llvm-llvm.dylib`(anonymous namespace)::MachineLICMBase::IsLoopInvariantInst(llvm::MachineInstr&) + 259
frame ... | I-crash,A-LLVM,T-compiler,C-bug | low | Critical |
503,008,251 | TypeScript | `getSignaturesOfType` throws `Cannot read property 'flags' of undefined` | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.7.0-dev.20191005
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** conditional, infer, mapped
**Code**
```ts
declare i... | Bug,Crash,Fix Available,Rescheduled | low | Critical |
503,023,538 | rust | Tracking issue for `Cow::is_borrowed` and `Cow::is_owned` | I just tried to use these in my own code and was kind of shocked they didn't exist.
Justification: this seems like a common Rust pattern. We have `is_some` and `is_none` for `Option`, `is_ok` and `is_err` for `Result`, etc., so, it seems pretty fair to have `is_borrowed` and `is_owned` for `Cow`.
Having `as_borro... | T-libs-api,B-unstable,C-tracking-issue,Libs-Tracked | medium | Critical |
503,030,421 | scrcpy | Connection is rejected after unplugging the device from computer | So, this has happened to me all the time I need to recharge my phone, and I do so by plugging it to my computer. But normally, after it's been charged and unplugged, trying to connect to my phone again via wireless by issuing the command
> adb connect 192.168.0.101
returns me with an error:
> unable to connect to ... | adbtcp,adb | medium | Critical |
503,066,500 | rust | Non-lexical lifetimes do not work on a field of structure | I noticed that the non-lexical lifetimes do not work if the reference is used in the structure field.
```
rustc 1.38.0 (625451e37 2019-09-23)
```
```rust
#[derive(Debug)]
struct Foo<'a, T> {
x: &'a T,
}
fn main() {
let str_1 = "str1".to_string();
let str_2 = "str2".to_string();
let mut... | C-enhancement,T-lang,T-compiler,A-NLL,NLL-complete | low | Critical |
503,076,500 | node | stream: How to destroy and stop Readable? | I ran into this today:
```js
const { Readable } = require('stream');
const someOtherResource = {
doStuff () {
if (this.destroyed) {
throw new Error('destroyed!')
}
},
destroy () {
this.destroyed = true
}
}
const r = new Readable({})
r.on('data', () => {
someOtherResour... | stream | low | Critical |
503,084,929 | vscode | Implement token-based language service | Go to Definition and Find All Reference are not 100% reliable in VsCode. The problem occur with VsCode itself for the langages it handle and with extensions for the others langages. VsCode (or the extensions) sometimes doesn't find any definition, or sometimes they don't find all references. That happen because the way... | feature-request,languages-basic,extensions | medium | Critical |
503,094,501 | godot | Internal methods can be wrongly exposed to GDScript when using signals or deferred calls | **Godot version:**
Master dev
**OS/device including version:**
Any platform
**Issue description:**
This is a discussion about a general issue in the engine.
When c++ classes use signal connections or deferred calls, they are currently required to expose the called methods to scripts, which can cause some ra... | discussion,topic:core | low | Critical |
503,111,912 | flutter | Support loading different ttf files into single font | ## Use case
I want to load multiple `.ttf` font files of the same font but with different weights in my app.
## Proposal
Just like initially proposed in #17910, a syntax like the following would be great:
```dart
Future<void> fooLoaded = FontLoader('Foo')
..addFont(rootBundle.load('foo_normal.ttf'))
..addF... | c: new feature,framework,engine,dependency: dart,P3,team-engine,triaged-engine | low | Major |
503,112,793 | terminal | Entire screen randomly tearing and flickering during normal usage | <!--
π¨π¨π¨π¨π¨π¨π¨π¨π¨π¨
I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING:
1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement.
2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl... | Needs-Repro,Area-Rendering,Issue-Bug,Product-Terminal,Priority-3 | high | Critical |
503,139,917 | neovim | Channels opened by sockconnect() does not close automatically on EOF | - `nvim --version`:
<details>
```
NVIM v0.4.2
Build type: Release
LuaJIT 2.0.5
Compilation: /usr/bin/x86_64-pc-linux-gnu-gcc -O3 -march=native -pipe -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DMIN_LOG_LEVEL=3 -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wshadow -Wconvers... | documentation,channels-rpc | low | Minor |
503,223,976 | go | net: ListenPacket can't be used on multicast address | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
go version go1.12.9
### Does this issue reproduce with the latest release?
Yes, the code is unchanged on master.
### What operating system and processor architecture are you u... | NeedsInvestigation | medium | Critical |
503,306,935 | youtube-dl | Please add SW_HIDE to ffmpeg subprocess.Popen in windows, please | If windows , please add (optionally):
pseudo code
https://github.com/ytdl-org/youtube-dl/blob/master/youtube_dl/postprocessor/ffmpeg.py#L230
```
si = None
if (OS == 'windows'):
SW_HIDE = 0
STARTF_USESHOWWINDOW = 1
si = subprocess.STARTUPINFO()
si.dwFlags = STARTF_USESHOWWINDOW... | request | low | Minor |
503,332,683 | godot | Transparent color become different when inside sub viewport | **Godot version:**
Godot 3.1.1 stable (GLES2 & GLES3)
Godot 3.2 a1 (GLES2 & GLES3)
**OS/device including version:**
Windows 10 pro
**Issue description:**
I have ColorRect with the same color (it's a duplicate, so they should have the same color). But when I move 1 of them to sub viewport (with transparent_bg ... | topic:rendering,confirmed,documentation,topic:2d | low | Major |
503,359,005 | realworld | Forgot password functionality | I think it would be great if we could get the apps to support Forgot password functionality, since this is always a core feature of webapps.
For the frontend this would be just a different route, but on the backend there would need to be some sort of email verification system.
| Status: RFC,v2 changelog | low | Minor |
503,398,815 | godot | Clashing Shortcuts | Godot 3.2.alpha1
Windows 10
Setting the "Toggle Comment" shortcut to "Control+B" does not allow using the key combination to toggle a comment.
Removing "Control+B" as the shortcut for "Go to Next Bookmark" fixes the issue.
The clash is not obvious.
Removing all the current matching shortcuts once a new on... | enhancement,topic:editor | low | Minor |
503,416,992 | flutter | [multicast_dns] error on iOS - error 49 Can't assign requested address, add documentation for `com.apple.developer.networking.multicast` entitlement | I am using the multicast_dns package for flutter and get a exception on iOS. It works as expected on Android. I have tested this with the code example provided with the package
The error is:
`OS Error: Can't assign requested address, errno = 49 in _NativeSocket.joinMulticast. (socket_patch.dart)`
I have tried ... | platform-ios,d: api docs,package,p: multicast_dns,P3,team-ios,triaged-ios | medium | Critical |
503,430,231 | godot | Sprite unshaded CanvasItemMaterial option only works as a direct child of Node2D. | Godot version 3.1.1 stable.official
Linux Mint 19.1 (Ubuntu) Kernel Linux 4.15.0-65-generic x86_64. Nividia GTX 950
It seems the unshaded light mode option of a CanvasItemMaterial is not working correctly. Sprites with this unshaded material option will only work as a direct child of Node2D. In this image I have... | bug,topic:rendering | low | Critical |
503,455,223 | youtube-dl | [europeantour] redesigned with brightcove | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | site-support-request | low | Critical |
503,500,758 | TypeScript | Infering type of optional parameter of lambda function is broken when passed to generic function. | **TypeScript Version:** 3.7.0-beta, nightly and older ones
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
optional parameter infer lambda generic
**Code**
```ts
declare function noop<T>(val: T): T;
const f = (a: string, b = 23) => b;
//... | Bug | low | Critical |
503,503,764 | go | crypto/tls: TestDynamicRecordSizingWithStreamCipher timeout on darwin-amd64-10_12 builder | From the `darwin-amd64-race` builder (https://build.golang.org/log/f1bbcc56f8b0a11004fddd58fdf1942d658c9e1c), a timeout due to an `IO wait` in `crypto/tls.TestDynamicRecordSizingWithStreamCipher`:
<details>
```
panic: test timed out after 3m0s
goroutine 23 [running]:
testing.(*M).startAlarm.func1()
/var/fo... | NeedsInvestigation | low | Critical |
503,515,899 | angular | Type 'SafeHtml' is not assignable to type 'string' | <!--π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
Oh hi there! π
To expedite issue processing please search open and closed issues before submitting a new one.
Existing issues often contain information about workarounds, resolution, or progress updates.
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
... | type: bug/fix,freq2: medium,area: compiler,state: confirmed,cross-cutting: types,design complexity: major,P3,compiler: template type-checking | medium | Critical |
503,585,670 | pytorch | batch_norm_elemt_cuda_template does not use its argument epsilon | In the internal function [`batch_norm_elemt_cuda_template`](
https://github.com/pytorch/pytorch/blob/master/aten/src/ATen/native/cuda/Normalization.cuh#L672) epsilon is passed to [`batch_norm_transform_input_kernel`](https://github.com/pytorch/pytorch/blob/master/aten/src/ATen/native/cuda/Normalization.cuh#L159), but ... | module: bc-breaking,module: nn,module: cuda,triaged | low | Major |
503,605,836 | pytorch | [JIT] script::Module API parity with nnmodule | Our script::Module has slightly different method names and behaviors compared to nn.Module. It shouldn't but it will take some to develop and test an equivalent API. We should:
1. design/review equivalent C++ API functions for nn.Module functions
2. implement and test the design
3. develop a plan to deprecate the ... | oncall: jit,triaged | low | Minor |
503,614,470 | pytorch | [JIT] Figure out how to easily investigate memory usage issues issues | e.g. https://github.com/pytorch/pytorch/issues/25267
And other internal reports
cc @suo | oncall: jit,triaged | low | Major |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.