text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
The `encoding/binary` package performs more slowly writing `uint{8,16,32,64}` data vs the corresponding `int{8,16,32,64}` data. The performance when writing `*uints` and `*ints` is almost identical. See `binary1.go` in http://play.golang.org/p/--qpN-sy6o and `binary1_test.go` in http://play.golang.org/p/ypH8OTtYYx ...
The reflect slow path showed up in pprof for a uint64 data type: https://code.google.com/r/cafxx-golang/source/detail?r=20d0244f15dc2584b540c90437f70ce7ab840219
1
Playwright has a utility `toMatchScreenshot` that will test a screenshot of something against a predefined image that is in it's snapshot directory. I would like for it to test against an image that is at an arbitrary absolute path. If I pass in an arbitrary path, it will coerce the path (replace the separators with ...
We currently have `expect(screenshot).toMatchSnapshot(name[, options])` which is nice when comparing against at snapshot but it doesn't work when comparing a screenshot against a reference website which is useful for doing visual regression to see what has changed. I propose that we add a `toMatchScreenshot(screensho...
1
# Environment Windows build number: 10.0.18363.815 PowerToys version: 0.17.0 PowerToy module for which you are reporting the bug (if applicable): FancyZones # Steps to reproduce When a window is opened off, or partially off-screen, the FancyZones are no longer available to arrange Window...
# Environment Windows build number: 10.0.18362.778 PowerToys version: 0.17.0 PowerToy module for which you are reporting the bug: FancyZones # Steps to reproduce * Uninstall previous version of PowerToys * Install 0.17.0 * Open PowerToys, things work just fine * Wait for a while ...
1
When creating an _EffectComposer_ with an _OutlinePass_ in the pipeline, the alpha channel is discarded. This is demonstrated in this jsfiddle snippet. Comment `composer.addPass( outlinePass )` to see the background turning transparent (white). ##### Three.js version * r95
##### Description of the problem After commit `b3cf1c7` the outlinePass renders transparent backgrounds in black. ##### Three.js version * Dev * r88 ##### Browser * Chrome latest * Firefox * Internet Explorer ##### OS * All of them * Windows 10 * macOS * Linux * Android * iOS ##### Hardw...
1
Hello, I found Scrollspy doesn't support Chinese ID Targets. In order to reproduce the bug, I post a gist. It looks almost the same to the example from official Doc. A slight difference is that I modify one element's id("mdo") into a Chinese ID ("艾姆滴欧"). When you view the html file in your browser, you can see that...
The alert types can be customized with alert-info, alert-sucess, alert-error and alert-danger corresponding to resp. blue, green, red, red alert boxes. Please add an explicit warn style alert-warn. Note that this would correspond to the default orange alert. The reason I'm asking is, from my backend I'm providing...
0
### Description Hello team - First of all, not sure if this is a bug. I'm having trouble setting up Python logging with Jax without running into log spam issues. The following code works as expected: import logging logging.basicConfig(level=logging.INFO, format='%(asctime)s [%(levelname)-5....
### Description Importing `jaxlib.mlir._mlir_libs._mlir` (and by extension any modules depending on these, including `jaxlib` and `jax`), seems to render python's logging module unable to work. I have a script `test.py`: import logging import importlib import sys logger = logging.get...
1
Please help, the site changes and loads behind the menu bar, the "x" button will not close the side bar. True for all safari, bing, chrome, and even using browsec Vpn. Not sure what could be causing this. Wanted to practice waypoints on the phone away from desktop to continue JavaScript lessons. P.s. Displayed fine ...
Hi, I just can't use the website with Safari as of the release of the new design. At any given time there is a blank panel on the right site of the webpage, the only links I can click on are map and chat, they both pop out a new panel that overlaps the blank one, but if I close the panel it does not dismiss the b...
1
Using multiple metric evaluation has the following example: >>> def tn(y_true, y_pred): return confusion_matrix(y_true, y_pred)[0, 0] >>> def fp(y_true, y_pred): return confusion_matrix(y_true, y_pred)[0, 1] >>> def fn(y_true, y_pred): return confusion_matrix(y_true, y_pred)[1, 0] >>> def t...
#### Description The implementation of `_multimetric_score` will call every scorer individually. HERE Unfortunately, these scorers are typically generated via `make_scorer` and each individual metric will end up repeatedly calling `predict`, `proba`, etc. HERE For a recent exploratory GridSearch where I was genera...
1
### Description when run scrapy shell https://zhuanlan.zhihu.com/p/344192245 display: �“MemoryError: Cannot allocate write+execute memory for ffi.callback(). You might be running on a system that prevents this. For more information, see https://cffi.readthedocs.io/en/latest/using.html#callbacks”
### Description I have simple Scrapy script which fails on Ubuntu 18 with weird memory error. Works fine on local Mac, but fails on remote host. Looks like a openSSL issue. Any advice is appreciated. ### Steps to Reproduce Simply run scrapy script **Expected behavior:** Run normally **Actual behavior:** ...
1
For some reason, the specified behavior in ES6 JavaScript (or "JavaScript 2015") of nodeLists having default iterators that allow you to iterate through them with behavior similar to `values()` or a `for..of` loop isn't defined in Babel yet. In fact, unlike other transpilers that at least explicitly explains its lac...
I was reading this MDN page on for...of: https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Statements/for...of and they mentioned that you could use it with stuff from the DOM like NodeList. I tried it and it didn't work so I ended up polyfilling it with this code: if (NodeList.prototype[S...
1
Search for contacts saved on Outlook (365 not outlook.com) I have over 2,000 contacts in Outlook and it's very frustrating to find a contact’s phone number. On the Mac, you simply spotlight, type the name of the person and you have their phone number. I want to invoke PowerToys Run, type a name and get their phone ...
# Summary of the new feature/enhancement Adding links to control panel items and stuff like Device Manager would be cool - this would replace Keypirinha completely for me and many others I imagine! EDIT: Woops, feel free to add Powertoys Run to the title.
0
### Body `days_ago` is deprecated #21653 We have several references to the function in test suite / example dags. Task: there should be no imports of `airflow.utils.dates import days_ago` in the code. In most cases we can simple replace with `datetime(2022, 1, 1)` ### Committer * I acknowledge that I am a ...
### Body `days_ago()` is deprecated #21653 There are many test using this function thus raising warnings. This task is to replace all usages of `days_ago()` in the tests with alternatives. A stale PR that started to work on it #21830 but didn't finish ### Committer * I acknowledge that I am a maintainer/com...
1
## Issue description The gradient of `torch.clamp` when supplied with `inf` values is `nan`, even when the `max` parameter is specified with a finite value. Normally one would expect the gradient to be `0` for all values larger than `max`, including for `inf`. ## Code example I'm trying to implement the following ...
## 🚀 Feature Recurrent Dropout for RNN, GRU and LSTM. ## Motivation The concept of dropout to sequence models has been proposed in this paper. Also popular libraries like Keras and Tensorflow have their native implemenation of this but Pytorch does not. I personally feel Pytorch is giving a very stiff competition...
0
Hi there after the new update my avast detected atom as a virus and as blocked it. I tried uninstalling and reinstalling it but continues to block it. What must I do? See image ![virus](https://cloud.githubusercontent.com/assets/7794777/8019536/07673f9c-0c54-11e5-8d49-2f8a354f1060.PNG)
Atom version: 0.136.0 From atom 0.136.0, the following two files are falsely detected as: Win32:Malware-gen: atom-0.136.0\build\windows\Setup.exe atom-0.136.0\build\windows\Update.exe Avast version: 2015.10.0.2206 Virus signatures version: 141021-0 I will also submit this to avast.
1
## Question 1 I find that there are many unnecessary duplications in the (webpack) bundle (output)result, to be specific, they all are the helpers(like `classCheck`, `objectSpread`(due to the `object-spread` plugin). So, I want to reduce the duplications. If it's a library, sure, I will use transform-runtime plugin...
## Bug Report **Current Behavior** `@babel/traverse` tries to throw a `Duplicate declaration` error for key duplicates in different ambient module declarations in one file. `@babel/parser` with `typescript` plugin is used to build an AST. #4640 explains why `Cannot read property 'file' of undefined` is thrown. ...
0
Google Chrome Extension does not work anymore. Google Chrome is up to date Version 83.0.4103.116 (Official Build) (64-bit) Most of the time, the new developer tabs never show up. If I kill the whole process and re-load it, sometimes it will load, sometimes it doesn't. The plugin has access to all data on all si...
# Note this issue is due to CR bug 1085215 **It is impacting several other popular extensions as well- including React, Redux, Relay, and Vue devtools.** * * * React version: 16.13.1 DevTools version: 4.7.0 (5/18/2020) macOS version: 10.15.4 (19E287) ## Steps To Reproduce 1. Create a new profile in Google ...
1
Am trying to setup Context Api for my project but i get an error that i cannot wrap my head around, i have two files one for the data context, createDataContext is the name of the file import React, {useReducer} from 'react'; export default (reducer, actions, defaultValue) => { const Context = React.createConte...
Am trying to setup Context Api for my project but i get an error that i cannot wrap my head around, i have two files one for the data context, createDataContext is the name of the file import React, {useReducer} from 'react'; export default (reducer, actions, defaultValue) => { const Context = Rea...
1
Having such graph: http://console.neo4j.org/r/9cwo4x The query works fine for the most of my cases, but in this particular case it takes an eternity to complete and returns many duplicates. Is there a way to avoid such behavior?
I tried to delete a node in neo4j console /web admin and it did not work. 2013-10-15 12:39:53.473+0000 ERROR [o.n.k.i.t.TxManager]: TM error tx commit javax.transaction.HeuristicRollbackException: Failed to commit, transaction rolledback ---> javax.transaction.xa.XAException at org.neo4j.kernel.impl.transaction....
0
Your conversions between Rust Futures and JS Promises is probably mature, but thought I'd make you aware of this new crate owned by Rust team members Alex Crichton and Nick Fitzgerald, wasm-bindgen-futures. It might allow you to remove code so you don't duplicate work, or improve your existing. API Docs here, GitHub...
Running Cargo install deno results in the following error: Compiling deno_runtime v0.117.0 error[E0432]: unresolved import `tokio_metrics::RuntimeMonitor` \--> /home/justdave/.cargo/registry/src/index.crates.io-6f17d22bba15001f/deno_runtime-0.117.0/tokio_util.rs:6:5 | 6 | use tokio_metrics::RuntimeMonitor; ...
0
I am in the process of following the exact steps as mentioned in the scipy contributer guide in order to obtain a development version of scipy . When I run the code ' python3 runtests.py -v ' on terminal , on after passing 22% of the test , it gives an error : scipy/linalg/tests/test_decomp.py::TestEigh::test_eigh_i...
Hello! I'm a first-time contributor and attempting to set up a dev environment by following the instructions here: https://docs.scipy.org/doc/scipy/reference/dev/contributor/quickstart_ubuntu.html#quickstart- ubuntu on step 19, I'm trying to run the runtests.py file but I am getting the following: `scipy/linalg/t...
1
**I'm submitting a ...** (check one with "x") [x?] bug report [ ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question **Previous behavior** Using RC4, the following would w...
**I'm submitting a ...** (check one with "x") [x] bug report [ ] 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** Per the component interaction docs ...
0
The example of the `std::num` module speaks for itself. I can count at least three grammatical forms among the function descriptions: * indicative form (`abs: Computes the absolute value.`); * imperative form (`acos: Compute the arccosine of the number.`); * noun phrase (`abs_sub: The positive difference of tw...
With a lot of library code expected to change before the 1.0 release, it doesn't make much sense to do this now, but the core and std libraries should use a consistent style for API documentation. The wiki makes some attempt at specifying conventions, but these need to be fleshed out and actually applied to the codeb...
1
Version: 1.0.0 OS Version: Microsoft Windows NT 10.0.18362.0 IntPtr Length: 8 x64: True Date: 08/01/2020 18:47:51 Exception: System.ObjectDisposedException: Cannot access a disposed object. Object name: 'Timer'. at System.Timers.Timer.set_Enabled(Boolean value) at System.Timers.Timer.Start() at Po...
Popup tells me to give y'all this. 2020-07-31.txt Version: 1.0.0 OS Version: Microsoft Windows NT 10.0.19041.0 IntPtr Length: 8 x64: True Date: 07/31/2020 17:29:59 Exception: System.ObjectDisposedException: Cannot access a disposed object. Object name: 'Timer'. at System.Timers.Timer.set_Enabled(Boo...
1
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior next@latest should add without incorrect peer dependency ## Current Behavior >yarn add react@latest react-dom@latest next@latest yarn add v1.2.0 info No lockfile found. [1/4] ...
When doing a static export with assetPrefix defined in next.config.js, stylesheet does not link properly. Script files are included as `<assetPrefix>/_next/<...>/index.js`, while the css file is included as `/_next/static/style.css` with no prefix. * I have searched the issues of this repository and believe t...
0
**I'm submitting a ...** (check one with "x") [ ] bug report [x] feature request [ ] support request **Current behavior** There is no way how to get the value of 'formControlName' inside a custom validation function to identify which control is beeing actually validated (model-drive...
**I'm submitting a ...** (check one with "x") [x ] feature request **Current behavior** Angular will always find and render component tag. e.g. `<my-component-tag>` **Expected behavior** I would like to have an option to have component tag be ignored and just kept as a plain html. e.g. `<m...
0
I couldn't find any issue for this one, thus it must be a new regression we are having here. The log can be accessed at: http://kubekins.dls.corp.google.com/view/Critical%20Builds/job/kubernetes-e2e-gce/12127/consoleFull 07:17:09 [It] should support a client that connects, sends no data, and disconnect...
[Fail] Port forwarding With a server that expects a client request [It] should support a client that connects, sends data, and disconnects [Conformance] /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/portforward.go:163 • Failure [311.018 seconds] Port f...
1
Many comments in the .less-Files start with `//**` which in a lot of programming languages is equal to a multi-column comment (`/* ... */`). Therefore any IDE not perfectly adjusted to LESS syntax highlighting (such as VisualStudio) tend to interpret these comments as multi-column, which is in the case of the bootstr...
I'm not sure why the comments in the `variables.less` got changed to this style `//**`, but it my opinion it was a brave move. For me at least it prevents compilation when using the nodejs compiler `lessc`. At also breaks the syntax highlighting in my IDE, Visual Studio 2013
1
weird, Issues lists 66, and on clicking issues I get a big fat zero. So having no issues to peruse to avoid duplication, here goes. * Testing of dev-python/celery-3.0.18 with CPython 2.7... .............................................................................................................
Hello! I have problem I used celery with redis to send sms reminder, But now celery alway send me 2 sms/task. `(INFO/ForkPoolWorker-1, INFO/ForkPoolWorker-2)`, Celery can't revoke task and it alway discard task like this discarding revoked task: patient.tasks.send_sms_reminder[dfc7c761-7ab4-47c3-a820-b...
0
The descenders of letters are cut off in `TextField` when viewed in Firefox: ![image](https://user- images.githubusercontent.com/5354752/32858022-fa046710-ca17-11e7-9601-232d14f1b7d9.png) (screenshot taken on the Text Fields demo page) * I have searched the issues of this repository and believe that this is no...
The latest release of Material-UI (v1.0.0-beta.9) doesn't render correctly. > Error in ./node_modules/material-ui/Chip/Chip.js > Module not found: Can't resolve '../svg-icons/Cancel' * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior The materia...
0
**Steps to reproduce and a minimal demo of the problem** create a new A2RC1 app with angular-cli: ng new blah cd blah npm start load the page with your dev tools open and observe that it submits over 290 xhr requests at startup. beta-14 (from which we just upgraded) loads about 40. ...
**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
**I'm submitting a ...** (check one with "x") [ ] 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 ...
Create platform-node inside this repository, to be consumed by Angular Universal and other packages that would rely on platform-node. By having it inside this repository, the package will be tested and updated alongside the core, and will be maintained by the core team. The API should be generally compatible with th...
1
* VSCode Version: 1.0.0 ![screenshot](https://cloud.githubusercontent.com/assets/1449826/14949863/b48dcbde-104d-11e6-983e-c9a0ad4ee2c3.png) I use multiple variable declaration in JavaScript, but only the first variable declaration is highlighted as a variable declaration, the rest of them are in the default varia...
_From@vsccarl on March 10, 2016 1:2_ When defining multiple var in JavaScript the colorization is not working properly after the first defined variable if they are on separate lines. ![varcolor](https://cloud.githubusercontent.com/assets/12900364/13656001/3a3e5a38-e618-11e5-8e29-f01b87bf83cc.JPG) `var wm1 = new ...
1
When you are typing on iOS, every time you hit a character the cursor is supposed to stop blinking. In a Flutter app, the cursor keeps blinking while you are typing, which is extremely distracting and a tad bit disconcerting as you can momentarily lose track of the text that is being inserted. (Interestingly, if you ...
The text cursor should temporarily stop blinking when typing, hitting backspace (especially noticeable when holding down the backspace key), or when moving the text cursor. With the current behavior, the text cursor keeps blinking, which makes it sometimes hard to see which character in the text is being edited. ##...
1
Hi folks, Currently in Theano I am using images2neibs to partition the image in smaller patches embedded in the architecture (an online step). However, in PyTorch, at first sight, no information regarding this feature is available. Cheers
Would be good to have N-dimensional convolution and separate im2col-col2im ops, like in caffe: https://github.com/BVLC/caffe/blob/master/src/caffe/util/im2col.cu
1
Minimal example: import numpy as np from sklearn.model_selection import cross_val_score, GridSearchCV from sklearn.base import ClassifierMixin, BaseEstimator class Dummy(ClassifierMixin, BaseEstimator): def __init__(self, answer=1): self.answer = answer ...
I'm sure this has been proposed before, but I haven't been able to find a duplicate issue. Anyways, the idea is to enable `StratifiedKFold` in `model_selection` to handle multilabel (multiclass with non-mututally exclusive categories) data. If the number of labels is small, then ordinary stratified sampling on all po...
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
For some inputs which have a step change, scipy.interpolate.interp1d returns incorrect values. The conditions for this to happen are: 1. The same x value should be present twice in the input with different y values, and 2. Some random property of the input: if it happens for a certain input, it will always happ...
I would like to reuse the my numpy code that applies a function to a numpy matrix for application to sparse matrices. However, the or operation ( **or** ) is not supported for Boolean matrices. For example, the following code fails after converting the dok matrix to a csr matrix. import scipy.sparse as...
0
### Bug report **Bug summary** When using named arguments for x and y, the plots created with plt.plot respectively ax.plot are keeping empty. plt.errorbar (or ax.errorbar) are producing the desired output (see code below). The documentation shows that x and y are valid named arguments. **Code for reproduction**...
When I execute the following command: python3 -c "import matplotlib.pyplot as plt; plt.plot(x=[0,1], y=[0,1]); plt.show()" it outputs: ![Empty_Plot](https://cloud.githubusercontent.com/assets/6614695/5990571/691ad1e6-a96b-11e4-9430-1b890e56b2b7.png) * * * _Edit_ : I see my error. I was not sup...
1
Applying navbar-fixed-top to the navbar class adds unwanted behavior when forms or drop downs are used in the navbar. This can be seen in the BS examples; 1. try clicking in a form field at http://getbootstrap.com/examples/jumbotron/ and watch the "Project Name" text and green button text change to a finer/'less ...
1
**Issue** I am implementing custom dtypes for symbolic types: Variable, Expression, Formula, where the algebra is more or less: * `<ExpressionOperand> ::= <Variable> | <Expression>` * `<math_op> ::= + | - | * | - | etc...` * `<logical_op> ::= == | != | < | <= | etc...` * `<ExpressionOperand> <math_op> <Ex...
With NumPy master, it is currently impossible to override `ndarray @ other` if `other` also implements `__array_ufunc__`. Consider: import numpy as np np.__version__ # '1.13.0.dev0+9ef5891' class OptOut: __array_ufunc__ = None def __rmatmul__(self, other): ...
1
# Environment Windows build number: [run "ver" at a command prompt] Microsoft Windows [Version 10.0.18363.900] PowerToys version: 0.19.2 PowerToy module for which you are reporting the bug (if applicable): PT Run # Steps to reproduce * Activate PT Run * Type a program ...
Microsoft Windows [Version 10.0.18363.900] PowerToys version: 0.19.1 PowerToy module for which you are reporting the bug (if applicable): PowerToys Run When I activate PT Run with the Alt-Space hot-key, the application does not always place the cursor in the search box. When I press Alt-Space, PT Run appears. H...
1
I have a system with limited network bandwidth. if I make an upload or download large file operation using the requests library, the single request is consuming the whole available bandwidth of the system. is there a way to add latency to these requests (which slows down throughout of serial requests but not consume ...
As far as I know currently it's not possible to specify the password for the client side certificate you're using for authentication. This is a bit of a problem because you typically always want to password protect your .pem file which contains the private key. `openssl` won't even let you create one without a pass...
0
### Describe your issue. I'm running a pre-post hypothesis test on a small dataset using the Wilcoxon signed rank test (scipy.stats.wilcoxon), and noticed when I validated the results the p-value did not match. It looks like it is not using the normal approximation even though ties exist. Per the documentation the ...
My issue is about `stats.wilcoxon()`. `stats.wilcoxon` detects when d== 0, and appropriately warns that 'exact' will not work under such a circumstance. However, it reports that this is because of 'ties', and not because of the presence of 0s. Exact calculations will also not be accurate when there are ties in rank,...
1
This is an issue after launch my apk on a device or emulator. ![error_apk](https://user- images.githubusercontent.com/50232392/60877337-e4fcfa80-a23d-11e9-9d10-5220c54cbaad.png)
facebook/react-native#23092 Unfortunately this exact same issue strikes again with the release of Babel v7.5.0. These are the Babel related dependencies I am having: "@babel/core": "7.4.5", "@babel/plugin-proposal-class-properties": "7.4.4", "@babel/plugin-proposal-decorators": "7...
1
Hi everyone, I don't really know if I have done something wrong, but here is my problem. On every browser the carousel doesn't loop at the end of the last picture. To fixe it, I have deleted the line 1389 from bootstrap.js: if (!$next.length) return and now, it seem to work, am I the only one having this proble...
carousel slide can not run cycle. btw, can you set the first item active if there's no active item?
1
### Is there an existing issue for this? * I have searched the existing issues ### Current Behavior I was about to update my global package I has in my machine. Turns out, when I did it DELETED all my global packages. ![image](https://user- images.githubusercontent.com/12274383/137017120-997d5271-1387-4f66-a7bd...
### Current Behavior: Attempting to update a package with a tag using the `update` command globally causes **ALL** global packages to be removed. ### Expected Behavior: Packages should not be removed when updating global packages. ### Steps To Reproduce: npm i -g typescript nodemon @angular/cli # I...
1
# Environment Windows build number: 10.0.18362.0 Windows Terminal version: 0.5.2762.0 # Steps to reproduce 1. Keep adding tabs until the newest tabs are no longer visible ![Alt Text](https://camo.githubusercontent.com/0939bd41ca5b10564a33d7cddb11780eda89d68764b87df2d5a56c451b246c25/687474...
When pasting gci ` C:\test\ ` | select name into windows powershell or powershell core in windows console, I get expected results. If I try to paste and run any command with >1 line continuation it fails. As a user, I would expect windows terminal powershell to behave exactly the sa...
0
Hi When resizing the window, i notice that the position of the arrow has been changed from bottom to the center of tooltip/popover. Here is my JSfiddle, and some screenshots taken from JSFiddle ![capture du 2014-09-01 18 51 27](https://cloud.githubusercontent.com/assets/6888059/4111205/24a6f864-3201-11e4-9c57-548...
When a tooltip/popover would appear slightly offscreen to the right or left, it's correctly shifted slightly however the arrow ends up appearing in the middle of the popover, rather than at the edge of it like it should. In this case, `getViewportAdjustedDelta` always returns `{top: 0, left: 0}` because `getCalculat...
1
**Migrated issue, originally created by Anonymous** Our application has a hierarchy containing items for sale: BaseItem, Item, PackItem. BaseItem is the common base class. Item is a 'normal' item, and PackItem is a collection of items sold as one. There is also a class called Collection. A Collection may contain m...
**Migrated issue, originally created by Thomas Tanner (@ttanner)** sqlalchemy HEAD, mysql 5.5.38, pymysql 0.6.6, mysql=mysql+pysql://user:password@localhost/test_schema running `py.test --db mysql --dropfirst --backend-only --log- info=sqlalchemy.orm.mapper --log-debug=sqlalchemy.pool --log- info=sqlalchemy.en...
0
There seems to be a genuine bug in `scipy.interpolate.interp2d`. In this example the input arrays are given as full coordinates (and not as a regular grid). This data here, is part of a much bigger non-regularly sampled surface, thus I can't call `interp2d` with x, y as column and raw coordinates on a regular grid. ...
_Original tickethttp://projects.scipy.org/scipy/ticket/1642 on 2012-04-14 by @rgommers, assigned to unknown._ This warning was showing up by default for a long time. The cause seems to be that the optional nxest/nyest parameters to surfit, which are determined in fitpack.pyf, are too small if kx=ky=1. ...
1
**Sharif Uddin** opened **SPR-5007** and commented HibernateTemplate.loadAll(clazz) returns duplicate entries if the Class 'clazz' contains collection field and database contains entry related to that collection field. for example, A Customer contains list of Product (one-to-many). In database say there are Pro...
**Ivan Sopov** opened **SPR-9845** and commented If I inject javax.inject.Provider for creating prototype scoped beans into session scoped beans it fails when creating second session: 2012-10-01 18:45:50.113:WARN::/pins/default org.springframework.beans.factory.BeanCreationException: Error creating bean with nam...
0
### System info * Playwright Version: v1.33.0 * Operating System: macOS 13.3.1 * Browser: Chromium * Other info: ### Source code * I provided exact source code that allows reproducing the issue locally. **Config file** // playwright.config.ts const config = defineConfig({ testDi...
**Context:** * Playwright Version: 1.22 * Operating System: Mac with Docker * Node.js version: 14.19 * Browser: All * Extra: We are using Playwright for Visual Regression **Code Snippet** Running command: docker run --rm --network=host --ipc=host -v $(pwd):/work/ mcr.microsoft.com/playwri...
0
React version: 17.0.2 ## Steps To Reproduce 1. Make nested array element like this. All element have unique, fixed key. [Element0, [Element1, Element2]] 2. Change the element array. [Element1, Element2] 3. Key of element 1 and 2 aren't changed, but the elements are re...
👉 Please follow one of these issue templates: * https://github.com/facebook/react/issues/new/choose Note: to keep the backlog clean and actionable, issues may be immediately closed if they do not follow one of the above issue templates.
0
An error message `Uncaught TypeError: Cannot call method 'remove' of undefined` in the console when trying to close a modal initialized without a backdrop. jsfiddle
With options { backdrop: false }, this.$backdrop.remove() is still being called which results in an exception as this.$backdrop is null. ` hideModal: function () { var that = this this.$element.hide() this.backdrop(function () { that.removeBackdrop() that.$element.trigger('hidden') }) } removeBackdrop...
1
* Electron version: 1.3.3 * Operating system: Windows I'm reopening this issue (see #3494). @zcbenz closed it, citing that macOS doesn't support hiding the separator. However; it seems to be working on El Capitan (10.11.16). On OSX, I have a menu that collapses as shown (when a user disables SSL): ![image](htt...
OS X does this for us, but Windows and Linux does not. There's absolutely no reason to have leading and trailing separators and it's difficult to not introduce leading/trailing separators in complex context menus where multiple actors modify it. Especially when using the `visible` option to toggle items as the separa...
1
* VSCode Version: 1.0 * OS Version: Windows In LICENSE file it says that VS Code is licensed under MIT. However, when installing it, you have to agree to a completely different license, which says that you can't not only "reverse engineer, decompile or disassemble the software" but also "share, publish, or lend ...
Today we have an interface that describes the contract of telemetry (ITelemetryService) which is OK. The bad thing is that there many implementations of that interface (AbstractTS, MainTS, ElectronTS, AbstractRemoteTS, WorkerTS, ExtHostTS, NullTS, MockTS, TestTS) which have led to leakage and duplication of events. I...
0
#### Challenge Name #### Issue Description #### Browser Information * Browser Name, Version: * Operating System: * Mobile, Desktop, or Tablet: #### Your Code // If relevant, paste all of your challenge code in here #### Screenshot
* Learn how Free Code Camp Works * Create a GitHub Account and Join our Chat Rooms * Configure your Code Portfolio * Join a Campsite in Your City * Learn What to Do If You Get Stuck
1
虽然是日志打印不对,但具体里面有没其他bug不清楚,麻烦检查下是否是版本号弄错了,非常感谢,2.5.7及之前的日志都是正确的。
The `Dubbo version` report to registry is 2.0.1 after dubbo 2.5.9 and 2.5.10. It should be the same as the dubbo version i think.
1
Possible (probable) duplicate of #13186. Compiling the following program against with rust@30fe550 against brson/rust- sdl@`804adf6`: extern crate sdl; static my_pixfmt: sdl::video::PixelFormat = sdl::video::PixelFormat { palette: None, bpp: 24, r_loss: 0, g_lo...
bug.rs: pub struct Request { analyze: Option<int>, unknown_command: Option<Option<bool>>, } pub fn default_instance() -> &'static Request { static instance: Request = Request { analyze: None, unknown_command: None, }; &'static...
1
On Android you can double tap a word in a text field to select it, but in a flutter TextField this doesn't seem to work. You need to long press to select it. ## Steps to Reproduce * Add a new TextField * Write some words * Double tap a word
## Steps to Reproduce 1. Tap in a text field in a Flutter app. 2. Enter some text with spaces; e.g., `foo bar baz`. 3. Double-tap on a word. ~~On iOS, the double-tapped word should be selected. This behaviour is iOS- specific and does not apply on Android.~~ The double-tapped word should be selected. ## Fl...
1
**Migrated issue, originally created by Anonymous** Not sure what the precise problem is here, but on my system I get the following exception with the current sqlalchemy trunk from Subversion (revision 1344) [15:27:20,845](2006-04-27) [engine](engine): DELETE FROM managers WHERE managers.person_id = ...
**Describe the bug** The column name `values` is causing a bug when doing an upsert with MySQL (using `pymysql`). For testing purposes, you can change the column name in the variable `values_column_name` to something else than `values` and then you will see that no errors occur. **To Reproduce** f...
0
ES6 supports duplicate properties in object literals even in strict mode, but some (recent versions of) browsers still fail to parse strict mode code that has object literals with duplicate properties. Chrome 38 and Safari 8 are two browsers like this. Currently, the following code: var x = {o: 5, o: ...
The following ES6 code: var x = {x: 1, x: 2}; generates the following code: "use strict"; var x = { x: 1, x: 2 }; which will result in an error for ES5-compliant engines. I'm not sure what should be done here instead as duplicate keys are back to being valid in strict mode in ...
1
The following code (as of commit `0012b50`) gives an internal compiler error `drop_ty_immediate: non-box ty`. use std::rt::rtio::RtioTimer; use std::rt::io::Timer; fn main() { let maybe_timer = Timer::new(); maybe_timer.expect("Expected a timer").sleep(1); }
It seems like this was broken as a result of the recent change to make newtypes structs immediate in certain cases. struct TestNode(@int); fn mm(_x: &TestNode) {} fn main() { let x = &TestNode(@21); mm(x); } % rustc foo.rs error: internal compiler...
1
**Do you want to request a _feature_ or report a _bug_?** I would like to request a bug. **What is the current behavior?** From what I know, it is possible to inject object in props. However, this object seems to be html escaped when inserted into the DOM from my observation. Thus, if I try to add an onerror=al...
**Do you want to request a _feature_ or report a _bug_?** A bug, but a well known and worked-around one. **What is the current behavior?** var x = 'javascript:alert(1)'; ReactDOM.render( (<a href={x}>Link</a>), document.getElementById('container') ); produces a link that alerts....
1
in r69 the Raycaster object is detecting intersection with a parallel line that is shifted 3 units on the x direction (so not overlapping). BROWSER: Chromium Version 38.0.2121.0 (288663) OS: Windows 7 GRAPHICS CARD: AMD Radeon HD 7570M REPRO: jsfiddle ACTUAL OUTCOME: intersectObject returns true for parallel,...
##### Description of the problem When importing a file exported from Blender with instanced lights, only one of each instanced light is visible. ###### Instanced Lights (Failure case. `ALT`+`D`/Shared datablocks in Blender.) ![BlenderView_instancedlights](https://user- images.githubusercontent.com/37680486/8652191...
0
When trying to run "superset db upgrade" I get an error message. ### Expected results I was expecting a successful message and program ready to use. ### Actual results sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) duplicate column name: filter_type [SQL: ALTER TABLE row_level_security_filters ADD CO...
We have a query that returns timeseries data with two columns: * date * count I would like to simply graph the data as a line chart. However, when selecting the line chart, it requires that I choose a metric for the data, e.g. sum, average, etc ![flameshot-2019-03-29T15:31:01](https://user- images.githubuserco...
0
Challenge Accessing Objects Properties with Variables has an issue. User Agent is: `Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. Code: ...
#### Challenge Name Accessing Objects Properties with Variables #### Issue Description https://www.freecodecamp.com/challenges/accessing-objects-properties-with- variables#?solution=%0A%2F%2F%20Setup%0Avar%20testObj%20%3D%20%7B%0A%20%2012%3A%20%22Namath%22%2C%0A%20%2016%3A%20%22Montana%22%2C%0A%20%2019%3A%20%22Uni...
1
## Feature request Implement NodeJS v12+ internal package.json imports that only apply to import specifiers from within the package itself. NodeJS documentation: https://nodejs.org/api/packages.html#packages_subpath_imports **What is the expected behavior?** > Entries in the imports field must always start with #...
**Do you want to request a _feature_ or report a _bug_?** Bug. **What is the current behavior?** When using any `devtool` strategy that uses `eval`, such as `cheap-module- eval-source-map`, the browser developer tools show _two_ sets of files with quasi-identical names. The first set under the `webpack://` origin...
0
* VSCode Version: Version 1.0.0-alpha Commit `6ea1266` * OS Version: Ubuntu 14.04 Steps to Reproduce: 1. Compile https://gist.github.com/edumunoz/6e2ca90d4b5d3dbfa5340576e79ac113 with `g++ -g -std=c++11 -pthread hello.cpp -o hello` 2. Install the C++ debug adapter 3. Set a breakpoint in line 17 from the g...
* VSCode Version: 0.10.11 * OS Version: OS X 10.11.5 Steps to Reproduce: 1. Open a file and change its language. 2. Open the file in the git changes view. The old version will be displayed in the default language for the file, ignoring the user selection.
0
What about a dynamic RTL/LTR direction with a less variable ....
Would be great to have support for right-to-left languages.
1
I did notice, that ansible consumes very high amount of memory, for no serious reason. ##### ISSUE TYPE * Bug Report ### ANSIBLE VERSION ansible 2.2.1.0 config file = /home/muszynski/ansible/ansible2.cfg configured module search path = ['lib/modules'] ##### CONFIGURATION ##...
##### Issue Type: Bug Report ##### Ansible Version: 1.6.2 ##### Environment: Ubuntu 12.04 LTS (running on travis ci) ##### Summary: The `locale_gen` module fails with `msg: /etc/locale.gen and /var/lib/locales/supported.d/local are missing. Is the package “locales” installed?` when that file does not exist on ...
0
Currently multifield mapping support path parameter per property so if you need to have several fields mapped for a property they will either all have full path name or just_name it is rather inconvenient when you want to have the property with say two secondary fields one with full name (because it only makes sense...
Hi, I have indexed documents that have a duplicate field. During the search I want to display only the document that has the highest score among its duplicate class (the group of documents that have the same field value). There has been a discussion about deduplication in Lucene mailing-list: http://www.mail-arch...
0
It would be awesome if flutter had support for the YouTube api. Right now I am using a webview to show the player in an iframe. Is it possible to implement a flutter plugin for YouTube api? I never developed for Android and iOS, just web development. Also I am new to flutter.
## Steps to Reproduce I am following along with this section of the tutorial: https://codelabs.developers.google.com/codelabs/flutter-firebase/#5 Repro: 1. Run the flutter app (on my device via flutter run -d ) 2. Type a message 3. Hit send 4. App does not add message to the List of messages and instead fa...
0
* Electron version: 1.8.2 * Operating system: macOS 10.13.3 ### Expected behavior It seems like you should be able to copy text in the devtools using Cmd-C _regardless of whether or not the app itself has those keys assigned as menu items_ ### Actual behavior Cmd-C does nothing (apparently you have to add men...
* Electron version: 1.7.10 * Operating system: Windows 7 64-bit ### Expected behavior Sandboxing doesn't cause Electron to crash for anyone. ### Actual behavior A smallish fraction of users report crashes. We're working on an Electron app and we estimate 1-5% of users encounter Sandboxing issues: the app cra...
0
Using `Flask 2.2.2`, it seems that serving static resources leads to a duplicate `Date` HTTP Header field. Here is a simple snippet easy to understand and to show how to reproduce: from flask import Flask app = Flask(__name__, static_url_path='/static') @app.route('/', methods=['GET'...
I ran into some warnings from nginx that my Flask server was generating duplicate Date headers, so I investigated. Here's how to reproduce the situation: app.py from flask import Flask app = Flask(__name__) @app.route("/hello") def hello_world(): return "Hello from a fla...
1
When I try to define a variable, the following messages show. However, these messages will only show when I define the first variable. Python 3.5.2 |Anaconda 4.1.1 (64-bit)| (default, Jul 5 2016, 11:41:13) [MSC v.1900 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information....
I installed TensorFlow version 1.0.0-rc2 on Windows 7 SP1 x64 Ultimate (Python 3.5.2 |Anaconda custom (64-bit)) using: pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.0.0rc2-cp35-cp35m-win_amd64.whl When I try running the test script from https://web.archi...
1
**Migrated issue, originally created by florent breheret (@florentbr)** python 2.7.8, firebird 2.5.3, sqlalchemy 0.9.8, fdb 1.4.3 For a table with a check constraint, I noticed that this check constraint is missing in the reflected metadata. The test case to reproduce: import unittest from sql...
**Migrated issue, originally created by Anonymous** I'm not sure about other DB backends, but postgres supports also unique/check constraints to be inspected on db. Any change to get this into SA?
1
**TypeScript Version:** 1.9.0-dev.20160523-1.0 **Code** // A self-contained demonstration of the problem follows... class Foo { identity<T>(x: T): T { return x } compose<A, B, C>(f: (b: B) => C, g: (a: A) => B) : (a:A) => C { return (a: A) => f(g(a...
I'm using TypeScript 1.6.3 in Visual Studio 2015. The es6-promise declaration I'm using contains: declare class Promise<R> implements Thenable<R> { constructor(callback: (resolve : (value?: R | Thenable<R>) => void, reject: (error?: any) => void) => void); then<U>(onFulfilled?: (value: ...
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.7.4.1 * Operating System version: win10 * 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: master * Operating System version: macos 10.14.3 * Java version: 1.8.0_201-b09 ### Steps to repr...
0
Toggling Atom's Soft Tabs setting from Preferences\Settings\Editor Settings has no effect. The only way to toggle the setting is using Editor: Toggle Soft Tabs from the Command Palette
And I have to close the current document and then reopen it in order to see the tab=>space changes. $ atom --version 0.188.0
1
ERROR: type should be string, got "\n\nhttps://deno.land/std/manual.md#typescript-compiler-options\n\n"
`Manual` link https://deno.land/std/manual.md on the page https://deno.land/ forwards to https://github.com/denoland/deno/tree/master/docs. I assume because there is no `manual.md` file in the `docs` folder. As far as I remember a few days back the `md` files' content was shown under each other.
1
##### ISSUE TYPE * Bug Report ##### ANSIBLE VERSION 2.1 ##### OS / ENVIRONMENT OpenBSD 5.9 ##### SUMMARY Using unarchvie for tar-archives on OpenBSD (and possibly FreeBSD/NetBSD) causes an error (Unexpected error when accessing exploded file: [Errno 2] No such file or directory). From looking at the ansibl...
##### ISSUE TYPE Bug ##### COMPONENT NAME unarchive module ##### ANSIBLE VERSION Ansible on OSX 10.10, installed through Homebrew. $ ansible --version ansible 2.1.0.0 config file = configured module search path = Default w/o overrides ##### CONFIGURATION Not settings change...
1
I've upgraded caravel to `1313727` and on a sunburst slice i get this: Traceback (most recent call last): File "/home/rm/caraveltest/venv/lib/python3.4/site-packages/pandas/core/internals.py", line 3600, in set loc = self.items.get_loc(item) File "/home/rm/caraveltest/venv/lib/pytho...
**Is your feature request related to a problem? Please describe.** We would like to have a feature that allow users to duplicate dashboard, and optionally duplicate (deep copy of ) charts associated with the dashboard. **Describe the solution you'd like** It would be great to have such feature as one of the item...
0
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME * user ##### ANSIBLE VERSION ansible 2.3.0.0 config file = /home/user/work/git/ansible/ansible.cfg configured module search path = [u'./library/'] python version = 2.7.5 (default, Aug 2 2016, 04:20:16) [GCC 4.8.5 20150623 (Re...
--- - hosts: localhost tasks: - name: test task debug: msg=test when: False when: True when: False Test task is skipped in this configuration, but if you comment out the last line, it is launched. Experiments showed, that only last `when` st...
0
Tooltip.d.ts is missing the disable trigger props in TooltipProps. * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Expect the disableTriggerXXX props to be available. ## Current Behavior Receiving a type error when attempting to use the disableTrig...
Going to https://material-ui.com/demos/dialogs/#confirmation-dialogs and clicking Phone Ringtone will cause the screen to go gray and a thin mostly white vertical line to appear. * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior A Dialog should app...
0
Needs docs on how to configure UI session timeout
I have a problem. Now I reference the iframe tag in the HTML page. I reference 9 iframe tags in one page, which are different graphics, but the page is loaded slowly. After checking, I found that when the loading explore.31a5ac0d241c9667d5a2.entry.js size is 11.9M, it loads. 9 times, so the page loading speed is very...
0
When I'm on my laptop I use 13pt Monaco. When I get to work, I change font to 16pt (because of larger screen, higher resolution) and the preferred line length (80 columns) stays the same. I need to close and reopen all files in order to get it to behave correctly.
This is a continuation from atom/atom#3254 (comment) (cc @mdekauwe). When the font size is increased and decreased with commands, the wrap guide updates correctly. Here's a video: ![font](https://cloud.githubusercontent.com/assets/38924/6245949/f35bd818-b763-11e4-8487-551fd83dab1d.gif) However, if the font size is...
1
When a function has multiple optional arguments, callers of the function must use `undefined` to get the default, optional value. ## Proposal Add a syntax allowing function arguments to be passed by name. Unless there is a better suggestion, I propose the use of `:=`. This would be sugar, and rewrite the call site ...
C# allows adding names of arguments in a function call: CalculateBMI(weight: 123, height: 64); See http://msdn.microsoft.com/en-us/library/dd264739.aspx In TypeScript's source this is also done, but with comments: emitLinesStartingAt(nodes, /*startIndex*/ 0); Can we have named argumen...
1
The popover will not destroy properly while showing. Here is a fiddle to demonstrate it: http://jsfiddle.net/vBUFu/20/ [edited]. Hover over the button and wait 5sec to see what i mean. (I changed the opacity of the fade class so that the popover stays visible.) The problem is that even with opacity 0, one canno...
Using toggle popover hidden and ok. When using hide command, popover is hidden, but button inside popover still trigering mouse over. http://jsfiddle.net/conx/n8FYQ/4/
1
Q | A ---|--- Bug report? | yes Feature request? | no BC Break report? | no RFC? | no Symfony version | 2.7 Fabien added this comment about this bug: > #20044 this is a bug on Console that should be fixed, when passing > --prefix="", the prefix should be empty.
Forgive me if this is a known issue or is due to misconfiguration. I have two configuration files, config_test.yml and config.yml. The first one imports the second, so I expect all values in config_test.yml to override config.yml. However, in my bundle extension class where I am processing the bundle configuration, ...
0
I am in the process of migrating from RequireJS to Webpack, but following AMD module that worked in RequireJS produces "SyntaxError: missing ; before statement" with webpack: define([], function() { var modules = []; if (modules.length) { require(modules, function() {}); ...
# Bug report **What is the current behavior?** When using an import() in the base level of a file (i.e. not inside any functions/classes), webpack fetches 4 files on the browser. It's possible that this is caused by two separate issues (one about the extra `vendor~` file and the other about the duplicate requests)...
0
I just updated to 3.5 and im getting a warning when i start my application. My manifest sets the dimensions like so: <meta-data android:name="com.sec.android.support.multiwindow" android:value="true" /> <meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_W" ...
Glide 3.5.0 com.bumptech.glide.module.ManifestParser ==> GLIDE_MODULE_VALUE.equals(appInfo.metaData.getString(key)) may cause ClassCastException if the manifest has meta-data for other libraries that is not a string value.
1
![image](https://cloud.githubusercontent.com/assets/1500781/12747238/ce6c4762-c9dd-11e5-8820-6e9bb5fcc173.png) Node ver: 5.0.0 Babel Deps: * "babel-cli": "^6.4.0", * "babel-core": "^6.3.26", * "babel-eslint": "^5.0.0-beta6", * "babel-loader": "^6.2.0", * "babel...
The `className` prop does not appear to get mapped correctly when applied to custom DOM elements in `0.14.0-rc1`. JSFiddle: https://jsfiddle.net/hellosmithy/5pdujnfq/1/
1
I am doing CI testing on different devices. Could the team make a Flutter Plugin Gallery please that uses all the official plugins and publish it to the Play and Apple store please ? It will make it much easier to test on various real devices and in saucelabs.
The official flutter plugins are really useful. Would it not be smart to have a flutter gallery plugins app tmso developers can get firsthand experience and the plugin team get more cross device testing ??
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.7.3 * Operating System version: Mac * Java version: 1.8 ### Steps to reproduce this issue 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.7.4.1 * Operating System version:Linux version 4.15.0-88-generic 16.04.1-Ubuntu * Java version:...
0
If you're in one of the demo app directories when you run `flutter analyze --flutter-repo`, it will include that directory twice (once because of the crawl, once because of the current directory having a package), which seems to result in duplicate errors sometimes? (The latter might be an analyzer bug.)
## command flutter build apk ## exception FormatException: FormatException: Bad UTF-8 encoding 0xa8 (at offset 165) #0 _Utf8Decoder.convert (dart:convert/utf.dart:568:13) #1 _Utf8ConversionSink.addSlice (dart:convert/string_conversion.dart:345:14) #2 _Utf8ConversionSink.add (d...
0
### 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 13.1.6 ### What opera...
0
#### Code Sample, a copy-pastable example if possible In 0.18.1, a single NaN in a column will cause the reported percentiles to all be NaN. In 0.18.0 and according to the documentation, NaNs are excluded. import pandas as pd import numpy as np df = pd.DataFrame(data={'blah': range(10) + [np.n...
#### Code Sample, a copy-pastable example if possible import pandas as pd import numpy s = pd.Series([1, 2, 3, 4, numpy.nan]) s.quantile(0.5) nan #### Expected Output I would expect 2.5 as output (as with version 0.17.1). #### output of `pd.show_versions()` commit: None python: 2....
1
for consistency with `dropna` (and also to not use `cols` which is being deprecated) related #6645
#### Code Sample, a copy-pastable example if possible import numpy as np import pandas as pd persons = [ { 'name': ''.join([ np.random.choice([chr(x) for x in range(97, 97 + 26)]) for i in range(5) ]), 'age': ...
0
* VSCode Version: 1.1.1-insiders * OS Version: Win10 I know window.visibleEditors is supposed to contain actual text editors but it is not possible to tell at the moment if a VirtualDocument (ie a htmlContentProvider) is in view. The scenario I would need this for is for detecting if a Virtual Document has focu...
I have a use case where I would like to be able to get a list of all the open editors (basically exactly what is shown here). ![loginstructions_ts_-_vs-apex- debug](https://cloud.githubusercontent.com/assets/5217568/20104763/68b379fa-a58c-11e6-8f48-185e5ae47060.png) I understand that Editors are disposed but I just...
1