text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
### Feature request
Whisper speech recognition without conditioning on previous text.
As in
https://github.com/openai/whisper/blob/7858aa9c08d98f75575035ecd6481f462d66ca27/whisper/transcribe.py#L278
### Motivation
Whisper implementation is great however conditioning the decoding on previous
text can cause signif... |
Hello,
I tried to import this:
`from transformers import AdamW, get_linear_schedule_with_warmup`
but got error : model not found
but when i did this, it worked:
from transformers import AdamW
from transformers import WarmupLinearSchedule as get_linear_schedule_with_warmup
however when ... | 0 |
### Bug summary
I put a `torch.Tensor` in `matplotlib.pyplot.hist()` , but it draw a wrong
graphic and take a long time.
Although transform to numpy, the function work well. But all the others
function I used are work well on tensor. So I think its a bug.
### Code for reproduction
import matplotlib... |
### Bug report
**Bug summary**
Generating `np.random.randn(1000)` values, visualizing them with `plt.hist()`.
Works fine with Numpy.
When I replace Numpy with tensorflow.experimental.numpy, Matplotlib 3.3.4
fails to display the histogram correctly. Matplotlib 3.2.2 works fine.
**Code for reproduction**
... | 1 |
### System info
* Playwright Version: [v1.31.2]
* Operating System: [Windows VM]
* Browser: [ONLY in Chromium]
* Other info: It used to work fine until updated to v1.31 and now even if I revert back to previous versions still getting the same error (the error only happens in the Windows VM , not in my local ... |
### System info
* Playwright Version: v1.32.2
* Operating System: Windows 11
* Browser: All
* Node.js 18.12.0
* PowerShell 7.3.3
### Source code
* I provided exact source code that allows reproducing the issue locally.
**Link to the GitHub repository with the repro**
https://github.com/tadashi-aikawa... | 0 |
ERROR: type should be string, got "\n\nhttps://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/container_bridge.go#L122-L143 \ncontainer_bridge.go assumes that the virtual IP of services & pods will be in\nthe `10.` space. \nI propose there is no reason to make this assumption.\n\nAs outlined in #15932, cluster admins may need to deploy to hosts in which\n`10.` is reserved for the nodes. In such a case, Kubelets must support an\nalternative range.\n\n" |
Today kubelet sets up an iptables MASQUERADE rule for any traffic destined for
anything except 10.0.0.0/8. This is close, but not even correct on GCE, and
certainly not right elsewhere.
First GCE. We probably want something like:
iptables -t nat -N KUBE-IPMASQ
iptables -t nat -A KUBE-IPMASQ -d 10.... | 1 |
.valid would apply the normal ("successful") input/textarea/select styles when
applied to those input types while within a .control-group.error.
The use case for this is a .control-group section with a "multi-part" input
(ex: time entry with hour and minute fields). If minutes was valid, but hour
was not the .contro... |
It would be useful to provide column push and pull classes for all three
different grids.
This means that `.col-push-*` and `.col-pull-*` only affect the mobile grid
and are joined by `.col-push-sm-*`, `.col-pull-sm-*` and `.col-push-lg-*`,
`.col-pull-lg-*` to control the column order differently depending on the gr... | 0 |
### Is there an existing issue for this?
* I have searched the existing issues
### This issue exists in the latest npm version
* I am using the latest npm
### Current Behavior
Currently, my package.json specifies `"typescript": "^5.0.2"`. When I change
it to say `"typescript": "^5.0.3"`, npm 9 spins for 4:28... |
### Is there an existing issue for this?
* I have searched the existing issues
### This issue exists in the latest npm version
* I am using the latest npm
### Current Behavior
When running `npm install` it will sometimes hang at a random point. When it
does this, it is stuck forever. CTRL+C will do nothing t... | 1 |
I love the Acrylic effect in the new terminal. Really gives it a modern feel.
But at the moment, whenever you focus on a different program, i.e click away
from the terminal, it loses the Acrylic effect and goes to a solid color. I
have two monitors so most of the time, I have my terminal visible on the
second monitor... |
Using Windows Store version 0.5.2762.0
Zipped DMP file attached.
conhost.exe.21732.dmp.zip
| 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.0
* Operating System version: Mac OS
* Java version: 1.8
### 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.
https://github.com/apache/incubator-
dubbo/blob/6e4ff91dfca4395a8d1b180f40f632e97acf779d/dubbo-monitor/dubbo-
monitor-
api/src/main/java/... | 0 |
I hope this is not a dupe, I was really surprised by this bug because - being
so simple in nature - it appears it should have been caught by your tests (or
at least stumbled upon by other people), hence there is a slight probability
that I misunderstood something or that the compiler isn't capable to do the
necessary... |
The compiler should issue an error when code uses values before they could
possibly be initialized.
// Error, 'Derived' declaration must be after 'Base'
class Derived extends Base { }
class Base { }
| 1 |
_Original tickethttp://projects.scipy.org/numpy/ticket/1044 on 2009-03-09 by
@pv, assigned to unknown._
\--- Continuation of #1440.
Ufuncs return array scalars for 0D array input:
>>> import numpy as np
>>> type(np.conjugate(np.array(1+2j)))
<type 'numpy.complex128'>
>>> type(np.sum(np.a... |
I have a unit test failing on `np.divide.accumulate` with numpy 1.15.0
compiled with the Intel compiler. The same code is fine with a local build of
GCC.
Perhaps this is related to ENH: umath: don't make temporary copies for in-
place accumulation (#10665) where @juliantaylor fixed
`numpy/core/src/umath/loops.c.src`... | 0 |
With this issue I would like to track the efforts in integrating the
cudnn library within tensorflow.
As of June 17th 2016 doing a manual grep on the repository gives these
functions as being mapped from cudnn to the stream executor,
From chapter 4 of the cudnn User Guide version 5.0 (April 2016):
* cudnnGet... | 1 | |
### Bug report
**Bug summary**
If there are multiple curves with the same label in a figure/subplot, only the
last one of them can be selected in the _Figure options_ window under the
_Curves_ tab. In the legend however, they appear as they should.
**Code for reproduction**
import matplotlib.pyplot... |
### Bug report
**Bug summary**
**Code for reproduction**
# Paste your code here
#
#
**Actual outcome**
# If applicable, paste the console output here
#
#
**Expected outcome**
**Matplotlib version**
* Operating system:
* Matplotlib version:
* Matplotlib ba... | 0 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
Templating
##### ANSIBLE VERSION
1.8.2
##### CONFIGURATION
##### OS / ENVIRONMENT
N/A (but rhel7)
##### SUMMARY
When entering passwords for login/sudo, they are parsed by the templater
instead of being used literally. This creates unexp... |
##### ISSUE TYPE
* Documentation Report
##### COMPONENT NAME
https://docs.ansible.com/ansible/latest/dev_guide/developing_modules_documenting.html#return-
block
##### ANSIBLE VERSION
N/A since it's web documentation
##### CONFIGURATION
N/A
##### OS / ENVIRONMENT
N/A
##### SUMMARY
Documentation has the de... | 0 |
It would be great if Bootstraps javascripts would be compatible with Zepto. As
Zepto is almost API compatible with jquery this shouldn't be that hard.
| 0 | |
please add 'raw' to modules allowed to have duplicate parameters.
ansible/lib/ansible/runner/__init__.py
Line 444 in be4dbe7
| is_shell_module = self.module_name in ('command', 'shell')
---|---
- is_shell_module = self.module_name in ('command', 'shell')
+ is_shell_module = self.module_nam... |
##### Issue Type:
Feature Idea
##### Ansible Version:
1.6.6
##### Environment:
N/A
##### Summary:
I developed a lookup plugin which is for pulling secret keys from the cloud
server. However, when I use `with_secret` statement like this
- name: foo
bar: secret={{ item }}
with_secret: ... | 0 |
* Electron Version: 3.0 Beta 4
* Operating System (Platform and Version): Windows10, 8 (x86 and x64)
* Last known working Electron version: 2.x
**Expected Behavior**
PDF should be displayed.
**Actual behavior**
"Save As.." dialog for download appears and pdf will not be displayed, even
when downloaded.
*... |
* Electron version: 0.36.7
* Operating system: OS X
My electron app needs to make an HTTP request to a service that returns
malformed headers:
$ curl -IS 'http://192.168.0.1/getdeviceinfo/info.bin'
HTTP/1.1 200 OK
Date: Wed, 02 Dec 2015 16:42:45 GMT
Server: nostradamus 1.9.5
Connec... | 0 |
Fixing issue #9691 revealed a deeper problem with the QuadPrefixTree's memory
usage. At 1m precision the example shape in
https://gist.github.com/nknize/abbcb87f091b891f85e1 consumes more than 1GB of
memory. This is initially alleviated by using 2 bit encoded quads (instead of
1byte) but only delays the problem. More... |
**Elasticsearch version** :
2.3.4
**JVM version** :
1.8
# some gc log
[monitor.jvm ] [Powerpax] [gc][young][132059][21130] duration [756ms],
collections [1]/[1.4s], total [756ms]/[10.3m], memory
[26.7gb]->[24.1gb]/[29.6gb
], all_pools {[young] [2.7gb]->[3.2mb]/[2.7gb]}{[survivor]
[20.6mb]->[240.8mb]/[357.7m... | 0 |
Apparently there isn't any narrative documentations for some non-clustering
metrics as it was pointed in #1507.
|
There is no user guide on the classification / regression metrics....
| 1 |
## The Problem
VSCode can nicely handle comments in JSON files. However, the JSON
specification does **not** allow comments in JSON files. Therefore most JSON
parsers fail when JSON files contain comments. E.g. `package.json` fails, and
even the typescript compiler fails on tsconfig.json files that include
comments.... |
I'm running VSCode in a corporate network (Active Directory), when I install
VSCode I'm asked for an admin password, after the installation normal users
sessions don't have the VSCode context menu options, only the admin account
has that menu.
How can I add the context menu for all users?
| 0 |
In order to have nice looking paths without hash or bang, I am using history
mode:
var router = new VueRouter({
routes: routes,
mode: 'history'
})
However, when I refresh a page, I get a 404 error. If I remove mode:
'history', I can go directly to urls at a path and refresh pages in my
browser.
Can I remove ... |
### Vue.js version
2.0.2
### Reproduction Link
When I deployment my vue app to IIS, refresh page in SPA component, I go 404
error
| 1 |
#### Challenge Name
https://www.freecodecamp.com/challenges/target-the-children-of-an-element-
using-
jquery#?solution=%0Afccss%0A%20%20%24(document).ready(function()%20%7B%0A%20%20%20%20%24(%22%23target1%22).css(%22color%22%2C%20%22red%22)%3B%0A%20%20%20%20%24(%22%23target1%22).prop(%22disabled%22%2C%20true)%3B%0A%... |
Challenge Waypoint: Clone an Element Using jQuery has an issue.
User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
## Issue
I believe... | 1 |
> Issue originally made by @dfilatov
### Bug information
* **Babel version:** 6.3.13
* **Node version:** 4.2.1
* **npm version:** 2.14.7
### Options
--presets es2015
### Input code
export * from './client/mounter';
### Description
Given input code will be transforme... |
flow v0.32.0:
> New syntax for exact object types: use {| and |} instead of { and }. Where
> {x: string} contains at least the property x, {| x: string |} contains ONLY
> the property x.
| 0 |
I have a form some fields are not validated based on the validation groups.
The validation works as expected but the error message is always added to the
wrong field. It seems to just use which ever property is last in the
validation.yml file.
I believe my use case is valid. It worked fine in 2.4 but when testing 2.... |
Hello,
When using Validator 2.5 to validate an array of scalars, the `propertyPath`
of the returned violations has really strange values.
Consider the following script:
<?php
require 'vendor/autoload.php';
use Symfony\Component\Validator\Constraints;
use Symfony\Component\Valida... | 1 |
NMF in scikit-learn overview :
**Current implementation (code):**
\- loss = squared (aka Frobenius norm)
\- method = projected gradient
\- regularization = trick to enforce sparseness or low error with beta / eta
**#1348 (or in gist):**
\- loss = (generalized) Kullback-Leibler divergence (aka I-divergence) ... |
We should fix the remaining sphinx warnings here:
https://circleci.com/gh/scikit-learn/scikit-learn/1629
and then make circle IO error if there are any warnings (grep'ing for
`WARNINGS` I guess?).
This way we immediately see if someone broke anything in the docs.
| 0 |
**Christian Nelson** opened **SPR-6118** and commented
Spring JDBC 3.0.0.M4 maven pom includes derby and derby.client - these should
be optional dependencies.
Here is the relevant output from mvn dependency:tree...
[INFO] +- org.springframework:spring-orm:jar:3.0.0.M4:compile
[INFO] | +- org.slf4j:slf4j-jdk14:j... |
**Keith Garry Boyce** opened **SPR-1412** and commented
I have a situation when I need access to the portlet name in the controller to
then in turn look up data related to that data in db. I don't want a separate
controller config for each portlet s it would seem if framework detected that
I implement and interface ... | 0 |
In Polish language exists letter 'ś', written by pressing rightAlt+s. In atom
this combination brings up the 'Spec suite' window.
Worth noticing is fact, that in settings shortcut responsible for this is
**ctrl** -alt-s, yet rightAlt+s alone brings up the window too.
I tried adding
'body':
'r... |
Original issue: atom/atom#1625
* * *
Use https://atom.io/packages/keyboard-localization until this issue gets fixed
(should be in the Blink upstream).
| 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
... | 0 | |
* VSCode Version: 1.1.0
* OS Version: OS X 10.11.4
Steps to Reproduce:
1. Create a new text file `test.js`
2. Set the content to the following:
let x = true ? '' : `${1}`
console.log('still part of the template!')
VS Code fails to parse the opening `of the template string at the end of t... |
_From@garthk on April 8, 2016 4:30_
* VSCode Version: `Version 0.10.10 (0.10.10)` or `Version 0.10.14-insider (0.10.14-insider) 17fa1cbb49e3c5edd5868f304a64115fcc7c9c2c`
* OS Version: OS X `10.11.4 (15E65)`
* `javascript.validate.enable` set either `true` or `false`
Steps to Reproduce:
1. Open a new Code –... | 1 |
ECMAScript 2018 was finalized, what do we need to enable these features by
default for `preset-env`?
SyntaxError: /path/to/file.js:
Support for the experimental syntax 'objectRestSpread' isn't currently enabled (11:9):
10 | {
> 11 | ...example,
| ^
... |
Hi there,
a simple module just reexport a module fails.
export * from './some-module';
My .babelrc looks like this:
{
"presets": ["es2015", "stage-1"],
"plugins": ["transform-async-to-generator"]
}
This should contain the required export-extensions transform.
... | 0 |
# coding: utf-8
import pandas as pd
import numpy as np
frame = pd.read_csv("table.csv", engine="python", parse_dates=['since'])
print frame
d = pd.pivot_table(frame, index=pd.TimeGrouper(key='since', freq='1d'), values=["value"], columns=['id'], aggfunc=np.sum, fill_value=0)
... |
The following code seems to raise an error, since the result object does not
make sense (well, at least to me):
In [61]: import datetime
In [62]: import pandas as pd
In [63]: df = pd.DataFrame.from_records ( [[datetime.datetime(2014,9,10),1234,"start"],
[datetime.datetime(2013,1... | 1 |
* **Electron Version:**
* v5.0.0-beta.5
* **Operating System:**
* Windows 10 Pro.
* **Last Known Working Electron version:** :
* 4.x (latest)
### Expected Behavior
When I perfrom a GET-request using `http` or `https` built-in library, I
expect the app to keep running after the request completes.
... |
* **Electron Version** :
* 5.0.0-beta (all)
* **Operating System** :
* Ubuntu 18.10, Linux 4.18, x64
* **Last known working Electron version** (if applicable):
* 4.0.5
### Expected Behavior
Google API should work as it they are meant to.
### Actual behavior
Any Google API calls may crash rend... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.6.1
* Operating System version: Linux version 3.10.0-693.el7.x86_64 (builder@kbuilder.dev.centos.... |
* 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.1
* Java version: 1.8
### Actual Result
dubbo/dubbo-
common/src/main/java/org/apache/dubbo/... | 0 |
**Bruno Hansen** opened **SPR-9334** and commented
New support for Jackson 2.X because of changing of packages:
Jackson reference:
http://wiki.fasterxml.com/JacksonRelease20#Changing_Java_packages
Spring forum reference:
http://forum.springsource.org/showthread.php?125213-Support-for-
Jackson-2-0&p=408474#post... |
**Xun Wang** opened **SPR-9302** and commented
Due to recent release of Jackson 2.0, hope it is on the road map to give
Spring user the option to use Jackson 2.0 for Jackson related json functions.
Jackson 2.x has different package name for its classes to let code with 1.x be
able to coexist. Maybe a new set of the ... | 1 |
All of the below testing was done with Fiddler. User and password proxy auth
in Fiddler was enabled the default way by doing Rules->Require Proxy
Authentication which requires user be '1' and password be '1'. The code below
does not contain the https section of the proxy as it's largely identical.
If a proxy is set ... |
When subscribing to a Server Sent Events endpoint, I notice an error given the
processing of a heartbeat. Heartbeats in SSE can be sent as an empty line.
Consider the following SSE reply for chunked transfer encoding:
00000000 48 54 54 50 2f 31 2e 31 20 32 30 30 20 4f 4b 0d HTTP/1.1 200 OK.
... | 0 |
I've created the `_app.js` file exactly as the example in the documentation,
and tried to build it, but i got a big error.
This is my _app.js
import App, { Container } from "next/app";
import React from "react";
import { CSSTransition, TransitionGroup } from "react-transition-group";
impor... |
I'm trying to integrate Flow with my current next project I notice there is a
issue with
getInitialProps method. Flow complains:

I'm a little bit confused do I have to s... | 0 |

Anytime I click inside the code editor, a "copy / paste" popup appears,
obscuring the code.
How do I get rid of it?
|
Hey guys,
I just noticed a new feature in the code editor today. Its great to have for
copying and pasting code to ask questions, but it can get in the way if I am
just doing regular copy and pasting.
Would a better solution to this be to hold down shift + highlight the section
as a way to access the menu?
What do... | 1 |
_From@alexanderby on November 19, 2015 9:35_
When formatting JavaScript or TypeScript, comments placed between parts of
multi-line expressions are placed wrong.
Expected to look like
doStuff()
.then()
// Comment
.then();
but actually is
doStuff()
.the... |
To reproduce:
declare var _: any;
function chainer() {
_.chain()
// something here
.then()
// something here
.then()
// something here
.then();
}
Format the code. You get
declare var _: any;... | 1 |
`<input type='number' defaultValue={someValue}/>` does not work correctly in
Chrome. When user type in a decimal point `.`, the point will disappear and
the caret will be be reset to the beginning of the input. If you keep typing
in `.` twice, the value of input will disappear. However, if a input has no
defaultValue... |
This appears to have been introduced in a new Chrome version, but I can't find
any reference to where.
Affected/Tested Browsers (OS X):
* Chrome 51.0.2704.106 (64-bit)
* Opera 39.0.2256.15
Unaffected Browsers:
* Safari 9.1
* Firefox 49
Backspacing in an input element with `value` or `defaultValue` set ca... | 1 |
##### System information (version)
* OpenCV => 4.1.0
* Operating System / Platform => Mac OS Mojave 10.14
* Compiler => n/a python 3.7
##### Detailed description
https://docs.opencv.org/4.1.0/dd/dd7/tutorial_morph_lines_detection.html
python version of tutorial throws the following error:
File "ExtractHor... |
##### System information (version)
* OpenCV => :3.4
* Operating System / Platform => :Windows 64 Bit / python
* Compiler => :(python 3.6)
##### Detailed description
OpenCV writes a hdr file with header starting with "#?RGBE". But many programs
suppose "#?RADIANCE" and don't work on files with "#?RGBE". Would... | 0 |
I've been messing with it all night to see if I can isolate the problem.
What I've come up with is it seems to fire partially, but the function call
doesn't bubble up to any of the Table components.
In `table-row.js` the following code runs when I click a TableRowColumn:
(lines 179 to 183)
_onCellC... |
I'm working on implementing sorting functionality and cannot for the life of
me get `onClick` to fire for `<TableHeaderColumn>`. I see that there is an
onClick prop in the docs, but no luck.
<Table
fixedHeader={true}
>
<TableHeader adjustForCheckbox={false} displaySe... | 1 |
#### Code Sample, a copy-pastable example if possible
import pandas as pd
import numpy as np
idx0 = range(2)
idx1 = np.repeat(range(2), 2)
midx = pd.MultiIndex(
levels=[idx0, idx1],
labels=[
np.repeat(range(len(idx0)), len(idx1)),
np.tile(ran... |
I have an odd issue where if I specify the axis in concat it throws the
following error:
InvalidIndexError: Reindexing only valid with uniquely valued Index objects
Pandas version: 0.16.0
OS: Ubuntu 14.04 LTS x64
Here's the pickle of the data structure causing this (it's rather large, ~60
megs, but it's my real ... | 0 |
When using `Deno.listen()` without passing in the parameter `hostname`, it
should listen to both ipv6 and ipv4 by default.
I found that currently it only listens on ipv4.
Deno 1.21.1
|
After upgrading to version 1.14 this error happened when using `deno bundle`
Example test.ts code:
import { Application } from "https://deno.land/x/oak@v9.0.0/mod.ts";
const app = new Application();
app.use((ctx) => {
ctx.response.body = "Hello World!";
});
await a... | 0 |
* Electron version: 0.37.2 + 0.36.12
* Operating system: OS X 10.11.4 (15E65)
The process doesn't seem to exit like `node` does. I've reduced it to
something `babel-register` is doing. I'm not sure if this is a bug within
babel or electron, so feel free to close this if it's a bug with babel. It's
the same behav... |
## Description
Our project is using `child_process#fork()` to run npm commands, but it turns
out taking much longer time than normal.
I haven't tested if this problem occurs when running other scripts, but as
shown in the test below, running the same code in pure `node` behaves
normally.
## Reproduction
1. In ... | 1 |
Long pages such as in regex have many examples but it's difficult to know at a
glance what the documentation contains without scanning the entire document.
Having a table of contents would help a lot with this.
Here is a list of links to different TOC styles from various places for ways
it could be done:
* Python... |
Here's a minimal code example that reproduces the error:
#![crate_name = "test"]
#![crate_type = "dylib"]
use std::ops::Div;
pub struct Test
{
pub test:i32,
}
impl Div<Test,Test> for Test { fn div( &self, v:&Test ) -> Test { Test{ test:self.test / v.test }... | 0 |
### System info
* Playwright Version: 1.31.2
* Operating System: Ubuntu 22.04
* Browser: WebKit
### Source code
import { test } from '@playwright/test';
test('getByRole behaviour', async ({ page }) => {
await page.setContent(`
<html>
<body>
<my-dialo... |
### System info
* Playwright Version: [v1.XX]
* Operating System: [All, Windows 11, Ubuntu 20, macOS 13.2, etc.]
* Browser: [All, Chromium, Firefox, WebKit]
* Other info:
### Source code
* I provided exact source code that allows reproducing the issue locally.
**Link to the GitHub repository with the re... | 0 |
The C function `malloc()` returns NULL (i.e. 0) if it fails to allocate
memory. The return value of a `malloc()` call must be checked for this value
before attempting to use the result. Here are places in the scipy code where
this check is not made. If any of these calls fails, the result is likely to
be a segmentati... |
My issue is about the error LinAlgError: Schur form not found. Possibly ill-
conditioned raised when I use the following code. The problem is that it only
happens in the first execution of the script, then it disappears. It also
happens when I try to use `scipy.linalg.expm` and `scipy.linalg.logm` as it
has to do wit... | 0 |
##### System information (version)
* OpenCV => 4.1.0-dev
* Operating System / Platform => Ubuntu x64 bionic 18.04.1
* Compiler => gcc 8.0.1
**Hello, There is a bug with dot product`dot (InputArray m) const` when used
in c++ implementation, But strangely this bug is not present in python
implementation.**
###... |
##### System information (version)
* OpenCV => 4.0.1, master branch `e2dbf05`
* Operating System / Platform => Windows 64 Bit
* Compiler => Visual Studio 2017
##### Detailed description
The compilation of the DNN module fails with several error C2398, e.g. due to
the narrowing at line 106 in op_inf_engine.cp... | 0 |
From the master, whenever I try to open a shell into a pod running on a remote
node, kubectl would completely hang.
Below a verbose trace.
Can someone point me to where else I can look?
I know kubectl --> master --> proxy --> pod/container.
Where would this error come from.
This has always worked prior to up... |
I have a setup using .AttachToContainer. After upgrading to Docker 1.10-rc2
I'm getting an error `Content-Type specified (plain/text) must be
'application/json'`.
Why am I getting this?
Any help would be great!
/beetree
| 1 |
Looking at core.ops. _comp_method_SERIES and whether we can have the datetime
and timedelta cases defer to Index subclass implementations, a couple
questions come up:
https://github.com/pandas-dev/pandas/blob/master/pandas/core/ops.py#L744
def na_op(x, y):
# dispatch to the categorical... |
#!/bin/env python
"""
Example bug in derived Pandas Series.
__finalized__ is not called in arithmetic binary operators, but it is in in some booleans cases.
>>> m = MySeries([1, 2, 3], name='test')
>>> m.x = 42
>>> n=m[:2]
>>> n
0 1
1 2
dtype: int64... | 1 |
Night Light got crashed too.
|
currently to add / remove items in shell, we have to kick explorer. After this
happens, PT can then enable / disable for them showing up.
We should see how we can do some alternative methods
| 1 |
_Original tickethttp://projects.scipy.org/numpy/ticket/859 on 2008-07-24 by
@cournape, assigned to @cournape._
Detected under valgrind, and looking at the code, it looks like there is a
problem, but I don't know enough about that code to solve it quickly:
Tests compress2d==5148==
==5148== Conditi... |
_Original tickethttp://projects.scipy.org/numpy/ticket/333 on 2006-10-11 by
@FrancescAlted, assigned to unknown._
The next exposes the problem:
In [142]:dt1=numpy.dtype('i4')
In [143]:numpy.array(0, dtype=dt1.type)
Out[143]:array(0)
# good, but
In [144]:dt2=numpy.dtype(('i4',(2,)))
... | 1 |
### Bug report
Something now breaks this code that used to work. Now, I have to call
plt.subplots first and use stackplot on an axis object.
TypeError: stackplot() got multiple values for argument 'x'
from matplotlib import pyplot as plt
plt.stackplot([1,2,3], [1,2,3])
Should be equivalent to
... | 1 | |
Again from the paypal/bootstrap-accessibility-plugin, these changes should be
added to the documentation and the JS plugin.
### Tab Panel
1. ~~Add ARIA roles like tablist, presentation, and tab for tabs UL, LI.~~
2. Add tabIndex, ~~aria-expanded~~ , aria-selected, ~~aria-controls~~ for tab.
3. Add ARIA roles ... |
Please see following demo image, when text is too short, popover's arrow
should be correctly adjusted to point to the center of the label.
* image
http://cl.ly/image/0W38012y3K1H
I've created a simple fix for that, but it's doing from outside of the plugin,
would be great if it's integrated into the plugin itse... | 0 |
When trying to run the test-suite on a fresh installation it breaks.
Long story short, doctests require `PIL` and `test_lda_predict` fails as well.
This has been done in a Linux machine. @martinagvilas can you replicate in
mac? thx.
cc: @lesteve
Here is what we did:
$ conda remove --name test-skle... |
I haven't followed the openmp building in detail but it looks like on OS X and
windows building are now failing by default?
That's pretty annoying for sprinting with a bigger group and also can raise
the frustration level of new contributors who are likely to be on these OSs
| 1 |
# Environment
Microsoft Windows [Version 10.0.18362.418]
# Steps to reproduce
Open windows terminal and move it with cursor to a new screen in a dual screen
setup. Specifically from a 4k to 1080p monitor.
# Expected behavior
The windows terminal window should move to the other screen.
# Actual behavior
The win... |
# Environment
Windows build number: Microsoft Windows [Version 10.0.18362.418]
Windows Terminal version (if applicable): 0.6.2951.0
# Steps to reproduce
1. Open Windows Terminal with "only one tab open"
2. Drag to another monitor with a lower resolution (from 2160p to 1080p)
# Expected... | 1 |
**TypeScript Version:**
1.8.9
React.__spread has been deprecated for a while, and has been removed in 15.0.
(facebook/react@`a142fd2`)
When upgrading a typescript project to React 0.15, an error is shown that
`React.__spread is not defined` when using spread props.
It looks like it'll be turned into a warning... |
**TypeScript Version:**
1.8.10
Node version :v4.2.2
OS: OSX
**Code**
**Main.ts**
/// <reference path="./typings/node/node.d.ts"/>
import * as http from 'http';
namespace Scratch
{
export class ServerWrapper {
public constructor() {
... | 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
... |
When building reusable components, using boolean properties, such as
`checked`, `disabled`, `readonly`, etc., is extremely common. This ends up
looking like this:
class CoolCheckbox {
private _checked: boolean;
@Input()
get checked() {
return this._checked;
}
... | 1 |
Original report at SourceForge, opened Fri Feb 11 22:02:28 2011
One of the annoying things about axes.hist is that with histtype='step' the
automatic legend style is an empty box, instead of a line, as I would expect.
This behaviour doesn't seem to make sense, because it seems a line would be
much more appropriate f... |
### Bug report
**Bug summary**
**Code for reproduction**
# Paste your code here
#
#
**Actual outcome**
# If applicable, paste the console output here
#
#
**Expected outcome**
**Matplotlib version**
* Operating system:
* Matplotlib version:
* Matplotlib ba... | 0 |
I have a general question about project structures / modules.
It's a project with 3 types of code:
* client: classes used for the client web-app, built into a single js file (with --out).
* server: code running on node
* shared: classes used by both client and server, typically model classes with functions l... |
I have a general question about project structures / modules.
It's a project with 3 types of code:
* client: classes used for the client web-app, built into a single js file (with --out).
* server: code running on node
* shared: classes used by both client and server, typically model classes with functions l... | 1 |
The generated code for
type NameOrNameArray = string | string[];
function createName(name) {
if (typeof name === "string") {
return name;
} else if (typeof name == 'number') {
return name.toString();
} else {
return name.join(" ");
... |
I know many users of TypeScript are from a C# background and expect to write
conditionals like in that language. However, for JavaScript developers the
standard for formatting conditionals is different. When TypeScript converts
conditionals to JavaScript, it outputs the `else` and `else if` statements
like so:
... | 1 |
does not validate with swagger-tools CLI tool:
https://github.com/apigee-127/swagger-tools/blob/master/docs/CLI.md#validate
|
After #18126 fixed by #18170, I run density test again.
Now the hot spot on the critical path is an inefficient cache
access(https://github.com/kubernetes/kubernetes/blob/master/pkg/client/cache/store.go#L75)
when listing nodes that uses reflection. Reflection causes a lot of
allocations.
A simple fix would be
... | 0 |
#### Describe the workflow you want to enable
Current score_func for feature selection methods does not consider
multicollinearity between features.
#### Describe your proposed solution
Introduce mRMR (Minimum Redundancy and Maximum Relevance) score as score_func
for feature selection methods.
Variant of mRMR sco... |
Speaking with @jorisvandenbossche IRL, we come to discuss about the mRMR
feature selection among other methods.
#5372 intended at first to implement the mRMR with mutual information as a
metric. However, it has been merged such that mutual information could be used
in the `SelectKBest` class. It was also discuss tha... | 1 |
Now that TypeScript does control flow based type analysis, and there is a
`never` type in the works, is it possible to consider providing better type
checking around `assert(...)` function calls that assert that a variable has a
certain type at runtime?
**TL;DR: some`assert` functions are really just type guards tha... |
When writing a node software that should create a batch or symbolic link, we
need to put the folowing line at the begining of the .js file:
#!/bin/node
So npm knows it is a node executable script and creates a batch file with all
the necessary stuff in it.
If we put it at a typescript file to be tra... | 0 |
Became important when you extend, for example, `DefaultValueAccessor` to work
with `ng-model`
and see a list of errors:
ERROR in ./rating/rating.ts
(50,5): Supplied parameters do not match any signature of call target. (2346)
ERROR in ./timepicker/timepicker.ts
(151,5): Supplied para... |
Dgeni should output public constructors in our .d.ts files
| 1 |
### Environment info
Operating System: Ubuntu 14.04 LTS 64-bit
Installed version of CUDA and cuDNN: none (not using GPU)
### Steps to reproduce
Note: TensorFlow was installed previously.
1. Install Bazel as instructed here: http://www.bazel.io/docs/install.html#install-on-ubuntu
2. Install Android Studio (wh... |
GitHub issues are for bugs / installation problems / feature requests.
For general support from the community, see StackOverflow.
To make bugs and feature requests more easy to find and organize, we close
issues that are deemed
out of scope for GitHub Issues and point people to StackOverflow.
For bugs or insta... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: >= 2.7.0
* 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.3(with maven groupId: org.apache.dubbo) (upgrade from 2.6.5 with groupId: com.alibaba)
* Operat... | 0 |
Atom Version: 0.174.0
OS: Windows 7 x64
My Atom Version is 0.174.0, but release note is always 0.158

|
1. Install `linter-jshint`
2. Try doing some javascript
For some reason, these errors aren't occouring in other javascript files in
the same session. Also, this is the same session that I installed linter-
jshint on, through the GUI package installer in `Edit > Preferences`.
**Atom Version** : 0.165.0
**Syste... | 0 |
**Do you want to request a _feature_ or report a _bug_?**
both.
**What is the current behavior?**
There is a existed issue #3926 but it is just one of the problems in some kind
of browsers.
I have uploaded the detail, demo files, test results and temporary solution in
react-compositionevent
The main problem is ... |
### Extra details
* Similar discussion with extra details and reproducing analysis: #8683
* Previous attempt to fix it: #8438 (includes some unit tests, but sufficient to be confident in the fix)
* * *
### Original Issue
When I was trying this example from
https://facebook.github.io/react/blog/2013/11/05/thin... | 1 |
## 🐛 Bug
## To Reproduce
Steps to reproduce the behavior:
[root@ip-172-26-11-98 ~]# python3.9 -m pip install torch==1.7.0+cpu torchvision==0.8.1+cpu torchaudio==0.7.0 -f https://download.pytorch.org/whl/torch_stable.html
Looking in links: https://download.pytorch.org/whl/torch_stable.html
ER... |
## 🐛 Windows LibTorch C++ Cannot Load CUDA Module
`th.jit.trace()`'ing or `th.jit.script()`'ing even just a Conv2d module will
produce a serialized file that cannot be loaded by the C++ runtime. See the
following two example scripts for a repro:
import torch as th
from torch import nn
d ... | 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:**
* 6.... |
* Electron version: 1.8.2-beta1
* Operating system: Mac 10.12.6
### Expected behavior
Not crash
### Actual behavior
crash
### How to reproduce
It seems like use auto-updater.check() may be crash. Not 100% occur
the crash report
perating system: Mac OS X
10.12.5 16F73
... | 0 |
## 🐛 Bug
I am trying to have a generator load objects in the background, as in the
following example. It hangs when trying to call `torch.zeros` in
`split_loader_creator`, but if I remove the seemingly irrelevant line
`torch.zeros(152*4, 168*4).float()` near the end, it seemingly can make
progress. It also seems fi... |
## 🐛 Bug
The following program never terminates.
import torch
import torch.multiprocessing as mp
def foo():
x = torch.ones((2, 50, 10))
return torch.einsum('ijl,ikl->ijk', x, x)
if __name__ == '__main__':
foo()
p = mp.Process(target=foo)... | 1 |
As shown in the example below, when passing in two series with the same name
to `concat` you end up with duplicates of the last series passed in.
In [42]: pd.__version__
Out[42]: '0.10.1'
In [43]: dates = pd.date_range('01-Jan-2013','01-Dec-2013', freq='MS')
...: L = pd.TimeSeries(... |
Motivating from SO
This is the inverse of `pd.get_dummies`. So maybe `invert_dummies` is better?
I think this name makes more sense though.
This seems a reasonable way to do it. Am I missing anything?
In [46]: s = Series(list('aaabbbccddefgh')).astype('category')
In [47]: s
Out[47]:
... | 0 |
When calling `self.replace()` with a signature reconstructed from a serialized
dictionary (e.g. after having been passed through a backend), if that
signature is (or contains) a group which itself contains a chord, celery
explodes after attempting to treat deeply nested dictionaries as signature
objects. See below fo... |
# Checklist
* I have verified that the issue exists against the `master` branch of Celery.
* This has already been asked to the discussion group first.
* I have read the relevant section in the
contribution guide
on reporting bugs.
* I have checked the issues list
for similar or identical bug reports.... | 0 |
Just cloned the rust0.6 from today.
And build it on Ubuntu 12.10 x86_64
when I run rusti and enter 1+1 ,it happens Segmentation fault .
Here som gdb log:
GNU gdb (GDB) 7.5-ubuntu
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
... |
rustc v0.6:
$ rusti
rusti> fn foo() { for 5.times { io::println("hi"); } }
[1] 11363 segmentation fault (core dumped) rusti
$ rusti
rusti> let x = 1;
<anon>:35:4: 35:7 warning: unused variable: `x`
<anon>:35 let x = 1;
^~~
[1] 11937 segmen... | 1 |
* [x ] I have searched the issues of this repository and believe that this is not a duplicate.
No errors in development, but when I minify the bundle and hit ssr url, I
receive this error:
https://reactjs.org/docs/error-
decoder.html?invariant=149&args[]=iconMenuContainer
Tech | Version
---|---
Material-UI ... |
I'm using the `onClick` property for the DatePicker component and it works
fine, the only issue is that my VSC typescript linter is indicating that it is
not a part of the type definition for this component.
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected ... | 0 |
See the attachment. With ansible 1.7.2 this works as expected:
% ansible-playbook --version
ansible-playbook 1.7.2
% ansible-playbook -i hosts/localhost a.yml --tags b
PLAY [localhost]
* * *
GATHERING FACTS
* * *
ok: [localhost]
TASK: [debug msg="b"]
* * *
ok: [localhost] => {
"msg": "b"
}
PLAY ... |
##### Issue Type:
Bug Report
##### Ansible Version:
1.8.1-1.el6
##### Environment:
CentOS release 6.6 (Final)
##### Summary:
Tags from includes are being ignored
Tags from within a playbook are working just fine.
After a downgrade to Ansible 1.7.2-2.el6 this is working
##### Steps To Reproduce:
include: s... | 1 |
### Description
Due to the complexity of our DAG, we only use the Graph view to manage it. It
would be great if we could get the task group options (specifically clearing a
task group - (see #26658, #28003).
### Use case/motivation
_No response_
### Related issues
_No response_
### Are you willing to submit a P... |
**Apache Airflow version** : 2.0.0
**Kubernetes version (if you are using kubernetes)** (use `kubectl version`):
1.18.10
**Environment** :
* **Cloud provider or hardware configuration** : Azure AKS
* **OS** (e.g. from /etc/os-release): Linux
* **Kernel** (e.g. `uname -a`): Linux
* **Install tools** : All
... | 0 |
### Bug summary
When the figure has two columns with different numbers of rows, rows on the
same side will have different heights under `constrained` layout.
### Code for reproduction
import matplotlib.pyplot as plt
panels = [
['a', 'c'],
['a', 'c'],
['b', 'c'],
... |
### Bug report
**Bug summary**
When following the documentation on plotting categorical variables the plots
do not render. Instead various errors are thrown about converting strings to
floats.
**Code for reproduction**
import matplotlib.pyplot as plt
data = {'apples': 10, 'oranges': 15, 'l... | 0 |
I'm not sure if this is a bug or corruption experienced during the upgrade but
as of 1.2.0, we're now experiencing duplicate results in all queries:
{
took: 0
timed_out: false
_shards: {
total: 5
successful: 5
failed: 0
}
hits: {
total: 2
max_score: 13.58639
hits: [
{
_index: media6
_type... |
Many people have some challenges when using Git/GitHub to contribute to the
project.
It would be nice to have a GitHub.CHEATSHEET similar to GRADLE.CHEATSHEET.
| 0 |
As for now, there is no way to disable code splitting feature with some
option.
Build & rebuild time is more with code splitting, so, it is useful from
developer experience point of view to disable it in development mode.
https://www.npmjs.com/package/babel-plugin-remove-webpack could handle some of
cases, excluding... |
## Current Problems & Scenarios
Users get fast webpack builds on large code bases by running continuous
processes that watch the file system with webpack-dev-server or webpack's
watch option. Starting those continuous processes can take a lot of time to
build all the modules for the code base anew to fill the memory... | 0 |
# Bug report
## Describe the bug
A clear and concise description of what the bug is.
## To Reproduce
Steps to reproduce the behavior, please provide code snippets or a repository:
1. Clone https://github.com/tenjojeremy/test-nextjs-simple.git
2. run `yarn`
3. run `yarn start`
4. open localhost
5. y... |
# Feature request
## Is your feature request related to a problem? Please describe.
It's currently not possible to read files from API routes or pages.
## Describe the solution you'd like
I want to be able to call `fs.readFile` with a `__dirname` path and have it
"just work".
This should work in Development and ... | 1 |
**Daigo Kobayashi** opened **SPR-2657** and commented
There is no way to display success message(s) like struts' ActionMessage.
Spring should provide Messages inteface in a similar way of Errors and related
tag libraries.
* * *
**Issue Links:**
* #11130 Flash Scope for Spring MVC (Without Spring Web Flow) ( _ *... |
**Andy Wilkinson** opened **SPR-9255** and commented
I've been bitten in the past by an intermittent
`BeanCurrentlyInCreationException` when I've `@Autowired` a `FactoryBean`
implementation. I believe that this is considered to be a no-no, but
occassionally I forget and lose hours to diagnosing the problem until th... | 0 |
Hello,
My issue is about lowpass generated in sos form
>>> print(signal.butter(2, 1, 'low', analog=True, output = "sos"))
>>> print(signal.butter(2, 1, 'high', analog=True, output = "sos"))
[[1. 0. 0. 1. 1.41421356 1. ]]
[[1. 0. 0. ... |
Hello,
I have realized about an issue with sparse matrixes and loadmat function.
I have a set of sparse matrixes for storing very sparse values. Sometimes they
are so sparse that some of the matrixes are never used, so they keep on zeros.
When I try to save them in a matlab file and load them again I always find... | 0 |
Hello everybody.
It looks like i found a bundle of bugs in last version of julia. I run an
application which uses many Tasks in it. It also uses generated julia code,
which is run inside these tasks all the time. I obtain these crashes after
~3-20 minutes of running in some random order. I used both debug and releas... |
Hello,
I am seeing memory corruption when repeatedly using `@eval`. Here is some
example code to reproduce it. I have it failing on both Julia 0.3 and 0.4 at
around 33000 iterations, where the eval'ed function hits corruption.
Thanks!
function to_function(code::Expr)
@eval f() = $code
r... | 1 |
* I tried using the `@types/express-sessions` package and had problems.
* I tried using the next stable version of tsc "typescript": "3.8.3"
I am tryng to use express-sessions in my app, but have next error after **yarn
add @types/express-sessions**
 but I
need shadow prices (or opportunity costs / duals) of ~100 inequalities.
I'm able to calculate them by adding 1 to the right side of the inequality and
then solving t... | 1 |
### Bug report
**Bug summary**
Can't use qt4agg, error reported below.
Downgrade to matplotlib 3.1.3 solves the problem.
**Code for reproduction**
import matplotlib as mpl
mpl.use('qt4agg')
Or, set it to Qt4Agg in `matplotlibrc` file.
**Actual outcome**
ImportError: cannot imp... |
### Bug report
After updating to latest version (3.2.1) I started getting this error:
# Paste your code here
from matplotlib.backends.backend_qt4agg import FigureCanvasQTAgg as FigureCanvas
>>>from matplotlib.backends.backend_qt4agg import FigureCanvasQTAgg as FigureCanvas
Traceback (most ... | 1 |
Hi,
First of all, thank you very much for an awesome library.
I switched from Picasso to Glide, and I like Glide more than Picasso. However,
I've noticed that Glide would load the old image (deleted) instead of the new
image.
For example,
I have the following images on my listview:
Image1
Image2
Image3... |
Hi,
How can I clear Glide's cache in case.
* Clear all cache
* Clear cache of an URL.
| 1 |
These aren't documented anywhere and it's unclear how they're different from
`torch::save`
|
These APIs aren't going anywhere as far as I know, but they have no
descriptions or usage instructions
They have some documentation here but that's nowhere on the website:
https://github.com/pytorch/pytorch/blob/master/torch/csrc/jit/serialization/pickle.h
And some usages are in the tests but aren't very user-dis... | 1 |
**Giovanni Dall'Oglio Risso** opened **SPR-8716** and commented
The number comparison can be more accurate with BigDecimals (possibly also
BigIntegers) and other number types:
This test fail, becouse the BigDecimal is converted to Integer, truncating the
value to zero:
@Test
public void ... |
**Oliver Becker** opened **SPR-9164** and commented
When doing number arithmetic in SpEL the result type is apparently one of
double, long or int.
This has the unwanted effect that for example float or BigDecimal values will
be changed to int.
new java.math.BigDecimal("12.34")
evaluates to 12.34
-(new java.mat... | 1 |
### System information
* **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : No
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : macOS High Sierra 10.13.2
* **TensorFlow installed from (source or binary)** : source
* **TensorFlow version (use co... |
### System information
Linux ubuntu 16.04
Bazel 0.9.0
CUDA 9.1
cuDNN 7
TF Branch r1.4
I am getting the following errors / warnings using the set-up above, whilst
trying to build the python packages.
francesco@franny:~/Repositories/tensorflow$ git checkout r1.4
Branch 'r1.4' set up to trac... | 1 |
I'm using reactstrap (bootstrap) together with react-responsive for my site's
responsive layout.
There is no problem when I'm using reactstrap alone.
However, when I mix react-responsive into the pages to show certain components
only at certain screen breakpoints, I'm getting the following error in the
browser con... |
**Describe the bug**
I am having a problem when using packages that have module caching and keep
track of internal state in server rendering. An example of such packages is
redux-act where module caching is used to keep track of an id used to
serialize action types. The bug happens when importing my `store.js` ... | 0 |
Using Kubernetes 1.1.2 with Vagrant provider, running two pods:
./cluster/kubectl.sh get po
NAME READY STATUS RESTARTS AGE
mysql-pod 1/1 Running 0 21s
wildfly-rc-l2cto 1/1 Running 0 21s
One of the pods was deleted:
... |
A Replication Controller is started using https://github.com/arun-
gupta/kubernetes-java-sample/blob/master/wildfly-rc.yaml and shows:
./cluster/kubectl.sh create -f ~/workspaces/kubernetes-java-sample/wildfly-rc.yaml replicationcontrollers/wildfly-rc
Pods are shown correctly as:
.... | 1 |
Challenge Use a CSS Class to Style an Element has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like
Gecko) Chrome/49.0.2623.112 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
<style>
.re... |
Challenge Use a CSS Class to Style an Element has an issue.
User Agent is: `Mozilla/5.0 (Linux; Android 4.4.2; SM-T231 Build/KOT49H)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.105 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
... | 1 |
Describe what you were doing when the bug occurred:
1. Using Profiler tab
2. Clicked on a commit
3. It threw this error
* * *
## Please do not remove the text below this line
DevTools version: 4.6.0-6cceaeb67
Call stack: at j (chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:162825)
... |
Describe what you were doing when the bug occurred:
1. Profiling a slow component
In a component that rendered 5000 pre tags with single lines of text in them,
that has an unrelated controlled text box is the same component that was typed
into while profiling. App hung a while and, when it rendered again the err... | 1 |
### Version 2.6.7 on my computer, not sure about the version used in jsfiddle
### Reproduction link
https://jsfiddle.net/cicsolutions/qkzjp520/6/
### Steps to reproduce
Create three named slots: (1) with no dash in the slot name, like 'header' or
'footer', as in the docs. (2) with a dash in the name, like 'card-h... |
### Version
2.5.13
### Reproduction link
https://codesandbox.io/s/6yk5o1x573
### Steps to reproduce
In parent component, apply a scoped class to a div. In the child, name the
class the same and make sure it's scoped, but use different CSS properties so
there's no overwriting.
### What is expected?
I would expe... | 0 |
# Environment
Windows build number: 10.0.18999.0
Windows Terminal version: 0.5.2762.0
# Steps to reproduce
1. Open a new PowerShell tab. PowerShell version does not matter.
2. Paste and run the following code in the PowerShell tab:
Register-EngineEvent -SourceIdentifier Po... |
# Description of the new feature/enhancement
Sometimes i need to open many panes in a tab with
splitHorizontal/splitVertical hotkeys. And then broadcast input to all the
panes in current tab, or all tabs.
Is it possible to support broadcast input, like iterm2?

However there is no way I c... |
Use case:
Angular Material has a directive called `md-icon` that lets the user embed SVG
content via URL:
<md-icon svg-src="../img/puppy.svg">
We need to be able to build a directive in angular 2 that directly embeds
content in this way. Using a binding on innerHTML is possible, but susceptible
to X... | 0 |
_dbscan_inner.cpp
c:\users\prasanth chettri\appdata\local\programs\python\python37\lib\site-
packages\numpy\core\include\numpy\npy_1_7_deprecated_api.h(12) : Warning Msg:
Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API
NPY_1_7_API_VERSION
sklearn\cluster_dbscan_inner.cpp(5960): error C20... |
#### Description
Unable to `pip install`(compile error: `PyThreadState` has no member ...) with
Python 3.7rc1.
My apologies if this has been reported, but I couldn't find it in the issues
(closed/open) nor any pull request for it.
There have been similar issues with pyyaml (yaml/pyyaml#126), numpy
(numpy/numpy#105... | 1 |
I think yesterday they were running in under 40 minutes.
I did kubernetes-retired/contrib#1022 because the submit queue is timing out
before merging after running tests. I will try to push it live tonight. But we
need to figure out what caused this.
|
**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.): vs... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.