text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
If an exception is handled by exception handlers and a valid response is
generated then the response should also be processed using `process_response`.
|
Is `flask run` supposed to spin up a TLS listener if the app is configured
with TLS?
Take this `app.py`:
if __name__ == "__main__":
app.run(ssl_context=('cert.pem', 'key.pem'))
* If i run `python app.py` i get the expected `Listening on https://...` and all is well - note the http **s**.
... | 0 |
Challenge Waypoint: Target HTML Elements with Selectors Using jQuery has an
issue.
User Agent is: `Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0)
Gecko/20100101 Firefox/42.0`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
<script>
$(doc... |
Challenge Waypoint: Use Hex Code for Specific Colors has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My answer... | 1 |
**Is this a request for help?** (If yes, you should use our troubleshooting
guide and community support channels, see
http://kubernetes.io/docs/troubleshooting/.):
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.):
* * ... |
From build-log.txt in #21439 (before I retest) (Tried to find a flake dupe but
didn't see an obvious one):
I0217 18:27:49.485036 12269 manager.go:1620] Found pod infra container for "phantom.baz_default(3324bd82-d5e7-11e5-bf2a-0242ac110003)"
I0217 18:27:49.485120 12269 manager.go:1633] Pod infr... | 0 |
I was not able to find it, but is it possible to fetch dependencies from
protected sources such as private GitHub or Azure DevOps repositories by
providing an Authorization header with Personal Access Token?
|
When importing the standard library without specifying a version, there are
two warnings:
1. Implicitly using latest version (<version>) for <url>;
2. The import of "<url>" was redirected to "<new-url>".
But it shows wrong redirect and wrong latest version (older ones).
You could see on screenshots, that vers... | 0 |
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gci-gke-pre-release/518/\n\nFailed: Up {e2e.go}\n\n \n \n error running up: exit status 1\n \n\nPrevious issues for this test: #33357 #33377 #33993\n\n" | ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gce-federation/4526/\n\nFailed: Up {e2e.go}\n\n \n \n error running up: exit status 1\n \n\nPrevious issues for this test: #33357 #33377\n\n" | 1 |
**System information**
* OSX 10.14.5
* TensorFlow installed from (source or binary): source
* TensorFlow version: 1.13.1
* Python version: 2.7
* Installed using virtualenv? pip? conda?: docker
* Bazel version (if compiling from source):
* GCC/Compiler version (if compiling from source):
* CUDA/cuDNN... |
**System information**
* TensorFlow version (you are using): 1.13.1
* Are you willing to contribute it (Yes/No): yes, at least as a tester
**Describe the feature and the current behavior/state.**
There is no pre-build binary for Raspberry Pi / ARM and the instructions to
build from scratch here. However, ther... | 1 |
**TypeScript Version:**
1.8.0-beta
**Code**
for (const v of [1,2,3]);
**Expected behavior:**
A compiler error: re-assignment of `const`-variable in loop.
**Actual behavior:**
Compiled successfully.
|
**TypeScript Version:**
1.8.7
**Code**
type OnlyNumberKeys = {[key: number]: any};
let a: OnlyNumberKeys = {};
a["abcd"] = 1; // No error?
let x = a["abcd"]; // No error?
type OnlyStringKeys = {[key: string]: any};
let b: OnlyStringKeys = {};
b[1234] = 1; ... | 0 |
The quality of `three.js` tagged questions on SO is horrible. Each question
that makes sense and is properly formatted is followed by 20 that are just
incomprehensible, RTFM, `i've no idea wtf im doing` sort of thing. At one
point I started getting frustrated, but for some reason, I can't stop looking
at them. I'm un... |
The `shading` property has been removed from `MeshLambertMaterial`, it is only
rendered the `SmoothShading` way.
Is it the desired effect ? Phong looks heavier to get this result.
| 0 |
# Environment
Windows build number:Microsoft Windows NT 10.0.18363.0
Windows Terminal version (if applicable):0.6.2951.0
Any other software?
no
# Steps to reproduce
on a touchpad capable device try scroll using the 2 finger gesture on any
terminal
with some lines on the buffer... |
# Environment
Windows build number: Microsoft Windows [Version 10.0.18898.1000], Microsoft Windows [Version 10.0.18908.1000] (both)
Windows Terminal version (if applicable): commit d24d647 and even before.
PC Info: Samsung NT901X5L
# Steps to reproduce
Just scroll (up and down) by t... | 1 |
It appears that the Angular2, http and router typings files are no longer
included in the npm package under bundles/typings.
Are they hosted somewhere else now?
|
As a follow up to the closed PR #5149 and in particular to the comments on the
downside of the approach taken here is a new proposal:
* let's produce 2 UMD bundles:
* core + RxJS
* core + http + router + RxJS
* those bundles, being UMD, should be usable via a `<script>` tag and CJS-based tooling (WebPac... | 0 |
This doesn't parse in 0.3.0, and I'm not sure it's entirely-documented syntax
on release-0.3 at the moment. There was a backport somewhere to make it parse,
but it looks like there's a bug.
| | |_| | | | (_| | | Version 0.3.7-pre+15 (2015-03-02 23:43 UTC)
_/ |\__'_|_|_|\__'_| | Commit 0f0b13... |
On `beb5486`:
julia> [1,2,3;]
3-element Array{Int64,1}:
2
1
3
julia> [1,2,3,4;]
4-element Array{Int64,1}:
3
2
1
4
julia> [1,2;]
2-element Array{Int64,1}:
1
2
This syntax is not supported on v0.3 (probably because of #8250). I w... | 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.1
* Operating System version: MacOS 10.14.3
* Java version: 1.8.0_152
### Steps to reproduce... |
* 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: 10.12.6
* Java version: 1.8
now dubbo provider can only have a... | 0 |
1. Create a new JS file in a project set to ES6
2. Add the following code
var mytext = `some ES6 \'text\'`;
// this comment is brown
console.log('the console log is brown but this string inside it is
coloured!');
You will see that everything after the first ' is brown. I am aware that there
is no need to u... |
Right now, those keywords like `import` `class` `from` are all plain white.
| 1 |
xref #21160
it maybe possible to change the impl of intna to be backed by
* `bitarray` (for mask)
* `pyarrow` (for both)
to improve the memory footprint of the mask
|
Currently, our nullable / masked extension arrays (boolean, integer, for now)
are using a numpy boolean array as their `_mask` to keep track of missing
values. A potential route for improving memory and performance would be using
a bitarray instead of a boolean numpy array (which is a byte per value).
This should re... | 1 |
Hi,
I encountered a 'problem' when my program tried to groupby a dataframe with an
empty (ie full of nan) column. Here a code sample with pandas 0.19.2 :
In [4]: a = pd.DataFrame({'a': [2,2,3,4,5],
'b': [5,5,6,6,7],
'c': [np.nan]*5,
... |
ENH: maybe for now just provide a warning if dropping the nan rows when
pivotting...
rom ml
http://stackoverflow.com/questions/16860172/python-pandas-pivot-table-
silently-drops-indices-with-nans
This is effectivly trying to groupby on a NaN, currently not allowed
In [13]: a = [['a', 'b', 12, 12, 12... | 1 |
>>> import pandas as pd
>>> from collections import OrderedDict
>>> od = [OrderedDict([('z', 0), ('a', 1), ('*', 2)])]
>>> pd.DataFrame(od)
* a z
0 2 1 0
>>> pd.DataFrame.from_dict(od)
* a z
0 2 1 0
If OrderedDicts are used, I would expect the column order... |
#### Code Sample, a copy-pastable example if possible
# Your code here
#### Problem description
[this should explain **why** the current behaviour is a problem and why the
expected output is a better solution.]
**Note** : We receive a lot of issues on our GitHub tracker, so it is very
possible that ... | 0 |
Hi,
when switching the 'action' and 'dropdown' button in the segmented input group
from the docs causes a wrong border radius for the buttons.
Interestingly enough it works fine on the left side, but comes out wrong on
the right side. See screenshot for clarity:

dat.drop_duplicates(subset=['a','d'])
a b c
0 1 2 3
#### Problem description
When using `drop_duplicates()` with the `subset` option, a warning should
probably b... |
There's a duplicate plot created when calling `Series.hist` as well as a
duplicate plot when calling `groupby.plot` that I think would be fixed by
resolving this issue.
#4113 #413 #2168
| 0 |
### Is there an existing issue for this?
* I have searched the existing issues
### This issue exists in the latest npm version
* I am using the latest npm
### Current Behavior
I'm using `npm@8.5.2` and making use of the workspaces feature, my
(simplified) project's structure is the following:
... |
### Is there an existing issue for this?
* I have searched the existing issues
### This issue exists in the latest npm version
* I am using the latest npm
### Current Behavior
`npm i` runs Prepare script concurrently across all workspaces.
This causes **major** problems when using TypeScript and having one ... | 1 |
Hi,
I just noticed that the nodes on our (AWS) cluster also have the region in the
zone label:
failure-domain.beta.kubernetes.io/region=eu-west-1
failure-domain.beta.kubernetes.io/zone=eu-west-1a
This doesn't make sense to me as it prevents you from using the zone label as
a selector without... |
Several things do or will use a `.kubernetes_auth` file:
* kubectl
* cmd/e2e/e2e.go
* kubecfg
* I'd like kubelet to use it too.
* I'd like things in pods that talk to the API to use it too (e.g scheduler running in a pod on a non-master node).
They use different ways to specify its location:
* kubectl ... | 0 |
This is a feature request to have text optionally end with ellipsis when
overflowing its container. (regardless of multi-line or not)
@abarth
| 1 | |
by **daniel.crettol** :
package main
import "fmt"
type A struct {
i int
}
func new1() *A {
return &A{10}
}
func new2() *A {
p := A{}
p.i = 11
return &p
}
func dummy(p *A) {
}
func new3() *A {
... |
by **linuxhacker100** :
What is the problem?
time.Nanoseconds() returns int64
os.Dir.Mtime_ns is uint64
What is the expected output? What do you see instead?
I would expect that all of the standard go libraries would use the same
type to represent the same type of dat... | 0 |
Apologies if this is the wrong place to ask the question, but I thought it
might be better to have this explained somewhere that wasn't as ephemeral as
the IRC channel…
Storing an instance and trying to reuse it results in an error:
Can only mount an unmounted component. Make sure to avoid storing com... |
**Do you want to request a _feature_ or report a _bug_?**
Feature
**What is the current behavior?**
There is no way to run a side-effect generating hook before the first render.
**What is the expected behavior?**
For certain platforms (like Meteor) the reactive data access paradigm both
runs immediately (dat... | 0 |
When batchnorm is used inside a model that is invoked more than once (e.g
inside an auto regression step) it produces very different results during
prediction (non train time). I have isolated a toy problem and the suspected
reason is that the updated values are accumulated across all invocations and
then updated usi... |
Please make sure that the boxes below are checked before you submit your
issue. If your issue is an implementation question, please ask your question
on StackOverflow or join the Keras Slack channel and ask there instead of
filing a GitHub issue.
Thank you!
* Check that you are up-to-date with the master branch o... | 0 |
Flutter crash report; please file at
https://github.com/flutter/flutter/issues.
## command
flutter doctor
## exception
ProcessException: ProcessException: The system cannot find the file specified.
Command:
C:\Users\vinayak.bedage\AppData\Local\Android\sdk\tools\bin\sdkmanager.BAT
--licenses
#0 ... |
i want installing flutter at the first time but when run flutter doctor i got
this log
all the path git, flutter and sndroid_home are already checked, i'm new here
it says cannot find specified file sdkmanager.bat but i check iin that dir and
that file are exist. i don't know what's going on.
flutter_07.log
Fl... | 1 |
# Summary: FancyZones autofilling
Idea-Feature / Feature request
When enabled, new windows (that are not ignored) snap to the next empty fancy
zone. This would allow users to quick populate layouts with high zone counts.
|
### The "Window-Tiling" PowerToy
Here's an idea, add the ability to tile windows automatically. What I mean by
that is when a window would open, it'll cover the whole screen but when
another window would open, it'll cover the half of the screen automatically
and the first app would also resize to the half of the scr... | 1 |
Just deleted 91 since gke-ci was completely hosed on quota. We hit the limit
on http://kubekins.dls.corp.google.com/job/kubernetes-e2e-gke-ci/10377/ so it
was some set of suites before that.
19:06:05 client [kubectl]. To install, run
19:06:05 $ gcloud components install kubectl
19:06:05
... |
Our `kubernetes-upgrade-gce` Jenkins job has been broken for quite a while
now, and it looks like it's due to target pools and/or forwarding rules
leaking and exceeding quota:
Sep 2 00:48:45.094: INFO: event for mutability-service-test: {service-controller } creating loadbalancer: creating loadbalance... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
Material design table example
Table's text-weight should be 500.

## Current Behavior
... |
On some Android devices the SelectField's Menu renders in the top-left, and
then pops down to where the field is.
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
That the menu animates in, vs rendering and just "popping" over the textfield.
## S... | 0 |
_Original tickethttp://projects.scipy.org/scipy/ticket/728 on 2008-08-25 by
trac user jschrod3, assigned to @wnbell._
I'm using scipy version
Out[4]: scipy.version.version
Out[5]: '0.7.0.dev4561'
When I use the gmres routine from scipy.sparse.linalg, I cannot control its
maximum number of iterations through the... |
With Python 3.9a3
_____________________________________________________________________ TestFactorialFunctions.test_mixed_nan_inputs ______________________________________________________________________
scipy/special/tests/test_basic.py:1835: in test_mixed_nan_inputs
result = special.facto... | 0 |
### System info
* Playwright Version: [v1.32.3]
* Operating System: [All]
* Browser: [All]
* Other info: Typescript version is ^5.0
### Source code
* I provided exact source code that allows reproducing the issue locally.
**Link to the GitHub repository with the repro**
https://github.com/mattjennings/... |
Hi! @aslushnikov sorry to bother, Just linked to this issue #17670 \- I could
see it stopped happening when using less workers. I was using 8 and setting
only 2 or 4 the tests pass constantly.
Is there any where I can look at ? Could that be due to the application not
behaving properly when running multiple tests at... | 0 |
##### ISSUE TYPE
* Feature Idea
##### COMPONENT NAME
os_router_module
##### ANSIBLE VERSION
Master, just checked https://github.com/ansible/ansible-modules-
core/blob/devel/cloud/openstack/os_router.py
##### SUMMARY
Currently there is no way of adding static routes with the os_router module
|
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
ansible-vault
##### ANSIBLE VERSION
ansible 2.3.0.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
python version = 2.7.13 (default, Jan 12 2017, 17:59:37) [GCC 6.3.1 20161221 (Red H... | 0 |
When building a native addon for Electron on Windows, node-gyp downloads the
`.lib` files for linking from `https://atom.io/download/electron/<version
number>/win-x86/node.lib`. This link is now accessible for version numbers
4.0.0 and above, and 404 for lower version numbers. I assume that is
unintentional because I... |
### 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.
### Problem Description
Electron's docs ind... | 0 |
Method/accessor decorators use `defineProperty` and
`getOwnPropertyDescriptor`, which are not allowed in ES3. But class and
property decorators don't use them. So class/property decorators can be
allowed when targeting ES3.
It would be helpful. E.g. I must support old browsers and I use the property
like methods ins... |
Update: This issue is now only for the following collections:
* MediaList
* StyleSheetList
* CSSRuleList
Originally it was about NodeList as well, but that was fixed (along with
DOMTokenList) in #3393
* * *
Original:
var paragraphs = document.querySelectorAll("p");
for (let p of paragraph... | 0 |
Failed CHECK while running tests here https://mac-
ci.electronjs.org/blue/organizations/jenkins/Electron%20org%2Felectron/detail/PR-11321/3/pipeline/
I'm not sure on what test exactly, and if the failure is stable.
ok 163 BrowserWindow module "webPreferences" option nativeWindowOpen option retains th... |
* Electron version: 1.6.7
* Operating system: Linux 4.9.0-2 x64
### Expected behavior
`webContents.create().executeJavaScript()` should not hang and crash.
### Actual behavior
Running the following code in a minimal electron app (nothing but the
`index.html`, basic `index.js` and `app.js` results in a hang an... | 1 |
### Bug report
**Bug summary**
I'm fairly new to matplotlib and I was trying to create a confusion matrix
following the tutorial here: https://scikit-
learn.org/stable/auto_examples/model_selection/plot_confusion_matrix.html. I
downloaded the example code and when I ran it, the plots looked slightly
cropped on the ... |
### Bug report
**Bug summary**
The very top and bottom of the heatmaps are getting truncated to 1/2 height in
version `3.1.1`. This does not happen for version `3.0.3`.
This is the code from a Jupyter Notebook
import matplotlib
import pandas as pd
import numpy as np
import seaborn as sb
... | 1 |
Hi,
I have (mocha) specs which have the same filename as the subject under test
and only another extension. Example: subject.js and subject.spec.js. Since the
AMD and the System formatter inherit from the Default formatter all file
extensions are removed. This results in duplicate module ids. How about making
the re... |
> Issue originally made by @loganfsmyth
### Input code
function fn(){
true;
// Comment
false;
}
### Description
Output:
"use strict";
function fn() {
true;
// Comment
false;
}
with map:
... | 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
branch: master
### Steps to reproduce this issue
When the rc.getParameters() return null,cc.getParameters() will be nu... |
* 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
* Operating System version: window7
* Java version: 1.8
### Steps to reproduce this issue
... | 0 |
See http://jsfiddle.net/PnLkH/1/.
Using contextual classes (e.g. `panel-warning`) on `panel`s doesn't style
their `panel-footer` of the right color, whereas it does for `panel-heading`s.
|
Perhaps this was just an oversight, but I was surprised to see that the
.panel-footer class isn't set to pick up the contextual panel styles.
Since the existing contextual panel styles (.panel-primary, etc.) don't just
affect the background and border colors of .panel-heading, but also the border
color for .panel it... | 1 |
**Current behavior**
According to Victor Savkin article when using the OnPush strategy if the
component Input does not change, there is no need to check the component’s
template. But in my example when I am clicking on the trigger button and the
Input does not change the _ngAfterViewChecked_ hook still running.
**... |
**I'm submitting a bug report**
**Current behavior**
Published code & umd bundles from npm such as `@angular/platform-
browser/bundles/platform-browser.umd.js` from `@angular/platform-browser`
include extra licenses and empty abstract methods.
**Expected behavior**
Ideally our .umd bundles would not include th... | 0 |
THe docker network interface cbr0 does not get created after rebooting a
minion on gce.
|
When a minion reboots, docker tries to start before salt has created the cbr0
bridge device. Docker gives up and fails to start.
From dcoker's log:
364aa5b3.init_networkdriver()] bridge not found: cbr0
net: no such interface
[364aa5b3] -job init_networkdriver() = ERR (1)
Eventually salt makes the bridge and d... | 1 |
I experience these strange behavior of `unstack()` when its `level` parameter
gets a list instead of string.
This changes `dtype` of some columns from numeric to object, which is
obviously a worrying change.
I am wondering if this a bug or there is something I am missing about dealing
with this.
I am on pandas ... |
shouldn't the last two examples remove the innermost index level?
In [69]: from pandas.util.testing import makeCustomDataframe as mkdf
...: mkdf(4,2,r_idx_nlevels=1).set_index("C_l0_g0",append=True,drop=False)
Out[69]:
C0 C_l0_g0 C_l0_g1
R0 C_l0_g0 ... | 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.8
* Operating System version: Windows 10
* Java version: 1.8
### Steps to reproduce this iss... | 0 | |
When we add new `.py` files, we are careful to add underscores to the file
names to ensure everyone sees at a glance that this is not a new public
namespace. However, we have lots of files that are missing that underscore.
This is only because of historical reasons; in the early days of SciPy no one
paid attention to... |
I should mention first that this is an enhancement request rather than a bug
issue.
The return type of the `stats.ttest_ind` function, testing for equal means two
samples, comprises the t statistic and its associated p value. However, the
degree of freedom parameter, computed in the function to estimate the p value
... | 0 |
## Bug Report
### Development environment
Spring Boot: 2.5.4
MyBatis Spring Boot Starter: 2.2.0
ShardingSphere JDBC: 5.0.0-beta
MySQL: 8.0.23
### Which version of ShardingSphere did you use?
5.0.0-beta
### Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy?
shardingsphere-jdbc-core
##... |
Hi,
If you're interested in this one, please comment below so I can assign it to
u. :)
### Background
`OptimizeContextFactory` is created in the constructor of
`StandardMetaDataContexts` with `metaDataMap`.
If you dive into the constructor of `OptimizeContextFactory` and
`MetaDataContextsBuilder`, you will find ... | 0 |
I am facing an error when running `next build` on my project with Inferno.JS.
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
Build the project without errors.
## Current Behavior
yarn run v1.5.1
$ next build
> Using external ... |
# Feature request
While I'm analyzing my bundle I realize that there are some packages (in my
case huge momentjs with full languages) in both `_app` and in some pages.
IMHO there are no reasons to generate _app bundle. Merging the content of _app
with common would have this benefits:
* remove 1 HTTP request... | 0 |
The `script.sparse.linalg` module fails to import when running natively on an
Apple M1 machine (`arm64-apple-darwin`). It segfaults while importing the
fortran `_arpack` module. I encountered this while trying to do a density plot
in pandas, but it's easy to reproduce separately.
(Thanks for scipy!)
#### Reproducin... |
The `fmin_cobyla` algorithm can terminate without actually satisfying the
constraints.
Indeed, it has a `maxcv` return value that reports the constraint violation.
See e.g. http://stackoverflow.com/questions/18782092/python-scipy-
optimization-issue-fmin-cobyla-one-constraint-is-not-respected
http://pastebin.com/g... | 0 |
# What / Why
`npm install` fails to resolve two version ranges of one dependency into a
version that is compatible with both requirements.
I have to use the unsafe `--legacy-peer-deps` flag to bypass this error.
## When
I try to add another package to a project with `"react": "^16.9.0"` I get a
conflict, even tho... |
### Is there an existing issue for this?
* I have searched the existing issues
### This issue exists in the latest npm version
* I am using the latest npm
### Current Behavior
When I execute `npm install`, It's download the dependencies first but not
`preinstall` script.
### Expected Behavior
1. `preinst... | 0 |
gc handles struct/array comparisons by short-circuiting if it finds any unequal
fields/elements, and this behavior is noticeable because the Go spec requires
comparisons to panic in some cases; e.g., see http://play.golang.org/p/5jqSUAT1xC
However, unlike short-circuiting for evaluating ... |
What steps will reproduce the problem?
1. Try to gofix a file containing an old-style (r60.3) "time" reference with a
comment after it, e.g. example below or src/pkg/crypto/tls/generate_cert.go
What is the expected output?
file.go: fixed time+fileinfo
What do you see instead... | 0 |
I can't match using a constant that was initialized using a byte string
literal:
const ARRAY1: [u8; 0] = [];
const ARRAY2: [u8; 0] = *b"";
fn main() {
match [] {
ARRAY1 => {}
ARRAY2 => {}
}
}
This gets an error:
a.rs:2:25: 2:... |
Constants that dereference string literals cannot be currently used for
pattern matching as show below:
const A: [u8; 4] = *b"fooo";
fn main() {
match *b"xxxx" {
A => {},
_ => {}
}
}
Such constants can be used in other contexts without any problem. ... | 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.6
* Operating System version: xxx
* Java version: 1.8
dubbo 2.7.6 版本和之后的版本,当使用 @reference 注解... |
* 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: ubuntu 18.04
* Java version: 1.8
### Steps to reproduce this i... | 0 |
## Multi-values insertion bug with key-generator in sharding databases/tables
We can reproduce the bug in a rule:
> shard db by `id%2` : ds_0,ds_1
> shard table by `id%3` : user0,user1,user2
### Case 1, literal multi-values insertion
Execute:
`insert into user(`name`,`age`) values
('name-11',11),('name-12',1... |
## Background
At present, when community users use ShardingSphere, they report that due to
the large number of managed data sources, a large number of single tables are
loaded into the memory by default, resulting in slower startup speed and
taking up more memory space.
Considering that in the data source registere... | 0 |
Repro:
* Use "View/Toggle Menu Bar" to hide the menu bar
* Press and release "alt", the menu bar appears
* Try using the arrow keys or mnemonic keys ('F' for 'File' menu)
Actual: there is no way to interact with the menu bar from the keyboard
Expected: same as the Hide Menu Bar extension for VS, where press... |
Navigating between File/Edit/View/Goto/Help using left and right arrow keys
does not work. I can reproduce the problem in at least Windows 8 and Linux
Mint Cinnamon 17.2.
* navigation using arrow keys works in submenus
* on Windows it is possible to switch between the menus using mnemonics (ALT-e to switch from ... | 1 |
[Enter steps to reproduce below:]
1. Open atom
2. Go to File > Open... > Select "projects" folder > Open random file from tree
The file opens, but several red error balloons show up as well.
**Atom Version** : 0.166.0
**System** : Mac OS X 10.10.1
**Thrown From** : Atom Core
### Stack Trace
Uncaught Err... |
[Enter steps to reproduce below:]
1. start an atom editor with save-session plugin on
2. save action might cause this error
**Atom Version** : 0.166.0
**System** : Mac OS X 10.10.1
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: ENOENT, open 'undefined//Users/alopex/.atom/project.json'
... | 1 |
I had this issue on several machines running Windows 8.1 x64. `atom.exe` is
flagged due to suspicious activities.
The antivirus programs tried:
* Avast
* Bitdefender
|
Atom version: 0.136.0
From atom 0.136.0, the following two files are falsely detected as:
Win32:Malware-gen:
atom-0.136.0\build\windows\Setup.exe
atom-0.136.0\build\windows\Update.exe
Avast version: 2015.10.0.2206
Virus signatures version: 141021-0
I will also submit this to avast.
| 1 |
ansible 0.8 (devel 761330b125) last updated 2012/10/04 09:19:51 (GMT +200)
host variables specified in inventory file aren't stored in _hostvars_ :
$ cat hosts
[local]
127.0.0.1 person="John.Q" ansible_python_interpreter=/usr/bin/python xxxx="foo"
---
-... |
From @simonpie on 2016-08-22T19:28:14Z
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
* lineinfile
##### ANSIBLE VERSION
ansible 2.1.1.0
config file = /Users/simonpie/Documents/WSO2/1.10/Ansible/ansible.cfg
configured module search path = Default w/o overrides
##### CONFI... | 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.7.2
* Operating System version: windows 10 / CentOS release 6.9 (Final)
* Java version: 1.8.0_1... | 0 |
### Reproducing code example:
import numpy as np
a = np.array([1, 2, 3])
b = np.array([0.5, 0.5, 0.5])
c = a - b
# c = [0.5, 1.5, 2.5]
# problem is here:
n = np.array([0, 0, 0]) # n will be an integer array and will round c numbers automatically
n[0] = c[0]
... |
### Reproducing code example:
Create a file called `string.py` with the following content
import numpy as np
if __name__ == "__main__":
pass
and run it via `python3 string.py`.
### Error message:
Traceback (most recent call last):
File "/home/user/Desktop/string... | 0 |
##### ISSUE TYPE
* Feature Idea
##### COMPONENT NAME
##### ANSIBLE VERSION
ansible 2.4.0
config file = None
configured module search path = ['/Users/ecosta/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
ansible python module location = /usr/local/lib/python3.6/s... |
##### ISSUE TYPE
* Feature Idea
##### COMPONENT NAME
redhat_subscription
##### ANSIBLE VERSION
ansible --version
ansible 2.2.1.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
##### OS / ENVIRONMENT
RHEL 7.3
##### SUMMARY
As i... | 1 |
Challenge Escape Sequences in Strings has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/51.0.2704.84 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
var myStr = "Here ... |
Challenge adjust-the-padding-of-an-element has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
Code will not reload on phone di... | 0 |
#### Description
For binary tasks with wrapped down custom scoring functions by the
`metrics.make_scorerer`-scheme `roc_auc_score` is behaving unexpectedly. When
requiring the probability output from a binary classifier, which is a shape( n
, 2) object, while the training/testing lables are an expected shape (n, )
i... |
Related to #2755 and #7346 .
`BaseEstimator.get_params` has logic which:
* sets a warnings filter to always show DeprecationWarnings. Always. Even if they're not from scikit-learn, or triggered outside of `get_params`.
* refuses to return from `get_params` a parameter (as defined by `BaseEstimator._get_param_na... | 0 |
I've run into a strange problem involving both `tf.train.Saver` and an input
pipeline based on `tf.train.string_input_producer()`. It seems as though the
`num_epochs` parameter to `tf.train.string_input_producer()` stops working as
intended after loading a saved model.
I'm currently using v0.8 but I suspect this is ... |
The `tf_upgrade_v2` tool fails to parse commands with common IPython functions
(for example, `!pip install tf-nightly` and `%matplotlib inline`).
ERROR: Failed to parse.
Traceback (most recent call last):
File "/usr/local/lib/python3.6/dist-packages/tensorflow/tools/compatibility/ast_edits.py... | 0 |
#### Summary
I want the AxiosRequestConfig interface to be this:
{
url?: string;
method?: string;
baseURL?: string;
transformRequest?: AxiosTransformer | AxiosTransformer[];
transformResponse?: AxiosTransformer | AxiosTransformer[];
headers?: any;
params?: any... |
#### Summary
Allow for typesafe extension of AxiosConfiguration
#### Context
Allow for the following user case (without the cast)
interface Config extends AxiosRequestConfig {
start?: Date
}
const requestConfig: Config = {
...
}
const instance ... | 1 |
**TypeScript Version:**
1.8.7
**Code**
for
**Expected behavior:**
Emit something that's not an infinite loop. It's a syntax error so it should
probably stay a syntax error in the output js.
**Actual behavior:**
A for loop with no parameters or body emits this:
for (; ; )
... |
Consider this code:
class Super {
_view:Element;
constructor(view?:Element) {
this._view = view || document.createElement('div');
};
}
class Inherits extends Super {
test = 1;
view:Element;
constructor() {
let view = document.cr... | 0 |
This is the issue in Tensorflow tensorflow/tensorflow#50612
And this is my PR tensorflow/tensorflow#50844
Now the issues of keras are done here. If it's necessary I can duplicate the
issue here.
|
I am getting unexpected behaviour when using mean_squared_error loss.
My original issue was that fit_generator was reporting an incorrect validation
loss. I was unable to reproduce that bug in a gist that I can make public, but
I was able to demonstrate an incorrect training loss.
Bafflingly, if I change max_queue_... | 0 |
Platform: OS X 10.10
Atom Version: 0.201.0
Description:
Changing tabs using the mouse button (clicking on them) steals the focus from
the editor window and requires another click into the text to continue
writing.
Expected behavior:
Text editor regains focus after tabs are switched.
Note:
Changing tabs usi... |
When you are working in multiple files and going back and forth between the
file tabs, the cursor position for that tab is forgotten and you can't type
text right away.
This is rather frustrating behaviour, as it forces you to grab your mouse and
click somewhere in the code before you can start typing.
Sublime reme... | 1 |
## Bug Report
**Current Behavior**
I've updated to 7.5 and have been following the developments with issues that
should have been resolved with
https://github.com/babel/babel/releases/tag/v7.5.1 however after stripping and
reinstalling everything babel-related, I'm still getting this error.
**Babel packages**
@... |
### Input Code
const user = { name: 'Max', password: '123', _id: 1, __v: 42 }
const fields = ['__v', 'password']
const filtered = fields.reduce((a, c) => (({ [c]: _, ...rest } = a), rest), user)
this code compiled and works as expected on **node** , but fails on **babel**
### Babel/Babylon Co... | 0 |
If you hover over an `<a>` with a tooltip within a `.btn-group` the tooltip
will inserted between the `<a>` and its descendants. Because this css rule
.btn-group > .btn + .btn {
margin-left: -1px;
}
doesn't apply any longer to the following `<a>` you'll see an additional grey
border... |
This change breaks the possibilities of having tooltips and popovers on table
cells.
`88b1e44`#L3L1086
Please let me know the reasoning behind the change of strategy so that I get
an understanding of If I may have to change my code.
Thanks
| 1 |
### Vue.js version
v2.0.0-alpha.8
### Reproduction Link
https://jsbin.com/dajovivoye/1/edit?html,js,output
### Steps to reproduce
1. new Vue
2. assign data
### What is Expected?
### What is actually happening?
A tag with `v-if` will also has style attribute
|
### Version
2.6.8
### Reproduction link
https://github.com/Cameron637/vue-runtime-error-reproduction
### Environment info
Environment Info:
System:
OS: macOS 10.14.3
CPU: (8) x64 Intel(R) Core(TM) i7-4870HQ CPU @ 2.50GHz
Binaries:
Node: 10.15.2 - ~/.nvm/vers... | 0 |
### Is there an existing issue for this?
* I have searched the existing issues
### This issue exists in the latest npm version
* I am using the latest npm
### Current Behavior
In a package `foo` with a bin, run `npx foo`, and you'll see `sh: foo: command
not found`.
### Expected Behavior
In a package `foo`... |
# What / Why
I am behind an authenticated corporate proxy.
To set the proxy i am using
npm config set proxy http://username:password@proxy.company.com
npm config set https-proxy http://username:password@proxy.company.com
I had to reset the passord but forgot to reset it for npm.
When runni... | 0 |
# Bug report
**What is the current behavior?**
When I try to import `react-redux` from my client code the server throws this
error:
$ node dist/ssr-server.js
internal/modules/cjs/loader.js:1153
throw new ERR_REQUIRE_ESM(filename, parentPath, packageJsonPath);
^
Error... |
# Bug report
**What is the current behavior?**
When saving a file it appears Webpack is recompiling twice.
**If the current behavior is a bug, please provide the steps to reproduce.**
Create a barebones project test.zip. Run Webpack in watch mode. Save a file.

func main() {
template.Must(template.New("test").Parse(text)).Execute(os.Stdout, nil)
}
... |
by **ryguillian** :
I'm running Go 1.2.
My issues are about io.MultiReader: I went to go use MultiReader and its behavior
confused me.
MultiReader's documentation sez:
“MultiReader returns a Reader that's the logical concatenation of the provided input
readers. They'... | 0 |
Dear all, I am fine-tuning T5 for Q&A task using the MedQuAD (GitHub -
abachaa/MedQuAD: Medical Question Answering Dataset of 47,457 QA pairs created
from 12 NIH websites) dataset. In the dataset, there are many long answers
with thousands of words. I have used pytorch_lightning to train the T5-large
model. I have tw... |
## Environment info
* `transformers` version: 4.9.0.dev0
* Platform: Linux-5.4.0-1043-gcp-x86_64-with-glibc2.29
* Python version: 3.8.10
* PyTorch version (GPU?): 1.9.0+cpu (False)
* Tensorflow version (GPU?): 2.7.0-dev20210705 (False)
* Flax version: 0.3.4 (tpu)
* Jax version: 0.2.16
* JaxLib versio... | 0 |
Hello 🖐, can i reduce the amount of duplicate information in the log?
Error: expect(received).not.toBeVisible()
Call log:
- waiting for selector "//div[div[@class="eos-date-picker-wrapper"]] >> .SvgDot"
- selector resolved to <svg width="1em" height="1em" class="SvgDot" font-siz…>…</svg>... |
There appears to be an issue with running playwright on Linux with the
`playwright install --with-deps chromium` command. Running with `playwright
install` and installing everything works fine. There appear to be lots of
others having similar issues so it's probably not just a playwright issue, but
I'm wondering why ... | 0 |
When the first task sent by a client on a fresh celery setup is a group task
(or possibly any set of tasks processed concurrently by multiple workers), and
PostgreSQL is used as the result backend, the workers fail with an
`IntegrityError` due to a duplicate key.
## Steps to reproduce
1. Send a group task to mult... |
# Checklist
* I have verified that the issue exists against the `master` branch of Celery.
* This has already been asked to the discussion group first.
* I have read the relevant section in the
contribution guide
on reporting bugs.
* I have checked the issues list
for similar or identical bug reports.... | 0 |
It would be great if we could use v-bind with an object of attributes to pass
props to a component.
<component is="component" v-bind="data"></component>
Currently we need to explicitly state the props we are passing to the
component.
<component is="component" :prop-a="propA" :prop-... |
### What problem does this feature solve?
It's very difficult to read the docs for long time due to light theme. Please
made a dark theme toggle
### What does the proposed API look like?
.
| 0 |
var x = function() {
if (!y) {
y = 1;
}
};
x();
var y = null;
The binding object for y:
constant: true,
references: 0,
referenced: false,
expected:
constant: false,
references: 2,
referenced: true,
|
This results in a constant binding:
bar = 2;
var bar = 1;
So does this:
function foo() {
bar = 2;
}
var bar = 1;
According to `scope.bindings.bar.constant`, but I would expect it to be
`false`.
(Babel 5.8.25)
| 1 |
Version: 1.0.0
OS Version: Microsoft Windows NT 10.0.19041.0
IntPtr Length: 8
x64: True
Date: 08/20/2020 15:20:45
Exception:
System.ObjectDisposedException: Cannot access a disposed object.
Object name: 'Timer'.
at System.Timers.Timer.set_Enabled(Boolean value)
at System.Timers.Timer.Start()
at Po... |
Popup tells me to give y'all this.
2020-07-31.txt
Version: 1.0.0
OS Version: Microsoft Windows NT 10.0.19041.0
IntPtr Length: 8
x64: True
Date: 07/31/2020 17:29:59
Exception:
System.ObjectDisposedException: Cannot access a disposed object.
Object name: 'Timer'.
at System.Timers.Timer.set_Enabled(Boo... | 1 |
## ShardingSphere v5.1.2 XA transaction has errors, When spring boot
integrations start running.
## The running logger info:

 where the problems are also clearly stated.
The motivation beh... |
`astype/convert_objects` should be able to do this type of coercion from
string complex looking
In [45]: Series(['1.0+5j','1.5-3j']).apply(lambda x: np.complex(x))
Out[45]:
0 (1+5j)
1 (1.5-3j)
dtype: complex128
http://stackoverflow.com/questions/18919699/python-pandas-com... | 0 |
Hi, the following attempt to take the gradient of a function involving a
matrix exponential
import jax.numpy as jnp
import jax
from jax.scipy.linalg import expm
def foo(mat):
return jnp.sum(expm(mat))
grad = jax.grad(foo)(jnp.eye(2))
is failing with the following... |
The pull request #2062 implements the jvp of the matrix exponential by using
the Fréchet derivative. I think the vjp can be easily added by transposing the
input matrix in `expm_frechet`:
defvjp(expm, lambda g, ans, matrix: expm_frechet(_T(matrix), g, compute_expm=False))
I can test and implement this... | 1 |
Glide Version: 4.2.0
Integration libraries: OkHttp3
Device/Android Version: SM-G5510;Android 6.0.1,level 23
Wrap Code:
public void onlyLoadAsGifBitmap(Context context, final View imageView, final String url, int width, int height, final int placeHoldId){
if(isActivityDestroy(context)){... |
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'int android.graphics.Bitmap.getWidth()' on a null object reference
at com.bumptech.glide.load.resource.gif.GifFrameLoader.getWidth(GifFrameLoader.java:127)
at com.bumptech.glide.load.resource.gif.GifDrawabl... | 1 |
The "fetch" function does not allow to modify the "host" in the request
header, resulting in the inability to implement the proxy request of the
reverse proxy server.
This can be done in nodejs.
This is not possible in deno.
import { serve } from "https://deno.land/std@0.144.0/http/mod.ts";
impor... |
Hey, I've look for the similar problem in stackoverflow and here in the
repository but I haven't found anything. I hope it's not a duplicate.
I'm running subprocess command using code like this:
const process = Deno.run({ cmd, stdout: "piped", stderr: "piped" });
const buffer = await process.... | 0 |
**TypeScript Version:**
1.8.7
**Issue**
I am developing with Rails and I want to use Typescript to compile to
Javascript. In IntelliJ IDEA I have enabled the compilation of Typescript to
Javascript.
The files are properly compiled with both `SourceName.ts`, `SourceName.js` and
`SourceName.js.map` files generate... |
**TypeScript Version:**
1.8.7
**Issue**
I am developing with Rails and I want to use Typescript to compile to
Javascript. In IntelliJ IDEA I have enabled the compilation of Typescript to
Javascript.
The files are properly compiled with both `SourceName.ts`, `SourceName.js` and
`SourceName.js.map` files generate... | 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.0-SNAPSHOT
* Operating System version: mac pro
* Java version: 1.8
### Step to reproduce thi... |
* [yes] I have searched the issues of this repository and believe that this is not a duplicate.
* [yes] I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: excute "git clone https://github.com/apache/dubbo.git" just now
* Operating System vers... | 0 |
## 🐛 Bug
Running a 2d convolution (no padding, stride=1) on a 3x1 input, sliced from a
3x3 tensor, and a 3x1 weight, sliced from a 3x3 tensor. When trying to run it
on CPU the convolution result is wrong, but when moving to GPU (by adding
.cuda() after the tensors), the result is correct!
## To Reproduce
Run the ... |
## 🐛 Bug
If I load convolution weights from a NumPy float32 array, the result of the
forward pass does not match that of a layer with the same weights loaded from
a NumPy float64 array or of a Keras convolution layer with the same weights.
Casting the layer to `double` fixes the discrepancy, even after casting back... | 1 |
i have copied the code in the ”Usage“ part to my project,and i have imported
the react.js and JSXTransformer.js in my project. But why there's no button
appear in the browser?
|
When I customized the `fontSize` of my `Input`s, side-by-side `Select` and
`TextField` components became vertically misaligned by one pixel:

The JSS for `Select` overrides the `height`, `lineHeight`, `pad... | 0 |
**Migrated issue, originally created by mrudula chougule**
Hi,
I am having python+gtk application. I'm currently porting my python
application from Ubuntu 10.04 to 14.04. I have sqlalchemy version of
0.8.4-1Ubuntu2.1 on Ubuntu 14.04.
When trying to run my application, when it is trying to insert column into
d... |
**Migrated issue, originally created by Ashley Chaloner**
This bug appears when running in pypy but not cpython. It appears when using
sqlite or postgres backends (these are the only two I've tested with). The bug
does not cause a stack trace, but results in duplicate database rows being
returned in non-identical s... | 0 |
**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
... |
See example: http://plnkr.co/edit/9GdLbXM0mh5zHPKhcwCL?p=info
Both of these should parse correctly:
<div *bsPane="title exp"></div>
<div *bsPane="title: exp"></div>
Given:
@Directive({
selector: '[bsPane]'
})
class Foo {
@Input() bsPaneTitle: string;
}
... | 1 |
## Steps to Reproduce
Launch an iPhone simulator, then in the flutter repo:
1. `cd examples/layers`
2. `flutter run -t services/lifecycle.dart`
Expected behaviour: launches app on simulator.
Actual behaviour: fails to launch, with messages:
% flutter run services/lifecycle.dart
Launching ... |
## Steps to Reproduce
1. Connect an Android phone
2. flutter run -v
## Logs
[ +80 ms] executing: [/Users/johan/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +70 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] executing: [/U... | 0 |
# Environment
Windows build number: 10.0.18363.836
PowerToys version: v0.18.0
PowerToy module for which you are reporting the bug (if applicable): PowerToys Run
# Steps to reproduce
1. Open Run with alt+space
2. Search for a file, for instance _DNI.jpg_
3. Run finds the file
4. S... |
# Environment
Windows build number: Microsoft Windows [Versione 10.0.19041.264]
PowerToys version: 0.18.0
PowerToy module for which you are reporting the bug (if applicable): launcher
# Steps to reproduce
search a file, press enter
# Expected behavior
I'm expecting that the file will b... | 1 |
### Description
Running on MacOS 12.2.1,
Scrapy 2.6.2 breaks with SSL error:
2022-09-26 15:22:01 [twisted] CRITICAL:
Traceback (most recent call last):
File "/Users/barney/git/netail_code/netail-crawling-infra/crawling/netail-crawler/.venv/lib/python3.10/site-packages/twisted/internet/def... |
WHAT THE F
does not exist in pyopenssl
no help anywhere
| 1 |
Challenge Waypoint: Local Scope and Functions has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML,
like Gecko) Chrome/47.0.2526.106 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
function m... |
Challenge Waypoint: Local Scope and Functions has an issue.
User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.48 Safari/537.36`.
The test asks you to remove the second console.log() to pass. When you remove
the second console.log() it still fail... | 1 |
**Elasticsearch version** : 2.3
**JVM version** : 1.8.0_25
**OS version** : OSX 10.11.5
**Description of the problem including expected versus actual behavior** :
**Steps to reproduce** :
1. Define a nested object type in your mapping
2. Index some documents
3. Perform a nested query with a query_string o... |
for the record, i think we should remove this lowercasing option completely in
parsers, disable it, and let the analysis chain take care. For
multitermqueries, its a little tricky, which subset of the filters should be
used? For example lowercasing is reasonable, stemming is not.
But lucene already annotates each an... | 1 |
I think I might have located the root of #8698
It seems that `merge_duplicate_nodes` is the reason that `quantize_nodes`
malfunctions.
Whatever I do, whenever I apply a `merge_duplicate_nodes` somewhere during a
graph transformation, the output becomes completely indifferent to the input.
(Unfortunately) I don't... |
Hello everyone,
have the following problem after the tensorflow installation via pip:
`>>> import tensorflow as tf I tensorflow/stream_executor/dso_loader.cc:105]
successfully opened CUDA library libcublas.so locally I
tensorflow/stream_executor/dso_loader.cc:105] successfully opened CUDA library
libcudnn.so locall... | 0 |
In #7934 the support for this new flow call type parameters has been
implemented, but it was guarded by some check, namely that the file is
actually checked by flow.
The problem is that the check doesn't work properly for us, where the `flow`
pragma comes after a copyright comment, eg:
/* This Source... |
## Bug Report
**Current Behavior**
When the @flow pragma is not specified as the first comment of a JS or JSX
file, babel parser will not be able to parse any code that passes type
arguments.
**Input Code**
// arbitrary comment
// @flow
const n: number = 5; // this works fine
... | 1 |
The Git menu has a couple items that use terminology that doesn't originate
from within Git. ("Sync", "Clean All", "Publish"? What are these going to do?)
Even when they do, it's still not always clear what exactly will happen when
you click them. ("Pull" pulls from where? Origin? Using its branch of of the
same name... |
Why does this action have a background while all the other do not have one?
Setting to feb for discussion

| 0 |
This example uses `rust-crypto 0.2.14`. Failing to import the `Encryptor`
trait that implements `encrypt` causes an unexpected error message. The trait
isn't private and importing it compiles as expected.
extern crate crypto;
use crypto::{ buffer, aes, blockmodes };
use crypto::buffer::{ R... |
My attempt to call `Any::get_type_id()` and use its return value of as an
instance of `fmt::Debug` does not work without import of `std::any::TypeId`
_struct_ : http://doc.rust-lang.org/std/any/struct.TypeId.html
Example code:
use std::thread;
// use std::any::TypeId; // uncomment this line to mak... | 1 |
sub2ind and ind2sub are implemented in a very slow way. Checkout my
implementation and compare run time to the julia built in implementation. I
observed factors of up to 50
julia> include("test_sub2ind.jl")
Julia sub2ind 2D elapsed time: 3.071918131 seconds
My sub2ind 2D elapsed time: 0.061298908 seconds
Julia... |
I'm updating ApproxFun and this caught me by surprise:
abstract Foo
julia> (f::Foo)(x)=x
ERROR: cannot add methods to an abstract type
in eval(::Module, ::Any) at ./boot.jl:267
Is this intentional? Is there a way to get around this other than define for
each subtype:
julia>... | 0 |
##### Issue Type:
Bug Report
##### Ansible Version:
ansible 1.5.4
##### Environment:
RHEL 5/6
##### Summary:
When copying files to NFS, they fail with the following error:
failed: [myhost] => {"cur_context": ["system_u", "object_r", "nfs_t", "s0"],
"failed": true, "gid": 0, "group": "root", "input_was": ["sys... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
handlers listen
##### ANSIBLE VERSION
2.2
##### CONFIGURATION
N/A
##### OS / ENVIRONMENT
N/A
##### SUMMARY
While writing test for handlers listen, I found inconsistencies in how
handlers are marked for execution:
If handlers listen, i... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.