text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior We should have documented as an example how to use the new next-sass plugin ## Current Behavior We have a few examples to import `.sass` files which are mostly hacks to make it work. ## Context With ...
* [x ] I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Both URLs /foo and /foo/ should render the contents of /pages/foo/index.js. ## Current Behavior /foo works fine, but /foo/ causes a 404 error on SSR and only reconciles later at client side render...
0
_Original tickethttp://projects.scipy.org/numpy/ticket/1700 on 2010-12-24 by trac user johnmark54, assigned to @rgommers._ After installing python binary **python-2.7.1.amd64.msi** from python.org the install of **numpy-1.5.0-win32-superpack-python2.7.exe** fails with error:'' Python 2.7 required, whic...
_Original tickethttp://projects.scipy.org/numpy/ticket/1621 on 2010-09-26 by trac user alxx, assigned to @rgommers._ When installing numpy-1.5.0-win32-superpack-python2.7 on windows7 64 bit, the installer can not find python2.7 in the registry. Its a know problem with the distutils installer. see http://bugs.pyt...
1
On Android, open Gallery, tap into Shrine. Then, tap an item. Notice how the initial animation up misses frames. Then, tap back. Notice more missed frames. Then, tap on the same item. The animation up is smooth. Seems like something is happening on the first animation for hero'ing an item up. Not sure what, but it's...
## Steps to Reproduce 1. Create a new flutter application (I used `flutter create -i swift -a kotlin coverage`). The problem occurs in every project. 2. Run tests with coverage in the newly created application (`cd coverage && flutter test --coverage`) * * * * I'm on the master channel, I also tried it with ...
0
It's a little sad that this isn't defined. For instance, in VectorizedRoutines.jl, the implementation of `rep` taking a number as the first argument has to either create a temporary array, or duplicate code, or create an immutable `AbstractArray` subtype that wraps a number. Neither are very attractive. Is there any...
On master, I get julia> FloatRange(10.0,1.0,11.0,10.0) WARNING: FloatRange{T}(start::T, step, len, den) is deprecated, use Base.floatrange(T, start, step, len, den) instead. Stacktrace: [1] depwarn(::String, ::Symbol) at ./deprecated.jl:62 [2] FloatRange(::Float64, ::Float64, ::Float6...
0
Both are providing support for static linking and link-time optimization. A 300% increase in size with no increase in scope of the libraries is quite bad. The standard library itself went from 39M to 42M but this can be explained by the added features and some cases of temporarily duplicated code like `Vec<T>` and `~...
play.rust-lang.org: http://is.gd/AnPaWL When the same trait is used more than one time but for different concrete types, it triggers the error for duplicate constraints without being sound. pub trait Get<T> { fn get(&self) -> T; } pub struct Foo { one: uint, two: u...
0
The List of extensions is displayed, but when I click on one iE `Elm` it shows `Error` `getaddrinfo ENOTFOUND marketplace.visualstudio.com marketplace.visualstudio.com:443` Vscode was started from the commandline with >set | grep proxy https_proxy=http://user:pw@ip:port http_proxy=http://user...
Whenever I try to install any extension, using _ext install_ , I get a **connect ETIMEDOUT 191.238.172.191:443** error. Trying to navigate to **https://191.238.172.191** in the browser produces a warning regarding the certificate being valid only for * **.market.visualstudio.com** , but I'm allowed to proceed. Shou...
1
Challenge Waypoint: Target Elements by ID Using jQuery has an issue. User Agent is: `Mozilla/5.0 (Windows NT 10.0; rv:42.0) Gecko/20100101 Firefox/42.0`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: <script> $(document).ready(function() ...
Challenge Waypoint: Use Hex Code for Specific Colors has an issue. User Agent is: `Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586`. Please describe how to reproduce this issue, and include links to screenshots if possible. My answer...
1
I just noticed today that it is nearly impossible to give a RaisedButton a gradient. So I'm asking that BoxDecoration, or a Gradient property, be added to all material components.
Internal: b/141787699 Flutter doesn't have a good way of decorating a button with something that isn't a flat color. This is because the underlying Material widget doesn't allow for it. Right now we just stack a DecoratedBox behind a MaterialButton with a transparent background. This works for our larger buttons, b...
1
**Keith Garry Boyce** opened **SPR-1076** and commented The call to getBean(factoryProcessorNames[i]) is flawed because it then must go out to get dependencies just to do ordering.. Below is an example where I had a problem. And below is a work around.. I think rather than implement order perhaps you might want to ...
**Hans Desmet** opened **SPR-6735** and commented When you use JDBC in the DAO layer a duplicate key violation that occurs when you insert a record or update a record is translated to a DuplicateKeyException, which is fine ! When you use Hibernate in the DAO layer, a duplicate key violation is translated to the ...
0
When `useAcrylic` is turned off, ctrl+shift+scroll doesn't enable it. This stops people from adjusting their transparencies. ### original text > * Your Windows build number: (Type `ver` at a Windows Command Prompt) > Microsoft Windows [Version 10.0.18362.86] > * What you're doing and what's happening: (Copy ...
Perhaps I overlooked it browsing through the json file but i didn't see another means to achieve transparency and i'm not a fan of the acrylic effects blurring factor or the fact that it turns off when the window is not selected. The traditional console provides for a static opacity just like in most nix envs, i'd ho...
1
### Bug report **Bug summary** I try to plot some dataframe with matplotlib in a GUI designed by pyqt5. I use `pyinstaller` for packaging as following: ` pyinstaller main.py` and its outcome: > 33 INFO: PyInstaller: 3.4 > 34 INFO: Python: 3.6.9 > 34 INFO: Platform: Linux-5.4.0-42-generic-x86_64-with-Ubuntu...
### `pyinstaller==3.6` with `matplotlib==3.3.0` fails to "freeze" Ran into the following issue today when attempting to use `pyinstaller` with the latest `matplotlib` File "c:\hostedtoolcache\windows\python\3.7.8\x64\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 623, in exec_module...
1
Running log2 on an array of zeros with float dtype results in small non-zero numbers and sometimes nan. ### Reproducing code example: import numpy as np x = np.zeros((1, 10), dtype=np.float) print(x > 0) print(np.log2(x, where=x > 0)) ### Error message: [[False False False ...
_Original tickethttp://projects.scipy.org/numpy/ticket/83 on 2006-04-27 by @edschofield, assigned to unknown._ As of SVN revision 2431, matrix objects preserve orientation in methods that take axis arguments for axis=0 and axis=1. For axis=None, they return a matrix of shape (1, 1). For example: >>> ...
0
import torch torch.autograd.Variable(torch.LongTensor([18])) / 0.0625 # Floating point exception (core dumped) torch.LongTensor([18]) / 0.0625 #Traceback (most recent call last): # File "<stdin>", line 1, in <module> # File ".../lib/python2.7/site-packages/torch/tensor...
Example below. We should probably return a floating tensor like numpy does. >>> import torch >>> a = torch.tensor([1,2,3], dtype=torch.long) >>> a + 0.5 1 2 3 [torch.LongTensor of size (3,)]
1
I'm trying to move the legend for a `sns.histplot` import seaborn as sns import pandas as pd import numpy as np # for test data import random # for test data import calendar # for test data # test dataframe np.random.seed(365) random.seed(365) df = pd.DataFrame({...
I was pretty excited about seeing the `histplot` functionality coming out, and I'm getting _beautiful_ figures with it already. I'm trying to finetune my figures and reposition the legends - but am running into issues when moving the legend. Below is toy example import numpy as np import pandas ...
1
**I'm submitting a ...** (check one with "x") [ x] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ...
In Angular 1.0 Dart, it is possible to use a TypeLiteral to bind and inject generics: class TypeLiteral<T> { const TypeLiteral(); Type get type => t; } An example of use: @Component( module: MyComponent.module ) class MyComponent { static void mo...
0
tsc -v 1.7.5 When compiling for es6 target, with let, const, etc., and using commonjs module, browser (Chrome) complains about let and co. used outside of "strict mode" zone. Adding "use strict" at the beginning of commonjs module should fix this. Note: * spec for es6, 10.2.1 Strict Mode Code says that "Module ...
ES6 modules default to running the code in the module in the strict mode. When transpiling this input into ES5 the strict mode should be preserved. As of Typescript 1.5 beta this is not the case: input: export class Foo{} transpile with: `tsc --module commonjs test.ts` actual output: ...
1
This issue has been discussed at here Blaisorblade also presented a solution, however fixing this is kind of out my technical reach, I must first understand coffee script. However I am willing to contribute in anyway I can.
Reported in Halp: * support/b47caffcaba511e3903bfcd96bef4da2 > If I have a paragraph in CJK characters and toggle soft wrap, the wrapping > point (should be the right edge of current window) is far away than the > current edge and some characters are displayed out of window which is not > visible. > I think th...
1
from discussions in #7378 * Electron version: 1.0.2 * Operating system: 10.12 I tried `webContents.capturePage`, but it can only capture the "visible" part of the page. If the height of your html node is larger than the BrowserWindow (or when there's a scroll bar), the overflow part is not included in the captu...
* Electron version: 1.4.13 * Operating system: MacOS 10.12.2 running on MacBook Pro (Retina, 13-inch, Early 2015) ### Expected behavior webview.capturePage() without specifying a dimension should return an image with the full viewable area on a Retina display. The dimensions of the resulting image should be eit...
1
**Description** I would like to have the run-config available for inspection in the dag details. **Use case / motivation** Figuring out what was used to trigger a dag, partially for reuse, but also to introspect what went wrong. It's currently possible to use the REST-API for that but a step removed, and our user...
### Apache Airflow version 2.2.3 ### What happened First of all, It is a very strange error and happened all of a sudden when running some tasks within a DAG which was switched off and we did manual task triggers. So basically within this DAG, we had a sensor running and a few downstream tasks after that in a cl...
0
# Environment Windows build number: 18990 Windows Terminal version (if applicable): 0.5.2661.0 Any other software? tmux 2.8 # Steps to reproduce 1. Install Windows Terminal 0.5.2661.0 on a machine where tmux 2.8 has been installed and displaying correctly with previous Wi...
# Environment Windows build number: Microsoft Windows [Version 10.0.18990.1002] Windows Terminal version (if applicable): 0.5 Any other software? Powershell Core and CMD # Steps to reproduce 1. create output (i.e.: `dir`) 2. resize window to force text to wrap 3. `clear` o...
1
Not sure if it is a bug or just general confusion. Tried only with 0.12.2, not with master. `this.forceUpdate();` crashes when a component is not mounted, which in itself makes sense, I'd say. However, if you call `this.forceUpdate()` directly in `componentWillMount`, it _doesn't_ crash, which suggests that it's OK ...
**Do you want to request a _feature_ or report a _bug_?** Report a bug. **What is the current behavior?** React 16.9.0 deprecates `javascript:` URLs (@sebmarkbage in #15047). It was motivated by preventing XSS vulnerability that can be used by injecting client-side scripts: <a href={url}>Unsafe Li...
0
* **Works** : A Component with an injectable: http://plnkr.co/edit/4uUq7Hqtk43ZHEQMbeM4?p=preview * **Broken** : A DynamicComponent with an injectable: http://plnkr.co/edit/lJyRdelIxhInuGn5blnl?p=preview
DynamicComponent annotation has it's own injectables property which gets parsed separately from Component annotations. This information later gets dropped in DirectiveMetadataReader as only Component is checked: angular/modules/angular2/src/core/compiler/directive_metadata_reader.js Line 17 in 3667854 | if (annot...
1
I hold alt and click and hold left mouse button. It doesn't select the text in rectangular way. I am running OSX elcapitan.
Please Implement Column Mode selection/editing. Previously requested here https://visualstudio.uservoice.com/forums/293070-visual-studio- code/suggestions/7761618-implement-column-mode-selection-editing On Mac preferred shortcut is cmd+option(alt) like Sublime Text does.
1
_Please make sure that this is a bug. As per ourGitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:bug_template_ **System information** * Have I written custom code (as opposed to using a stock example script provided in TensorFlow): YE...
_Please make sure that this is a bug. As per ourGitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:bug_template_ **System information** * Have I written custom code (as opposed to using a stock example script provided in TensorFlow):NO ...
1
npm install -g exp npm ERR! cb() never called! npm ERR! This is an error with npm itself. Please report this error at: npm ERR! https://npm.community npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\delger\AppData\Roaming\npm- cache_logs\2020-01-07T02_45_34_493Z-debug.log
npm ERR! cb() never called! npm ERR! This is an error with npm itself. Please report this error at: npm ERR! https://npm.community npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\bhagu\AppData\Roaming\npm- cache_logs\2020-02-15T07_06_40_844Z-debug.log PS E:\instaprops\ipros-website>
0
Hi, It could be great to have a additional option in command line for add the path to open to the current treeview. Why not `-a` ? It is currently only possible with the menu `Add project Folder`
The tree-view command "Add Root Folder" is very useful. Frequently I want to open multiple projects in one editor window, with each project as a root folder. This enables things like tree-view's "Hide VCS Ignored Files" to actually work. Other packages also require the root of a repository to be a root folder in tree...
1
Tried to compile julia 1.0.3. Compilation OK, but 4 tests fail when `make -i testall`: Error in testset cmdlineargs: Test Failed at /tmpdir/sysinst/julia/julia/test/cmdlineargs.jl:422 Expression: success(#= /tmpdir/sysinst/julia/julia/test/cmdlineargs.jl:422 =# @cmd("\$exename -e \"exit(0)\""...
I'm currently building Julia v1.0.2 with intel MKL library. The build is passed, but it cannot pass the test. I found some test failures are owing to the LD_LIBRARY_PATH are missing. For example, in `cmdlineargs.jl`. julia/test/cmdlineargs.jl Lines 30 to 32 in a50d5af | let v = writereadpipeline("println(\"REPL...
1
I think I wrote correctly but it doesn't work like I thought :( ![30](https://cloud.githubusercontent.com/assets/13378727/10334974/3089e878-6d18-11e5-8f89-d9420cb51a43.jpg)
The following link is running its jQuery twice: http://www.freecodecamp.com/challenges/target-the-parent-of-an-element-using- jquery #### Issue Description * It happens when I load it first time. Looking at my screenshot you can notice that there are 3 target5 * For reproduction of this bug you just need open t...
0
by **runningwild** : If there are no blank lines between the start of a file and a comment containing build constraints those build constraints are ignored. What steps will reproduce the problem? Make two files, foo.go (no blank line before the build constraint): // +build ignore ...
http://play.golang.org/p/T9zdkbOhqw In this (perverse) program, x is a pointer to a struct, and (*x).y is a legal expression, but x.y() is not. This contradicts the letter of the spec, though I think not its spirit. type T struct{} func (T) y() {} type X *T ...
0
_Please make sure that this is a bug. As per ourGitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:bug_template_ **System information** * Have I written custom code (as opposed to using a stock example script provided in TensorFlow): ...
I unclicked run1 and run2, but when I click on some variables, the run1 and run2 still show up. If I click on run1 and run2 again, five plots will be shown, with 2 of them repeated! By unclicking and clicking a run1, my board just messed up with more and more plots. This is a Google product? :-O Screenshots: ![imag...
0
Using a `<webview>` tag on Electron 0.35.2 without having a `<script>` tag in the parent HTML seems to cause the webview to never load the page. ### Does not load This has no `<script>` tags and the webview never loads. <!DOCTYPE html> <html> <head> <meta charset="utf-8"> </he...
I have a very little demo like this: <!DOCTYPE html> <html> <head> <title>Hello World!</title> </head> <body> <webview src="https://www.google.com/" autosize="on" minwidth="576" minheight="432"></webview> </body> </html> When I run the ap...
1
# What / Why `npm i` can fail when using local deps in a certain way. ## When Running `npm i` ## Where In a package that includes local dependencies that depend on a common registry-derived module. ## How In the situation where local (`file:`) deps form a chain and two share a common registry-derived dep, `npm...
C:\Users\ramee\iSplendidtask\iSplendidApp>npm install --save react-navigation npm ERR! cb() never called! npm ERR! This is an error with npm itself. Please report this error at: npm ERR! https://npm.community npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\ramee\AppData\Roaming\npm- cac...
0
**Describe the bug** This appears to be the core issue behind google/model-viewer#2915 It seems that something about a recent materials change has caused shader compilation on my PC to take ~10x(!) longer than it used to. If I were to guess at why I'd say that it's probably the DirectX shader compiler hitting a pa...
**Describe the bug** The introduction of `SRGB8_ALPHA8` in #22551 improved the render quality of sRGB textures, but also added significant synchronous conversion times that block the main thread. Every sRGB texture adds to the total blocking time, resulting in a poor user experience, especially when the scene contai...
1
### Description Adding a user defined, small text `label` field to (mapped) task instances, which would appear in the UI ### Use case/motivation Currently it is difficult to differentiate between mapped tasks in both the `Grid view` and the `Browse > Task Instances` view. It requires a lot of hunting and pecking i...
### Description Airflow currently exposes `map_index` to the user as a way of distinguishing between tasks in an expansion. The index is unlikely to be meaningful to the user. They probably have their own label for this action. I'm requesting that we allow them to add that label. To see the problem, consider a dag ...
1
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME modules/cloud/amazon/ec2_vpc_peer.py ##### ANSIBLE VERSION ansible --version ansible 2.4.2.0 config file = /home/snobym/work/aws-k8s-kops/ansible.cfg configured module search path = [u'/home/snobym/.ansible/plugins/modules', u'/us...
Currently there is no way to pass in variables when using `lookup('template', 'mytemplate.j2')`. For example. Given the following lookup: lookup('template', 'mytemplate.j2') Let's say I want to pass in a var `foo` which equals `bar` so that inside the template `{{ foo }}` outputs `{{ bar }}` My...
0
* **Electron Version:** 12.0.0-beta.21 * **Operating System:** Linux * **Last Known Working Electron version:** 11.x works well on the same project/code-base and dataset ### Expected Behavior No crash. ### Actual Behavior See attached dump.txt file. ### To Reproduce There is no simple way to provide minim...
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** 12.0.0...
1
In the process of learning how to use ansible with my linode I had pip installed all the necessary libraries. Then I had cloned the ansible repository to have access to the inventory scripts in my local documents folder. When I cloned the main repo I named it `ansible-src/` just so I'd remember that it was a clone fr...
It would be really nice if ansible would parse the playbook YAML before requesting the sudo password. I'm just learning YAML, and rely on ansible to tell me I'm wrong. I'm frequently wrong. Our company's ansible account has a tedious and annoying sudo password. (It's not security through obscurity, it's secur...
0
* [-] I have searched the issues of this repository and believe that this is not a duplicate. * [-] I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.6.2 * Operating System version: centos7.0 * Java version: 1.8 ### Steps to reproduce t...
* [ x ] I have searched the issues of this repository and believe that this is not a duplicate. * [ x ] I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.0 * Operating System version: windows 10 * Java version: 1.8 ### Steps to reprod...
0
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.0 * Operating System version: Linux * Java version: 1.8 ### Steps to reproduce this issue ...
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. I am using the new dubbo version 2.7.4, and I know the bugfix of #1968 and #4694 has been merge into 2.7.4 version, but I still met this ...
0
Challenge http://www.freecodecamp.com/challenges/waypoint-divide-one-number- by-another-with-javascript has an issue. Please describe how to reproduce it, and include links to screenshots if possible. It does not go to the next waypoint after run the code succefully.
Challenge http://www.freecodecamp.com/challenges/waypoint-use-comments-to- clarify-code has an issue. When following the directions all of the code gets commented automatically. 1. go to the top of the line and create a space for entering the comment 2. In the new space, start typing in <!-- 3. Bug: all of th...
0
This is a bug. I've spent a lot of time trying to localize the bug and have ended with the following minimal example: import {useState} from React; function App() { const [imageURL, setImageURL] = useState('https://picsum.photos/1600/1200'); const [meaninglessValue, setMeaninglessV...
**Do you want to request a _feature_ or report a _bug_?** Bug **What is the current behavior?** When updating the state from `useState` doesn't actually update the component. In this case it is being updated on an event handler. I used `console.log` to verify that it is being called yet no update in the compone...
1
WARNING: /data/users/ezyang/pytorch-tmp/BUILD.bazel:580:1: in hdrs attribute of cc_library rule //:aten_headers: Artifact 'bazel-out/k8-fastbuild/bin/aten/src/ATen/Config.h' is duplicated (through '//:aten/src/ATen/Config.h' and '//:aten_src_AT en_config'). Since this rule was created by the mac...
One thing which is so valuable in some problems, is that we are able to apply the softmax operation along a predefined dimension. Tesnorflow has this parameter in definition of the softmax layer but pytorch has not. Good to have this feature in next release of pytorch!
0
* Electron Version: 2.0.2 * Operating System (Platform and Version): Windows 10 (17134) * Last known working Electron version: N/A **Expected Behavior** When maximizing a frameless window, then unmaximizing and then maximizing again, there should not be a white bar atop the window. **Actual behavior** The...
* Electron Version: 2.0.1 * Operating System (Platform and Version): Windows10 1803 * Last known working Electron version: 2.0.1 **Expected Behavior** Maximized normal and restore normal when i click button in no frame window **Actual behavior** The first click is normal, but on the second click, there is...
1
I wrote my fairly simple flutter app and was testing in debug mode in my device. However when I try to relaunch the app again from recent apps of my device the app restarts, no state is saved for the app(even if I relaunch after few seconds).
## What is instance state, and why it exists On Android, an Activity can be killed at any time by the system. This happens usually when Android needs memory when your Activity is not in the foreground, or because of a non-handled configuration change, such as a locale change. To avoid the user having to restart wh...
1
**Do you want to request a _feature_ or report a _bug_?** Bug **What is the current behavior?** When using AggressiveSplittingPlugin, 2 problems. Firstly it doesn't work unless you also include "CommonsChunkPlugin", as this then has the bootstrap code, (webpackJsonp etc). Also if not using "CommonsChunkPlugin" du...
been battling with this error for a day now, really putting me off trying to upgrade to webpack 2 :) webpack 1.x runs without any issue. webpack 2.x runs, but only if i don't use any loaders As soon as a loader is added, i get the `Segmentation Fault: 11` error. tried deleting & reinstalling node_modules. tried ...
0
##### ISSUE TYPE * Feature Idea ##### COMPONENT NAME yum ##### OS / ENVIRONMENT CentOS/RHEL Linux ##### SUMMARY Currently the `yum` module has no functionality for handling checksums (according to https://docs.ansible.com/ansible/latest/yum_module.html). Thus, if you want to check that a downloaded RPM has t...
##### SUMMARY The module unarchive should support the parameter "checksum" the same way the get_uri module provides it (https://docs.ansible.com/ansible/latest/modules/get_url_module.html#parameter- checksum) ##### ISSUE TYPE * Feature Idea ##### COMPONENT NAME unarchive.py ##### ADDITIONAL INFORMATION could...
1
Challenge quoting-strings-with-single-quotes has an issue. User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. var myStr ...
On the current staging, two challenges ("Escaping Literal Quotes in Strings" and "Quoting Strings with Single Quotes") do not pass all tests with standard solution code. Namely, tests asserting regex match lengths for non-escaped double quotes are failing: `code.match(/[^\\\\]\"/g).length === 2` in the former chal...
1
Although I set `cursor: pointer` to all tab buttons, the top area where titlebar was located still show default cursor. Please watch the video. https://www.youtube.com/watch?v=bTCijr-KE3Q&feature=youtu.be > Same condition of #4151.
If this option is set, you can't drag/drop elements that are located in the top of the window (in the region where window's toolbar is placed). Even with `-webkit-app-region: drag`, dragging is not performed correctly. The element which being dragged is native `input[type="range"]` Here is the preview: ![Preview...
1
> Issue originally made by Loren Sanz (techmandu) ### Bug information * **Babel version:** ~6 - see shrinkwraps for specifics * **Node version:** v0.12.13 * **npm version:** 2.15.1 ### Options plugin - es2015 see https://github.com/mrsanz/samplenodemodule for exact options ### Input code...
As per nlf/lab-babel#4 (comment) The auxiliaryComment before/after are working awesomely but they aren't applied to the `_classCallCheck` method call in a class constructor. If they were applied to that line, lab would be able to report coverage correctly. Thanks! EDIT by hzoo: also #4450 \+ `_possibleConstructorR...
1
The FileDumper automatically creates a backup of a file (filename.yml~). Why is this the default behavior? It should be an option in my opinion.
I'm updated to commit `06c3222` When validating a form using choice validation, following exception arises: FatalErrorException: Error: Cannot call constructor in /my/project/Symfony/vendor/symfony/symfony/src/Symfony/Component/Validator/Constraints/ChoiceValidator.php line 31 Everything worked ...
0
**Synopsis** The following snippet of code does not work for it's intended challenge under certain browsers. <style> body{ background-color: black; } </style> _**Challenge**_ : Waypoint: Style the HTML Body Element Browsers Effected: Firefox (42.0), Edge (20.10240.16384.0) ...
Challenge Waypoint: Use Hex Code for Specific Colors has an issue. User Agent is: `Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586`. Please describe how to reproduce this issue, and include links to screenshots if possible. My answer...
1
Using Babel v6.0.2 with the following simple file: export function myfunc(first, second){ return first * second; } and a .babelrc with: { "plugins": ["transform-es2015-modules-systemjs"] } fails with the error: Error: example.js: We found a ...
I have a problem when I use my globally-installed version of babel to compile a UMD module. Here's my package.json: { "scripts": { "build": "babel src --out-dir dist", "build-fail": "~/.nvm/versions/node/v5.0.0/bin/babel src --out-dir dist" }, "devDepen...
1
We're currently sitting at 1,809 open issues, a number which hasn't really ever been useful to think about. The issue tracker seems to have three kinds of bugs: * Questions, e.g. #22625, #22474, #22093, #22005 * "Meta" bugs, e.g. #22475, #22221, #22172 * Specific problems (almost all of the rest) As far as I ...
* [ X ] I tried using the `@types/xxxx` package and had problems. * [ X ] I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript * [ X ] I have a question that is inappropriate for StackOverflow. (Please ask any appropriate questions there). * [ X ] Mention the authors (see `...
0
At some situations, plain object isn't the best choise. I tried to render a `Map` object by `v-for`, but seems `Vue` does not support it currently. (Here's a post I created in the Help thread on the forum.) Hope `Vue` can provide the `for ... of` syntax in `v-for` to iterate over data types like `Map` and `Set`. Fo...
Hi I has modified "Quick example" with using the Iterator protocol. Will be great if it will work in `1.0` version for es6 environments. Useful links: https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Iteration_protocols http://www.2ality.com/2015/02/es6-iteration.html
1
### System information OS - High Sierra 10.13 Tensorflow - 1.4 Keras - 2.0.9 CUDA - 9 cuDNN - 7 ### Describe the problem CUDA_ERROR_OUT_OF_MEMORY running tensorflow on GPU Simple program: import tensorflow as tf with tf.device('/gpu:0'): a = tf.constant([1.0, 2.0, 3.0, 4.0, 5.0,...
### System information * **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : https://github.com/tkuanlun350/Tensorflow-SegNet * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Windows 7 x64 * **TensorFlow installed from (source or binary)** : https...
1
I have viewed the guide https://github.com/flutter/flutter/wiki/Add-Flutter- to-existing-apps, it works. And so I want to use the output file (framework& asset )to integrate to existing iOS APP. It seems simulator not support AOT ant it run in debug model with a VM.
Current documentation (https://github.com/flutter/flutter/wiki/Flutter%27s-modes) states that Flutter release mode builds cannot be run on the Simulator. For many applications, the iOS Simulators are sufficiently high fidelity to do 99% of development work without going through the additional friction of deploying to...
1
In AngularJS, `ng-repeat` can iterate `Object` as key-value map. https://docs.angularjs.org/api/ng/directive/ngRepeat `<div ng-repeat="(key, value) in myObj"> ... </div>` In Angular2, `ngFor` doesn't support it. `ngFor` can iterate only an array. https://angular.io/docs/ts/latest/api/common/NgFor-directive.html ...
[ ] bug report => search github for a similar issue or PR before submitting [ x ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question **Current behavior** It is currently ...
0
To work around #20096 we introduced a --hairpin-mode flag that flips cbr0 to promiscuous mode. Users of kubenet run with --configure-cbr0=false, so before we push kubenet to production we need to decide how to handle this. If we decided to stick with promiscuous mode, kubenet should set it on whatever bridge it crea...
This block of code: klet.volumePluginMgr, err = NewInitializedVolumePluginMgr(klet, volumePlugins) if err != nil { return nil, err } klet.volumeManager, err = volumemanager.NewVolumeManager( enableControllerAttachDetach, h...
0
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.8 * Operating System version: mac os * Java version: 1.8 ### Steps to reproduce this issue ...
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.9-SNAPSHOT ### Steps to reproduce this issue The pom.xml of dubbo-configcenter module has '' to...
0
Is it possible to incorporate Weight Normalization (https://arxiv.org/abs/1602.07868) into tensorflow itself? https://github.com/openai/weightnorm/tree/master/tensorflow
can you implement weight norm ? I want to use it as follows. x = tf.layers.conv2d(x, filter_size=32, kernel_size=[3,3], strides=2) x = weight_norm(x) Is it possible?
1
my conf: services: session.memcached: class: Memcached calls: - [ addServer, [ 127.0.0.1, 11211 ]] session.handler.memcached: class: Symfony\Component\HttpFoundation\Session\Storage\Handler\MemcachedSessionHandler argume...
I have been hit with a very strange situation during these last 2 days. I have a custom security listener and provider that sends some emails to the user and the user's "godfather" when registering. Immediately after registering, the user is redirected to his personal area. The problem arises when from time to time, ...
1
While working on a way to address #101, it was discovered that some of the functions, constants, and structures offered in go/doc/comment.go are useful for parsing Go source code comments. In particular, blocks(), block, op, opPara, opHead, and opPre. Currently, consumers wanting to generate their own documentation...
by **peter.waller** : This issue was discussed in this post on golang-dev: https://groups.google.com/forum/?fromgroups=#!topic/golang-dev/xI7RIjkSeqk The heap scavenger is hard-coded to free up memory spans which are unused for longer than five minutes. For some applications this is un...
0
by **jdnurmi** : Often while experimenting or debugging a module, I'll find it necessary (or desirable) to import the 'fmt' module to generate some temporary debugging printfs. Alternatively, I might temporarily comment out a section that is the only user of the "os",'io' or 'http' mod...
(Sorry I haven't managed to trim down the test case. In doing so, I kept running into the formatting problem I just reported with strange comment movements.) What steps will reproduce the problem? 1. git clone github.com/dgryski/dkrcrypt 2. edit aria.go, add "var _ cipher.Blo...
0
Docs: https://docs.gradle.org/nightly/userguide/java_plugin.html#sec:incremental_annotation_processing Gradle feature discussion: gradle/gradle#1320
Gradle 4.7 provides support for incremental annotation processing. https://docs.gradle.org/nightly/userguide/java_plugin.html#sec:incremental_annotation_processing Gradle feature discussion: gradle/gradle#1320 It would be nice to see glide's annotation processor supporting it. I started to have a look at the co...
1
### What problem does this feature solve? Hi, I'd like to request a new option for the $watch() function: `shallow: boolean;`. This option would make watch callback function fire only if any of the first level values in an Array (a tuple) or on Object change. This would offer an alternative to the current behaviour...
### Vue.js version 1.0.21 ### Reproduction Link http://www.webpackbin.com/412B9bgJb ### Steps to reproduce click Toggle button ### What is Expected? when MyComponent is showing, the msg should be hidden ### What is actually happening? the msg always shows
0
I was trying to download the documentation from http://flask.pocoo.org/ using the PDF link and got a 404. At the same time also tried the zipped HTML link and that returned a 404 as well.
1
### System info * Playwright Version: 1.31.2 * Operating System: MacOS 13.2.1 * Browser: Chromium * Other info: ### Source code * I provided exact source code that allows reproducing the issue locally. **Config file** // playwright.config.ts import { defineConfig } from "@playwright/t...
### System info * Playwright Version: playwright-chromium@1.31.2 * Operating System: macOS 13.1 * Browser: Chrome 110.0.5481.77 (Official Build) (arm64) * Other info: ### Source code * I provided exact source code that allows reproducing the issue locally. `script.ts`: import { Browser, B...
0
Think this feature would be very useful julia> type Foo bar baz::Int qux::Float64 end julia> foo = Foo("Hello, world.", 23, 1.5) Foo("Hello, world.",23,1.5) julia> foo.<tab> bar baz qux press `tab` after n...
julia> z = match(r"a", "apa") RegexMatch("a") julia> z.<tab><tab> I know I can find the names of a composite type with `typeof(z).names` but I'd rather the repl do it for me and sprinkle some of its automagic-super-duper- wonderful-tab-completion-dust all over that tuple. :)
1
[Enter steps to reproduce below:] 1. Create new File 2. Try to safe empty file with cmd+shift+s **Atom Version** : 0.184.0 **System** : Mac OS X 10.9.5 **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module 'dialog' Error: Cannot find module 'dialog' at Function.Module._resolve...
[Enter steps to reproduce below:] 1. Right-click a file in the left column. (The file I used was green, not added to Git, and empty.) 2. Click Delete. **Atom Version** : 0.186.0 **System** : Mac OS X 10.10.2 **Thrown From** : tree-view package, v0.164.0 ### Stack Trace Uncaught Error: Cannot find module '...
1
### Reproducing code example: On my ARM Chromebook, running Debian 9.9 under Crouton I have a problem where the answer should be 'NaT', but I am getting '1970-01-01T00:00:00.000000000'. import numpy as np x = np.array([1,2,np.nan,np.nan]).astype('M8[ns]') print(x) Will print: a...
Doing some calculations I discover this unexpected behavior related with `dtypes`. I hope some of you can point me if this is a bug or I'm doing something wrong. ### Reproducing code example: Here is a minimal peace of my code which tries to reproduce the problem: import numpy as np # VE...
0
Test case: #[no_mangle] fn main() {} Output: nom.rs:2:1: 2:13 warning: function main is marked #[no_mangle], but not exported, #[warn(private_no_mangle_fns)] on by default nom.rs:2 fn main() {} ^~~~~~~~~~~~ rustc: /home/rustbuild/src/rust-buildbot/slave/nightly-...
#[no_mangle] fn main() { println!("hello world"); } when `rustc hello.rs`, rustc panicked: rustc: /home/liigo/rust/rust/src/llvm/include/llvm/Support/Casting.h:237: typename llvm::cast_retty<X, Y*>::ret_type llvm::cast(Y*) [with X = llvm::Function; Y = llvm::Value; ty...
1
I have seen that there are only Linux and MacOS based installations for the C language. Kindly let me know if there is any tensorflow for the Windows in C langauage.
I am working with Tensorflow in Java using the Maven dependency. I would like to use the GPU version in my Java application but I notice there is only a supported Maven repository for Linux. Will there be support for Tensorflow with Java in windows? If so then what is the timeline for this? Otherwise is there an...
1
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME selinux ##### ANSIBLE VERSION ansible 2.4.0.0 config file = /home/bert/.ansible.cfg configured module search path = [u'/home/bert/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ansible python module location =...
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME selinux ##### ANSIBLE VERSION ansible 2.4.0.0 ##### CONFIGURATION ANSIBLE_SSH_PIPELINING(/Users/mwillsher/src/cloud-deployment/ansible-playbooks/ansible.cfg) = True CACHE_PLUGIN(/Users/mwillsher/src/cloud-deployment/ansib...
1
`DataFrame.duplicated` correctly uses `hashtable.duplicated_int64` a specialized routine, while `core.series.IndexOpsMixin.duplicated` uses `lib.duplicated` an object based one. as its almost always better to factorize then use the fast routine, than to do object comparisons. but YMMV, so needs a couple of perf te...
* `scatter_matrix` (deprecate, redirect to `seaborn`) * `andrews_curve` * `parallel_coordinates` * `lag_plot` (maybe rename to `lag`) * `autocorrelation_plot` (maybe rename to `autocorrelation`?) * `bootstrap_plot` (maybe rename to `bootstrap`?) * `radviz` I think it would be nice to allow scatter_matr...
0
The solaris scripts are using grep with the -E option. This option is not supported in the default distribution. [ Dec 28 15:11:22 Disabled. ] [ Dec 28 15:12:11 Enabled. ] [ Dec 28 15:12:11 Executing start method ("/scratch/elasticsearch/bin/elasticsearch"). ] grep: illegal option -- E
Since Elasticsearch 2.1.1 the elasticsearch startup script has contained this line: daemonized=`echo $* | grep -E -- '(^-d |-d$| -d |--daemonize$|--daemonize )'` This means Elasticsearch 2.1 doesn't start on Solaris. Changing grep -E to egrep makes it work on all of Solaris, Linux and Mac OS X: ...
1
Consider the following code: import numpy from numpy.linalg import inv from multiprocessing import Process def hang(): a = numpy.identity(3) b = inv(a) p = Process(target=hang) p.start() p.join() If numpy uses OpenBLAS, it hangs forever consuming ...
_Original tickethttp://projects.scipy.org/numpy/ticket/2201 on 2012-08-14 by trac user agchang, assigned to @pv._ There seems to be an issue with numpy.linalg being called in unison with python's multiprocessing module. When invoking a numpy.linalg method from within a subprocess, e.g., through a worker pool and ma...
1
I copied code from an official example (http://mrdoob.github.io/three.js/examples/webgl_materials_normalmap.html) to do an globe with displacement mapping (http://threejs.thiele- medien.de/index_.html). Everything seems to be fine, but could this be avoided? In both Im getting multiple console warnings, this is th...
##### Description of the problem When you import and set up a GLTF scene containing transformation animations that apply to multiple objects, they're played in sync out of the box: ![image](https://user- images.githubusercontent.com/37680486/87869857-b0fcff00-c992-11ea-8b56-5193a43c405a.png) ![image](https://user-...
0
**I'm submitting a ...** (check one with "x") [x] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ...
so I added the ref as indicated in change log. ///<reference path="node_modules/angular2/typings/browser.d.ts"/> and yet in latest .6 I get a bunch of missing types now. am I missing something? or feature broken? ![err](https://cloud.githubusercontent.com/assets/5090936/12999797/df3bc488-d107-...
0
I install Bootstrap 3.1.0 in my Visual Studio 2013 update 1 with WebEssential 1.8.5. I have a MVC 5.1 Project. What can i do to see corectly the site ? Now don't find css. I also compile bootstrap.less.
Hi @mdo @fat, Thanks for creating Bootstrap V3. http://getbootstrap.com/javascript/#modals Just tried "Launch demo modal" button and it works great, however there is small issue, when we open and close modal it seems like it Flick the page for a while. Mufaddal
0
I've had a few of my latest submits fail because of this test being flaky: W0318 23:49:08.262989 2801 docker.go:728] found a container with the "k8s" prefix, but too few fields (2): "k8s_unidentified" I0318 23:49:08.265061 2801 container_gc.go:104] Removing unidentified dead container "/k8s_u...
Not everyone uses salt. We need to maintain cluster addons (even required ones) in cluster/addons/ so they are visible to users. This is where people go to look for addons. The change in location is causing a lot of confusion for non-kube-up deployment users as there was no release notes or migration path on how to d...
0
I'm running on OS X. Steps to reproduce: 1. Start Atom 2. Open a directory 3. Open a file so there's a tab open 4. Restart Atom 5. Reopen the same directory I expect the workspace to be restored (i.e. the file should be opened) when I reopen the directory in Atom. If I open the directory a second time af...
Like I mentioned here in my comment opening a folder won't work for the first time you open it, wether if you drag&drop it or just open it via the shortcut. Same Problem on two different computers with Atom (0.124.0) running on Mac OS X (Mavericks).
1
Hi! I translated all the English documents into Chinese. Let's bring the documentation to all the -speaking community 🌐 (currently 0 out of 267 complete) Who would want to translate? Please follow the 🤗 TRANSLATING guide. Here is a list of the files ready for translation. Let us know in this issue if you'd like ...
## Environment info * `transformers` version: 4.4.2 * Platform: linux * Python version: 3.7 * PyTorch version (GPU?): 1.8 * Tensorflow version (GPU?): - * Using GPU in script?: - * Using distributed or parallel set-up in script?: - ### Who can help t5: @patrickvonplaten, @patil-suraj ## Information ...
0
please help add Mail plugin to send the email to different services like gmail outlook etc.. Usecase and Observation : as per the observation currently we are using nodemailer to send the reports generated by playwright and that is also some times not working due to asynchronous nature and some times it's picking n-...
Let us know what functionality you'd like to see in Playwright and what your use case is: I work for a fortune 100 company. We just implemented Playwright after having no automation framework. Everything is awesome thus far, you all did an awesome job and my app dev team thanks you immensely. But if you could possib...
1
I've noticed some odd behavior in Deno.compile(). The first time I compile a file it works more or less as expected. But if I change or delete the source file and call Deno.compile() a second time I get the same result as the first time. Apparently Deno is caching the source file. I'd like to do a fresh compile eve...
Currently there is no way to internally cache bust with the compiler APIs, only if Deno is invoked with `--reload` will the compiler APIs cache bust.
1
At the moment, libstd depends for example on libnative, which itself depends on libstd. So it is not possible to compile libnative without libstd. I am not sure how rust is able to compile libstd, but I think it requires an existing libstd to compile with. My suggestion is to factor out more parts of libstd into the...
Original title: "Rewrite core::run" As per a FIXME, `// Spawn two entire schedulers to read both stdout and sterr // in parallel so we don't deadlock while blocking on one // or the other. FIXME: Surely there's a much more clever way // to do this.`
0
Challenge http://www.freecodecamp.com/challenges/waypoint-learn-how-script- tags-and-document-ready-work has an issue. Please describe how to reproduce it, and include links to screenshots if possible.
jQuery All Chapter don't show required task until you click on " Run Test " I'll submit two screenshots one before clicking on Run Test One After Clicking on Run Test Button. # screenshot Before Clicking On " Run Test Button " ![image](https://cloud.githubusercontent.com/assets/14052934/9712758/562e367a-5566-11e...
0
##### System information (version) * OpenCV => latest ##### Detailed description See the code opencv/modules/core/include/opencv2/core/check.hpp Lines 137 to 153 in fa66c6b | #ifndef NDEBUG ---|--- | #define CV_DbgCheck(v, test_expr, msg) CV__CHECK_CUSTOM_TEST(_, auto, v, (test_expr), #v, #test_expr, ...
pipeline.zip I trained an object detection example model of pets by tensorflow (ubuntu 16.04 python 3.5 tensorflow 1.11.0). I am trying to convert is to opencv. I get the error Scales: [0.25, 0.5, 1.0, 2.0] Aspect ratios: [0.5, 1.0, 2.0] Width stride: 16.000000 Height stride: 16.000000 Features stride...
0
# Environment Windows build number: Version 10.0.18362.356 # Steps to reproduce Open a WSL shell in conhost and execute the following command: printf "\ec\e[1;15r\e[3g\e[1;20H\eH\e[?25l\e[9;20H\e[?1049hstart\r\e[99Bmargin\e[H\ttab\n" This initialises a number of terminal properties. * The s...
# Environment Microsoft Windows [Version 10.0.18362.295] Any other software? No # Steps to reproduce Install the application from Windows Store (or from binaries released on this repo) and launch it, it results in the following error: ![image](https://user- images.githubusercontent.com/1392...
0
A user of my package BinningAnalysis.jl approached me yesterday with the following peace of code. using BinningAnalysis mutable struct MyStruct x::LogBinner{Float64,32} end function run!(s::MyStruct) push!(s.x, rand()) end s = MyStruct(LogBinner(Float64)) run!(s)...
Hi guys! I'm packing latest git version of Julia and today I noticed the following warning: julia-unstable-debug.x86_64: W: no-soname /usr/lib64/libjulia-debug.so.0.5.0 Indeed, using `objdump` I can see that there is no SONAME in the `-debug` library: # objdump -x libjulia-debug.s...
0
Waypoint: Passing Values to Functions with Arguments I get a RangeError with this code: // Example function ourFunction(a, b) { console.log(a - b); } ourFunction(10, 5); // Outputs 5 // Only change code below this line. function myFunction(a, b){ console.log(a + b)...
Challenge Waypoint: Passing Values to Functions with Arguments has an issue. User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36`. Running tests outputs `RangeError: Maximum call stack size exceeded` and no tests pass. My code: ...
1
# Environment Windows build number: [Version 10.0.19041.329] 2004 PowerToys version: v0.19.0 PowerToy module for which you are reporting the bug (if applicable): PowerToys Run # Steps to reproduce 1. Open PowerToys Setting. 2. Press Alt+Space # Expected behavior PowerToys Run start...
# Environment Windows build number: [Version 10.0.18362.836] PowerToys version: v0.18.1 PowerToys: PowerToys Run # Steps to reproduce With PowerToys installed and running, press `Alt` \+ `Space` from any screen. # Expected behavior PowerToys Run popup shows up to start typing a comman...
1
Maybe I am missing something, but is this correct? `np.issubdtype(np.double, np.bool) => True` At the very least, this is confusing.
_Original tickethttp://projects.scipy.org/numpy/ticket/1739 on 2011-02-10 by @pv, assigned to unknown._ Interestingly, >>> np.issubdtype(int, np.bool_) False >>> np.issubdtype(str, bool) True The issubdtype routine apparently does not work correctly for this case (and never has). Wh...
1
##### ISSUE TYPE * Bug Report ##### ANSIBLE VERSION 2.0.2.0 ##### CONFIGURATION N/A ##### OS / ENVIRONMENT N/A ##### SUMMARY In 2.0.2.0, using `get_url` with `file://` urls fails because it is looking for an http respond code. This worked correctly in 2.0.1.0. ##### STEPS TO REPRODUCE `touch /tmp/srcfi...
##### ISSUE TYPE * Feature Idea ##### COMPONENT NAME firewalld ##### ANSIBLE VERSION ansible 2.4.1.0 config file = <REDACTED>/ansible.cfg configured module search path = [u'/<REDACTED>/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ansible python module locati...
0
# Summary of the new feature/enhancement Right now, you can either remap key to a key or shortcut to a shortcut. I'd like a way to remap shortcut to a key. Why? Well, I have Surface Keyboard Bluetooth, which special keys. Some are usual ones like Next, Previous, Play/Pause. But some are Windows specific (like Sett...
**crutkas update 2020.06.17:** you can get this via WinGet `winget install PowerToys` **crutkas update 2021.09.17:** You can install PowerToys in the Microsoft Store via https://aka.ms/getPowerToys # Summary of the new feature/enhancement The Microsoft Store is a convenient way to install software (like Pyt...
0
# Environment Windows build number: [run "ver" at a command prompt]Version 10.0.18363.752] PowerToys version: 0.16 PowerToy module for which you are reporting the bug (if applicable): fancyzone # Steps to reproduce unable to create a fancyzone that spans mutltiple monitors nor can I ...
# Support zones which span several monitors Could you please add the capability to define zones across several monitors? For instance I would like to define one single zone spanning two monitors (this is my current setup with ultramon for instance). Thanks very much
1
**Chris Beams** opened **SPR-6184** and commented Currently, JavaConfig integrates with the TestContext framework via its `ContextLoader` implementation, `JavaConfigContextLoader`: @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations="com.bank.TransferAppConfig", ...
**Cédrik LIME** opened **SPR-7743** and commented This patch exposes the properties of `HttpURLConnection` within `SimpleClientHttpRequestFactory` such as `connectTimeout` and `readTimeout`. There will therefore be no loss of available functionality in using Spring's `ClientHttpRequestFactory` in place of a `Http...
0
### Bug summary After creating a figure with multiple lines plotted using the plt.loglog() command, altering the linestyle in the plot window under Figure Options -> Curves, results in some lines being swapped. ### Code for reproduction import matplotlib.pyplot as plt import numpy as np ...
### Bug summary I am trying to plot stacked bar chart. I have already defined python dictionary mapping key to specific color. The problem I am getting is, color is not consistent while plotting the chart. when I do console print for same key, it shows correct color but chart shows different color. Also, height of t...
0
There's a small (but obvious) sizing error when `.btn-lg` and `.input-lg` are used in an input group. See below: ![bootstraperror](https://cloud.githubusercontent.com/assets/2413031/3079428/ecad4d78-e499-11e3-86d9-944b760b638c.png) Relevant CSS: .btn-lg { // line-height: ensure even-numbered he...
![13 12 17 r2j9i](https://camo.githubusercontent.com/f3d965b4ae7cd9205ae7c471cba6f873818679a8e94d35d839889fe78e5c3371/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3631333333312f313736333230382f30626461343763652d363730382d313165332d386563622d6131323438363436663565662e706e67) Browser: Chrome 33 ...
1
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior When opening a Menu and creating a react portal, the portal that's created should reference the `Node.ownerDocument` of the `anchorEl` or something similar, to support rendering Material-UI components in...
* I have searched the issues of this repository and believe that this is not a duplicate. * Possibly related issue: #8353 ## Expected Behavior 1. Make change to file 2. Save file 3. React hot loader renders change without erorrs and keeps state ## Current Behavior 1. Make change to file 2. Sa...
0
It appears that export assignments (`export = x`) when compiling `amd` modules for either `es5` or `es6` output to a single file, is broken? For example, this file: import { Scribe } from "../../../scribe" /** * Sets the default content of the scribe so that each carriage return crea...
`window.fetch(...)` > error TS2304: Cannot find name 'fetch'.
0