text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
If you use setSource on a SearchRequestBuilder and then call to string the
SearchRequest will appear to be cleared.
SearchRequestBuilder srb = client().prepareSearch().setSource("{\"query\":\"match\":{\"foo\":\"bar\"}}");
srb.execute().get();
Will execute the correct search, however
... |
Using the Java API, If one sets the content of a search request through
`SearchRequestBuilder#setSource` methods and then calls `toString` to see the
result, not only the content of the request is not returned as it wasn't set
through `sourceBuilder()`, the content of the request gets also reset due to
the `internalB... | 1 |
When mapping a object, TS can't retain the keys accessor.
Following example uses lodash _.mapValues, which maps a object.
var newUsers = _.mapValues({
'fred': { 'user': 'fred', 'age': 40 },
'pebbles': { 'user': 'pebbles', 'age': 1 }
}, function(o) { return o.age; }); // -> _.Dict... |
## Motivations
A lot of JavaScript library/framework/pattern involve computation based on the
property name of an object. For example Backbone model, functional
transformation `pluck`, ImmutableJS are all based on such mechanism.
//backbone
var Contact = Backbone.Model.extend({})
var contact =... | 1 |
% deno
Deno 1.18.0
exit using ctrl+d or close()
> "😂"[0]
Uncaught "Unterminated string literal"
I suggest printing the escaped value, `"\uD83D"`, like Chromium.
|
At the moment Deno.args is `string[]`, but doesn't work like an array:
> Deno.args.pop()
Uncaught TypeError: Cannot assign to read only property 'length' of object '[object Array]'
at Array.pop (<anonymous>)
at <anonymous>:2:11
> Deno.args[0] = 'x'
Uncaught TypeError: Cannot... | 0 |
### Apache Airflow version
2.1.2
### Operating System
Official docker image
### Versions of Apache Airflow Providers
_No response_
### Deployment
Official Apache Airflow Helm Chart
### Deployment details
Originally had airflow 2.0.2 installed via 3rd party helm chart (running
external postgres db). I uninsta... |
**Apache Airflow version** : 1.7.1.2
Ticket was created 11/Jul/16 16:06
**Kubernetes version (if you are using kubernetes)** (use `kubectl version`):
**Environment** :
* **Cloud provider or hardware configuration** :
* **OS** (e.g. from /etc/os-release):
* **Kernel** (e.g. `uname -a`):
* **Install tools**... | 0 |
We need something like ReplicationController that runs RestartOnFailure and
RestartNever pods "to completion", collects results, etc
|
**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.):
... | 0 |
Is this a bug (note the different dtypes of the output)?
In [1]: np.array([1, 2, 3], dtype=str)
Out[1]:
array(['1', '2', '3'],
dtype='|S1')
In [2]: np.array([1, 2, 3]).astype(str)
Out[2]:
array(['1', '2', '3'],
dtype='|S24')
This behavior is new to... |
I came across something that might be a bug in the numpy unique function. Here
is an example.
In my case, a is a numpy array holding indices referring to pairwise equal
elements in two other vectors (not shown). It could for instance be:
a=np.array([[1,2],[3,4],[1,2],[5,6,7]])
In this case, element 1 and 2 are pai... | 0 |
*** THIS IS A DUPLICATE BUG REPORT ***
I am submitting it because the last one has had "please reopen" for a year but
I don't think it's being picked up somehow.
*** ORIGINAL REPORT ***
#14593
*** ACTUAL REPORT ***
##### Issue Type:
Bug Report
##### COMPONENT NAME
ec2 module
##### ANSIBLE VERSION
ansible 2.... |
##### Issue Type: Bug Report
##### Ansible Version:
ansible 1.6.6 linux (centos 6.5)
ansible 1.6.10 OpenBSD 5.5 (on OpenBSD tested also on ansible 1.6.6. Used
newer ansible release to show it still happens)
##### Environment:
* ansible is run local to the server in each instances
* host: Centos 6.5 and Open... | 0 |
**Barry Lagerweij** opened **SPR-323** and commented
EJB's that depend on other beans cannot use Dependency Injection. Instead,
they must use code like
ProductDAO dao = super.getBeanFactory().getBean("ProductDAO");
It would be a huge improvement if EJB's could have something like:
ProductDAO getProductDAO () { re... |
**Bubba Puryear** opened **SPR-1432** and commented
The FreeMarkerConfigurer class cleverly adds a ClassTemplateLoader in it's
postProcessConfiguration() callback. While it is certainly possible for
developers to subclass this class and "do the same trick" to add their own
ClassTemplateLoaders, this seems like over... | 0 |
Hi,
Please add RTL languages support for bootstrap by default.
Best Regard.
|
I'm not speaking any RTL languages, but since I'm working on a project
supporting RTL, I was wondering if form-groups shouldn't align the icon inside
a input to the left-side. Maybe a native speaker of an RTL can share their
thoughts on this.
| 1 |
Under firefox 7, the models js library sometimes doesn't clear backdrop
properly when rapidly left mouse click on launch model button. I can reproduce
it on the bootstrap demo site too.
I'm reporting issue first and will look into it tonight.
|
this.$backdrop is sometimes undefined when calling a modal without a backdrop.
This throws an error, because the method this.$backdrop.remove() cannot be
called.
| 0 |
**Carl Harris** opened **SPR-7911** and commented
Some REST web services return 204 No Content as the result for a GET in
certain circumstances. With this status, the response has no entity body and
thus no Content-Type header.
RestTemplate.getForEntity throws an exception when receiving such a response:
org.spri... |
**Stepan Koltsov** opened **SPR-7979** and commented
Have simple configuration:
public abstract class Aaaaa { }
public class Bbbbb extends Aaaaa { }
`@Configuration`
`@ComponentScan`(
basePackages="com.mycompany",
useDefaultFilters=false,
includeFilters={
`@ComponentScan`.Filter(type=FilterType.ASSIGNA... | 0 |
In other IDEs I used to simple copy a line break and paste it to the find text
box. Then I could replace it with some other string.
I tried to do it with regex find using "\n" or "\r" and I had no luck either.
This is very helpful when creating db queries or csv files on the fly by
replacing line breaks with string... |
The Find dialog (Ctrl+F) does not allow multi-line finds using the `\n`
character as it currently considers each line individually. See
`TextModel._doFindMatches`
_Created out of a discussion in#278_
| 1 |
**Migrated issue, originally created by Patrick Rusk**
(This problem was noted in comments in zzzeek/sqlalchemy@`3fa38a1` but not
followed up on.)
The `sqlalchemy.orm.Query()` class takes an `entities` parameter defined to be
"a sequence of entities and/or SQL expressions", but it used to actual accept
a single SQ... |
**Migrated issue, originally created by Charles-Axel Dein (@charlax)**
I'm upgrading a codebase to sqlalchemy 1.0.0beta5 from 0.9.9.
It seems that version 1 removed the ability to be forgiving about mentioning a
join twice:
session.query(Toaster).join(Toast).join(Toast).all()
This will raise w... | 0 |
* VSCode Version: 0.10.11
* OS Version: Windows 10
How can I setting open file in new tab when I select it from folder/file tree
just like sublime text?(not replaced opened tab.)
I can't find where to config this.
Could anybody help me please?
Thx!
|
I _really_ miss proper tabs for open files (like VS proper), and the ability
to rip a tab out into its own window.
| 1 |
When trying to upload the wheels to pypi, I get this error:
$ twine upload --verbose dist/*
Uploading distributions to https://upload.pypi.org/legacy/
Uploading scikit_learn-0.22rc1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
... |
I found a mistake in the `plot_oneclass.py` example for the one-class SVM.
The code generates 20 test samples `X = 0.3 * np.random.randn(20, 2)` and then
generates two copies shifted over `X_test = np.r_[X + 2, X - 2]`.
This results in a total of 40 test samples, however in the plotting section of
the file, it says... | 0 |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: xxx
* Operating System version: xxx
* Java version: xxx
### Steps to reproduce this issue
1. ... |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.5.3
* Operating System version: xxx
* Java version: 1.7
Dubbo admin同步zookeeper服务延迟比较长,请问这是什么原因... | 0 |
## Environment info
* `transformers` version: master (4.4.0dev0)
* Platform: Google colab
* Python version: 3.7
* PyTorch version (GPU?): None
* Tensorflow version (GPU?): 2.4
* Using GPU in script?: Yes
* Using distributed or parallel set-up in script?: No
### Who can help
@jplu
## Information
Mod... |
### Feature request
Our request a simpler and more convenient inference process for a speech
recognition model based on MMS just like wav2vec 2.0 in Transformers.
### Motivation
We aim to encapsulate the various subroutines called by Facebook’s official
model into a direct speech recognition model that is as easy ... | 0 |
We are currently using Jest for running playwright test cases. So this code is
working perfectly fine for us:
import { runCLI } from "jest";
const { results } = await runCLI(
{
$0: "",
config: jestConfigPath,
...options,
_: testNamePatterns... |
We're currently using jest as a test runner for testing angular applications
using playwright. In the angular ecosystem tools usually integrate with the
`@angular/cli` by providing a builder, so our `@ngx-playwright/jest` package
is actually what powers the `ng e2e` command in our repositories.
It would be great if ... | 1 |
Hi all,
I seeing sometimes failed Kafka indexing tasks, the task log look quite empty
(~180 lines) - ends with this -
2018-02-05T03:32:28,045 INFO [main] io.druid.guice.JsonConfigurator - Loaded class[class io.druid.query.search.search.SearchQueryConfig] from props[druid.query.search.] as [io.druid.qu... |
**Steps to reproduce:**
1. Create a kafka indexer
2. Create a kafka lookup
3. Wait for a kafka index task to start
4. Emulate a `/stop` request sent from supervisor to worker, e.g. via
http post localhost:8100/druid/worker/v1/chat/index_kafka_Example_c2f17f3de1b02c1_fmcaakbh/stop
**Expe... | 0 |
**matthew inger** opened **SPR-834** and commented
The LocalSessionFactory bean currently has no way to set listeners on the
SessionFactory (via the Configuration.setListener) method. This should as
simple as accepting a map as a property of the LocalSessionFactoryBean, and
when building the Configuration object, i... |
**Chris Beams** opened **SPR-8114** and commented
When using Spring's `FactoryBean` types such as `LocalSessionFactoryBean`
destruction of the actual bean (the Hibernate `Session` in the case of `LSFB`)
is usually handled automatically by the `FactoryBean`.
However, when using Spring's new `*Builder` APIs within `@... | 0 |
# Environment
Windows build number: 19041.329
PowerToys version: v0.18.2
PowerToy module for which you are reporting the bug (if applicable): PowerToys Run
# Steps to reproduce
1. Open PowerToys.
2. Make sure _PowerToys Run_ is enabled.
3. Restart PowerToys.
4. Look carefully at ... |
## 📝 Provide a description of the new feature
I´m using a set of monitors physically at work(2x 35''), and a different setup
of monitors at home (2x27").
I have different fanzyzones layout for the two, but when moving from one
location to the other, I must rearrange all apps to the zones. Fanyzones will
not autom... | 0 |
There is
Try looking at the lastLetterOfLastName variable declaration if you get stuck.
but should be
Try looking at the lastLetterOfFirstName variable declaration if you get
stuck.
|
Challenge http://www.freecodecamp.com/challenges/waypoint-use-bracket-
notation-to-find-the-last-character-in-a-string has an issue. Please describe
how to reproduce it, and include links to screenshots if possible.
Try looking at the lastLetterOfLastName variable declaration if you get stuck.
should bt
Try lookin... | 1 |
I'm currently using **babelify** to transform my source code + global shimming
**babel-core/browser-polyfill.js** through a vendor file.
I noticed redefinitions of _createClass [et al] and the docs mentioned to use
`{ optional: 'runtime' }`, but this has the unfortunate side effect of also
including **regenerator/co... |
As far as I can tell the `runtime` transform is all-or-nothing, all I'm
interested in is getting rid of the redundant helpers inlined into every
module, but it seems I can't have that without also the "risk" of getting
dependencies on the other runtimes (notably `core-js`).
Have I missed something or would it not ma... | 1 |
**marc schipperheyn** opened **SPR-9538** and commented
When you Cache a Collection of elements, you are caching the entire collection
as an entry.
The underlying elements can also be part of other `@Cacheable` entries,
leading to duplicates and unnecessary memory consumption. Let's take the
scenario of a Facebook... |
**Martin Vanek** opened **SPR-9000** and commented
In xml configuration I often use bean with parent="true" to set default values
in parent context and multiple nonabstract beans in several child contexts
with mandatory but always different dependency.
Because abstract bean concept is missing in `@Bean` code confi... | 0 |
Continuing conversation started here: https://discuss.elastic.co/t/coerce-
object-to-string/56748/3
**Description of the problem including expected versus actual behavior** :
Would like to be able to treat an object field as String given the following
mapping:
"properties": {
... |
**Describe the feature** :
There are cases where complex objects need to be passed to tokenizers. I am
writing a new feature that will allow a mapping to specify that a property of
type string may coerce an object within that property to a string.
PUT /test
{
"mappings": {
"test":... | 1 |
One limitation of the functional approach is discoverability: which functions
can be applied to a given type? This is not necessary however: We (should)
know all the functions which take an object of given type as first argument.
This leads to the possibility of code completion:
abstract type Animal en... |
Since Julia is struct oriented, this could be a nice way make the language
more ergonomic for methods
https://en.wikipedia.org/wiki/Uniform_Function_Call_Syntax
Assume
struct Blah
...
end
foo(b::Blah,i::Int32)
...
end
b = Blah(..)
In addition to this synt... | 1 |
Recently, I've been developing fast permutation tests that can make use of
numpy/scipy matrix operations.
So far, I have developed 3 permutation tests: a mean test, a t-test and a
pearson correlation test.
To get an idea for the timings, I've benchmarked the mean test to a naive
implementation on a 60x60 table and ... |
Apparently these two functions do exactly the same but there are no links
between them in the documentation. Is there a reason to keep the two? If so,
perhaps it's worth adding to the docs.
https://github.com/scipy/scipy/blob/master/scipy/linalg/decomp_lu.py#L17
| 0 |
I'm opening this to discuss possible options:
I've been scrutinizing ES indexing performance on the NYC taxi data set (1.2 B
taxi rides, numerics heavy:
http://www.nyc.gov/html/tlc/html/about/trip_record_data.shtml).
These documents are small (24 fields, though a bit sparse with ~23% cells
missing) and are almost e... |
the node level TTL Purger thread fires up bulk delete request that might
trigger `auto_create_index` if the purger thread runs a bulk after the index
has been deleted.
| 0 |
##### ISSUE TYPE
* Bug Report
##### ANSIBLE VERSION
All recent releases
##### CONFIGURATION
N/A
##### OS / ENVIRONMENT
Ubuntu 16.04 4.4.0-24
##### SUMMARY
An error prevents from building the debian package from git sources.
##### STEPS TO REPRODUCE
release_number=$(your call)
... |
ansible_sudo=True/False
in inventory.
[krb5]
localhost
s8webera ansible_ssh_user=root ansible_sudo=False ansible_python_interpreter=/usr/bin/python2.7
This is important on mixed environment where some system dont have sudo
installed.
Here is a current working solution that im using in ... | 0 |
* Electron version: 1.2.5
* Operating system: Mac OS X el capitan
When sending IPC messages between the renderer and the main process, I think
we sometimes get duplicate messages.
What kind of reliability is ensured by Electron? Should we handle de-
duplication ourselves in the case of the same messages being r... |
After creating a notification and passing a tag, then subsequent notifications
with the same tag don't show up for the entire lifespan of the app.
* Electron version: 1.8.1
* Operating system: Windows 7 x64
### Expected behavior
New notifications should open after the last one has closed.
### Actual behavior
... | 0 |
We have a library of components for angular that we are currently migrating to
Angular 2. We have a container that injects content using `ng-content`. We
would like to have a child component that injects the parent if you nest it
inside of the parent, like so:
<parent>
<child></child>
</par... |
According to the docs, making a directive that listens for events on the host
element is like so:
@Directive({
selector: 'input',
hostListeners: {
'change': 'onChange($event)',
'window:resize': 'onResize($event)'
}
})
class InputDirective {
onChange(event... | 0 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
modules/cloud/google/gce.py
##### ANSIBLE VERSION
ansible 2.0.1.0
config file =
configured module search path = Default w/o overrides
##### CONFIGURATION
Python 2.7.10 from virtualenv and using apache-libcloud==1.5.0
##### OS... |
Documentation of the `copy` module suggests in the example that _owner_ ,
_group_ , and _mode_ can be specified, even though these options aren't
explicitly mentioned.
Looking through the source of `library/copy` suggests they aren't supported.
I feel they ought to be.
| 0 |
java.lang.NullPointerException
1at android.graphics.Rect.<init>(Rect.java:72)
2at android.graphics.drawable.ShapeDrawable.mutate(ShapeDrawable.java:377)
3at android.widget.ImageView.applyColorMod(ImageView.java:1033)
4at android.widget.ImageView.updateDrawable(ImageView.java:611)
5at ... |
If an ImageView has something that has its (internal) `mColorMod` field set to
true (i.e. there is an alpha or color filter set - see
`ImageView.applyColorMod()`), then when Glide updates the image view providing
the `TransitionDrawable` (the current drawable + `SquaringDrawable`), the
image view attempts to mutate i... | 1 |
**I'm submitting a ...** (check one with "x")
[ ] bug report
[x] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
**Current behavior**
Currently there is no equivalent t... |
This issue is related to the new-new router:
**I'm submitting a ...** (check one with "x")
[ ] bug report
[x] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
**Current be... | 1 |
I found a bug with the responsive behavior of the nav-justified element, on
chrome.
When browser window is scaled down, the menu changes as it should, eventually
turning into a vertical menu. but when window is scaled back up, it doesn't go
back to the way it should be. When repeated, the problem increases.
check ... |
The justified nav example (http://getbootstrap.com/examples/justified-nav)
collapses perfectly when the screen is narrowed, but when the screen is
expanded it get wonky.
 **Issue byunicomp21**
_Sunday Oct 04, 2015 at 09:59 GMT_
_Originally opened ashttps://github.com/flutter/engine/issues/1482_
* * *
Do we have ES 3.0?
| 1 | |
### Apache Airflow version
2.3.3
### What happened
I have multiple dags running regularly. Dags fail randomly for no reason. When
I look at the grid view, one task is in skipped state due to dag timeout. But
that task did not get executed during the entire period until timeout.
This happens randomly to any dag, t... |
### Apache Airflow version
2.2.2
### What happened
We are using celery executor with Redis as broker.
We are using default settings for celery.
We are trying to test below case.
* What happens when Redis or Worker Pod goes down?
Observations:
* We tried killing Redis Pod when one task was in `queued` st... | 1 |
From working on #7819 (comment), here's a case where having both `bounds` and
`constraints` enabled leads to bizarre behavior that violates both. I don't
know where the actual problem is. Yellow dots are the local minima found
during each step. Blue is an (exclusion) constraint, and red is out of bounds:
**Neither:*... |
`scipy.optimize.basinhopping` fails when constraints are specified, returning
a result that violates the constraints, even though the minimizer can easily
find the solution that fits the constraints.
### Reproducing code example:
import numpy as np
import matplotlib.pyplot as plt
from scipy im... | 1 |
# Brief Summary
Celery 5.x is going to support Python 3.x only, and it might be appropriate to
drop billiard and use multiprocessing from python 3 directly, as billiard is
fork of multiprocessing module. It would a lot less code to maintain.
|
distex is a completely asynchronous process pool.
Given that Celery 5.0 will use the asyncio event loop as a core component an
asynchronous process pool is crucial for us if the project were to succeed.
| 1 |
The code in question
If here is no attr('data-target'), it tries to get selector from href. which
caused warning in firefox 23:
Empty string can't be argument for getElementById();
because some elements that function is fired for have href="#" .
I think it should be correct to make the check li... |
I am Using Firefox 22.
Reproduce:
* Open http://getbootstrap.com/components/
* The error is visible in the console when clicking anywhere in the page but a dropdown menu.
I could track down the error to the `clearMenus` call, which in turn calls
`getParents` where the error finally happens.
In `getParents` th... | 1 |
As pointed out by @dsm054, there are multiple lurking split/partition API
requests. Here are the issues and a short summary of what they would do (there
are some duplicates here, I've checked off those issues/PRs that have been
closed in favor of a related issue):
* #414: (i think) original issue for these ideas g... |
#### Code Sample, a copy-pastable example if possible
cols = ['15:00:00', '15:01:00', '15:02:00', '15:02:30']
cols_td = pd.to_timedelta(cols)
df = pd.DataFrame(0, index=range(4), columns=cols_td)
vw1 = df.loc[:, :cols[-2]]
vw2 = df.loc[:, :cols_td[-2]]
print(vw1)
print... | 0 |
Hi,
When adding new functions to object prototype, `this` could be hard-typed in
below scenario:
interface Array<T> {
first(): T;
}
Array.prototype.first = function() {
return this.length > 0 ? this[0] : undefined;
}
`this` is of type `any`, why it can't be of type `Array... |
**TypeScript Version:**
1.8.9
**Code**
export class Configuration {
private storage: string;
constructor() {
this.storage = "InMemoryStorageProvider()";
}
public useLocalStorage(): void {
// This method will be injected via the protot... | 1 |
Was it possible? App Engine and AWS Lambda?
|
Is it possible to deploy a next.js web app to AWS Lambda & API Gateway? (using
claudia for example)
| 1 |
Hi,
my task is: `make the first run of X as fast as the second run`.
It seems quite difficult to achieve.
The situation is, that I'm covering all code I want to execute (over
runtests.jl), so in theory it should be straight forward to infer what to
compile.
What I've tried:
1. Including runtests.jl into use... |
At this point it makes sense to separate `julia` into an interactive `julia`
which runs scripts and starts the REPL and `julia-compile` which provides
various bootstrapping and compilation features. The basic usage of `julia-
compile` should be `julia-compile program.jl` which should produce an
executable called `pro... | 1 |
_Please make sure that this is a bug. As per ourGitHub Policy, we only
address code/doc bugs, performance issues, feature requests and
build/installation issues on GitHub. tag:bug_template_
**System information**
* OS Platform and Distribution (e.g., Linux Ubuntu 16.04): mac OS Mojave
* TensorFlow installed fr... |
### System information
* **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : Yes, I have created two CNN models
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Linux Ubuntu 16.04
* **TensorFlow installed from (source or binary)** : I installed te... | 0 |
Challenge Change the Color of Text has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
<h2>CatPhotoApp</h2>... |
Challenge Change the Color of Text has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
<h2>CatPhotoApp</h2>... | 1 |
The following code:
subroutine s(n, a)
integer :: n, a(1:2**n)
end
causes f2py to crash with:
> /tmp/tmprxk_Ew/src.linux-x86_64-2.7/f2py_bugmodule.c: In function
> ‘f2py_rout_f2py_bug_s’:
> /tmp/tmprxk_Ew/src.linux-x86_64-2.7/f2py_bugmodule.c:217:15: error: invalid
> type argument o... |
When I constructed an array named `list` in fortran, like code shown below:
subroutine blah(list, n)
integer, intent(in) :: n
real, intent(out) :: list(2*n,0:2**n)
list = 1.0
end subroutine
I encountered the following error, which seems to treat exponentiation as ... | 1 |
fn main() {
let foo: &mut [u8] = &mut [1,2,3];
foo as *mut [u8] as *mut u8;
}
error: internal compiler error: translating unsupported cast: *mut [u8] (cast_other) -> *mut u8 (cast_pointer)
note: the compiler hit an unexpected failure path. this is a bug.
note: we... |
The following code ICEs:
fn main() {
let r : &[int] = &[1,2,3];
let _ = r as *const [int] as uint;
}
with the following error:
error: internal compiler error: translating unsupported cast: *const [int] (cast_other) -> uint (cast_integral)
note: the compiler hit an unexpe... | 1 |
#### Code Sample
Create an Enum as described in the Python docs, then create a dataframe and
try to set multiindex:
from enum import Enum
import pandas as pd
class Method(Enum):
LINEAR = 1
CONSTANT= 2
df = pd.DataFrame(data={"a":[Method.LINEAR, Method.CONSTANT... |
#### Code Sample, a copy-pastable example if possible
import pandas as pd
from enum import Enum
MyEnum = Enum("MyEnum", "A B")
df = pd.DataFrame(columns=pd.MultiIndex.from_product(iterables=[MyEnum, [1, 2]])) # TypeError: 'values' is not ordered, please explicitly specify the cat... | 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
... | 0 |
**Context:**
* Playwright Version: 1.22.2
* Operating System: Windows 10 21H2 & macOS Monterey
* Node.js version: v16.14.0
* Browser: Chromium
* Extra: [any specific details about your environment]
## Windows 10 System:
* OS: Windows 10 10.0.19044
* Memory: 10.86 GB / 31.71 GB
## Windows 10 Binaries... |
It would be helpful include the SHA256 sum of the browsers that are
downloaded. That would allow the checking to ensure that the proper binary was
downloaded as expected.
Additionally, this would aid in integration with other tools that may have
download caches to prevent duplicated downloads.
| 0 |
The specific error occurs in this commit on my bugfix fork of conrod.
An FnMut is created, boxed, and passed to a function that takes a
Box<FnMut(bool) + 'a>. The closure modifies its environment:
conrod/examples/all_widgets.rs:318:36: 318:97 error: internal compiler error: aliasability violation with... |
rustc --version --verbose:
rustc 1.0.0-nightly (f4f10dba2 2015-01-17 20:31:08 +0000)
binary: rustc
commit-hash: f4f10dba2975b51c2d2c92157018db3ac13d4d4a
commit-date: 2015-01-17 20:31:08 +0000
host: x86_64-pc-windows-gnu
release: 1.0.0-nightly
Backtrace: (the offending line 111... | 1 |
##### System information (version)
* OpenCV => 3.4.7 / 4.1.1
* Operating System / Platform => Ubuntu 18.04 x86_64
* Compiler => gcc 8.3 / gcc 9.1
##### Detailed description
OpenCV fails to build when Eigen is imported as a CMake target and precompiled
header are ON.
When Eigen is imported as a CMake target ... |
##### System information (version)
* OpenCV => 4.1.1
* Operating System / Platform => Linux Debian 9
* Compiler => GCC 6.3.0
##### Detailed description
I encountered an error with #include <Eigen/core> when building OpenCV 4.1.1
even though Eigen is installed on the system and is found by cmake.
`[ 1%] Buil... | 1 |
### Describe the issue:
Suppose we have an array whose total size is zero (product of `shape[i]` is
zero) but the `shape != (0,)`. Below, I'm making one by slicing a non-empty
array.
>>> array = np.array([[1, 2, 3], [4, 5, 6]])
>>> array
array([[1, 2, 3],
[4, 5, 6]])
>>> array.t... |
### Reproducing code example:
Empty arrays repr like `array([], shape=(0, 0), dtype=float64)`, but this is
not actually valid because `shape` cannot be passed to the array constructor:
>>> from numpy import *
>>> empty((0, 0))
array([], shape=(0, 0), dtype=float64)
>>> array([], shape=(0, ... | 1 |
As we talk about parallel computing in various contexts, it might be handy to
keep in mind
all the high level moving parts. Here are some that come to mind, just to get
the ball rolling.
Hardware
* Shared Memory Machines (Threads: See #1790, #1802)
* Distributed Memory (especially networks of shared memory) (... |
@mlubin This is what I propose for lufact!
1. Create a new type - SparseMatrixCSCZeroIndexing
2. Avoid the copy in lufact!, and simply use S all along
3. Make S of type SparseMatrixCSCZeroIndexing, so that it doesn't mess up the printing of the Factorization object
Even in the lufact() we can then use this ne... | 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.0.6
### What opera... |
* Output of `node_modules/.bin/electron --version`: 3.0.0-beta.11 && 3.0.0-beta.12
* Operating System (Platform and Version): macOS High Sierra Version 10.13.6 and Windows 10
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): 3.0.0-beta.10
**Expected Beha... | 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
15.1.0
### What opera... |
### 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
15.1.0 / and all 16.0.... | 1 |
#### When value_counts on different list value, it's ok:
ser1 = pd.Series([[1], [2], [2]])
ser1.value_counts()
[2] 2
[1] 1
dtype: int64
#### But, when value_counts on unique list value, it's failed:
ser2 = pd.Series([[1], [1], [1]])
ser2.value_counts()
... |
#### Code Sample, a copy-pastable example if possible
import pandas as pd
df = pd.DataFrame({'foo': [1.0001] * 5 + [0.]*5})
df
| foo
---|---
0 | 1.0001
1 | 1.0001
2 | 1.0001
3 | 1.0001
4 | 1.0001
5 | 0.0000
6 | 0.0000
7 | 0.0000
8 | 0.0000
9 | 0.0000 ... | 0 |
The change to `utils/template.py` introduced in #5059 swallows errors about
variable lookups. This causes unexpected issues later on. In my case a file is
unexpectedly empty without an error.
I think AnsibleErrors should be passed on like this::
def lookup(name, *args, **kwargs):
from ansible ... |
##### Issue Type:
Bug Report
##### Ansible Version:
ansible 1.7 (devel `a6a1e24`) last updated 2014/05/12 10:59:56 (GMT -400)
This happens in 1.6 as well.
##### Environment:
OSX 10.9.2
##### Summary:
Errors in templates are not propagated when using the template lookup plugin,
which returns an empty string in... | 1 |
`Promise<Derived>` is assignable to `Promise<Base>` (good), but
`Promise<Base>` is also assignable to `Promise<Derived>` (bad - should require
a cast)
This weakens type checking, especially since it's so easy to accidentally
create `Promise<{}>` which is assignable to any other `Promise`:
function f()... |
var as: ArrayLike<number | string> = <ArrayLike<string>>null;
var an: ArrayLike<number> = <ArrayLike<number | string>>as; // detect incompatibility
var ps: PromiseLike<number | string> = <PromiseLike<string>>null;
var pn: PromiseLike<number> = <PromiseLike<number | string>>ps; // cannot ... | 1 |
Hi,
I used VS Code since it launched, one of the feature i loved so much is the
intellisense while adding a file using require when coding for node js.
After the latest update (Version: 0.10.8, Shell: 0.35.6) require intellisense
is not working at all, it always says 'No suggestions'
Can someone help me to get th... |
One of the features that I really liked with vscode was the folder path
intellisense inside require('path') while doing NodeJs development. Now I just
see a list of global variables. I don't use the new salsa, and I'm targeting
ES5.
Something that might be worth mentioning is that the intellisense of the
required mo... | 1 |
ProvidePlugin can only be used for default exports, the example in the doc is
jQuery.
new webpack.ProvidePlugin({
$: "jquery"
})
However if you're using libraries with named exports, like `preact` you're out
of luck
Hello world with preact:
import { h, render } from 'preact... |
I think it will be suitable to provide version of expression to ProvidePlugin
to import PROPERTY of module
For example:
new webpack.ProvidePlugin({
'variable': ["npm-module","variable"]
})
in this case it is resolved as require("npm-module")["variable"]
**We... | 1 |
### Summary of the new feature/enhancement
In Windows Snap, when unsnapping the window, it returns to its previous size.
Would like the same feature (maybe as an option) for zones when exiting a
zone.
|
# Summary of the new feature/enhancement
User has a Surface PRO and Surface Dock for work. Often attends meetings and
thus takes the Surface PRO with them. This means disconnecting and
reconnecting to monitor(s) many times per day. Currently this requires moving
windows back to desired position with every reconnect.... | 0 |
I have post the issue to tensorflow,and they suggest I post the issue here.
|
I have post the issue to tensorflow,and they suggest I post the issue here.
I'm using MacBook Air with M1 chip. OS version is Big Sur 11.4.
`which python`
`/Users/dmitry/Applications/Miniforge3/bin/python`
I run the following code using tensorflow-macos and tensorflow_macos,
respectively.
`import tensorflow ... | 1 |
Using and example code from http://www.html5rocks.com/ in the body of my
index.html. Don't show the bubble when i click the button (the input change
the focus and the border glow but don't show the bubble).
<form>
<input type="text" required value="" />
<input type="submit" value="Submi... |
Atom shell currently does not support HTML5 form validation notifications --
client side form validation is supported and you cannot submit invalid form
entries, however, there is no visual cue or notification for invalid entries
as there is in most browsers (see image below).
Is support for this planned?
 using the
`KUBERNETES_PROVIDER=ubuntu ./kube-up.sh` command. It started normally.
Then I tried to start the Heapster on the "cluster":
wicked@w:~/docker/kubernetes $ kubectl create -f cluster/addons/cluster-monitoring/... |
heapster is not able to connect to kube-apimaster in case of self signed
certificate and there is no way to provide ca.crt file as parameter no disable
ssl check.
I'm using:
I0720 10:50:47.268679 1 heapster.go:52] /heapster --source=kubernetes:'' --sink=influxdb:http://monitoring-influxdb:8086 ... | 1 |
Make sure these boxes are checked before submitting your issue - thank you!
* I have checked the superset logs for python stacktraces and included it here as text if any
* I have reproduced the issue with at least the latest released version of superset
* I have checked the issue tracker for the same issue and... |
Make sure these boxes are checked before submitting your issue - thank you!
* I have checked the superset logs for python stacktraces and included it here as text if any
* I have reproduced the issue with at least the latest released version of superset
* I have checked the issue tracker for the same issue and... | 1 |
In order to support understanding (rare, but possible) SEGFAULT, OOM, etc, in
AOT Dart code we will likely to want to support symbol generation for
gen_snapshot, etc.
I don't know what the contract is for AOT dart code (is it supposed to be able
to crash this way?) but it seems like this may be useful?
@a-siva may ... |
This request comes from customer:fast. They're getting crash logs from their
production app (via package:logging) but no line numbers in --release builds.
If possible, they would like line numbers.
Possible? @a-siva @zanderso?
| 1 |
# Summary of the new feature/enhancement
Add an option to enter a custom window resolution in the FancyZones editor.
So users _(who use FancyZones for resizing windows)_ can add their preferred
zone resolution Like (1024x576) or (1080x720) _in a Text-box for example._
# Proposed technical implementation details (o... |
# 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 |
NOTE: Only file GitHub issues for bugs and feature requests. All other topics
will be closed.
For general support from the community, see StackOverflow.
To make bugs and feature requests more easy to find and organize, we close
issues that are deemed
out of scope for GitHub Issues and point people to StackOverfl... |
I am not able to install CUDA 8.0 with Xcode 8.0 version. Everywhere i found
the solution to downgrade the version of Xcode. Is there any other solution
without downgrading the version of Xcode.
| 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
Visiting material-ui.com on the stock/default android browser running android
5.0.2 the drawer shouldn't be stuck open.
## Current Behavior
The drawer is stuck open. The rest of the page is clickable/s... |
Hi!
I am trying to override styles for BottomNavigationButton. Specifically the
label. This is my code.
const styles = {
selected: {
color: "#353535"
},
label: {
color: "#e2e2e2",
},
};
class CustomBottomNavButton extends React.... | 0 |
Use of wavelets is rapidly increasing for many applications in denoising,
image compression, edge-detection, etc, it makes sense for OpenCV to add
support. It should be every bit as useful as Fourier/spectral transforms,
given that many applications involve the three processes above.
|
Transferred from http://code.opencv.org/issues/2923
|| Ajay Viswanathan on 2013-03-26 20:48
|| Priority: Normal
|| Affected: None
|| Category: imgproc, video
|| Tracker: Feature
|| Difficulty: None
|| PR:
|| Platform: None / None
## Discrete wavelet transform
... | 1 |
#### Summary
In Vue3 / TypeScript project,
import { AxiosError } from 'axios';
Build shows warning:
Non-existent export 'AxiosError' is imported from node_modules/axios/index.js
Although there is only a build warning, any component (Vue) or TypeScript (ts)
that includes this import fails to work.
Browser con... |
#### Describe the bug
`AxiosHeaders`, `AxiosError`, `CanceledError` and `Axios` are "exported" in
the type definitions `index.d.ts`, but not exported in the module.
#### To Reproduce
const { AxiosHeaders } = require('axios'); // Allowed by Typescript
const headers = new AxiosHeaders({ 'name... | 1 |
Here is the sample illustrating the bug :
http://jsfiddle.net/mzQnF/
(just left-click to begin the camera animation)
The scene is composed of an half sphere illuminated with two point lights, red
and blue.
A symmetry with the xy plane has been applied to the half sphere.
The sphere's normals are not inverted a... |
Three.js at present includes a Shape/Text triangulation which was easy to
implement but also needed several add-ons, eg. to decide between contours and
holes and to remove those holes, and it had quite some issues concerning:
* holes in polygons ( #3386: Holes in contours causes triangulation failure (partial solu... | 0 |
### System info
* Playwright Version: v1.24.2
* Node version: 18.12.1
* Operating System: windows server 2019
* Browser: Chromium
### Issue
The download event is not triggered when I am using the machine to reach some
internal site. If I open the chromium.exe manually, I can download the file
with the same... |
Playwright trace is very helpful in debugging, it shows the dom snapshots as
well.
But if my locator has issues, I'd like to have the capability of using query
engine on the dom snapshot in https://trace.playwright.dev/ (on the same
browser instance where https://trace.playwright.dev/ is running)
it will save time... | 0 |
`torch::pickle_save` and `torch::pickle_load` have no docs, maybe
`torch::save/load` should also be deprecated since they are more limited
|
These APIs aren't going anywhere as far as I know, but they have no
descriptions or usage instructions
They have some documentation here but that's nowhere on the website:
https://github.com/pytorch/pytorch/blob/master/torch/csrc/jit/serialization/pickle.h
And some usages are in the tests but aren't very user-dis... | 1 |
When accessing multiple fields of a structured array, numpy fails to verify
that all the fields exist. Instead, it will only return existing fields. If
none exist, it return a strange object that has a dtype that is empty.
Normally, creating an object with an empty dtype is not supposed to be
possible (`zeros(shape=(... |
When accessing multiple records with `arr[["field0", "field1",…]]`, using a
non-existing field is silent:
>>> arr = numpy.array([(1, 2, 10), (3, 4, 10)], dtype=[('x', int), ('y', int), ("z", int)])
>>> arr[["lkjlkj"]]
array([(), ()],
dtype='{'names':[], 'formats':[], 'offsets':[], 'i... | 1 |
### Preflight Checklist
* I have read the Contributing Guidelines for this project.
* I agree to follow the Code of Conduct that this project adheres to.
* I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 9.... |
In relation to the following issue:-
#8386
I can confirm that I am still experiencing the thead rendering issue when
printing to PDF using win.webContents.printToPDF() despite the fact that I am
using electron 1.8.4 and it having been stated this was rectified in 1.6 in
the above issue. The following work around r... | 0 |
cf #2706
|
#### Code Sample, a copy-pastable example if possible
# Your code here
df = pandas.DataFrame({'a': [1, 10, 8, 11, -1],
'b': [1.0, 2.0, 3.0, 3.0, 4.0]})
df.nlargest(3, 'b')
Result:
a b
4 -1 4.0
2 8 3.0
3 11 3.0
2 8 3.0
3 11 3.0
#### Problem ... | 0 |
Although I followed instruction, it still shows error notification about
syntax?

|
This issue is to track Syntax error popping up in the challenges.
| 1 |
**Current behavior**
I have component with class bindings which look like:
<foo class="class1 {{classFromProp1}}" [class.foo-class]="classFromProp2">
classFromProp2= true
when resizing screen classFromProp1 changes and foo-class gets lost.
this behavior works as expected if I use [ngClass]="{'foo-class':
clas... |
**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 |
Hello,
I am using seaborn 0.11.2 trying to plot some partial correlations using
`regplot`. I have a dataframe for all of my data (x,y, and covariates), and a
list of columne names (e.g. `covars=["Covar1","Covar2"..."CovarN"]`) that I
want to pass into the `y_partial` argument. If I type I only pass in one name
into ... |
I'm plotting interaction effects with regplot. I want to take into account two
confounding variables.
The documentation of regplot indicates the possibility of passing a list of
string for x_partial.
{x, y}_partial : matrix or string(s) , optional
Matrix with same first dimension as `x`, or column name(s) in `d... | 1 |
First time opening the menu you can see 8 links clearly, but if you close the
menu and open it again, all the links disappear.
,new Integer( 434)));
generate( object1,method1,new Integer( 110 ),new Integer( 403)));
It was pity to catch it on production...
* * *
**Affects:... |
**Bozhidar Bozhanov** opened **SPR-9036** and commented
org.springframework.cache.interceptor.DefaultKeyGenerator is implemented by
calculating the hashcode of all arguments. This is problematic in many cases:
* methods with similar signature - foo(int, String), foo(int, List) - if the 2nd argument is null they ... | 1 |
Trying to create a numpy array from ctypes and ran into a problem which seems
to be because of the _pack_ attribute in ctypes. Anyone seen this before?
import sys
import ctypes
import numpy as np
print(sys.version)
print(ctypes.__version__)
print(np.__version__)
clas... |
This seems like a bug inherited from ctypes, so maybe we need a workaround:
Start off with a very simple struct:
class foo(ctypes.Structure):
_fields_ = [('a', ctypes.c_uint8), ('b', ctypes.c_uint32)]
f = foo()
We'd expect this to insert padding, and it does:
>>> memoryview... | 1 |
Currently, the `sum` function use the element type (except for the boolean
case) of the input array as result type. This is sometimes not a desirable
choice:
function mysum(R, x)
s = zero(R)
for v in x; s += v; end
return s
end
julia> x = uint8(rand(1:10, 50));
... |
Both the spec for Github Flavoured Markdown and CommonMark state:
> A line break (not in a code span or HTML tag) that is preceded by two or
> more spaces and does not occur at the end of a block is parsed as a hard
> line break (rendered in HTML as a
> tag):
But if you write such code in Julia, that new line is... | 0 |
Challenge Waypoint: Add Borders Around your Elements has an issue.
User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.

| 0 |
Hi,
I am in the process of migrating our codebase to React 0.14.x. During this I
encountered a problem, because of the fact that our client side uses
`React.renderToStaticMarkup` to render React components and passing the
results around as strings (I know, not ideal, but given what our codebase was
previously, this ... |
We have some corner cases within our client-side application which requires
`React.renderToString` functionality. In 0.14, this has been deprecated in
favor of `ReactDOMServer.renderToString`. Unfortunately, the bower
distribution does not include a way to reference `ReactDOMServer`.
| 1 |
interface Promise<T> {
then<U>(cb: (x: T) => Promise<U>): Promise<U>;
}
// Consider both orderings of the following overloads
declare function testFunction(n: number): Promise<number>;
declare function testFunction(s: string): Promise<string>;
var numPromise: Promise... |
interface Opts { url: string; }
declare function doit(url: string): number;
declare function doit(opts: Opts): boolean;
declare function call<T, U>(fn: (arg: T) => U, arg: T): U;
var n: number = call(doit, 'here');
var b: boolean = call(doit, { url: 'here' });
In 1.4.1... | 1 |
# Environment
Platform ServicePack Version VersionString
-------- ----------- ------- -------------
Win32NT 10.0.18995.0 Microsoft Windows NT 10.0.18995.0
Windows Terminal version (if applicable): nightly build from Oct 3
Any other software?
# Step... |
# Environment
Windows build number: Version 10.0.18362.239
Windows Terminal version (if applicable): 0.3.2142.0
Any other software?
WSL, Ubuntu 1804 from Windows Store
# Steps to reproduce
* Have WSL setup already
* Install Ubuntu 18.04 from windows store
* Have the follo... | 0 |
* I tried using the `@types/xxxx` package and had problems.
* I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript
* I have a question that is inappropriate for StackOverflow. (Please ask any appropriate questions there).
* Mention the authors (see `Definitions by:` in `ind... |
If you know how to fix the issue, make a pull request instead.
* I tried using the `@types/express` package and had problems.
* I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript
* I have a question that is inappropriate for StackOverflow. (Please ask any appropriate quest... | 1 |
When doing some math works in pandas, the rolling function is very useful,
such as pd.rolling().mean() or
pd.rolling().max().
Here is my problem: when I want to get a time-series rank in a Series or a
column in DataFrame, there is no function like pd.rolling().rank(). Is there
any function can work as pd.rolling(... |
xref SO issue here
Im looking to set the rolling rank on a dataframe. Having posted, discussed
and analysed the code it looks like the suggested way would be to use the
pandas Series.rank function as an argument in rolling_apply. However on large
datasets the performance is particularly poor. I have tried different
... | 1 |
While testing the class_weight parameter in several estimators to investigate
#1411, I noticed that the parameter doesn't work as I would expect in
RidgeClassifier either.
Maybe this is some misunderstanding on my part or some regularization issue,
but if I have noisy labels, I would have expected to be be able to ... |
When using the `sklearn.decomposition.PCA` class with `n_components='mle'`
when svd_solver='auto' the following line will attempt to evaluate
`n_components` as a numeric type. An additional safety check is necessary.
# Error
---------------------------------------------------------------------------
... | 0 |
I get this crash in the release version of the app and I can't find the cause
since the stack trace apparently doesn't help this much
E/flutter ( 7686): [ERROR:topaz/lib/tonic/logging/dart_error.cc(16)] Unhandled exception:
E/flutter ( 7686): TFA Error: #lib5::WebApiClient::loginWithEmailAndPas... |
## Steps to Reproduce
(dart2) $ flutter run --release
Initializing gradle... 0.8s
Resolving dependencies... 1.5s
Launching lib/main.dart on Pixel XL in release mode...
Running 'gradlew assembleRelease'... ... | 1 |
### Version
2.4.2
### Reproduction link
https://jsfiddle.net/1madr5ze/
Although putting it into `data` works: https://jsfiddle.net/t1t4teeo/
### Steps to reproduce
Declare a prop for the root application instance.
Pass the prop to the `<div>` that represents the root of the app.
### What is expected?
The r... |
### Version
2.5.17
### Reproduction link
https://jsfiddle.net/eywraw8t/319255/
### Steps to reproduce
1. generate an input field with a dynamic type
2. open project in IE10
3. open console
### What is expected?
Working radio / checkboxes
### What is actually happening?
JS error in IE10
SCRIPT1046: Mu... | 0 |
To help us understand and resolve your issue please check that you have
provided
the information below.
* Matplotlib version, Python version and Platform (Windows, OSX, Linux ...)
osx, linux. Matloplib version 1.5.3. Python version 3.5.2
* How did you install Matplotlib and Python (pip, anaconda, from sourc... |
Dear developers,
when plotting single points surrounded by np.nan values, points are shown in a
regular plot, but are omitted when saved via pdf backend. Minimal example:
import numpy as np
import matplotlib.pyplot as plt
a = np.array([1,np.nan,2,np.nan,3,3.5,4])
plt.plot(a, mar... | 1 |
From 2020.20.04 9pm msi
Description: A .NET Core application failed.
Application: PowerLauncher.exe
Path: C:\Program Files\PowerToys\modules\launcher\PowerLauncher.exe
Message: Error:
An assembly specified in the application dependencies manifest
(PowerLauncher.deps.json) was not found:
package: 'PropertyC... |
From 2020.20.04 9pm msi
Description: A .NET Core application failed.
Application: PowerLauncher.exe
Path: C:\Program Files\PowerToys\modules\launcher\PowerLauncher.exe
Message: Error:
An assembly specified in the application dependencies manifest
(PowerLauncher.deps.json) was not found:
package: 'PropertyC... | 1 |
#### Code Sample
df = Dataframe(numpy.zeros(10000,10000))
random_fill_df(df, num_elements=20)
df = df.to_sparse(fill_value=0)
timeit.timeit('df.loc[[23, 45, 65, 67],:]', globals=globals(), number=10)
#### Problem description
The reason why row slicing takes so long is because a sparse dat... |
In [1]: import pandas as pd
In [2]: df = pd.DataFrame([[1, 0, 0],[0,0,0]])
# non sparse
In [19]: %time df.loc[0]
CPU times: user 367 µs, sys: 14 µs, total: 381 µs
Wall time: 374 µs
Out[19]:
0 1
1 0
2 0
Name: 0, dtype: int64
In [20]: %tim... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.