text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
(This is a suggestion, so I took the freedom to erase all the bug related
template code.)
The code below was tested with binding version 2.4.12.2 and the source code
example was from git HEAD.
Currently the doc string only contains a terse syntax description. E.g.
import cv2
print cv2.setUseOptim... |
Transferred from http://code.opencv.org/issues/1215
|| Andrey Kamaev on 2011-07-11 14:43
|| Priority: Normal
|| Affected: branch 'master' (3.0-dev)
|| Category: documentation
|| Tracker: Bug
|| Difficulty: Medium
|| PR:
|| Platform: Any / Any
## Undocumented functions... | 1 |
I have a router definition like this:
const routes: Routes = [
{
"path": "member",
"loadChildren": "app/member/member.module#MemberModule"
},
{
"path": "",
"loadChildren": "app/video/video.module#VideoModule"
},
{
"path": "**",
"redire... |
**I'm submitting a ...** (check one with "x")
[ ] bug report => search github for a similar issue or PR before submitting
[ X ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
... | 0 |
This doesn't happen every time.
Using tip (`bbc4351`).
# crypto/x509
panic: runtime error: slice bounds out of range
fatal error: panic on system stack
runtime stack:
runtime.throw(0x854ad0, 0x15)
/home/ksh/work/os-code/go/src/runtime/panic.go:527 +0x96
runtime.gopanic... |
##### GOMAXPROCS=2 runtime -cpu=1,2,4
--- FAIL: TestStackOverflow (0.04s)
crash_test.go:92: building source: exit status 2
panic: runtime error: slice bounds out of range
fatal error: panic on system stack
runtime stack:
runtime.throw(0x985... | 1 |
**I'm submitting a ...** (check one with "x")
[x] bug report
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
**Current behavior**
Aux-Routes are not found when using... |
According to the doc of setTimeout the fuction supports the syntax
`setTimeout(string code, [delay])`
The version in `angular2-polyfills.js` does not support this syntax and this
is casing problems with ASP.NET which generates code using this version.
I understand that this version should be avoided but I am only a... | 0 |
The following program causes an ICE:
fn main() {
match ("", "") {
(a, "") => a,
("", b) => b,
};
}
The compiler output, with backtraces enabled, is:
$ RUST_BACKTRACE=1 rustc test.rs
error: internal compiler error: unexpected failure
... |
Code:
fn main() {
match ("", ()) {
(_, _) => (),
("", _) => (),
}
}
Output:
~ > rustc test.rs
error: internal compiler error: unexpected failure
note: the compiler hit an unexpected failure path. this is a bug.
note: we would appre... | 1 |
## ❓ Questions and Help
\-- Build files have been written to: /home/feng/pytorch/build
* make install -j12
Scanning dependencies of target js_embed
Scanning dependencies of target benchmark
Scanning dependencies of target nccl_external
Scanning dependencies of target pthreadpool
Scanning dependencies of... |
## 🐛 Bug
## To Reproduce
Steps to reproduce the behavior:
1. I tried code below, and I got warning like
torch/autograd/__init__.py:127: UserWarning: Mixed memory format inputs detected while calling the operator.
The operator will output contiguous tensor even if some of the inputs are in ch... | 0 |
##### Issue Type:
“Bug Report”
##### Ansible Version:
ansible 1.6 (master `1b3f77f`) last updated 2014/03/30 19:39:04 (GMT +800)
##### Environment:
host: ubuntu 12.04 python: 2.7.3
guests: ubuntu 12.04.4 python: 2.7.3
##### Summary:
This is a same task on different remote servers. fail happen on v1.4.5
succe... |
##### Issue Type:
Feature Idea
##### Ansible Version:
1.7.1
##### Environment:
OS X 10.9.4
##### Summary:
For the following, I will only talk about tagging tasks. However, this could
be applied to any resource (play, role, task) that can be tagged.
When you want to use tags to include **and** exclude specific... | 0 |
## Steps to Reproduce
Create a view with a text input, and a submit callback listener. In the submit
listener, call something like `Navigator.popAndPushNamed()`. This will result
in the following error message:
E/flutter (11330): 'package:flutter/src/widgets/routes.dart': Failed assertion: line 200 po... |
## Steps to Reproduce

Video: https://i.imgur.com/A85IETe.mp4
1. Install Flutter Gallery on iOS simulator
2. Open and close any sample using the swipe mechanism
3. After a few successful swipes pick u... | 1 |
Hello,
Here is my code:
let value: any
if (value instanceof MyClass) {
// value is any. needs to typecast like this to get intellisense working:
(<MyClass>value).prop=true;
}
It would be great to support this feature.
Thanks in advance and I hope this could help other... |
I am using the following example that I took directly from the blog post
(http://blogs.msdn.com/b/typescript/archive/2014/11/18/what-s-new-in-the-
typescript-type-system.aspx)
var x: any = "foo";
if(typeof x === 'string') {
console.log(x.subtr(1)); // Error, 'subtr' does not exist on 'string... | 1 |
Before filing a bug, please check whether it has been fixed since the
latest release. Search the issue tracker and check that you're running the
latest version of Go:
Run "go version" and compare against
http://golang.org/doc/devel/release.html If a newer version of Go exists,
i... |
by **krolaw** :
This would be useful when parsing (really) large JSON documents in low memory
environments.
At the moment one would need to write their own comma and key handling code. Since this
is available in the encoding/xml package (through RawToken), it would be consistent to
... | 0 |
# 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.... |
* [x ] I have checked the issues list
for similar or identical bug reports.
* I have checked the pull requests list
for existing proposed fixes.
* [x ] I have checked the commit log
to find out if the bug was already fixed in the master branch.
* [ x] I have included all related issues and possible d... | 0 |
I have encountered some performance issues with JAX version 0.2.26 and 0.2.27.
This has surfaced while running the TestU01 small-crush RNG testsuite against
the `jax.random` RNG as well as my own implementation in
https://github.com/DPBayes/jax-chacha-prng which run significantly slower than
in previous versions. Run... |
import jax
import jax.numpy as jnp
f = lambda x: jnp.add(x, 1)
x = jax.pmap(f)(jnp.array([1])) # x is a SDA
# jnp.add will use the JAX C++ jit path which has SDA handling falling back to numpy-like handling
x = jnp.add(x, 1)
Handling:
https://github.com/tensorflow/tensorfl... | 0 |
### Problem description
The UI jitters time to time, mostly when the drawer pops out/off for the first
time. Even the home page www.material-ui.com has this problem when
opening/closing the drawer by clicking the 3-lines icon at top-left corner.
It happens more often on Chromium:
Version 55.0.2883.87 Built on Ubu... |
### Problem description
Once i tap the the drawer button there is a significant lag until a menu
appears. it does not feel fluid or native like. I'm assuming you used the
react drawer component on your own site as well.
### Steps to reproduce
open http://www.material-ui.com/#/ in chrome browser mobile on mobile de... | 1 |
Challenge Show the Local Weather has an issue.
I didn't manually mess with most challenges but I doubt this is the only
instance of this. Like most privacy aware users, I run HTTPS-Everywhere and it
makes codepens fail when they load insecure ressources.
Change http: for https:
|
#### Challenge Name
Show the Local Weather
https://www.freecodecamp.com/challenges/show-the-local-weather
#### Issue Description
getCurrentPosition does not work over http. I think that changing the url to
codepen.io in that particular challenge would help others campers not thinking
their code isn't correct.
##... | 1 |
godoc at goneat.org (an Ubuntu amd64 virtual machine) is exploding frequently with this
error message:
runtime: address space conflict: map() =
throw: runtime: address space conflict
runtime.throw+0x40
/build/buildd/golang-0~2011.03.07.1/src/pkg/runtime/runtime.c:102
... |
None of these docs specify the control flow of recover:
http://golang.org/ref/spec#Handling_panics
"manage behavior of a panicking goroutine"
"restoring normal execution"
http://golang.org/pkg/builtin/#recover
"manage behavior of a panicking goroutine"
"restoring... | 0 |
# Bug report
When you build next.js when the index page is located in `/index/index.js`
instead of `/index.js` The client side script will not be executed when you
access `http://localhost/`.
The built index page will register with `/index` (as shown below)
(window.__NEXT_P = window.__NEXT_P || []).p... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Current Behavior
Components lose all references when staticly exporting the app
## Context
In my project i have multiple components which use refs to determine dom-
specific stuff (e.g. height of elements), they work as ... | 0 |
### Bug summary
There are several rendering errors when creating a `bar3d` chart:
* for some bars the side walls are missing, e.g. at (1,0), (3,0) or (7,0).
* the edge to the x-axis of the top of bar (0,1) is partially visible, although it should be completely covered by bar (0,0).
* the label of the y-ax... |
### Bug report
**Bug summary**
Z-order of rendered planes in 3d bar chart produced by bar3d is wrong. It is
seen even in the example here
https://matplotlib.org/gallery/mplot3d/3d_bars.html. One of the bars (at
location 2, 4, height 6) is drawn on top of the highest bar, even though it
supposed to be behind it.
*... | 1 |
Introduced with `c2f6078`. Is this on purpose? 3.0.3 lacked the `-DEV` part. I
assumed that the 3.x.x release branch is stable.
|
After upgrading Symfony to version 3.0.4 I see "3.0.4-DEV" instead of "3.0.4"
as version in console and debug toolbar. Would you be so kind to fix this
issue?
Thank you.
| 1 |
I had to set frustumCulled = false on objects far from origin or else they
would not render
|
ArrayCamera only extends and only supports Perspective Cameras.
| 1 |
Q | A
---|---
Bug report? | yes
Symfony version | 3.4.1
PHPUnit | 5.7.26
I have a problem after the upgrade to symfony 3.4. I have a login in my unit
test. I've implemented the login like the documentation describes here:
https://symfony.com/doc/current/testing/http_authentication.html
I use that code fo... | Q | A
---|---
Bug report? | yes
Feature request? | no
BC Break report? | yes
RFC? | no
Symfony version | 3.4.x
I have a project that depends on symfony/http-foundation. With 3.4.x-dev I'm
getting some RuntimeErrors recently:
RuntimeException: Failed to set the session handler because hea... | 1 |
What version of Go are you using (go version)?
I have tried go1.5rc1 and building from source:
go version devel +6f0c7df Tue Aug 18 17:00:59 2015 +0000 linux/amd64
What operating system and processor architecture are you using?
Linux 3.4, amd64
What did you do?
Build a distribution of our library as a tarba... |
by **czapkofan** :
What steps will reproduce the problem?
1. Try to compile the following code ("test01-forrange.go"):
package main
var tab = []int{55, 44, 33}
func main() {
var i int
for i, v := range tab {
if v == 44 {
break
... | 0 |
When going from Babel 4 to 5 I am getting this error and not sure where it is
coming from. Any ideas?
My .babelrc is:
{
"stage": 0,
"auxiliaryComment": "istanbul ignore next"
}
The error is:
/Users/wavded/Projects/widnr/node_modules/babel/node_modules/babel-core/li... |
import foo from 'bar';
(function* () {});
Compiling this raises `AssertionError: test.js: undefined does not match type
Pattern`
| 1 |
Although getting ansible through the "quick and dirty" manner is very useful
for hacking scenarios, including it as a part of other projects requires being
able to set it up from _easy_install_ or _pip_.
It would be great if this tool was published in pypi for each new release
|
Hello,
Do you have any plan to put Ansible on Pypi ?
Thanks,
| 1 |
* matplotlib 1.5.1, python 3.4.4, win8.1, seaborn 0.7.0
* anaconda installation
* EPS produced while using the `seaborn` package are empty in my win 8.1 environment. I went through `seaborn`'s rcmod.py and figured that setting `"font.sans-serif": ["Arial", "Liberation Sans", "Bitstream Vera Sans", "sans-serif"]... |
Using Arial as `font.sans-serif` in a figure will produce an EPS file that
can't be opened or converted to PDF. In my case, using any other font, e.g.
Bitstream Vera Sans or Liberation Sans produces a valid EPS.
| 1 |
A failed assertion in unit_test.ts gives me incorrect line numbers, plus the
following scary error:
=====Error inside of prepareStackTrace====
TypeError: CallSite method toString expects CallSite as receiver
at Object.toString (<anonymous>)
at stack.map (gen/bundle/main.js:126369:77... |
When running
eval("unknownVariable")
Deno gives the following cryptic error message.
=====Error inside of prepareStackTrace====
TypeError: CallSite method toString expects CallSite as receiver
at Object.toString (<anonymous>)
at stack.map (gen/bundle/main.js:127367:7... | 1 |
* [x ] I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
There should be no error
## Current Behavior
The following error happens:
> Menu.js:535 Uncaught TypeError: Cannot read property 'props' of undefined
> at Object.handleClickAway [as onClickAwa... |
Property 'ref' does not exist on type 'IntrinsicAttributes & IconButtonProps &
{ children?: ReactNode; }'
This is the case for IconButton, but might be the case for others as well
(didn't test any others).
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected B... | 0 |
### Description
Possibly similar to #5286?
Following Curl commands:
$ curl --proxy 'https://user:pass@sub.domain.com:port' https://ipinfo.io/ip # https over https proxy
# yields proxy_ip
$ curl --proxy 'https://user:pass@sub.domain.com:port' http://ipinfo.io/ip # http over https proxy
... |
`DOWNLOADER_CLIENT_TLS_METHOD` only supports values defined in
`scrapy.core.downloader.tls.openssl_methods` and they don't include TLS 1.3.
I've found that there is no similar `TLSv1_3_METHOD` in pyOpenSSL, then I've
found https://stackoverflow.com/questions/62243123/python-pyopenssl-server-
doesnt-negotiate-tls-1-3 ... | 1 |
Hello,
I would suggest to add a "regex literal" type to make ensuring that a string
data matches a pattern at assigment.
As the literal string feature has been added in the latest release, i found
very convenient to type my variables with, e.g. for typing my react props
(size : "small"| "big" )... On the same idea... |
There are cases, where a property can not just be any string (or a set of
strings), but needs to match a pattern.
let fontStyle: 'normal' | 'italic' = 'normal'; // already available in master
let fontColor: /^#([0-9a-f]{3}|[0-9a-f]{6})$/i = '#000'; // my suggestion
It's common practice in JavaScri... | 1 |
## Bug Report
### Which version of ShardingSphere did you use?
apache-shardingsphere-4.1.0-sharding-proxy-bin.tar.gz
### Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy?
ShardingSphere-Proxy
### Expected behavior
can get data correctl... |
my version is upgraded to 4.0.0-RC3.
and i still have the problem while shardingjdbc load all the default database
table metadata info causing application start slowly. i browsed all the
questions commited on the git issues. i set "check.table.metadata.enabled"
with false, i event set "executor.size" with 100。 but ... | 0 |
Is there currently a way to use reflection with an `AsyncEngine`?
e.g. something like
import asyncio
from sqlalchemy import text, select, MetaData
from sqlalchemy.ext.asyncio import AsyncEngine, AsyncSession, create_async_engine
from sqlalchemy.ext.automap import automap_base
asyn... |
The title pretty much describes this feature request. I would greatly
appreciate if SQLAlchemy would support the Runtime Inspection API with a
`AsyncEngine` much in the same way that it does with normal `Engine` objects.
I know that the SQLAlchemy devs are very busy atm, so please don't feel any
pressure to implement... | 1 |
@mpdehaan this is for you buddy
* Bump specfile
* Review man pages (any new paramaters added?)
* For good measure:
$ touch VERSION
$ make docs
* Tag 0.7
* ping me to start working on the corresponding Fedora update
|
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
ansible/modules/cloud/openstack/os_server.py
ansible/modules/cloud/openstack/os_volume.py
ansible/modules/cloud/openstack/os_server_volume.py
##### ANSIBLE VERSION
2.3.1.0
##### CONFIGURATION
default ansible.cfg
##### OS / ENVIRONMENT... | 0 |
## Steps to Reproduce
I simply copy pasted the code from the following example in a blank app.
https://github.com/flutter/website/tree/master/_includes/code/internationalization/minimal
It should display a Hello World message in the Local of the IOS phone.
I changed the language to spanish and i still get the me... |
## Steps to Reproduce
I have two languages set up on iOS and Android:
* German
* English
German is the preferred language of the system, meaning the OS and most apps
appear in German.
I created an app that has translations for both English and German:
return new MaterialApp(
local... | 1 |
Im working on simple image classifier in Java. I`m using OpenCv 3.4.3 and JDK
1.8_192 and i encountered problem with JNI.
When i execute this code
public class Main {
private static List<String> getOutputNames(Net net) {
List<String> names = new ArrayList<>();
... |
##### System information (version)
* OpenCV => ❔
* Operating System / Platform => ❔
* Compiler => ❔
##### Detailed description
##### Steps to reproduce
| 0 |
hi,
please add RTL support to next release of bootstrap,
very thanx.
|
Would be great to have support for right-to-left languages.
| 1 |
In the latest version of Flutter the behaviour of button presses is wrong.
Sometimes taps are missed because there is a move threshold - pressing, moving
then releasing your finger on a button does not result in a click.
That must be deliberate, and I guess someone thought it was the correct
behaviour but it's not. ... |
You should be able to slop around a big button without rejecting the tap
recognizer.
| 1 |
Hi
this is a request for improvement :
sometimes within the grid, you want the order of your markup to not
necessarily be the same as the order items are flowed into the grid.
It would be a nice improvement to have source ordering classes : by using
these source ordering classes, you can shift columns around on d... |
It would be nice if we could use negative offsets to allow presentation order
to be independent from source order. For example, to have the first sidebar to
come after the content in the source, but be presented still to the left of
the content.
For example, we could use something like in mixins.less:
... | 1 |
const msg = prompt();
console.log(msg);
Then enter `你好`, it outputs `�`.
It looks like we should reconsider the implementation of `readline`
deno/cli/rt/41_prompt.js
Lines 48 to 73 in d40b071
| function readLineFromStdinSync() {
---|---
| const c = new Uint8Array(1);
| const buf = []; ... |
While #8179 got partially fixed by #8199 (nice one btw, thanks for everyone
involved!!), the prompt method still has some issues regarding input (related
to stdin). For example, the code below doesn't perform as expected when non-
ascii characters are used.
const a = prompt('Insert your character')... | 1 |
Trying to upload an image from React Native to a server with Axios. I've
attached a screenshot of both the code that I'm using and the Postman form-
data view so you can see what the server expects to receive (uploading via
postman works perfectly so server is all good). Every time I try to upload an
image I get eith... |
#### Describe the issue
So I'm facing the following problem, I would like to recall the api called
which failed because the JWT token expired (so without throwing any error if
the call with valide token work) and update the axios instance
`axios.defaults.headers.common["Authorization"] = newToken`
So currently it's... | 0 |
### Problem
I'm always frustrated when I want to find the font "Arial Black", because the
family name of this font is "Arial".
I would like it if we could search a font by it's name.
Here is an example how I search the font "Arial Black":
import matplotlib.font_manager as fm
print(fm.findfont("... |
The following Ubuntu fonts are installed on my system:
/home/edwin/.fonts/Ubuntu-LI.ttf: Ubuntu,Ubuntu Light:style=Light Italic,Italic
/home/edwin/.fonts/Ubuntu-L.ttf: Ubuntu,Ubuntu Light:style=Light,Regular
/home/edwin/.fonts/Ubuntu-M.ttf: Ubuntu,Ubuntu Light:style=Medium,Bold
/home/edwin/... | 1 |
It can be super helpful to piggyback on ElasticSearch's node stats endpoint to
report various stats on all nodes on the cluster, however non-data nodes
(data=false or client=true) do not seem to have this enabled, and node stats
return mostly empty for them.
|
Using 0.90
If a data node hasn't been searched on, the getOs().getMem() in the
NodesStatsResponse for that node will be null. It appears as if an actual
search request has to be issued against a node for that to be populated.
| 1 |
Hello,
I have just upgraded from 2.0 to 2.1.7 and now I am getting an issue with the
form builder. I have a FormType class and have stripped the buildForm function
back to just trying to generate a date field:
$builder->add('fromDate', 'date');
The 'form_widget' call set in the template and outputting the followin... |
Many applications are generating memory size and function nesting errors after
upgrading to Symfony 2.1.7
For example:
Fatal error: Maximum function nesting level of '100' reached, aborting!
in /src/Symfony/Component/DependencyInjection/ContainerBuilder.php on line 696
Call Stack:
... | 1 |
# 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.... |
# Checklist
* I have checked the issues list
for similar or identical feature requests.
* I have checked the pull requests list
for existing proposed implementations of this feature.
* I have checked the commit log
to find out if the if the same feature was already implemented in the
master branch.
... | 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.2
* Operating System version: macOS 10.12.6
* Java version: 1.8
### Steps to reproduce this ... |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: xxx
* Operating System version: xxx
* Java version: xxx
### Steps to reproduce this issue
1. ... | 0 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
* docker_image
##### ANSIBLE VERSION
ansible 2.3.0
config file =
configured module search path = Default w/o overrides
##### CONFIGURATION
None
##### OS / ENVIRONMENT
N/A
##### SUMMARY
Pulling a docker image without force... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
shell module and check mode
##### ANSIBLE VERSION
[root@localhost ~]# ansible --version
ansible 1.9.4
##### CONFIGURATION
Tested with default ansible.cfg.
##### OS / ENVIRONMENT
CentOS release 6.7 (Final) up-to-date.
##### SUMMARY
... | 0 |
The duplicated code in `FormHelper` (FrameworkBundle) and `FormExtension`
(Twig bridge) should be extracted into a common base class
`Symfony\Component\Form\AbstractRenderer`. It's interface should be extracted
into a new `Symfony\Component\Form\FormRendererInterface` (containing the
render*() methods of FormExtensio... |
`bind`ing partial parameters effectively clears all existing values from the
model and only persists the new parameters that are passed in. See example:
// Author.php
class Author
{
public $name;
public $email = 'bar';
}
// AuthorType
...
$builder->add('name... | 0 |
Challenge Waypoint: Make Instances of Objects with a Constructor Function has
an issue.
User Agent is: `Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
The de... |
Hi,
## I think the sample given in the explanation is wrong.
Now, once the myCar instance is created it can be used like any other object
and can have its properties accessed and modified the same way you would
usually. For example:
var myCar.turboType = "twin"; **we don't need var**
**it should be**
**myCar.t... | 1 |
**Description**
Currently airflow doesn't provide a way to submit a DAG (an experimental api
exists but not part of airflow deployment).
Similarly it provides a way to delete dag but doesn't cleanup the file.
**Use case / motivation**
We have a requirement where I want to generate a DAG programatically and th... |
### Body
I have a kind request for all the contributors to the latest provider packages
release.
Could you help us to test the RC versions of the providers and let us know in
the comment,
if the issue is addressed there.
## Providers that need testing
Those are providers that require testing as there were some... | 0 |
When i open a file with atom editor and try to insert the "@" symbol the
editor does a horizontal text alignment instead of inserting the "@" symbol
|
> Atom doesn't handle keyboards with Right Alt (i.e. AltGr). This is a very
> basic mistake. I have a Hungarian keyboard layout, I can only write specific
> keys like "|" (pipe) by pressing Right Alt (AltGr) and then W, which Atom
> doesn't recognize and treat like Alt-W or something?
> The point is there are some... | 1 |
by **daz.fuller** :
When running on a Windows environment (Win7 64bit) the following error is reported:
2013/06/13 08:22:07 unexpected header line: "21 May 2013\r"
This appears to be a problem in parse.go in the readLine function where it is only
expecting "\n" (this appears the c... |
The spec is unclear about what constitutes a "mention" of a variable for the
purpose of determining initialization order. There are conflicting interpretations and
implementations.
See also issue #6703 (and related: 7137).
| 0 |
On my Nexus 5. Open the gallery, and then go into the app two levels deep.
Then, hit the Android back button enough times to get back to the OS's main
launch screen. Then, bring up the app switcher and select the Gallery app from
the list of backgrounded apps. Tap the gallery app.
Expected: quick resume of the galle... |
[I'm sure I've typed this issue in already but I'm unable to find it. Perhaps
I failed to press the submit button last time.]
This problem is intermittent and its symptoms are somewhat unpredictable.
Sorry.
If you back out of the Gallery app, wait a moment (I guess to make it more
likely that it has been swapped ou... | 1 |
### Bug report
In tag 2.0.1 the NavigationToolbar2QT includes an unchecked call to a Qt5
feature:
`pm.setDevicePixelRatio(self.canvas._dpi_ratio)`
https://github.com/matplotlib/matplotlib/blob/v2.0.1/lib/matplotlib/backends/backend_qt5.py#L587-L592
This is strange, b/c it's not there in tag 2.0.0 _and_ it's not t... |
### Bug report
**Bug summary**
Running arbitrary tests with matplotlib-2.0.1 results in
AttributeError: 'QPixmap' object has no attribute 'setDevicePixelRatio'
matplotlib-2.0.0 works fine
Arbitrary test, f.i.
python histogram_demo_cumulative.py
**Actual outcome**
<!--The out... | 1 |
### System info
* Playwright Version: [v1.32.3]
* Operating System: [macOS 13.3.1]
* Browser: [All]
### Source code
* I provided exact source code that allows reproducing the issue locally.
**Config file**
// playwright.config.ts
import { defineConfig, devices } from '@playwright/test';... |
### System info
* Playwright Version: [v1.32.1]
* Operating System: [Windows 10]
* Browser: [All, Chromium, Firefox, WebKit]
* Other info:
I am running a NodeJs application inside a Docker container and within the
application I launch a spawn process through an endpoint which can run all my
playwright tests... | 0 |
What steps will reproduce the problem?
Compiling exp/locale/collate consumes more than 200mb on 32bit platforms like arm (more
than 300 mb on amd64). The is most likely caused by the 50k line tables.go, and its ~
300k values.
Can anything be done to reduce the amount of memory c... |
by **huangmipi** :
After added go-sqlite3 library,
Can build program, but cant debug,
enter GDB, print value of every variable is wrong.
Envir:
go:1.1,
GDB:7.6,
os:ubuntu 11.4
| 0 |
Impossible to import numpy
### Reproducing code example:
import numpy
### Error message:
Traceback (most recent call last):
File "/home/pi/.pyenv/versions/3.7.4/lib/python3.7/site-packages/numpy/core/
**init**.py", line 17, in
from . import multiarray
File "/home/pi/.pyenv/versions/3.7.4/lib/python3.7/site-... |
When i try to run a python script that uses numpy, i receive the following
error:
ImportError: Unable to import required dependencies.
...
Original error was: /lib/arm-linux-gnueabihf/libm.so.6: version `GLIBC_2.27'
not found (required by /usr/local/lib/python3.7/site-
packages/numpy/core/_multiarray_umath.cpyt... | 1 |
### Describe your issue.
This comes from failures seen in SymPy CI:
sympy/sympy#23847
The release of Cython 0.29.31 means that building SciPy from source with pip
fails both with the latest release SciPy 1.8.1 and also the main branch.
It looks like pyproject.toml on the 1.8.x branch needs to have a better upper... |
Cython 0.29.31 was release a few hours ago and it corresponds to our CI going
red.
https://github.com/cython/cython/releases/tag/0.29.31
See for instance:
https://github.com/scipy/scipy/runs/7551272609?check_suite_focus=true
Error compiling Cython file:
1453
----------------------------------... | 1 |
On my application we were trying to analyze floating data.
we tried to use histogram on a float field and we discovered that the
"interval" field accepts only integer.
but sometimes we need to analyze floating number with more precision that the
integer number cannot give us. For an example if you want to find th... |
Fork of #3810 and #3799. Decimal intervals would be useful for certain data
types such as currencies, temperatures, lengths ...
| 1 |
### Apache Airflow version
2.2.0 (latest released)
### Operating System
Debian GNU/Linux 10 (buster)
### Versions of Apache Airflow Providers
apache-airflow-providers-celery==2.1.0
apache-airflow-providers-mysql==2.1.1
apache-airflow-providers-postgres==2.3.0
apache-airflow-providers-sq... |
### Apache Airflow version
2.2.0 (latest released)
### Operating System
Debian GNU/Linux 10 (buster)
### Versions of Apache Airflow Providers
apache-airflow-providers-celery==2.1.0
apache-airflow-providers-mysql==2.1.1
apache-airflow-providers-postgres==2.3.0
apache-airflow-providers-sq... | 1 |
Deno provides a lot of useful objects in the runtime. It is also great to see
a project that is solving many of the security problems of running JavaScript.
I'd like to lock things down even further so that I can use Deno for hermetic
config generation.
Are there plans to offer something like the vm module availabl... |
const blob_src = new Blob(['console.log("Worker from BLOB")'])
new Worker(URL.createObjectURL(blob_src), {type:'module'})
On `deno 1.0.1 v8 8.4.300 typescript 3.9.2` results in the following
unsupported scheme error:
error: Uncaught Error: Unsupported scheme "blob" for module "bl... | 1 |
Boostrap 2.3.0 doesn't compile with lessphp (v0.3.8) any more. Does anyone
know a quick workaround for this issue?
|
With latest version of mixins.less lessphp (version 0.3.8) if showing error:
Fatal error: Uncaught exception 'Exception' with message 'parse error: failed
at `{ .span(@index); }` ../less/mixins.less on line 578'
There are no problems with previous versions with
(~".span@{index}") { .span(@Index); }
| 1 |
by **coocood** :
Before filing a bug, please check whether it has been fixed since the
latest release. Search the issue tracker and check that you're running the
latest version of Go:
Run "go version" and compare against
http://golang.org/doc/devel/release.html If a newer version ... |
What steps will reproduce the problem?
If possible, include a link to a program on play.golang.org.
1. http://play.golang.org/p/PTxGY_fgvj
2. http://play.golang.org/p/enhRdN7Byq
3.
What is the expected output?
"process took too long"
What do you see instead?
"run... | 0 |
Here's the backtrace. Let me know if the code I was compiling would be
helpful, I tagged the rev locally.
`rustc 1.1.0-nightly (7bd71637c 2015-05-06) (built 2015-05-06)`
$ RUST_BACKTRACE=1 cargo test
Compiling dumbmath v0.1.6 (file:///home/nicholasbishop/dumbmath)
error: internal compiler e... |
I got an internal compiler error when `cargo test`ing my code, and I was
unfortunately unable to reproduce on a small sample. The code is here on
Github, to reproduce the error, change the literal on one line in test from
`42.0` to `42`.
$ rustc --version --verbose
rustc 1.0.0-nightly (522d09dfe 20... | 1 |
type MyDatabaseTable struct {
SomeDescription string `db:"some_description" json:"some_description"`
}
type MyDatabaseTable struct {
SomeDescription string `db, json:"some_description"`
}
To make it consistent with the `:=` and `=` op... |
The builder has little to say:
signal: segmentation fault (core dumped)
FAIL image/draw 0.367s
Appears to be independent of other failures, will investigate tomorrow.
| 0 |
matplotlib v2.0.0rc1, Python 3.5, OSX
upgraded via conda over standard anaconda installation
`%matplotlib notebook`
fails with an error message:
`Incompatible library version: _png.cpython-35m-darwin.so requires version
43.0.0 or later, but libpng16.16.dylib provides version 39.0.0`
Resolved via: `conda upgrade ... |
### Bug report
**Bug summary**
Matplotlib segfaults when creating a figure when used in combination with the
standard multiprocessing library.
**Code for reproduction**
import multiprocessing as mp
import matplotlib.pyplot as plt
def plot():
fig = plt.figure()
... | 0 |
Hello,
I've stumbled onto a behavior that causes performance problems on large
datasets: When creating a multiindex with second level being a DateTime64 col,
and then doing a `.loc[('val1', TimeStamp('val2'),)]` to get at particular
value, pandas coerces (via _box_func, called from **iter** ) all values in
that part... |
The `drop_duplicates()` function in Python 3 is broken. Take the following
example snippet:
import pandas as pd
raw_data = {'x': [7,6,3,3,4,8,0],'y': [0,6,5,5,9,1,2]}
df = pd.DataFrame(raw_data, columns = ['x', 'y'])
print("Before:", df)
df = df.drop_duplicates()
print("Af... | 0 |
Hello,
today, I was upgrading deno with `deno upgrade` and my antivirus (Avast) made
popups. One of them said something like _We've protected **deno.exe** because
it was acting suspiciously._ and _Threat blocked. We've blocked
**UNP244220764.TMP** because we've founded that it's infected by
**IDP.HELU.PSD11**_ (I d... |
I received an alert from the Avast antivirus during the upgrade of deno (from
version 1.0.0 to version 1.0.1).
I ran the command 'deno upgrade' from the PowerShell terminal on Windows 10
SO.
The alert says that the deno.exe was infected with IDP.HELU.PSD11
 >= X is
> always true [-Werror=strict-overflow]
> assert(i... |
cc: @mingfeima
/home/jaliya/repos/pytorch_clean/third_party/ideep/mkl-dnn/src/cpu/jit_avx512_core_u8s8s32x_wino_convolution.cpp: In member function ‘void mkldnn::impl::cpu::jit_avx512_core_u8s8s32x_wino_conv_dst_trans_t::generate()’:
/home/jaliya/repos/pytorch_clean/third_party/ideep/mkl-dnn/src/cp... | 1 |
When hardware acceleration is enabled (OS X 10.10.1, Atom 0.165.0), rendering
artifacts occur when text clips behind the vertical scrollbar in the file
pane. I've included a GIF animation that demonstrates the problem. I've
noticed it doesn't always occur. For example, if I have the setting page open
and active, I do... |

| 1 |
Components wrapped in React.memo don't have a display name in the "components"
tab of React DevTools.
React version: 16.13
## Steps To Reproduce
1. create a component that uses React.memo
2. name the component using "displayName"
3. open DevTools
4. the component will not use the name from step 2
... |
If you create a component via `React.memo` and then explicitly provide it with
a `displayName`, DevTools ignore this display name.
React version: 16.12.0
DevTools version: 4.4.0
## Steps To Reproduce
1. Create a component like:
const FancyMemoComponent = React.memo(() => 'Check my name in DevToo... | 1 |
`import matplotlib.pyplot as plt` is erroring for matplotlib-1.5.3 while
trying to import from PyQt4.
I have observed this while running on Travis-CI, linux, installing matplotlib
using conda. Here is a trace-back from the python 3.4.2 failure
(https://travis-ci.org/simpeg/simpeg/jobs/160737799), for 2.7.9, there is... |
Our pandas tests on travis started to fail last night on python 3.5 (eg
https://travis-ci.org/pydata/pandas/jobs/160584906) with errors in our
plotting tests (among others: "ImportError: No module named 'PyQt4'").
Compared to the previous build that passed, I noticed the difference in
matplotlib and pyqt versions (... | 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/.):
BUG REPORT
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply th... |
Most applications should be running in multiple zones to increase
availability. Kubernetes should support it. I imagine this to work in the
following way:
1. User sets up cluster in a region in a way that minions are spread evenly across all available zones
2. User creates replication controller for the applicat... | 0 |
**Migrated issue, originally created by Anonymous**
#sqlite does not have problem with this, but postgres has. (and i guess any
#other more strict DB).
#This functionality is being used in polymorphic_union()
from sqlalchemy import *
db = create_engine( 'sqlite:///:memory:')
meta = BoundMetaData( db)
table_... |
**Migrated issue, originally created by Dan Stovall**
In MSSQL a ROWVERSION or TIMESTAMP column do not contain a date time. Instead
the contain an 8-byte integer. Currently, the column is set as
sqlachemy.sql.sqltypes.TIMESTAMP, which is an instance of the DateTime type.
Running a query against a table with such a ... | 0 |
Electron version: 1.7.6
Operating system: Windows 7
Same as #8828
I am using 1.7.6 and still facing the same issue. It gets stuck at spooling.
It works fine when I am running the app from the command line for development
but does not work if I install the app using .exe file. It was working
properly on my dev mac... |
* Electron version: 1.8.4
* Operating system: Windows
Thanks for your excellent work! After a year of waiting, when will the
encryption of ASAR be applied? Thank you~
| 0 |
If you add `inf, -inf` into the list
https://github.com/pytorch/pytorch/blob/master/test/test_torch.py#L9274 it'll
fail the test.
So from numpy doc, `inf` norm is defined as `max(sum(abs(x), axis=1))` for
matrix and `max(abs(x))` for vector, but it seems we always implemented
`max(abs(x))`.
short repro:
... |
`torch.norm` currently have the following inconsistent behavior where for
matrix inputs and `ord` is a numerical value, **vector** norm is computed
instead:
===== ============================ ==========================
ord matrix norm vector norm
... | 1 |
I am interested in your project and want to contribute but it's hard to figure
out what I should start maybe start gitter chat ?
Or you can suggest me here ?
|


* I have searched the issues of this repository and believe that this is not a duplicate.... | 0 |
### Bug report
**Bug summary**
**Code for reproduction**
import matplotlib.pyplot as plt
a = [[1,2],[3,4]]
plt.imshow(a)
plt.show()
Try to click on the 'edit axis, curve, and image parameters' button (the one
with the wavy line with an arrow at the end) in the plot window.
**Ac... |
### Bug report
**Bug summary**
Clicking on the figure options button (only available in the Qt backend) when
showing an image does not work anymore. The dialog does not open and the
script throws a TypeError.
**Code for reproduction**
from matplotlib import use
use('Qt5Agg')
import nump... | 1 |
**nebhale** opened **SPR-1555** and commented
I'd like to see support for the TestNG framework in the Spring Mocks area. To
that end, I've gone ahead and done an initial conversion using the existing
AbstractSpringContextTest and it's subclasses. As I worked on it, I felt that
there was a ton of logic that would ha... |
**Greg Matthews** opened **SPR-1423** and commented
When building a web application, you typically need to present messages to the
user that can be an error, information, or warning.
There is no built in support for this in Spring, other than the Errors
interface.
It would be good if there was built in support fo... | 0 |
This program:
fn main() {
let a: &str = "one";
let b: String = "two".into_string();
let c = a + b;
println!("{}", c);
}
outputs `twoone` instead of `onetwo`. The issue is in `impl<'a> Add<String,
String> for &'a str`: it adds the slice (which is on the left-han... |
Probably because of the changes in `dbc7e17` / `076e932` the following code
now prints **"Text: suffixprefix"** (playpen link: http://is.gd/5f44Bo):
fn main() {
let prefix = "prefix";
let suffix = "suffix".to_string();
println!("Text: {}" , prefix + suffix);
}
I think ... | 1 |
Trying to include rust-http as a dependency results in an internal error,
running `946654a`.
$ RUST_BACKTRACE=1 cargo build --verbose
Fresh openssl v0.0.0 (https://github.com/sfackler/rust-openssl.git#cec41181)
Fresh encoding v0.1.0 (https://github.com/lifthrasiir/rust-encoding#35... |
use std::io;
fn f(wr: &mut Writer) {
wr.write_str("hello").ok().expect("failed");
}
fn main() {
let mut wr = box io::stdout() as Box<Writer + 'static>;
f(&mut wr);
}
$ rustc foo.rs
error: internal compiler error: trying to take the siz... | 1 |
* VSCode Version:latest
* OS Version:win7
Steps to Reproduce:
1. It automatically copy my code of .js file when I press Ctrl+s。
|
* open User settings
* check the errors view, 2 warnings in settings.json (caused by #7312)
* click on the warning. Error:
> Unable to open 'settings.json': Cannot read property 'then' of null.
| 0 |
**Nikita Tovstoles** opened **SPR-9298** and commented
On each web request, RequestMappingHandlerAdapter.invokeHandlerMethod()
indirectly calls MethodParameter.getParameterAnnotations(), which calls into
JRE lib method causing monitor contention. See screen shots & YourKit
snapshot. Most likely will need to patch sp... |
**Patrick Linskey** opened **SPR-9748** and commented
RequestMappingHandlerAdapter creates a new HandlerMethod for each request.
HandlerMethods cache their MethodParameters to avoid costly reflection calls
each time annotation stats are needed, but the per-request copy circumvents
this cache. This patch explicitly ... | 1 |
here is my benchmark info (The model is inception-2015-12-05):
I tensorflow/core/util/stat_summarizer.cc:262] 50 runs, avg 2880 ms, 1960
nodes defined 1664 nodes observed
============ Top by duration =================
[start] [first] [avg] [%] [cdf%] [Op] [Name]
348.471 199.520 162.116 5.629% 5.629% Quantized... |
1. On Ubuntu 15.10 with CUDA 7.5, cuDNN 7.0, tensorflow-0.9.0rc0, ran "tensorflow/examples/label_image/" application by taking inception-v3 graph and roughly measure the elapsed time.
2. Then take "tensorflow/contrib/quantization/tools:quantize_graph" to quant inception-v3, rebuilt application by giving
... | 1 |
[X] bug report
[ ] feature request
[ ] support request
**Current behavior**
Let's suppose we have to following modules:
AppModule
-> imports FeatureModule
-> import SubFeatureModule
`FeatureModule` has routes definitions
`SubFeatureModule` has componen... |
Typescript emits an `__extends` helper to, well, help with extending classes.
It currently shows up a few dozen times in our codebase, turning it off in the
broccoli tree saves ~70KB unminified / 44KB minified in the existing System
bundles.
option is `noEmitHelpers: true`
Same optimization in Rx saves ~20KB or so... | 0 |
I cannot understand why the result of `take` can be visited by a for loop
while throwing an error when put in a list comprehension, such as the code
for x in take(repeated(2), 10)
println(x)
end
works well but the following code
[x for x in take(repeated(2), 10)]
... |
AIUI, the Julia package manager currently allows only per-user installation of
packages.
From a packager perspective (I am a Debian developer), the possibility of
having both system-wide and per user packages is very important.
In Debian, we already distribute large parts of Python's PIP, Perl's CPAN, R's
CPAN, Oct... | 0 |
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gci-gke-staging/43/\n\nMultiple broken tests:\n\nFailed: [k8s.io] Kubectl client [k8s.io] Simple pod should support inline\nexecution and attach {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:281\n Expected\n <bool>: false\n to be true\n \n\nIssues about this test specifically: #26324 #27715\n\nFailed: [k8s.io] Kubelet [Serial] [Slow] [k8s.io] regular resource usage\ntracking resource tracking for 0 pods per node {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:277\n Oct 4 09:53:52.736: Memory usage exceeding limits:\n node gke-jenkins-e2e-default-pool-a07f754a-j3nh:\n container \"runtime\": expected RSS memory (MB) < 89128960; got 91185152\n node gke-jenkins-e2e-default-pool-a07f754a-jgc7:\n container \"runtime\": expected RSS memory (MB) < 89128960; got 99504128\n \n\nIssues about this test specifically: #26784 #28384 #33023\n\nFailed: [k8s.io] Kubelet [Serial] [Slow] [k8s.io] regular resource usage\ntracking resource tracking for 100 pods per node {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:277\n Oct 4 10:24:30.100: Memory usage exceeding limits:\n node gke-jenkins-e2e-default-pool-a07f754a-j3nh:\n container \"runtime\": expected RSS memory (MB) < 314572800; got 540254208\n node gke-jenkins-e2e-default-pool-a07f754a-jgc7:\n container \"runtime\": expected RSS memory (MB) < 314572800; got 533241856\n node gke-jenkins-e2e-default-pool-a07f754a-mpr5:\n container \"runtime\": expected RSS memory (MB) < 314572800; got 527937536\n \n\nIssues about this test specifically: #26982 #33994\n\nFailed: [k8s.io] Kubelet [Serial] [Slow] [k8s.io] regular resource usage\ntracking resource tracking for 35 pods per node {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:277\n Oct 4 05:31:57.793: Memory usage exceeding limits:\n node gke-jenkins-e2e-default-pool-a07f754a-7x0o:\n container \"runtime\": expected RSS memory (MB) < 157286400; got 229957632\n node gke-jenkins-e2e-default-pool-a07f754a-jgc7:\n container \"runtime\": expected RSS memory (MB) < 157286400; got 225828864\n node gke-jenkins-e2e-default-pool-a07f754a-mpr5:\n container \"runtime\": expected RSS memory (MB) < 157286400; got 227266560\n \n\nIssues about this test specifically: #28220\n\n" | ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gci-gke-staging/3/\n\nMultiple broken tests:\n\nFailed: [k8s.io] Kubelet [Serial] [Slow] [k8s.io] regular resource usage\ntracking resource tracking for 0 pods per node {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:277\n Sep 23 05:00:45.790: Memory usage exceeding limits:\n node gke-jenkins-e2e-default-pool-033aeb8c-6hqp:\n container \"runtime\": expected RSS memory (MB) < 89128960; got 97689600\n \n\nIssues about this test specifically: #26784 #28384 #31935 #33023\n\nFailed: [k8s.io] Kubelet [Serial] [Slow] [k8s.io] regular resource usage\ntracking resource tracking for 35 pods per node {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:277\n Sep 23 06:26:08.472: Memory usage exceeding limits:\n node gke-jenkins-e2e-default-pool-033aeb8c-i65p:\n container \"runtime\": expected RSS memory (MB) < 157286400; got 247791616\n node gke-jenkins-e2e-default-pool-033aeb8c-uxc7:\n container \"runtime\": expected RSS memory (MB) < 157286400; got 246493184\n node gke-jenkins-e2e-default-pool-033aeb8c-6hqp:\n container \"runtime\": expected RSS memory (MB) < 157286400; got 243408896\n \n\nIssues about this test specifically: #28220 #32942\n\nFailed: [k8s.io] SchedulerPredicates [Serial] validates that NodeSelector is\nrespected if matching [Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/scheduler_predicates.go:549\n Expected error:\n <*errors.StatusError | 0xc82173ac00>: {\n ErrStatus: {\n TypeMeta: {Kind: \"Status\", APIVersion: \"v1\"},\n ListMeta: {SelfLink: \"\", ResourceVersion: \"\"},\n Status: \"Failure\",\n Message: \"Operation cannot be fulfilled on nodes \\\"gke-jenkins-e2e-default-pool-033aeb8c-6hqp\\\": the object has been modified; please apply your changes to the latest version and try again\",\n Reason: \"Conflict\",\n Details: {\n Name: \"gke-jenkins-e2e-default-pool-033aeb8c-6hqp\",\n Group: \"\",\n Kind: \"nodes\",\n Causes: nil,\n RetryAfterSeconds: 0,\n },\n Code: 409,\n },\n }\n Operation cannot be fulfilled on nodes \"gke-jenkins-e2e-default-pool-033aeb8c-6hqp\": the object has been modified; please apply your changes to the latest version and try again\n not to have occurred\n \n\nIssues about this test specifically: #29516\n\nFailed: [k8s.io] Downward API volume should update labels on modification\n[Conformance] {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/downwardapi_volume.go:97\n Timed out after 45.000s.\n Expected\n <string>: content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n content of file \"/etc/labels\": key1=\"value1\"\n key2=\"value2\"\n \n to contain substring\n <string>: key3=\"value3\"\n \n \n\nIssues about this test specifically: #28416 #31055\n\nFailed: [k8s.io] Kubelet [Serial] [Slow] [k8s.io] regular resource usage\ntracking resource tracking for 100 pods per node {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubelet_perf.go:277\n Sep 23 02:37:35.336: Memory usage exceeding limits:\n node gke-jenkins-e2e-default-pool-033aeb8c-6hqp:\n container \"runtime\": expected RSS memory (MB) < 314572800; got 523587584\n node gke-jenkins-e2e-default-pool-033aeb8c-i65p:\n container \"runtime\": expected RSS memory (MB) < 314572800; got 522100736\n node gke-jenkins-e2e-default-pool-033aeb8c-uxc7:\n container \"runtime\": expected RSS memory (MB) < 314572800; got 525316096\n \n\nIssues about this test specifically: #26982 #32214\n\nFailed: Test {e2e.go}\n\n \n \n error running Ginkgo tests: exit status 1\n \n\nIssues about this test specifically: #33361\n\n" | 1 |
System.TimeoutException: Timeout 30000ms exceeded.
=========================== logs ===========================
<launching> C:\Windows\system32\config\systemprofile\AppData\Local\ms-playwright\firefox-1304\firefox\firefox.exe -no-remote -wait-for-browser -foreground -profile C:\Windows\TEMP\playw... |
### Your question
System.TimeoutException: Timeout 30000ms exceeded.
=========================== logs ===========================
<launching> C:\Windows\system32\config\systemprofile\AppData\Local\ms-playwright\firefox-1304\firefox\firefox.exe -no-remote -wait-for-browser -foreground -profile C... | 1 |
At the moment there's no way that I can see to pass attr attributes through to
the separate date and time child widgets of a datetime instance. This is easy
to fix and I'm happy to put together a PR if people think it's a good idea.
The proposed solution is:
* add `date_widget_attr` and `time_widget_attr` options... |
We currently use various different ways for influencing the options of the
children of an added type:
a) By letting _one_ option accept _multiple values_ for the children (e.g. the
"empty_value" option in DateType)
$form->add('updatedAt', 'date', array(
'empty_value' => array(
'day... | 1 |
VS code on my Mac cannot save modified files suddenly. I tried restarting VS
Code and MAC itself, but none brought saving back. It keeps popping this
dialog when I cmd + S to save a file.
More information:
VS version: 0.10.6
 in directories
like C:\Program Files that require administrative rights. When you open them
with code and save the file it says "Permission denied". So I have to run Code
with right click as administrator and then choose "open file" to open the
file. Once, i... | 1 |
### Apache Airflow Provider(s)
google
### Versions of Apache Airflow Providers
apache-airflow-providers-google 6.8.0
apache-airflow-providers-amazon 3.2.0
apache-airflow-providers-ftp 2.1.2
apache-airflow-providers-http 2.1.2
apache-airflow-providers-imap 2.2.3
apache-airflow-providers-postgres 4.1.0
a... |
### Apache Airflow version
2.0.2
### What happened
2022-02-26 15:42:51 UTC [104192]: user=prod_airflow,db=prod_airflow,app=[unknown],client=10.80.166.208 STATEMENT: UPDATE dag SET next_dagrun='2022-02-26T15:32:50.428672+00:00'::timestamptz, next_dagrun_create_after='2022-02-26T15:42:50.428672+00:00':... | 0 |
If you put a widget inside of a stack, and you offset it in such a way that
parts of it would exist outside of that stack, and then you wrap it in some
sort of animation that animates the opacity, it will animate oddly. This is
100% reproducible.
This is pretty severe in some cases, for example an image that is fade... | 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
... |
in creating a options list that allows the user to change different settings i
found a problem with the type checkbox . take this component
(function(app){
app.testing=ng.core.Component({
selector:"testing",
template:"<input type='checkbox' [(ngModel)]='testing'/>"+
"<template ngFor #it... | 0 |
# 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.... |
# 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.... | 1 |
Bootstrap: affix.js v3.1.1
When you scroll to the bottom, the "position" system is set. But it is not
"unset" when you scroll back up (unpin).
I fixed the problem by changing:
. if (this.unpin) this.$element.css('top', '')
...to...
if (this.unpin) this.$element.css('top', '').css('position', '')
Dunno if this i... |
When scrolling to the bottom of the page, affix-Plugin sets the class "affix-
bottom" and sets inline styles like "position: relative; top: XYZpx;". The
Problem is, that the inline "position: relative" aren't removed after
scrolling up again. It would be better, to set "position: relative" via the
class "affix-bottom... | 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/.): No
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.): "r... |
**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.): "btrfs... | 0 |
In this small example below, both snippets used to compile. Recently,
however, only the 2nd snippet compiles:
http://pastie.org/743667
What is the expected output? What do you see instead?
I expect both to compile.
What is your $GOOS? $GOARCH?
linux/386
... |
by **kballard** :
Building launchpad.net/goyaml produces a series of warnings:
decode.go: In function ‘_cgo_27a928056cbd_Cfunc_event_alias’:
decode.go:34:7: warning: assignment from incompatible pointer type [enabled by default]
decode.go: In function ‘_cgo_27a928056cbd_Cfunc_event_map... | 0 |
What I want to do is retrieving(or slicing 1-element) from tensor with tensor
indices.
for example,
data = tf.constant( [ [1,2,3], [4,5,6] ] )
i = tf.constant(2)
j = tf.constant(1)
k = data[i,j] # error
l = tf.gather( tf.gather(data, i) , j) # ok. but generate errors when gradi... |
### Issue:
TFLearn estimator summary writer fails because _write_dict_to_summary() in
/tensorflow/contrib/learn/python/learn/estimators/estimator.py dose not allow
int values, which naturally stops the np.int64 valued 'global_step' parameter
from being written, thus causing the summary writer to fail.
### How to re... | 0 |
### Preflight Checklist
* I have read the Contributing Guidelines for this project.
* I agree to follow the Code of Conduct that this project adheres to.
* I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 8.... |
### Preflight Checklist
* I have read the Contributing Guidelines for this project.
* I agree to follow the Code of Conduct that this project adheres to.
* I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:** confirme... | 1 |
Also, what is the latest stable version? I use 3.7.0 but I see there is a 3.8
and a 3.7.1? Which is the latest stable?
|
Right now Glide is in a bit of an awkward state with 3.x being updated from
times to times while the focus seems to be on version 4.
3.x is a bit of a pain to compile with JVM 7 and old support libraries while
improvements made on the 4.x branch can only be used if we compile it
ourselves.
Is there any plan to offi... | 1 |
##### System information (version)
* OpenCV => 3.4.2
* Operating System / Platform => Windows10
* Compiler => android-sdk/ndk-bundle/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe (ver 3.8)
##### Detailed description
configure using cmake-gui
default build pass, failed with following configuration
... |
##### System information (version)
* OpenCV => 4.0.1:
* Operating System / Platform => Android 8.0 armeabi-v7a:
* Compiler => ❔ clang NDK 19, 18, 17, 16
##### Detailed description
I am trying to use opencv-4.0.1-android-sdk.zip in latest Android studio. For
Armv8 everything is ok. Armv7 crashes when I am try... | 0 |
My issue is about scipy.signal.medfilt(values, window). It works perfectly
between values[(window+1)/2 : -(window+1)/2]. Near the edges it returns a
ascending sorted list of values at the beginning and descending sorted list of
values at the end.
This should be _either_ metioned in the document _or_ fixed as a prope... |
Hi, I have been facing a lot of issues while installing python packages such
as scipy, skearn, numpy, spacy and scikit-learn. I tried using pip, conda but
unfortunately i was not able to install all requirements. Is there any problem
of mac m1 processor with packages like scipy, skearn, numpy, spacy and scikit-
learn... | 0 |
Hi
when I write this code:
export default function Bug(props) {
return (
<Bug></Bug>
)
}
it will cause crashes and my browser never responses on the page and the page
progress indicator turns forever without any error or something else. and the
whole page freezes... |
**Do you want to request a _feature_ or report a _bug_?**
* Feature (possibly bug?)
**What is the current behavior?**
I've been trying out the new Context API in my project and it's awesome.
However, in my haste to start using it, I managed to stumble into a situation
where every time I would try and render a c... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.