text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
Veracode is reporting that all versions of axios (up to and including
0.19.0-beta.1) contain a XSS vulnerability. (CVSSv3: 6.1)
Very limited details available:
https://www.sourceclear.com/vulnerability-
database/security/sca/vulnerability/sid-21679/summary
I suspect it is a false positive based on comments here. ... |
**Describe the bug**
A Fortify Scan finds a critical Cross-Site Scripting vulnerability in Axios
here:
https://github.com/axios/axios/blob/master/lib/helpers/isURLSameOrigin.js#L30
urlParsingNode.setAttribute('href', href);
> The method resolveURL() sends unvalidated data to a web browser, which c... | 1 |
I've set `axios.defaults.headers.post['Content-Type'] = 'application/x-www-
form-urlencoded';` and using the same instance doesn't affect at any request
at all. It is very annoying because every POST request to API is useless.
In addition, v: 0.12.0, no interceptor, pure default + post request.
|
#### Describe the issue
This might be duplicated question, but I have tried all possible research on
google and blogs, StackOverflow to get a solution to fix it, but no luck so if
you already know the answer please help me.
I am trying to send an array of objects to Axios post request, but the payload
empty array e... | 0 |
The Qhull library used for the Voronoi diagram calculation has floating number
imprecision. If the points differ only 5 digits after the decimal point (e.g.
geographic coordinates), only one region is determined.
These imprecisions are already mentioned in the Qhull documentation.
Is a note/warning in the document... |
A little context: We're trying to use Voronoi diagrams with points in GIS
shapefiles, which have coordinates with large numbers like `[470121.0,
5118838.0999999996]`
When I run `scipy.spatial.Voronoi()` on raw points I get:

