text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
Hello,
I am looking at the gradient computation in Gaussian Process Kernel module. My
understanding is that there we are trying to compute
$$\partial{K(x,x')}{\partial \theta}$$, where $$\theta$$ is a hyperparameter.
However, I am not sure that is what is computed in the code:
For example, the ConstantKernel has: ... |
#### Description
As discovered in #8373, the docstring states that if `eval_gradient` is true,
the gradient with respect to the kernel hyperparameters is returned, whereas
actually it returns the gradient with respect to the log-transformed
hyperparameters. As an example:
> Writing the `DotProduct` kernel as a func... | 1 |
Adapting from #6029 as an example:.
Assuming `tsd` is installed (`npm install -g tsd`)
Run
`tsd install react-global react-bootstrap --save`
* `tsconfig.json`:
{
"compilerOptions": {
"target": "es5",
"module": "amd",
"jsx": "react"
},
"com... |

It looks like it's also missing in any other JSX-expression context.
| 1 |
I've been using zeit's `ncc` to slim down and build our transpiled APIs into
tiny, minified, individual scripts that run without any node_modules present
on our servers/containers. It's **_absolutely_** fantastic.
I tried to us ncc w/ NextJS, but probably lack the requisite knowledge of
understanding how nextJS buil... |
Hi, according to the v3-beta docs, next.js support exporting to static html,
and apparently also support "dynamic routes". Was wondering if there was some
documentation on how to create dynamic routes when exporting static html.
> This is a way to run your Next.js app as a standalone static app without any
> Node.js... | 0 |
**System information**
* Have I written custom code (as opposed to using a stock example script provided in TensorFlow): no (https://www.tensorflow.org/alpha/tutorials/keras/feature_columns \+ model.save + load_model)
* OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10
* Mobile device (e.g. i... |
Do we have any options to control the number of threads in TF-Slim both in
training and evaluation processes?
Specifically, I use this network for my classification problem. I changed the
evaluation part in a way that runs train and evaluation in parallel like this
code. I can run it on my own CPU without any proble... | 0 |
**Migrated issue, originally created by Stijn van Drongelen (@rhymoid)**
I programmatically create a bunch of (complex) `INSERT ... SELECT` statements.
I regularly use the pattern
target_columns, source_elements = *query_components
statement = target_table.insert().from_select(
target_col... |
Apart from having option to select isolation level, it may come handy to
create a transaction in a read only mode. This option is supported on
postgres, see https://www.postgresql.org/docs/current/sql-set-
transaction.html. I'm not sure about other database backends, but mysql seems
to support them as well, see https... | 0 |
Following the discussion on Slack.
Currently this works :
julia> (1:2) - (1.0:2)
0.0:0.0:0.0
But these operations fail:
julia> (1:2) - (1:2)
ERROR: ArgumentError: step cannot be zero
and
julia> (1:1:2) - (1:1:2)
ERROR: ArgumentError: step cannot be... |
record_reference_images = true
recordpath = "blah"
if record_reference_images
cd(homedir()) do
isdir(dirname(recordpath)) || run(`git clone git@github.com:SimonDanisch/ReferenceImages.git`)
isdir(recordpath) && rm(recordpath)
end
end
Unreachab... | 0 |
# Checklist
* I have checked the issues list
for similar or identical feature requests.
* I have checked the pull requests list
for existing proposed implementations of this feature.
* I have checked the commit log
to find out if the if the same feature was already implemented in the
master branch.
... |
# Checklist
* I have checked the issues list
for similar or identical bug reports.
* I have checked the pull requests list
for existing proposed fixes.
* I have checked the commit log
to find out if the bug was already fixed in the master branch.
* I have included all related issues and possible dup... | 0 |
**Sam Brannen** opened **SPR-7827** and commented
#### Overview
Spring 3.0 already allows component stereotypes to be used in a _meta-
annotation_ fashion, for example by creating a custom `@TransactionalService`
stereotype annotation which combines `@Transactional` and `@Service` in a
single, reusable, applicatio... |
**Matthew Sgarlata** opened **SPR-2233** and commented
Let me preface this by saying I know my use case is an edge case. However, the
logging produced at WARN level by DispatcherServlet.noHandlerFound is
incorrect for this case and is **very** confusing. Let me just start by saying
what the fix is, and then come ba... | 0 |
Have code like this:
setTimeout(null, () => {
});
Run "Format". The end result is:
setTimeout(null,() => {
});
There is a whitespace missing between "null" and the lambda.
|
Not sure if it has been reported yet, tried to find similar issues but didn't
find anything.
**TypeScript Version:**
1.9.0-dev.20160518-1.0
**Code**
// A self-contained demonstration of the problem follows...
<div name="test"
data="test"
onClick={() => { }}
>
<div>tes... | 0 |
I want to sample `uint8`s uniformly including the maximum value of 255, but
this doesn't work:
from jax import random, numpy as jnp
random.randint(random.PRNGKey(0), (10,), 0, 256, jnp.uint8) # [0 0 0 0 0 0 0 0 0 0]
The reason is that maxval is converted into the `uint8`. This is in contrast
to
... |
According to randint docstring: `Sample uniform random values in [minval,
maxval) with given shape/dtype.`
However because of the conversion here
jax/jax/_src/random.py
Line 439 in 5bbb449
| maxval = lax.convert_element_type(maxval, dtype)
---|---
passing `maxval={dtype max value + 1}` will generate an al... | 1 |
The following example duplicates `i` declaration.
for (let i = 0; i < 5; i++);
for (let i = 0; i < 5; i++);
But the following doesn't:
for (let i = 0; i < 5; i++);
for (let i = 0; i < 5; i++);
i;
I would expect both snippets to produce the same result.
|
## Bug Report
**Current behavior**
Spreading an HTMLcollection over an array does not work in iPhone 4s and
produces this error:
Invalid attempt to spread non-iterable instance. In order to be iterable, non-array objects
must have a [Symbol.iterator]()method.
**Input Code**
... | 0 |
**TypeScript Version:**
typescript@1.9.0-dev.20160409
**Code**
export enum SMTypeEnum { // расположены в порядке возрастания приоритета
S, I
}
type SMItemType = { messageType: SMTypeEnum, description: string, cssClassSuffix: string}
export var S_M_TYPES: SMItemType[] = [
{mess... |
interface A<a> {
brand: 'a';
nested: a;
}
interface B<a> {
brand: 'b';
nested: a;
}
type C<a> = A<a> | B<a>;
type D = C<D> | string; // <-- i wish
| 0 |
**TypeScript Version:**
1.8.10
## Problem
Sometimes we want to opt-out strict object literal check for a specific
property. Some types have large amount or even unlimited number of properties,
and we only want to model the most frequently used ones. However when we do
use an unmodeled property in an object litera... |
If there's a decorator that takes all optional parameters it's easy to mistake
and write
@decorator class A {}
instead of
@decorator() class A {}
The problem is that there's no warning and the decorator function does not get
called at all.
I suggest to make the parameterless... | 0 |
This issue is similar to the issue #3283, which actually proposed exactly the
same feature. I'm creating a new issue to bring attention back to this
feature.
It seems useful to be able to run only single task from a playbook. It can be
achieved by defining a tag in 'roles' section of the playbook. However this
appro... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
* module name: user
##### ANSIBLE VERSION
ansible 2.4.2.0
config file = None
configured module search path = [u'/Users/user/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /us... | 0 |
Backtrace from HTTP.jl travis run:
running async 1, 1:100, Pair{Symbol,Int64}[:verbose=>0], http C
[ Info: Accept (1): 🔗 0↑ 0↓ 0s 127.0.0.1:8081:8081 ≣16
(HTTP.Sockets).getsockname(http) = (ip"127.0.0.1", 0x1f91)[ Info: Closed (1): 💀 0↑ 0↓🔒 0s 127.0.0.1:8081:8081 ≣16
... |
Could probably be an error instead?
`sock.handle` is a null pointer here
julia/stdlib/Sockets/src/Sockets.jl
Line 817 in 5dbf45a
| sock.handle, rport, raddress, rfamily)
---|---
and here
julia/stdlib/Sockets/src/Sockets.jl
Line 821 in 5dbf45a
| sock.handle, rport, raddress, rfamily)
---|---
W... | 1 |
As shown in screenshot the select tag is not properly styled.
Tested on stock browser on android 4.1.2 and 4.2.1.
` statements in the JavaScript file:

I believe the TypeScript compiler doesn't react correctly in regard to bundled... |
Relates to #3089, #2743, and #17.
# Goals
* Bundle _js emit_ for TS projects while preserving internal modular structure (complete with ES6 semantics and _despite_ being concatenated into a single file), _but not exposing it publicly_ and wrapping the chosen entrypoint with a loader for the desired external modul... | 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: master
* Operating System version: deepin 15.9
* Java version: 8
I want to know more about du... |
* 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: mac
* Java version: 8
### Steps to reproduce this issue
###... | 0 |
#### Code Sample, a copy-pastable example if possible
**BEFORE**
df_india.groupby('sector').id.count().sort_values().plot.bar();
would result in a bar plot with all bars having the same color
**AFTER** version 0.20
df_india.groupby('sector').id.count().sort_values().plot.bar(color='co... |
#### Code Sample
Series([10**x for x in range(5)]).plot.bar()
Series([10**x for x in range(5)]).plot.bar(logy=True)
#### Problem description
The behavior changed from last version, 0.20. In last version,
`Series.plot.bar` uses one color for bars. In the new version, it uses
different colors for b... | 1 |
#### Code Sample, a copy-pastable example if possible
import pandas as pd
import random
str_values = ['a', 'b']
data = [[random.choice(str_values), random.choice(str_values),
random.randint(0, 10), random.randint(1, 20), random.random()] for _ in range(100)]
... |
xref #14547 for other tests
In pandas 0.16.2 (and already in 0.16.0), using std() for aggregation after a
groupby( 'my_column', as_index=False) modifies 'my_column' by taking its
sqrt(). Example:
df = pandas.DataFrame({
'a' : [1,1,1,2,2,2,3,3,3],
'b' : [1,2,3,4,5,... | 1 |
Current webpack modules have several details that are not exactly spec-
compliant, particularly when circular references are involved. It is "good
enough" for most current cases, but in order to be as close to the spec as we
can get without `Proxy`, I was thinking of how to change the way webpack emits
ES modules.
T... |
# Bug report
I have an issue with planout that bundled fine with Webpack 4 but no longer
works with Webpack 5.
**What is the current behavior?**
Module is not loaded:
Uncaught TypeError: Getter must be a function: A
at Function.defineProperty (<anonymous>)
at Function.__webpack_requ... | 0 |
When bundling code that uses the `renderToString` method, multiple versions of
react-dom are included in the bundle.
import { renderToString } from 'react-dom/server';
This is the visualised breakdown of the code included in a bundle assembled
with esbuild with the following options (it is bundled up ... |
Using destructuring assignment on objects falsely triggers `use-exhaustive-
deps`. For example, I would expect the following not to trigger lint rule:
const object = { hello: 'world', foo: 'bar' }
useEffect(() => {
const { hello } = object
console.log(hello)
}, [object.hello])
... | 0 |
export 'CC=gcc -lgcc'
export LDSHARED="/opt/freeware/lib64/python3.7/config-3.7m/ld_so_aix gcc -bI:/opt/freeware/lib64/python3.7/config-3.7m/python.exp"
export CFLAGS="-pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -fno-tree-dominator-opts"
# osleve... |
bash-5.0# gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/opt/freeware/libexec/gcc/powerpc-ibm-
aix6.1.0.0/6.3.0/lto-wrapper
Target: powerpc-ibm-aix6.1.0.0
Configured with: ../gcc-6.3.0/configure --prefix=/opt/freeware
--mandir=/opt/freeware/man --infodir=/opt/freeware/info --with-local-
p... | 1 |
* VSCode Version: Latest insiders
* OS Version: Win10
see gif
i have settings javascript.validation.enable set to false

|
* VSCode Version: 0.10.13 (insider)
* OS Version: OS X 10.10.5
Steps to Reproduce:
1.create a new .js file and past the following example code in:
export default function promiseMiddleware () {
return next => action => {
const {promise , type , ...rest} = action;
i... | 1 |
I'm trying to pass an `Input` component styled with styled-components into
select and getting the warning:
`Material-UI: you have provided an invalid value to the `input`property., We
expect an element instance of the`Input` component.`
* I have searched the issues of this repository and believe that this is not... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
`<TextField type="number" min="0" max="10" step="1" />` should compile with
Typescript
## Current Behavior
Receive following Typescript error for min, similar for max and step: `[ts]
Property 'min'... | 0 |
There seems to be an outdated tutorial page online at
https://matplotlib.org/users/beginner.html . It has the old “Matplotlib
2.0.0rc2 is available – Install the release candidate now!“ banner.
I guess it’s not reachable from the main page, but it comes up in Google
results.
|
On the current live docs, the examples page claims to be from release `2.0.2`,
but it should be `2.1`: http://matplotlib.org/examples/index.html
| 1 |
Looking at the demos on http://material-ui.com for Buttons I noticed the click
effect is broken in Firefox. The click effect works fine on Lists though, so
there's just something weird going on with buttons in Firefox. It works fine
on Chrome.
|
I am using Firefox 45 on Linux, and the demo app at http://www.material-
ui.com/#/customization/themes (version 0.14.4) shows that the ripple effect
works well for everything but the buttons.
That includes the Tab headers, which I suspect are buttons as well.
The problem is present with alphas for 0.15 as well
| 1 |
I have a DAE model that previews fine in macOS Catalina with animation. Drag
and dropping into GLTF converter (https://blackthread.io/gltf-converter/)
shows the model but not the animation. Animations from a test FBX do show.
MacOS 10.15.1 DAE Preview (it is animating)
: TESLA V4
* Tensorflow version (GPU?): 2.3.0
* Using GPU in script?: YES
* Using distributed or parallel set-up in script?: NO
### Who can help
## Information
Model I am using... |
## Environment info
Google colab
### Who can help
T5: @patrickvonplaten
## Information
I'm noticing something strange with T5. The model embedding size and the
tokenizer size does not match.
When I try to resize the model to have a smaller embedding this crashes CUDA.
This is probably two bugs - one for the si... | 1 |
Given a role:
web_server /
tasks /
main.yml
files /
httpd.conf
And a task:
* name: sync | httpd confnig
synchronize: src=httpd.conf dest=/etc/apache2/conf.d/widget.conf
You'll get an error because it assumes httpd.conf is based in the same
directory you call ansible playbook from. The copy module howe... |
When trying to run a playbook with the synchronize module, the relative path
is relative to where you are executing the playbook from, and it does not
follow the roles logic.
Example Playbook:
\-- roles/server/files/etc/scripts/test1.txt
\-- roles/server/files/etc/scripts/test2.txt
\-- roles/server/tasks/keep_fi... | 1 |
Maybe related to #24139
Different HTTP error code 500
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
contrib/inventory/proxmox.py
##### ANSIBLE VERSION
ansible 2.3.0.0
config file = /etc/ansible/ansible.cfg
configured module search path = [u'/usr/lib/python2.7/site-
packages/ansible/modules/extras',... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
contrib/inventory/proxmox.py
##### ANSIBLE VERSION
ansible 2.3.0.0
config file = .../moon-ansible.windows/ansible.cfg
configured module search path = Default w/o overrides
python version = 2.7.9 (default, Jun 29 2016, 13:08:31) ... | 1 |
From @weaseal on 2016-12-02T01:49:18Z
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
component: ec2_ami
##### ANSIBLE VERSION
$ ansible --version
/usr/lib64/python2.6/site-packages/cryptography/__init__.py:26: DeprecationWarning: Python 2.6 is no longer supported by the Python core team,... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
ec2_ami module
##### ANSIBLE VERSION
ansible 2.3.0.0
config file = /home/user/deployment/ansible/ansible.cfg
configured module search path = Default w/o overrides
python version = 3.4.2 (default, Oct 8 2014, 10:45:20) [GCC 4.9.... | 1 |
Playwright transpiles test files with Babel. However, by default, Babel reads
browserslist config although Playwright actually doesn't need it. This
introduces conflicts when the root project uses browserslist.
For example, when the package.json contains:
"browserslist": [
"chrome 113"
... |
### System info
* Playwright Version: 1.31.2
### Source code
* I provided exact source code that allows reproducing the issue locally.
Repo
name: Playwright Tests
on:
push:
branches:
- main
jobs:
test:
timeout-minutes: 60
runs-on: ubunt... | 0 |
I made a simple example script to showcase what I experienced
import requests
import time
print('About to do a request that will timeout')
start_time = int(time.time())
try:
response = requests.get('http://www.google.com:81/', timeout=4)
except requests.exceptions.Reque... |
I wanted to install using pip and it gives me the following error:
PS C:\Users\bla> pip install requests
Downloading/unpacking requests
Real name of requirement requests is requests
Downloading requests-0.14.2.tar.gz (361Kb): 361Kb downloaded
Running setup.py egg_info for package ... | 0 |
To reproduce, create the following three files:
testit.go
package testit
extern_test.go:
package testit_test
import (
"code.google.com/p/rog-go/testit"
)
func init() {
testit.Register()
unuse... |
hi,
with the upcoming go-1.5 and the import of (a modified version of) the
x/tools/go/types package into the stdlib, `golang.org/x/tools/go/loader` needs
to be updated.
the following program will fail to compile:
package main
import (
"fmt"
"go/build"
"go/token"
... | 0 |
* VSCode Version:
* 0.10.12-insider
* Commit: `ef2a1fc`
* Date: 2016-03-21T11:33:38.240Z
* Shell: 0.35.6
* Renderer: 45.0.2454.85
* Node: 4.1.1
* OS Version:
* Windows 7 64bit
Steps to Reproduce:
1. Use Command Pallet in Japanese
 which results
in selecting the expression twice which then introduces ambiguity resulting in
the query engine returning an error.
### Expected results
The SORT BY metric shoul... |
The workflow docker-ephemeral-env.yml is referencing action aws-
actions/amazon-ecr-login using references v1. However this reference is
missing the commit 57206dc28c379a6eebdce44c592109d2e97e031d which may contain
fix to the some vulnerability.
The vulnerability fix that is missing by actions version could be rela... | 0 |
* VSCode Version: 1.0
* OS Version: Windows 10, rs1_lkg selfhost
Steps to Reproduce:
1. Turn editor.renderWhitespace on.
2. Open a file with significant whitespace not at the start of a line.
Compare Visual Studio Code vs. Sublime Text with the same file:

Here I cannot figure out how the help text is formatted unless I use the
keyboard.
| 1 |
404 on the PDF documentation.
|
When I create a new blueprint, the template_folder is added to a Flask defined
path, and the precedence to locate a template is
1. `app/templates/` first
2. `app/my-blueprint/templates/` second
I understand this makes sense from the point of view of a developer who's
trying to reuse the same blueprints on many ... | 0 |
## Bug Report
**For English only** , other languages will not accept.
Before report a bug, make sure you have:
* Searched open and closed GitHub issues.
* Read documentation: ShardingSphere Doc.
Please pay attention on issues you submitted, because we maybe need more
details.
If no response **more than 7 da... |
## Bug Report
### Which version of ShardingSphere did you use?
I am using the 4.0.0-RC2 build by myself from the source
【BTW】the build fail in openjdk, success only in Oracle jdk. it seems the build
use a tool only available in Oracle jdk
### Which project did you use? Sharding-JDBC or Sharding-Proxy?
Sharding-... | 1 |
**Is this a request for help?** (If yes, you should use our troubleshooting
guide and community support channels, see
http://kubernetes.io/docs/troubleshooting/.):
No.
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.):
... |
**Is this a request for help?** (If yes, you should use our troubleshooting
guide and community support channels, see
http://kubernetes.io/docs/troubleshooting/.):
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.):
* p... | 0 |
So I downloaded the new RC2 from the customize section, very excited to try
the new grid with the col-xs and col-md on it. I have been pulling my hair why
it doesn't work. So I searched the css file with col-xs and it turns out it
doesn't exist. :(
Please correct me if it is just me.
|
When using the customizer, the column classes appear to be the ones from RC1.
Not sure if anything else wasn't updated, as this was simply the most
noticeable omission.
| 1 |
**I'm submitting a ...** (check one with "x")
[x] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
... |
**I'm submitting a ...** (check one with "x")
[x] bug report
[x] feature request
**Current behavior**
New router does not work with ngUpgrade. There is no way to specify a primary
app component as in the beta router. And even when you try to do the same, you
get an error that states `getAll... | 0 |
I'd like the ability to extend the default playwright `tsconfig.json` beyond
just the currently allowed `compilerOptions` of `baseUrl` and `path`.
I am using playwright to test a charting library in a mono repo and I'd like
the ability to import constants from the library to facilitate testing.
However, any typescri... |
### System info
* Playwright Version: 1.28.1
* Operating System: Win 10
* Browser: Chrome
* Coding Lang: Java
**Steps**
On the page:
* Make sure the element in question is not displayed visually and by running the code:
`page.frameLocator("frame1Selector").frameLocator("frame2Selector").frameLocator("... | 0 |
## Problem Description
onFocus not firing on select element, I essentially have this except it has
menu elements inside of it:
`<SelectField value={value} onFocus={() => console.log('I am focused')} />`
and when I click in the select, no event is being fired.
## Versions
* Material-UI: v0.15.0-beta.2
* Rea... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
In v0.x the Autocapitalize property would prevent mobile device keyboards from
capitalizing the first letter - after upgrading to 1.x this does not seem to
be the case
## Current Behavior
The Autocapita... | 0 |
Describe what you were doing when the bug occurred:
I have a large form with multiple checkboxes. I am trying to see the
performance of my value change for the checkboxes. When I record my
interaction that works but when I click on the performance timeline commits in
the extension it fails with the bellow stack
* *... |
**Do you want to request a _feature_ or report a _bug_?**
BUG
**What is the current behavior?**
App doesn't render in IE11 and below.
**If the current behavior is a bug, please provide the steps to reproduce and
if possible a minimal demo of the problem viahttps://jsfiddle.net or similar
(template: https://jsf... | 0 |
A number of us have shown interest in implementing seq2seq models in Keras
#5358, so I'm creating a central issue for it. We can discuss design decisions
and prevent duplication of work here.
There are a number of existing pull requests related to seq2seq models:
* #5559 (Merged) Specify States of RNN Layers Symb... |
I used code below to combine 2 mobile-net model. After combine i save model as
combined.hdf5.
Keras version: 2.2.0 Using TensorFlow backend.
TensorFlow version: 1.8.0
model_A = load_model('mobilenet_A.hdf5', custom_objects={'relu6': mobilenet.relu6})
model_B = load_model('mobilenet_B.hdf5', cus... | 0 |
hello i am new to this so my issue is i wanna work with flutter but i wanna do
it offline but evry time i disconnect from intrenet i cant creat a new project
i found online the commande --offline but i dont realy know where to add it
ps:i am using windows
|
Presumably after having done `flutter cache populate` or some such while
online.
Right now there are a bunch of cases where we assume online. I think this is
far from critical, but there are still times when people are offline and would
like to do development. :)
| 1 |
After the version r74 the BoxHelper does not work for sprites - ( Sprite &
SpriteMaterial) because the BoxHelper uses the function Box3 and that function
needs geometry to calculate the min, max....
Before and r74 the Sprite had:
geometry: THREE.BufferGeometry
geometry.type: "BufferGeometry"
But after r74 the ge... |
glTF handles nodes with their indices (`nodeIndex` or `nodeId` in
`GLTFParser`). So some extension data in glTF-based file formats (e.g. bone
mapping in VRM) depend on node indices.
However, it seems that objects loaded by current `GLTFLoader` don't have any
indices info. We can get complete node data from `data.par... | 0 |
I can not download the version of the bootstrap 3
https://codeload.github.com/twbs/bootstrap/zip/v3.0.0-rc1-dist
|
The affix component is not working on the doc pages it stays on top of the
page.
| 0 |
**Migrated issue, originally created by Michael Bayer (@zzzeek)**
will seek reporting this upstream as this likely breaks the SQL standard:
CREATE TABLE ck_cons_test (
-> b1 INT NULL,
-> b2 INT NULL,
-> CHECK (b1 IN (0, 1)),
-> CHECK (b2 IN (0, 1, NULL))
-> )... |
**Migrated issue, originally created by Michael Bayer (@zzzeek)**
https://mariadb.com/kb/en/library/mariadb-1029-changelog/
This fixes the CHECK constraint issue
https://jira.mariadb.org/browse/MDEV-13596 that ruins booleans for us, and
additionally the DROP issue https://jira.mariadb.org/browse/MDEV-11114 was
fixe... | 1 |
The PCG generator used by Numpy has a significant amount self-correlation.
That is, for each sequence generated from a seed there is a large number of
correlated, nonoverlapping sequences starting from other seeds. By
"correlated" I mean that interleaving two such sequences and testing the
result you obtain failures ... |
I wanted to build the PDF documentation (using Sphinx 2.2.1 and current
versions of scipy, matplotlib, etc from `pip install` and using numpy from git
at `b83f10e`) and was disconcerted that it actually succeeded 😉
Turns out after checking that
https://github.com/numpy/numpy/blob/master/doc/source/conf.py uses remo... | 0 |
I got a warning :
"An empty string has been transmitted to « getElementById() ». @
jquery.min.js:4"
When I click somewhere on the document.
I got only jQuery 2.0.3 and bootstrap 3.0.3 loaded.
|
I am Using Firefox 22.
Reproduce:
* Open http://getbootstrap.com/components/
* The error is visible in the console when clicking anywhere in the page but a dropdown menu.
I could track down the error to the `clearMenus` call, which in turn calls
`getParents` where the error finally happens.
In `getParents` th... | 1 |
Fueled by the success of React, several alternative virtual DOM
implementations have emerged, such as Riot, Mithril, Mercury, and virtual-dom.
Atom recently integrated Babel into core, and one of our major goals with core
is to be as framework-agnostic as possible. One area where it would be nice to
be agnostic is i... |
The JSX transform is currently coupled to React, but other libraries could
potentially make use of the syntax. There are libraries like jsx-transform
(https://github.com/alexmingoia/jsx-transform) that make the transform more
generic and allow you to specific how the output should look:
/** @jsx React.... | 1 |
In the `material-ui-next` example, if you add a subcomponent to the page which
uses the `withStyles` HOC, changing any of the style properties breaks HMR.
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
When changing stylesheet properties in a subcom... |
I'm trying to add a custom Social component to my site that adds several
relevant meta tags, but it's setting the `<title>` to an empty string. I have
the title defined in `_document.js` and don't change it anywhere else in the
codebase. I'm running the Canary version of Next.js
import Document, { ... | 0 |
To search for a package / theme in the settings tab, I have to type in the
search query then click (if looking for a package) the themes button, then the
package button to have Atom search for a package matching that string.
|
Saw a tweet that the search for new packages doesn't work.

From the gif it seems that the first search was successful, otherwise there
would be a bigger gap after the input. Search term was probably `set`.... | 1 |
## Summary
Installing numpy on aarch64 via pip using command "pip3 install numpy" tries
to build wheel from source code
## Problem description
Numpy don't have wheel for aarch64 on PyPI repository. So, while installing
numpy via pip on aarch64, pip builds wheel for same resulting in it takes more
time to install n... |
Manylinux2014 got released with support for wider selection of architectures:
aarch64, arm32, ppc64le, s390x. Are there plans to use it for releasing wheels
for other architectures than x86-64/i686?
Would cut "pip install numpy" times A LOT of aarch64 platform.
| 1 |
On Mac OS X, you can change the text of the primary "OK" button in open and
save dialogs by providing a "prompt":
https://developer.apple.com/library/mac/documentation/Cocoa/Reference/ApplicationKit/Classes/NSSavePanel_Class/index.html#//apple_ref/occ/instp/NSSavePanel/prompt
It'd be great to make this an option on ... |
A Choose dialog is just like an Open dialog, but not only does it have a
custom title, it also has a custom name for the “Open” button. Two examples
where it is helpful:
* choosing a directory where downloaded files should be saved – you “Choose” the directory
* using a dialog to “Import” a file in a different f... | 1 |
Q | A
---|---
Bug report? | no
Feature request? | yes
BC Break report? | no
RFC? | yes
Symfony version | 3.3.x
Currently, when you want to inject all services with a specific tag you have
to write your own compiler pass as described here. Additionally, one has to
use method calls instead of injecting t... |
Similar issue to (in the sense of having a similar context) than #11460
In Drupal we have a lot of tagged services which are injected into a single
one. When we started most of them had custom Compiler Passed, but than we
realized that we can easily extract that into a common service:
This would be the "collector" ... | 1 |
### System information
* **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : N/A
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Docker nightly
* **TensorFlow installed from (source or binary)** : Docker nightly
* **TensorFlow version (use comm... |
The Golang api WriteContentsTo can be used to writes the serialized contents
of a tensor to io.Writer, where the tensor is built from golang scalars,
slices, and arrays.
Yet there's not a Golang API to serialize data into tf.Example
protos(tfrecords).
For example, when i want serialize a libsvm into tf.Example prot... | 0 |
Applying filter on the box plot didn't update the view .
### Expected results
Should update box plot view after running query
### Actual results
Box plot only updates after saving the view.
#### Screenshots
If applicable, add screenshots to help explain your problem.
#### How to reproduce the bug
1. Create ... |
When following the standard install instructions, example datasets are
installed. If a new user is assigned the role 'Alpha', they are able to view
the database, tables, slices and dashboards. If a new role is created by
duplicating the Alpha role (e.g. 'Alpha_copy'), and the new user assigned this
role instead, then... | 0 |
What do you think about returning promises from transforms? I have a case
where I need to perform some async operation in a transform.
|
I'm trying to replicate a working auth request with axios (currently
implemented using reqwest). I've read through #167 and #97 and have gotten
close, but still not quite there.
Here's a working example using reqwest.

SUMMARY and
##### SUMMARY
Inconsistent behavior of when statement
##### ... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
when / when not conditional
##### ANSIBLE VERSION
From devel branch:
ansible 2.5.0 (devel 34206a0402) last updated 2018/01/08 13:39:51 (GMT -400)
config file = None
configured module search path = ['/home/myuser/.ansible/plugins/modu... | 1 |
Before, a very nice white with shadows button was generated when using the
"btn" class without any other class like "btn-primary" for example.
Now, in BS3, it is gone.
Please put it back.
Same goes with all input-x sizes, badge colors and many many more. I think the
purpose of a new BS3 version should be adding ne... |
I suppose I could have posted in the BS3 thread, but at some point individual
topics about BS3 need to have their own thread.
**Buttons**
* I don't think the hover colour change is drastic enough. On all but the green button, I can barely discern any colour change. I think the change should be more obvious - espe... | 1 |
在“Pre-instantating singletons in
org.springframework.bean.factory.support.DefaultListableBeanFactory@30d94ae4:”之后:一直循环报这个上面的title:
即:[Finalizer] WARN in
[com.alibaba.dubbo.config.ReferenceConfig$1.finalize(ReferenceConfig.java:106)]
-[DUBBO] ReferenceConfig(null) is not DESTROYED when FINALIZE,dubbo version
2.5.3 ... |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.6
* Operating System version: docker
* Java version: jdk8
### Steps to reproduce this issue
... | 0 |
Go spec says:
> For real and imag, the argument must be of complex type, and the return type
> is the corresponding floating-point type: float32 for a complex64 argument,
> and float64 for a complex128 argument. **If the argument evaluates to an
> untyped constant, it must be a number, and the return value of the fu... |
package main
const _ int = real(10i)
=>
$ go build x.go
# command-line-arguments
./x.go:2: cannot use real(10i) (type float64) as type int in const initializer
(same for use of imag instead of real).
It appears that real and imag always produce a float32 or float64... | 1 |
## Bug report
The PDF logo doesn't look quite right, viewed in Adobe Acrobat, Preview, and
Google Chrome (on macOS). If you look closely at the center, there are some
extra features there that don't show up in, for instance, the svg.
https://github.com/matplotlib/matplotlib/blob/master/lib/matplotlib/mpl-
data/imag... |
matplotlib.pyplot.spy does not work correctly for sparse matrices with a large
number of entries (>= 2**32). I would guess it has something to do with the
value range of int32.
An example that reproduces the bug is:
import numpy as np
import scipy.sparse
import matplotlib
matplotlib.use('A... | 0 |
Using babel 6.1.2, the following js:
export default {}
is transpiled to:
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = {};
using the following command line
babel --presets es2015 --plugins transform-... |
Let's say we have the following very simple code:
const a = 3;
export default a;
Pre babel 6, it would compile into this:
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
var a = 3;
exports["default"] = a;
module.export... | 1 |
For example, I have a playbook named remotesetup.yml and I run it from the
command line like that:
ansible-playbook remotesetupp.yml -K
It will ask for the sudo password even if the file doesn't exist (I made a
typo, two p at the end).
In the same way, if there's a yaml syntax error in the playbook it will still
... |
Let met present you the following example :
sandboxy.yml playbook
* * *
* hosts: backup
sudo: True
sudo_user: david
gather_facts: False
* hosts: main
sudo: True
sudo_user: foofoo
gather_facts: False
When I run ansible-playbook sandbox.yml -K
It correctly asks me for the first sudo password but t... | 1 |
**Kerboriou christophe** opened **SPR-4534** and commented
the AxisBeanMappingServicePostProcessor don't support the array type. because
it use only the BeanSerializatorFactory and BeanDeserializatorFactory.
Or for using array with axis, the good serializator is
ArraySerializatorFactory and for deserializator is ... |
**Kerboriou christophe** opened **SPR-4534** and commented
the AxisBeanMappingServicePostProcessor don't support the array type. because
it use only the BeanSerializatorFactory and BeanDeserializatorFactory.
Or for using array with axis, the good serializator is
ArraySerializatorFactory and for deserializator is A... | 1 |
java.lang.Throwable: Explicit termination method 'end' not called
at dalvik.system.CloseGuard.open(CloseGuard.java:223)
at java.util.zip.Inflater.(Inflater.java:106)
at com.android.okhttp.okio.GzipSource.(GzipSource.java:62)
at com.android.okhttp.internal.http.HttpEngine.unzip(HttpEngine.java:473)
at
com.an... |
**Glide Version** :
4.6.0
**Integration libraries** :
implementation 'com.github.bumptech.glide:glide:4.6.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.6.0'
**Stack trace / LogCat** :
E AndroidRuntime: java.lang.NoClassDefFoundError: Failed resolution of: Lco... | 0 |
For small structs/enums (size <= `uint`) we currently prefer to pass them as
immediate values (good) but unlike clang we don't "cast" them to an
appropriately sized integer type but pass them around as first class
aggregates (not so good).
While LLVM supports the usage of FCAs, the optimizations largely depend on
th... |
_Version of Rust_ : rustc 0.13.0-nightly (`c894171` 2015-01-02 21:56:13
+0000)
_Operating system_ : Linux 3.16.0-4-686-pae #1 SMP Debian 3.16.7-ckt2-1
(2014-12-08) i686 GNU/Linux
When the associated `Target` type is not defined in an `impl Deref`, this
leads to an internal compiler error.
Here is an example:
... | 0 |
I think this 1rem=10px is the defacto standard in the industry by now? You
operate with a different scale, 1 rem = 16px?
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
1 rem = 10 px when scaling the page
## Current Behavior
1 rem =16px
This is t... |
## Summary
I would love to see cursor: 'not-allowed' for disabled button.
http://www.material-ui.com/#/components/raised-button . It's not possible to
make it work nicely with conditional inline react styles "style={cursor:
'disabled'}". I think it should be default behavior for disabled buttons
* [x ] I have sea... | 0 |
When I am writing a declaration file, I found it really frustrating repeating
the inherited method that returns the instance itself for a correct return
type.
E.g. for animation library GSAP, many classes are inherited from class
`Animation`, I have to repeat almost every method to update return type
`Animation`... |
The early discussions about generics had this feature outlined, but it never
made it into the final version for some reason. Meanwhile, it would be
extremely helpful in some cases. The use case that it most dear to my heart is
Knockout:
interface Observable<T> {
<U>( this: U, value: T ): U;
... | 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.4
* Operating System version: Macos 10.14
* Java version: 1.8.0_181
* SpringBoot 2.0 webflu... |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.8
* Operating System version: ANY
* Java version: 8
### Steps to reproduce this issue
1. ... | 0 |
**Do you want to request a _feature_ or report a _bug_?**
Request a feature, even though it migth be there already but I just don't know
how to set it up.
**What is the current behavior?**
Basically I have `webpack.config.js` stored in different directory, not the
child or parent, but sibling directory.
I'm usin... |
**I'm submitting a bug report**
**Webpack version:** 2.1.x
**Please tell us about your environment:**
Windows 10
**Current behavior:**
cannot specify options
output.devtoolModuleFilenameTemplate: "[resource-path]",
output.devtoolFallbackModuleFilenameTemplate: "[resource-path]?[hash... | 0 |
I'm running on a CentOS ( release 7.4.1708 ) Linux environment that is on a
Linux-based HPC. Python version 2.7.
I'm running a script to visualize TF-IDF values using the Isomap algorithm (
incorporating sci-kit learns) and then using a 3D scatterplot to visualize
possible relationships between tfidf values of a cor... |
In my AWS Ubuntu 14.02 instance I installed the matplotlib dependencies and
then via pip I installed matplotlib:
sudo apt-get build-dep python-matplotlib
sudo pip install matplotlib
sudo pip freeze:
matplotlib==1.4.0
in a brand new file plotting1.py I wrote:
# !/usr/bin/python
from pylab import *
plot([1,2,... | 1 |
Works with a basic example:
await Deno.serve({ port: 8000 }, () => new Response());
It occurs when making a `POST` request when behind a `next-http-proxy-
middleware` as follows:
import type { NextApiRequest, NextApiResponse } from "next";
import httpProxyMiddleware from "next-http-... |
Deno Flash server crashes when it serves simple requests. Here is the full
content of my `src/main.ts` file:
Deno.serve({
handler(request) {
console.log(request);
return new Response("Hello world");
},
hostname: "0.0.0.0",
port: 8889,
});
This is the request... | 1 |
Ported from internal gates failures:
The following five tests are failing on Core editions:
DimensionsTests::TestSetConsoleScreenBufferSize#metadataSet2
DimensionsTests::TestSetConsoleScreenBufferSize#metadataSet1
DimensionsTests::TestSetConsoleScreenBufferSize#metadataSet0
Dimensions... |
Two things I suggest to create in the feature of Windows Terminal V0.4:
**1.** Ctrl + Backspace: you know when you write the cmd's you can delete the
cmd's (Word by Word), but your terminal can't do that, your terminal delete
(Char by Char).
**2.** Ctrl + Space (Windows Powershell): if you write cmd's in the orig... | 0 |
When using the Symfony Form Type "time", e.g.
`$builder->->add('fromTime', 'time', [ 'widget' => 'choice', 'attr' =>
['class' => 'form-control'], 'model_timezone' => "UTC", 'view_timezone' =>
"Europe/Berlin" ])`
The "reverseTransform" in "DateTimeToArrayTransformer" converts the form input
back to the model_timezon... |
As discussed in #7187, these options don't make sense for these types.
| 1 |
### Bug report
**Bug summary**
Bar chart with Axes3d does not correctly set the log z scale. There is a note
in the doc: here saying this was added in 1.1.0. (And also asks to report bugs
:-) )
**Code for reproduction**
from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import
%matplot... |
Original report at SourceForge, opened Fri Jun 10 12:29:24 2011
If you enable a log scale when doing a 3D scatter plot, nothing is created and
the program crashes. Attached is the error output.
You can easily reproduce this by taking the example scatter3d_demo.py and
adding the line "ax.set_xscale('log')".
### Sou... | 1 |
### 💻
* Would you like to work on a fix?
### How are you using Babel?
@babel/cli
### Input code
I'm using the Babel CLI on the .js file generated by
https://github.com/vuejs/devtools/blob/main/packages/shell-
electron/src/backend.js once Webpack have been run. The resulting source file
contains this :
... |
## Bug Report
**Current behavior**
* REPL
import Component from '@glimmer/component';
import intersection from 'lodash/intersection';
export default class FooComponent extends Component {
async foo() {
intersection(...(await Promise.all([])));
}
}
**Expected be... | 1 |
go version:
go version devel +4971493b0e14 Tue Oct 01 23:44:20 2013 -0400 darwin/amd64
the code:
https://gist.github.com/mitchellh/3883097d9d57fccbfb88
(the code actually works fine on play.golang.org, I'm not sure what changed in Go 1.2
but on 1.2 this panics)
The ... |
Let `foo.go` be:
package main
// Foo does nothing.
func Foo() {}
Running `gorename -offset foo.go:#40 -to Bar` does update the function
definition, but not the comment, as such:
package main
// Foo does nothing.
func Bar() {}
This would be the desired output:
... | 0 |
**Dave Syer** opened **SPR-6366** and commented
Cannot import bean definitions using classpath*: resource location. Somewhere
between RC1 and RC2 the behaviour of <import resource="classpath*:..."/>
changed so that it is now treated as a relative resource, where clearly it is
not.
* * *
**Affects:** 3.0 RC2
**Is... |
**Stepan Koltsov** opened **SPR-8257** and commented
@Configuration
public class TmpConfig {
@PostConstruct
public void init() {
System.out.println("TmpConfig.init");
}
@Bean
public PropertyPlaceholderConfigurer propertyPlaceholderConfi... | 0 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
**Dialog With Date Picker Example:** if Date Picker is opened and on Esc
clicked should close the Date Picker, not the Dialog.
## Current Behavior
If Date Picker is opened and Esc button is clicked Date... |
TextField with type="datetime-local" doesn't fit in TableCell, if Table has a
fixed layout. So, it isn't possible to open the date editor.
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
It should be possible to open a date editor.
## Current Be... | 0 |
##### System information (version)
OpenCV => 4.2.5
Operating System / Platform => Android 10
Compiler => Visual Studio 2019 / Android Studio
##### Detailed description
When running a "DetectTextRectangles" from a "TextDetectionModel_EAST"
it throws the exception:
Org.Opencv.Core.CvException: 'cv::Excep... |
##### System information (version)
* OpenCV => 4.5.2
* Operating System / Platform => Windows 64 Bit:
* Compiler => Visual Studio 2017
##### Detailed description
java app crash when calling init(Mat image, Rect boundingBox) method of video
module Tracker.java.
The following code is generated by gen_java.py.... | 1 |
Following behaviour:
import pandas as pd
# version '0.12.0'
!wget -O 'Vertikale_Netzlast_2013.csv' 'http://www.50hertz.com/transmission/files/sync/Netzkennzahlen/Netzlast/ArchivCSV/Vertikale_Netzlast_2013.csv'
df = pd.read_csv('Vertikale_Netzlast_2013.csv', header=6, sep=';', parse_dates=[[... |
I have what appears to be a valid `Series` with a time series index as
follows:
In [41]: inactive
Out[41]:
2010-06-10 20:43:07 37.2
2010-06-21 06:37:28 0.0
2009-07-20 06:53:38 0.0
2012-05-17 01:50:13 27.4
2009-07-27 21:09:15 0.0
2010-05-04 09:06:54 0.0... | 1 |
The following code fails to compile due to the two adjacent `<`.
trait Test {
type X;
fn foo() -> Option<<Self as Test>::X>;
}
testcase.rs:4:23: 4:25 error: expected `;` or `{`, found `<<`
testcase.rs:4 fn foo() -> Option<<Self as Test>::X>;
... |
### STR
#![feature(associated_types)]
trait Trait {
type Type;
// OK
fn method() -> <Self as Trait>::Type;
// Can't parse
fn method() -> Box<<Self as Trait>::Type>;
}
fn main() {}
### Output
ai.rs:9:23: 9:25 error: expec... | 1 |
**Migrated issue, originally created by Michael Bayer (@zzzeek)**
that is, all the functions in
http://www.postgresql.org/docs/9.4/static/functions-json.html need to be
possible without building subclasses of functions.
|
**Migrated issue, originally created by Frazer McLean (@RazerM)**
As mentioned in #3746, Windows wheels on PyPI would be useful.
I quickly set up wheel building on AppVeyor as a proof of concept. It's using
my GitHub repository but it supports Bitbucket too.
https://ci.appveyor.com/project/RazerM/sqlalchemy/build... | 0 |
**Dave Syer** opened **SPR-8252** and commented
Allow ref= as well as <bean/> for mvc:interceptor/. It's a nice feature (to
get all handlers injected with the same interceptors), but it makes the
interceptors hard to override.
* * *
**Affects:** 3.0.5
2 votes, 2 watchers
|
**Marten Deinum** opened **SPR-6996** and commented
Currently it is quite hard to reuse beans with the mvc:interceptors namespace.
Interceptors must be specified as inner beans to mvc:interceptors or
mvc:interceptor, it would be nice if mvc:interceptor would have a ref element
to reference a HandlerInterceptor inst... | 1 |
Sorry I can't give more context as to how/when this happened, just got picked
up by our crash tracker
Caused by: java.lang.NullPointerException
at
com.bumptech.glide.manager.RequestTracker.clearRequests(RequestTracker.java:80)
at com.bumptech.glide.RequestManager.onDestroy(RequestManager.java:190)
at
com.bumpt... |
Hi !
use v3.5
e.manager.RequestTracker.pauseRequests (SourceFile:57)
com.bumptech.glide.RequestManager.pauseRequests (SourceFile:151)
com.bumptech.glide.RequestManager.onStop (SourceFile:181)
com.bumptech.glide.manager.ActivityFragmentLifecycle.onStop (SourceFile:55)
com.bumptech.glide.manager.SupportRequ... | 1 |
# Checklist
* I have verified that the issue exists against the `master` branch of Celery.
* This has already been asked to the discussions forum first.
* I have read the relevant section in the
contribution guide
on reporting bugs.
* I have checked the issues list
for similar or identical bug reports... |
# Checklist
* I have read the relevant section in the
contribution guide
on reporting bugs.
* I have checked the issues list
for similar or identical bug reports.
* I have checked the pull requests list
for existing proposed fixes.
* I have checked the commit log
to find out if the bug was alrea... | 0 |
Hello to all,
on my Windows 10, I installed tensorflow 1.5 and it works, but if I try to
upgrade to tensorflow 1.7 it don't works, appeare the error:
**ImportError: DLL load failed
ModuleNotFoundError: No module named '_pywrap_tensorflow_internal'**
Microsoft C++ Runtime is updated
If I downgrade to the versi... |
As announced in release notes, TensorFlow release binaries version 1.6 and
higher are prebuilt with AVX instruction sets. This means on any CPU that do
not have these instruction sets either CPU or GPU version of TF will fail to
load with any of the following errors:
* `ImportError: DLL load failed:`
* A crash w... | 1 |
#### Describe the workflow you want to enable
The following is a proposal for an additional feature_selection method. I
would like to propose a simple feature selection function that removes highly
correlated feature columns using the Pearson product-moment correlation
coefficients. The threshold that needs to be ex... |
I am updating some code in `imbalanced-learn` to use the estimator tag. In
some way, I was able to add a new entry in the `_DEFAULT_TAGS` and use the
implementation of `_safe_tags`.
I have the following use case:
_DEFAULT_TAGS = {'sample_indices': False}
class BaseClass:
...
d... | 0 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
win_updates
##### ANSIBLE VERSION
$ ansible --version
ansible 2.4.0 (devel bfdf85e002) last updated 2017/07/26 15:31:51 (GMT -500)
config file = None
configured module search path = [u'/Users/tanner/.ansible/plugins/modules', u'/u... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
Module: win_updates
##### ANSIBLE VERSION
ansible 2.2.1.0
config file = /opt/uss/ansible/config/2.2.1.cfg
configured module search path = ['/usr/share/ansible']
##### CONFIGURATION
No special configuration options.
##### OS / ... | 1 |
## Bug Report
**For English only** , other languages will not accept.
Before report a bug, make sure you have:
* Searched open and closed GitHub issues.
* Read documentation: ShardingSphere Doc.
Please pay attention on issues you submitted, because we maybe need more
details.
If no response anymore and we c... |
## Bug Report
**For English only** , other languages will not accept.
Before report a bug, make sure you have:
* Searched open and closed GitHub issues.
* Read documentation: ShardingSphere Doc.
Please pay attention on issues you submitted, because we maybe need more
details.
If no response anymore and we c... | 0 |
Example: http://getbootstrap.com/javascript/#modals
1. Click "launch demo modal"
2. Close window by clicking X
3. Click "launch demo modal" again
4. Close window by clicking at black page area
5. Click "launch demo modal" again
6. Close window by clicking X and see bug
Browser: Mozilla/5.0 (Windows NT 6... |
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 |
**Describe the bug**
The recent transmission framebuffer is awesome 🎉 but I ran into a couple
issues:
* The aspect ratio of the transmission framebuffer is uncoupled from the current render target, creating x / y warping dependent on viewing dimensions
* Nearest sampling is used for magnification which create... |
Reposting #21000 (comment) so as to consolidate some remaining issues.
1. `webgl_loader_gltf_transmission` has the `transparent` property of each sphere to set to `false`. Is that what the loader should be doing? What should `transparent` be set to when `transmission` is non-zero?
2. After setting `transparent`... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.