text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
Hi, I am a newbie to Elasticsearch, i was going through the code and found lack of Documentation. Because of which lot of confusion about what is happening. As i am going through the code (fresh eye) will like to add JavaDocs while browsing the code.
A hosted version of the Javadocs will greatly help out on the mailing- list/forum when trying to point out a class/method to someone. The online documentation is great for illustrating concepts, but something at the class level would also help
1
### `savefig` saves cropped images by default. ### **Bug summary** It's probably an issue that almost everybody who uses matplotlib would have encountered. If you generate a figure - which often contains axis labels and legends - and save it with default settings, you'll get a cropped image. It's a duplicate of my...
Some ideas: * Drop the duplicate "nothing" entries in the marker style combo box (at least present in 1.5.0rc3). * Sort the entries alphabetically. * Add an icon with a representation of the marker/line style.
0
Kubelet relies on `docker history` to get the size of layers for each image, so that it can deduplicate shared layers. This is fine for docker v1.9 or before. For docker 1.10+, docker stops generating a random image ID for each layer, and just uses the content addressable IDs. Except for the top layer, every other la...
1. Followed the README.md for cluster setup with 4 nodes using $ kubectl scale rc cassandra --replicas=4 2. Following status command supposed to list all 4-nodes in cluster $ kubectl exec -ti cassandra -- nodetool status Instead of 4-nodes, we **see just 1-node**. Seems like...
0
### First Check * I added a very descriptive title to this issue. * I used the GitHub search to find a similar issue and didn't find it. * I searched the FastAPI documentation, with the integrated search. * I already searched in Google "How to X in FastAPI" and didn't find any information. * I already read...
### First Check * I added a very descriptive title to this issue. * I used the GitHub search to find a similar issue and didn't find it. * I searched the FastAPI documentation, with the integrated search. * I already searched in Google "How to X in FastAPI" and didn't find any information. * I already read...
0
My project has one root folder with a bunch of related projects in subfolders each with their own git rep attached. In Xamarin Studio it shows each project/subfolder with a description of which branch each repo is on.. i.e. "master". So instantly I can see each project is its own repo and which branch they are curre...
Right now it doesn't seem possible to opening multiple project folders in the same window which imho is a bit constraining. If you are working on modular modern projects it's a must have to be productive.
1
**Symfony version(s) affected** : master **Description** Routes are not recognized when using one dynamic on one hand, and one with a specified host on the other hand. **How to reproduce** Here is a simple PHPUnit test : public function testDynamic() { $routes = new Route...
**Symfony version(s) affected** : 4.1.1 **Description** We have a URL with a variable that will contain a dot, but that doesn't work under Symfony 4.1.1 any more when there is another route that has a `host` requirement set. **How to reproduce** 1. Put the following in `routes.yaml`: foo: ...
1
* Electron version: 0.36.10 * Operating system: Windows 8.1 64bit Hello ! I have just created a simple window which loads an url. The problem is that while visiting the URL in chrome or any other browser, everything is fine, but when opening it in Electron, it says jQuery is not defined. The problem comes from...
jQuery contains something along this lines: if ( typeof module === "object" && typeof module.exports === "object" ) { // set jQuery in `module` } else { // set jQuery in `window` } module is defined, even in the browser-side scripts. This causes jQuery to ignore the `window` object...
1
I have index with parent "model" and child "sell" documents at one index with millions of documents and heavy concurrent indexing. All nodes works with Oracle Hotspot 8 with 30gb heap, ElasticSearch 1.3.5. I'm execute delete by query like this: curl -XDELETE 'http://127.0.0.1:9200/sells/sell/_query' ...
The ability to have several types on the same index is causing problems: * the mappings APIs need to maintain one mapping per type, yet those mappings can't be independent and keeping them synchronized is complicated (see eg. discussions on #15539) * it gives the feeling that the system can easily deal with docu...
0
When the same `[router-link]` is clicked multiple times, multiple history entries are created with the exact same URL. Would it be possible to compare the current URL of the page to the destination URL, and not call pushState if the URL is already correct? From a user perspective, if I am on page A and click a link ...
[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 **Current behavior** I am using upgrade adapter. When using *ngIf on components angular runs the components outside of zone which causes ...
0
Hi, I am using Tensorflow v0.11 and I have tried on Mac OS X and Centos 6 I am running into an error when running the following code: W = tf.get_variable('W', (5, 3)) x = tf.placeholder(tf.float32, shape=(None, 5)) h = tf.matmul(x, W) grads = tf.map_fn(lambda x: tf.gradient...
GitHub issues are for bugs / installation problems / feature requests. For general support from the community, see StackOverflow. To make bugs and feature requests more easy to find and organize, we close issues that are deemed out of scope for GitHub Issues and point people to StackOverflow. For bugs or insta...
1
According to http://yaml.org/type/merge.html one can overwrite keys of merged maps. But since #10902 this does not work anymore, which makes merging with anchors useless. Example YAML. - key-with-duplicate: &alias1 foo: bar foo: ignore - key-without-duplicate: &alias2 ...
This is a meta-issue that groups all the proposed backward incompatible changes for the upcoming Symfony 3.0 version. It includes more information than the 3.0 milestone because sometimes people propose ideas in the comments of the issues and pull requests. #### Commands * Make `assets:install` even smarter and c...
0
### System info * Playwright Version: 1.36.0 * Operating System: macOS 13.0 * Browser: Chromium * Other info: Running on Google Chrome ### Source code * I provided exact source code that allows reproducing the issue locally. **Script** import {chromium } from 'playwright' (async ...
### System info * Playwright Version: [v1.34.0] * Operating System: [All] * Browser: [All] ### Source code public async waitWidgetsLoaded(seconds: number) { const loadingDots = await this.widgetRefreshOverlay.all(); for (const dot of loadingDots) { await ...
0
## Bug Report **Current Behavior** When the value of an enum case references a string case on another enum an unexpected extra key is added to the compiled javascript object. This is especially apparent when the case names do not match. **Input Code** https://bit.ly/2nRTcds enum Foo { foo =...
I was looking through the Babel docs, and I don't see a way to specify a different file other than .babelrc for the Babel config. My use case is I am writing a test runner. A project might use Babel in more than one way. For example, they may transpile their source with some Babel settings, but may transpile their t...
0
I want to implement a transformer toolkit(a set of modules that will compose some kind of DL model with attention ).I have said a toolkit because the today's landscape of the transformer research is very diverse and I think that it will be better to have the separate modules ( attention layer , concat layer ,add& nor...
I'm trying to use a tf op inside a Lambda layer. The goal is to basically wrap tf layers such that `model.compile` etc. still work. As I understood it I can just incorporate tf ops inside Lambda layers. If I do this however, serialization seems to be broken because it fails to pickle: TypeError: can't ...
0
On documentation page, when clicking on HEAD in sidebar, there's a 404 error. * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Getting the HEAD Github documentation. ## Current Behavior Get a 404 error ## Steps to Reproduce (for bugs) Go on docume...
* I have searched the issues of this repository and believe that this is not a duplicate. Thanks for the awesome library guys! I'm really pleased with it so far, other than the bug I've described below. ## Expected Behavior When I create an `IconButton` with a menu that activates on mouse click, the `Menu` shoul...
0
If you know how to fix the issue, make a pull request instead. * I tried using the `@types/xxxx` package and had problems. * I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript * I have a question that is inappropriate for StackOverflow. (Please ask any appropriate ques...
* [ x] I tried using the `@types/xml2js` package and had problems. * Authors: @michelsalib, @jasonrm After I installed xml2js typings, I get a ton of errors with Node typings. Here are a few samples. Do I have a collision here? Thanks ERROR in C:/src/Xbox.Ambassadors/Microsoft.Ambassadors/Microsoft.Ambassad...
0
It works all fine but I get the exit code `3221225477`every time which causes npm to display an error if ran with a npm-script. OS: Windows 10 Version 1511 Electron: 0.35.1
In VS Code when I call process.exit() from the main side I get the following trace. I have not been able to reproduce on a bare Electron 0.34.1 though. Any ideas what I could look for to nail this down? C:\GitDevelopment\monaco> (No symbol) [0x0046D436](No symbol) [0x0036B0FF](No symbol) [0x0036AC8A] uv_async_send...
1
**Xarx** opened **SPR-8343** and commented What happens: I have a field denoted by `@Autowire`. There is one `@Primary` bean candidate for the field, the other candidates are marked as `@Lazy`. However, even in this case, when a primary candidate is available, all lazy candidates are instantiated during the candi...
**Nazin Alexander** opened **SPR-5254** and commented public abstract class A { private Object service; public void setService(Object service) { this.service = service; } public Object getService() { return service; } } public class B extends A{ `@Override` public MyService getService() { return ...
0
Hi, Running opencv installed via OpenVINO on Windows and it cannot read video. Tried several formats (MP4, AVI, etc), but still getting: `MFX: Unsupported extension [ WARN:0] global opencv\modules\videoio\src\cap_msmf.cpp (680) CvCapture_MSMF::initStream Failed to set mediaType (stream 0, (352x288 @ 25) MFVideoFor...
##### System information (version) * OpenCV => 4.3.0 * Operating System / Platform => Windows 64 Bit * Compiler => Visual Studio 2019 ##### Detailed description if I use mp4 which has no audio stream (audio stream was removed with ffmpeg), no problem. I used opencv of release windows module(4.3.0). result...
1
Example In [1]: a = np.ones(10)[::2] # flat iter will use updateifcopy for non-contiguous array In [2]: a.flags Out[2]: C_CONTIGUOUS : False F_CONTIGUOUS : False OWNDATA : False WRITEABLE : True ALIGNED : True UPDATEIFCOPY : False In [3]: a.fl...
What's going on here? >>> x = np.broadcast_to(1, (2,2)) >>> x.flags.writeable = True # ok, this is a little sketchy >>> x.flags.writeable True >>> x.flat.__array__() >>> x.flags.writeable False
1
#### Description The ROC functionality reduces its workload by first extracting forward differences between scores and then discarding potential thresholds that are too close together by calling `utils.isclose.fixes`. The problem is that this happens without notification of the user (or any chance to intervene, sett...
pred=[1e-10, 0, 0] sol=[1, 0, 0] metrics.roc_auc_score(sol, pred) # 0.5, wrong, 1 is correct pred=[1, 0, 0] sol=[1, 0, 0] metrics.roc_auc_score(sol, pred) # 1 correct
1
Hi, I'm pretty new at working with bootstrap, just switched to it so sorry if this is a dumb question: I have a button that triggers a modal dialog and I want to make that button also call a different function when it's clicked, so I decided to go with the following code: $(function () { $("#mycontainer").on('cl...
Is it possible to add the ability to combine multiple hidden-x and/or visible-x? For example: I'm creating a list of things and would like to insert a "< br/ >" in the middle that only appears on xs and sm media queries, and not be present for the md and lg media queries. Idea below <span class="visi...
0
`io::Error` can't implement `Clone` right now because it uses a trait object internally for custom errors. With #24133 adding the `Sync` bound, it becomes possible to put `io::Error` in `Arc`. But it would still be nice to be able to `Clone` it again, which could be accomplished by changing the private `Box<Custom>` ...
The `Cell::as_unsafe_cell` and `RefCell::as_unsafe_cell` methods return a reference to the underlying `UnsafeCell` in both cases. It's not clear what the use cases are for these methods and whether they can be achieved in some alternative way. If you are using these methods, please leave a comment with your use case...
0
I cannot install jaxlib on Windows PC (CPU only). > pip install --upgrade jaxlib Collecting jaxlib Could not find a version that satisfies the requirement jaxlib (from versions: ) No matching distribution found for jaxlib > pip search jaxlib jaxlib (0.1.11) - XLA library for JAX ...
I failed to build jax from source with(similar with #253, but my system is win): Traceback (most recent call last): File "build/build.py", line 308, in main() File "build/build.py", line 304, in main [":install_xla_in_source_tree", os.getcwd()]) File "build/build.py", line 50, in shell output = subproce...
1
# 🚀 Feature request Thanks a lot for releasing LXMERT model. In the LXMERT model code samples, the visual feature extraction code (using generalized faster-rcnn: modeling_frcnn) only in the inference step is given. However, the visual feature extraction during the training phase is not given. For this reason if we ...
Right now the Trainer uses `IterableDatasetShard` to skip examples on each node and avoid ending up with duplicate data. This is not efficient for vision or audio tasks since we waste I/O and CPU time reading and decoding files that are not used. We consider implementing an optimized sharding for distributed train...
0
Instead of having a toggle button that reveal the filter widget we should just move into the panel header. That would make it not take extra space and still be easily discoverable. ![screen shot 2016-06-03 at 10 13 52](https://cloud.githubusercontent.com/assets/1794099/15772900/33712628-2974-11e6-8034-91abb8a56197.p...
* VSCode Version: Latest alpha * OS Version: WIndows10 Steps to Reproduce: 1. Launch VSCode and update setting in settings.json to some random text or just "powershell" (no extension) or "cms" ![image](https://cloud.githubusercontent.com/assets/17735796/15517237/9d6f3df6-21ab-11e6-97a3-c8c70084ba4f.png) ...
0
What steps will reproduce the problem? 1. edit httpd.go with sample code in Effective Go, 2. 6g httpd.go && 6g httpd.6 3. 6prof ./6.out What is the expected output? What do you see instead? davies@boromir ~ $ 6g http.go && 6l http.6 && 6prof ./6.out futexsleep addr=0x4aa...
go ((func())(nil))() Should it panic in the calling go routine, or at the start of the called goroutine? defer ((func())(nil))() Should it panic at the defer statement, or at the return point? We've had some argument either way. Panicing in the calling goroutine /...
0
During an upgrade from python 3.7 to 3.9 I face an error similar to the one reported on #5297. The proxies are defined on the system level (export http_proxy and export https_proxy). It works fine on 3.7. ## Expected Result Requests respect the proxy ## Actual Result Proxy causes the request fo fail ## Reprodu...
In https://bugs.python.org/issue27657 it was decided to reverse an earlier decision about how `urllib.parse.urlparse` handles URLs that don't specify a scheme (e.g. `example.org:80`). This behavior change is in Python 3.9. One way this can present to a user is by confusing requests's attempt to add the scheme if it'...
1
### If possible, provide a minimal reproducible example (We usually don't have time to read hundreds of lines of your code) from tensorflow.examples.tutorials.mnist import input_data mnist = input_data.read_data_sets("/tmp/data/", one_hot=True) raises `http.client.RemoteDisconnected: Remote end cl...
The website of Yann LeCun is down at the moment. Therefore the MNIST-Script for downloading the files doesn't work either. (-> learn/python/learn/datasets/mnist.py won't work) Are there any mirrors?
1
An HPA request is submitted against namespaceA, but contains a reference to namespaceB (https://github.com/kubernetes/kubernetes/blob/master/pkg/apis/extensions/types.go#L75). The request is accepted because I have rights to create on in namespaceA, but no checking is done to see if I can scale what I'm asking. The ...
Vagrant getting started guide: kubernetes/docs/getting-started- guides/vagrant.md is an empty shell pointing to its new location on the web at http://releases.k8s.io/release-1.2/docs/getting-started-guides/vagrant.md with the source for said web page being located at kubernetes.github.io/docs/getting-started-guides/v...
0
Describe what you were doing when the bug occurred: 1. 2. 3. * * * ## Please do not remove the text below this line DevTools version: 4.2.1-3816ae7c3 Call stack: at chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:157108 at Map.forEach () at commitIndex (chrome- extension://fmkadmap...
PLEASE INCLUDE REPRO INSTRUCTIONS AND EXAMPLE CODE I got this error when I click 'Ranked'. * * * ## Please do not remove the text below this line DevTools version: 4.0.4-3c6a219 Call stack: at chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:11441 at Map.forEach () at commitIndex (chrome...
1
Post request works but response (on code 200) is not returned. axios .post(url, JSON.stringify(data)) .then((resp) => { console.log("resp: ", resp.data.body); console.log("result: ", resp.data.result); alert(`Success ${JSON.stringify(resp.data.result)}`); }) .catch((err) => { console.error("Problem w...
**Describe the bug** `axios.post` randomly sends duplicate POST request and ignores the first response. The code is below: class SomeClass extends React.PureComponent isReady = true submitCounter = 0 lastSent = null // ... submit() { this.submitCounte...
0
Internal: b/144873050 Hey, looks like there is a bug preventing gesture detection on right side of the widget inside page view with only one element and viewport fraction smaller than 1.0. This is how my widget tree looks like: column - page view - gesture detector - green con...
`InkWell` will not work if `_file.length` is 1; but it will work if length is greater than or equal to 2; Container( height: 200, child: PageView.builder( itemCount: _file.length, controller: PageController(viewportFraction: 0.4), itemBuilder: (context,...
1
In an extension, I tried to register an event listener for onDidSaveTextDocument() which would activate the format function, and save the file afterwards. Using the code: commands.executeCommands('editor.action.format').then(() => { commands.executeCommands('workbench.action.files.save'); })...
The use case is to call the `workbench.action.closeAllEditors` function and then assert that the number of visible editors is 0. Currently when doing the check after calling the function, `window.visibleTextEditors` is still 1. I think this is a timing issue where executing a built in command does not wait for any c...
1
I like the tabs in the title bar. However, the area where I can move the window is too small: ![image](https://user- images.githubusercontent.com/5169960/60040483-f5be4580-966d-11e9-8e34-2a17f26e0759.png) Compare this with Edge/Chrome where the entire area not used for tabs can be used to move the window around: !...
I think its really nice that you can put the terminal-tabs in your titlebar but I got an issue there. You can't move the window around klicking on the blank space in the the-bar to move the window around (highlighted in the screenshot). Since people are moving their terminal quite often it would be nice to offer th...
1
**I'm submitting a ...** [x] bug report [ ] feature request [ ] support request **Current behavior** When a route with a specified outlet has children, the activated child is put into the main router outlet, along side the route component that is already active inside this outlet, rathe...
**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 ...
0
It'd be really useful if there was a single endpoint that could be called that gathers all the config from nodes in the cluster as well as any cluster level config, this includes the local elasticsearch.yml from all nodes.
Currently there is no way of seeing all settings that are enforced. For instance, defaults are not available and settings from the `config/elasticsearch.yml` are not available. Any setting which is different from the default should be returned by these APIs: GET /{index}/_settings GET /_cluster/se...
1
`kubectl` crashes when creating a pod with one or more empty arguments. This also happens when creating a deployment with this as a pod spec. I'm using v1.2.3. $ kubectl version Client Version: version.Info{Major:"1", Minor:"2", GitVersion:"v1.2.3", GitCommit:"882d296a99218da8f6b2a340eb0e81c69e66e...
I am getting this runtime error on kubectl create: $ kubectl version Client Version: version.Info{Major:"1", Minor:"1", GitVersion:"v1.1.7+e4e6878", GitCommit:"e4e6878293a339e4087dae684647c9e53f1cf9f0", GitTreeState:"not a git tree"} Server Version: version.Info{Major:"1", Minor:"1", GitVersion...
1
### 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 a feature request that matches the one I want to file, without success. ### Electron Version 11.3.0 ### What operating sys...
### 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 a feature request that matches the one I want to file, without success. ### Electron Version 11.2.1,12.0.0 ### What operat...
1
Hello, Compiling tensorflow source on Skylake-X Intel i9 with "--config=opt" gives the following error in the snappy external module: * * * > ERROR: /home/armafire/.cache/bazel/ > _bazel_armafire/efbef35334c587b69e16a82829bb0e2d/external/snappy/BUILD:19:1: > C++ compilation of rule '@snappy//:snappy' failed (Exit ...
### System information * **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : no * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Linux Ubuntu 16.04 * **TensorFlow installed from (source or binary)** : building from source * **TensorFlow version ...
1
If using `trackBy`/`ngForTrackBy` to track the addition/removal of an element to the array being iterated in `ngFor`, it appears the elements are actually redrawn rather than re-ordered. I'm using 2.0.0-beta.14. Issue can be seen here using the network/Docs tab in chrome console: http://plnkr.co/edit/qZf6yv?p=previe...
Type: bug (or possibly non-optimal behavior) Plunkr: http://plnkr.co/edit/WHJs6F4lfkDZNyrQHYbQ?p=preview Version (UPDATED): Angular 2 beta 11 The current combined behavior for `DefaultIterableDiffer`/`ngFor` currently exposes this bad behavior: 1. remove the head item in an array 2. On check, the `DefaultIt...
1
I have a few files for making HTTP requests. I want to extend those to allow easier access to our API. Here is some sample code: http.ts export type HTTPParameters = { [key: string]: string }; export type HTTPHeaders = { [key: string]: string }; export enum HTTPMethod { Get, Head, Post, Put, ....
It seems to me, it's very inconvenient, that import declaration can't have none qualified symbol as target. By the reason I have to use next way to do this: class S {} export type SS = S; export var SS = S; Maybe, removing the qualified name restriction will be more convenient than combin...
1
In Julia master (but not in Julia 0.6) this apparently harmless function: using StaticArrays const v1 = SVector(1) const v2 = SVector(2) const v3 = SVector(3) const v4 = SVector(4) function foo() a, b, c, d = 1:4 arg = @. v1 * a + v2 * b + v3 * c + v4 * d ...
### Updated OP While working through the issue, @jebej identified that the problem is fusing 12+ broadcasts in this comment (#22255 (comment)) which contains an MWE. ### Original OP In OrdinaryDiffEq.jl, I see a 10x performance regression due to using broadcast. With the testing code: const ζ = 0.5 ...
1
* [*] 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.3-release * Operating System version: windows 10 * Java version: JDK 1.8 ### Step to...
* 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.4 * Operating System version: CentOS 6.7 * Java version: 1.8 ### Steps to reproduce this iss...
0
# Summary of the new feature/enhancement To avoid constant serializing and function duplication and improve handling of work areas, introduce WorkAreaUniqueId struct instead of using serialized string
# Environment Windows build number: Microsoft Windows [Version 10.0.18363.900] PowerToys version: v0.19.1 PowerToy module for which you are reporting the bug (if applicable): PowerToys Run # Steps to reproduce 1. For example set PT Run hotkey to default `Alt` \+ `Space` 2. Sometimes ...
0
If you have a navbar with navbar-fixed-top, and items in a navbar-right, the last item hangs over the container by 15px. You can see this with the example on the getbootstrap site: http://getbootstrap.com/examples/navbar-fixed-top/
**Issue in:** Navbar component .navbar-nav.navbar-right:last-child { margin-right: -15px; } That's the CSS style applied on the right-floating menu items' container. It does its intended job only as long as there's only one **`<element class=" ... navbar-right">`** in the Navbar. Add anothe...
1
> Issue originally made by @Lapixx ### Bug information * **Babel version:** 6.7.7 * **Node version:** 5.3.0 * **npm version:** 3.3.12 ### Options ES2015 and Stage 0 preset. ### Input code // modified from kadirahq/graphql-errors const modifyResolver = (field, hand...
> Issue originally made by @spudly ### Options preset-es2015, preset-stage-3 ### Input code const callTest = async (...args) => { await test(...args); }; const test = (arg) => console.log(arg); callTest('yo'); ### Description This is similar t...
1
Using `.table-reponsive` only works on the smallest screen size. Solution 1: Use `@grid-float-breakpoint` so it becomes responsive when the navbar does (currently what we do in projects) Solution 2: Use another variable that defaults to `@screen-sm-max` that can be overwritten in another less file
I have a panel with a table inside and the table has a few columns making it rather wide. If you view the panel table on a mobile device the table is wider than the panel making it look bad. This only occurs on tables that are quite wide. I've tried using table- responsive and the issue still occurs. This occurs whe...
1
If I take away the minWidth from a select control, I expect the width to adjust to the currently selected option. This works perfectly on Chrome on my Mac. However it shows truncated text with ellipses on Safari as well as on mobile browsers. * I have searched the issues of this repository and believe that this is...
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Using `create-react-app-with-typescript` should work when I attempt to install it ## Current Behavior I've tried to install `create-react-app-with-typescript` about a dozen different ways, and ever...
0
Challenge Taste the Bootstrap Button Color Rainbow has an issue. User Agent is: `Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:50.0) Gecko/20100101 Firefox/50.0`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: <link href="https://fonts.googleapis.c...
Please tell us in detail here how we can make this challenge better. Padding- right should say 20px in directions on the bottom, it says 40px.
0
The `orient` method in countplot does not work. Pass a list like: `['Rose', 'Teal', 'Teal', 'Orange', 'Orange', 'Orange']` and try to adjust the orientation to see the issue.
Hi, The code in IPython notebook: %matplotlib inline import pandas as pd import seaborn as sns df = pd.DataFrame([[2], [2], [1], [1], [1], [3]]) sns.countplot(x=0, data=df, orient='v') sns.countplot(x=0, data=df, orient='h') produces exactly the same output plots. This means...
1
* I have searched the issues of this repository and believe that this is not a duplicate. When using the `Chip` element, behavior differs in browser. While in Chrome it has width calculated based on label and avatar, in MS Edge the element is 100% width. I did a CodeSandbox snippet to reproduce it. ## Expected Be...
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior When passing a function as the `theme` prop to `MuiThemeProvider` the first parameter of that function is `outerTheme`. `outerTheme` should contain the actual theme properties. ## Current Behavior ...
0
I am using Anaconda Python distribution. I have noticed, that among 1000 randomly generated unitary matrices (that I get from QR decomposition), there always is one "bad" matrix. It is bad in the sense of results of DGETRF -- it returns the same pivot twice. Here is simple example of what is happening (pivot 247...
### Describe your issue. Hi, I just got the MBA M1 and I am trying to install SciPy, but for some reason I am getting errors which I don't quite understand. Would appreciate any advice on how to move forward. I am running Monterey 12.0.1. I have been able to install most libraries, just scipy has been giving me prob...
0
console.log(process.argv) > node index.js --help [ '/usr/local/bin/node', '/tmp/index.js', '--help' ] > babel-node index.js --help Usage: node [options] [ -e script | script.js ] [arguments] node debug script.js [arguments] Option...
## Bug Report **Current Behavior** Throws this exception: TypeError: undefined: Duplicate declaration "i" 1 | 2 | for (let i of 'foo') { > 3 | let i = 'a'; | ^ 4 | console.log(i); 5 | } 6 | **Input Code** for (let i of 'foo')...
0
##### System information (version) * OpenCV => all * Operating System / Platform => ppc64le GNU/Linux * Compiler => GCC 8.2.0 ##### Detailed description Disabled: 10 List failed tests (first 10): hal_intrin128.uint8x16_BASELINE : SIMD128: void opencv_test::hal...
Hello im new to opencv i have installed opencv 3.4.5 , 4.0.0 in RP3 using this guide https://www.pyimagesearch.com/2017/10/09/optimizing-opencv-on-the-raspberry- pi/ im trying to run dnn module (yolodarknet) but im getting exactly same results after running with and without NEON and VFPU flags in the makes now a ...
0
Version 1.8.9 succeeds but when updating to 1.8.10 I get an error: ERROR in CommonsChunkPlugin: While running in normal mode it's not allowed to use a non-entry chunk The bundle js is not output. My build output from deploying to Heroku (this error is on line 514): https://gist.github.com/bdef...
# Bug report **What is the current behavior?** Webpack randomly fails to bunle which causes `Uncaught SyntaxError: Unexpected token '}'` error message and broken code: It seems like it adds the following segment twice, which causes the problem: /******/ })() ; ![image](https://user-images....
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.6 * Operating System version: linux * Java version: 1.8 ### Steps to reproduce this issue Se...
* 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: master * Operating System version: any * Java version: any ### Steps to reproduce this issue no...
0
> In order to make orchestration simpler and efficient, it is necesary to > consider that we can get changed data from DataChangedEvent instead of > getting them directly from registry in Orchestration module.
In the process of investigating #24053, I found that there are still many functions that are not supported by the parser engine, and I think we can improve it gradually. Here are some references: #### MySQL * Document: https://dev.mysql.com/doc/refman/8.0/en/functions.html * PR: #24396 ### Tasks #### * RE...
0
# Summary of the new feature/enhancement If you decide to not use the "Relaunch as administrator" when administrative privileges are needed but instead ~~need~~ decide to use the alternative method "Always run as administrator", you need to click yes on every system boot up to grant permissions for powertoys admin p...
# Environment Windows build number: Microsoft Windows [Version 10.0.18363.778] PowerToys version: 0.18.1 PowerToy module for which you are reporting the bug (if applicable): # Steps to reproduce Freshly install PowerToys Make sure the checkbox "Automatically start PowerToys at logon" i...
1
spam
1
**Do you want to request a _feature_ or report a _bug_?** Bug. **What is the current behavior?** React 15.6.0 generated input _DOES NOT_ fire `onchange` event when programmatically filled. (DEMO) **What is the expected behavior?** React 15.5.4 generated input _DOES_ fire `onchange` event when programmaticall...
**Do you want to request a _feature_ or report a _bug_?** _bug_ **What is the current behavior?** The `dispatchEvent` method has no effect on input/textarea elements. **If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem viahttps://jsfiddle.net o...
1
Hello, I am using sns.lineplot for time-series data. I realize that lineplot automatically fills in missing data and I want to avoid this. Is there a way of avoiding this in sns.lineplot. I attach some screenshots that briefly explain my issue. Thanks, ![Screen Shot 2020-06-03 at 12 29 40 PM](https://user- images...
I've tried to visualize my data with Seaborn line plot. My series had lots of `Nans ` and a generated line plot was quite misleading. ![image](https://user- images.githubusercontent.com/40000494/44867601-f6c25880-ac90-11e8-9ccd- ceedda0c4fed.png) using code below I managed to solve this issue: fig, a...
1
Hi there, I'm looking for atrous (dilated) transposed convolutions, but did not find much. There is a brief section in the `tf.nn.atrous_conv2d` doc > Used in conjunction with bilinear interpolation, it offers an alternative to > conv2d_transpose in dense prediction tasks such as semantic image > segmentation, op...
Can we have a `atrous_conv2d_transpose()` function, just like the existing `conv2d_transpose()` function? Or is there some simple way to get what I am looking for using other existing functions? I had a look at the `conv2d_transpose()` code, and it seems shouldn't be too difficult to adapt it to get a `atrous_conv2d...
1
When using the class form-stacked on a form it gets pushed 20 pixels to the left. When this is done it is not possible to put 2 span8's next to each other without breaking the lay-out. A work-a-round is to change form-stacked padding left to 0; Doing this will brake the div.actions because it has a negative left-mar...
Any text found in a `.form-horizontal .controls` element is a few pixels above center. Adding .form-horizontal .controls{ line-height:28px; } fixes the problem. My apologies if this is a duplicate. I doubt I'm the first to notice this, but I couldn't find an existing issue.
0
Taking a look at https://material- design.storage.googleapis.com/publish/material_v_8/material_ext_publish/0B14F_FSUCc01emlGOWRnRkpMOVk/GoodTransition_QuickDo-v4.webm On iOS build of gallery, it looks like image is popping out and drawing above the app bar and then animating in. When animated back to the homescreen ...
Open Gallery, open pesto, scroll up enough to minimize the app bar. Tap a recipe. Notice how the app bar immediately disappears, before the recipe begins its motion up. This is a jarring effect that the user could notice. We could try something more subtle, like animating or fading the app bar away as the recipe op...
1
### Bug report **Bug summary** When using both `title` and `suptitle` with `constrained_layout`, titles overlap. **Code for reproduction** import matplotlib.pyplot as plt plt.rcParams = plt.rcParamsDefault plt.rcParams['figure.constrained_layout.use'] = True plt.title('Test with b') ...
I want to add a title to a matplotlib figure. Using the newer `constrained_layout` the title is nicely aligned with the axis. Unfortunately under certain circumstances the layout still overlaps as shown in the following examples in the Jupyter notebook (with different backends): %matplotlib notebook ...
1
As it's clear for us that Deno caches the deps in a cache folder (as I have in my GNU/Linux box), it'd be much nicer to have the control over deleting a specific version of any cached module with it's deps from the cache folder with a Deno `SUBCOMMAND` than deleting it manually.
Remove the cache files corresponding to the given targets. * `deno clean src/mod.ts` ≈ `rm -f $DENO_DIR/gen/file$PWD/src/mod.ts.{js,map,meta}` * `deno clean dir1 dir2` ≈ `rm -rf $DENO_DIR/gen/file$PWD/{dir1,dir2}` * `deno clean https://deno.land` ≈ `rm -rf $DENO_DIR/{deps,gen}/https/deno.land` * `deno clean ...
1
Electron `1.7.9` OS - `macOS 10.12.6` `Windows 10` * * * Calling `fs.readdirSync` in recursive manner from renderer process freezes the application. **STR:** * Run following function from devtools and try to click via electron application _change`dir` with some large directory which contains many files, so ...
* Electron version: 1.6.x, 1.7.x * Operating system: macOS 10.12.5, Windows 10 ### Expected behavior Doing blocking (10ms or higher) node operations in main process or in renderer process shouldn't freeze CSS animations in an entirely different BrowserWindow/renderer processes (that only contains HTML/CSS, no J...
1
##### Description of the problem Migrated to v118.1, gltf model with compressed textures stopped rendering it's material, here's the error: ![image](https://user- images.githubusercontent.com/5939063/85894113-6b666f80-b7f4-11ea-9dff-206868d56585.png) I suspect it's related to #16287 here's what that looks like: ...
##### Description of the problem Due to the recently added usage of BitmapLoader in GLFTLoader (#19518), using handlers for specific file formats will be overwritten from the BitmapLoader. In r117 to support basis textures for gltf files you would just need to add var basisLoader = new BasisTextureLo...
1
### Describe the problem `tf.reduce_min` and `tf.reduce_max` do not propagate nans correctly. E.g., >>> tf.reduce_min([inf, nan]).eval() inf but the correct answer (the one most useful for debugging) is `nan`. This is presumably due to a backwards comparison, similar to the old `tf.nn.relu(n...
### System information * **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : yes * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Linux CentOS 7 * **TensorFlow installed from (source or binary)** : binary * **TensorFlow version (use command belo...
1
_Original tickethttp://projects.scipy.org/numpy/ticket/1011 on 2009-02-19 by trac user anjiro, assigned to unknown._ Testing for `None` in an array always returns `False`: >>> import numpy as np >>> 5 in np.array([None, 5, 23]) True >>> None in np.array([None, 5, 23]) False
Sorry if this is a duplicate (I wasn't able to find any reference to it). It seems to me that the ties in argsort are sometimes reported incorrectly. For example for the code below shouldn't the result be either [2,0,1] or [2,1,0]? Instead I get [1, 2, 0] ### Reproducing code example: import numpy as ...
0
### Vue.js version 1.0.25 ### Reproduction Link https://hyperdev.com/#!/join/aeb63834-e450-464d-86b8-0dc15f29439f (be careful!!it will destroy your browser) my project is complicated than this demo... multiple occurrences of this problem after 1.0.20 version I do not know if this is not a bug in 1.0.20.. or the ...
Hi, i came across something weird after upgrading to the latest 1.0.25 release. I tried everything but i wasn't able to reproduce it on jsfiddle. Sorry 😢 My problem: v-model with select element. For some reason my app gets stuck in a loop when i paginate into a page that has a select tag with v-model ...
1
I am a Chinese cabbage, and when the time to release the next version. Will the folding function be added in the next version? There is also in the page. Write: 《script type= there is no hint like VS: text/javascript
I searched but couldnt find this in the issues. Id love to be able to collapse sections of the code. Any thoughts?
1
### Is there an existing issue for this? * I have searched the existing issues ### This issue exists in the latest npm version * I am using the latest npm ### Current Behavior _No response_ ### Expected Behavior _No response_ ### Steps To Reproduce 1. git clone https://github.com/lake2/npm_bug 2. cd ...
### Current Behavior: having 'library-project' with peer-dependencies adjacent to 'main-project' and 'main-project' with workspaces: ['../library-project'] (outside of 'main- project' folder) 'npm install' in 'main-project' is not installing the peer-dependencies example: library-project/ p...
1
Hi, today I created a new react.js project in **typescript** template using this command : `npx create-react-app my-project-name --template typescript`. Then project's react version is: 16.13.1 . After completing this process, I ran it using this command: `npm start`. It ran successfully and I saw the result. ...
Getting following error when I attempt to run a newly created project using following command npx create-react-app my-app cd my-app When I pass this --> npm start command, I get following error in browser. ./src/index.css (./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-3-1!./node_modules/post...
1
The `self.in_channels` in nn.Conv and `self.in_features` in nn.Linear are representing the same kind of param, so I suggest to use same name, for example `self.in_channels`. This is also do for other same situation. Thanks! cc @ezyang @ssnl @gchanan
Linear layers accept `in_features` and `out_features` arguments, and save them as similarly named instance variables. Similar arguments for Conv1d/Conv2d/Conv3d layers are called `in_channels` and `out_channels`. I think its worth to standardize on one set of names.
1
# Environment Windows build number: Version 2004 build 19041.329 PowerToys version: 0.19.1 PowerToy module for which you are reporting the bug (if applicable): FancyZones # Steps to reproduce 1. Put one (or more) window in one fancy zone 2. Put the notebook in the sleep/hibernate mod...
# Environment Windows build number: 10.0.18363.900 PowerToys version: 0.19.0 PowerToy module for which you are reporting the bug (if applicable): FancyZones Monitor(s): 2 side-by-side 4K monitors (one set to display scaling 100% and the other to 125%) # Steps to reproduce * Set Win...
1
Running TestSS2TF.tst_matrix_shapes(p,q,r) (signal/tests/test_ltisys.py, line 14, scipy 0.11.0) with p,q,r values like in the test, and repeated here: (3,3,3) (1,3,3) (1,1,3) However, it will fail with: (2,3,3) (2,2,3) and so on where p is not the same as r, and is also not 1. Traceback below: ...
1. ltisys:150: * `# transfer function is C (sI - A)**(-1) B + D` should read: `# transfer matrix is C (sI - A)**(-1) B + D` * Although, this matrix is not actually calculated, so the comment should probably be removed. 2. ltisys:179: * `type_test = A[:, 0] + B[:, 0] + C[...
1
_Original tickethttp://projects.scipy.org/scipy/ticket/35 on 2006-03-09 by trac user russel@..., assigned to unknown._ Run the following program and watch it's memory usage. Removing the jacobian from the call to leastsq keeps memory usage constant. It also leaks at the same rate if the jacobian is transposed and...
@jperkin added a patch to the pkgsrc package for scipy with the commit message: Apply a couple of patches to fix SunOS. I can't evaluate the patch or know details about the problem. Here's the patch: --- scipy/special/_round.h.orig 2018-05-05 17:10:11.000000000 +0000 +++ scipy/...
0
Right now interfaces use the same syntax for properties with and without accessors. This is fine for duck typed interfaces, but the problem is, there is no way to specify properties with only one part (getter or setter) present. Usually, they are read only, without setter. The problem is, we can't tell this to a comp...
Some properties in JavaScript are actually read-only, i.e. writes to them either fail silently or cause an exception. These should be modelable in TypeScript. Previous attempts to design this have run into problems. A brief exploration: interface Point { x: number; y: number; } ...
1
I have an image tag with a camera ip ad get a HTTP 401. Before upgrading to version 7 the login event would be invoke and authentication would happen occur. ### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. ...
### 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:** * 7....
1
Edit: ~~Note: This suggestion is only a change meant for the Postgres dialect!~~ Hi there, This is admittedly a nice-to-have for those (like me) who didn't know that an `insert` statement in Postgres could not have more than one `on conflict` clause. If I were to try and perform an insert such as: in...
**Migrated issue, originally created by Michael Bayer (@zzzeek)** using the "criterion" in a Query, invalidate objects, or just a subset of their attributes, within the session meeting this criterion, without issuing SQL for rudimentary criterion. for more complex criterion like EXISTS, may need to issue SQL. will ...
0
I want to build a step activation function to use in keras. Thanks to Q&A here, I am able to build a working step function called `tf_stepy` with tensorflow. (See code below) Now my question evolves into > How to make use of this `tf_stepy` activation function created in > `tensorflow` to work in `keras`? I tried...
As described in the Keras handbook - _Deep Learning with Pyhton_ -, for a multi-output model we need to specify different loss functions for different heads of the network. But because gradient descent requires you to minimize a scalar, you must combine these losses into a single value in order to train the model. V...
0
**Alef Arendsen** opened **SPR-4061** and commented The following code in SpringJUnit4Runner swallows the exception thrown by context creation (if any) instead of throwing it. This means test execution is continuing, while it should fail: @Override protected Object createTest() throws Exception {...
**Rick Evans** opened **SPR-4025** and commented Hola campers! SpringJUnit4ClassRunner, createTest() contains this code (sans comment): final Object testInstance = super.createTest(); try { getTestContextManager().prepareTestInstance(testInstance); } catch (Throwable t) { ...
1
Can't go to or refer any documentation(docs.scipy.org/doc/) in numpy and can't view numpy.scipy.org
Now that with statement - context managers has become a thing. Please feel free to use them whenever we need to read/write to file. You can find the files here - https://lgtm.com/projects/g/numpy/numpy/alerts/?mode=tree&severity=warning&rule=10030095
0
1. What is a short input program that triggers the error? package main const a string = b(0) func main() { println(a) } 2. What is the full compiler output? test.go:3: undefined: b test.go:3: cannot use b(0) as type string in const initializer test.g...
It would be nice if clients of the net/smtp package could access the TLS connection state in order to implement server certificate hash checking with STARTTLS. Currently net/smtp's `(c *Client)` does not expose the `conn` field, which is set during `(c *Client) StartTLS()`. https://github.com/golang/go/blob/go1.4/s...
0
Hi, I have a problem with Python and some libraries. Install python from the official website, simply download and install it directly with version 3.7 on my Macbook Pro macOS Catalina version 10.15.4 where through Thonny, I installed the numpy, pandas, matlob and other libraries, I don't have any other python ; but ...
I'm very new to coding. Installed numpy using the built-in package manager of Thonny. Thonny comes bundled with Python 3.7. Also installed scipy that way, seems to be importing fine. ### The code import numpy as np ### Error message Traceback (most recent call last): File "/Users...
1
I'm using TypeScript 1.6. I've targeted es5, shouldn't these *.es6.d.ts files be ignored by the compiler? at first I thought I can just use exclude but it doesn't support globs (I think) so I can't filter them out. It seems like it's not only the *.d.ts files but there's more files there to ignore. Is there a way ...
# Problem Currently TypeScript compiler accepts a single compiler option, `target`, which specify both version of library to be included during compilation and version of JavaScript for emitting code together. The behaviour presents limitations in two parts of the pipeline: consuming the default library and granul...
0
### Bug report When creating a legend with a pie graph using the `GTK3Cairo` backend a TypeError is raised. The issue affects versions 3.0.0rc2, 3.0.0, 3.0.1, 3.0.2 but not 2.2.3. Likewise this exception is not raised with the backend is `GTK3Agg`. **Code for reproduction** import matplotlib matp...
Saving a figure with `plt.savefig` in `svg` file format using the `cairo` backend results in a `TypeError`. The Traceback is: /sfs/fs5/home-sh/sunip229/opt/miniconda3/envs/py37_forge_jore/lib/python3.7/site-packages/util/plot.py(814)save_and_close_fig() -> plt.savefig('plot.svg', transparent=True...
1
When I tried to install matplotlib I got following error (I used newest version in pip): Traceback (most recent call last): File "<string>", line 20, in <module> File "/tmp/pip-build-imsaf6c5/matplotlib/setup.py", line 155, in <module> result = package.check() ...
As part of Hashdist: [matplotlib] Building matplotlib/l6hpd5xi44vw, follow log with: [matplotlib] tail -f /local/certik/tmp/matplotlib-l6hpd5xi44vw-1/build.log [matplotlib] running [u'/bin/bash', '_hashdist/build.sh'] [matplotlib] environment: [matplotlib] {'ARTIFACT': u'/local/cert...
1
In the section "Compiler/Runtime improvements" of NEWS.md experimental threading support should be mentioned and explained, how to enable it.
http://docs.julialang.org/en/latest/ NEWS.md docstrings
1
Preface: I'm not sure if this should be classified as a bug, expected behavior, or a longstanding inference rule that would be problematic to change now. From what I can tell numpy looks to be inferring `float64` instead of `uint64` when both of the following conditions are met: * input data contains a number sup...
I expected to get uint64 umax = np.iinfo(np.uint64).max np.array([umax]).dtype # <-- uint64, as expected np.array([0, umax]).dtype # <-- float64, surprising There seems to be something special going on inference-wise around the int64 bound: imax = np.iinfo(np.i...
1
* I have searched the issues of this repository and believe that this is not a duplicate. According to the docs a page is cached for 25sec in development by default. However, when you change something on the API-side or even in the JSX of a page, the page will update (both by HMR and when calling manually using F5...
# Feature request ## Is your feature request related to a problem? Please describe. I want to match `**/[foo].tsx` when I access `/` with `**/[foo].tsx` but no `**/index.tsx`. But now, it redirects to 404 page. I'd like to use SSR at first, but once reaching the browser, I'd like to use shallow transition. Th...
0
If you reload a page, an isolated route will work, but route params will not. Related to: #2920 http://stackoverflow.com/questions/32429089/how-do-i-support-routeparams-on- page-reload-using-angular-2-dart?noredirect=1#comment52795245_32429089 FTA: Im using the Router and RouteParams in Angular 2 Dart. My rout...
When user visits URL like the http://example.com/path/part?queryParam=value, there is no access to the "queryParam" via RouteParams in the component that is configured to match the "/path/part" route. When the RootRouter class calls to the navigate method in its constructor, it passes in as a parameter only the path...
1
I made tests a bit too verbose in #11616. Might be a good time to revisit how we write them now. There's a few separate issues: * Asserting on warning messages is too verbose. Need a DEV block, call `spyOnDev`, normalize stack, etc. Ideally I wish there was a higher level helper that lets us "push" expected war...
Conditional Rendering Components JSX-Control-Statement produces incorrect coverage in if / else branches. We are using it in our project and we want official Facebook's opinion about these as whether it will be updated with babel's AST for future support. If not please warn the developers that they will get incorrect...
0
The weekly build with nightly wheels from numpy and pandas has failed. Check the logs for any updates that need to be made in matplotlib. https://github.com/matplotlib/matplotlib/actions/runs/3072055013
The weekly build with nightly wheels from numpy and pandas has failed. Check the logs for any updates that need to be made in matplotlib. https://github.com/matplotlib/matplotlib/actions/runs/3163174215
1
**Context:** * Playwright Version: 1.30 * Operating System: Windows * Node.js version: 14.17.3 * Browser: Firefox **Describe the bug** We created one windows docker container with the image that only starts playwright server with all the dependencies installed in it. When we connected to that container fr...
**Context:** * Playwright Version: 1.21.0 * Operating System: Windows * Node.js version: 12.4 * Browser: Firefox * Extra: [any specific details about your environment] While Launching the Firefox browser in mcr.microsoft.com/windows:1809 2022-04-21T10:30:15.990Z pw:server [id=1] engaged lau...
1
##### ISSUE TYPE bug report ##### COMPONENT NAME ec2_group module ##### ANSIBLE VERSION ansible 1.9.0.1 configured module search path = None ##### OS / ENVIRONMENT OSX ##### SUMMARY Running an ec2_group task fails if the group already exists if and it contains a rule with a cidr_ip that is not either 0.0.0...
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME yum ##### ANSIBLE VERSION ansible 2.2.0.0 ##### CONFIGURATION N/A ##### OS / ENVIRONMENT CentOS release 6.9 (Final) on source and target. ##### SUMMARY When yum has error about "Warning: RPMDB altered outside of yum", ansible's yum com...
0
Challenge Change Text Inside an Element Using jQuery has an issue. User Agent is: `Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: <s...
1
#### Code Sample, a copy-pastable example if possible >>> df = pd.DataFrame([[True, True, True]], columns=['key', 'a', 'a']) >>> df.groupby('key').any() ValueError: Buffer has wrong number of dimensions (expected 1, got 2) #### Problem description This throws because of the below line: ...
# error In [27]: pd.DataFrame([[1, 1]], columns=['x','x']).iat[0,0] TypeError: len() of unsized object # ok In [26]: pd.DataFrame([[1, 1]], columns=['x','y']).iat[0,0] Out[26]: 1 I have some weird issue in a DataFrame I'm creating from a row-based array. Using python3 and...
0