text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
Hello,
I faced this issue: #24829 with DNS, and it ended up being a problem with my
**ServiceAccount** `secret` token that was **invalid**.
I had 3 secrets in my `kube-system` **ServiceAccount** for some reason.
I understand that when `secrets` are deleted, a new token is generated and
associated with the **Servic... |
**Is this a request for help?** (If yes, you should use our troubleshooting
guide and community support channels, see
http://kubernetes.io/docs/troubleshooting/.): bo
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.): et... | 0 |
This is needed for compatibility with `histogram`, which deprecated `normed`
in favor of `density`.
|
### Reproducing code example:
$ python3 -c 'print(1.0<1.0+1.0j)'
Traceback (most recent call last):
File "<string>", line 1, in <module>
TypeError: '<' not supported between instances of 'float' and 'complex'
$ python3 -c 'import numpy; print(1.0<numpy.complex64(1.0+1.0j))'
True
... | 0 |
**What is the current behavior?**
Using `.stopPropagation` in an `onFocus` event on a textarea or its parent
causes the cursor to disappear or render at an incorrect location in Firefox.
You can see the vanishing cursor at this fiddle. There are no issues on Chrome
and Edge, but FireFox 50.1.0 has this problem. I... |
**Do you want to request a _feature_ or report a _bug_?**
Bug
**What is the current behavior?**
When the onFocus event handler of an element calls stopPropagation, the cursor
of the element as well as the selection is not shown in Firefox 54.0.1 64 Bit.
**Steps to reproduce**
Create an element and call stopP... | 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.9-SNAPSHOT
* Operating System version: Mac OS X
* Java version: jdk1.8.0_211
### Steps to re... |
* 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
* Operating System version: �centos 6.8
* Java version: 1.8
### Steps to reproduce this ... | 0 |
1. What is a short input program that triggers the error?
package pkg
type A interface{}
type B interface{}
func F(a A) {
control := make(chan B)
control <- a
}
2. What is the full compiler output?
example.go:8: internal compiler error: s... |
by **louisk@google.com** :
There is a bug in the RPC server that causes an infinite loop (with infinite error
messages on the console) if there is an error condition on the socket. This bug
triggers routinely on Windows, but it can also happen on Linux. Here is a sample code
which reprodu... | 0 |
The source of the problem is JuliaData/DataFrames.jl#1730.
Here is a MWE:
julia> using Statistics
julia> function get_stats(col::AbstractVector, stats::AbstractVector{Symbol})
if :q25 in stats || :median in stats || :q75 in stats
try quantile(... |
julia> function f()
try
g()
finally
end
end
g() = (_true ? error() : _true ? 0 : false)
_true = true;
julia> f()
Unreachable reached at 0x7f230c0f6e20
signal (4): Illegal instruction
in expres... | 1 |
# Description of the new feature/enhancement
Allow the users to switch tabs easily like in Edge or other applications that
allow multiple tabs. It will be very helpful to be able to switch tabs. This
is possible in many linux terminals and helps with activity management, where
the user drags the tabs that have long ... |
Ctrl+Tab allows you to move forward through open tabs. I'd like an option that
works like Alt+Tab so I can just press Ctrl+Tab once to go to a previous tab
and Ctrl+Tab a second time to go back to the current tab.
| 1 |
I have old versio 0.7.20 and I open XML file
I can use RMB (Right Mouse button) to "Format Code" for easy reading.
But after I update to 0.10.2 that is not possible anymore.
|
before the update I could use alt+shift+f to code format an xml file. After
the update this no longer works (using windows version 0.10.1)
| 1 |
Symfony choice fields with `expanded` set to `true` don’t render the selected
option correctly when the value in the underlying entity is `false`.
This affects Symfony 2.7.
## Steps to reproduce
Create the following entity:
class Foo
{
public $bar = false;
}
Create the following for... |
I have a form with the following code:
$form = $this->factory->create('Symfony\Component\Form\Extension\Core\Type\ChoiceType', null, array(
'multiple' => false,
'expanded' => false,
'choices' => array(
'label a' => false,
'label b' => true,
),
'choices_... | 1 |
#### Code Sample, a copy-pastable example if possible
import pandas as pd
from decimal import Decimal
df = pd.DataFrame({'id': [1], 'x': [1], 'y': [Decimal(1)]})
df.groupby('id')[['x', 'y']].sum()
# x
# id
# 1 1
#### Problem description
I unknowingly encountered ... |
>>> import pandas as pd
>>> pd.CategoricalIndex(['a', 'b'], categories=['a', 'b']).equals(
... pd.CategoricalIndex(['a', 'b'], categories=['b', 'a']))
False
I fixed this for regular Categoricals in #16339, but that didn't affect
CategoricalIndex.equals. Do we want `.equals` to ignore ord... | 0 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
I should be able to use `withData` from the with-apollo example and
`translate` from react-i18next HoCs together.
## Current Behavior
I've been using Apollo as per the with-apollo example quite happily... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
I can host a Next.js app on a GitHub Pages.
## Current Behavior
As far as I have digged into the issue, we can't host a Next.js app on a
GitHub Pages because of the location of the hosting:
`http:/... | 0 |
I've taken a project I was working on from the 1.5 beta, and simply switched
from CommonJS modules to System. I now seem to be getting the title error on
startup which suggests something is perhaps amiss in the output?
I've not managed to create a small reproduction yet, but here are the TS and
JS for the code f... |
Using this contrived example again,
Export file with super class:
/// foo.ts
export class Foo {
a: string;
}
Import file with sub class:
/// bar.ts
import {Foo} from './foo';
export class Bar extends Foo {
b: string;
}
System.register format output... | 1 |
Under some circumstances, `trace` returns a scalar on a 3-D masked array, even
though it should return a vector. It appears to be related to the mask, as
illustrated below.
In [326]: Z = numpy.ma.empty((2, 2, 2), dtype="<f4")
In [327]: trace(Z, 1, 2)
Out[327]:
masked_array(data = [ 0.... |
When `column_stack`ing two arrays, the dtype of the result is the dtype of the
input arrays (if they are are the same). However, if the endianness of the
input array is not the system endianness, it is not respected.
MWE:
import numpy
a = numpy.array([1, 2, 3], dtype="i4")
b = numpy.array... | 0 |
Right now it doesn't seem possible to opening multiple project folders in the
same window which imho is a bit constraining. If you are working on modular
modern projects it's a must have to be productive.
|
Programs typically offer .tar.gz packages instead of zips on Linux.
| 0 |
Please attach a small application (ideally just one main.dart file-> Normal
start up app
https://gist.github.com/moesaeed/48a805de81b262ab9cb759413799ea86#file-main-
dart
Launching lib/main.dart on iPhone X in debug mode...
Starting Xcode build...
Xcode build done.
Failed to build iOS app
... |
Loading and displaying images using Image.file gets slow and causes a crash
when there are more than a few images.
This originated from a stackoverflow question I was looking at. I've seen
questions previously about network images where they do things like not
specifying the height so that an infinite amount of ima... | 0 |
Sometimes, Japanese file (UTF-8) gets garbled.
Maybe that arises when I replace strings that contains Japanese charactors.
ref:
http://yogoma.hatenablog.com/entry/2015/04/20/043907 (JP)
"���"
|
sometimes a chinese-char become '���',(as we all know that in charset utf-8, a
chinese-char need 3 byte )
| 1 |
**Migrated issue, originally created by Anonymous**
in the following schema:
+-------------------------------------------*
| people (abstract) --- has a --- car |
| ^ ^ ^ |
| | | | |
| engineers managers ... |
**Migrated issue, originally created by Anonymous**
I could not find a way to do that and I think it's an enhancement request.
Would be really nice to have a way to cast between classes. I mean, when you
have Person and Employee classes, for example (where Employee is a subclasse
of Person), would be great to crea... | 0 |
If you have a question or would like help and support, please ask at our
forums.
If you are submitting a feature request, please preface the title with
[feature request].
If you are submitting a bug report, please fill in the following details.
## Issue description
I've built pytorch from source after `git che... |
## Issue description
The `__version__` provided by Pytorch is wrong
See this line
| 1 |
The following simple example shows an issues with zero values when calling
`loglog`:
import matplotlib.pyplot as plt
nu = [1e2, 1e3, 1e4, 1e5, 1e6, 1e7]
fnu = [1, 1e-30, 1e-45, 0., 0., 0.]
fig = plt.figure()
ax = fig.add_subplot(1,1,1)
ax.loglog(nu, fnu, color='blue')
... |
Consider the following test code:
from numpy import *
from matplotlib.pyplot import *
x = arange(-10,10)
y = (1.0 - 1.0/(x**2+1))**20
figure()
semilogy(x, y, "-o")
grid(True)
savefig("test.png")
Correct Plot (the value y=0 at x=0 is masked out from y-log... | 1 |
Hi, below is the code I am using, POM along with fixtures. Please suggest the
best way that I can change the viewport to fullscreen
//basepage.fixtures.ts
import MicrosoftLoginPage from '../pages/microsoftlogin.page'
import {test as basetest} from '@playwright/test'
import SBReactAppLoginPage from '../pages/SB... |
How to launch browser.newContext() or browser.newPage() in fullscreen ? There
is no way to pass full-screen via options while calling
browser.newContext(options).
| 1 |
An error is raised when making a numpy array consisting of numpy arrays with
ndim > 1 with different sizes.
### Reproducing code example:
import numpy as np
b = np.array([np.array([[1],
[1],
[1]]), np.array([[1, 2],
[1, 2],
[1, 2]]), np.array([[1, 2, 3],
[1,... |
This behavior is a little confusing:
>>> np.asarray([np.zeros((10, 3)), np.zeros(10)])
VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you m... | 1 |
_Original tickethttp://projects.scipy.org/numpy/ticket/648 on 2008-01-21 by
@chanley, assigned to unknown._
The following will cause a bus error on a big endian machine (Solaris 10 Sun
in this case):
> Python 2.5.1 (r251:54863, Jun 29 2007, 15:29:55) [C] on sunos5
> Type "help", "copyright", "cre... |
np.percentile claims to function with the `q` argument (the percentiles to
calculate) being either a scalar or an array_like. However, the initial lines
of code do:
if q == 0:
return a.min(axis=axis, out=out)
elif q == 100:
return a.max(axis=axis, out=out)
which of course brea... | 0 |
If you do `make install` with previous installed versions, multiple copies of
all the libraries get left in (for me) `/usr/local/lib/rustc/x86_64-apple-
darwin/lib`. Then the next time you try building something with the installed
rustc, it'll promptly fail with `error: multiple matching crates for core`
|
It was disabled in #19362. It'd be good to have it back one way or another.
| 0 |
/Users/jra/bin/gomobile: type github.com/kellydunn/golang-geo.Point not
defined in package package marshrutme ("github.com/jeffallen/marshrutme")
"in package package" is because the error is "in package %s", with %s filled
by a types.Package, which has a String() method that puts "package" on the
front.
There are s... |
by **fish@freigeist.org** :
The example should be pretty self-explanatory: http://play.golang.org/p/u5_eyPkjNs
Happens on go1.1 installed via gvm on Ubuntu 12.04 as well as on play.golang.org
| 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.5.10
* Operating System version: win7
* Java version: 1.8
### Steps to reproduce this issue
... |
现在的版本能支持服务跨组调用吗?(2.6.0上试过不行)
* provider group A
`<dubbo:registry protocol="zookeeper" address="192.168.50.130:2181"
check="false" group="A"/> <dubbo:service
interface="com.alibaba.dubbo.demo.DemoService" ref="demoService"/>`
* consumer group B
`<dubbo:registry protocol="zookeeper" address="192.168.50.130:21... | 0 |
**Ramnivas Laddad** opened **SPR-4306** and commented
Currently, the base aspect for domain object dependency injection --
AbstractBeanConfigurerAspect -- is not really capable of doing many
interesting things that its subaspect AnnotationBeanConfigurerAspect does.
Especially important capability is injecting depend... |
**Marc Ludwig** opened **SPR-6121** and commented
#### Overview
We have a large number of unit/integration tests that assert behavior within
our system and rely upon injection of dependencies into configurable domain
objects.
These tests all work when executed individually; however, when executed within
a suite (e... | 0 |
The option `app.conf.worker_pool` is not honored. As I've been requested in
previous issues to follow the template, I will try to.
# 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 didn't ask. This is a super... |
## Checklist
I'm `pip` installing Celery from `master`.
## Steps to reproduce
Submit a task to an SQS broker and verify that there are 1 messages available
and 0 messages "in flight" (total messages: 1). Launch a worker connected to
that broker and now verify that there are 0 messages available and 1 messages
"in ... | 0 |
You can only avoid having your constant call backs to google analytics or
atom.io servers described as something other than spyware when you ask the
user first if they would like you to turn on these features.
Your access to google analytics should only be enabled with the "send
anonymous statistics to improve produ... |
You need to leave the metrics disabled by default and then at least ask users,
first time they activate the editor, whether they would allow it to be
enabled.
I for one will not allow spyware to run on my box, hence I disable or remove
such applications, but Atom doesn't provide a clue in the application, so if
some... | 1 |
From @lchccieurope on 2016-05-20T08:57:50Z
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
pam_limits
##### ANSIBLE VERSION
ansible 2.0.2.0
config file =
configured module search path = Default w/o overrides
##### CONFIGURATION
none
##### OS / ENVIRONMENT
Controller: Mac... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
pam_limits
##### ANSIBLE VERSION
ansible 2.3.1.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
python version = 2.7.13 (default, May 10 2017, 20:04:28) [GCC 6.3.1 20161221 (Red Hat ... | 1 |
Feels like when we are doing changes in `std` that a whole build of Deno plus
the full test suite of Deno is unnecessary for validating a change to `std`
and we should consider some mechanism to only test `std` potentially against a
prebuilt version of Deno.
|
for discussion and tracking, i'll put together a PR.
Currently, even for a small change in std the entire 20 minute long build
process is run. This would enable fixes to std to be tested much quicker.
This is related to #5179 .
| 1 |
### Apache Airflow version
2.5.0
### What happened
Prior to Azure provider 5.0.0, `WasbHook.get_file` only required three
arguments (`file_path`, `container_name`, and `blob_name`), but now two
additional parameters - `length` and `offset` \- are required by the
underlying `WasbHook.download` method. However the u... |
### Apache Airflow version
2.5.0
### What happened
The Azure WASB log task handler is no longer working.
### What you think should happen instead
_No response_
### How to reproduce
_No response_
### Operating System
Linux
### Versions of Apache Airflow Providers
apache-airflow-providers-microsoft-azure==5.... | 1 |
I am using the Drawer component in the nav bar with the MenuIcon. In earlier
releases, this worked as expected. When the MenuIcon was clicked, the Drawer
would open, and clicking on any of the Drawer items, or outside the Drawer
would close the Drawer. However, with the latest release, I notice that once
the Drawer o... |
In some folders in the project there are places where there are different
modules and their types/tests which reside in the same folder.
* I have searched the issues of this repository and believe that this is not a duplicate.
## Context
I think that following the project-guidlines project's view on folder
s... | 0 |
While sitting with @stefanv last week we discussed (and then @stefanv started
implementing) sparse array classes that use the same code as the existing
matrix classes, but instead satisfy the ndarray interface (only up to two
dimensions). For example slicing out rows would result in 1d arrays rather
than 2d matrices,... |
>>> M = sp.csr_matrix((np.array([-2, 4]), np.array([0, 0]), np.array([0, 2])))
>>> M.A
array([[2]])
>>> (M > 1).A
array([[False]], dtype=bool)
I haven't analysed where the failure occurs, but there is apparently no test
for this case at present, as `TestCSRNonCanonical.test_gt` pass... | 0 |
#### Binary Agents
https://www.freecodecamp.com/challenges/binary-agents
#### Issue Description
One of the help links that's suppose to direct to Mozilla documentation on
String.charCodeAt() instead points to
https://www.freecodecamp.com/challenges/undefined
#### Browser Information
* Browser Name, Version: Ch... |
Challenge Caesars Cipher has an issue.
User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0)
Gecko/20100101 Firefox/45.0`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
function rot13(str) { // LBH QVQ VG!
return str... | 1 |
# Bug report
## Describe the bug
My import dependency tree looks like this:
- main app
- components library
- antd
The components library is built with `next/babel`. When running a production
build, I get the following error:

##### Su... |
##### Issue Type:
Bug Report
##### Ansible Version:
ansible 1.5.4
##### Environment:
Ubuntu 12.04 x64 running Ansible, managing 13.10 x64 hosts
##### Summary:
* Attempting to use 'group_by:' with 'when:'.
* Two hosts; one in group _**dbnodes**_ , one in group _**webnodes**_ , both also a member of ec2_host... | 1 |
Q | A
---|---
Bug report? | yes
Feature request? | no
BC Break report? | yes/no
RFC? | yes/no
Symfony version | 3.4.7
I have a Symfony 3.4 project and code from an old project (SF 2.1) - I want to
migrade the code from the old project to the new one. In none of these both
projects exists any service.
... | Q | A
---|---
Bug report? | yes
Feature request? | no
BC Break report? | yes
RFC? | no
Symfony version | 3.4.7
after `composer up`:
[RuntimeException]
An error occurred when executing the "'cache:clear --no-warmup'" command:
In Container.php line 297:
Circu... | 1 |
See this issue for more details, TypeStrong/atom-typescript#365
|
Soon after the new settings view was included, I noticed this odd item:

Which seems to be related to autoprefixer package. See also
https://discuss.atom.io/t/whats-this-bin-pac... | 1 |
by **vivaneon** :
What is the expected output? What do you see instead?
--- cd ../misc/cgo/stdio
rm -rf *.[568vqo] *.a [568vq].out *.cgo[12].go *.cgo[34].c *.so _obj _test
_testmain.go hello fib chain run.out
cgo file.go
could not determine kind of name for C.CString
coul... |
by **robert.hencke** :
This is peculiar, but I was able to get someone else to reproduce this.
What steps will reproduce the problem?
1. Open the cgo life example ($GOROOT/misc/cgo/life)
2. Open life.go
a. Change //export GoStart to //export Aaa
b. Change //export GoWait to //e... | 0 |
The folder test_plugin/, while showing an example, is not mentioned anywhere
in the manual, and is not easy to find (since the name does not indicate it
also being an example)
This could be a good first issue.
|
Currently the runtime API would support the compiler option of `lib`, but it
would fail in most scenarios where if a lib is included that isn't inlined
into the TypeScript compiler. For example `lib: [ "esnext", "dom" ]` would
fail, because `lib.dom.d.ts` is not inlined into the compiler.
We should support attemptin... | 0 |
also while installing other packages the search becomes unresponsive, as do
the install buttons on other search results.
|
See: https://discuss.atom.io/t/terrible-bug-update-all-packages-freeze-my-
machine/17106
I assume that Atom trying to update 120 packages at once consumed too many
resources?
| 1 |
DaemonRestart Scheduler should continue assigning pods to nodes across restart
is failing with some kind of ssh error:
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/daemon_restart.go:256
Expected error:
<*errors.errorString | 0xc208525a90>: {
s... |
The test is in flaky suite and no one seems to care. We need an owner for this
test.
cc @wojtek-t @davidopp @ixdy @mikedanese @quinton-hoole
Last failure log:
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/daemon_restart.go:278 Nov 26 03:25:57.460: RcManager created/de... | 1 |
* **I'm submitting a ...**
* bug report
* feature request
* support request => Please do not submit support request here, see note at the top of this template.
**Current behavior**
`<script>` and `<style>` tags are stripped from templates, but they are listed
in the DOM element registry as supported, comple... |
## I'm submitting a...
[x] Bug report
[x] Feature request
## Background
Imagine you have the following webcomponent:
<expression>
<script type='text/plain'>
If(var1 < var2,
Sum([Field 1])
,
Sum([Field 2])
)
</script>
</expression... | 1 |
Firstly, show the code:
km = joblib.load(filename)
cluster_labels = km.predict(X)
silhouette_avg = silhouette_score(X, cluster_labels)
# Compute the silhouette scores for each sample
sample_silhouette_values = silhouette_samples(X, cluster_labels)
‘km’ is the model that I trained ... |
With scikit-learn 0.15.2, numpy 1.9.1, python 2.7.8 (on OS X), the following
code segfaults:
import numpy
import sklearn.cluster
numpy.random.seed(1)
X = numpy.random.random((50000, 100))
model = sklearn.cluster.KMeans(n_clusters=3, random_state=1)
model.fit_predict(X)
prin... | 1 |
paramiko has a helper class SSHConfig() which can read in ~/.ssh/config.
This might be helpful if special configuration is done to hop to a second
host, hardcode ports or other special configuration, so that the config does
not need to get duplicated for ansible.
best regards,
Florian La Roche
|
##### Issue Type:
Bug Report
##### Ansible Version:
Introduced in v2.0.0-0.3.beta1, bug not present in v2.0.0-0.2.alpha2.
##### Ansible Configuration:
in ansible.cfg, use a directory as inventory
inventory = hosts/
Debian Jessie.
##### Summary:
I've configured 2 host files in hosts/ direct... | 0 |
# * Electron version: v0.3.75
* Operating system:win7 x64
example:

then i change the html in the span through javascript
 call will cause it.
* Electron version: 0.37.5
* Operating system: Windows

print (df)
#### Problem description
I have already posted my issue before. The read_excel function is not able to
read the excel sheet is only reading a p... |
we need to make the API's more explicit/consistent.
create_table
delete_table
table_exists
should these be
table_create
table_delete
table_exists
cc @parthea
| 0 |
This code example
<label [class.has-error]="!username.valid">
<div>Login</div>
<input type="text" ngControl="username" #username="ngForm" class="form-control" placeholder="Login" required/>
</label>
Error: Uncaught (in promise): No provider for ControlContainer... |
I've come across a really weird error right after upgrading to Beta 1: Every
time I drop a `[class.whatever]` or any other attribute binding within a
nested DOM element wrapped by a `ngForm` element I get the infamous `No
provider for ControlContainer! (NgControlName -> ControlContainer)` exception.
I've put togethe... | 1 |
#### Challenge Name
Any challenge, **both beta and production**
#### Issue Description
The exact same code works in Chrome but not in Firefox. In Firefox, the output
just above the tests says that the tests were completed, but tests that had to
be run in the iframed phone-view never passes.
According to this mess... |
Trying to complete lessons, but code is becoming unmanageable:
* flags auto duplicate themselves, so instead of `<p>` I get `<pp>`
* same with content, `hello` paragraph becomes `hello world hello world`
* it is undeleteable as every time I move the cursor it repeats again.
#### Browser Information
* Mozil... | 0 |
### Problem
I'm trying to create a plot which "zooms in" on a subset of a large dataset (I
am plotting the entire dataset because it's much more convenient than clipping
the underlying dataset). I can do this pretty easily for the x-axis with
ax.set_xlim(), because I know what the x-limits of my data should be. Howe... |
I filed a matplotlib bug report via GitHub: When x-axis limits are overridden
via `pyplot.xlim`, the default y-axis limits may no longer be sensible. If
limits are overridden for one axis, new limits should be calculated for the
remaining axes. The image at the following URL demonstrates the problem:
http://phillipm... | 1 |
The ReactTransistionGroup assumes that children should be prepended to their
siblings when inserted into the parent. I think we should add an optional prop
that allows configuration to prepend or append children. I have working code I
can submit a pull request I just wanted to make sure I wasn't missing
something.
... |
In ReactTransitionGroup given a dynamic array of children e.g. first `['A',
'B']` then `['B', 'C']` while ReactTransitionGroup holds on to the exiting DOM
nodes we see `['A', 'B', 'C']` in the DOM before `done()` is called. Then we
see `['B', 'C']`. This is all fine. However if we then transition to an
entirely new a... | 1 |
Summary.
When REQUESTS_CA_BUNDLE has been set as an environment variable, the verify
property in a requests.Session() will always be ignored.
## Expected Result
requests.Session always uses REQUESTS_CA_BUNDLE unless a certificate bundle
has been assigned
## Actual Result
requests.Session always uses REQUESTS_CA_... |
One would expect that when the caller explicitly asks to make unverified
requests, then the `REQUESTS_CA_BUNDLE` environment variable doesn't affect
it. The reality is different, however.
import os
import requests
os.environ['REQUESTS_CA_BUNDLE'] = 'asd.pem' # Must be an existing file
... | 1 |
Challenge Waypoint: Assignment with Minus Equals has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML,
like Gecko) Chrome/47.0.2526.106 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
var a =... |
Thanks to Thad for reporting. His words:
I have a question about the code output area. I'm referring to the area just
under the Reset, Help and Bug buttons on the left side of the page at FCC. It
seems that there was a change to how that functions in the past few days.
In the past, when it was dictated that an arra... | 1 |
# Bug report
## Describe the bug
When upgrade to v9.0.7. `css-loader` throw an API schema error. It won't
happens in v9.0.6. Seems `minimize` has been removed from the options of `css-
loader` (see here)
## To Reproduce
1. yarn upgrade next.js@^9.0.7
2. yarn dev
## Expected behavior
app compiled success
##... |
I did correct by document and I import ./style.scss file in my js file
but i have this error i asked in stackoverflow but i dont get answer
please help me to fix it
package.json
dependencies{
"@zeit/next-sass": "^1.0.1",
"next": "^9.0.6",
"node-sass": "^4.12.0",
"react": "^16.9.0",
"react-dom": "^16.... | 1 |
### Is there an existing issue for this?
* I have searched the existing issues
### Current Behavior
High CPU usage with no sign of stopping.
### Expected Behavior
The package gets installed.
### Steps To Reproduce
npm install brettz9/rollup-plugin-postprocess#update --save-dev
### Environ... |
### Is there an existing issue for this?
* I have searched the existing issues
### Current Behavior
Running `npm install` in my repository without a `package-lock.json` file
enters an infinite loop inside npm for a dependency in a workspace.
Looping part of the logs with `--loglevel silly`
npm ti... | 1 |
### Problem
`plt.scatter` accepts both singular and plural forms of the `linewidth(s)` and
`edgecolor(s)` attributes. The plural forms are documented in the function
signature, but the singular forms actually take precedence if both are
specified.
This adds some complexity for downstream libraries and confusion for... |
Potentially related to #5143 or #2025?
Using Homebrew on OS X 10.10.5, i installed `homebrew/dupes/tcl-tk`,
uninstalled and reinstalled `python3`, then tried to rebuild matplotlib
against the newer Python and Tk with `pip3 install --no-binary :all:
matplotlib`. (Note that since I do not have root access to this comp... | 0 |
#### Code Sample, a copy-pastable example if possible
import pandas
cyrillic_filename = "./файл_1.csv"
# 'c' engine fails:
df = pandas.read_csv(cyrillic_filename, engine="c", encoding="cp1251")
---------------------------------------------------------------------------
OSError ... |
#### Code Sample, a copy-pastable example if possible
`test.txt` and `test_é.txt` are the same file, only the name change:
pd.read_csv('test.txt')
Out[3]:
1 1 1
0 1 1 1
1 1 1 1
pd.read_csv('test_é.txt')
Traceback (most recent call last):
File "<ipython-inp... | 1 |
Hi, allow me to ask for a question about Tensorflow feature:
Firstly, I uses the nearly-latest Tensorflow version v1.10 and the system has
NCCL 2.0 installed.
As is known that NCCL 2.0 has already supported Cross-Node multiple GPU
training with fully NCCL management, but I found that Tensorflow benchmark
script doe... |
I have built tensorflow from scratch for the Knights Landing and it seems to
give only 4-5images/sec. Can someone give a procedure to run these standard
benchmarks?
| 0 |
##### System information (version)
* OpenCV => 3.4.1
* Operating System / Platform => Ubuntu 16.04 64Bit
* Compiler => gcc 5.4.0
* TensorFlow => 1.4.0
* Model => faster_rcnn_resnet50_coco http://download.tensorflow.org/models/object_detection/faster_rcnn_resnet50_coco_2018_01_28.tar.gz
##### Detailed desc... |
##### System information (version)
* OpenCV => 3.4 installed with pip
* Operating System / Platform => Ubuntu 16.04
* Python => Python 3.5.2
* Tensorflow => 1.5
##### Detailed description
I'm trying to load in a pretrained MobileNet model from
tensorflow.python.keras.applications. However I'm running into ... | 1 |
* OpenCV = >3.4.1```
* Operating System / Platform => Windows 64 Bit
* Compiler => Visual Studio [2017]
##### Detailed description
I have used the Facenet code to train a model and get .ckpt and .meta files.
(https://github.com/davidsandberg/facenet). I used freeze_graph.py from
tensorflow to get a .pb file... |
##### System information (version)
* OpenCV => 3.1
* Operating System / Platform => Windows 64 Bit
* Compiler => Visual Studio 2015
##### description
I'm using the tf_importer.cpp to import a tensorflow pb frozen model. However,
I get an error during populating to the Net class variable:
batch/fifo_queue:FI... | 1 |
The `DataFrame` constructor supports numpy's ndarray of primitive type,
recarray (or structured array) or a masked array of simple type. It breaks
when given a masked recarray:
>>> a = np.ma.mrecords.fromrecords([(1,2)], names=['a', 'b'], mask=False)
>>> pandas.DataFrame(a)
...
TypeError: c... |
as it stands
In [24]: tuples = [(randint(10), randint(10)) for _ in range(10)]
In [25]: mi = MultiIndex.from_tuples(tuples)
In [26]: df = DataFrame(index=mi, columns=mi)
fails, whereas single level indexes work fine
In [27]: df = DataFrame(index=range(10), columns... | 0 |
When the animation is done between placeholder and new image then the
placeholder is stretched during the animation. Please do only the fade
animation without modifying the imagesize.
|
**Glide Version/Integration library (if any)** : 3.5.2
**Device/Android Version** : S4/4.4
**Issue details/Repro steps** : Load a different sized thumbnail and image, or
placeholder and image and note the result:
;
border-right: 1px solid lighten(@gray, 33%);
padding-right: 40px !important;
}
.sidebar-col {
&:extend(.col-md-6 all);
... | 1 |
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.): "lock is
held by" "has not yet expired"
* * *
**Is this a BUG REPORT or FEATURE REQUEST?** (choose one): BUG REPORT
**Kubernetes version** (use `kubectl version`):
t... |
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.):
## kube-dns, kubeadm, headless service, service
**Is this a BUG REPORT or FEATURE REQUEST?** (choose one):
**Kubernetes version** (use `kubectl version`):
... | 0 |
**Describe the bug**
Many scenes use a CubeCamera to generate static reflections.
On 132 or 133 Standard Materials do not show the reflection. Either if set via
material.envMap or scene.environment
**To Reproduce**
See live example
Essentially use the code from CubeCamera demo in 132 or 133
_**Code**_
... |
It may be a duplicate one, but i can't find it...
and has my english is poor i made a fiddle :
http://jsfiddle.net/Turboconnard/34btU/56/
I don't know if it's a bug or if it's normal for a plane to display like this.
(my project is almost done, i'll show you by the end of the week...)
| 0 |
DAO层使用 MyBatis,当使用 INSERT INTO VALUES
ON DUPLICATE KEY UPDATE
语句时,UPDATE 部分参数全都会丢失
|
Please answer these questions before submitting your issue. Thanks!
开源不易,我们希望将精力放在完成新功能和解决有价值的问题上,为了让大家的配合更具有效率,请填写以下列出的全部问题
### Which version of Sharding-Jdbc do you using?(您使用的Sharding-Jdbc版本为?)
1.5.41
### Expected behavior (您预期的结果是)
没有配置分表的表,能够使用一切SQL语句, 包含OR等sharding jdbc不支持的语句
### Actual behavior (实际运行的结果... | 0 |
Hello. I found a memory leak in
**com.bumptech.glide.request.target.ViewTarget**.
**GlideDrawableImageViewTarget** provide a memory leak. It keeps a reference
to my activity. And GC can not release the activity.

compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.githu... | 1 |
I setup o 2-node kubernetes cluster using docker containers, as described
here: https://github.com/kubernetes/kubernetes/blob/release-1.1/docs/getting-
started-guides/docker-multinode.md
Now, I created a secret and a test pod:
(using files from the branch 'release-1.1' and commit
'ac3f023ab28ed4f4c4f88a3fb518e90f4... |
When running a containerized kubernetes cluster I cannot spawn pods due to
`file does not exist` errors when trying to mount their secret volumes:
$ kubectl create -f - <<EOF
apiVersion: v1
kind: Pod
metadata:
name: busybox-sleep
spec:
containers:
- name: busybox
... | 1 |
When cloning a skeleton, the bones and boneInverses arrays of the cloned
skeleton still reference the arrays from the original skeleton. Hence when the
original skeleton is animated, the bones on the cloned skeleton are also
affected. Is this the intended behavior?
three.js/src/objects/Skeleton.js
Line 153 in c0dbf... |
There are a few things which geometry.clone() doesn't copy a reference to,
which it should.
.bones
.skinWeights
.skinIndices
.animations
.animation
are all left without references to the original, which leads to skinning being
broken unless the references to those are manually copied. I think references... | 1 |
##### Issue Type: Bug Report
##### Ansible Version: 1.5
##### Environment: CentOS 6.5
##### Summary: includes in templates loose their variable context
##### Steps To Reproduce:
In one template file i have this code snippet:
{% for group in group_names %}
{% include "debug_include.j2" with context %}
{% en... |
##### Issue Type:
Bug Report
##### Ansible Version:
ansible 1.5
##### Environment:
debian 7
##### Summary:
Variables go out of scope inside an included template
##### Steps To Reproduce:
hosts.yml:
---
- hosts: all
vars:
mylist:
- alpha
- bravo
tasks... | 1 |
# Bug report
## Describe the bug
Dynamic routing to page with ant.design Table component doesn't work.
Bug only appears on build. On dev run it works properly.
## To Reproduce
I have two pages: Main and Sub.
Sub page contains component which contains Table component.
When I go from Main page to Sub page via... |
# Examples bug report
## Example name
with-ant-design-less
https://github.com/zeit/next.js/tree/canary/examples/with-ant-design-less
## Describe the bug
When I click on a Link to a page that uses any antd component, it doesn't work
and when I click on a Link to a page that doesn't use any antd component, it
wor... | 1 |
I would like to prevent MUI from optimising classNames:
* development: `.MuiAppBar-root-12`
* production: `.c12``
documentation: https://material-ui.com/customization/css-in-js/#class-names
* I have searched the issues of this repository and believe that this is not a duplicate.
## Current Behavior
With ... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
Select should display the placeholder, like a regular input.
## Current Behavior
Using the placeholder property on Select has no visible effect. I looked into
the code and it seems this property is bei... | 0 |
Context: https://tour.golang.org/basics/3
Change the title above to describe your issue and add your feedback here,
including code if necessary
hI
I did not understand the description export.Please provide more clear
explanation
regards,ppp
|
Context: https://tour.golang.org/basics/3
This page tells that exported name must start with upper character, but it
does not say what the "exported name" means. Also, "Exported identifiers"
maybe more aligned with other material.
This made me think "ok... I understand what it looks like, but what does this
exporte... | 1 |
### First check
* I added a very descriptive title to this issue.
* I used the GitHub search to find a similar issue and didn't find it.
* I searched the FastAPI documentation, with the integrated search.
* I already searched in Google "How to X in FastAPI" and didn't find any information.
* I already read... |
### Describe the bug
HTTP exceptions are not ~~raised~~ propagated inside a dependency which
encapsulates the `yield` in a try except statement.
Only custom exceptions are ~~raised~~ propagated if I understand correctly.
### To Reproduce
1. Create a main.py with:
from fastapi import Depends, FastA... | 1 |
If `test.ts` is:
const { symlinkSync, readFileSync } = Deno;
try {
const s = readFileSync("./test_private/file");
console.log(s);
} catch(e) {
console.log("caught", e.name);
}
symlinkSync("./test_private/file", "./test_public/file");
const s = readFileSyn... |
e.g. Currently creating a symlink under write-allowed directory to other
directories would allow escaping the perm rules and access any file.
| 1 |
Assuming that windows and webviews inherit the nodeintegration setting from
parents, and nodeintegration is disabled, is still possible to run JS with
full node integration via the Preload function.
`<webview
src="data:text/html,<script>require('child_process').exec('notepad.exe',function(){})</script>"
preload="fil... |
Currently webview tag is available even when node integration is off, this can
introduce security problems since webview can be used to execute arbitrary
code.
Refs #3921.
| 1 |
## ℹ Computer information
* Windows build number: 19041.388
* PowerToys version: 0.20.0
* PowerToy module:PR Run
## 📝 Provide detailed reproduction steps (if any)
1. Hit the Windows key to launch Start Menu
2. Started typing 'Power' (no quotes) to launch powershell
### ✔️ Expected result
PowerToys not... |
Popup tells me to give y'all this.
2020-07-31.txt
Version: 1.0.0
OS Version: Microsoft Windows NT 10.0.19041.0
IntPtr Length: 8
x64: True
Date: 07/31/2020 17:29:59
Exception:
System.ObjectDisposedException: Cannot access a disposed object.
Object name: 'Timer'.
at System.Timers.Timer.set_Enabled(Boo... | 1 |
For example, as of this writing, the `StrAllocating::to_owned` method is
annotated with `#[deprecated = "obsolete, use `to_string`"]`, but
http://doc.rust-lang.org/std/str/trait.StrAllocating.html#method.to_owned
gives no indication of that.
|
Platform: Windows, rust nightly.
The optimizations made to fix #13472 appear to have been undone by #15471 and
`3316b1e`
In 32-bit mode, `rustc -O --test test.rs && ./test --bench` gives:
running 7 tests
test clone_str ... bench: 1540862 ns/iter (+/- 25433)
test clone_vec_f... | 0 |
Using requests 2.13.0 I can't seem to pass a non-ascii value as "data" on a
PUT.
This might be a duplicate of issue
https://github.com/kennethreitz/requests/issues/2638.
How should I send a unicode string in a request body? Doing an
`.encode('utf-8')` seems to workaround the problem in first example, but that
still... |
Python version: 2.7.12 and 3.5.2
Requests version: 2.11.1
I'm sorry if this is a duplicate, but I don't know what the issue is, so I
also don't even know how to look for it in the search... But this might be a
bug, so I decided to report.
When I run this in Python 2:
import requests
r... | 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. https://groups.google.com/forum/#!topic/celery-users/TBCxDemhSdE
* I have read the relevant section in the
contribution guide
on reporting bugs.
* I hav... |
PR for proposed fix to this issue: #6020
# 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 li... | 0 |
Modals that have been opened and closed and reopened are not being closed
using the x or the close button. The live example modal from the docs shows
this http://getbootstrap.com/javascript/#modals.
Open the modal.
Close it however you'd like.
Reopen the modal.
Clicking close or the X does not close the modal ... |
Hi,
The code used on last Thursday worked fine. But after updated to latest code
on Monday (GMT+8), the modal dialog when clicks to dismiss for seconds onward
cannot be close.
I am checking on source code line 932, if I commented out this line then it is
working again.
this.$element
.removeClass('in')
.attr('a... | 1 |
I'm looking for implementing proper highlighting for C# code using a server
that inspects the code, and tokenizes it. The server part is already done,
however, it seems that Atom doesn't support asynchronous Grammars (or I'm just
not finding any documentation on it).
Please add an API like `highlightFile` or `highli... |
I am looking to enhance the language definition for `typescript`, which is
currently extremely lacking. Typescript itself provides a highly efficient
tokenizer service that could be used to provide a grammar.
I have two questions.
Is the public interface defined here https://atom.io/docs/api/v0.176.0/Grammar
what I... | 1 |
In pearsonr function of scipy.stats, there is the following code:
r_num = n_(np.add.reduce(xm_ym))
r_den = n_np.sqrt(ss(xm)_ss(ym))
r = (r_num / r_den)
Since r_num is numerator and r_den is denominator. The common factor n is
unnecessary.
|
Gina Helfrich from NumFocus pointed out that our code of conduct is not linked
to the Community page . It's current location is here.
Should we relocate the current file to `/docs` and rename as described here or
duplicate it in the repo root under `/docs`? Or maybe include a link to the
existing location inside gen... | 0 |
All of the "Help" and "Pair" links in all Waypoints and Bonfires (as far as
I've seen) are dead links. If you click either, you get a pop up window and
then if you click on the "Take me to the help room" or "Take me to the pair
programming room" the link is dead.
|
When on the Bonfire, clicking the Help button produces a pop-up that reads:
Need some help?
Remember to use Read-Search-Ask.
If you've already read the errors and searched Google, you should ask for
help.
This will take you to our help room.
The Take Me to the Room button has no affect.
![bonfire seek and de... | 1 |
Challenge http://freecodecamp.com/challenges/waypoint-create-a-form-element
has an issue. Please describe how to reproduce it, and include links to
screenshots if possible.
Upon the load of this lesson, it was obvious there are two complete renderings
of the simulated image in the simulated phone. This is in severa... |
Challenge http://www.freecodecamp.com/challenges/waypoint-line-up-form-
elements-responsively-with-bootstrap has an issue.
I think the problem is happening on all Waypoint pages; the device right side
of the screen where the CatPhotoApp page displays the information is being
displayed duplicated;
Another point is t... | 1 |
* Electron version: 1.0
* Operating system: OS X EL Capitan
Anyone can tell me how to implement it?
|
Actually achieving vibrancy is fairly easy. You simply make the
NSVisualEffectView the content view of the mac window. The issue with this is
that it blurs the whole window, which is obviously not ideal. The way I see it
there are couple different ways of going about this. There could be an API
that allows you to cre... | 1 |
env: macOS
tf version: master brunch
I built tensorflow on `macOS` using `build_all_ios.sh`. Then I tried to load
`frozen.pb` data created by python program. Here is a code to load graph in
`iOS`:
Status status;
Session *session;
status = NewSession(SessionOptions(), &se... |
I am trying to load the simple trained model, but I am facing the following
issue:
No OpKernel was registered to support Op 'RandomShuffleQueue' with these attrs
[[Node: shuffle_batch_1/random_shuffle_queue = RandomShuffleQueue[capacity=1003,
component_types=[DT_FLOAT, DT_FLOAT, DT_FLOAT]... | 1 |
It used to, the code is still here, so it's probably something that changed in
either OrbitControls or TransformControls
https://threejs.org/examples/#misc_controls_transform
|
The Transform Controls example isn't responding to any mouse input when you
try to move the box around.
This is working however on mobile Safari and mobile Chrome.
##### Three.js version / on the live site
* [ X] r120
##### Browser
* All of them
* Chrome
* Firefox
* Internet Explorer
##### OS
* [X ... | 1 |
Services should have a proxy subresource just like the one for pods
(pods/proxy). The endpoint should be the equivalent of the current
/proxy/services/[name] endpoint.
|
We created and added "pods/proxy" subresource to remove the need for the
generic top level prefix proxy. We should add the equivalent for service and
convert all code to use it (code that does not have to be backwards compatible
with a Kube 1.0 or 1.1 server, such as e2e). We should mark the
"proxy/service" construct... | 1 |
I wrote a program to watch an incoming files in inbox folder and it's working
fine, except some garbage shows on the screen, however, this works fine one
Windows 10. I used the following code:
import { green, magenta, red, bold, underline } from
"https://deno.land/std/fmt/colors.ts";
const success = (text: string)... |
On Windows, escape sequences don't color Deno's output and display as ordinary
text.
For example, an error stack trace looks like:
Uncaught SyntaxError: Unexpected string
at ←[1m←[3m←[90mevaluate←[39m←[23m←[22m←[90m(←[39m←[90m$deno$/repl.ts←[39m←[90m:←[39m←[90m45←[39m←[90m:←[39m←[90m34←[39m←[9... | 1 |
## Feature request
**What is the expected behavior?**
If you do "webpack --watch" it's currently only detecting and recompiling when
existing files are changed.
**What is motivation or use case for adding/changing the behavior?**
I want to be able to drop new jsx files into the source directory tree, and
have t... |
## Feature request
**What is the expected behavior?**
Currently, there is no way to tell Webpack to watch additional paths for
changes when using `watch`. It would be nice if this was possible.
**What is motivation or use case for adding/changing the behavior?**
In one of my projects I use `BannerPlugin` to add... | 1 |
Hi ,
The programming image that appears.


Challenge http://www.freecodecamp.com/challenges/wayp... |
Challenge Target a Specific Child of an Element Using jQuery has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML,
like Gecko) Chrome/49.0.2623.87 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
... | 0 |
_Original tickethttp://projects.scipy.org/numpy/ticket/1897 on 2011-07-07 by
@jpaalasm, assigned to @pierregm._
Python 2.7.1+ (r271:86832, Apr 11 2011, 18:13:53)
[GCC 4.5.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pickle; import numpy; n... |
There is a decent amount of overlap in documentation subsection of the
dev/index page and the more detailed documentation build instructions.
There may be an opportunity to reduce duplication here, e.g. by removing most
of the details about building docs from dev/index and linking to the
`howto_build_docs` article i... | 0 |
Simply trying to add `OrbitControls` to `three.min.js` by following the
instructions in the Wiki. Working from a fresh clone of the master branch of
r120 on a Windows 10 machine with current Node and npm. Added the line
`export { OrbitControls } from '../examples/jsm/controls/OrbitControls.js';`
to `src/Three.js` a... |
Ricardo, why did you delete the reported issue?
I'm a 3DS Max user since the DOS era, so I know very well what I'm saying.
Again:
* import an object (OBJ, DAE, whatever) with many childrens.
* perform some scale/rotation/position changes on the imported object (all the childrens will be afected).
* detach ... | 0 |
* * *
### 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)** : CentOS
* **TensorFlow installed from (source or binary)** : source
* **TensorFlow version (use command below)... |
The tf.image.resize_images() seems to use a strange padding option, which one
is not clear to me at the moment. I tried to replicate the bilinear
interpolation with various padding options in for example skimage, but cant
replicate the behaviour.
It would be nice to be able to set the padding option used in
tf.image... | 0 |
I'm used to this from KeyPirinha (well, a plugin), so bear with me:
I'd like to be able to sleep, restart, shut down, log off and hibernate from
PTR. I could make programs to do this and have them in my start menu to work
around this for now, but this feels like something that would (a) not bloat
the runner and (b) ... |
As per this twitter conversation, it would be nice to have the ability to
execute system commands such as sleep, shutdown ,and switch user account from
within the launcher via the use of friendly keywords.
Some keyword examples:
"sleep" - send the PC to sleep
"hibernate" - send the PC to sleep
"shutdown" - shu... | 1 |
One of the great features of IPython is that you are able to embed it in a
currently executing program `IPython.embed()` so you can muck around with the
current state at that point. This would be a great feature to support with the
new REPL.
|
Debugging code is currently print() based. This isn't a particularly great
solution.
Spun this issue off of #502 so maybe we can put that one back on topic. (My
fault for bringing it up)
| 1 |
**Do you want to request a _feature_ or report a _bug_?**
Report a bug
**What is the current behavior?**
My bundle gets compiled several times.
**If the current behavior is a bug, please provide the steps to reproduce.**
I'm creating a webpack boilerplate for my personal projects, you can check it
on this rep... |
**Bug: I'm using webpack to build the server using target node, but the output
claims requireEnsure as undefined!**
`TypeError: __webpack_require__.e is not a function`
The function is related to webpack requireEnsure. It makes totally sense that
we don't have requireEnsure (which appends html to the DOM) on the se... | 0 |
add random_state parameter to SVC.predict_proba() to allow reproducibility.
this is needed since SVC.predict_proba() uses cross validation
|
From one run to another
sklearn.metrics.tests.test_metrics.test_precision_recall_curve failed. Any
ideas @jnothman ?
======================================================================
FAIL: Test Area under Receiver Operating Characteristic (ROC) curve
---------------------------------------... | 1 |
It cost me quite some time to figure out that if I want to have a structured
representation of my underlying decision tree I can use the `tree_` attribute
of the DecisionTreeClassifier at the bottom of the attribute list. Further
down the bottom there is also an example 'Understanding the decision tree
structure'.
H... |
#### Description
(Motivated by some questions in the mailing list)
I couldn't find a place where the attributes of the underlying `tree_` objects
of `DecisionTree<Classifier/Regressor>` were documented. They're fairly useful
for getting basic information about a built tree, and many people don't know
where to look... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.