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 |
|---|---|---|---|---|---|---|
332,242,091 | rust | NLL Regression: Conditional control flow returning from functions no longer works | If a match expression has one arm that returns a borrowed matched value from its pattern, and another arm that doesn't borrow directly from a matched value but instead borrows the variable the matched value borrows and returns it, compilation fails if the match statement is returning from a function, but not if it's as... | A-borrow-checker,T-compiler,A-NLL,C-bug,fixed-by-polonius | low | Major |
332,245,349 | pytorch | RuntimeError: /pytorch/torch/csrc/jit/tracer.h:117: getTracingState: Assertion `var_state == state` failed. | I did train Resnet152 model and I want to export onnx.
this error occurs
I did run programming with GPU on jupyter
## Error message
```
RuntimeErrorTraceback (most recent call last)
<ipython-input-15-f5f241afd3b5> in <module>()
----> 1 torch.onnx.export(model_ft, dummy_input, "resnet152.onnx",export_params=True... | oncall: jit | medium | Critical |
332,314,992 | pytorch | An error occurred while creating a new notebook. | I following [Caffe2 Tutorials Overview](https://caffe2.ai/docs/tutorials.html#null__new-to-deep-learning)
When I run` ./start_ipython_notebook.sh` ,Jupyter interface pops up.
I am trying to create a new python file,Error message appears as follows.
```
An error occurred while creating a new notebook.
Unexpected... | caffe2 | low | Critical |
332,383,919 | flutter | InputDecorator lacks support for material theming | When using a material input widget, and adding an icon to it, whether it is suffix, prefix or the leading icon, there's no way of showing that icon with a custom icon theme, because in the code the color is fixed:
```dart
Color _getDefaultIconColor(ThemeData themeData) {
if (!decoration.enabled)
return ... | c: new feature,framework,f: material design,P2,team-design,triaged-design | low | Minor |
332,416,688 | react | Allow Portals to be used for Reparenting | **Do you want to request a *feature* or report a *bug*?**
feature
**What is the current behavior?**
[Reparenting](https://github.com/facebook/react/issues/3965) is an unsolved issues of React(DOM). So far, it was possible to hack around the missing support for it by relying on unstable API (`unstable_renderSub... | Type: Feature Request | medium | Critical |
332,476,332 | kubernetes | strategic patch doesn't keep order of duplicated elements in the list | /kind bug
**What happened**:
given list with duplicated keys D1
```
mergingList:
- name: D1
value: URL1
- name: A
value: x
- name: D1
value: URL2
```
and a patch updating non-duplicated key A:
```
$setElementOrder/mergingList:
- name: D1
- name: A
- name: D1
mergingList:
- name... | kind/bug,priority/backlog,sig/api-machinery,help wanted,lifecycle/frozen,triage/accepted | medium | Critical |
332,498,810 | rust | Ironing out StepBy<Range>'s performance issues | The behaviour of `<Range<_> as Iterator>::nth` has a slight mismatch with `StepBy` (or `Step` depending on your viewpoint) as [@scottmcm has found out](https://github.com/rust-lang/rust/issues/27741#issuecomment-385237631), resulting in sub-optimal performance.
On every iteration, the range has to first step forwards ... | I-slow,C-enhancement,T-libs-api | low | Major |
332,524,749 | go | cmd/go: maybe show legacy tags in pseudoversions | If you do
go get foo@tag
where tag is not a proper semver tag for foo, then vgo looks up tag, resolves the commit, finds the date on the commit, and records instead of tag a pseudo-version like
v0.0.0-20180501123456-1234abcdef
I wonder if we should preserve the tag, so that the recorded version would be:
v0.0.... | NeedsDecision,modules | low | Major |
332,529,115 | neovim | Behavior difference with :<lang>do commands | In Vim, the `:<lang>do` commands (`:rubydo`, `:pydo`, etc.) stop executing if the command causes the current buffer to change. You can see a test for this in [test_python2.vim](https://github.com/neovim/neovim/blob/c46997aa8744f88e9886022dab703157c101cff7/src/nvim/testdir/test_python2.vim#L16-L21) which came from upst... | compatibility,provider | low | Major |
332,580,440 | pytorch | [Caffe2] Runtime error while using a pre-trained style_transfer model | Hello, I'm using Caffe2 on Conda / Mac OSX 10.13.1 and I was trying to replicate the model zoo tutorial on a style transfer model. I pretty much copied the same thing to see if it would work while replacing squeezenet with style_transfer/crayon.
```python
from caffe2.python.models.style_transfer import crayon as my... | caffe2 | low | Critical |
332,612,574 | rust | HRTB-like bounds on structs | So I have a situation, detailed in u.r.l.o [here](https://users.rust-lang.org/t/expressing-hrtb-like-bound-on-generic-struct/18081), that I'd be curious to see if there's a good solution for now or if anything in the pipeline might help. It's likely a dupe of some existing issue(s) but I failed to find anything simila... | T-lang,C-feature-request,A-higher-ranked | low | Critical |
332,646,656 | pytorch | Q: how to generate my own pb files to C++ Predictor | Now I had trained a model used python interface. and now I wanna to save the trained paramters and the net model to pb file format which can be loaded by `ReadProtoFromFile` later used C++ interface.
But I cannot find out how to generate the two file(init_net.pb & predict_net.pbtxt)。
Can someone tell me, thanks very... | caffe2 | low | Minor |
332,663,431 | youtube-dl | [Site support request] nudogram.com | ```
$ youtube-dl -v http://www.nudogram.com/videos/94/allison-parker-squirt-show-snapchat-2018/
[debug] System config: []
[debug] User config: []
[debug] Custom config: []
[debug] Command-line args: ['-v', 'http://www.nudogram.com/videos/94/allison-parker-squirt-show-snapchat-2018/']
[debug] Encodings: locale UTF... | site-support-request | low | Critical |
332,708,175 | vscode | Ignore `editor.insertSpaces` within strings | <!-- Please search existing issues to avoid creating duplicates. -->
Related issues
==============
After searching existing issues, I found two open issues, which are closely related, but different. Including links for reference purposes:
- #5394
- #46287
<!-- Describe the feature you'd like. -->
Feature... | feature-request,editor-core | low | Minor |
332,715,988 | pytorch | [caffe2] [feature request]Doese caffe2 support conv_nd with group? | ## Issue description
When I try to set the group parameter(larger than 1) for model.ConvNd, there is cudnn error.
Provide a short description.
Code:
'''
self.prev_blob = self.model.ConvNd(
self.prev_blob,
'test_group_conv_%d' % (self.comp_count),
in_filters,
... | caffe2 | low | Critical |
332,745,941 | pytorch | caffe2: Does caffe support the model running on different device (CPU and GPU) same time ? | I want to know whether caffe2 support building the model on different device (CPU and GPU) at the same time.
Precisely, I want to setting part1(include some operators) of the network model running on CPU, while part2 (others) just on GPU, just like the TF.
If so, how can I make it ? I used to run mo... | caffe2 | low | Minor |
332,821,472 | pytorch | [JIT] Interleaved C++-Python execution loses inner Python stacks | I triggered a recent shape propagation test failure:
```
14:56:59 ======================================================================
14:56:59 ERROR: test_pow_scalar_constant (__main__.TestJitGenerated)
14:56:59 ----------------------------------------------------------------------
14:56:59 Traceback (most re... | oncall: jit | low | Critical |
332,841,232 | TypeScript | Import assignment should work with esnext targets | <!-- 🚨 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
import assignment
## Suggestion
#22321 was closed by a b... | Needs Proposal | low | Critical |
332,854,335 | opencv | Stitching enhencements for multithreading calibrated stitcher | It would be nice to have the possibility to use composePanorama function of stitcher class on several thread once it is calibrated using either estimateTransform or stitch. For this can you either make the method thread safe. OR give the possibility to clone a calibrated stitcher in order to use it on a different threa... | feature,priority: low,category: stitching | low | Minor |
332,867,901 | TypeScript | Duplicated jsdoc should error | It's possible to document parameters and function expressions 2-3 different places in JSDoc. However, I can't think of a good reason to do so, and I suspect that it's (1) rare (2) by mistake. Here's an example:
```ts
/** @param a - the a */
function f(/* an a */ a) {
}
```
Today gives the jsdoc
```
an a
... | Suggestion,In Discussion,checkJs,Domain: JavaScript | low | Critical |
332,871,586 | godot | Forwarding Signals in C# - not passing arguments as expected | **Godot version:**
v3.0.3-stable_mono
**OS/device including version:**
Windows 10
**Issue description:**
I have two signals:
- Signal1
- Signal2
I'm attempting to connect Signal1 to Signal2 so that when Signal1 is emitted Signal2 is emitted as well. I have a wrapper object that handles this fo... | enhancement,confirmed,topic:dotnet | low | Minor |
332,874,858 | pytorch | cleanup BLAS detection | PyTorch and Caffe2 use the following libraries as preferred for BLAS/LAPACK capabilities:
- MKL - first preference in unified build system
- Eigen - 2nd preference in unified build system, but first preference if ATen is not being compiled
- PyTorch finds OpenBLAS, Accelerate, cblas if MKL is not found -- findin... | module: build,triaged,module: linear algebra | low | Minor |
332,880,321 | neovim | Make terminal buffer behave more like normal buffers | I notice the terminal buffer has a few things which are inconsistent with "normal" text buffers. I think it would be better and more logical if terminal buffers work more like regular buffers.
# `set list` not working in terminal buffers.
One thing thing which is inconsistent with normal buffers is that `set lis... | enhancement,terminal | low | Major |
332,901,634 | node | Inconsistent behavior of path.basename(path, ext) | I believe this was introduced somewhere in https://github.com/nodejs/node/pull/5123, which changed the behavior of the `ext` argument.
This is observed on all supported branches and was even recently backported to 4.x.
Documentation:
https://nodejs.org/api/path.html#path_path_basename_path_ext
Observe the inp... | help wanted,discuss,path | low | Major |
332,903,326 | TypeScript | Add related error spans for getter/setters with different types | Now that we support multiple related spans for errors (#10489, #22789, #24548), we'd like to improve an existing error message.
Currently, we provide a diagnostic for a pair of `get`/`set` accessor's types not matching:
Code:
```ts
let x = {
get foo() { return 100; }
set foo(value: string): { }
}
```
... | Suggestion,Domain: Error Messages,Domain: Related Error Spans,Experience Enhancement | medium | Critical |
332,905,684 | go | cmd/compile: possible missed optimization in append benchmark | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go version go1.10.3 linux/amd64
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
GOARCH="a... | Performance,NeedsInvestigation,compiler/runtime | low | Critical |
332,917,826 | kubernetes | PVC/PV conformance testing discussion | <!-- This form is for bug reports and feature requests ONLY!
If you're looking for help check [Stack Overflow](https://stackoverflow.com/questions/tagged/kubernetes) and the [troubleshooting guide](https://kubernetes.io/docs/tasks/debug-application-cluster/troubleshooting/).
If the matter is security related, ple... | priority/backlog,sig/storage,kind/feature,sig/architecture,area/conformance,lifecycle/frozen | medium | Critical |
332,925,962 | youtube-dl | [SBS] sbs ondemand: some videos not working | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2018.06.14*. 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**... | geo-restricted,account-needed | medium | Critical |
332,944,715 | pytorch | Update tests to no longer spew debug info | See recent CI, which spews the following:
23:49:53 test_anomaly_detect_nan (__main__.TestAutograd) ... No forward pass information available.
23:49:53 Enable detect anomaly during forward pass for more informations.
23:49:53 No forward pass information available.
23:49:53 Enable detect anomaly during forward pass... | module: tests,triaged,better-engineering | low | Critical |
332,959,770 | rust | [control flow analysis] Special treatment for `Err( )?` | I don't know this issue should be `feature request` or `bug report`.
I have code like this:
```Rust
#[derive(Debug, Fail)]
#[fail(display = "Target can't open: {:?}", path)]
struct NotExists {
path: PathBuf
}
#[derive(Debug, Fail)]
#[fail(display = "Target is not file: {:?}", path)]
struct NotFile {... | A-type-system,T-lang,A-inference,C-feature-request,T-types | low | Critical |
332,982,286 | go | syscall, os: opening hidden file for write access on Windows gives ACCESS_DENIED_ERROR | ### What version of Go are you using (`go version`)?
go version go1.10.2 windows/amd64
also reproduces on go version go1.8.7 windows/386
### Does this issue reproduce with the latest release?
yes
### What operating system and processor architecture are you using (`go env`)?
set GOARCH=amd64
set GOHOS... | OS-Windows,NeedsInvestigation,compiler/runtime | low | Critical |
332,991,860 | vscode | [folding] unfold when pressing enter on last line |

Issue Type: <b>Bug</b>
Hi,
After collapsing a Command (with code in) I can't enter after that.
In this example I can't enter between fds en the comment.
VS Code version: Code 1.21.1 (79b44aa704ce... | feature-request,editor-folding | low | Critical |
333,004,263 | TypeScript | Project compiles OK but hangs when --watch is added | **TypeScript Version:** 3.0.0-dev.20180616 and 2.9.2
**Search Terms:** typescript watch --watch hangs stalls slow
Hi I have minimized one of my projects to an example source (which I have [attached](https://github.com/Microsoft/TypeScript/files/2108402/tsc-watch-hangs.zip) [1]) that:
1. Compile fine when not ... | Bug,Domain: Declaration Emit | medium | Major |
333,008,404 | flutter | Flutter Doctor reports the flutter version as v0.0.0-unknown if repository is cloned with depth 1. | On CI environments where the Flutter repository may be downloaded with `--depth=1` as an option to Git, `flutter doctor` says the installation is fine but won't actually build anything because the Flutter version it reports is `v0.0.0-unknown`. Builds will then fail on package constraint checks.
The workaround is to... | c: new feature,tool,t: flutter doctor,has reproducible steps,P3,found in release: 2.6,team-tool,triaged-tool | low | Minor |
333,018,640 | flutter | CupertinoNavigationBar leading is too high | For some reason the leading in CupertinoNavigationBar is too high. Any ideas?
<img width="315" alt="screen shot 2018-06-16 at 6 10 46 pm" src="https://user-images.githubusercontent.com/666539/41502812-b0308544-7190-11e8-9186-60ecad54af75.png">
```dart
class MyApp extends StatelessWidget {
// This widget is ... | framework,a: fidelity,f: cupertino,has reproducible steps,P3,workaround available,team-design,triaged-design,found in release: 3.16,found in release: 3.19 | medium | Major |
333,027,017 | TypeScript | [feat] Allow use of downlevelIteration on es2015 or greater | ## Search Terms
downlevelIteration es2015 es6
## Suggestion
A new flag or way to enable `downlevelIteration` when targeting es2015 or greater
Maybe `forceDownlevelIteration` ?
## Use Cases
`for .. of` is slow: https://jsperf.com/for-vs-forof
This request comes from my recent work in Nodejs where you want to ... | Suggestion,In Discussion | low | Major |
333,029,061 | vscode | [Feature Request] Extension Permissions, Security Sandboxing & Update Management Proposal | I believe that Visual Studio Code should support some kind of "Extension Permission Management", complete with prompts, warnings, opt-in, and opt-out, similar to what has been supported for some time now with Chrome, Firefox, and other browsers.
# Reference Screenshot
I've provided, for reference, some screensho... | feature-request,extensions,extension-host | high | Critical |
333,042,619 | opencv | resize: cannot specify both size and fx/fy | ##### System information (version)
- OpenCV => all
- Operating System / Platform => all
- Compiler => all
##### Detailed description
By reading the documentation it seems that it is possible to specify both parameters **dsize** for the destination size in pixels and **fx/fy** for a fine tuning of the scaling... | category: imgproc,RFC | low | Minor |
333,043,451 | opencv | resize: fx/fy parameters near to 1.0 are ignored | ##### System information (version)
- OpenCV => all
- Operating System / Platform => all
- Compiler => all
##### Detailed description
By specificating the fx/fy parameters it is possible to fine tune the resizing. For example if I need to create multiple images for an animation with small increases in the res... | category: imgproc,RFC | low | Minor |
333,058,520 | opencv | warpAffine: correct coordinate system, documentation and incorrect usage | ##### System information (version)
Tested with
- OpenCV => 3.4.1
- Operating System / Platform => Linux
- Compiler => gcc
##### Detailed description
After some tests I found out that the coordinate system in warpAffine is translated by 0.5 pixels, in other words the topleft origin pixel area goes from -0.5 to... | category: imgproc,category: documentation,RFC,future | low | Critical |
333,065,986 | go | cmd/link: link failure caused by duplicated LDFLAGS passed to external linker | ### What version of Go are you using (`go version`)?
go1.10.3
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
macOS/amd64, doing cross compile for android/arm64
### What did you do?
export GOOS=android
export G... | NeedsInvestigation,compiler/runtime | low | Critical |
333,075,015 | vscode | cursor up/down is confused by selection | - VSCode Version: 1.24.0
- OS Version: Windows 7
Steps to Reproduce:
1. Create the following document
```
dorfus
hamnut
```
2. Place the cursor at the d and go right three. Then go down. The cursor is at the n. Good.
3. Place the cursor at the end of dorfus and go left three. Then go down. The cursor is ... | feature-request,editor-commands | low | Critical |
333,080,145 | rust | Code fails to link on macOS with incremental compilation | The following code fails to link on macOS with incremental compilation. It works fine with incremental compilation turned off.
```rust
fn obj_alloc<T>(_p: T) -> *const [u8; 6] {
struct Foo(*const [u8; 6]);
unsafe impl Send for Foo {}
unsafe impl Sync for Foo {}
#[link_section="__... | A-linkage,O-macos,C-enhancement,P-medium,T-compiler,A-incr-comp | medium | Critical |
333,109,011 | flutter | [Proposal] Allow to adjust hitSlop of GestureDetector | @Hixie already closed #14794 but I'm posting a new Issue because this is critical functionality
Hixie recommended using padding to adjust the hitbox of a `GestureDetector`. I tried to use padding but it merely produced whitespace around GestureDetector, or around its children.
I even tried to transform with hitTe... | c: new feature,framework,f: gestures,c: proposal,P2,team-framework,triaged-framework | low | Critical |
333,123,004 | youtube-dl | Adding boyztube.com and boyztube.xxx websites | ## 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
... | nsfw | low | Critical |
333,125,034 | go | cmd/vet: detect Get/Post http.Response assignment to "_", which is a memory leak | I made a rookie mistake and introduced a memory leak into a codebase by failing to realize that you must close the `http.Response` body returned by `http.Post()` even if you don't need the response content.
I suspect I'm not only one who has made this mistake.
I have a diff, if the proposal is accepted. | NeedsInvestigation,Analysis | low | Major |
333,130,832 | pytorch | [Caffe2] How to build caffe2/mobile/ulp2/ulp_test? | I'm trying to test out the kernel implementation of quantized convolution in `caffe2/mobile/ulp2df folder. Currently, I would like to build and run the ulp_test.cc. However, I don't know how to build the files in there. Can someone tell me how? Maybe some CMakeLists files.
Thanks in advance
Cheers, | caffe2 | low | Minor |
333,141,577 | TypeScript | Related error spans for derived members in interfaces/classes | Now that we support multiple related spans for errors (#10489, #22789, #24548), we'd like to improve an existing error message.
Currently, we provide certain errors for when a derived type incorrectly overrides/implements a member from the base type:
```
Class '{0}' defines instance member function '{1}', but ex... | Suggestion,Help Wanted,Domain: Related Error Spans,Experience Enhancement | low | Critical |
333,144,852 | flutter | [request] Provide static libraries for Custom Flutter Engine Embedders | https://github.com/flutter/flutter/wiki/Custom-Flutter-Engine-Embedders currently provides dynamic libraries for the flutter engine.
It would be incredibly useful if static libraries were also provided! | engine,e: embedder,c: proposal,P2,team-engine,triaged-engine | low | Minor |
333,151,023 | rust | Wrong lifetime is inferred in the argument of closure when given more specific type. | I have lifetime bounds to a closure through a trait like this.
```rust
trait Closure<'t> {}
impl<'t, F: Fn(&'t ())> Closure<'t> for F {}
fn restrict_trait(_: impl Closure<'static>) {}
```
When I call `restrict_trait(|r| ...)`, I'll get `r: &'static ()` inside the closure. But when using `restrict_trait(|r: &_| ... | A-lifetimes,A-closures,T-compiler,A-inference,A-impl-trait,C-bug | low | Critical |
333,169,081 | neovim | termguicolors: fallback to cterm if gui is not set (Vim patches) | `:hi SpellBad cterm=undercurl ctermfg=1 gui=undercurl guisp=Red` does not get displayed as red (ctermfg 1).
This is supported in Vim since:
```
vim-patch:8.0.1544: when using 'termguicolors' SpellBad doesn't show
Problem: When using 'termguicolors' SpellBad doesn't show.
Solution: When the GUI colors are ... | enhancement,has:vim-patch,needs:discussion,highlight | low | Major |
333,201,353 | node | make test: use after free: parallel/test-cli-node-options | git repo (nodejs/node) @ 64de66d78888f46c74ba8b8ea18100a9f35a1c7a
I was running ```` CFLAGS="-fsanitize=address -fno-sanitize=leak -g3" CXXFLAGS="$CFLAGS" LDFLAGS="-fsanitize=address -fno-sanitize=leak -g3" ASAN_OPTIONS=detect_leaks=0 make test -j 4 ````
platform: ````Linux t470 4.17.0-2-MANJARO #1 SMP PREEMPT Fri... | trace_events | low | Critical |
333,290,724 | TypeScript | in typescript 2.8, a common definition of Omit causes declarations that don't compile to be generated | **TypeScript Version:**
Reproduces with 3.0.0-dev.201xxxxx, 2.9.2, 2.8.4
**Search terms**
omit, declaration, pick, undefined
**Example**
```
export type Omit<T, K extends keyof T> = Pick<T,
({ [P in keyof T]: P } & { [P in K]: never } )[keyof T]>;
export interface IOmitTest {
(): { notSupposedToHap... | Bug | low | Critical |
333,294,761 | kubernetes | Provide an update-boilerplate script | **Is this a BUG REPORT or FEATURE REQUEST?**:
/kind feature
**What happened**:
Part of the tests that run once a PR is submitted is `pull-kubernetes-verify`. Right now, contributors have to manually copy and paste boilerplate headers so that any new files they add as part of a PR pass the `hack/verify-boilerplate.... | sig/contributor-experience,kind/feature,lifecycle/frozen | low | Critical |
333,298,401 | pytorch | Come with a better strategy for TensorArg (error reporting) | TensorArg (in `aten/src/ATen/TensorUtils.h`) is a class I came up with when I was porting CuDNN convolutions from Python to C++. The original goals were as follows:
1. Create a set of utility functions to conveniently perform input checks (e.g., does it have the correct size; is it on the correct GPU, etc.)
2. Give... | module: performance,module: internals,triaged | low | Critical |
333,320,824 | vscode | Add prompt to "test on insiders" to issue reporter | In the issue reporter, add a prompt the test using the latest insiders build. Many issues reported against stable have already been fixed in insiders | feature-request,good first issue,issue-reporter | low | Major |
333,329,446 | neovim | Windows: "E138: main.shada.tmp.X files exist, cannot write ShaDa" on close | - `nvim --version`:
```
NVIM v0.3.0
Build type: RelWithDebInfo
LuaJIT 2.0.5
Compilation: C:/msys64/mingw64/bin/gcc.exe -Wconversion -DNVIM_MSGPACK_HAS_FLOAT32 -DNVIM_UNIBI_HAS_VAR_FROM -O2 -g -DMI
N_LOG_LEVEL=3 -Og -g -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wimplicit-fallthro... | bug,platform:windows,has:plan,filesystem,editor-state | high | Critical |
333,345,905 | pytorch | [Caffe2] Wrong prediction with simple FF | Hello,
I am new to Caffe2.
For my first attempts with Caffe2 I am trying a simple Feed Forward, but I don't get a correct prediction.
Could please somebody explain my mistake?
It's a simple net to solve a XOR
```
data = np.array([[0, 0],[0, 1], [1, 0], [1, 1]]).astype(np.float32)
label = np.array([[0],[1],... | caffe2 | low | Minor |
333,354,668 | go | x/tools/go/ssa: wrong ssa referrers with ifstmt | 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 operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
... | Tools | low | Critical |
333,365,881 | opencv | POSIT in C++? | As shown in Wiki, [https://github.com/opencv/opencv/wiki/Posit](https://github.com/opencv/opencv/wiki/Posit), **POSIT** is done in some **C** functions. When I tested my old code today, there are so many **Error** messages in just **one** single function:
```
/**
* @brief Calculate object's absolute orientation... | category: documentation | low | Critical |
333,425,869 | go | proposal: testing: add a flag to detect unnecessary skips | **Motivation**
We often use `(*testing.T).Skip` to skip tests that fail due to known bugs in the Go toolchain, the standard library, or a specific platform where the test runs.
When the underlying bugs are fixed, it is important that we remove the skips to prevent regressions.
However, bugs are sometimes fixed... | Proposal,Proposal-Hold | medium | Critical |
333,440,490 | flutter | Build interactive reports of engine, APK & IPA sizes on each build. | This issue tracks the creation of reproducible reports generated by @goderbauer in [his preliminary document](https://docs.google.com/document/d/1hZUIKCPsUSfZ0Nt7_b9CE0izlteeHmOf2PzrlGZ_chk/edit?disco=AAAAB6lPw9Y&ts=5b27f6f2#heading=h.byyqjskjk9nl) investigating engine and APK sizes. | team,platform-ios,engine,P3,team-ios,triaged-ios | low | Major |
333,452,117 | flutter | LongPressDraggable doesn't have accessibility semantics for its long press action in iOS | cc @jonahwilliams | platform-ios,framework,a: accessibility,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-ios,triaged-ios | low | Major |
333,465,846 | rust | The locally-installed docs try to load non-local assets, causing them to fail on a bad connection. | The locally-installed docs that open when you use `rustup docs` try to load a few assets from a CDN. This is fine if you have no network connection at all, because they will fail quickly and the page will render.
However, if you have a very poor/slow network connection, they will try to load, and nothing on the page... | C-enhancement,A-docs | low | Major |
333,470,063 | angular | Post strictPropertyInitialization flag flip cleanup |
## I'm submitting a...
[x] Other... Please describe: Tracking issue for internal cleanup.
</code></pre>
## What needs to be done
In order to quickly turn on strictPropertyInitialization flag in the whole code base, we introduced `!` on every non-initialized class field. Each one of those fields needs to be ... | type: bug/fix,freq2: medium,area: core,P4 | low | Major |
333,476,937 | youtube-dl | [cbc.ca] Error 402: Payment Required | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2018.06.18*. 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**... | geo-restricted,account-needed | low | Critical |
333,487,487 | flutter | Flutter Engine should consider banning static initializers | See Chromium's policy and reasoning:
https://chromium.googlesource.com/chromium/src/+/lkcr/docs/static_initializers.md
http://neugierig.org/software/chromium/notes/2011/08/static-initializers.html
Unless maybe already our build rules do? @chinmaygarde might know. | engine,P3,team-engine,triaged-engine | low | Minor |
333,494,573 | rust | Trait bounds are not checked on type aliases until they are used | Consider the following code:
```rust
#![crate_type = "lib"]
pub trait Trait {}
pub struct Foo<T: Trait>(T);
pub struct Qux;
pub type Bar<T=Qux> = Foo<T>;
```
This builds without an error although `Qux` doesn't respect the trait bound.
Build failure only occurs when one actually uses the type alia... | A-diagnostics,A-trait-system,P-medium,T-compiler,C-bug | low | Critical |
333,559,804 | pytorch | Cannot allocate memory Error from operator | https://caffe2.ai/docs/tutorial-MNIST.html
Finally, we can plot the results using pyplot.
```
# The parameter initialization network only needs to be run once.
workspace.RunNetOnce(train_model.param_init_net)
# creating the network
workspace.CreateNet(train_model.net, overwrite=True)
# set the number of iteratio... | caffe2 | low | Critical |
333,588,247 | flutter | Flutter doctor does not detect all installs of the Android SDK | Flutter Doctor can't tell the difference between Android SDK not installed and sdkmanager pieces not instaled. To reporoduce:
```
$ flutter doctor -v.
[✗] Android toolchain - develop for Android devices
✗ ANDROID_HOME = /usr/local/share/android-sdk/
but Android SDK not found at this location.
```
O... | tool,t: flutter doctor,P2,team-tool,triaged-tool | low | Major |
333,620,664 | rust | Add impl<T: Unsize<U>, U: ?Sized> From<T> for Box<U> | Consider adding this implementation into `stdcore` if it possible:
```rust
impl<T: Unsize<U>, U: ?Sized> From<T> for Box<U> {
fn from(t: T) -> Box<U> {
Box::new(t) as Box<U>
}
}
```
This implementation will allow conversions like:
```rust
let x: Box<Fn(u32) -> u32> = {|x|x}.into();
```
| C-enhancement,T-lang | low | Minor |
333,621,778 | go | encoding/json: eof error of NewDecoder().Decode() should be same with Unmarshal() | Please answer these questions before submitting your issue. Thanks!
### 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"... | help wanted,NeedsDecision | medium | Critical |
333,624,004 | pytorch | Cannot use IterOp at runtime CUDA&CPU | Hello, I am currently following the tutorial with a C++/CUDA implementation.
Code: https://gist.github.com/Tezirg-Wrld3D/043c0662f2611142db86b656d24456a9
I am encountering the following error in the toy example:
```
terminate called after throwing an instance of 'caffe2::EnforceNotMet'
what(): [enforce f... | caffe2 | low | Critical |
333,645,924 | godot | Android sensor lag | Hey All,
As I was playing around trying to make #19170 work, I stumbled upon some info that solves the lag issue I've been experiencing on Android. But before I change this, it requires some discussion to do this right.
The problem lies in the code here:
https://github.com/godotengine/godot/blob/master/platform... | enhancement,discussion,platform:android,topic:xr | low | Major |
333,758,051 | go | all: decide on the hyphenation of pseudorandom vs pseudo-random? | The docs for crypto/rand contain both "pseudorandom" and "pseudo-random" for the same part of speech.
Decide which to use.
Also, the package doc says:
> Package rand implements a cryptographically secure pseudorandom number generator.
But the Reader says:
> Reader is a global, shared instance of a crypto... | Documentation,NeedsDecision | low | Major |
333,771,261 | neovim | API: buffer updates: merge result of visual operation | <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`: v0.3.1
- Vim (version: ) behaves differently? neovim only
- Operating system/version: Max
- Terminal name/version: iTerm2
- `$TERM`: xterm-256color
### Steps to reproduce using `nvim -u NORC`
Create a file at `$NVIM_C... | enhancement,api | low | Critical |
333,786,551 | vscode | Issue Reporter is unstable when number of duplicates change | Issue Type: <b>Bug</b>
See the following recording. When editing the description the text input filed jumps up and down. It should be stable.
VS Code version: Code - Insiders 1.25.0-insider (b4a18da6e78f95295ea6538f5ae8dd0c9f0869a9, 2018-06-19T07:38:09.923Z)
OS version: Darwin x64 16.7.0
<details>
<summary>S... | bug,polish,issue-reporter | low | Critical |
333,809,692 | vue | Dynamic input field type renders invalid code in IE11 | ### Version
2.5.17-beta.0
### Reproduction link
[https://github.com/nirazul/vue-loader-bug-repro](https://github.com/nirazul/vue-loader-bug-repro)
### Steps to reproduce
1. `npm install`
2. `npm run build`
3. `npm run watch`
4. Open `./public/index.html`
5. Inspect `main.bundle.js` in dev tools
6. On line... | improvement | low | Critical |
333,829,153 | go | x/build: add misc-compile-mobile TryBots for Android/iOS | https://storage.googleapis.com/go-build-log/21200cf2/misc-compile-mobile_0b3b3144.log
```
/workdir/go/pkg/tool/linux_amd64/link: running gcc failed: exit status 1
/tmp/go-link-391904482/go.o:(.data+0x0): undefined reference to `x_cgo_init'
/tmp/go-link-391904482/go.o:(.data+0x4): undefined reference to `x_cgo_not... | Builders,NeedsInvestigation,FeatureRequest,new-builder | low | Critical |
333,887,112 | rust | rustc doesn't handle libc dependencies it introduces on its own | As of currently nightly, a minimalist `no_std` program can look like the following (panic is purposefully badly handled):
```rust
#![no_std]
#![no_main]
#![feature(panic_implementation)]
#[panic_implementation]
#[no_mangle]
pub fn panic_impl(_: &core::panic::PanicInfo) -> ! { loop {}}
#[no_mangle]
pub ex... | A-linkage,T-compiler,C-bug | low | Critical |
333,907,021 | neovim | :q, :qa shouldn't quietly kill terminal buffers | <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`: v0.3.1-dev
- Vim (version: ) behaves differently? 8.1.89. Yes. Depending on `'confirm'`, fails or opens dialog
- Operating system/version: Ubuntu 18.04
- Terminal name/version: gnome-terminal 3.28.1
- `$TERM`: tmux-256color
... | terminal | low | Minor |
333,927,224 | TypeScript | Enum keys not accepted as computed properties if their name is not a valid identifier | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 2.9.2
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** computed property name
**Code**
```ts
enum Type {
Foo = 'foo'... | Bug,Good First Issue | low | Minor |
334,005,130 | opencv | `CL_INVALID_WORK_GROUP_SIZE` on calling OpenCL kernels `minmaxloc`, `reduce` and some others | ##### System information (version)
- OpenCV => 3.4.0; 3.4.1
- 3.4.0 was cross-compiled by Yocto.
- 3.4.1 was natively-compiled.
- Operating System / Platform => Yocto Linux 2.4 / i.MX 8M QUAD EVK
- Compiler => g++ 7.3.0
##### Description
When running `opencv_perf_core`, some tests output one of the fol... | category: ocl,category: 3rdparty | low | Critical |
334,095,303 | godot | PoolColorArray.set doesn't work | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:** 3.0.3
<!-- Specify commit hash if non-official. -->
**OS/device including version:** Linux x64 (SolusOS 3.9999 Gnome 3.28.2)
<!-- Specify GPU model... | topic:gdscript,documentation | low | Critical |
334,136,669 | flutter | ShadowBox inset attribute? Inner shadow | I didn't find any trace of inner shadow for box.
Like in CSS using box-shadow: inset there is a option to achieve the same effect? | c: new feature,framework,customer: crowd,P3,team-framework,triaged-framework | high | Critical |
334,176,917 | puppeteer | Disable crash reporting by default | Win CI usually fails to cleanup userDataDir folder in some tests. Example: [appveyour build](https://ci.appveyor.com/project/aslushnikov/puppeteer/build/1.0.1672/job/j2bllv92su3uajye)
It turns out that on Windows:
- crash pad is launched in a separate process
- crash pad writes a few files into userDataDir
- cra... | bug,feature,upstream,chromium,confirmed,P3 | low | Critical |
334,185,870 | rust | 1.27.0 Compiler Options: no-redzone option (Is the explanation backwards?) | In the 1.27.0 release of the "Rustc Book", the command-line option "no-redzone" is described as follows:
no-redzone
This flag allows you to disable the red zone. This flag can be passed many options:
To enable the red zone: y, yes or on.
To disable it: n, no, or off.
This sounds backwards. Should... | C-enhancement,P-medium,T-compiler,A-docs | low | Minor |
334,190,814 | go | cmd/go: get fails to provide sensible error message for private vcs repos | #### What did you do?
I have a project that imports a private git repository. When setting it up with `vgo get` or similar commands, the resolving process will stop abruptly, not writing anything to the disk.
The command succeeds if git credentials are properly set up (*_ASKPASS, global config or the repo is alread... | NeedsFix,GoCommand,modules | medium | Critical |
334,215,939 | rust | #[macro_use] use path; produces unhelpful diagnostics | ```rust
mod a {
macro_rules! foo { () => {}; }
}
mod b {
#[macro_use]
use a;
foo!();
}
fn main() {}
```
```
Compiling playground v0.0.1 (file:///playground)
error: cannot find macro `foo!` in this scope
--> src/main.rs:10:5
|
10 | foo!();
| ^^^
|
... | C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics | low | Critical |
334,252,168 | puppeteer | Support Network requests in Workers | WebWorkers can `fetch` data; we should surface traffic from web workers in puppeteer.
This is blocked on #2548 since nested targets are broken with request interception. See https://github.com/GoogleChrome/puppeteer/pull/2717#issuecomment-398899616 for details. | feature,upstream,chromium | medium | Critical |
334,260,471 | flutter | Reduce duplication in RenderOpacity and RenderAnimatedOpacity | RenderOpacity and RenderAnimatedOpacity contain quite a bit of duplicated code.
This duplication even resulted in a recent nuanced bug that showed itself when a RenderOpacity was changed to a RenderAnimatedOpacity and broke a golden image test.
The duplication between these two classes should be reduced to av... | team,framework,P3,team-framework,triaged-framework | low | Critical |
334,277,875 | godot | Nested viewports don't work correctly with get_local_mouse_position() | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
3.0.2
**OS/device including version:**
Windows 10
**Issue description:**
When nesting viewports (viewportcontainer/viewport/viewportcontainer... | bug,topic:core,confirmed | low | Critical |
334,322,058 | pytorch | [caffe2] AffineChannelOp | Hi,
If I use a SpatialBN (spatial batch normalization), when using the net in production, do I need to put a AffineChannelOp or is setting the flag is_test to true enough?
What do you advise? If I need to use an AffinChannelOp, how to do this?
Thanks a lot for anybody helping me. | caffe2 | low | Minor |
334,323,233 | neovim | Project concept | # Problem
With large projects with multiple directories, files like Session.vim, tags files, and other similar "project files" could be anywhere within the project.
# Expected behavior
With a "project" feature, commands like `:vimgrep`, `:make`, `nvim -S Session.vim`, etc., load files from the project directory.
I ... | enhancement,core | low | Major |
334,386,893 | pytorch | [Feature Request] Add to() method for optimizers/schedulers | I think the optimizers and schedulers could use some extra work.
The main thing I would love, is for optimizers and schedulers to have a `to()` method so we can send their parameters to a certain device. This would allow us to save the parameters and reload them at a later stage without any problems.
Right now, t... | todo,module: optimizer,triaged | low | Critical |
334,413,534 | go | cmd/go: document exit codes of a process executing `go test` | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
1.10.3
### Does this issue reproduce with the latest release?
Yes.
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOCA... | Documentation,NeedsInvestigation | low | Critical |
334,504,092 | go | spec: legal conversions from string constant to byte slice are not covered by convertability rules | According to [Conversions](https://golang.org/ref/spec#Conversions) (as of 21.06.2018), the following programs should be illegal, but it compiles without errors:
```
package main
func main() {
_ = []byte("s") // no compile time error
}
```
Here we have constant value `"s"` converted to `[]byte`. According to ... | Documentation,NeedsFix | low | Critical |
334,594,035 | go | cmd/compile: record and use per-function optimization data | This is an open-ended performance idea to explore.
We have per-function compiler-specific export data (see method funcExt in iexport.go). We could do some analysis in package ssa of return values, add that to the export data, and use it on import. This might help with function calls that cannot be inlined.
For ex... | Performance,NeedsInvestigation,compiler/runtime | low | Major |
334,638,239 | pytorch | [JIT] Add peephole to delete unnecessary type_as. | Context: #8687
This peephole should be probably be run on specialized graphs (in an unspecialized graph, it is hard to tell if a type_as is unnecessary). | oncall: jit | low | Minor |
334,653,243 | neovim | test failure: channels_spec: "can use stdio channel with pty" | Noticed this test failure in https://github.com/neovim/neovim/pull/8612 .
```
[1m[35m[ FAILED ][0m[0m [36m...ild/neovim/neovim/test/functional/core/channels_spec.lua[0m @ [36m109[0m: [1mchannels can use stdio channel with pty[0m
...ild/neovim/neovim/test/functional/core/channels_spec.lua:135: Expected ... | test,channels-rpc | low | Critical |
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.