text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
**I'm submitting a ...** (check one with "x")
[x] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
... |
* **I'm submitting a ...**
* bug report
* feature request
* support request => Please do not submit support request here, see note at the top of this template.
**Current behavior**
An exception is thrown and gets printed in the browser's console. If there are
other exceptions thrown afterwards, they don't c... | 1 |
Issue Type:
Bug Report
Ansible Version:
1.9.0.1
Environment:
Managing CentOS 6 from MacOS X 10.10.2
Summary:
The service module is failing to start an upstart service on CentOS 6
Steps To Reproduce:
ansible hostname -m service -a 'name=servicename state=started'
Expected Results:
I expected ansible to star... |
**Issue Type:**
Bug Report
**Ansible Version:**
ansible 1.7.2 (1.7.2+dfsg-2~bpo70+1)
**Environment:**
Debian 7.7
**Summary:**
Today i try to split our grown ansible roles in more simple roles.
After do some work i realize that after rewrite and set some dependencies in
our roles, some roles got executed ... | 0 |
by **quaggy** :
What steps will reproduce the problem?
1. Compile bug.go
2. Run bug
What is the expected output?
EOF EOF
What do you see instead?
<nil> EOF
What is your $GOOS? $GOARCH?
darwin and amd64
Which revision are you using?
7d7941a84d... |
by **mikaelbrg** :
When building my project using "go build" (or "go install"), I get
an error "main.init: nosplit stack overflow":
C:\Users\mikaelbe\work\tigerslam>go build robot
# robot
main.init: nosplit stack overflow
120 guaranteed after split check in main.ini... | 0 |
There are four IDCount functions:
* THREE.GeometryIdCount()
* THREE.MaterialIdCount()
* THREE.Object3DIdCount()
* THREE.TextureIdCount()
They are part of the API (can be accessed via THREE.GeometryIdCount() etc. )
so they should be documented.
The question is, where? Should they get a separate page, or be ... |
When loading the website on an Android phone with a Adreno 300 series, get a
weird black glitch in diffuse textures causing black flickering. I am using
MeshPhongMaterial for the meshes with point lights.
The same is reproduced in the threejs examples from the website, which i am
giving links for instead of a jsfidd... | 0 |
Please goto this uploaded project to reproduce
https://github.com/nhhockeyplayer/build-beta
Here is TSC output (thanks for taking a look)
C:\apache-tomcat-8.0.23\webapps\ROOT\new\gulp.connect>tsc
node_modules/angular2/src/core/change_detection/parser/locals.d.ts(3,14):
error TS2304: Cannot find name 'Map'.
no... |
**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 |
### System info
* Playwright Version: [v1.33.0]
* Operating System: [M1 macOS 13.3.1 (a)]
* Browser: [WebKit]
* Other info:
This is sort of a 2 parter but I believe they are part of the same issue. When
I run the test with Safari desktop, the test always fails because the after
hook cannot close the browser... |
### System info
* Playwright Version: v1.32.1
* Operating System: macOS 13.2
* Browser: Chromium
* Other info:
### Source code
* I provided exact source code that allows reproducing the issue locally.
https://github.com/pdyck/short-link-management/blob/main/playwright.config.ts
**Config file**
... | 0 |
**Do you want to request a _feature_ or report a _bug_?**
Bug
**What is the current behavior?**
Part of our dependency tree:
@client/root@2.3.5
├─┬ @client/base@2.3.15
│ └─┬ @client/app-files@1.8.8
│ └─┬ pixel@0.0.4
│ └─┬ pixel-util@0.0.2
│ └── mime@1.6.0
├── mi... |
This would be a nice feature for the debug view. :)
| 0 |
# Environment
Windows build number: 10.0.18362.175
Windows Terminal version (if applicable): 0.2.1715.0
German Windows installation and keyboard.
# Steps to reproduce
Try to type an at-sign by pressing `ALTGR+Q`. Doesn't matter if it's Cmd,
Ubuntu or PowerShell
# Expected behavior
... |
**Your Windows build number:**
10.0.18362.86
**What you're doing and what's happening:**
Trying to enter the `@` sign on a Swedish keyboard in a PowerShell console
using `Alt Gr` \+ `2`.
See animated gif:
 {
ImageEntity image = list.get(position);
ImageView imageView = holder.imageView;
imageView.setImageDrawable(null);
Gli... |
Glide sometimes doesn't load image

please help, already have searched other issues but it has not helped.
@Override
public void onBindViewHolder(final ImagesViewHolder holder, final int... | 1 |
When a dashboard is exported not all the associated datasets are exported.
The datasets used by all the charts are exported but the datasets used only in
native filters are missing in the exported zip file.
### Expected results
The dashboard export should contain all the datasets used in the dashboard
including t... |
Column selection is not saved in export file, and saving dataset id in export
file doesn't seem to be a correct approach
### Expected results
Import a dashboard with native filter to a new workspace should work
seemlessly.
### Actual results
1. Selected column is not present in the export file, resulting in new... | 1 |
I wrote a script and tried to execute it. The python interpreter stopped the
execution with a traceback saying that
Traceback (most recent call last):
File ".\main.py", line 3, in <module>
import lyricsgetter
File "C:\Users\smart\Documents\Projects\telegram-lyrics-bot\lyricsgetter.p... |
When using requests, I've just upgraded and I'm having the following error:
`import requests as rq`
`File "C:\Users\_HOME_\AppData\Local\Programs\Python\Python36\lib\site-
packages\requests\__init__.py", line 53, in <module>`
`major, minor, patch= urllib3_version`
`ValueError: not enough values to unpack (expect... | 1 |
The following code ICEs:
fn main() {
let r : &[int] = &[1,2,3];
let _ = r as *const [int] as uint;
}
with the following error:
error: internal compiler error: translating unsupported cast: *const [int] (cast_other) -> uint (cast_integral)
note: the compiler hit an unexpe... |
Code:
fn f() -> u64 {
0
}
fn main() {
let n = f as f32;
}
Error with backtrace:
src/main.rs:6:9: 6:10 warning: unused variable: `n`, #[warn(unused_variable)] on by default
src/main.rs:6 let n = f as f32;
^
error: int... | 1 |
Shortcut Guide will not work after sometime of launching PowerToys. I have to
restart PowerToys to make it work again.
|
# Environment
Microsoft Windows [Version 10.0.18363.836]
PowerToys [Version v0.17.0]
Shortcut Guide
# Steps to reproduce
When I hold [Win], Shortcut Guide is not appear.
Sometimes it doesn't work suddenly.
This bug sometimes fix suddenly or doesn't fix until reboot windows.
# Expected behavior
Hold [Win]... | 1 |
I don't think that the spell-check package is doing anything wrong here, so I
assume that this visual bug is due to decorations stretching across soft-wrap
boundaries when maybe they shouldn't:

And when I make the window wider again:
:
## Yes - problems using the FlexVolume
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates... |
Forked from #1980.
The API has a number of lists containing names embedded in objects, such as
Volumes, Containers, Ports, Env, and VolumeMounts. Both configuration and
field references (e.g., in filter expressions, events) are uglier and/or more
verbose when using lists rather than maps. This puts us at a disadvant... | 0 |
### System information
* **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : N/A
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Linux
* **TensorFlow installed from (source or binary)** : binary
* **TensorFlow version (use command below)** : v1... |
### System information
* **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : Yes
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Fedora 27
* **TensorFlow installed from (source or binary)** : Source
* **TensorFlow version (use command below)** ... | 1 |
how use babel 7 version into ecmascript 7 configuration ?
example my -> .babelrc -->
{
"plugins":[
//.....
],
"presets": [
"@babel/env",
"@babel/flow",
"@babel/preset-react"
]
}
|
> Issue originally reported by @rauschma in babel/babel-preset-env#381
I’m not sure how much that would be used in practice, but for some experiments
and tests, it would be nice if one could specify an ES version to target.
Examples:
"targets": { "ecmascript": "2015" }
"targets": { "ecmascript": ... | 1 |
One of my users reported this panic to me.
Expect normal successful completion, got "fatal error: unexpected signal
during runtime execution".
Go version is go1.5.1.
See https://groups.google.com/d/topic/golang-nuts/Men8KFhERN0/discussion
$ go env
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOH... |
I recently upgraded to Go 1.5 from 1.4.2 for a moderately large production
service, serving thousands of requests per second. This particular program has
been run on every Go version from 1.1 through (now) 1.5, and has been stable
in production for about 2+ years. Switching to Go 1.5 saw dramatic
improvements in GC p... | 1 |
#### Describe the workflow you want to enable
To be able to use `metrics.plot_confusion_matrix` in the same way as
`metrics.confusion_matrix`
#### Describe your proposed solution
To add an optional `y_pred` argument to `metrics.plot_confusion_matrix`
#### Additional context
I find it a bit confusing and incohere... |
The signature of `plot_confusion_matrix` is currently:
`sklearn.metrics.plot_confusion_matrix(estimator, X, y_true, labels=None,
sample_weight=None, normalize=None, display_labels=None, include_values=True,
xticks_rotation='horizontal', values_format=None, cmap='viridis', ax=None)`
The function takes an estimator a... | 1 |
hi
please provide capability of defining css namespace for all css and js that
render html or use classes for example:
change class name for modal
.modal-header
to
.ns-modal-header
for inner example user can define namespace class for widgets in your site:
Customize section
then user can change the ns to u... |
To prevent random mixing of styles maybe we should use prefix?
For example, `.tb-span6` or `.tb-row` instead `.span6` or `.row`?
`.menu`, `.navbar` is so common class names so it may a little confusing
without prefix
| 1 |
Hello,
After I did explore on framework I found playwright one of the best fit for UI
test automation.
my requirement is like wanted to covet test automation on desktop browser[real
browsers] , mobile browsers ,mobile app on android and iOS, is there any
support for this requirement ?
I know it support browser l... |
Is there any way to connect to a device, start a browser (e.g. chromium
instance on Android) and run the tests?
If not, what is missing at this point to be able to use it on both Android and
iOS?
* * *
### **Note from maintainers:**
Please refer to the https://playwright.dev/docs/next/api/class-android for
inst... | 1 |
### Description
Code to reproduce and compare to scipy below.
I think there might be a bug map_coordinates when using the default arguments
of mode='constant' and cval=0.0.
The function seems to be doing some sort of extrapolation in beyond one of the
corners of the image even though it should just return the co... |
jax.scipy.ndimage.map_coordinates behaves differently than
scipy.ndimage.map_coordinates when using mode="constant". In this example we
can see that 2.9 which should be as "off the array" as 3, produces a different
output which is in fact wrong (1) but should in fact produce what the original
implementation produces ... | 1 |
##### ISSUE TYPE
Bug
##### COMPONENT NAME
docker_service_module
##### ANSIBLE VERSION
ansible 2.2.1.0
##### OS / ENVIRONMENT
ubntu 16.04 LTS
##### SUMMARY
Whene I try to use docker_service module I get an error about docker-compose.
In my machine I've install docker, docker-compose and d... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
`docker_container`
##### ANSIBLE VERSION
ansible 2.3.0 (devel 216e2c8813) last updated 2017/01/20 09:22:29 (GMT +000)
ansible 2.2.0.0 (detached HEAD cdec853e37) last updated 2017/01/20 09:25:31 (GMT +000)
##### CONFIGURATION
Nothing ch... | 1 |
Hi, For documentation purpose and project release process we need the Export
control classification number(ECCN) for OpenCV if it applies. Can you please
let me know the ECCN ?
|
We are concerned about the authority of OpenCV as recently arised trade issues
between US and the rest of the world (especially China). We are looking
forward to get your official answers for the questions below:
1. Is the OpenCV project subject to U.S. Export Administration Regulations (EAR) and classified under ... | 1 |
one more trouble case with duplicate column names
the exception could be nicer (sort ambiguous because of duplicate column or
similar) or it could sort by the first? column with this name (although this
would not be nice in case the column is not duplicate but has in fact
different content with the same name and th... |
#### Code Sample, a copy-pastable example if possible
In [1]: import pandas as pd
In [2]: df = pd.DataFrame({'Number' : [1, 2], 'Date' : ["2017-03-02"] * 2, 'Str' : ["foo", "inf"]})
In [3]: df
Out[3]:
Date Number Str
0 2017-03-02 1 foo
1 2017-03-02 ... | 0 |
**Do you want to request a _feature_ or report a _bug_?**
Bug
**What is the current behavior?**
Build script fails
**If the current behavior is a bug, please provide the steps to reproduce.**
if (false) {
import('./module'); // <-- Fails to transform this or remove this
}
**What is t... |
**Bug**
**What is the current behavior?**
In case of development environment such code
if (process.env.NODE_ENV === 'testing') {
import('somemodule');
}
is transformed by webpack `2.5.1` into this
if (false) {
import('somemodule');
}
which leads to `Un... | 1 |
## Expected Behavior
Docs are accurate.
## Current Behavior
Docs are inaccurate.
## Steps to Reproduce (for bugs)
1. Go here: https://github.com/zeit/next.js#importing-css--sass--less-files
2. Click any of the three css/sass/less links
Happy to put together a quick PR if someone can tell me where the releva... |
# Examples bug report
## Example name
with-polyfills
## Describe the bug
`with-polyfills` shows how to polyfill missing features prior to
initialization of Next app. However, I would like to load polyfills only for
the missing features using the dynamic import.
For example IntersectionObserver is supported widel... | 0 |
in the example on getbootstrap, when one opens the modal, the whole page
contents gets rocked to the left. I suppose that is not the meaning and it is
a bug?
launch demo modal to check it out: http://getbootstrap.com/javascript/#modals
Kind regards,
J.
|
When launching the modal component
(http://getbootstrap.com/javascript/#modals) the entire content will slightly
move to the left on mac OS (haven't tried it on windows yet). With the active
modal the scrollbar seem to disappear, while the content width still changes.
You can observer the problem on the bootstrap pa... | 1 |
I wonder if you could combine a built-in support for RTL languages.
You can require users to add the class rtl the body tag and accordingly change
the necessary parts in the system.
Example body tag:
< body class="rtl" >
Example css rule:
body.rtl {
direction: rtl;
}
body.rtl .navbar .nav > li {
float... |
Would be great to have support for right-to-left languages.
| 1 |
I can correctly install this (most of the time) but executing npm update I get
the following error; I am guessing there is something wrong in the
package.json or similar. If I figure out what it is I'll add a message here,
but if someone knows off hand that would be awesome.
npm http 404 https://regist... |
The twitter-bootstrap module on npm is still at version 2.1.1.
https://npmjs.org/package/twitter-bootstrap
| 1 |
foo.ts:
export const a = 1
export const b = 2
bar.ts:
// error!
export * as foo from './foo'
// ok
import * as foo1 from './foo'
export const foo = foo1
|
The ES7 proposal is available at: https://github.com/leebyron/ecmascript-more-
export-from
The additions include:
reexporting default:
// proposed:
export v from "mod";
// symmetric to:
import v from "mod";
export {v};
reexporting as sub-module:
// proposed:
e... | 1 |
_Original tickethttp://projects.scipy.org/numpy/ticket/2133 on 2012-05-16 by
trac user mwtoews, assigned to unknown._
I see good overflow warnings operations on int32 scalars, but not for int32
arrays:
import numpy as np
# Case 1: Good, proper data types are used to avoid overflow
np.arr... |
Simple demo:
In [1]: np.uint8(0) - np.uint8(1)
RuntimeWarning: overflow encountered in ubyte_scalars
Out[1]: 255
In [2]: np.uint8(0)[...] - np.uint8(1)[...]
Out[2]: 255
Should we even warn at all for unsigned integers?
| 1 |
Hello
Periodically/frequently the PowerToy context menu periodically will not show
or open when I right click the icon from the notification area or attempt to
access it from search dialog. I must kill the process and restart in order to
get into settings when this happens.
# Environment
Windows 10 1909 April 2020... |
# Environment
Windows build number: 10.0.18362.778
PowerToys version: 0.17.0
PowerToy module for which you are reporting the bug: FancyZones
# Steps to reproduce
* Uninstall previous version of PowerToys
* Install 0.17.0
* Open PowerToys, things work just fine
* Wait for a while
... | 1 |
I see there is help text in the online manual but it doesn't seem to be
accessible from the REPL.
help?> include
include_from_node1 (generic function with 1 method)
I presume this is because the `include` symbol gets reassigned at some point.
julia> methods(include)
#1 meth... |
I think, help texts for keywords could be useful for beginners,
`help("using")` comes to mind.
| 1 |
**Elasticsearch version** : 2.3.5
**Plugins installed** : [head, kopf, cloud_aws, marvel, license]
**JVM version** : 1.8.0_51
**OS version** : CentOS 6.6
**Description of the problem including expected versus actual behavior** :
**Steps to reproduce** :
1. Cluster has 21 nodes. Previous version (1.7.2) worke... |
Hi,
looks like `DocumentMapper` is creating its own list of root field mappers:
...
// UID first so it will be the first stored field to load (so will benefit from "fields: []" early termination
this.rootMappers.put(UidFieldMapper.class, new UidFieldMapper());
... | 0 |
* VSCode Version: 0.10.11
* OS Version: WIN10 x64 - Home Edition
Steps to Reproduce:
1. Just try to write a SASS / Scss stylesheet with an `@at-root`.

|
* VSCode Version: 1.3.1
* OS Version: Windows 10
Steps to Reproduce:
1. create file with`scss` ext
2. copy the following code
.overlay {
position: fixed;
z-index: 200;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-sizing: border-box;
... | 1 |
[Enter steps to reproduce below:]
1. ...
2. ...
**Atom Version** : 0.186.0
**System** : Mac OS X 10.10.2
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: No line exists for row 11. Last screen row: 10
At /Applications/Atom.app/Contents/Resources/app/src/text-editor-presenter.js:3... |
[Enter steps to reproduce below:]
1. ...
2. ...
**Atom Version** : 0.180.0
**System** : Mac OS X 10.10.2
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: No line exists for row 18. Last screen row: 17
At /Users/dan.treasure/Downloads/Atom.app/Contents/Resources/app/src/text-edito... | 1 |
I have a growing bootstrap tasklist that sets up a common environment across
all of my hosts -- things like ssh_authorized_keys, switching users' shells to
their preferred, and most recently setting up a base set of monitoring rules
in my Nagios infrastructure.
The last bit led me to exploring `delegate_to` to set u... |
Consider a lookaside fact cache that can pull (and store) facts in a local
sqlite3 database such that you do not have to always hit hosts to get their
fact data each time
This would prevent the "need to talk to hosts previously" case and save some
communication time in other cases.
| 1 |
When Saving a Chart the option to ADD TO DASHBOARD is hidden.

### Expected results
To show the dropdown list.
### Actual results
Shows only 1 dashboard and need to use scroll bar t... | Jan-12-2021.11-29-35.mp4
related to #12310 issues in dashboard)
obviously this behavior is global in Superset. addressing in one modal is not
enough
@adam-stasiak pls give a round of audit in the product and look for all areas
that are being affected, and list those in comment. 🙏
| 1 |
## ❓ Questions and Help
I tried to convert a PyTorch model that has a grid_sample operation to ONNX
but it was not supported.
I'm using PyTorch version 1.6.0. Please help add support!
Issue was also described but not resolved in:
onnx/onnx#883
#27212
onnx/onnx#2383
microsoft/onnxruntime#2962
AliaksandrS... |
## 🚀 Feature
Add support for conversion of `grid_sample` layer into ONNX.
## Motivation
It could be really hard to perform geometric deformations on image such as
object stretch or horizontal flip with convolutional layers, especially using
relatively small models.
Spatial Transformer Networks tutorial by PyTorc... | 1 |
I'm trying to remove the duplicates contained in this following text file:
https://www.dropbox.com/s/mx3zqot352gdrhq/hg19.txt?dl=0
After reading this into a dataframe, and calling drop_duplicates, the
dataframe still has the same number of rows. Though clearly, there are many
duplicates contained in the file.
I ... |
Hello
I would like to contribute to pandas codebase as I've (hopefully) had some
expectedly nice features ideas for it, but it is not easy to start;)
I am stuck at the time I have to compile my own pandas as Visual Studio 2017
refuses to install on my machine because of Net Framework 4.6.
It is unfortunate that... | 0 |
When I downloaded Bootstrap 3 from the customize page, the font files were
corrupt, and therefore Glyphicons were not working, I went and downloaded from
the link on the homepage here: http://getbootstrap.com/ the issue was gone.
|
When using a customized version of Bootstrap 3.0 the Glyph icons don't work.
The font file sizes differ from the "normal" version.
| 1 |
**Chris Beams** opened **SPR-8164** and commented
* * *
This issue is a sub-task of #12694
**Issue Links:**
* #12399 o.s.http.client.SimpleClientHttpRequestFactory should allow to specify HttpURLConnection properties ( _ **"is duplicated by"**_ )
|
**Jonas Kilian** opened **SPR-369** and commented
I'd like to have the possiblity, not to make lowlevel spring beans like
"dataSource", "hibernateSessionFactory" etc. visible to /any/ application
code.
Of course, they should be accessible by other beans via <ref bean..> but right
now, one can always access every si... | 0 |
I'm using the following code to resize the label images of semantic
segmentation task [PASCAL VOC] ( images with values in range 0 to `n_classes`
with `n_classes` = 21).
lbl = m.imread(lbl_path)
lbl = np.array(lbl, dtype=np.int32)
lbl = self.encode_segmap(lbl)
print 'Unique:... |
scipy.misc.imresize changes minimum, mean and maximum values of image. That is
not what user can expect.
Following code (EDIT: updated for removal of `lena`, so doesn't quite match
the opencv version below):
import numpy as np
from scipy import misc
img = np.random.randint(25, 246, 400*40... | 1 |
I have a quasar/vue3 app but upgrading all realease after the 0.21.1 infinite
cycle of request start
I made two simple codepen where you can see the problem
1.21.1
1.21.2
I can't figure out what's is the root cause of that , maybe related to other
"similar" bug
Sorry if is a sort of duplicate
|
#### Describe the bug
I updated from axios `0.21.1` to `0.22.0` but typescript started giving me
strange errors
I then noticed that the types declarations changed and they do not make much
sense.
I can see that the `post` signature is:
post<T = never, R = AxiosResponse<T>>(url: string, data?: T | un... | 0 |
Challenge Override Class Declarations with Inline Styles has an issue.
User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4)
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:
... |
#### Challenge Name
Sift through Text with Regular Expressions
https://www.freecodecamp.com/challenges/sift-through-text-with-regular-
expressions
#### Issue Description
The instructions clearly state
> Select all the occurrences of the **word** _and_ in _testString_.
Hence i think the following regex `/\band\... | 0 |
#### Issue Description
We frequently get emails from campers complaining that their name doesn't show
up on their certificates. I respond to them with the following instructions:
"We pull all your biographical information directly from GitHub. So you just
need to add your name to your GitHub account. Then go back t... |
Challenge Waypoint: Create a Set of Radio Buttons has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101
Firefox/40.0`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
The Page elements as they will appear on the browser are getting d... | 0 |
MRE:
julia> function f(_::T; s) where T
0
end
ERROR: syntax: all-underscore identifier used as rvalue around REPL[12]:2```
julia> versioninfo()
Julia Version 1.5.3
Commit 788b2c77c1 (2020-11-09 13:37 UTC)
Platform Info:
OS: macOS (x86_64-app... |
MWE:
julia> function fun(_::Int; s)
end
ERROR: syntax: all-underscore identifier used as rvalue around REPL[4]:2
Stacktrace:
[1] top-level scope at REPL[4]:1
I can `Meta.@dump` this, so I think parsing is working fine. I can't
`Meta.@lower`, so I think the problem happens ... | 1 |
### What problem does this feature solve?
I have bind some style properties, like this:
position = {left: 40, top: 50}
so my first thought is this:
<div class={`basic-tooltip ${className}`} style={position}>
the result is style is not show at all。
I have to change to this:... |
### What problem does this feature solve?
When managing components it is important to have all the information you can
interact with at a glance.
In general, a component has two primary interactions props it takes and events
it emits.
We have the ability to know at a glance for Props as you can go to the props
se... | 0 |
As discuss in #2752, it would be nice to test sample weight in common tests.
|
The main advantage would be to be able to say on a per-PR basis "this PR can
be merged when CI is green". See the doc for more details. cc @scikit-
learn/core-devs @scikit-learn/contributor-experience-team for visibility.
Currently we need to remember to come back in one hour and we sometimes
forget. As a maintainer... | 0 |
Hi there.
Perhaps the following isn’t even a real issue, but I’m a bit confused with the
current outputs I got.
I’m trying to fine tune RAG on a bunch of question-answer pairs I have (for
while, not that much, < 1k ones). I have splitted them as suggested
(train.source, train.target, val.source…). After running the... |
# 🚀 Feature request
Enabling Discussion on github
## Motivation
reserve issues for only feature request, bugs (anything that would be an
addition to the transformers library). While, discussion will be for guidance
and questions.
I know that this is the use of discuss huggingface. However, I think large
portion... | 0 |
# Environment
Windows build number:
Platform Version VersionString
Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0
Windows Terminal version: Version: 0.6.2951.0
# Steps to reproduce
Make the Windows Terminal go full-screen on a 4K monitor.
# Expe... |
# Environment
Windows build number: [run "ver" at a command prompt]
Windows Terminal version (if applicable):
Any other software?
# Steps to reproduce
# Expected behavior
# Actual behavior
| 0 |
### Issue Details
* **Electron Version:**
* 3.1.11
* **Operating System:**
* Windows Server 2012 R2
* **Last Known Working Electron version:**
* None
### Expected Behavior
webContents.print(option, callback) print blurring use virtual pdf printer
when deviceName have value .
### Actual Behavior
... |
### Issue Details
* **Electron Version:**
* 3.1.11
* **Operating System:**
* Windows Server 2012 R2
* **Last Known Working Electron version:**
* None
### Expected Behavior
webContents.print(option, callback) print blurring use virtual pdf printer
when deviceName have value .
virtual pdf printer... | 1 |
# Environment
Windows build number: [run "ver" at a command prompt] 10.0.18362.267
Windows Terminal version (if applicable): v0.3.2142.0
Any other software? No
# Steps to reproduce
## Error 1: CMD
1. Open Windows Terminal
2. Open CMD tab
3. Close Terminal
## Error 2: Ubuntu
... |
# Environment
Windows build number: 10.0.19013.0
Windows Terminal version (if applicable): 0.6.2951.0
On opening Windows Terminal, move the window to external monitor and app crashes after a couple of seconds.
Laptop is on the Slow Insiders ring for Windows and this was working on the prev... | 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: latest
* Operating System version: xxx
* Java version: xxx
### Steps to reproduce this issue
... |
* 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: CentOS 7.4
* Java version: Java HotSpot 1.8.202
### Question
... | 0 |
Good morning,
I just updated matplotlib and noticed an error (probably typo) in the plot-
gui.
Using the `Save the figure`-Button, it returns
Format "png)')" is not supported.
for every supported format (replace `png` respectively).
Minimal working example:
import matplotlib.py... |
Bug also reported here: https://bugs.archlinux.org/task/41790
When clicking on the Save button on the NavigationToolbar, I get an error:
`Format "png)')" is not supported. Supported formats: eps, jpeg, jpg, pdf,
pgf, png, ps, raw, rgba, svg, svgz, tif, tiff.`
I tracked the bug to be coming from the output of the... | 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.
### Brief
Dubbo should be added new annotations for `MethodConfig` and `ArgumentConfig`
in order to complete Annotation-Driven Programmi... |
* 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: 本地macos,docker容器基础镜像alpine
* Java version: 1.8
* SpringBoot: ... | 0 |
#### Code Sample, a copy-pastable example if possible
>>> pr = pd.period_range(start='2017-01-01 00:00:00', periods=999999, freq='T')
>>> df = pd.DataFrame({"value": range(999999)}, index=pr)
>>> df.loc[:"2018-01-01 00:00"]
value
2017-01-01 00:00 0
... |
use max_seq_len, after setting default to close #3391.
also duplicate behaviour of "..." in other situations, rather then
always printing 6 items
| 0 |
by **julien.laffaye** :
What steps will reproduce the problem?
1. run make.bash
What is the expected output?
A successful compilation
What do you see instead?
Segfault
Which compiler are you using (5g, 6g, 8g, gccgo)?
8g
Which operating system ar... |
What steps will reproduce the problem?
1. Try to build a project that uses goyacc and Makefiles with "go build"
What is the expected output?
goyacc generates a .go from a .y, then the resulting .go is compiled and linked in to
the final binary.
What do you see inst... | 0 |
Received this error. For some additional info, I am only using the `std/path`
module and some function from the `Deno` global.
thread 'main' panicked at 'already borrowed: BorrowMutError', /rustc/4fb7144ed159f94491249e86d5bbd033b5d60550/src/libcore/cell.rs:878:9
stack backtrace:
0: backtrace... |
C:\workspace>deno-1.0.3.exe
Deno 1.0.3
exit using ctrl+d or close()
> crypto.getRandomValues(new Uint8Array(10))
Uint8Array(10) [
255, 146, 102, 81,
25, 238, 144, 127,
185, 250
]
>
C:\workspace\deno>deno
Deno 1.0.4
exit using ctrl+d o... | 1 |
For English only, other languages we will close it directly.
Please answer these questions before submitting your issue. Thanks!
### Which version of Sharding-Sphere do you using?
docker image shardingsphere/sharding-proxy:latest
### Expected behavior
at
org.yaml.snakeyaml.constructor.Constructor$ConstructMappin... |
Use a string sharding column , suppose the sharding column value is "abcd";
When use sharding-jdbc 3.1.0 , found sharding value pass to
ShardingStrategy.doSharding() was a integer value : -1 .
But use version 2.0.3 , the sharding value is original value : "abcd"。
| 0 |
**Mattias Severson** opened **SPR-9832** and commented
The RestTemplate erroneously infers "0" for an empty string values.
1. Execute the attached test RestTemplateTest using the attached pom.xml file.
2. The test fails, the response from the RestTemplate is {"lhs":"1 U.S. dollar","rhs":"1 U.S. dollar","error"... |
**Chris Beams** opened **SPR-9669** and commented
ASM 4.0 was released in Oct 2011 to address Java 7 bytecode compatibility,
particularly with regard to invokedynamic 1.
Certain public API changes were made in the process. Upgrade Spring's own
internal repackaging of ASM to ensure users don't run into problems wit... | 0 |
Hi,
Since the children of a form are stored in an `array()` in the `FormBuilder`,
the order of fields when rendering of a form in the view **using
only`form_widget(form)`** is determined by the way you added your fields in
your `FormType`.
<?php
public function buildForm(FormBuilderInterface ... |
Functionality request.
It would be great if you could specify the order of the fields when using the
following function.
{{ form_rest(form) }}
This would allow you to render all the fields without having to use the
field_row etc.
This would mean that if you had subscriber fields (automatically added to the
bottom... | 1 |
### Environment
* Dubbo version: com.alibaba:dubbo-rpc-thrift:jar:2.6.2
* Operating System version: Windows
* Java version: Jdk 1.7
### Descirption
Hi, there are two versions of **org.apache.httpcomponents:httpcore:jar** exist
in com.alibaba:dubbo-rpc-thrift, and only
**org.apache.httpcomponents:httpcore:jar... |
* 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.4
* Operating System version: windows10
* Java version: 1.8
### Actual Result
How can I use... | 0 |
The default title for my powershell tabs is so long that (a) it is cut off and
(b) the 'X' to close the tab is not displayed, for example:

# Environment
Windows build number: Microsoft W... |
# Description of the new feature/enhancement
# Proposed technical implementation details (optional)
Please add a find box as in cmd.exe:

A more advanced find box will be helpful just as in Notepad++: ... | 0 |
**Mohan** opened **SPR-4105** and commented
De serializing org.springframework.webflow.execution.FlowSessionStatus throws
following error.
Exception in thread "main" java.lang.IllegalArgumentException: Unsupported
labeled enumeration type 'class
org.springframework.core.enums.StaticLabeledEnum': make sure you've pr... |
**Costin Leau** opened **SPR-3238** and commented
For some reason, when using AbstractJapTests and maven, one gets a
StackOverFlow:
org.springframework.beans.factory.BeanCreationException: Error creating bean
with name 'entity
ManagerFactory' defined in class path resource [jpa-beans.xml]: Invocation of
init met... | 0 |
### Describe the bug
Using SQLAlchemy with AWS Redshift (1.0.47357).
After upgrading to:
SQLAlchemy==2.0.6
psycopg2-binary==2.9.5
I am getting:
sqlalchemy.exc.ProgrammingError: (psycopg2.errors.UndefinedObject) unrecognized configuration parameter "standard_conforming_strings... |
### Describe the bug
I believe there is a regression of #5698 in 2.0.0
I get the below error after updating from 1.4.46 and have confirmed it present
in 2.0.0 - 2.0.5.post1
UndefinedObject: unrecognized configuration parameter "standard_conforming_strings"
The logic added in `415ddce`
does no... | 1 |
## Bug Report
**Current Behavior**
I am building a React app with Webpack and Babel, using `.browserslistrc` to
support **Chrome 41** (mainly for SEO purposes), currently in Chrome 41 I get
error:
`Unhandled promise rejection ReferenceError: fetch is not defined`
**Expected behavior/code**
I expect that babel ... |
Choose one: is this a bug report or feature request?
**Bug**
### Input Code
function f (a, b) {
console.log(b); // is legal, will log 1
var b = 3;
console.log(b); // will log 3
}
f(0, 1)
// and this simple transform which renames the "b" binding to "x"
... | 0 |
**Hal Hildebrand** opened **SPR-1864** and commented
When using an InputStreamResource to create the XmlBeanFactory, an illegal
state exception is thrown.
java.lang.IllegalStateException: InputStream has already been read - do not
use InputStreamResource if a stream needs to be read multiple times
at
org.spri... |
**Pablo Pita Leira** opened **SPR-511** and commented
Imagine you have a class with a date field, so we use the
CustomEditorConfigurer with the CustomDateEditor in the applicationContext.xml
to enter the date property as a plain string. So far, so good.
Now, we like to export through JMX the bean methods by having ... | 0 |
I find it desirable that in `map(f, T[])`, if `f` is type stable on `T`, then
`map` would return an empty array of the correct type. At the moment it
returns an empty array of type `T`.
I ran into this when trying to do roughly this:
function f(x::Vector)
y = map(symbol, x)
return f(y)... |
I've simplified this as much as possible from my use case:
julia> func1{U<:AbstractArray, V}(arg::Union{AbstractArray{U},V}) = typeof(arg)
func1 (generic function with 1 method)
julia> func1(Array{Any}[Array{Any}(1, 1)])
Array{Array{Any,N},1}
julia> func2{U<:AbstractArray, V}(... | 0 |
As of now we create a lot of base images for the GCE VMs that we spin up for
node e2e. These images are duplicated in two different GCE projects for the
purposes of CI.
Instead, we can have the node e2e framework spin up VMs from non-local
projects. That way, we can avoid duplication and also let the community
contr... | ERROR: type should be string, got "\n\nhttps://storage.googleapis.com/kubernetes-\njenkins/logs/kubernetes-e2e-gke/7980/\n\nMultiple broken tests:\n\nFailed: [k8s.io] Pods should invoke init containers on a RestartNever pod\n{Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:122\n Expected error:\n <*errors.StatusError | 0xc820f1ce00>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get serviceAccounts)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"serviceAccounts\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/watch/namespaces/e2e-tests-pods-57xcg/serviceaccounts?fieldSelector=metadata.name%3Ddefault\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get serviceAccounts)\n not to have occurred\n \n\nIssues about this test specifically: #26131\n\nFailed: [k8s.io] Pods should not start app containers and fail the pod if init\ncontainers fail on a RestartNever pod {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:122\n Expected error:\n <*errors.StatusError | 0xc8209c5d80>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get serviceAccounts)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"serviceAccounts\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/watch/namespaces/e2e-tests-pods-ry3jb/serviceaccounts?fieldSelector=metadata.name%3Ddefault\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get serviceAccounts)\n not to have occurred\n \n\nFailed: [k8s.io] Kubectl client [k8s.io] Kubectl logs should be able to\nretrieve and filter logs [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:122\n Expected error:\n <*errors.StatusError | 0xc820de4800>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get serviceAccounts)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"serviceAccounts\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/watch/namespaces/e2e-tests-kubectl-ekca3/serviceaccounts?fieldSelector=metadata.name%3Ddefault\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get serviceAccounts)\n not to have occurred\n \n\nIssues about this test specifically: #26139\n\nFailed: [k8s.io] ConfigMap should be consumable from pods in volume with\nmappings as non-root [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/configmap.go:53\n May 28 22:02:49.934: unable to delete configMap configmap-test-volume-map-6b120453-255a-11e6-b721-0242ac110004: the server does not allow access to the requested resource (delete configmaps configmap-test-volume-map-6b120453-255a-11e6-b721-0242ac110004)\n \n\nFailed: [k8s.io] Probing container with readiness probe should not be ready\nbefore initial delay and never restart [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:123\n May 28 22:02:53.099: Couldn't delete ns \"e2e-tests-container-probe-2nmwt\": the server does not allow access to the requested resource (delete namespaces e2e-tests-container-probe-2nmwt)\n \n\nFailed: [k8s.io] ResourceQuota should create a ResourceQuota and capture the\nlife of a service. {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/resource_quota.go:89\n Expected error:\n <*errors.StatusError | 0xc820ee6080>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (post resourceQuotas)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"resourceQuotas\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/namespaces/e2e-tests-resourcequota-remfk/resourcequotas\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (post resourceQuotas)\n not to have occurred\n \n\nFailed: [k8s.io] Ubernetes Lite should spread the pods of a replication\ncontroller across zones {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:122\n Expected error:\n <*errors.StatusError | 0xc820c20800>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get serviceAccounts)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"serviceAccounts\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/watch/namespaces/e2e-tests-ubernetes-lite-hdts3/serviceaccounts?fieldSelector=metadata.name%3Ddefault\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get serviceAccounts)\n not to have occurred\n \n\nFailed: [k8s.io] Proxy version v1 should proxy to cadvisor using proxy\nsubresource [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/proxy.go:66\n Expected error:\n <*errors.StatusError | 0xc820e8ea80>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/nodes/gke-jenkins-e2e-default-pool-03895e94-mod0:4194/proxy/containers/\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource\n not to have occurred\n \n\nFailed: [k8s.io] ReplicationController should serve a basic image on each\nreplica with a private image {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:122\n Expected error:\n <*errors.StatusError | 0xc820deb800>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get serviceAccounts)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"serviceAccounts\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/watch/namespaces/e2e-tests-replication-controller-pf2vx/serviceaccounts?fieldSelector=metadata.name%3Ddefault\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get serviceAccounts)\n not to have occurred\n \n\nFailed: [k8s.io] Pods should be submitted and removed [Conformance]\n{Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/pods.go:407\n May 28 22:02:44.369: Failed to set up watch: the server does not allow access to the requested resource (get pods)\n \n\nIssues about this test specifically: #26224\n\nFailed: [k8s.io] Kubectl client [k8s.io] Kubectl apply should reuse nodePort\nwhen apply to an existing SVC {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:122\n Expected error:\n <*errors.StatusError | 0xc820c64400>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get serviceAccounts)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"serviceAccounts\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/watch/namespaces/e2e-tests-kubectl-8dbun/serviceaccounts?fieldSelector=metadata.name%3Ddefault\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get serviceAccounts)\n not to have occurred\n \n\nFailed: [k8s.io] Kubectl client [k8s.io] Proxy server should support proxy\nwith --port 0 [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:122\n Expected error:\n <*errors.StatusError | 0xc820a44c00>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get serviceAccounts)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"serviceAccounts\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/watch/namespaces/e2e-tests-kubectl-4un9r/serviceaccounts?fieldSelector=metadata.name%3Ddefault\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get serviceAccounts)\n not to have occurred\n \n\nFailed: [k8s.io] V1Job should scale a job up {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:122\n Expected error:\n <*errors.StatusError | 0xc820d1a280>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get serviceAccounts)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"serviceAccounts\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/watch/namespaces/e2e-tests-v1job-52ddx/serviceaccounts?fieldSelector=metadata.name%3Ddefault\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get serviceAccounts)\n not to have occurred\n \n\nFailed: [k8s.io] MetricsGrabber should grab all metrics from API server.\n{Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:122\n Expected error:\n <*errors.StatusError | 0xc820d48600>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get serviceAccounts)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"serviceAccounts\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/watch/namespaces/e2e-tests-metrics-grabber-4ns20/serviceaccounts?fieldSelector=metadata.name%3Ddefault\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get serviceAccounts)\n not to have occurred\n \n\nFailed: [k8s.io] Pods should _not_ be restarted with a /healthz http liveness\nprobe [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/pods.go:1164\n creating pod liveness-http\n Expected error:\n <*errors.StatusError | 0xc820b04800>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (post pods)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"pods\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/namespaces/e2e-tests-pods-0e5fp/pods\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (post pods)\n not to have occurred\n \n\nFailed: [k8s.io] Pods should _not_ be restarted with a docker exec \"cat\n/tmp/health\" liveness probe [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:122\n Expected error:\n <*errors.StatusError | 0xc8209c4080>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get serviceAccounts)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"serviceAccounts\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/watch/namespaces/e2e-tests-pods-g5cz0/serviceaccounts?fieldSelector=metadata.name%3Ddefault\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get serviceAccounts)\n not to have occurred\n \n\nFailed: [k8s.io] Kubectl client [k8s.io] Kubectl expose should create services\nfor rc [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:122\n Expected error:\n <*errors.StatusError | 0xc820dea300>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get serviceAccounts)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"serviceAccounts\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/watch/namespaces/e2e-tests-kubectl-zg8th/serviceaccounts?fieldSelector=metadata.name%3Ddefault\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get serviceAccounts)\n not to have occurred\n \n\nIssues about this test specifically: #26209\n\nFailed: [k8s.io] ResourceQuota should create a ResourceQuota and capture the\nlife of a replication controller. {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:122\n Expected error:\n <*errors.StatusError | 0xc820bca200>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get serviceAccounts)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"serviceAccounts\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/watch/namespaces/e2e-tests-resourcequota-0lxrg/serviceaccounts?fieldSelector=metadata.name%3Ddefault\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get serviceAccounts)\n not to have occurred\n \n\nFailed: [k8s.io] Kubectl client [k8s.io] Kubectl patch should add annotations\nfor pods in rc [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:122\n Expected error:\n <*errors.StatusError | 0xc820787a80>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get serviceAccounts)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"serviceAccounts\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/watch/namespaces/e2e-tests-kubectl-ahl9t/serviceaccounts?fieldSelector=metadata.name%3Ddefault\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get serviceAccounts)\n not to have occurred\n \n\nIssues about this test specifically: #26126\n\nFailed: [k8s.io] Proxy version v1 should proxy logs on node with explicit\nkubelet port [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:122\n Expected error:\n <*errors.StatusError | 0xc820f1c280>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get serviceAccounts)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"serviceAccounts\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/watch/namespaces/e2e-tests-proxy-p64qz/serviceaccounts?fieldSelector=metadata.name%3Ddefault\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get serviceAccounts)\n not to have occurred\n \n\nFailed: [k8s.io] Probing container with readiness probe that fails should\nnever be ready and never restart [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/container_probe.go:111\n May 28 22:02:57.402: expecting wait timeout error but got: the server has asked for the client to provide credentials (get pods test-webserver-5f5ffc6b-255a-11e6-824c-0242ac110004)\n \n\nFailed: [k8s.io] Services should release NodePorts on delete {Kubernetes e2e\nsuite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/service.go:905\n Expected error:\n <*errors.StatusError | 0xc820a44180>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (post services)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"services\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/namespaces/e2e-tests-services-f2ajg/services\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (post services)\n not to have occurred\n \n\nFailed: [k8s.io] EmptyDir volumes should support (non-root,0644,default)\n[Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/empty_dir.go:105\n \"perms of file \\\"/test-volume/test-file\\\": -rw-r--r--\" in container output\n Expected\n <string>: \n to contain substring\n <string>: perms of file \"/test-volume/test-file\": -rw-r--r--\n \n\nFailed: [k8s.io] Proxy version v1 should proxy logs on node with explicit\nkubelet port using proxy subresource [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:123\n May 28 22:02:36.669: Couldn't delete ns \"e2e-tests-proxy-jxbor\": the server does not allow access to the requested resource (delete namespaces e2e-tests-proxy-jxbor)\n \n\nFailed: [k8s.io] ResourceQuota should create a ResourceQuota and capture the\nlife of a configMap. {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:122\n Expected error:\n <*errors.StatusError | 0xc8208da200>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get serviceAccounts)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"serviceAccounts\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/watch/namespaces/e2e-tests-resourcequota-wosui/serviceaccounts?fieldSelector=metadata.name%3Ddefault\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get serviceAccounts)\n not to have occurred\n \n\nFailed: [k8s.io] Port forwarding [k8s.io] With a server that expects a client\nrequest should support a client that connects, sends data, and disconnects\n[Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:122\n Expected error:\n <*errors.StatusError | 0xc820db6600>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get serviceAccounts)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"serviceAccounts\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/watch/namespaces/e2e-tests-port-forwarding-74vjt/serviceaccounts?fieldSelector=metadata.name%3Ddefault\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get serviceAccounts)\n not to have occurred\n \n\nFailed: [k8s.io] ReplicationController should serve a basic image on each\nreplica with a public image [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/rc.go:38\n Expected error:\n <*errors.StatusError | 0xc8207aa800>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get pods)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"pods\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/watch/namespaces/e2e-tests-replication-controller-496yy/pods?fieldSelector=metadata.name%3Dmy-hostname-basic-70f28905-255a-11e6-9c3e-0242ac110004-5u8bw\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get pods)\n not to have occurred\n \n\nFailed: [k8s.io] Job should fail a job {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/job.go:198\n Expected error:\n <*errors.StatusError | 0xc820528400>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server has asked for the client to provide credentials (get jobs.extensions foo)\",\n Reason: \"Unauthorized\",\n Details: {\n Name: \"foo\",\n Group: \"extensions\",\n Kind: \"jobs\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Unauthorized\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 401,\n },\n }\n the server has asked for the client to provide credentials (get jobs.extensions foo)\n not to have occurred\n \n\nFailed: [k8s.io] Deployment paused deployment should be ignored by the\ncontroller {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:122\n Expected error:\n <*errors.StatusError | 0xc82077cf80>: {\n ErrStatus: {\n TypeMeta: {Kind: \"\", APIVersion: \"\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"the server does not allow access to the requested resource (get serviceAccounts)\",\n Reason: \"Forbidden\",\n Details: {\n Name: \"\",\n Group: \"\",\n Kind: \"serviceAccounts\",\n Causes: [\n {\n Type: \"UnexpectedServerResponse\",\n Message: \"Forbidden: \\\"/api/v1/watch/namespaces/e2e-tests-deployment-82gii/serviceaccounts?fieldSelector=metadata.name%3Ddefault\\\"\",\n Field: \"\",\n },\n ],\n RetryAfterSeconds: 0,\n },\n Code: 403,\n },\n }\n the server does not allow access to the requested resource (get serviceAccounts)\n not to have occurred\n \n\n" | 0 |
**Glide Version** : 4.0.0-RC1
**Integration libraries** : okhttp3-4.0.0-RC1
**Device/Android Version** : Nexus 5X 7.1.2
**Issue details / Repro steps / Use case background** :
Loading an Uri pointing to a resource drawable
"android.resource://package/drawable/ic_facebook" fails if the drawable is a
Vector. Work... |
We have a placeholder shape drawable (or sometimes shown directly as
`.load(R.drawable.abc)`) which fails to display. The onException listener is
called, but e is null.
The logs contain only:
com.example.app D/skia﹕ --- SkImageDecoder::Factory returned null
Glide: 3.5.2
Tested on Genymotion v4.4.2
... | 1 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
redhat_subscription
##### ANSIBLE VERSION
ansible 2.2.0.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
##### CONFIGURATION
##### OS / ENVIRONMENT
RHEL 7.3
##### SUMMARY
re... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
Module docker_network
##### ANSIBLE VERSION
ansible --version
ansible 2.3.0.0
config file = /Users/me/code/test_master/ansible.cfg
configured module search path = Default w/o overrides
python version = 2.7.13 (default, Dec 1... | 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 is... |
* 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: 27.0
* Operating System version: linux
* Java version: jdk1.8+
generic invoker occure:
java.la... | 0 |
Using a ListView with variable size items (expandable) and a TextField input
leads to:
flutter: ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════
flutter: The following assertion was thrown building NotificationListener<KeepAliveNotification>:
... |
## Steps to Reproduce
I have a PageView that contains the top level widgets for my app, with
switching between them controlled by a BottomNavBar. As per @Hixie's advice in
the chat, I am adding `AutomaticKeepAliveClientMixin` to these top level
widgets so the PageView won't recycle them and will preserve state. Afte... | 1 |
Challenge http://www.freecodecamp.com/challenges/waypoint-target-the-parent-
of-an-element-using-jquery has an issue. Please describe how to reproduce it,
and include links to screenshots if possible.
I solved the whole thing and the error is still there saying "Your left-well
element should have a red background." ... |
Challenge global-scope-and-functions has an issue.
User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0)
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.
// Declare your va... | 0 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
Variable expansion/core.
##### ANSIBLE VERSION
Tried with both 1.9.x and 2.1.x, but different failures occur (see below for
details).
ansible 1.9.6
configured module search path = None
ansible 2.1.0.0
config file =... |
Split changelog into file per release, it is getting unwieldy, also it would
be nice to create ToC and sunset the RELEASES.txt as it is mostly duplicate
information.
##### ISSUE TYPE
* Feature Idea
* Documentation Report
##### COMPONENT NAME
changelog
##### ANSIBLE VERSION
2.5
| 0 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
Expecting `fullWidth` to make the input take up the full width of its
container, even when it has the startAdornment property.
## Current Behavior
Adornment overwrites the width property.
![screen sh... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
CircularProgress animation should be smooth and predictable under load
## Current Behavior
The animation is okay but the dynamic length of the line only updates once a
while under load. Maybe my un... | 0 |
The range query support 'lte/lt/gt/gte', will the range aggregation support
too?
For price of goods, I want to use range [0,50], [50,100], ...
|
### Problem
Right now to prevent duplicates in index you have two options:
* generate id based on document content in your application. Problems:
* simple methods (md5 checksum of field or fields for example) work only with 1:1 matches
* more complex methods require document processing and that forces yo... | 0 |
sklearn 0.18.1
numpy 1.12.0rc1,
scipy 0.18.1
sklearn 0.18.1
python 3.5.2
from sklearn.metrics import confusion_matrix
File "lib\sklearn_ _init_ _.py", line 57, in
from .base import clone
File "lib\sklearn\base.py", line 12, in
from .utils.fixes import signature
File "lib\sklearn\u... |
There is a new bug in master brunch, `scikit-learn/sklearn/utils/fixes.py`
in line 406: `if np_version < (1, 12, 0):` , an error occured, `TypeError:
unorderable types: str() < int()`.
It's because in the function :
def _parse_version(version_string):
version = []
for x in version_s... | 1 |
I'm trying to add a new grammar to spell-check, and I see this:

There's no easy way that I know of to append to that list of defaults. Instead
I have to track down what the defaults are, paste them in, and app... |
Just installed atom. Being a python developer I wanted to hide *.pyc from tree
view, but I also wanted to maintain the default ignored names. The problem is
".git, .hg, .svn, .DS_Store, Thumbs.db" dissapears when the textbox is
clicked, and the user has to type it all again
| 1 |
Requiring a package in bundle e.g. `import camelcase from 'camelcase'`
resolves to `<root_dir>/node_modules/next/node_modules/camelcase` before
`<root_dir>/node_modules`.
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
Requiring a package that's a di... |
Hello! I'm just now getting started with next (using version 1.2.3), and I
have the following folder structure:
* package.json
* pages
* index.js
* lib
* components
* Test.js
I have a symlink: `node_modules/lib -> ../lib`.
I import my `Test` component with `import Test from 'lib/components/... | 0 |
_Please make sure that this is a bug. As per ourGitHub Policy, we only
address code/doc bugs, performance issues, feature requests and
build/installation issues on GitHub. tag:bug_template_
**System information**
* Have I written custom code (as opposed to using a stock example script provided in TensorFlow):
... |
I got an error message including a request that I report a bug.
Here's the code:
import numpy as np
import tensorflow as tf
import platform
print()
print(f"PLATFORM:\n---------\n{platform.platform()}")
print("\nTENSORFLOW:\n----------")
for a in tf.version.__all__:
... | 1 |
### Bug report
**Bug summary**
I am building python-matplotlib RPM for Fedora and I've found out that I
cannot execute tests because the file `mpl_toolkits/__init__.py` is missing.
**Code for reproduction**
MATPLOTLIBDATA=$PWD/lib/matplotlib/mpl-data/ PYTHONPATH=/builddir/build/BUILDROOT/python-matp... |
### Bug summary
As of setuptools v67.3.0 the use of `pkg_resources.declare_namespace` in
`lib/mpl_toolkits/__init__.py` raises a `DeprecationWarning`.
### Code for reproduction
$ mamba create -n test python=3.10 matplotlib-base -y
$ mamba activate test
$ export PYTHONDEVMODE=1
$ python -c... | 1 |
**Do you want to request a _feature_ or report a _bug_?**
_feature_
**What is the current behavior?**
React is published to NPM only as ES5 code
**What is the expected behavior?**
Publish react also in es2015, with es2015 entry point in the package.json
Motivation: Performance. leverage the targeted client ... |
**Do you want to request a _feature_ or report a _bug_?**
Request a feature
**What is the current behavior?**
React ecosystem was promoting ES6 classes and modules since 2014 and many
packages like react-router, redux and so on, have an "es" folder in the npm
package with source code in ES2015 modules. Unless I... | 1 |
#### Challenge Name : Add a Submit Button to a Form
https://www.freecodecamp.com/challenges/add-a-submit-button-to-a-
form#?solution=%3Clink%20href%3D%22https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DLobster%22%20rel%3D%22stylesheet%22%20type%3D%22text%2Fcss%22%3E%0A%3Cstyle%3E%0A%20%20.red-
text%20%7B%0A%20%20... |
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 |
#### 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 ... |
#### Code Sample, a copy-pastable example if possible
When localizing a Timestamp vs timeseries/index, the timezones look similar
In [21]: ts = pd.Timestamp('2012-01-01').tz_localize('US/Eastern')
In [22]: dtidx = pd.to_datetime(['2012-01-01']).tz_localize('US/Eastern')
In [23]: ts
... | 0 |
If a text field is focused by the user when it is disabled via props, the
input has its focused visual style retained (label and line under the text
remain highlighted in primary color). I tried to work around the issue by
calling .blur() on the underlying input element before setting
disabled={true}, but it appears ... |
If I download an external component (say, something like
https://github.com/glittershark/reactable) - how can I theme it or give it
material styles?
What if I create my own custom component, how can I pluck mui styles and apply
them? (I read the CodeExample section of the docs, but I didn't really follow
it. Whe... | 0 |
### Bug summary
Changing the parameter 'levels' when using contourf and a colorbar with
norm=colors.LogNorm has no effect on the final figure. '
### Code for reproduction
This code is inspired from the Colormap Normalizations example from
https://matplotlib.org/stable/gallery/userdemo/colormap_normalizations.html#... |
### Bug report
**Bug summary**
It does not seem possible to use LogLocator to generate a specific number of
log-spaced tick locations without a live axis.
**Code for reproduction**
import matplotlib as mpl
ticker = mpl.ticker.LogLocator(numticks=2)
ticker.tick_values(1, 10)
array([ 0.1, 1. ... | 1 |
See this SO question:
Apparently (for a DataFrame with DatetimeIndex) drop requires a Timestamp
object (this is different from ix/loc which can cunningly work out you meant a
timestamp, if fed a string).
In [11]: df1
Out[11]:
Price1 Price2 Price3
Date_Time
2012-0... |
Needs to coerce:
e.g.
In [1]: import pandas.util.testing as tm
In [2]: pan = tm.makePanel()
In [3]: pan
Out[3]:
<class 'pandas.core.panel.Panel'>
Dimensions: 3 (items) x 30 (major_axis) x 4 (minor_axis)
Items axis: ItemA to ItemC
Major_axis axis: 2000-01-03 00:00:... | 1 |
I saw the relevant PR, and verified some of the performance improvements, but
it has not been merged into this. Can the official support VAO? Or when will
it be ready to support VAO?
|
What is the current position of THREE.renderer concerning the usage of VAO's?
OES_vertex_array_object extension is supported on majority of devices and is
going to be in core of WebGL 2.0 (According to WebGL Stats and WebGL 2.0
Spec).
I've found #5849 issue on that topic, but it seems to have no continuation.
Coul... | 1 |
Hi All,
i am using celery 3.1.2(ciaper) with kombu 3.0.21. WHen I tried to restart
celery as it was in hung state, it printed below output in log, later it
stopped responding, Can anyone please advice how to start celery without
killing it.
[2014-08-04 22:48:53,979: WARNING/MainProcess] consumer: Connection to brok... |
Hello,
We're using Celery 3.1.6, and one of our queues is using 100% CPU for the
master process. ps shows:
root 6960 59.2 0.7 160680 51628 ? Rs Feb01 2319:49 /$VENV/bin/python /$VENV/manage.py celery worker -Q ads -P prefork --autoscale=10,5 -n $NAME --settings=settings -l INFO
root... | 1 |
# Summary of the new feature/enhancement
# Proposed technical implementation details (optional)
|
## 📝 Provide a description of the new feature
_What is the expected behavior of the proposed feature? What is the scenario
this would be used?_
\--- I'm currently running version 0.15.2 because that is the only one I've
gotten to successfully install without admin rights using the provided msi
installer. Would it ... | 0 |
I am trying to run an LSTM built with the Python API, exported to to protobuf,
and evaluated in Java. After I updated my python scripts to use
`tf.contrib.rnn.LSTMBlockCell`, `LSTMBlockFusedCell`, etc cell
implementations, the Java portion stopped working and started throwing:
org.tensorflow.TensorFlow... |
* * *
### System information
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Mac OS 10.12
* **TensorFlow installed from (source or binary)** : Binary
* **TensorFlow version (use command below)** : Tried with both 1.1.0 and 1.2.0-rc1
* **CUDA/cuDNN version** : Running on CPU
I have SavedMode... | 1 |
We are currently running on superset 0.22.1 with python 2.7 on Ubuntu 16.04
LTS.
We are planning to upgrade superset to 0.35.0 version with python 3.6.9 on
Ubuntu 18.04.3 LTS.
Can you kindly let us know whether we can use old superset 0.22.1 dashboards
after upgrading to superset 0.35.0 ?
OR
Should we build a... |
#### How to reproduce the bug
1. Go to explore view of time-series chart,
2. change time range.
3. from browser console you will see when you updated the time picker, new query is triggered.
4. but this trigger won't update chart, there is an overlay on top of chart.
5. user has to click on `run query` but... | 0 |
I am getting duplicate `debugViews.ts` in recently opened. Both point to the
same file, however they seem to have a different editors associated with them
- eg selections are different.
Not sure how I got in this state, but I this is the first time I get duplicate
entires. So my suspicion is that at a point of time... |
* VSCode Version: 1.2.0-alpha
* OS Version: Windows 10
Steps to Reproduce:
1. Open integrated terminal
2. Type git clone
3. Right click just to the right of the typing cursor
4. Paste https://github.com/Microsoft/vscode-smoketest-express.git
. However, we want to normalize tabs to spaces
throughout the rest of the project.
For now, I just ask that people don't edit those files in VSCode. I even
considered adding them to the ignore list for VSCode itself... | 1 |
### Playwright version
1.13.0
### Operating system
Windows
### What browsers are you seeing the problem on?
_No response_
### Other information
Playwright inspector
### What happened? / Describe the bug
When running playwright code generator chromium page was open but playwright
inspector was opened but cant... |
**Context:**
* Playwright Version: 1.9.0
* Operating System: Windows10
* Node.js version: v12.18.2
* Browser: Chromium
* Extra: laptop with 13,3" screen, 1920 x 1080 (FullHD) resolution, scaled to 150%, setup with external monitor placed above laptop screen
Example script
const { chromium ... | 1 |
**Edit: I'm guessing this is known and just unavoidable without some extra
working around using the resolution of the promise returned
from`dock.show()`?**
### Preflight Checklist
* I have read the Contributing Guidelines for this project.
* I agree to follow the Code of Conduct that this project adheres to.
... |
* Output of `node_modules/.bin/electron --version`: 3.0.0
* Operating System (Platform and Version): Debian GNU/Linux 9 (stretch)
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): (will check and update)
**Expected Behavior**
Should load the index.html... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.