text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
##### System information (version)
* OpenCV => 3.4.1
* Operating System / Platform => Ubuntu 16.04 amd64
* Compiler => g++ 5.4
##### Detailed description
I try to use cudacodec VideoReader to read a mkv :
`cudacodec::createVideoReader("file.mkv")`
OpenCV throws this error :
OpenCV(3.4.1) Er... |
##### System information (version)
* OpenCV => 3.4.3
* CMake => 3.12.3
* Operating System / Platform => OSX 10.13.6
* Compiler => clang(?)
##### Detailed description
When configuring my OpenCV project, I get the following error:
`CMake Error at /Library/Frameworks/opencv2.framework/OpenCVConfig.cmake:96:... | 0 |
## Bug Report
**Current Behavior**
Set up a TypeScript repository with Babel and plugin-transform-typescript. Add
this code:
**Input Code**
export enum Foo
{
a, b, c, d
}
export namespace Foo
{
export function bar()
{
return "bar"
}
}
**Ex... |
@TheLarkInn asked, and it seems like a discussion worth having.
Leaving it off by default would lead to people being more likely to get errors
in things like Node by default, but it would potentially make the workflow
easier for people using Webpack, since it's usually easier to add additional
plugins than it is to ... | 0 |
This happened after I switched branches in git, and had folder open, which was
unavailable in branch that I switched to.
Atom was open in background, GitHub app was on top.
|
Right-click in the tree view to rename a file (which is currently open in the
editor) and the file gets copied/duplicated to the new name while the old file
remains open. They are not symlinked as editing one does not produce changes
in the other after closing/reopening.
Renaming a directory (containing a file open ... | 0 |
**Do you want to request a _feature_ or report a _bug_?**
Bug
**What is the current behavior?**
When importing an undefined named import, it doesn't produce any warning or
error in build, but fail at runtime. I am using babel-preset-env, with
`modules: false`.
**If the current behavior is a bug, please provide t... |
**I'm submitting a feature request**
**Webpack version:**
2.1.0-beta.21
**Please tell us about your environment:**
Linux
**Current behavior:**
When I try to import a named import, it fails silently if the name import does
not exist. I wish webpack would fail loudly when it cannot find the import at
build t... | 1 |
In http://getbootstrap.com/customize/#less-variables, the nav bar on the left
eases navigation in the page. However, when there is too much content and the
height of the screen is too low, it becomes impossible to see the content at
the end of the nav bar.
|
On the **Components** page of the Bootstrap docs, the sidebar becomes too tall
for the viewport when `scrollspy` causes the sidebar subheadings to show.
The sidebar cannot be scrolled or manipulated to show content below the
viewport.
See here: http://getbootstrap.com/components/#glyphicons
![screen shot 2013-08-2... | 1 |
`sum(skipmissing(x))` is reasonably fast, but since #27651 a naive
implementation of `sum` is even faster (up to 5×). This is particularly clear
when the input array does contain missing values, probably because the naive
sum uses masked SIMD instructions while `skipmissing` relies on branching (and
the presence of m... |
Unfortunately, the impressive speed boosts that were made for Julia on Linux
seem to have been lost in translation. On the same machine, I get ~0.6 secs on
Linux vs. ~6 on Windows.
| 0 |
**Elasticsearch version** : 5.0.0-alpha5
**Plugins installed** : []
**JVM version** : openjdk version "1.8.0_91"
**OS version** : Linux 4.4.0-28-generic #47-Ubuntu SMP Fri Jun 24 10:09:13 UTC
2016 x86_64 x86_64 x86_64 GNU/Linux
**Description of the problem including expected versus actual behavior** :
when tr... |
When using Netty4 HTTP transport type I have the following issue:
#### Netty4
Starting master using `http.type: netty4`
bin/elasticsearch --E http.type=netty4
Creating a document with a medium size JSON document using cUrl (sample
document is here):
curl -v -XPOST 'localhost:9200... | 1 |
Version 0.10.10
In previous versions formatting was adding space in anonymous function like
this:
function() {}
Became:
function () {}
Now it works vice versa. Is there any way to configure it?
|
Hi
I was wondering if there's any option to change the JavaScript code formatting
rules used?
I'm a big fan of code formatting but when VS code formats my code to insert
spaces after my anonymous function keywords then it can really upset people
that I work with who have OCD.
And thanks for the continued efforts g... | 1 |
julia> a = rpad("\u2003", 5)
" "
julia> length(a) #4 in 0.4-dev, 5 in 0.3.7
4
julia> map(x->convert(Uint32, x), collect(a)) #0.4-dev has one fewer space
4-element Array{UInt32,1}:
0x00002003
0x00000020
0x00000020
0x00000020
help?> rpad
sea... |
Julia compiles OpenBLAS to `libopenblas.so`. This may be a problem for calling
libraries that link to a system `libopenblas.so`, because the runtime linker
may substitute Julia's version instead. The problem is that Julia's version is
compiled with a 64-bit interface, which is not the default, and so if an
external l... | 0 |
Related to #10528, but for `np.dtype` instead of `np.array`
import numpy as np
import ctypes
class PackedStructure(ctypes.Structure):
_pack_ = 1
_fields_ = [
('a', ctypes.c_uint8),
('b', ctypes.c_uint16)
]
actual = np.dtype(PackedStructure)
... |
class Foo(ctypes.Structure):
_fields_ = [('one', ctypes.c_uint8), ('two', ctypes.c_uint32)]
_pack_ = 2
>>> ctypes.sizeof(Foo()) # packed to alignment 2
6
>>> np.dtype(Foo).itemsize # default alignment incorrectly used
8
Fix should be fairly straightforward by ... | 1 |
### System info
* Playwright Version: v1.31
* Operating System: All
* Browser: All
### Source code
* I provided exact source code that allows reproducing the issue locally.
**Config file**
**Test file (self-contained)**
import { test as base } from '@playwright/test';
export c... |
### System info
* Playwright Version: [v1.31.2]
### Source code
I am having trouble with TS errors when trying to use parameterized projects
following the the official documentation
**Config file**
import type { defineConfig } from '@playwright/test';
import { TestOptions } from './my-test';
... | 0 |
I couldn't find an existing tracking issue for this feature, please mark as a
duplicate if I've missed anything.
This is something that would be required for jspm support in Babel CLI, where
we'd want to use dynamic `import()` to reference plugins directly, and so
would need some kind of promise support in the confi... |
Today I came across what looks like a bug.
If you try to destructure arguments to a function that's within an array it
silently fails instead of giving a SyntaxError.
The failing code looks like:
const doesntCompileProperly = [
...args => console.log(args)
];
and compiles to:
... | 0 |
### Describe the workflow you want to enable
Currently the GeneralizedLinearRegressor module only allows a scalar `alpha`
regularization parameter to be used for all parameters. However, sometimes the
modeler would like to input different amounts of regularization on certain
parameters, either for interpretation or ... |
#### Description
This is a feature request in allow flexibility in elastic net, which allows
the user to apply separate penalties to each coefficient of the L1 term. The
default value of this penalty factor is 1, meaning the regular elastic net
behavior. If the penalty factor of a feature is Zero, it means it's not
... | 1 |
I'm setting up a docker-multinode k8s. I'm trying to mount a volume (in this
case, a secret). Originally, I was getting this issue:
`Unable to mount volumes for pod "service-registry-eccye_default": exit status
32`
I was on Slack yesterday, and @cjcullen pointed out that I should be running
the kubelet with the `... |
When I try to create a pod which mounts secret volumes I get a `Unable to
mount volumes for pod: exit status 1` error. For instance, when trying to
create the example pod from
https://github.com/kubernetes/kubernetes/tree/master/docs/user-guide/secrets :
$ curl -s https://raw.githubusercontent.com/kube... | 1 |
@sjudd Can I work on this?
|
I'm using 4.0.0-RC0, I added it by Gradle:
> repositories {
> mavenCentral() // jcenter() works as well because it pulls from Maven
> Central
> }
> dependencies {
> compile 'com.android.support:appcompat-v7:25.3.1'
> compile 'com.github.bumptech.glide:glide:4.0.0-RC0'
> compile 'com.android.support... | 0 |
### Bug report
**Bug summary**
It crashes on Mac Osx.
**Code for reproduction**
from matplotlib import pyplot as plt
plt.figure()
**Actual outcome**
2019-03-07 11:14:39.220 python[13951:2853154] -[QNSApplication _setup:]: unrecognized selector sent to instance 0x7fc9418afd10
... |
### Bug report
**Bug summary**
`plt.plot()` fails with error
libc++abi.dylib: terminating with uncaught exception of type NSException
**Code for reproduction**
from matplotlib import pyplot as plt
plt.plot()
**Actual outcome**
2019-02-11 22:09:09.936 pyth... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
No flow errors
## Current Behavior
Internal error: merge_job exception: Utils_js.Key_not_found("LeaderHeap",
"/my_project/node_modules/material-ui/styles/index.js.flow") Raised at file
"map.ml", line 1... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
I want the color and font of the text in the header row of the table to be
editable in material-ui 0.19.4.
## Current Behavior
I found the headerStyle property to change the default style but it do... | 0 |
Hi, guys!
This is actually a duplicate of #4958 and the issue description could be found
there.
But the problem still exists.
Why after upgrading to symfony-2.1.0-beta4 aliasing of classes stopped
working?
More about environment:
PHP 5.4.4-2 (cli) (built: Jun 20 2012 09:52:11)
Copyrigh... |
Now paths to files with translations adds when container compiles
https://github.com/symfony/symfony/blob/master/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php#L407
. Sometimes needed change way to locate translation file, for example when
there are themes, wich can override translation... | 0 |
Currently making a Cypher request over the REST API returns results as nested
arrays that contain maps instead of just an array of maps. This makes it
harder to decode. I currently read the entire response and then do string
replaces to fix it up before decoding it. If the format was more standard
(especially if I co... |
Suppose I have this node:
(n:person {name: "Bob Smith", city: "Boston"})-[:brother]-(n:person {name:
"Dave Smith"})
and this node:
(n:person {name: "Bob Smith", haircolor: "brown"})-[:brother]-(n:person {name:
"Frank Smith"})
It would be great to have an automatic way of combining them, to get:
(n:person {name: ... | 0 |
We recently added a Glossary to our documentation, which describes common
parameters among other things. We should now replace descriptions of
`random_state` parameters to make them more concise and informative (see
#10415). For example, instead of
random_state : int, RandomState instance or None, ... |
#### Description
With TSNE from sklearn v0.19.2 python 3.6 with mahalanobis metric I am getting
following error
ValueError: Must provide either V or VI for Mahalanobis distance
How to provide an **method_parameters** for the Mahalanobis distance?
#### Steps/Code to Reproduce
from sklearn.manifold import TSNE ... | 0 |
_Please make sure that this is a bug. As per ourGitHub Policy, we only
address code/doc bugs, performance issues, feature requests and
build/installation issues on GitHub. tag:bug_template_
**System information**
* Have I written custom code (as opposed to using a stock example script provided in TensorFlow): No... |
Installed nightly build using
> pip3 install tensorflow-1.1.0rc0-cp35-cp35m-win_amd64.whl
> on Windows 7 Professional x64. Simple run gives warning that the libs were
> not compiled to use SSE, SSE2, SSE3, SSE4.1, SSE4.2 and AVX instructions
> even though available.
c:\python
Python 3.5.2 (v3.5.2:4def2a2901a5,... | 0 |
In a few documentation places
http://getbootstrap.com/css/#helper-classes-clearfix
http://getbootstrap.com/css/#less-mixins-vendor (scroll to Transformation)
and a few more
a curly bracket is highlighted with red by using class="err"
Sounds like a bug in {% highlight css %}
|
Just like less code in CSS#Less Mixins
It should be less format, not css format.
But I can't find the html template with a `{ highlight less }` format.
Here are the screenshots.
:
* Pressing `Tab` will replace the rest.
* Pressing `Enter` will insert into current caret position.
Or vice-versa.
Thanks,
|
* VSCode Version: 1.4.0
* OS Version: Windows 10
Steps to Reproduce:
1. Create a method called `methodOne`
2. Write some code that calls this method as `methodTwo()`
3. Place the cursor between the `d` and `T` and invoke completion
4. Select `methodOne` from the completion list
You would expect `method... | 1 |
### Apache Airflow version
2.5.3
### What happened
Pleas consider the following scenario
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from my_package import MyClass
@task
def foo(a: int, b: str, c: "MyClass"):
pass
In this case, the DAG parsing will fail with... |
### Apache Airflow version
2.5.1
### What happened
When using the TaskFlow API, I like to generally keep a good practice of
adding type annotations in the TaskFlow functions so others reading the DAG
and task code have better context around inputs/outputs, keep imports solely
used for typing behind `typing.TYPE_CH... | 1 |
I think we should add support for that.
Though it's still tricky when using it in grid-search because that requires a
custom scorer (via make_scorer) every time :-/
|
to reproduce:
import numpy as np
np.random.seed(13)
classes = np.array(['yes', 'no'])
y = classes[np.random.randint(2, size=10)]
t = classes[np.random.randint(2, size=10)]
from sklearn.metrics import roc_auc_score
from sklearn.metrics import accuracy_score
roc_auc_score(t, y... | 1 |
## Bug Report
* I would like to work on a fix!
**Current Behavior**
I have a `. browserlistrc` file that contains the `defaults` query. I don't
have `targets` option defined in babel-preset-env options. With that setup,
the preset includes 148 core-js imports.
If I change this setup and define the `targets` op... |
#8897 (comment)
> I guess the best solution would be to check ourself if there is a
> browserlist config in the fs if there are not targets specified. We could do
> this with `browserlist.findConfig(from)`. If we find one we do not change
> defaults. But that would also be a breaking change so I guess we would need
... | 1 |
### What problem does this feature solve?
`v-model.lazy` on component is ignored and wasted, while `.number` and `.trim`
are effective.
### What does the proposed API look like?
options: {
model: {
prop?: string,// = 'value'
event?: string,// = 'input'
lazy... |
### Version
2.6.11
### Reproduction link
https://codesandbox.io/s/naughty-
shape-p1plw?fontsize=14&hidenavigation=1&theme=dark
### Steps to reproduce
npm install vue-server-renderer
npm audit
### What is expected?
Audit passes
### What is actually happening?
┌───────────... | 0 |
### Describe the bug
XGBRegressors accepts nan values. Which is defined in the tag
`force_all_finite='allow-nan`
But if define
RegressorChain(XGBRegressor())
Then raises the error
File "C:\\lib\site-packages\sklearn\multioutput.py", line 556, in fit
X, Y = self._validate_dat... |
#### Describe the bug
I can't seem to get the `RegressorChain` working with pipelines that include a
`ColumnTransformer`. I posted an issue on StackOverflow with more:
https://stackoverflow.com/questions/68430993/sklearn-using-regressorchain-
with-columntransformer-in-pipelines .
Somewhere in `__init__.py / _get_co... | 1 |
Q | A
---|---
Bug report? | no
Feature request? | yes
BC Break report? | no
RFC? | no
Symfony version | 4.1
What about add constraint on unique elements collection?
I think it will be named as Assert\UniqueCollection.
It is partly linked with #9888
What do you think? I'd be happy to send a PR aft... |
I propose to add the following constraints for validating `Traversable`
instances and arrays:
* `Each`: Validates that each entry satisfies some constraint (replaces `All`, which should be deprecated).
* `Some`: Validates that at least one entry satisfies some constraint. The lower limit (default 1) and upper li... | 1 |
### System information
* **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** :
Yes.
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** :
Linux Ubuntu 16.04.3
* **TensorFlow installed from (source or binary)** :
Binary.
* **TensorFlow version ... |
Please go to Stack Overflow for help and support:
https://stackoverflow.com/questions/tagged/tensorflow
If you open a GitHub issue, here is our policy:
1. It must be a bug, a feature request, or a significant problem with documentation (for small docs fixes please send a PR instead).
2. The form below must be ... | 0 |
Hello, my BatchInserter failed after successfully having imported more than 75
million nodes with this exception:
Exception in thread "main" java.lang.NumberFormatException: For input string: "5870760"
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
... |
I am trying to create relationships between nodes that are distinct. Right
now, I can only return distinct. Is there any way for me to match distinct or
create distinct? For example:
match (p:Player), (n:Games) where p.id = n.id
create (p)-[:has_played]->[n]
There are player nodes with the same id and the query a... | 0 |
For Kotlin projects, Glide currently makes use of KAPT. This is generally
quite slow since it requires generating Java stubs before the annotation
processing step.
KSP offers an alternative to this by making it easier for annotation
processors like Glide to more directly use Kotlin's compiler plugin
infrastructure. ... |
Hi,
I have a multi account app, where each account has its own dagger component,
and a okhttp instance (theyre cloned from the same base instance so they share
threadpools etc). However account specific okhttp client instance has its own
authenticator (reauth is specific per account, as its api url is different)
wh... | 0 |
# 什么时候出汉化版
# When will it be available in Chinese?
|
# Summary of the new feature/enhancement
The windows key shortcut guide UI strings need to be localized.
The application will be localized in the following langauges:
Language | Culture Code
---|---
English | en
German | de
Spanish | es
French | fr
Italian | it
Japanese | ja
Korean | ko
Portugues... | 1 |

Here sum of rows are given as sums of columns and vice versa. Also, I think
`axis=0` should give the value of the sum of the rows since numpy first shows
rows and... |
In this Documention https://numpy.org/devdocs/user/absolute_beginners.html
Sum of rows of an numpy array is denoted by b.sum(axis=0), but the axis should
be equal to 1 for sum of rows and 0 for sum of columns.
pleas refer to the screenshot below from the documentation web page.

{
"presets": ["babel-preset-expo"],
"env": {
... | 1 |
Challenge http://freecodecamp.com/challenges/waypoint-link-to-external-pages-
with-anchor-elements has an issue. Please describe how to reproduce it, and
include links to screenshots if possible.
click the anchor then click the run test button and the instructions bellow
dissepear and you cannot continue to the next... |
Challenge http://www.freecodecamp.com/challenges/waypoint-target-the-same-
element-with-multiple-jquery-selectors has an issue. Please describe how to
reproduce it, and include links to screenshots if possible.
Code below "You shouldn't need to modify code below this line" initially
missing, then once it appears, in... | 1 |
**Migrated issue, originally created by Robert Scott (@ris)**
Using sqlalchemy 1.1.4 with postgresql 9.6.
The result of an `IS NULL` comparison is a boolean and in postgres it is
usable as such - for instance the following works:
db=> SELECT (123 IS NULL) = ('blah' IS NULL);
?column?
------... |
**Migrated issue, originally created by Michael Bayer (@zzzeek)**
e.g.:
--- a/lib/sqlalchemy/sql/operators.py
+++ b/lib/sqlalchemy/sql/operators.py
@@ -1091,18 +1091,19 @@ _PRECEDENCE = {
sub: 7,
concat_op: 6,
- match_op: 6,
- notmatch_op: 6,
-
- ... | 1 |
##### ISSUE TYPE
* Feature Idea
##### COMPONENT NAME
firewalld module
##### ANSIBLE VERSION
ansible 2.3.0 (devel 9f2d8c2409) last updated 2017/01/01 20:16:08 (GMT -600)
config file = /home/lf/.ansible.cfg
configured module search path = Default w/o overrides
##### CONFIGURATION
... |
Just got this error:
TASK: [Launch new EC2 instance] *********************
fatal: [127.0.0.1] => failed to parse: ....
{"msg": "InvalidGroup.NotFound: The security group 'sg-4508022d' does not
exist", "failed": true}
It would be great if either ID or the security group could be used here in the
playbook YAML.
| 0 |
[Enter steps to reproduce below:]
1. ...
2. ...
**Atom Version** : 0.188.0
**System** : Mac OS X 10.10.2
**Thrown From** : Atom Core
### Stack Trace
Uncaught TypeError: Cannot set property 'localAddress' of undefined
At net.js:840
TypeError: Cannot set property 'localAddress' of un... |
Steps to reproduce:
1. Nothing? I left my laptop on for a bit and it eventually went into sleep mode while I did other stuff. Interesting information is at the bottom of this report.
**Atom Version** : 0.177.0
**System** : linux 3.13.0-43-generic (Ubuntu 14.10)
**Thrown From** : Atom Core
### Stack Trace
Un... | 1 |
# Bug report
## Describe the bug
When I add for example 5 files in "pages" folder, and add classic "Link"
routing - it works until I do 1-2 minutes break. After 2 minutes when I try to
use site there work only 2 routes - rest don't react. Hot reload still works
fine, everything works good except this routing. (href... |
# Bug report
## Describe the bug
Either `Link` or `Router` stops working when doing client side routing. It
seems that HMR may be interrupting the transition between pages. It occurs
most frequently if the app is left idle or in the background for a bit of time
(although I have experienced it happening whilst click... | 1 |
I migrated to the latest Blender exporter, had error on my project file which
previously worked. I started a new blender file and found the same error
persists.
To reproduce:
1. create a new blender file
2. create cube
3. apply blender material
4. apply blender texture (point at any image)
5. Export to JS... |
##### Description of the problem
Blender Exporter Fails to produce a .json file and throws an error that could
be improved with clarity
Traceback (most recent call last):
File "/Users/kev/Library/Application Support/Blender/2.78/scripts/addons/io_three/__init__.py", line 812, in execute
... | 1 |
Right now,you need follow code to handle xml content.
CssSelector::disableHtmlExtension();
$xxx=$crawler->filter('response>tradeBase>total_fee')->text();
I think we can detect xml in Crawler,and call
CssSelector::disableHtmlExtension(); in filter when handle xml.
|
... but that's not really possible when using it from BrowserKit as the
Crawler is created directly.
From #8286:
In functional test, since the crawler is instanciated by the de browser kit (which
know the content-type), Can we imagine the browser kit call for us
disableHtmlExtension or enable... | 1 |
The "cd" function doesn't automatically expand tilde to your home directory,
which is somewhat inconvenient, especially for interactive use. Is this an
explicit design decision? We could have "cd" just check if ENV["HOME"] is
defined, and if so substitute it for ~.
julia> cd("~/Desktop")
ERROR: chd... |
@timholy implemented `tilde_expand` (see file.jl) some time ago and it is now
used automatically by a few file-system commands, notably `cd()`. This
concerns me, however, since while it's convenient for some things, it's
inconsistently used, and it violates the treatment of strings as just data.
What if the name of a... | 1 |
Hi,
I have a simple dataframe with a multiindex.
stats.index.names
Out[67]: FrozenList([u'day', u'category'])
day is a time variable, category is a string.
stats.index.inferred_type
Out[69]: 'mixed'
stats.index.dtype_str
Out[68]: 'object'
if I type
... |
I'm running in what seems to be a bug.
I'm using pandas version '0.13.0rc1-29-ga0a527b' from github, python 3.3 on a
linux Mint 15 64 bits.
Here's a minimal example that fails:
import numpy as np
import pandas as pd
index = pd.MultiIndex(levels=[['foo', 'bar', 'baz', 'qux'],
... | 0 |
Where `trait T: U { ... }` , implictly coerce from `&T` to `&U`, etc.
See RFC 401.
Part of #18469
|
In the `std::str` API docs, some Struct descriptions beginn with `///`.

Some of these structs are generated by macros, e.g. `Matches` here.
| 0 |
flutter' app crash met with gomobile package .aar
1. I follow the guidence https://flutter.io/platform-channels/ ... It works; I can see the result in Simulator.
2. I write a simple code in Golang, Gomobile `bind -target=android`, get `.aar` file, put into libs, the app stopped when the call happened. The code ... | 0 | |
### Bug report
**Bug summary**
When calling `matplotlib` on macOS the user is logged out...
**Code for reproduction**
from matplotlib import pyplot as plt
plt.plot()
plt.show()
**Actual outcome**
The user is logged out, the screen turns black for a few seconds and then the
macOS login... |
### Bug report
**Bug summary**
Trying to view a plot made with Python 3.7, Spyder, and IPython with the
Tkinter backend causes a crash and the macOS Mojave login screen appears.
**Code for reproduction**
Any kind of plot will cause the problem.
import numpy as np
import matplotlib.pyplot as plt... | 1 |
any plan to expose typescript parser under Deno namespace?
it would be primitive requirement for making code generator or transformations
if Deno uses swc under the hood it would be great if we get parser under Deno
namespace for development tools;
like
Deno.typescript.parse('const variable = "va... |
Should print to stdout a JSON blob representing the typescript AST.
| 1 |
#### Describe the bug
#### Steps/Code to Reproduce
To duplicate the issue, please refer to attached zip file. In there you will find a copy of Python script and input data set
#### Expected Results
#### Actual Results
#### Versions
scikit-learn --> 0.24.2
numpy --> 1.19.5
scipy --> 1.5.4 ... |
Saw this piece of code when reading the implementation of `VotingClassifier`
if isinstance(y, np.ndarray) and len(y.shape) > 1 and y.shape[1] > 1:
raise NotImplementedError('Multilabel and multi-output' ... | 0 |
### Describe the issue:
Let's consider the following subroutine in a `test.f90` file that declares an
automatic array from two variables(*):
subroutine test (nx, ny, arr)
implicit none
integer, intent(in) :: nx
integer, intent(in) :: ny
integer, dimension(nx*ny) :: ar... |
### Describe the issue:
Let's consider the following subroutine in a `test.f90` file that declares an
automatic array from two variables(*):
subroutine test (nx, ny, arr)
implicit none
integer, intent(in) :: nx
integer, intent(in) :: ny
integer, dimension(nx*ny) :: ar... | 1 |
Hi,
While buildling pandas 0.20.3 on Debian I had 3 timezone handling related test
failures.
I also get the 3 errors when running the tests in a virtualenv with 0.20.3
installed via pip
The error tracebacks:
================================================= FAILURES =================================... |
see for example: http://stackoverflow.com/questions/9556892/pandas-dataframe-
desired-index-has-duplicate-values
| 0 |
In Julia Master (and 1.6)
julia> f(x) = (T=eltype(x); mapreduce(v->T(v), +, x))
julia> @code_warntype f([3,4,5])
MethodInstance for f(::Vector{Int64})
from f(x) in Main at REPL[2]:1
Arguments
#self#::Core.Const(f)
x::Vector{Int64}
Locals
#3::var"#3#4"{DataType}
... |
function foo(a::AbstractVector)
T = eltype(a)
b = Vector{T}()
c = [Set{T}() for x in a]
return length(c)
end
a = rand(1:10, 200);
`@code_warntype` shows an inference failure in `b` and `c`.
Changing to `c = Set{T}[Set{T}() for x in a]` fixes `c`'s infer... | 1 |
This 3x regression from Julia 1.2 to Julia 1.3 / 1.5 on the simplest random
walk simulation is not good:
function walk(T)
x = 0
for i in 1:T
if rand() < 0.5
x += 1
else
x -= 1
end
end
... |
Default RNGs in threads slowdown performance in Julia 1.3.
Here is my environment:
> julia> versioninfo(verbose=true)
> Julia Version 1.3.0
> Commit `46ce4d7` (2019-11-26 06:09 UTC)
> Platform Info:
> OS: Windows (x86_64-w64-mingw32)
> Microsoft Windows [Version 10.0.18362.535]
> CPU: Intel(R) Cor... | 1 |
Sublime Text has an option to match case when doing find and replace (so find
"foo" and replace "bar" would change "foo" to "bar", "FOO" to "BAR" and "Foo"
to "Bar"). Does Atom offer this?
|
When you search for abc (case insensitive) and want to replace it with xyz, it
should match on Abc and replace it with Xyz. This is a feature that I found
useful in sublime.
| 1 |
Hi! After last update i Can't use my PowerToys. When I open the application I
see the menu for 1 second and afer that all the window became white with
anyting inside...
I try to Uninstal and instal last version, i try to uninstal anda instal .NET
core but nothing change...
Help!
http://prntscr.com/snh2lq
|
# Environment
Windows build number: Microsoft Windows [Version 10.0.18363.836]
PowerToys version: 0.18
# Steps to reproduce
* Right click on the tray icon
* Select Settings
# Expected behavior
Settings windows appears and allows me to make changes
# Actual behavior
The windows appear... | 1 |
_Original tickethttp://projects.scipy.org/numpy/ticket/628 on 2007-12-09 by
trac user behrisch, assigned to @cournape._
The attached code shows the very same behavior as #1225, although I can
confirm that it works with numpy 1.0.3 on the same machine with te same Python
distribution. I used the binary packages from ... |
Minor, but:
`numpy.histogram` deprecates the `normed` parameter and introduces a new
`density` parameter. `numpy.histogram2d` should use the same interface.
Currently, I don't have the time to fix this...
| 0 |
I have somehow managed to install the Distributions package without having any
trace of it on my system. I'm on v0.3.8. For example,
julia> using Distributions # works
julia> Pkg.status()
2 required packages:
- CPUTime 0.0.4
- MAT 0... |
it works fine if the package is in .julia/v0.x, but if it is somewhere else
then it claims there is no `test/runtests.jl` even if my `LOAD_PATH` is set
such that i can `using` it. i know that the recommended dev cycle is to keep
packages in .julia, but would it make sense to make Pkg.test() work otherwise?
| 1 |
Hi
getting weird lines on different font sizes, fontFace changes does not help.
Seeing this on all light backgrounds, not vim only.
Thx
Martin

|
# Environment
Windows build number: 10.0.18362.207
Windows Terminal version (if applicable): 0.2.1831.0, Windows Store Build
Any other software?
.Net Core SDK 3.0.100-preview6-012264
Powershell Core 6.2.1
# Steps to reproduce
0. The crash reproduces on both cmd and PSCore.... | 0 |
**Elasticsearch version** :
5.0 RC1
**Plugins installed** : []
discovery-ec2
repository-s3
Using the docker image on ArchLinux
**Description of the problem including expected versus actual behavior** :
discovery ec2 is not working with IAM role, following is the error I see
[2016-10-22T07:... |
**Elasticsearch version** : 5.0.0 (`e02a480`)
**Plugins installed** : `discovery-ec2`
I tested with elasticsearch 2.4 and 5.0.
I can confirm the regression in 5.0. It works fine with 2.4.
The problem is that even with all traces on, it's hard to understand what is
happening. My guess is that the security manag... | 1 |
**Do you want to request a _feature_ or report a _bug_?**
I want to request a feature
**What is the current behavior?**
Using `Symbols` as element keys throws a type error.
**If the current behavior is a bug, please provide the steps to reproduce and
if possible a minimal demo of the problem. Your bug will get fi... |
* * *
## Please do not remove the text below this line
DevTools version: 4.0.2-2bcc6c6
Call stack: at d (chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:5744)
at e.getCommitTree (chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:8526)
at Ai (chrome-
extension://fmkadma... | 0 |
## I tried to install caffe2 by following this link
"https://caffe2.ai/docs/getting-
started.html?platform=ubuntu&configuration=compile "
Every step was sucesfully compiled , but unfortunately while compiling the
last command
** **sudo make install**
I am getting the following ### output/error :
Scanning dependen... |
**### Installation guide followed -**
https://caffe2.ai/docs/getting-
started.html?platform=ubuntu&configuration=compile
### **Error Output**
Scanning dependencies of target python_copy_files
[ 72%] Built target python_copy_files
[ 72%] Building NVCC (Device) object
caffe2/CMakeFiles/caffe2_gpu.dir/sgd/caffe... | 1 |
imshow() ignores or misinterprets the `aspect` kwarg when
`interpolation='none'`. The bug appears only in svg output, does not seem to
be a problem in pdf or png output. The minimal code to reproduce the bug is
below:
import numpy as np
import matplotlib
matplotlib.use('SVG')
import matplot... |
### Bug report
import matplotlib.pyplot as plt
import matplotlib.gridspec as gridspec
fig = plt.figure()
gs = gridspec.GridSpec(2, 1)
ax1 = fig.add_subplot(gs[0])
ax2 = fig.add_subplot(gs[1], sharex=ax1)
ax1.set_xticklabels('')
plt.show()
makes the ticklabels on `... | 0 |
Would be great if I could exclude paths when using the Find In Files form. For
instance, I would like to exclude `log/` and `index.js` while searching the
rest of my project. Is this possible? If not, I think it would be a great
addition!
|
When searching, filters can be specified. However, there's no way to exclude
paths from the search.
E.g.: `*.js, -*.min.js` cannot be used to exclude minified files from a search
of JS
| 1 |
Deno doesn't support `require` but there is one thing where `require` wins
against ES6 imports:
In Node.js we can do
delete require.cache[require.resolve(somePath)];
and delete required file from cache to load it again after it get changed in
runtime. With imports we can't do like this. Even if we us... |
I'm writing code using dynamic module import for dynamically generated code
(tool like node-dev). In Deno, once module imported dynamically, they will be
never updated while process running. Are there some way to invalidate module
cache? In node.js, required module can be deleted.
Deno.writeTextFileSyn... | 1 |
## Feature request
**What is the expected behavior?**
When handling images with 'asset/resource' using server-side rendering, we do
not want the image file to be emitted, but we do want the image URL to be
populated in the HTML in the server bundle. The client bundle can emit the
image file.
With file-loader one ... |
I'm having problems with my bundle creation script that uses webpack. The
process prints out "Killed" and exits, which indicates that its getting killed
by the linux out of memory killer. I'm also seeing this unhelpful error:
buffer.js:194
this.parent = new SlowBuffer(this.length);
... | 0 |
Reproduce:
* open a file
* edit a file
* close tab (`Ctrl-F4` on Windows)
* press `N`
The "Save / Cancel / Don't save" dialog should respond to key-presses of `Y`
and `N` since it's conceptially posing for a Yes/No/Cancel dialog. Perhaps `S`
and `D` if you disagree, but if there's no way to control this dia... |
(this is possibly windows only, tested with 0.113.0)
**Steps To Reproduce**
* Open Atom
* Type something into a new editor or change an existing file (doesn't matter which)
* Attempt to close the tab (for example `Ctrl+W`)
* Correctly, a dialogue opens, that will give you a choice how to proceed
![close-di... | 1 |
Could be related to #1520 / #1634 / #2830
* VSCode Version: 1.1.0
* OS Version: Windows 8.1 Pro
Steps to reproduce:
1. Create new/edit existing SQL file.
2. Enter a string with a backslash as the last character before the terminating single quote.
3. Syntax highlighting thinks the terminating quote is es... |
* VSCode Version: 0.10.11
* OS Version: Windows 7 Professional
Steps to Reproduce:
I have a \ character defined as a string in an update query. The Syntax
highlighting is incorrectly escaping the following ' and displaying the rest
of the script as a string. I am using UTF-8 Encoding with SQL as the language.
B... | 1 |
This is a weird one. I've tested this with both the client cookie and doctrine
provider and the outcome is the same.
I've implemented "Remember Me" login functionality for our application.
I also have an AuthenticationListener implemented which updates the 'User'
entity with a 'lastLogin' DateTime:
... |
**Symfony version(s) affected** : 4.2
**Description**
After clicking `Settings` in the profiler menu
Uncaught TypeError: Cannot set property 'checked' of null
cc @javiereguiluz
| 0 |
Was: rust-lang/prev.rust-lang.org#89, from @gnzlbg, submitted January 19th
2015.
* * *
Hi,
I just tried rust for the first time. From the description of the language, I
decided to try a dynamic array first, since in my head this is the most
important data structure in a low level language (e.g., for cache
performa... |
Recent changes landed that broke Rust on Mac OS 10.9 (Mavericks) and above,
see #17214
The problem is that the linker is being passed an argument that works for
`gcc`, but that `clang` rejects. (Mac OS moved wholesale to `clang` in 10.9,
it appears.)
Unfortunately, this breakage wasn't caught by bors. Apparently th... | 0 |
### System info
* Playwright Version: v1.33.0
* Operating System: macOS 12.6.5
* Browser: All
* Other info: Node 16.13.0, React 18.2
### Source code
* I provided exact source code that allows reproducing the issue locally.
**Config file**
import { defineConfig, devices } from '@playwright... |
### System info
* Playwright Version: [v1.32.3]
* Operating System: [All]
* Other info: GitLab pipeline
### Source code
For importing the results from my GitLab pipeline I use the extended Junit
reporter which was fine so far.
All tests do have an test_key annotation with an already existing Test-Issue
in ... | 0 |
**Describe the bug**
There is a problem with the EffectComposer in combination with a multisampled
rendertargets.
This combination produce artefacts when two or more passes like RenderPass or
TexturePass are enabled.
**To Reproduce**
Steps to reproduce the behavior:
1. Use a Revision after following commit: ... |
Somehow mostof my EffectComposers, which use WebGLMultisampleRenderTargets,
have become broken with v135.
NOTE: this problem only occurs on windows. On my mac it is fine.
You can see from the picture that things are pixelated. It seems to me that
some render target isn't being cleared, whether it's color or depth I... | 1 |
Hi,
Related to #277, I'd like to create an overlapping model but with the input
comes from different place. Is it supported? How can I do this? The following
code gives me an error because of the unexpected input.
left = Sequential()
left.add(Dense(784, 50))
left.add(Activation('relu'))
... |
Please make sure that the boxes below are checked before you submit your
issue.
If your issue is an **implementation question** , please ask your question on
StackOverflow or on the Keras Slack channel instead of opening a GitHub issue.
Thank you!
* [ 1] Check that you are up-to-date with the master branch of K... | 0 |
Hi,
I installed Visual Studio Community 2013 and Typescript 1.4. When I changed
all my enums to const enum (btw, very nice feature, thanks!) I noticed that
compile-on-save feature doesn't handle this feature well.
When I use those const enums in other file than the one it was defined in then
when I save file, they... |
* have two external modules (a.ts which defines and exports an enum, b.ts which uses the enum)
* emit the JS code for b.ts
* emit the JS code for a.ts and notice that the enum reference is inlined (`console.log(0 /*A*/);`)
* change a.ts and emit only that file again
* => now the enum is _not_ inlined anymor... | 1 |
use std::num::Float;
struct Point {x: f64, y: f64}
fn compute_distance(p1: &Point, p2: &Point) -> f64 {
let x_d = p1.x - p2.x;
let y_d = p1.y - p2.y;
Float::sqrt(x_d * x_d + y_d * y_d)
}
fn main() {
let on_the_stack : Point = Point {x: 3.0, y... |
### STR
// seq.rs
use std::collections::HashMap;
use std::hash::Hash;
pub trait Seq<T> {
#[cfg(ice)]
fn add_elem(&mut self, T);
#[cfg(not(ice))]
fn add_elem(&mut Self, T);
fn new() -> Self;
}
impl<K, V> Seq<(K, V)> for Hash... | 1 |
I am a windows user with two windows monitors. I tend to have shortcuts on my
desktop ordered in a way unique to me. There are times that I either
accidentally sort my icons, or Windows mess up when my monitor goes to sleep,
and they all move around.
My father is a software engineer who wrote me a small application ... |
It would be great to have a tool to save AND restore the location of all
shortcut icons on the desktop.
For some reason with single monitor, or multiple monitors with different
resolutions, different zoom/font size/icon size and spacing/etc. The location
of these icons is reset and you're left with all icons Auto-Ar... | 1 |
_Original tickethttp://projects.scipy.org/numpy/ticket/1985 on 2011-11-22 by
trac user gsiisg, assigned to unknown._
I notice that when I plot two variables, the x and y axis are flipped
according to the online example, so I did a simple distribution of points
x=np.array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1])
y=np... |
_Original tickethttp://projects.scipy.org/numpy/ticket/1830 on 2011-05-14 by
@samtygier, assigned to @pv._
the matplotlib example in
http://docs.scipy.org/doc/numpy/reference/generated/numpy.histogram2d.html
plots the data with the axis the wrong way. i think this is mostly the fault
of imshow working in backwards ... | 1 |
Currently the scripting API allows to return arbitrary objects. This is an
issue for search scripts because they might be called billions of times in a
single search request and missing information about the return type makes
things harder to optimize.
So we could look into specializing the search script API so that... |
I get 'T'/'F' and also 't' terms for a boolean field, leading to problems when
filtering on the field. The below gist reproduces this:-
https://gist.github.com/4284891
This is on elasticsearch 0.20.1, a quick check on 0.19.10 and I can't
reproduce this.
| 0 |
Version: 1.0.0
OS Version: Microsoft Windows NT 10.0.18363.0
IntPtr Length: 8
x64: True
Date: 08/06/2020 20:22:56
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 |
PT threw and error and crashed. Trying to launch again, it threw a "PT Run got
an error" box with some info and suggested creating a new ticket here. I have
uploaded the requested document to this ticket as well.
Exception message:
Version: 1.0.0
OS Version: Microsoft Windows NT 10.0.19041.0
IntPtr Length: 8 ... |
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 |
e.g. http://t_rost.rosfirm.ru/ is valid URL
https://github.com/symfony/Validator/blob/0a118a6e885937378d41b97b152ecec2058c89dc/Constraints/UrlValidator.php#L29
|
Url validator accept as valid an url like the following:
http://testsub+domanin.domanin.com:8080/test
but does not accept
http://test_sub_domanin.domanin.com:8080/test
The problem seems to be here:
symfony / src / Symfony / Component / Validator / Constraints /
UrlValidator.php
Line 28: ([\pL\pN\pS-]+.)+[\p... | 1 |
There are several issues currently with the mailing list on librelist:
1. The website (http://librelist.com/) is currently down. This might be transient, or this might be because the service has been slowly decaying over the last months.
2. The synchro to http://flask.pocoo.org/mailinglist/archive/ is broken sin... |
Typing issue between `mypy` _0.960_ (and all prior versions I tested) and
`Flask` _2.1.2_. Not sure whether the issue is in mypy or Flask, but I guess
it has something to do with the later.
# file test.py
from flask import Flask, Response
app = Flask("hello")
def nope(res: Response) ->... | 0 |
I just upgraded to `next@6.0.0`, I use a custom server, when I try to `run
dev`, I get an error.
npm run dev
> frontend-next@1.0.0 dev /Users/foo/gitlab/next-project/backend
> babel-node ./src/server.js
/Users/foo/gitlab/next-project/backend/node_modules/babel-core/lib/transformat... |
Can Next.js emit split chunks for server side code? Does this provide any
meaningful boost to the build speed?
We need to measure and test this theory.
| 0 |
I was thinking about recommending Atom to a friend, and I went to the
https://atom.io/ to see if there were Windows builds. The site saw I was on
Linux, showed me the .deb and .rpm links, and a link for "Other platforms".
That page contained this text:
> Prebuilt versions of Atom are available for OS X 10.8 or later... |
Atom version: 0.189.0
Operating system: Linux Mint 17 Cinnamon 64-bit
Installed from the .deb package.
After using the editor for a while (~10 minutes) the moment I press the middle
mouse button (to paste some text into editor) the whole editor crashes. The
issue does not appear if I just open a new window and s... | 0 |
### Bug summary
This possible bug seems to be related to some incompatibility between the
“extend” argument in “plt.figure.colorbar” and “.ax.invert_yaxis()” functions.
More specifically, if I just extend the max of colorbar (second figure) or
just invert the y-axis of the colorbar, everything work fine. However, if... |
### Bug summary
The "over value" and the "under value" of colormap are not correctly shown
when using ax.invert_yaxis (invert_xaxis if the colorbar is horizontal)
function.
### Code for reproduction
import numpy as np
import matplotlib.pyplot as plt
im=plt.imshow(np.arange(10000).reshape(100,... | 1 |
This code snippet causes a link failure. I am guessing it is because the
return type of foo is not publicly exported from the crate it is causing a
link failure in the test.
I tried this (reduced) code:
lib.rs
mod helper {
pub struct Foo;
impl Foo {
pub fn baz(&self) { }
... |
// foo.rs
pub use foo::Bar;
pub fn test() -> Bar<i32> {
loop {}
}
mod foo {
pub type Bar<T> = Result<T, Baz>;
pub struct Baz;
impl Baz {
pub fn foo(&self) {}
}
}
// bar.rs
extern crate foo;
... | 1 |
# Summary of the new feature/enhancement
I would like to be able to bind PowerToys Run to windows key + f.
# Description of the new feature/enhancement
I would like this because ctrl F is most other ' normal' searches. The windows
system wide equivalent should be able to be bound to windows key + f in my
opinion.
... |
# Summary of the new feature/enhancement
When editing a FanzyZones layout, it would be handy to also see the pixel
dimensions of each zone (perhaps just below the zone number).
# Proposed technical implementation details (optional)
| 0 |
@crutkas (PS I miss you) :-)
# Environment
Windows build number: 10.0.19588.1000
PowerToys version: 0.14.1.0
PowerToy module for which you are reporting the bug (if applicable): FancyZones
# Steps to reproduce
1. Under FancyZones settings, make sure "Override Winows Snap Hotkeys is NO... |
## 📝 Provide a description of the new feature
_What is the expected behavior of the proposed feature? What is the scenario
this would be used?_
* * *
If you'd like to see this feature implemented, add a 👍 reaction to this post.
| 0 |
### Current Behavior:
When a dependency is specified as dev dependency and as optional peer
dependency, it is not installed.
### Expected Behavior:
I expect all dev dependencies to be installed.
### Steps To Reproduce:
luigi@ubuntu:~/ws$ node -v
v15.0.1
luigi@ubuntu:~/ws$ npm -v
7.0.3
... |
### Current Behavior:
When a dependency is specified as a `devDependency` **and** as a
`peerDependency`, it is not installed. I tested it with npm@7.0.2, everything
worked well with npm < 7.
### Expected Behavior:
I expect that all dev dependencies should be installed.
### Steps To Reproduce:
I created a very sm... | 1 |
Shouldn't there be a white-space between inline DOM elements separated by a
line break [1]?
I think this example describes the situation pretty well:
http://jsfiddle.net/bstst/kb3gN/2847/
Right now the workarounds are pretty ugly -- either CSS (don't get me
started!) or manual white-space inside the inline elements... |
### Website or app
google.com
### Repro steps
This started after last update 4.20.0


... | 0 |
### First Check
* I added a very descriptive title to this issue.
* I used the GitHub search to find a similar issue and didn't find it.
* I searched the FastAPI documentation, with the integrated search.
* I already searched in Google "How to X in FastAPI" and didn't find any information.
* I already read... |
### First Check
* I added a very descriptive title to this issue.
* I used the GitHub search to find a similar issue and didn't find it.
* I searched the FastAPI documentation, with the integrated search.
* I already searched in Google "How to X in FastAPI" and didn't find any information.
* I already read... | 0 |
## 📝 Provide a description of the new feature
I want a feature that helps me to resize my window to specific size given by
user input ( 1024x724 or 1280x720).
_What is the expected behavior of the proposed feature? What is the scenario
this would be used?_
This feature will help me to resize my window to whatever... |
# Summary of the new feature/enhancement
Sizing of custom zones in editor by dragging mouse is a little bit coarse (hit
and miss) in terms of getting close to edges of screen symmetrically and
allowing window edges of multiple zones to line up neatly. Some possible
solutions are suggested for consideration.
# Propo... | 1 |
### Bug report
**Bug summary**
This was working until recently. Started failing all of the sudden after a
Windows 10 update.
**Code for reproduction**
import matplotlib.pyplot as plt
plt.ion()
fig = plt.figure('test')
**Actual outcome**
Traceback (most recent call last):... |
I have an animated graph using `FuncAnimation`. I call tight_layout() on
resize to fix the layout:
fig.canvas.mpl_connect('resize_event', lambda *x: plt.tight_layout())
Mostly resizing the window works fine. Sometimes this leads to an exception:
Traceback (most recent call last):
... | 1 |
### Bug report
**Bug summary**
After setting scale to `'log'` the default limits can cut off datapoints
depending on the order of plotting.
Note: calling `set_xscale`/`set_yscale` before calling `scatter` does not
reproduce this bug.
**Code for reproduction**
import numpy as np
import matplotli... |
As mentioned in this SE question a scatter plot is not autoscaling to include
all of the data if `plt.yscale('log')` is used after `plt.scatter()`. This
happens for the y-axis but not the x-axis in the example, and does not happen
for `plt.plot()`.
In an earlier answer by a developer, `ax.set_yscale('log')` is shown... | 1 |
* [X ] 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.
* I ... |
Under high load we encountered duplicate job execution, as well as
`WorkerLostError: Worker exited prematurely: exitcode 155` exceptions.
We use `--max-memory-per-child` which leads to workers recycling (exit code
155) between jobs, and sometime the last job seems to be re-executed, as if
the MainProcess didn't get ... | 0 |
This is a hypothetical but I couldn't find a good answer to it and thought
might ask it here. Let's say my project requires `foo@0.0.2` and `bar@0.0.1`.
In the meantime, `bar` requires `foo@0.0.1`. Which version of `foo` would be
loaded by webpack? Would both versions be loaded? What can I do to prevent
both versions... |
# Bug report
**What is the current behavior?**
Our webpack build produces 15 chunks (3 initial `manifest`, `main`, `vendor`
\+ the rest are dynamic chunks via `import()` or `require.ensure()`).
I wanted to experiment with split chunks
(https://webpack.js.org/plugins/split-chunks-plugin/#splitchunks-chunks) -- as
e... | 0 |
We started getting this deprecation warning but I don't know what to do with
it. Is there somewhere in your documentation that would explain this more?
Thanks! Example log:
https://github.com/astropy/astropy/runs/6838665326?check_suite_focus=true
matplotlib._api.deprecation.MatplotlibDeprecationWarning... |
Original report at SourceForge, opened Tue Nov 9 15:40:14 2010
The "pip" installation tool uses this URL to find the correct version of the
matplotlib package:
http://pypi.python.org/simple/matplotlib/
matplotlib 1.0.0 appears on that page, but pip selects the very old 0.91.1
release for installation instead.
I... | 0 |
So I cloned from the repo and cover 4 files, it works fine now :)
|
When using a customized version of Bootstrap 3.0 the Glyph icons don't work.
The font file sizes differ from the "normal" version.
| 1 |
### Bug summary
The image added in the text bbox is not saved with savefig if setting a bbox.
savefig without option do save the image
### Code for reproduction
def GrabTextWithImage():
fig = plt.figure()
plt.subplot(111)
#Display Text
txt = plt.gcf().t... |
### Bug summary
figimage() is producing inconsistent results.
It appears a transform is sometimes applied to the image and sometimes not.
### Code for reproduction
from matplotlib import pyplot
plt = pyplot
import numpy as np
fig = pyplot.figure()
ax = fig.subplots()
... | 1 |
### Bug summary
`FigureCanvasQTAgg.__init__(self, mpl_fig.Figure())` gives `TypeError:
FuncAnimation.__init__() missing 2 required positional arguments: 'fig' and
'func'`. Was working in matplotlib 3.5.2. Same Problem appears by using
FigureCanvas.
### Code for reproduction
import matplotlib.figure a... |
### Bug summary
Hi 👋🏼
When using the recently released PySide 6.5.0 with matplotlib 3.7.1 and python
3.10, an error is raised at FuncAnimation initialization that doesn't happen
with the same code on previous PySide versions.
### Code for reproduction
import sys
from PySide6.QtCore impor... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.