text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
The expected behavior (like other browser behave) is
* Reloading does not creates history items
* redirects does not creates history items
In atom shell:
<webview id="foo" src="http://www.github.com/" style="width:640px; height:480px"></webview>
<script>
var webview = document.getElem... |
When atom-shell is initially loaded `window.history.back()` works correctly
doing nothing. After a refresh, problems arise calling
`window.history.back()`. It appears that history for a `BrowserWindow` is not
persisted across a refresh as is the case in the Chrome browser and other
issues come into play.
So steps to... | 1 |
Now that universal Webpack (#3578) is released, there's a great opportunity to
streamline custom servers using Next. Having the ability to write in a
consistent syntax (whether ES6+ or TypeScript) between client and server code
would greatly benefit the developer experience. I find it sort of awkward that
a custom se... |
# Examples bug report
## Example name
with-next-css
## Describe the bug
Impossible to go from one page which doesn't contain an imported css file to a
one containing an imported css file
## To Reproduce
Steps to reproduce the behavior, please provide code snippets or a repository:
https://github.com/MarchWo... | 0 |
# Environment
Windows build number: 10.0.18363
PowerToys version: 0.18.0
PowerToy module for which you are reporting the bug (if applicable): PowerToys Run
# Steps to reproduce
1. Open PT Run
2. Type an application name
# Expected behavior
Only correct and working result were shown... |
Hi all
For some reason Launcher duplicates items on the list. It shows the
application in the search list but also it duplicates that same application by
showing .lnk file from the menu start folder for the same app. Please see the
screenshot below:
 [G... |
I have this in my task file:
- name: Check if we already have an openvpn key file
stat: "path='/etc/openvpn/{{ vpn_domain }}.conf'"
register: openvpn_config
- include: "openvpn-genkey.yml"
when: openvpn_config.stat.exists == False
However, I see this output:
... | 0 |
### Proposed new feature or change:
Currently we can use `median()` and `nanmedian()` to calculate the median of
an array along an axis, and we can compute other basic statistical metrics
similarly. However, there are no methods to calculate the modes of an array
directly.
I would suggest adding the method `mode()`... |
_Original tickethttp://projects.scipy.org/numpy/ticket/681 on 2008-03-10 by
trac user eilifmuller, assigned to unknown._
numpy.random performance is weak compared to matlab.
The AMD Core Math Library (ACML) provides fast random number generator
functions for use with AMD64 architectures, and it would be nice to so... | 0 |
Challenge Style Text Inputs as Form Controls has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML,
like Gecko) Chrome/55.0.2883.75 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
<link href="... |
In all the exercises, we the users are forced to press the enter key before
writing any code.
* * *
#### Update:
We have locked the conversation temporarily on this thread to collaborators
only, this has been resolved in staging, and will be live soon.
The fix can be confirmed on the beta website.
The workaround... | 1 |
Julia 0.5 will ship with a versioned `libjulia.so.0.5` that is installed
system-wide for embedding by other programs. The standard library however is
still installed to an unversioned path, which is inconsistent and creates a
conflict when different versions of `libjulia.so.$(SOMAJOR)` are installed on
a system, sinc... |
Most people seemed to agree with the basic improvements I suggested on the
mailing list in order for Julia to play nicely with the Unix FHS as well as
with external (non-Pkg) packagers like Linux distributions. See also #1692.
The main changes that are needed are:
* Put standard places in the `LOAD_PATH` for non-... | 1 |
# Environment
Windows build number: Microsoft Windows [版本 10.0.18362.418]
Windows Terminal version (if applicable): 0.5.2762.0
Any other software?
# Steps to reproduce
Unclear, but I unlocked the screen and switched to terminal from another
application to find this happening.
Updat... |
# Environment
I don't have sure. My cmd is not opening.
Windows build number: [run `[Environment]::OSVersion` for powershell, or `ver`
for cmd]
Windows Terminal version (if applicable):
Any other software?
# Steps to reproduce
<!-- A description of how to trigger this bug. -->
#... | 0 |
* [√] I have searched the issues of this repository and believe that this is not a duplicate.
* [√] I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.5 and 2.7.6
* Operating System version: windows 10
* Java version: 1.8.0_151
### Ste... |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.5
* Operating System version: win7
* Java version: jdk1.8
### Steps to reproduce this issue
... | 0 |
The error print
error: the following command failed with exit code 0 but produced no further output
CompileC /Users/paco/Library/Developer/Xcode/DerivedData/Runner-bidthradlmamepejziapbzsplvkm/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/armv7/main.o /User... |
The following code in a drawer control causes dispose to be called after the
initState function.
new ListTile(
leading: new Icon(FontAwesomeIcons.newspaper),
title: new Text("News Feed"),
... | 0 |
With the beta releases 3rd party modules either needs always to be updated
otherwise developer will end up with obscure errors when instanceof doesn't
work. For example, the `angular2-jwt` had this problem when it's dependency
was beta.0 and devs would use beta.1 so two versions of angular2 would bundle
together when... |
Trying to implement a custom Exceptionhandler fails. The docs suggest:
import { ExceptionHandler } from 'angular2/core';
class MyExceptionHandler implements ExceptionHandler {
call(error, stackTrace = null, reason = null) {
// do something with the exception
}
}
h... | 0 |
The ES6 support announcement says:
> the idiomatic way to specify class state is to just use a simple instance
> property. Likewise getDefaultProps and propTypes are really just properties
> on the constructor.
This makes a lot of sense to me, but I noticed some small inconsistencies that
may be worth rethinking.
... |
With other higher-order/wrapper components from other libraries, I can replace
a component with a wrapped version of itself like this:
let Component = () => <div>hello world</div>;
// connect from react-redux
Component = connect(selector)(Component);
// withRouter from react-router
... | 0 |
#### Code Sample, a copy-pastable example if possible
import pandas as pd
df = pd.DataFrame([[1, 2, 3], [2, 2, 3]], columns=['a', 'b', 'c'])
def t(df):
print(df)
print('-' * 10)
return None
g = df.groupby(by=['a', 'b'])
g.apply(t)
print(g.groups)
g.a... |
#### Code Sample, a copy-pastable example if possible
import pandas as pd
df = pd.read_hdf('data.h5')
#### Problem description
The HDF5 dataset was created with `pandas`, `to_hdf` in Python 2.7 and can be
read in by Python 2.7. When I try to read it in with Python 3.5 or Python 3.6,
I get the fol... | 0 |
I can import seaborn in termimal.
But it can't in ipython terminal or jupyter
|
`seaborn.lineplot` makes it easy to plot either a confidence intervals around
the estimator, or the standard deviation of the data. It would be nice to
directly support plotting quantiles of the data distribution instead, rather
than only the standard deviation.
Maybe it would make sense to have a separate key-word ... | 0 |
* Output of `node_modules/.bin/electron --version`: **4x / 5x**
* Operating System (Platform and Version): Windows 10/ Windows 7/ Ubuntu 18.04.1
aes gcm mode is missing from the list of available ciphers. it works for on my
end so is there any reason for this?
**To Reproduce**
const crypto = requ... |
### code
header.vue:
import { remote, ipcRenderer, clipboard, shell } from 'electron';
let thisWindow = remote.getCurrentWindow();
const thisview = thisWindow.getBrowserView();
export default {
name: 'header',
created() {
console.log(thisWindow, thisWindow.maxim... | 0 |
## command
flutter build apk
## exception
FormatException: FormatException: Bad UTF-8 encoding 0xbe (at offset 0)
#0 _Utf8Decoder.convert (dart:convert/utf.dart:574)
#1 _Utf8ConversionSink.addSlice (dart:convert/string_conversion.dart:345)
#2 _Utf8ConversionSink.add (dart:conv... |
I have a bottomsheet, and it contains a Listview which shows comment list. The
comment List can be scroll, but when I scroll to the top of the list, I can
not trigger the pull down to dismiss event even add the physics: ScrollPhysics
.
| 0 |
This commit: #9403
caused this issue to break: #9007
|
I have a navbar with 8 links. I've noticed that when I activate the navbar on
a phone and view it in landscape, it doesn't scroll all the way down to
display the last link.
A live example of this can be shown on the 'Jumbotron' example template. When
I drop down the menu I can't view the whole login form.
| 1 |
# Bug Description
Usually, the _id field is known as global unique in a index, right?
But I found it become non-unique when a doc's routing field is modified to
another value and reindex to ES. Then, there will be two doc alive in diffrent
shard but the same index.
It seems the delete operation is broadcasted to ... |
It seems, that it's not possible to create node that could elect but not to
become master.
This option could be useful in some cases.
For example, we have 2 master nodes with data and we want to avoid split brain
and the existence of two masters. We can create another instance without data
and `node.master = true... | 0 |
Not sure if it's an intended behavior, anyway it seems that Angular2 doesn't
assign the active state (the "router-link-active" class) to a routerLink
element when its corresponding route contains query string params.
You can reproduce this situation with the official routing example itself:
https://angular.io/res... |
**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 |
So I'm pretty much at the end here.
Every time I make the browser window transparent, a wired title appears.
So in it is the HTML title and when I remove it says index.html or the
folder/package name.
(this sort of thing just appears, when I unfocus and focus the app again.

* Operating system: Windows
### Expected behavior
`BrowserWindows` created with `tra... | 1 |
for example, kubernetes-e2e-gce-slow, kubernetes-e2e-gce-reboot,
kubernetes-e2e-gce, kubernetes-e2e-gce-parallel
@jszczepkowski @wojtek-t
| ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gce-scalability/7761/\n\nFailed: BeforeSuite {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/e2e.go:138\n May 23 21:08:38.707: Error waiting for all pods to be running and ready: Not all pods in namespace 'kube-system' running and ready within 10m0s\n \n\n" | 1 |
# What / Why
npm: v5.8.0, v6.13.4
When I attempt to install a package from GitHub globally, I am getting a
permission error: "could not create leading directories".
$ sudo -H npm install -g git+https://github.com/richRemer/pool.git
npm ERR! code 128
npm ERR! Command failed: /usr/bin/git clone... |
# What / Why
This bug is related to #476 (comment) and #514
## When
`npm install` packages from git in docker
## Where
* packages from public git repositories
## How
### Current Behavior
# npm i
npm ERR! code 128
npm ERR! Command failed: git clone --depth=1 -q -b v2.0.5 git://github.co... | 1 |
**Migrated issue, originally created by Anonymous**
I get three "Bullet list ends without a blank line; unexpected unindent."
warnings when I 'make html' in sqlalchemy/doc/build.
(mydevenv)diana@diana-laptop:~/workspace/sqlalchemy/doc/build$ make html
mkdir -p output/html output/doctrees
sphin... |
I'm trying to remove duplicates from my table by running the following SQL
Server query:
WITH deldup AS (
SELECT name,
date_hour,
ROW_NUMBER() OVER (PARTITION BY name, date_hour ORDER BY value DESC) AS RN FROM testtable
)
DELETE FROM deldup WHERE RN > 1... | 0 |
## Bug
### Input Code
Here is link to babel playground
class MyMap extends Map {
constructor() {
super();
}
test() {
return "Hallo world";
}
}
var myMap = new MyMap();
console.log(myMap instanceof MyMap);
console.log(myMap.test()... |
Current Babel transform, when it comes to call the parent
function _possibleConstructorReturn(self, call) {
if (!self) {
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
}
return call && (typeof call === "object" || typeof call === "fu... | 1 |
### 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... | 1 |
I have observed that there is large increase in computation time when
differentiating through a loss that involves index a complex128-valued array.
Consider the following demo script.
import argparse
import time
import jax.numpy as jnp
from jax import jit, grad
from jax import rand... |
Hi,
I observe a severe drop of performance of the index_update function on a GPU,
when changing the data type from complex single to complex double. Is there a
fundamental reason for that or is it something that could be improved?
Here is a simple example to illustrate this issue:
import jax
imp... | 1 |
Describe what you were doing when the bug occurred:
1.
2.
3.
* * *
## Please do not remove the text below this line
DevTools version: 4.2.1-3816ae7c3
Call stack: at chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:157108
at Map.forEach ()
at commitIndex (chrome-
extension://fmkadmap... |
### Describe what you were doing when the bug occurred:
1. I did profiling on a list, that gets updated on each pagination api call.
2. Once the profiling was done, I moved around in the Profiler to view the Flamegraph
3. Moving to second capture, the Profiler crashed.
**DevTools version** : 4.6.0-6cceaeb67
... | 0 |
I ran a few benchmarks on the server (modifying
https://github.com/paulshen/react-bench to not use jsdom). The results were
surprising, as the browserified `react.js` was about **30% faster** than the
npm version, even with `NODE_ENV=production`.
The performance ranking (test run time) was `react.min.js` < `react.js... |
I have recently adapted my app to use server-side rendered markup and then
reconciliate it with the client to increase loading speeds.
React correctly recognizes the rendered markup and doesn't actually touch the
dom on the first rendering step.
However, when I interact(clicking, dragging, etc) with any server-sid... | 0 |
When a request is made through AJAX Symfony correctly knows that the request
is an XMLHttpRequest. This can be retrieved from the isXmlHttpRequest method
of the Request class. However, this doesn't set the _format parameter in the
request to the correct value. For example, making an AJAX request with
JQuery.ajax send... |
The symfony default _format which is used to determine the right template
should be aware of the HTTP Accept
header(http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html)
This shouldn't effect the default behavior like it is right now for websites,
but if you're building an (REST[FUL]) API this would be a really gr... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.3
* Operating System version: macos 10.14.6
* Java version: 1.8
### Steps to reproduce this ... |
* 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. ... | 0 |
rustc panics with the following backtrace when building this fork of rlibc. I
can't even tell which line of my code is causing it, but it occurs after most
of the warnings are printed:
...
src/posix/fcntl.rs:6:62: 6:66 warning: unused variable: `mode`, #[warn(unused_variables)] on by default
sr... |
I got this compiling a fairly large app:
error: internal compiler error: unexpected panic
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: http://doc.rust-lang.org/complement-bugreport.html
note: run with `RUST_BACKTRACE=1` for a backtrace
... | 1 |
**TypeScript Version:**
1.8.10
**Code**
// A self-contained demonstration of the problem follows...
function bool_fun(value: string) : boolean {
return value && value == "bug";
}
console.log(bool_fun(null)); // should log false or throw a compiler error, but logs null
co... |
This code does not end the compilation on Windows 7 using master branch of
TypeScript.
$ node built/local/tsc.js hang.ts
And VS2013 was hangup. `devenv.exe` consume memory about 3.5GB.
// hang.ts
interface LazyChain<T> extends LAZYCHAIN.Stream<T> {
}
interface Lazy... | 0 |
It's really hard to see what tests failed across different runs, especially if
you don't have access to Jenkins (#17443).
|
Right now visibility is the biggest problem we have with e2e tests. We have
too many jenkins jobs to keep track of test history for each one manually, and
with test filters becoming increasingly targeted, there is no easy way to know
what job a particular test is running in. Moreover, because test filters are
shared ... | 1 |
Currently the spilt panel is not able to be resized. Is there any ongoing plan
or implementation? :)
|
Panels split the difference between the space available. It'd be nice if we
could manually resize them. Should take a look at what @nakajima did with the
tree view.
| 1 |
##### System information (version)
* OpenCV => 4.1.0
* Operating System / Platform => Mac OS Mojave 10.14
* Compiler => n/a python 3.7
##### Detailed description
https://docs.opencv.org/4.1.0/d3/d96/tutorial_basic_geometric_drawing.html
python version of tutorial throws the following error:
'''TypeError: ... |
OpenCV => master
Operating System / Platform => Windows 64 Bit
Compiler => Visual Studio 2017
CMake option WITH_OPENMP=ON
Here:
https://github.com/opencv/opencv/blob/master/modules/core/src/parallel.cpp#L553
pbody need integer value:
https://github.com/opencv/opencv/blob/master/modules/core/src/parallel.cpp#... | 0 |
The following code
struct Struct([u8]);
fn as_slice(s: &Struct) -> &[u8] {
let &Struct(ref this) = s;
this
}
fn main() { }
fails to compile, the error message is:
Assertion failed: (Ty && "Invalid GetElementPtrInst indices for type!"), functio... |
Trying to build this:
struct Foo(pub str);
impl Foo {
fn print(&self) {
match self {
&Foo(ref s) => println!("f\"{}\"", s),
}
}
}
fn main() {}
and I get this:
rustc: /home/shum/src/rust/rust/src/llvm/include/llvm/Support/Casti... | 1 |
when i use like this:
Glide.with(mContext).load(mUrl).placeholder(R.drawable.placeholder).crossFade().into(mViewHolder.getImageView());
on android may cause picture looks smaller than imageview .note that i have
set imageview scale fitXY.
|
How can I load app icons to listView or RecyclerView. A app icon is a
drawable. If i set the drawable to listview directly,the listview often caton
that get a bad experience.
| 0 |
# Environment
Windows build number: Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0
Any other software?
Windows Terminal built from git clone 9/92019. Have noticed it in the past.
# Steps to reproduce
Build Microsoft Terminal
git clone https://github.com/... |
# Environment
Microsoft Windows [Version 10.0.18936.1000]
Windows Terminal version (if applicable): Version: 0.3.2171.0
Any other software?
# Steps to reproduce
Run powershell as admin
Run the following command: choco upgrade microsoft-windows-terminal
# Expected behavior
I exp... | 0 |
**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.):
... |
**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 found any duplicates, you should instead reply there or use the... | 0 |
When kwarg `depthshade` is `False`, the color of the points is seemingly
random.
### Bug report
**Bug summary**
When kwarg `depthshade` is `False` in scatter3D, the color of the points is
seemingly random. Using `depthshade=True` gives the correct colors.
**Code for reproduction**
import numpy as n... |
### Bug report
**Bug summary**
When colors are based on coordinates in `scatter3D`, the color changes when
the orientation of the plot is changed.
**Code for reproduction**
This codes plots 10 points along the x-axis from 0 to `x_max`, using
`scatter3D` with their color depending on their x-position (dark purple ... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.8
* Operating System version: win10 2004
* Java version: OracleJDK-8u241
### Steps to reprodu... |
* 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.
i want get the inbound and onbound channels of dubbo.
how to do it ?
| 0 |
## Proposed solution
Right now access to thread locals defined by `thread_local!` aren't inlined
across crates, causing performance problems that wouldn't otherwise be seen
within one crate. This can probably be solved with a few new minor language
features:
* First, the `#[inline]` annotation could be processed ... |
There are multiple instructions for building on Windows, and they are not in
agreement, as described here:
http://www.reddit.com/r/rust/comments/2e62f6/compiling_rust_on_windows_aka_why_does_this_have/
| 0 |
Minimal example of the problem:
* App component that uses ContenteditableModel component which allows to edit bonded property and emit changes to parent component via two-way data binding - [()]
* ContenteditableModel is able to change App.text property
* App.OnChanges should be executed.
http://plnkr.co/edit... |
Not sure if this is the right forum but opening an issue nevertheless
I was looking at the bio page at https://angular.io/about/. I clicked on a bio
once to view the person profile. I then close the bio and then click on the
same bio again. Voila!! I get a 404. This is happening across bios and is
easily reproducibl... | 0 |
How to use Ble?Is there an API?
|
Mobile platforms offer APIs to connect and communicate with Bluetooth.
| 1 |
The `reduce` function should, according to its docstring, "reduce the given
collection with the given binary operator." I believe this is also what most
programmers would expect a `reduce` function to do.
However, this is not always what it does. Some input types, e.g. `Int32` are
converted before the operator is ap... |
I'm running a code similar to following (data:
https://homes.cs.washington.edu/~grechkin/bugreport1.jld)
using JLD
type A1
v1::String
v2::String
end
type B1
val::A1
tag::String
end
@load "bugreport1.jld" tmp_data2
Base.hash(x::A1) = ... | 0 |
I use console to generate new bundle.
Normally, default path for bundle was `%root_dir%/src`
But now new bundle in my case is saved in cache folder: `app/cache/dev/src`
I guess that problem is new added function `removeAbsolutePathsFromContainer`
|
In 2.3.14, 2.3.15, and 2.4.5, when I run `php app/console generate:bundle` I
get the following prompt:
Target directory [/home/intrepion/path/app/cache/dev/../src]:
But when I revert back to 2.3.13 or 2.4.4, I get exactly what I expect:
Target directory [/home/intrepion/path/src]: ... | 1 |
# Environment
Windows build number: Microsoft Windows [Version 10.0.18995.1]
Windows Terminal version: source git at: #aa682bfd (origin/master, origin/HEAD) doc: update the path to profiles.json (#3087) [Dustin L. Howett (MSFT)]
Any other software? Ubuntu-18.04_LTS WSL 2
# Steps to r... |
# Environment
Windows build number: Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0
Windows Terminal version: 0.5.2681.0
Powershell: 5.1
# Steps to reproduce
Set color scheme for powershell profile to be One Half Dark or any of the
other ones and then launch the power... | 0 |
### Version
2.5.16
### Reproduction link
https://jsfiddle.net/weituotian/k5hLxf1d/
### Steps to reproduce
1. make sure the curPage in data is 1 or 2 or 3
2. click add transition
3. click change page
### What is expected?
not all the transition of `li` disapper.
every time it should be one disapper.
##... |
### Version
2.6.10
### Reproduction link
https://codesandbox.io/s/js-
duixiangzhongdezhidushichangliang-u8lzg?fontsize=14
### Steps to reproduce
Add a dynamic component with slots to tbody lable.
### What is expected?
Do not pop up error messages in the console.
### What is actually happening?
Although it wo... | 0 |
**Apache Airflow version** : 1.10.15, but happens in all of them
**Environment** : GCP Composer -> Kubernetes + Celery
* **Cloud provider or hardware configuration** : Google
**What happened** :
Errors appear while trying to use SqlSensor against a BigQuery View.
For context I'll explain a little bit: BigQu... |
**Description**
A sql sensor which uses Standard SQL due to default one uses legacy sql
**Use case / motivation**
Currently (correct me if I am wrong!), the sql sensor only supports legacy
sql. If I want to poke a BQ table, I do not think I can do that using standard
sql right now.
**Are you willing to submit a ... | 1 |
**Steve Barham** opened **SPR-6269** and commented
JdbcUtils#commonDatabaseName uses a number of hardcoded database product names
to identify Sybase.
public static String commonDatabaseName(String source) {
String name = source;
if (source != null && source.startsWith("DB2")) {
name = "DB2";
}
else if ("... |
**Jorg Heymans** opened **SPR-2441** and commented
I raised the issue here
(http://forum.springframework.org/showthread.php?t=28170), but nobody seems to
have picked it up.
This configuration worked fine in 2.0-RC2 (and 1.2.x for that matter)
<bean id="advisor"
class="org.springframework.aop.support.RegexpMethodPo... | 0 |
It is currently quiet hard to test modifications within custom error pages. It
involves the following steps:
1. Make the exception controller use the right template:
When in development mode the exception controller defaults to use a template
called "exception_". In production it searches for "error_". So you ei... |
When I'm viewing my site in production, I get to take advantage of the
extremely useful error pages symfony provides. Unfortunately, this is
clobbering my user-facing error pages.
It would be nice if somewhere in the ui of the default app_dev error page, a
button was made available to re-render the request using the... | 1 |
Let's assume we have an application with sessions with the following routes:
/1
/1/2
/1/2/3
/1/3
The first path, when called from a WebTestCase, will create a cookie in the
local Client object with the path set to "/". Calling the second route will
renew the cookie, setting its path to /1. The third will upda... |
I know it had been discussed a lot, but I thought the problem had been fixed.
I am writing functional tests that requires the session to stays the same
between client requests. What is the recommended way to do so ?
| 1 |
### Description
The Table implementation does not support multiple `tbody` elements. According
to the HTML specification multiple `tbody` elements are allowed (along with a
footer for each) and can be used for grouping rows of data. This would allow
more advanced features to be built using the material-ui Table Comp... |
According to w3c, it is valid to have multiple `<tbody>`tags within a
`<table>`, but this is currently not supported with material-ui's Table
component.
I have a PR coming shortly to fix this.
| 1 |
Hi,
im using Yaml Component in a project,
but when I dump a array into a YAML,
it returns something like this:
Yaml::dump()
test:
value: "1 \r\n 2 \r\n 3"
and I need something like this:
Yaml::dump()
test:
value: |
1
2
3
This... |
In a Controller, I have two actions :
/**
* @Route("/search", name="search_with_default", defaults={"p"=1})
*/
public function searchWithDefaultAction(Request $request)
{
return $this->render('default/index.html.twig');
}
/**
... | 0 |
How about we add numbers to the challenges?
Problem: So many people come to the chat and say that they are stuck on XX-
challenge, which actually does not tell helpers anything.
Solution: Add actual numbers to challenges ;)
|
As per the umptieth I've just had this conversation on FB where people are
confused/misled as to what that number next to their avatar picture
represents.
The general conclusion seems to be we should add a more clear explanation of
the brownie points. How each challenge gives you a point, but someone can have
the sa... | 1 |
Like Python, Julia's `zip(a, b)` ignores the tail end of its input sequences
when they are of unequal length (but see #17928). I've yet to encounter a
problem where I wanted that behavior, and I would much prefer seeing an error
when the inputs are of unequal length. Are there applications where truncation
is very co... |
julia> collect(zip([1,2,3],[1,2],[1,2,3]))
ERROR: DimensionMismatch("dimensions must match")
in promote_shape(::Tuple{Base.OneTo{Int64}}, ::Tuple{Base.OneTo{Int64}}) at ./operators.jl:401
in indices(::Base.Zip2{Array{Int64,1},Array{Int64,1}}) at ./iterator.jl:91
in _similar_for(::UnitR... | 1 |
### What problem does this feature solve?
you know sometimes you cant always use variable form filter when you want to
Extract the abstract logic on filter
such like:
.item1
.item-count {{(item.shouldFilterValue[0] || 0) | item.filterName[0]}}
.item2
.item-count {{item.shouldFilterValue[1] || 0 | item.filt... |
According to the document, the filterId would be parsed by using the text
after | as the filterId. Is there possible to support use expression as the
filterId. For example: we can use obj.filter as the filterId. vue can calc the
expression, then use the result to be the filterId? Thx for your time:)
| 1 |
I have first 9 taskbar items pinned for apps that I use the most. I really
love the fast switching between apps using `Win+1..9`.
Also, I'm using different virtual desktops for different purposes (home x
work).
For such setup, it would be really useful to have the possibility to organize
pinned taskbar items per pu... |
I want to pin application to non-primary monitor taskbar.
| 1 |
### Apache Airflow version
Other Airflow 2 version (please specify below)
### What happened
**Airflow version: 2.4.3**
I just upgraded from Airflow 2.1.2 to 2.4.3. Whenever I load the webserver, it
gives the following errors in webserver.log and doesnt load the application.
File "/a/lib/python3.7/s... |
### Description
Currently, `DAG Runs` have two "done" states: "succeeded" or "failed". I
propose a third, **"aborted"**.
### Use case/motivation
Currently if I wish to stop a `DAG Run`, I must mark it one of the states
listed above, and usually choose "failed" for lack of a better option. This
means that later I h... | 0 |
This code causes ICE after recent rust changes:
use std::default::Default;
pub trait Message {
fn new() -> Self { panic!(); }
}
fn new_instance<M : 'static + Message>() -> Box<Message + 'static> {
let m: M = Default::default();
box m as Box<Message>
}
... |
I'm getting the following ICE
mindTree:RustyJen Mitch$ cargo build
Compiling jen v0.0.0 (file:///Users/Mitch/Programming/Rust/RustyJen)
error: internal compiler error: u... | 1 |
numpy.distutils.system_info.NotFoundError: No BLAS/LAPACK libraries found.
Note: Accelerate is no longer supported.
To build Scipy from sources, BLAS & LAPACK libraries need to be installed.
How can i build source on mac m1?
|
As Matt suggested (issue #11515) I've been taking a look at the presolve
routine and its reference, the Andersen & Andersen paper.
A&A describes a set of options for trivial simplifications of the problem
(some not too trivial, though), numbered (i) - (xvii). The current `_presolve`
function handles just a couple of... | 0 |
There is an abstract static method here, which causes an error.
https://github.com/symfony/symfony/blob/master/src/Symfony/Component/Validator/Tests/Mapping/Loader/AbstractMethodStaticLoader.php#L9
|
I´m seeing loads of test failures and exceptions on the current master branch
when running `phpunit`
`php --version PHP 5.4.20 (cli) (built: Oct 10 2013 14:49:05) Copyright (c)
1997-2013 The PHP Group Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend
Technologies`
`phpunit --version PHPUnit 3.7.28 by Sebastian Bergm... | 1 |
When rendering the documentation to any standard library class with Chrome
Version 44.0.2403.130 m (64-bit) - the latest release on Windows 10, the &
character is obviously not rendered correctly, as demonstrated by this
picture.
Is there any more information I can provide to help fix this issue?
|
On my system, ampersands in the documentation are drawn incorrectly in Chrome:
https://i.imgur.com/FmG93G5.png. I'm using Windows 7, 64-bit. This doesn't
happen in Firefox.
I'm thinking this could be a bug in Chrome, but I haven't seen it on any other
site. It seems to happen on any page generated with rustdoc. Ampe... | 1 |
I am using Webpack 2 beta21 in some setup where I am trying to combine
`System.import` auto chunks + HMR + SSR React. I am currently struggle with
how to use modules in es2015 module syntax (as suggested by
`module`/`jsnext:main` entries). As far as I understand I have to transpile
that code. But normally we do not t... |
# Bug report
**What is the current behavior?**
After running my command:
cross-env webpack --watch --mode development ./run/start.web.js
I get an error:
This dependency was not found:
* fs in ./node_modules/minio/dist/main/minio.js, ./node_modules/mkdirp/index.js
I... | 0 |
`tuple(DeviceArray)` evaluates the DeviceArray (at least when using xla) and
returns them as np arrays.
Example:
ar = jnp.ones(shape=3, dtype=jnp.float32) # type: jax.interpreters.xla.DeviceArray,
tuple(ar)
produces a tuple of `numpy.float32: (1.0, 1.0, 1.0)`, while
tuple(ar[i] ... |
Looping through a `DeviceArray` like in a list comprehension, for loop, or
enumerate returns `numpy.ndarray`. Is this expected behaviour?
import jax.numpy as np
X = np.array(range(3)).reshape(3,1)
print(type(X))
#<class 'jax.interpreters.xla.DeviceArray'>
x0,x1,x2 = [xi for xi... | 1 |
### Describe the bug
When connecting to the database, we use a connection string. What happens is
when using an at ("@") inside the password, the db_engine object gets wrong
password and host. This worked on the sqlalchemy version 1.4.9
Going into debug-mode and looking at the db_engine object below, I can see
that... |
**Describe the bug**
When a password contains a `@` character. Sqlalchemy with a string url cannot
connect to the database.
I greatly suspect that it was induced by #6482.
Was working fine in 1.4.15.
**To Reproduce**
url = (
"mssql+pyodbc://"
"SA:P@my_password@127.0.0.... | 1 |
We have made several changes to the window.open functionality to use the
native blink/chromium code, but we are always working with embedded views so
I'm looking for a little help to upstream this without breaking other use
cases
Starting from brave/muon@`6ee28c3` to brave/muon@`9dc98b1`
We are working on getting... |
when opening a new window using window.open, we currently get a
BrowserWindowProxy that only support posting messages.
Some websites, webapps and libraries uses `window.opener` to access properties
and objects of the opener window. Thoose are broken in Electron.
That's the case for example of Chromium devtools, th... | 1 |
**Context:**
* Playwright Version: [1.10.0]
* Operating System: [Linux]
* Node.js version: [14.10.0]
* Browser: [Chromium]
* Extra: []
**Code Snippet**
Generate a 400M large file
dd if=/dev/zero of=/tmp/400M bs=1M count=400
const { chromium } = require("playwright");
... |
**Context:**
* Playwright Version: 1.3.0
* Operating System: Windows
* Node.js version: 12.18.3
* Browser: Chromium
**Code Snippet**
const { chromium } = require("playwright");
(async () => {
const browser = await chromium.launch();
const page = await browser.newPage();
... | 1 |
I tried to upgrade my application from Sf 2.4 to Sf 2.5 and I discovered a bug
:
A service working with the "validator.initializer" tag, is not called anymore.
Service definition :
cpl.sitebundle.canonicalizer:
class: Cpl\SiteBundle\Validator\Canonicalizer
tags:
\- { name: validator.initializer }
This servi... |
see: FriendsOfSymfony/FOSUserBundle#1511
The problem is solved by using the 2.4 validation api.
| 1 |
followup to #17165 / #18738, cc @kshyatt
right now the base tests are printing both old as-you-go info, in addition to
a new table so it looks like
* dsp maxrss 3501.18 MB
* examples maxrss 3501.18 MB
* compile maxrss 3501.18 MB
... |
As per discussion in https://groups.google.com/forum/#!topic/julia-
users/alavN8tRdyI :
Let e.g.
Array{<:Real}
act like `RArray` given by
typealias RArray{T<:Real} Array{T}
This convenient shortcut should go a long way in those cases where people
would want covariant types.... | 0 |
### What problem does this feature solve?
Actually we use `:bool-prop="false"`. What would be the chances of
implementing `!bool-prop`?
### What does the proposed API look like?
Instead of
<button :ripple="false">Download</button>
Would be
<button !ripple>Download</button>
Think of ... |
### What problem does this feature solve?
我有一个类似于qq聊天的窗体,聊天框需要缓存用户行为(滚动条位置、输入框内容等),keepalive渲染的组件都是同一个,只是加了不同的key,用keepalive可以实现我的需求的,当我关闭某个用户的聊天窗口时,配置include时缓存是没法清除;
我的组件结构如下:
<keep-alive :include="included">
<chat v-if="_interlocutor.Key===interlocutor" :interlocutor="_interlocutor"
... | 0 |
Currently gradients can only be computed manually in C++ or automatically in
Python with tf.gradients. Work on registering C++ implemented gradients for
all the OPs has started. However, there is currently no easy way to
automatically use those gradients to generate a graph. The C-api also does not
have gradient crea... |
I have started porting Tensorflow to Node.js and was wondering about the
status of gradients support in the C and C++ APIs:
* https://www.tensorflow.org/versions/r0.12/how_tos/language_bindings/index.html
* https://github.com/tensorflow/tensorflow/blob/master/tensorflow/g3doc/resources/roadmap.md
Could I ask fo... | 1 |
OpenCV uses some ffmpeg APIs that have been removed in the just released
ffmpeg 5.0 and makes some assumptions about ffmpeg structs that are no longer
true (primarily trying to access the "codec" member in an AVStream).
This causes the build to fail.
|
related:
https://forum.opencv.org/t/error-avstream-aka-struct-avstream-has-no-member-
named-codec/3506
ffmpeg changed its `AVStream` structure. in ffmpeg v3.1 (~2016) the `codecpar`
member was introduced to replace `codec` member. `codec` has been deprecated
since then. it is still available in ffmpeg v4.4 but not... | 1 |
* VSCode Version: 0.10.11
* OS Version: Ubuntu 15.10 x64
Steps to Reproduce:
* 1. Define a variable in a Javascript/Typescript file and assign a multi-line string value, using the "" (backslash) character to join lines. e.g.
var mlString = "The is my long multi-line string which I am using ... |
_From @KevinSCreative on December 30, 2015 18:13_
After the first line, multi-line strings in JavaScript don't get string color.
In the following example, only "Hello World" has the string color, and the obj
variable declaration is all one color. In the default theme, 'var' is supposed
to be blue. I would also expec... | 1 |
i think package.json shouldn't be deprecated, but changed: the current
proposal suggest full urls in the imports; i suggest the full urls will reside
on the package.json, along with the version, and have a semantic short-name
for the imported package, so it would be easier to refer to it from the
multitudes of projec... |
Very interesting project! I love the web-compatibility goal.
One thing that would help there is support for bare module specifiers via
package name maps: https://github.com/domenic/package-name-maps
This would allow for imports like:
import * as _ from 'lodash';
Without any requirements on a specifi... | 1 |
by **jht5945** :
1. What is a short input program that triggers the error?
{{{
package main
import "fmt"
func GetValue(val bool) string {
if val {
return "true"
} else {
return "false"
}
}
func main() {
fmt.P... |
12156:8086095a2f8e tip
Build with AddressSanitizer
(http://code.google.com/p/address-sanitizer/wiki/AddressSanitizer):
CC="clang -faddress-sanitizer -g -fno-omit-frame-pointer" ./make.bash
ERROR: AddressSanitizer global-buffer-overflow on address
0x0000006e7ebe at pc 0x46ab3e bp... | 0 |
# Environment
Windows build number: 10.0.18990.0
Windows Terminal version (if applicable): v0.6 on commit [71debc1](https://github.com/microsoft/terminal/commit/71debc158b6d90106a2dfc26b9029429499dfb29)
Any other software?
# Steps to reproduce
Drag the tabs around
# Expected behavi... |
# Environment
Windows build number: Microsoft Windows [Version 10.0.18963.1000]
Windows Terminal version (if applicable): 0.5.2762.0
# Steps to reproduce
1. Launch WSL terminal
2. Use other applications like a web browser
3. Go back to the WSL terminal
# Expected behavior
See a worki... | 0 |
* Electron version: v1.2.4
* Operating system: Ubuntu LTS 14.04
If there is an existing Electron issue for this, please link it here:
https://github.com/atom/electron/issues
Describe your problem:
Electron won't open at all. I ran the command to install electron-prebuilt.
Nothing happens when I run electron... |
* Electron version: 1.2.4
* Operating system: Linux xxx 4.2.0-38-generic #45~14.04.1-Ubuntu SMP Thu Jun 9 09:27:51 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
I was trying to set 1.2.2 - 1.2.3 versions and works fine. When updating to
1.2.4 app.on('ready'...) never works. No errors output on console.
Trying "Quick... | 1 |
# Feature request
## Is your feature request related to a problem? Please describe.
Currently when deploying to now 2.0 we force all dependencies to be
`devDependencies`, the reason for this is creating the _smallest possible
lambda_.
This however introduces some issues:
* When everything is a devDependency, h... |
# Feature request
Support `assetPrefix` with `next/link` component.
## Describe the solution you'd like
Provide `assetPrefix` props for `next/link` component.
## Additional context
This feature is needed in case we have multiple NextJS apps on the same domain
with different `assetPrefix` .
Note that, even page... | 0 |
### Version
2.7.4
### Reproduction link
sfc.vuejs.org/
### Steps to reproduce
Step1. create the project with @vue/cli 5.0.8; `vue create vue27-ts-mini`,
? Please pick a preset: Manually select features
? Check the features needed for your project: Babel, TS, Router, Vuex, CSS Pre-pro... |
The `<slot>` functionality is really useful, however I wonder if having a
`vm.$slots` instance property could be useful. Much like this thread, I'd like
to show/hide parts of a component depending on whether a particular named slot
was passed through. Although the thread was answered, I think having an
instance prope... | 0 |
I saw an issue with aggs not working when upgrading from 1.4.4 to 1.5.1. I was
able to reproduce with generic data in both a linux server (ubuntu on
CircleCI) and OS X on my laptop locally. (nice to have CI)
After some debugging, I was able to narrow it down to adding a second mapping
where the second mapping's doc ... |
If I have an inner object that has the same name as a type, then queries for
that inner object will fail.
The workaround is to rename the type or the inner object, but the behaviour is
confusing and misleading (and wrong).
To reproduce, create a new index, type and document:
curl -XPOST 'localhost:9200/test/flow/... | 1 |
ansible 2.0.0.2
Run against a set of tasks like so:
- name: Duplicate
debug: msg="hi"
- name: Duplicate
command: sleep 100
You'll notice you only get timing on one. This is flaw in the core
architecture of this plugin. It uses a dict to store values by task name it
seems.
@... |
##### ISSUE TYPE
##### ANSIBLE VERSION
config file = /home/douglas/repos/ansible/ansible.cfg
configured module search path = Default w/o overrides
##### CONFIGURATION
##### OS / ENVIRONMENT
##### SUMMARY
##### STEPS TO REPRODUCE
ansible-playbook accounts.yml --step... | 0 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
I am trying to override the Grid item style, specifically the padding, using
the classes prop.
## Current Behavior
They way the object key is generated for the grid item padding it makes it
very diffic... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
When using the `Input` component with `multiline={true}` and
`fullWidth={true}, the generated `MuiTextarea-root`component should have
a`width`of`100%`.
## Current Behavior
When using the `Input` co... | 0 |
Currently, the env var in `.env` or `.flaskenv` will not override existing
value. However, if a user installed `python-dotenv` and created a `.flaskenv`,
he will expect the variables in `.flaskenv` override the old values. It's
inconvenience when you develop multiple applications at the same time.
|
I want to start by apologizing in advance if I make any mistakes in this bug
report, I'm new to development and any mistakes are unintentional. That being
said I appreciate any input as to how I can improve.
# The issue:
Creating a class that inherits from FlaskForm causes an error with the
following traceback
... | 0 |
I upgraded my flutter and there are something wrong with my project: the third
libraries can not be found. So I run "flutter packages get", and the result
is:
Running "flutter packages get" in XXX...
The current Flutter SDK version is 0.0.0-unknown.
Because XXX depends on shared_preference... |
Hey there! I've been noticing an interesting problem as I upgrade my libs to
Dart 2. I run my tests very often, and have seen them take far longer to start
up than in Dart 1. If you're running many iterations of a test trying to fix a
bug, it can feel a bit sluggish compared to how fast it was before.
## Steps to Re... | 0 |
The new explain API for detailing heap usage can be a huge help in debugging
large Elasticsearch systems - for performance or crashes
Obviously if you can add the ES's structures to this functionality , all the
better
https://issues.apache.org/jira/browse/LUCENE-5949
|
A primary shard was stuck in RELOCATION state. Recovery API shows that all
files have completed at 100%. The stage shows that it is TRANSLOG. But it has
been sitting there for > 15 hours.
{
"id": 0,
"type": "RELOCATION",
"stage": "TRANSLOG",
"primary": ... | 0 |
### Vue.js version
2.0.1
### Reproduction Link
I have written an example in jsfiddle
https://jsfiddle.net/yreenchan/vfxtb7ps/1/
### Steps to reproduce
`var vm = new Vue({ el: '#app', data: { isShow: 0, second: 1 } });`
1. :style="{opacity: isShow}", the default value of isShow is 0, and the dom is hidden;
... |
### Version
2.6.11
### Reproduction link
https://jsfiddle.net/0vxoaz75/
### Steps to reproduce
Click on the "Unset" radiobutton.
### What is expected?
The checked radiobutton (top row) should be unchecked.
### What is actually happening?
Nothing.
* * *
* Vue DevTools are showing me that the value is actu... | 0 |
In my app, I have a Recycler view with GridLayoutManager. The code I am using
to load images bindImage method of recycler view adapter:
@Override
public void onBindViewHolder(ImageViewHolder holder, int position) {
GSImage dbImage = mLandscapeImagesList.get(position);
File imageFile... |
I'm trying to cache downloaded image from web using SimpleTarget like so:
Glide.with(getContext())
.load(iurl)
.asBitmap()
.diskCacheStrategy(DiskCacheStrategy.SOURCE)
.skipMe... | 0 |
Configuration
Django 1.3.1 non-rel
celery==3.0.19
django-celery==3.0.17
celery-haystack==0.7.2
Log from celery server
\-------------- celery@laptop v3.0.19 (Chiastic Slide)
\---- **** -----
\--- * *** * -- Windows-7-6.1.7601-SP1
\-- * - **** ---
* ** ---------- [config]
* ** ---------- .> broker: ... |
# Checklist
* 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 have checked the pull requests list
for existing proposed fixes.
* I have checked the commit log
to find out if the bug was alrea... | 0 |
When I use tf.gfile.GFile and set mode='rb' to open a file on windows, it will
read as 'str' instead of 'byte'. For example,
f = tf.gfile.GFile("d2f42068.ini", mode='rb')
f.readline()
The result shows
'\n'.
It should be
b'\n'
I find the gfile.py replace the 'r' to empty.
def **init** (self, name, mode='... |
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... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.6.3
* Operating System version: xxx
* Java version: xxx
### Steps to reproduce this issue
Whe... |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.6.3
* Operating System version: all
* Java version: all
### Step to reproduce this issue
1.... | 0 |
export var seven = 7;
export var seven = 7;
This is ~~valid~~ _invalid_, and TS doesn't error on it.
export var seven = 7;
export var seven = 8;
This is _invalid_ , and TS doesn't error on it.
The spec:
> 1. For each ExportEntry Record e in module.[[StarExportEntries]], do
> ... |
Type inference seems to fail when the return-type is a union between a class
and a generic type.
I was hoping to use this pattern to be able to decorate an object (not a
class) with traits/behaviors on a per-instance basis, in a type-safe manner,
something along the lines of Scala's `with` operator.
Best explained ... | 0 |
@person142 responsed to #8354 that his preference was for a cython optimize
api.
> This came up before: #7242.
>
> As you can see I was against the idea. Handling all reasonable halting
> conditions for a scalar solver is already a PITA, and I think the problem
> gets much worse for a vectorized scalar solver. IMO i... |
My issue is about converting a large coo matrix (stored as npz) to csr format.
The number of entries (including duplicates) in the coo matrix is
16,940,976,557. I tried converting it, but everytime it goes out of memory,
despite the fact that I have 500 GB of memory in my machine.
import scipy.sparse a... | 0 |
kdeplot() offers an argument fill. It would be nice to offer this argument to
lineplot() as well.
sns.lineplot(
data=data, x="x", y="y", hue="category", fill=True, palette="crest", alpha=.5, linewidth=0
)
`
I'm using
* seaborn version 0.7.1
* windows machine
* jupyter notebooks
I'm getting the following error and I only see histogram but not kde.
* * *
Type... | 0 |
I'm really sorry if this is a duplicate issue of #2997, but it seems to me
that this is a little bit different. Here the `.ix` when getting a value
interprets the integer as label, and when setting a value it interprets it as
a positional index.
>>> import numpy as np
>>> import pandas as pd
>>... |
#### Code Sample, a copy-pastable example if possible
python -c "import pandas as pd; df = pd.DataFrame(dict(a=[1, 1, 2, 3], b=[1, 2, 3, 4])); print(df.nsmallest(2, 'a'))"
#### Problem description
When using nlargest/nsmallest and the n largest / smallest values are
identical, the method seems t... | 0 |
**TypeScript Version:**
1.8.10 / nightly (1.9.0-dev.20160515)
**Code**
// file ThingA.ts
export class ThingA { }
// file ThingB.ts
export class ThingB { }
// file Things.ts (re-export)
export {ThingA} from "./ThingA";
export {ThingB} from "./ThingB";
// fil... |
interface A {
p: number
}
interface B {
p: string
}
type C = A & B; // suggest an error here
var c: C;
c.p = 1; // because it's impossible assign a number or
c.p = "x"; // a string to that property.
| 0 |
...or until a script tag is added. I've found that the following is sufficient
to get it started.
<script>""</script>
I suspect this has to do with a Chromium "no-JavaScript-efficiency" thing that
is not being taken into account with the preload. Found on 0.34.0
I found this while battling a strange ... |
I have a very little demo like this:
<!DOCTYPE html>
<html>
<head>
<title>Hello World!</title>
</head>
<body>
<webview src="https://www.google.com/" autosize="on" minwidth="576" minheight="432"></webview>
</body>
</html>
When I run the ap... | 1 |
# Add the PowerToys Run shortcut to the PowerToys 'Shortcut Guide' display
When the Shortcut Guide is displayed on the screen, the [Space] key shortcut
which launches the PowerToys Run dialog is not shown.
|
Would love to see the size of the zone by pixel count during editing. Possibly
even percentage of total resolution. Another idea might be to put guides or a
grid on the screen underneath the zone editor.
:
# Steps to reproduce
Does not search for files at all... |
# Environment
Windows build number: Windows 10 Home Single Language 1909
PowerToys version: 0.18.1
PowerToy module for which you are reporting the bug (if applicable): Run
# Steps to reproduce
The v0.18.1 is only able to search for programs but not individual files, even
when running in ... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.