public void processFoo(`@Valid`(groups={Defau... |
**Roman Shevchenko** opened **SPR-3785** and commented
A defaultObject property of JndiObjectFactoryBean is not available via
otherwise perfect jee:jndi-lookup tag and this makes it unusable when looking
for optional JNDI settings.
* * *
**Affects:** 2.0.6
**Issue Links:**
* #8692 jee:jndi-lookup do not provi... | 0 |
**Elasticsearch version** : 2.1.2 or newest
PUT store
{
"mappings": {
"performance": {
"_source": {
"enabled": false
},
"properties": {
"host": {
"store": true,
"type": "lo... |
At least with master (did not check other branches) I see this:
[WARNING] Some problems were encountered while building the effective model
for org.elasticsearch:elasticsearch:jar:2.0.0-SNAPSHOT
[WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found
duplicate declaration of plugin org.apach... | 0 |
Bootstrap components are defined as constructor functions in a private scope.
While they are exposed globally within `$.fn`, they are called with references
to those constructors within that private scope.
That means that there's no way to replace or wrap the code within the
constructor function from 3rd party code.... |
Dropdowns experience the same clipping problems as tooltips, so one solution
would be to allow specifying `data-container="body"`, as you can with
tooltips.
This means the .dropdown-menu would have to be positioned with JS, like the
tooltip, and I don't know what problems would be introduced by shipping the
ul.dropd... | 0 |
In a PR that only changed docs, TestHandleNodeSelector failed on shippable.
https://app.shippable.com/builds/5582fe6f152d7e0b0098cd1a
says:
KUBE_RACE="-race" KUBE_COVER="y" KUBE_GOVERALLS_BIN="$HOME/gopath/bin/goveralls" KUBE_TIMEOUT='-timeout 300s' KUBE_COVERPROCS=8 KUBE_TEST_ETCD_PREFIXES="${KUBE... |
A developer accidentally made two deployments with labels that overlapped,
such that one of the deployment's selectors matched the pods from both
deployments. In the repro below the labels are exactly the same, but this also
happened one one set of labels is a subset of another.
Expected: An error?
Actual: **Cluste... | 0 |
## 🐛 Bug
The tensor.clamp function returns the upper bound when applied to a nan array
on the GPU. On the CPU it returns nan instead.
## To Reproduce
Steps to reproduce the behavior:
import numpy as np
import torch
t = torch.FloatTensor([np.nan])
t.clamp(-10, 10)
`Out[26]: tensor(... |
The behavior of clamp is not consistent on CPU and GPU when nan's are
involved. See the following code snippet
import torch
a = torch.tensor([float('nan')])
print(a.clamp(0, 1)) # prints nan
print(a.cuda().clamp(0, 1)) # prints 1
This doesn't happen if we clamp only with a min or max, but ... | 1 |
**Is this a request for help?** (If yes, you should use our troubleshooting
guide and community support channels, see
http://kubernetes.io/docs/troubleshooting/.):
No.
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.):... |
The `extensions` group isn't meant to be an incubator group, its intended to
hold the things already in it, resources directly related, and
`thirdpartyresource`. We've actually gone to some effort to migrate some types
out: `HPA` and `Jobs` as a for instance.
Different APIs want to move at different cadences and new... | 0 |
**System information**
* Have I written custom code (as opposed to using a stock example script provided in TensorFlow): Stock example script.
* OS Platform and Distribution (e.g., Linux Ubuntu 16.04): CentOS Linux release 7.6.1810 (Core)
* Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue h... |
**System information**
* OS Platform and Distribution : windows10
* TensorFlow installed from : source
* TensorFlow version: 1.11.0
* Python version: Python 3.6.3 :: Anaconda custom (64-bit)
* Installed using virtualenv? pip? conda?: conda
* Bazel version (if compiling from source): 0.19.0 not from sour... | 0 |
From the logs, it looks like the pod was determined to be `terminated` before
it was started running. There are actually 2 issues here:
1. The pod was killed on the before it was started
2. After killing the pod, kubelet continued to download the image and attempted to bring up the container.
Relevant log snipp... |
Example failure:
http://kubekins.dls.corp.google.com:8081/job/kubernetes-pull-build-
test-e2e-gce/21458/
@nikhiljindal @janetkuo
@nikhiljindal \- can you please take a look?
| 1 |
The PDF and CDF functions for the generalized Pareto distribution return nan
for any quantile when the shape parameter is zero:
In [54]: genpareto.pdf([0, 1, 2.5], 0.0)
Out[54]: array([ nan, nan, nan])
In [55]: genpareto.cdf([0, 1, 2.5], 0.0)
Out[55]: array([ nan, nan, nan])
... |
_Original tickethttp://projects.scipy.org/scipy/ticket/768 on 2008-10-31 by
@pbrod, assigned to unknown._
The generalized pareto cumulative distribution in standard form [1]_ is
defined as:
F(x;c) = 1-(1-c*x)**(1/c) for c>0 and c<0
where c is the shape parameter.
The limiting case as c->0 is t... | 1 |
### Preflight Checklist
* [ X] I have read the Contributing Guidelines for this project.
* [ X] I agree to follow the Code of Conduct that this project adheres to.
* [ X] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Vers... |
### 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:**
Not wo... | 1 |
When we open three stacked modals a stack problem due to the invocation of
enforceFocus function in bootstrap-modal.js file.
The following simple html code illustrate the issue.
<a href="#myModal" role="button" class="btn" data-toggle="modal">Launch demo modal</a>
<!-- Modal 1 -->
<div id... |
Issue reproducible with: http://jsbin.com/otuduz/5/
Situation:
When using a page involving multiple modals where focus goes from modal 1 ->
item within modal 2 without returning to the page itself first an error or
crash is recorded (browser dependent).
In the above example a button is clicked to open one modal, ... | 1 |
I'm trying to write mixed C tensorflow code with python tensorflow code by
embedding the CPython interpreter in my application.
I'm mainly doing this because defining the model is only really possible in
Python at the moment due to the lack of gradients (#6268), and I want to
define
new models from the C side ... |
Notice that I'm not looking for a tutorial like this.
**What I'm trying to do**
I'm new to C++ and bazel and I want to make some change on the convolution
operation in tensorflow, so I decide that my first step is to create an ops
just like it.
**What I have done**
I copied conv_ops.cc from //tensorflow/core/ker... | 0 |
This error happens when training several models in a for loop:
`W tensorflow/core/common_runtime/executor.cc:1076] 0x18ef02bb0 W
tensorflow/core/common_runtime/executor.cc:1076] 0x18ef02bb0 Compute status:
Resource exhausted: OOM when allocating tensor with shape [[Node: sub_2518 =
Sub[T=DT_FLOAT, _device="/job:loca... |
**System information**
* Have I written custom code: Yes
* OS Platform and Distribution: Manjaro testing, x86_64
* TensorFlow installed from (source or binary): pypi binary
* TensorFlow version (use command below): v2.0.0-rc2-26-g64c3d38 2.0.0
* Python version: 3.7.4
**Describe the current behavior**
T... | 0 |
Recently I found this piece of code inside bootstrap 3 releases.
This can be a problem for those trying to override css styling on print.
Does anyone have any proposal to fix it?
@media print {
* {
color: #000 !important;
text-shadow: none !important;
background: trans... |
default print media query adds an aggressive * style with !important to it.
This makes it impossible to have a print version of the page without manually
deleting the media query.
Bootstrap should not make any assumptions about the desired print view of the
site.
[should be labeled under "meta"]
| 1 |
**Description**
Hi folks.
Forgive me if this is already possible but I didn't see in the values.yaml
file a clear way to specify multiple git repos as sources for dags. If this is
possible already great!
**Use case / motivation**
The use case is when we have teams working on different projects but want a
sing... |
**Description**
Git sync feature with multiple git repositories
**Use case / motivation**
We have a use case where multiple tenants create DAGs and they dont work with
common git repository. Its a security issue if we share one customer info with
other
**What do you want to happen?**
Airflow should support git-... | 1 |
**Adam Causey** opened **SPR-7959** and commented
The class org.springframework.web.servlet.view.document.AbstractPdfView
references the iText PDF library using the package com.lowagie. **. The most
recent version of iText uses the package com.itextpdf.** instead of
com.lowagie.
The current workaround is to use an... |
**Leo Kim** opened **SPR-5360** and commented
I actually wrote to the Wicket mailing list initially about this:
http://www.nabble.com/SpringBeanLocator-and-%40SpringBean-performance-issue-
td20964687.html
and they suggest that this is a deeper Spring issue. Basically, I'm using
Wicket's `@SpringBean` annotation ... | 0 |
Regarding the docs components with property `mdDown` should not be shown:
> If true, screens this size and down will be hidden.
* I have searched the issues of this repository and believe that this is not a duplicate.
maybe related to #8172 and #6767
## Expected Behavior
`<Hidden mdDown>` components must not b... |
## Problem Description
Hi guys,
I have been having performance issues that might be related to transition.js
dependencies of material-ui.
I have a medium size SPA using redux.
I believe that one of the most CPU consuming process of my app are the ones
related with material-ui components.
I don't know if this ... | 0 |
The following code works:
pub fn new(delay: uint, callback: Box<FnMut() -> uint + 'a>, remove_on_drop: bool) -> Timer<'a> {
...
}
But this doesn't:
pub fn new(delay: uint, callback: Box<(FnMut() -> uint) + 'a>, remove_on_drop: bool) -> Timer<'a> {
... |
// Accepted while it should not.
type A = Box<(Trait1) + Trait2 + 'lifetime>;
// Correct syntax.
type A = Box<Trait1 + Trait2 + 'lifetime>;
The syntax for object types is the same as for other bounds - `Bound + Bound +
Bound + ....` and parentheses are not a part of bound syntax.
... | 1 |
##### Description of the problem
Given the code below, only one request should be fired.
THREE.Cache.enabled = true
var fileLoader = new THREE.FileLoader();
fileLoader.load('foo.jpg'); // A
fileLoader.load('foo.jpg'); // B
1. `A` checks the cache and sees no pending requests.
2. `A`... |
##### Description of the problem
If a Hole in the form of one or more absarc/absellipse/arc/ellipse segments
forming a full circle or ellipse is added to a 2D Shape and rendered as a
ShapeBufferGeometry, this can wreck the Shape, anything from removing two
triangles between one vertice in the outer Path and the thre... | 0 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
* core
##### ANSIBLE VERSION
ansible 2.3.1.0
config file = /home/hpepejau/Desktop/MyProjects/ansible-role-hpe_serviceguard_lx/ansible.cfg
configured module search path = Default w/o overrides
python version = 2.7.13 (default, ... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
ec2
##### ANSIBLE VERSION
works:
$ ansible --version
ansible 2.3.3.0
config file = /home/tessa/.ansible.cfg
configured module search path = Default w/o overrides
python version = 2.7.12 (default, Nov 20 2017, 18:23:56) [GCC... | 0 |
## ℹ Computer information
* Windows build number: 19041.388
* PowerToys version: v0.20.0 (without admin permission)
* PowerToy module: -
## 📝 Provide detailed reproduction steps (if any)
Run app.
After app crash/restart everything works ok.
### ✔️ Expected result
PowerToys starts with system
### ❌ Actu... |
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 |
1. just use `conda install transformers`,the transformers version is 4.4.2, can't run
1.1. error:
```bash
can't import pipline
# then use tokenizer and model to get my feature vector,ERROR:
RuntimeError: Error(s) in loading state_dict for BartModel:
size mismatch for model.e... |
RuntimeError: Error(s) in loading state_dict for BartModel:
size mismatch for model.encoder.embed_positions.weight: copying a param with shape torch.Size([16386, 768]) from checkpoint, the shape in current model is torch.Size([1026, 768]).
I use longformer model called longformer-encdec-base-16384 ... | 1 |
Same problem when starting julia with -p 4 parameter (for example).
Problem only occurs on 64 bit version. (on Windows 8.1)
32 bit version is OK.
|
julia> versioninfo()
Julia Version 0.3.0-prerelease+1358
Commit cb26338* (2014-02-01 14:56 UTC)
Platform Info:
System: Windows (i686-w64-mingw32)
CPU: Intel(R) Core(TM)2 Duo CPU T9300 @ 2.50GHz
WORD_SIZE: 32
BLAS: libopenblas (DYNAMIC_ARCH NO_AFFINITY)
LAPAC... | 1 |
**Do you want to request a _feature_ or report a _bug_?**
feature
**What is the current behavior?**
`getDerivedStateFromProps` only receives the nextProps and previousState as
arguments.
**If the current behavior is a bug, please provide the steps to reproduce and
if possible a minimal demo of the problem. Your ... |
**Do you want to request a _feature_ or report a _bug_?**
bug
**What is the current behavior?**
Our tests are sporadically logging a warning `Warning: ReactDebugTool: debugID
may not be empty.`. We fail any tests that log warnings, so this is causing
flakiness.
**If the current behavior is a bug, please provid... | 0 |
1. Right click on a folder in the tree view
**Atom Version** : 0.194.0
**System** : Microsoft Windows 8.1
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at ... |
I right-clicked on a folder in the tree view
**Atom Version** : 0.194.0
**System** : Windows 7 Entreprise
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Fu... | 1 |
Version: symfony/validator 3.1.6, PHP 7.0.7
**Background:** I've been using the validator component for APIs for a long
time (without forms though). One of the problems was that apart from the
descriptive violation messages I wanted to return a fixed error name that can
be handled by the application on the other end... |
Hi,
It's possible that when calling the `getConstraint()` method on a
`ConstraintViolation` generated by the `Assert\Collection` will return a
different constraint than the `Assert\Collection` that caused the violation.
An example:
$data = ['email' => 'some.email@domain.com'];
$constraints =... | 1 |
I discovered that when we start service neo4j with systemd on ubuntu
/etc/systemd/system/neo4j.service is buggy.
I already create a ticket n°7911 on problem with false analysis.
* Neo4j version: 3.0.1 to 3.1.1
* Operating system: Ubuntu 16.04 and 16.10
* API/Driver: file systemd /etc/systemd/system/neo4j.ser... |
I have noticed that a fresh install of neo4j enterprise is not creating pid
file on /var/run/neo4j directory. Also if I'm creating this directory manually
it's been deleted by neo4j stop procedure.
The result is an instance of neo4j which is not controllable by neo4j bin
file.
This occurs after first reboot of th... | 1 |
This is a feature request/suggestion.
It would pretty nifty to be able to prefix route IDs/names on import. The idea
is that the same routing resource could be imported multiple times and
generate unique route names.
For example: if you have a typical form login on one host for a UI and a
stateless API token authen... |
### Problem
Thanks to the work of @nicolas-grekas and the community, Symfony tests are
faster every day. But we can do better.
I've analyzed the Symfony 2.3 test suite and I've found that **some tests are
very slow**. I can think of 3 reasons for a slow test:
1. It's slow because the tested Symfony feature is sl... | 0 |
**Description**
A way to manipulate `execution_date`, or triggering backfills/catchups from
the Web GUI is proposed.
**Use case / motivation**
Web UI and the CLI interface have separate privileges and responsibilities.
CLI is mostly geared towards maintenance of the Airflow system itself - while
the Web GUI is int... |
### Description
I'd like to be able to trigger backfills remotely through a REST API endpoint
- there's already support for triggering a single DAGRun so why not multiple?
This would involve creating a new endpoint (maybe under
`/dags/<dag_id>/backfills`) which would handle the same parameters as the
`airflow dag b... | 1 |
When I build the APP through Android studio, it gets installed on phone but
closes suddenly and throws following `error` in the Android studio console.
Launching lib/main.dart on HTC Desire 820G PLUS dual sim in debug mode...
Initializing gradle...
Resolving dependencies...
Running 'gradlew... |
In reference to the camera plugin here
## Steps to Reproduce
For me,
1. Make an app
2. Get the camera package
3. Import package:camera/camera.dart
## Logs
Android SDK built for x86 • emulator-5554 • android-x86 • Android 8.1.0 (API
27) (emulator)
Joe’s iPhone • 12bd1a65da8516e2414d685901b4c79c34dde2ae • ... | 0 |
_Original tickethttp://projects.scipy.org/numpy/ticket/2169 on 2012-06-19 by
trac user knopfra, assigned to unknown._
The array provided in attachment as a pickle file can be used to detect the
following issue (64 bit Linux system, python 2.7.3, numpy 1.6.1). The array
has 15606478 elements.
In [1]: import numpy a... |
_Original tickethttp://projects.scipy.org/numpy/ticket/2170 on 2012-06-19 by
trac user knopfra, assigned to unknown._
The array provided as a pickle file at the following link
[http://dl.dropbox.com/u/30592272/data.pkl.gz] can be used to detect the
following issue (64 bit Linux system, python 2.7.3, numpy 1.6.1). T... | 1 |
**Andy Piper** opened **SPR-2533** and commented
JavaBeans support the management of listeners via the addX() methods (see
section 6 of the JavaBeans specification, titled "Events"). It would be
extremely useful to support this in spring so that event listeners could be
added to a bean using standard IoC. This coul... |
**Tomasz Nurkiewicz** opened **SPR-8808** and commented
I am using `AnnotationConfigWebApplicationContext` and XML-free testing
support with `@ContextConfiguration(classes=...)`. When pointed
`@Configuration` class contains `@ComponentScan` with a package containing
that class:
package com.example.fo... | 0 |
This is showing up in gh-14148, where I'm trying to move forward with the
`1.7.0` release candidate process.
Raw log link: https://dev.azure.com/scipy-
org/df8ffb44-7275-43bc-90f9-aa5c93ef5c51/_apis/build/builds/12443/logs/134
The (messy combination of hard crashes and test failures) tracebacks are below
the fold a... |
KDtree/cKDtree do not reference each-other.
is adding a `:seealso:` be useful ?
Any reason when using KDtree not to use cKDtree automatically when available ?
| 0 |
**Vigil Bose** opened **SPR-2706** and commented
We are currently working on an enterprise project for one of our biggest
clients. We are using Spring 2.0 and Spring Web Flow 1.0 Rc4. While deploying
the application to Oracle 9ias 10.1.2.0.2 in our development environment, we
encountered the following error. We exp... |
**Kenny MacLeod** opened **SPR-7043** and commented
I would like to see an attribute added to the `@Async` annotation, which
allows the specification of the name of the executor bean to be used for
invocations on that method. This would be an alternative to specifying the
executor name in the `<task:annotation-drive... | 0 |
While creating a distplot on 'Tips' dataset on 'Total_Bills' column the Y axis
values in the chart appear in decimal while I am expecting it to provide the
counts.
I am using the following code:
`import seaborn as sns %matplotlib inline tips = sns.load_dataset('tips')
sns.distplot(tips['total_bill'],bins=10,norm_hi... |
Hi all,
(first of all: awesome library, I love it)
I am wondering about the default behavior of `distplot` when `norm_hist` is
`False`.
At least on 0.8.0, when
sns.distplot(x, norm_hist=False)
produces a figure that is 1) normalized and 2) still has the KDE, which is a
bit of a gotcha ( _i.e._ unle... | 1 |
Hi.
Is it possible to get some message, when some installed plugins have been
updated?
|
for #6654:
* VSCode Version: 1.1.0 alpha
* OS Version: Window 10
When selecting lines of text in the integrated terminal, if you drag the mouse
below the bottom of the integrated terminal's viewport, some text in the
editor becomes part of the selection:

On the "TypeScript Build" settings page I have

I have a 3 monitor setup, when atom is maximized on any monitor but the left
most one the file menu opens up one monitor to the left.
Windows 7
Atom vs 0.124.0
| 1 |
Introduce `Mutable<T>` to implement a dynamic mutable slot, with dynamic
borrow check, in once place. Obsolete `Cell<T>` and `RcMut<T>` (and what about
`@mut T`? See #7140)
For `Mutable<T>` use an implementation with wrapped borrowed pointers to allow
for both closured-bracketed and "roaming" borrowed pointers.
~~A... |
I'm not sure if this is a bug or not, needs further investigation. It appears
that by reusing the fulfillment_cx here we incur more obligations and later
trip an assertion.
The two possibilities I see is:
\- normalization is not actually fully happening and we have a bug else where
\- we are adding a duplicate b... | 0 |
**Alexander Schäl** opened **SPR-6481** and commented
When started via Java6 WebStart, the Spring
PathMatchingResourcePatternResolver tries to handle the URLConnection (wich is
in a WebStart context actually an JNLPCachedJarURLConnection) just like a
normal file URL. The PathMatchingResourcePatternResolver checks t... |
**Todd Nine** opened **SPR-792** and commented
I have added support for the Hibernate event listener interceptors. It is not
the prettiest, since the only way to add the property in the Hibernate
configuration is by the event name, then the intercepting class. This simply
uses a Properties object for the name value... | 0 |
### Apache Airflow version
2.2.0
### Operating System
Centos 7
### Versions of Apache Airflow Providers
_No response_
### Deployment
Other 3rd-party Helm chart
### Deployment details
_No response_
### What happened
I could not see full task name, when task name is too long.
, but the code expects these files to be in the install directory instead of the doc directory [1][2][3][4][5]. Please update the ... | 1 |
I hit it first after making minor changes to the flutter code lab, and am
hitting it now, while trying to put together a simpler flutter app.
Hot reload is not working, cold launches sometimes work.
Flutter run from IJ.
Launching lib/main.dart on Nexus 6P in debug mode...
Built build/app/outputs/apk/app-debug.ap... |
Not sure whether this is a flutter bug or I should restructure the code.
The intended behavior is that whenever I click the circled plus button, it
should add `", " ` to the end of the input text and advance the cursor to the
end.
## Steps to Reproduce
* Run the following sample flutter program.
* Type someth... | 1 |
http://stackoverflow.com/questions/14511752/pandas-3x3-scatter-matrix-missing-
labels
|
I create a pandas scatter-matrix usng the following code:
import numpy as np
import pandas as pd
a = np.random.normal(1, 3, 100)
b = np.random.normal(3, 1, 100)
c = np.random.normal(2, 2, 100)
df = pd.DataFrame({'A':a,'B':b,'C':c})
pd.scatter_matrix(df, diagonal='kde')... | 1 |
#### Background
Every week axios receives lots of new issues, and most of them are problems
about how to get the expected response. Some of them are simple or duplicated,
some are similar but with tricky differences, and some are complex without
enough and clear information.
#### Possible actions
* maintain a F.... |
#### Describe the issue
I am trying to access a route in the API that checks whether an access token
is valid or not. If it is not valid, jwt returns jwt expired error.
In my axios response interceptor I verify I get that error. However, I would
like to make an automatic request to the server to get a new access to... | 0 |
_Original tickethttp://projects.scipy.org/numpy/ticket/1507 on 2010-06-08 by
trac user howarn, assigned to unknown._
$ cd doc
$ make html
mkdir -p build
touch build/generate-stamp
mkdir -p build/html build/doctrees
LANG=C sphinx-build -b html -d build/doctrees source build/html
Running Sphinx v1.0b2+
... |
_Original tickethttp://projects.scipy.org/numpy/ticket/1489 on 2010-05-22 by
@mforbes, assigned to @pv._
The numpydoc (sphinxext) sphinx extension as of svn version 8426 is broken
when used with the latest sphinx tip (2f0924a705b2).
The first hg version of sphinx where this starts failing is 98f9c2d6f51f where
dom... | 1 |
I noticed that coverage of `test_constrainedlayout.py` was only 87.6%. It
turns out that the function `test_constrained_layout8` is duplicated in the
test file. I can't tell if this is just complete duplication, or duplication
of the name only.
|
Say one finds a pathological natural-neighbour `griddata` case that
`matplotlib.delaunay` can't handle so installs `natgrid`, which can cope with
your data but is pretty slow. Unfortunately if `natgrid` is importable then it
will always be used in preference to the quicker `matplotlib.delaunay`. It
would be great if ... | 0 |
Example: http://is.gd/9LFIF2
The outer macro attempts to parse the new variables as existing ones, and
errors when it can't find them.
|
This is a FIXME issue; currently, macro invocations are parsed too eagerly. In
particular, the current system decides before expansion time whether a rhs
pattern-use (e.g. $y) is bound or unbound. This is incompatible with macro-
producing macros that use a given identifier in a pattern position. It's also
incompatib... | 1 |
Hi,
Recenly, one of our clusters on GCE (1.1.7) started having intermittent
connection issues. It turned out to be dns resolver issues. Here are my
findings during a recent occurance:
* Pods can not resolve anything.
* If I remove skydns ip from /etc/resolv.conf, they work fine. (secondary ip is 169.254.169.254... |
**Is this a request for help?** (If yes, you should use our troubleshooting
guide and community support channels, see
http://kubernetes.io/docs/troubleshooting/.):no
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.):
cre... | 0 |
* bug report
**Current behaviour:**
Now every browser comes with save password option.
If the password is saved by a browser when we reload a page that contains form
password field. By default, it is set to invalid even though the browser fills
password field. On clicking anywhere on the page it is set to valid... |
**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 |
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-kops-aws-updown/1938/\n\nFailed: TearDown {e2e.go}\n\n \n \n error running kops delete: exit status 1\n \n\n" | ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-kops-aws-updown/485/\n\nFailed: TearDown {e2e.go}\n\n \n \n error running kops delete: exit status 1\n \n\n" | 1 |
I have a function that takes a complicated options object as its only
argument.
Also, I am using object destructuring with default values to set default
values, which are actually callbacks with similar signatures.
The parameters of the callbacks should be independent of each other. However,
babel 6.26.0 is still ... |
> Issue originally made by @branneman
### Bug information
* **Babel version:** 6
* **Node version:** any
* **npm version:** any
### Input code
My `.babelrc`:
{
"presets": ["es2015", "stage-3"],
"plugins": [
"external-helpers-2",
"transform-es2015-module... | 0 |
in mysql,the column 's name was 'from',when I used insert into with mybatis,it
was error,I have add " ` ", but it didn't work
|
Service started loading data source error
2023-01-12 15:55:20.059 INFO DESKTOP-D3UDU4O - [ main] c.a.d.p.DruidDataSource : {dataSource-1} inited
2023-01-12 15:55:20.062 INFO DESKTOP-D3UDU4O - [ main] c.h.v.d.DataSourceAwareService : 初始化基础数据源:DataSour... | 0 |
### System information
* Custom code, worked fine on 1.0
* OS: Linux Ubuntu 16.04
* installed binary via pip3
* TensorFlow version v1.1.0-rc0-61-g1ec6ed5, 1.1.0
* CUDA v8.0, cuDNN v5.1
* GTX 1070, 8GB RAM
* To reproduce: run tensorboard, try to filter runs in web interface, nothing happens
### Problem... |
### System information
Docker image `tensorflow/tensorflow:nightly` (or 1.1.0rc2)
### Describe the problem
Start a tensorboard process
tensorboard --logdir /efs/log/atari
and try and filter. It does not have any effect.
 to works space keyboard doesn't work its always
load run search bar
|
# Environment
Windows build number: [run "ver" at a command prompt]
PowerToys version: 0.19
PowerToy module for which you are reporting the bug (if applicable): PT Run
# Steps to reproduce
Remap key from alt-space to win-space
execute shortcut multiple times
# Expected behavior
don't... | 1 |
# Checklist
* I have verified that the issue exists against the `master` branch of Celery.
* This has already been asked to the discussion group first.
* I have read the relevant section in the
contribution guide
on reporting bugs.
* I have checked the issues list
for similar or identical bug reports.... |
Affects 3.0.23.
The get_scheduler method is called as part of
celery.apps.beat.Beat.startup_info (instead of accessing the beat.scheduler
property). This instantiates a scheduler object (lazy=True).
Later, in celery.beat.Service.start() the beat.scheduler property is accessed.
Since this is the first call, the sche... | 0 |
**Do you want to request a _feature_ or report a _bug_?**
feature
**What is the current behavior?**
Specifying output file names is not very flexible.
{
output: {
filename: '[name].js'
}
}
**If this is a feature request, what is motivation or use case for chang... |
**Do you want to request a _feature_ or report a _bug_?**
feature
**What is the current behavior?**
DllPlugin currently only works on `library` bundles, not entry bundles. That
is, it is impossible for a DllPlugin bundle to execute code when it is
imported via a script tag into the page, other than to expose its ... | 0 |
I'm getting a build error and a previously working build system.
Built a version a week ago without problems and had been successfully built
with same image for almost a year
Built is made on Docker using python:2.7-alpine as docker image base
If any additional information is helpful I'll provide it. Thank you!
D... |
### Describe the issue:
When converting a numpy array containing `numpy.nan` to type `int`, the
`numpy.nan` are replaced by either `-9223372036854775808` or `0` depending on
the computer.
`numpy.nan` is replaced by `-9223372036854775808` on a Mac Pro (2019).
`numpy.nan` is replaced by `0` on a MacBook Air (M1, 20... | 0 |
* have a git conflict
* click around if the line conflict decorations don't show up
* delete the conflicting lines
* undo
* Observe: now the conflict decorations never disappear without a Reload window or a new model instantiation.


Deleting from the end of the line above the `=======` to the end of the l... | 1 |
It would be really nice to have a way to get the compiler options into the
code (like precompilation ifdef or something like that).
The main reason would be to make conditional code (=shim) conditionnally to
the target ES version.
In term of code scalability, this would also help smooth transition to ES6.
|
On codeplex this was a popular feature request:
https://typescript.codeplex.com/workitem/111
https://typescript.codeplex.com/workitem/1926
Personally I think preprocessor directives like #if, #elif, #else #endif with
possibility to specify symbol to compiler would be very useful.
And a way to mark function (or ... | 1 |
I'm running into an issue using a StreamedResponse to return a file to the
user that can be limited in size by a post parameter. In some cases, we return
10,000 rows, and in others only 4.
Since upgrading to Symfony 3.x our tests related to small sized files have
broken on our front end because of duplication of the... |
Hi,
Currently the `access_control` setting only allows regex paths, wouldn't it be
nice to allow a route name as well. This would avoid duplicating paths between
routing and security.
access_control:
- { path: '^/admin' }
- { route: 'some_route_id' }
Any thoughts?
| 0 |
# Summary of the new feature/enhancement
Ability to create zones which span multiple monitors
# Proposed technical implementation details (optional)
I have this giant 49" screen which are practically 2 27"monitors in 5120x1440
resolution without a bezel.
I'd like to be able to create a zones which extends from 1... |
# Environment
Windows build number: 10.0.18365.449 (1909)
PowerToys version: 0.12 and 0.13
PowerToy module for which you are reporting the bug (if applicable): FancyZones
# Steps to reproduce
Unsure what triggers this. I noticed at random times, pressing keys on the top
(number) row no l... | 0 |
## 📝 When searching in PowerToys Run, show 1 or 2 currently running processes
that match the search string with a high confidence at the top
Often, I use PowerToys Run to open currently running processes and sometimes
they are at the bottom below matches to open programs (often unrelated ones
and even below file re... |
# Summary of the new feature/enhancement
It would be more useful if already running programs are shown first in the
results list in the quick launcher (like the old WindowWalker). **_Or maybe an
option to change the priority._**
# Proposed technical implementation details (optional)
In the results list, the runnin... | 1 |
I'm trying to scrape the content from this link on my macOS, using `scrapy`
with `scrapy_splash` settings and `BeautifulSoup` I followed the instructions
in the documentation
* I tested every single command in scrapy shell and each works perfectly fine, tested on several pages. when I run the spider with the same ... |
I'm trying to scrape the content from this link on my macOS, using `scrapy`
with `scrapy_splash` settings and `BeautifulSoup` I followed the instructions
in the documentation
* I tested every single command in scrapy shell and each works perfectly fine, tested on several pages. when I run the spider with the same ... | 1 |
**Mathias Bogaert** opened **SPR-168** and commented
It would be very usefuly to be able to enable query caching on all DAO's that
extend HibernateDaoSupport. Add a boolean cacheQueries to HibernateTemplate,
and evaluate it in createQuery. Then add a setter to HibernateDaoSupport which
calls the setter on HibernateT... |
**Andruschuk Borislav** opened **SPR-7393** and commented
We have some DAO which call an other DAO in RowMapper to get linked entities.
Sometimes we have to do that to link different loosely coupled entities in
depends of included application modules, data base state etc. After migration
from Spring 2.5.6 to Spring... | 0 |
Challenge http://www.freecodecamp.com/challenges/waypoint-override-all-other-
styles-by-using-important has an issue.
If there is a space between "!important" and ";" test will return:
Cannot read property 'length' of null
Having a space between last character and ";" on other lines do not provi... |
Challenge http://www.freecodecamp.com/challenges/waypoint-override-all-other-
styles-by-using-important has an issue.
When editing the style, do not include ";" after !important, and the checklist
will change "Your pink-text class should have the !important keyword to
override all other declarations." to "Cannot rea... | 1 |
`ne` is a point-wise math operator so porting it from the TH code to Aten (and
TensorIterator) expected to be easy. Such migration will help to clean up the
code, simplify dispatch as well as provide immediate 2-3x operator performance
gain.
Porting guide: https://github.com/pytorch/pytorch/wiki/TH-to-ATen-porting-
... |
Porting TH operators is essential for code simplicity and performance reasons.
Porting guides and Q&A are available in umbrella issue: #24507
Feel free to add @VitalyFedyunin as a reviewer to get a prioritized review.
| 1 |
trailing slash in link for legit page works for client side navigation but
leads to not found bundle and 404 on hard refresh (ssr)
# Bug report
## Describe the bug
let me know if title needs further clarification.
all relevant issues has been closed with reasoning that its been fixed in
6-canary (I believe it is ... |
Hi,
Would be nice to be able to modify the webpack configuration using the
interface that webpack-chain provides.
My proposal is to do something like poi does, as is described in
poi>docs>webpack. Doing it that way the user have the choice of using webpack-
chain or mutate the configuration object directly (which i... | 0 |
I was testing out some code I found on the mailing list, and appended some of
my own:
enum Foobar {
Foo(~str),
Bar(~str)
}
fn f<'a>(fb: &'a Foobar) -> &'a str {
let rs = match *fb {
Foo(ref rs) => rs,
Bar(ref rs) => rs
};
let s: &'a str = *rs;
... |
It would be nice if there would be some way to `std::mem::transmute` in
functions, even with type parameters.
Maybe the prototype of the `transmute` function could be changed to
fn transmute<T,U:Transmutable<T>>(x: T) -> U;
where `Transmutable` is a compiler-implemented type, like `Send`, `Copy`... | 0 |
Transferred from http://code.opencv.org/issues/4106
|| tzafrir last_name on 2015-01-08 09:05
|| Priority: Normal
|| Affected: branch 'master' (3.0-dev)
|| Category: ml
|| Tracker: Bug
|| Difficulty:
|| PR:
|| Platform: x64 / Windows
## Examples runs in debug mode but... |
BOWKMeansTrainer class is not available in even latest Opencv 3.1 java version
The same bug is raised for version 2.4.5 , 3 years ago available at link
http://code.opencv.org/issues/3003
by mohammag
No solution yet.
| 0 |
I get a weird REPL crash when pasting the following into a fresh session:
julia> struct Test{A,B} end
julia> Base.show(io::IO, ::Type{Test{A,B}}) where {A,B} = print(io, "fooTest{", A, ",", B, "}")
julia> Test{A,Int} where A
which crashes julia, with output:
Error showing v... |
I checked it with 1.0.0 and 1.1.0-DEV.334.
julia> struct Spam end
julia> Base.show(::IO, ::Type{Spam}) = error("nope")
julia> Spam
Error showing value of type DataType:
ERROR: nope
Stacktrace:
[1] error(::String) at ./error.jl:33
[2] show(::IOContext{REPL.Termina... | 1 |
Challenge Waypoint: Delete Properties from a JavaScript Object has an issue.
User Agent is: `Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X)
AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75
Safari/601.1`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My ... |
Thanks to Thad for reporting. His words:
I have a question about the code output area. I'm referring to the area just
under the Reset, Help and Bug buttons on the left side of the page at FCC. It
seems that there was a change to how that functions in the past few days.
In the past, when it was dictated that an arra... | 1 |
# Description of the new feature/enhancement
if you right-click on the icon in the taskbar the menu shows only "unpin from
taskbar". It would be nice if there are the terminals that are in the settings
described.
How it looks now:
: Windows Terminal (Preview) Version: 0.4.2382.0
# Steps to reproduce
1. Open many terminal tabs -or- a small number with long titles
2. Note that at some point, dependi... | 0 |
Python 3.5.2 (default, Nov 17 2016, 17:05:23)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from requests.packages.urllib3.poolmanager import PoolManager
Traceback (most recent call last):
File "<stdin>", line 1, in <module... |
Hey so the 2.16.0 release broke all of the vendored things I am assuming. I
have issued two PRs to two frameworks I use that rely on the vendored packages
in requests.
The `changelog` was a bit obscure about this
> 2.16.0
> Unvendor ALL the things!
Something like `BREAKING CHANGE: Vendor packages have been remo... | 1 |
I had an error below when trying to divide a monitor.
Its error occured after some packages updated.
* * *
[Enter steps to reproduce below:]
1. ...
2. ...
**Atom Version** : 0.200.0
**System** : Unknown Windows Version
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: Cannot find module './c... |
I right-clicked on a folder in the tree view
**Atom Version** : 0.194.0
**System** : Windows 7 Entreprise
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Fu... | 1 |
xref #6942
xref #12499
xref #14179
Simple repro, casting to `object`, but a datetimelike is cast to its
underlying repr
In [1]: s = pd.Series([1])
In [2]: s
Out[2]:
0 1
dtype: int64
In [3]: s[1] = pd.Timestamp('20130101')
In [4]: s
Out[4]:
0 ... |
xref #14179
xref #12499
xref #18027
http://stackoverflow.com/questions/23250333/in-pandas-dataframe-after-i-set-
an-entire-column-i-cant-update-another-column
but `.loc` works
In [50]: df = pd.DataFrame(index=pd.date_range(start,periods=1), columns=['timenow','Live'])
In [51]: df.at[star... | 1 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
module include_tasks
##### ANSIBLE VERSION
ansible 2.4.1.0
config file = /home/xxxx/.ansible.cfg
configured module search path = [u'/home/xxxx/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python modu... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
include_tasks
##### ANSIBLE VERSION
devel version on 2018/03/24
2.6.0-100.git201803241800.d502745a4e.devel
##### CONFIGURATION
standart
##### OS / ENVIRONMENT
centos 7.4
##### SUMMARY
include_tasks: i.yml
when: undefinded_variabl... | 1 |
One feature about DataFrame that I found uncomfortable is the inconsistency of
results:
x = pd.DataFrame({'A': [1,2,3,4,5]}, index=['a','b','c','d','e'])
x.loc[['a', 'f']] # fine, value of 'f' is numpy.nan
x.loc[['f']] # throws
When developing data applications, I spend lot of time fix... |
I just upgraded to latest Pandas 0.16, and the new error has hit me (with
Pandas 0.15) when slicing with multiple values. (df.ix[[list_of_values]]). I
actually think it is more valid to return an empty DataFrame, than to throw an
error.
The best I've been able to come up with to reproduce the previous behaviour
(fai... | 1 |
## Issue description
I noticed that some loss functions in `torch.nn.functional` do tensor
broadcasting while other does not.
I started using `cosine_embedding_loss` and was happy because it handles input
tensors with (N, F) and (1, F) shapes, where N - number of examples, F -
number of features in one example (ve... |
## To Reproduce
a = T.zeros(5,1,10, requires_grad=True)
b = T.zeros(5,10,10, requires_grad=True)
F.mse_loss(a,b)
# OK
a = T.zeros(5,1,10)
b = T.zeros(5,10,10)
F.mse_loss(a,b)
# RuntimeError: input and target shapes do not match: input [5 x 1 x 10], target [5 x 10 x 10] ... | 1 |
**I'm submitting a ...** (check one with "x")
[x] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
... |
**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
... | 1 |
Steps:
* `gomobile install golang.org/x/mobile/example/basic`
* start the app
* press back button
* start the app
The application crashes:
`panic: attempting to init key (2) with valid texture`
I/ActivityManager( 1882): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LA... |
golang.org/x/mobile/example/basic
its a UI interaction bug.
Context:
gedw99-MacBook-Pro:audio apple$ go version
go version go1.5beta2 darwin/amd64
gedw99-MacBook-Pro:audio apple$ which go
/usr/local/go/bin/go
gedw99-MacBook-Pro:audio apple$
Steps to reproduce:
compile for android
load apk on nexus 6 ... | 1 |
I am trying to run `resnet_v2.py` from provided modles but getting error
`ImportError: No module named nets `.
I have done following
First installing slim
`cd $HOME/tensorflow git clone https://github.com/tensorflow/models/`
To verify that this has worked, execute the following commands; it should run
withou... |
I am trying to run `resnet_v2.py` from provided modles but getting error
`ImportError: No module named nets.`
I have done following
First installing slim
`cd $HOME/tensorflow git clone https://github.com/tensorflow/models/`
To verify that this has worked, execute the following commands; it should run
without... | 1 |
* Output of `node_modules/.bin/electron --version`: 3.0.13
* Operating System (Platform and Version): MacOS 10.14.2
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): 2.0.16
**Expected Behavior**
Print all content.
**Actual behavior**
Only printing f... |
* Electron Version: 3.0.0-beta.6
* Operating System (Platform and Version): Mac OS 10.13.6
* Last known working Electron version: 2.0.7
**Expected Behavior**
If content spans multiple pages, all pages should print.
**Actual behavior**
Only content on the first page is being printed
**To Reproduce**
https:... | 1 |
**Migrated issue, originally created by Pablo Marti (@pmarti)**
Hi there,
I have a User model class with a profile attribute marked as mutable
class User(db.Model):
...
profile = db.Column(MutableDict.as_mutable(JSONB()))
This works perfectly under python2.7, but now when I iss... |
**Migrated issue, originally created by Raphaël Slinckx**
Here is a test case yielding different results between sqlalchemy 0.9.9 and
1.0+
import json
from sqlalchemy import create_engine, Column
from sqlalchemy.types import TypeDecorator, UnicodeText, Integer
from sqlalchemy.ext.mut... | 1 |
##### System information (version)
* OpenCV => 4.0.0-alpha, 4.0.0-beta
* Operating System / Platform => Ubuntu 16.04
##### Detailed description
Since OpenCV 4.0.0-alpha, I cannot use anymore
`Features2d.NOT_DRAW_SINGLE_POINTS` with Java binding.
Is this intended since it looks like it is no more possible to c... |
##### System information (version)
* OpenCV => 4.0.0
* Operating System / Platform => nixpkgs on macOS 10.14 (Mojave)
* Compiler => clang
##### Detailed description
I'm packaging OpenCV-4.0.0 in nixpkgs at NixOS/nixpkgs#51027.
The build succeeds on the `aarch64-linux` and `x86_64-linux` platforms.
Unfortuna... | 0 |
> Issue originally reported by @marcoacierno in babel/babel-preset-env#417
I'm having difficulties using the plugin transform-class-properties together
with babel-preset-env, even if it's defined in the `.babelrc` the build still
says 'Missing class properties transform.'. Searching online I found that you
need to u... |
The code as follow running normally at last version(V7.8.6), but at
Version7.8.7,throw error.
let obj = {one:{a:1}, other: {b:2}}
function fn(obj, key) {
for(var key in obj) {
fn(obj[key], key)
}
}
fn(obj, 'base');
throw error:
TypeError: Property left of ForInStatemen... | 0 |
npm WARN deprecated fsevents@1.2.9: One of your dependencies needs to upgrade
to fsevents v2: 1) Proper nodejs v10+ support 2) No more fetching binaries
from AWS, smaller package size
npm WARN deprecated core-js@1.2.7: core-js@<3.0 is no longer maintained and
not recommended for usage due to the number of issues. P... |
### 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
I can observe moduleA in node_modules of moduleB
### Expected Behavior
npm must not download a peer dependency if it is resolvable ... | 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
12.x
### What operati... |
### 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
12.0.2
### What operating sys... | 1 |
Some NumPy C functions do not have signatures available. I have not audited
the full API but I know this is true at least for `arange`.
It sounds like you can add signatures for functions defined in C by adding a
`__text_signature__` attribute. Or you can add a `__signature__` attribute to
return a `Signature` insta... |
Which involves including `--\n\n` in the docstrings. See
http://stackoverflow.com/a/41245451/102441
| 1 |
I'm using the latest version of VS Code on OS X (Version 0.10.8 (0.10.8),
`db71ac6`).
Replication steps:
Paste the following into a new whatever.ts file.
function foo() { }
function bar() { }
function baz() { }
export {
foo,
bar,
baz
};
Now highlight the proper... |
I wanted to indent multiple lines at once but it failed. This is how it looks
like when I select some lines and press `Tab`. Sometimes it works though, like
when creating an untitled file in split screen.

... | 1 |
## 📝 Provide a description of the new feature
It would be nice to have a feature similar to Linux Xcompose or wincompose.
## _What is the expected behavior of the proposed feature? What is the
scenario this would be used?_
The expected behavior would be to have similar capabilities as we have with
https://github.... |
## 📝 Provide a description of the new feature
What if I write asap and automatically the word is replaced by "as soon as
possible" ?
There are lots of programs that can do it but most of them are not free and
they have lots of useless features and they are resources-hungry.
It's not implemented natively on wind... | 0 |
when using the "yum" module to install a package in RHEL6, I just get this
error:
fatal: [jofo-mgmt1] => failed to parse: This system is not registered with
RHN.
RHN support will be disabled.
{"changed": true}
These lines are always printed by yum on the machine, unless the RHN plugin is
disabled with "--disablep... |
From @Vladimir-csp on 2016-06-12T09:45:24Z
##### ISSUE TYPE
* Feature Idea
##### COMPONENT NAME
copy
template
##### ANSIBLE VERSION
ansible 2.1.0.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
##### CONFIGURATION
##### OS / ENV... | 0 |
Drawer Opened | Drawer Closed
---|---

| 
|
When I use flutter plugin and open my webpage always white screen, But that
doesn't happen with setting Android webView
`webSettings.setDomStorageEnabled(true)` to load this webpage. I expect to
webview_flutter plugin support the `webSettings.setDomStorageEnabled(true)`
and other WebSettings settings , The follow... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.