text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
#![feature(unboxed_closures)]
use std::ops::Fn;
fn say(x: u32, y: u32) {
println!("{} {}", x, y);
}
fn main() {
Fn::call(&say, (1, 2));
}
rustc 1.0.0-nightly (44a287e6e 2015-01-08 17:03:40 -0800)
binary: rustc
commit-hash: 44a287e6eb22ec3c2a687fc1... |
Discovered this ICE in the rollup that I'm preparing:
fn main() {
let a: &fmt::Show = &1i;
format!("{:?}", a);
}
error: internal compiler error: static call to invalid vtable: VtableObject(VtableObject(object_ty=core::fmt::Show + 'static))
note: the compiler u... | 1 |
Presently the facetgrid accept:
row, col, hue : strings
Variables that define subsets of the data, which will be drawn on separate
facets in the grid.
Suppose I want to use a variable that it is not a column of my dataset, but
that it can be computed starting from that. What I need to do now is to add a
new colum... |
When the category you are mapping out to use as the hue in facetgrid contains
three items then they do not colour as they should, instead taking on a
grayscale when plotted using pyplot scatter. See attached code and image.
This issue was fixed for lmplot from Seaborn 0.6 to 0.7, but is still present
in the facetgri... | 0 |
Need to be able to CRUD namespace resources.
Do during or after the query-parameter -> namespace-in-path transition.
A namespace object just contains the name of the namespace, and no other data
that I can think of at this time.
An object cannot be created in a namespace unless the namespace object already
exists.... |
We only use the StatusReason consts defined in pkg/api/types.go.
Some of the constants are duplicated in api/types and
api/v1beta{1,2,3}/types.go while some are not.
Since StatusReason* constants defined in api/v1beta{1,2,3}/types.go are not
used anywhere, can we just delete them?
| 0 |
draw a line between two coordinates inside map , how to show multiple markers
with fit zoom levell in map
|
## Steps to Reproduce
Create a TabBarView with 3 RefreshIndicators children.
Run the app and after changing tabs a few times (5 to 10 times) you get a "
`Multiple widgets used the same GlobalKey`." error.
@override
Widget build(BuildContext context) {
final GlobalKey<RefreshIndicatorState... | 0 |
### Version
2.6.10
### Reproduction link
https://codepen.io/anon/pen/pXjBQq
### Steps to reproduce
1. Trigger the mousemove event in the result iframe of Codepen. The text "false" is changed to "true"
2. Compare the two `<progress>` elements. One is indeterminate and the other is not
### What is expected?
... |
### Version
2.5.17
### Reproduction link
https://codesandbox.io/s/986x7y34v4?expanddevtools=1
### Steps to reproduce
First of all, this is the first Issue I've created on this project. So I'll
take this opportunity to thank all of the contributors and maintainers for the
awesome and astonishing work they do for ... | 0 |
Sorry if this is a repeat/duplicate/similar, there are tons of issues when
using `limit` as the search term.
##### ISSUE TYPE
* Feature Idea
##### COMPONENT NAME
limit
##### ANSIBLE VERSION
ansible-playbook 2.4.0.0
config file =
configured module search path = [u'/Users/lynchg/.ansi... |
##### Issue Type:
* Bug Report
##### Ansible Version:
ansible 2.0.1.0
config file = /home/etienne/repo/ansible.cfg
configured module search path = Default w/o overrides
##### Ansible Configuration:
$ cat /home/etienne/repo/ansible.cfg
[defaults]
hostfile = /... | 0 |
We can now run tests under helgrind. For bonus fun we should be able to run
under thread sanitizer (a google-backed valgrind plugin) which does similar-
but-different things.
|
Currently, the following fails to compile:
struct Foo<T>;
impl<'a, T> Foo<&'a T> {
fn foo(&self) {}
}
impl<'a, T> Foo<&'a mut T> {
fn foo(&self) {}
}
The error:
<anon>:7:5: 7:21 error: duplicate definition of value `foo`
<anon>:7 fn foo(&self... | 0 |
Not sure if the problems go together, but I cant copy from atom and paste
somewhere else (ex: firefox). Also atom crashed sometime when pasting from
other place to atom and this is the screen that appears

* Pasting any text using Ctrl+v causes pasting text twice

|
**TypeScript Version:**
1.8.7
1.8.0
1.7.5
**Code**
{
"exclude": ["node_modules"]
}
**Expected behavior:**
Shouldn't build any `.ts` files in `node_modules`.
**Actual behavior:**
Builds files in `node_modules`. If `target: es6` I get lots of `SyntaxError`s
in node.
| 0 |
I think the dataset section in user guide (http://scikit-
learn.org/dev/datasets/index.html) is hard to follow. See the subsections:
5.1. General dataset API
5.2. Toy datasets
5.3. Sample images
5.4. Sample generators
5.5. Datasets in svmlight / libsvm format
5.6. Loading from exter... |
Here is an issue that I came across with Count Vectorizer and its use with
Column Transformer and Pipelines
https://stackoverflow.com/questions/54541490/sklearn-text-and-numeric-
features-with-columntransformer-has-value-error/57970935#57970935
I found a work around using by removing the column name to be processed... | 0 |
# Environment
Windows build number: 10.0.18362.239
Windows Terminal version (if applicable): 0.3
Relatively clean OS, Ubuntu and WSL installed.
# Steps to reproduce
1. Open the Terminal app
2. Close the Terminal app
Only happens when the terminal is closed and PS is the active tab. Does not
happen if Ubun... |
We have a job object for the conhost in PTY mode that is supporting the
connection on each tab. But this was because the conhosts weren't exiting.
However, conhosts should just exit when they have nothing to do.
This represents taking the job object off and figuring out what the actual
underlying issue is that is k... | 1 |
For example the following works fine:
## Box Sizing:
`_base.css`
But if I remove the ticks like this:
## Box Sizing:
_base.css:
Syntax highlighting no longer works for the text that follows
|
If in the markdown code there is a `*`, everything after that character will
have italic style.
I saw this recently in the GitHub diffs (e.g. this one):

![screenshot from 20... | 1 |
My issue is about scipy.special.owens_t not returning the correct value when
the second argument is infinity.
For example, scipy.special.owens_t(0,numpy.inf) should return 0.25, not 0.5.
It looks as if scipy.special.owens_t(x,numpy.inf) always returns twice the
value that it should do. Please see
https://en.wikiped... |
### Describe your issue.
Hello,
`owens_t(0, inf)` gives `0.5`. However `owens_t(a, inf)` is `atan(a)/(2*pi)` ,
so `owens_t(0, inf)` shoud give `0.25`.
### Reproducing Code Example
from scipy import special
from math import atan, pi, inf
special.owens_t(0,inf)
# 0.5
atan(inf)/2/p... | 1 |
### Version
2.6.8
### Reproduction link
https://codesandbox.io/s/wwoxp636jk
### Steps to reproduce
Add a click listener on window in a child component
### What is expected?
Before Vue 2.6, the click event was not propagated to the child component
because it was not created yet.
### What is actually happening?... |
### Version
2.6.0-beta.1
### Reproduction link
https://codepen.io/frlinw/pen/OreZMz
### Steps to reproduce
Click on "Click me"
### What is expected?
demo with v2.5.22 show the expected behavior:
https://codepen.io/frlinw/pen/XoLYMR
the "Dropdown" component should not be able to handle a click event which is
s... | 1 |
Hi,
I'm new to flutter. I just installed flutter on windows 10 pro, and runned
'flutter doctor'. It is exiting unexpectedly. When running in verbose mode the
output is:
c:\Tools>flutter doctor -v
[ +13 ms] [C:\Tools\flutter\] git rev-parse --abbrev-ref --symbolic @{u}
[ +71 ms] Exit code 0 f... |
Internal: b/155674981
When I use `GestureDetector` and put `behavior` = `translucent`, I cannot tap
on anything bellow it. Also when I use `GestureDetector` and put behavior lets
say `opaque` and have `RawMaterialButton` as a `child`, taps on button are
registered on `Button` but not on `GestureDetector` and expecte... | 0 |
Apologies if this has already been asked, couldn't find anything though. But
do you have the capability to utilize multiple objective functions, say a
"Split" similar to "Merge"? The goal would be to implement a model like the
one given here:
https://github.com/rbgirshick/fast-rcnn
That is, have a classifier and a ... | 0 | |
## ℹ Computer information
Version: 1.0.0
OS Version: Microsoft Windows NT 10.0.19041.0
IntPtr Length: 8
x64: True
Date: 08/12/2020 09:39:21
## 📝 Provide detailed reproduction steps (if any)
NA, Exception
### ✔️ Expected result
NA
### ❌ Actual result
Exception:
System.ObjectDisposedException: Cannot ... |
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 |
Hello,
I am trying to run two plugins at the same time however I get the following
`Cannot inherit from final class` error on startup and neo4j fails to startup.
2016-10-10 14:37:27.911+0000 INFO Starting...
2016-10-10 14:37:28.403+0000 INFO Bolt enabled on localhost:7687.
2016-10-10 14:37:3... |
@tomasteicher: 'ExecutionEngine->execute method can accept params for
inserting parameters into cypher query. It would be grate if it would be
possible to pass also relationships types in this way.
For example
params.put( "relationshipType", KNOWS );
Value of property (KNOWS here) could be RelationshipType or Stri... | 0 |
### Preflight Checklist
* [x ] I have read the Contributing Guidelines for this project.
* [x ] I agree to follow the Code of Conduct that this project adheres to.
* [x ] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Vers... |
### Preflight Checklist
* I have read the Contributing Guidelines for this project.
* I agree to follow the Code of Conduct that this project adheres to.
* I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 7.... | 1 |
Q | A
---|---
Bug report? | yes
Feature request? | no
BC Break report? | no
RFC? | no
Symfony version | 2.8+
If I register a custom expression language function via a class implementing
`ExpressionFunctionProviderInterface` and tagging it with
`security.expression_language_provider` then I cannot use t... | Q | A
---|---
Bug report? | yes
Feature request? | no
BC Break report? | no
RFC? | no
Symfony version | 3.2.9
It's exactly the same problem of this issue : #21305
Except i using it in securty.yml allow_if and i got :
Error: The function "test" does not exist around position 1.
With @Security annota... | 1 |
In `ui.window.sendPlatformMessage`, we should have a way to pass an error
callback.
Once we had that, in `PlatformMessages._sendPlatformMessage`, we could wire it
up so as to call `Completer.completeError()`
| ERROR: type should be string, got "\n\nhttps://docs.flutter.io/flutter/services/HostMessages-class.html\n\nWe can use the Futures error handling API for this. Throwing a native\nexception crashes the app (on Android), so it's not a good way of handling\nerrors.\n\nThe HostMessages API should complete with an error if you send a message to\nnative code and a handler isn't installed. (Right now on Android it completes\nwith null and on iOS it never completes.)\n\n" | 1 |
Hello
I tried to index an double array {1, 2, 3, 4, 5} and let ES automatically
detect the type. Then I wrote a plugin to get the value as follows
ScriptDocValues docHashValues = (ScriptDocValues) doc().get("array");
final List tmp = ((ScriptDocValues.Doubles) docHashValues).getValues();
However I found the tmp ... |
**Elasticsearch version** :
alpha5
**Plugins installed** : []
None
**JVM version** :
java version "1.8.0_71"
Java(TM) SE Runtime Environment (build 1.8.0_71-b15)
Java HotSpot(TM) 64-Bit Server VM (build 25.71-b15, mixed mode)
**OS version** :
OSX
**Description of the problem including expected versus... | 0 |
Tested with Firefox last stable & developer edition (Aurora).
If i open a new tab or one with content, and i drag it away (to open a new
window), and move the cursor over Atom it closes.
Here the shell output:
mfkinder@wk-boe001:~$ atom
mfkinder@wk-boe001:~$ [14953:0213/170206:ERROR:browser_main... |
Atom Version: 0.129.0
Video of me triggering the bug: http://ara.sh/private/atom-crash.ogv
Reproducible every time.
Environment:
Ubuntu 14.04 (all updates installed as of filing this issue)
Unity desktop environment
Repro steps:
1. Launch atom from the Terminal
2. Open a Firefox window (or use an exist... | 1 |
**System information**
* Have I written custom code (as opposed to using a stock example script provided in TensorFlow): No
* OS Platform and Distribution (e.g., Linux Ubuntu 16.04): macOS 10.14.5
* TensorFlow installed from (source or binary): `pip install tensorflow==1.14.0`
* TensorFlow version (use comma... |
Hi!
So far, I I have to say that TensorBoard is a really great tool to analyze the
training procedure.
However, I often find myself comparing various runs and wondering "wait, which
version of my code was that and which parameters did I use?".
Currently, the only way to "document" a Run is the name of the log di... | 0 |
key_1 = jax.random.PRNGKey(1)
key_2 = jax.random.PRNGKey(2)
print("output for key_1:", jax.random.randint(key_1, (), 0, 2**31))
print("output for key_2:", jax.random.randint(key_2, (), 0, 2**31))
yields
output for key_1: 0
output for key_2: 0
And indeed, the fun... |
* Check for duplicate issues.
* Provide a complete example of how to reproduce the bug, wrapped in triple backticks like this:
When run on colab w/ GPU runtime the following code (notebook),
import jax
import numpy as np
print(jax.__version__)
jax.scipy.linalg.sqrtm(np.random... | 0 |
[PowerToys Run] Clear Inputbox after Search
It would be nice to clear the Inputbox (Searchtext) after choosing a result.
It can be an option in settings menu to switch on or off.
|

as you can see it goes to the same window i searched before . I am not very
good at explaining i hope you can get what im trying to say
| 1 |
### Bug report
**Bug summary**
After upgrading to 3.0.0, colormaps added to images with
mpl_toolkits.axes_grid1.make_axes_locatable().append_axes overwrite the entire
image. This happens in a jupyter notebook with %matplotlib inline but not with
%matplotlib notebook. Also sometimes seen in scripts saving to .PNG (b... |
### Problem
As discussed in #23525, the legend treats every label as distinct and will
therefore display them even when visually indistinguishable.

### Proposed solution
@timhoffm raised the good point... | 0 |
##### Issue Type:
Can you help us out in labelling this by telling us what kind of ticket this
this? You can say:
* Bug Report
##### Ansible Version:
winrm_v2_fixes `b07f8e7` (currently in PR, shouldn't matter)
##### Ansible Configuration:
N/A
##### Environment:
Control node: ubuntu 14.04, target node Windo... |
##### Issue Type:
Bug Report
##### Ansible Version:
1.9.4
##### Environment:
Controller OSX 10.10.5
Targe nodes CentOS 6.6
##### Summary:
Using ":" as a key:value format in /etc/ansible/facts/* it seems the behavior
varies, sometimes omitting one of the values and displaying only the first one
while other ti... | 0 |
* I tried using the `@types/xxxx` package and had problems.
* I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript
* Mention the authors (see `Definitions by:` in `index.d.ts`) so they can respond.
* Authors: @galkin @SimonSchick and many others (and git blame doesn't lo... |
I created my typings repository before, but since this one is already much
more popular I think that I should move my typings here, so they can reach
more people and people can improve them.
So if you don't mind, can I move my typing here?
Thanks in advance.
PS: My repository is this one: https://github.com/soywiz... | 0 |
In 0.10.8, if I have a TypeScript Definition for a JavaScript file, there is
validation done on the parameters. This was particularly useful for finding
broken APIs.
Example of definition file and code:

... |
See #6658 for background.
Currently for JavaScript files we provide a very limited set of errors, mostly
for syntax errors. There are a number of grammatical and type errors that
would be useful to display also.
Brief notes from ad hoc discussion in the team room include:
* Move the code that flags TypeScript sy... | 1 |
### System information
* **Have I written custom code** : yes
* **OS Platform and Distribution** : Linux Ubuntu 16.04
* **TensorFlow installed from** : source
* **TensorFlow version** : v1.2.0-rc0-312-g0b72359 1.2.0-rc0
* **Bazel version** : 0.4.5
* **CUDA/cuDNN version** : 8.0/5.1
* **GPU model and me... |
Traceback (most recent call last):
File "AI_control_4layer.py", line 218, in <module>
writer)
File "/home/longfei/Repository/drl_navigation/saved_neural_qlearning.py", line 61, in __init__
self.create_variables()
File "/home/longfei/Repository/drl_navigation/saved_neural... | 0 |
I have not had a chance to test this under other conditions yet, but i suspect
it may affect other non mod_rewrite url rewriting modules, and does not happen
with path info based routing, nor when a bundle:controller:action style path
is given.
given the twig snippet:
{% render url('some_partial') %}
... |
I am using child forms to prevent code duplication as explained here:
https://symfony.com/doc/current/form/inherit_data_option.html
But this result in "nested" fields names for child forms (`foo[address]`,
`foo[zipcode]`, etc...).
In a classical web application, this is not a problem because Symfony render
form HTM... | 0 |
## 🐛 Bug
I'm using rtx 3090 to create a simple float32 tensor in cuda. It's very weird
it would take too much time after importing huggingface transformers library.
However the same code below doesn't have any issues in 20-series cards.
## To Reproduce
The following code would reproduce the behavior:
... |
## Edit: If you see this error, please go to https://pytorch.org/get-
started/locally/ and download a wheel built with cuda 11.x
* * *
**Hi
# I recently purchased RTX 3080 and got this error
# GeForce RTX 3080 with CUDA capability sm_86 is not compatible with the
current PyTorch installation.
The current PyTorc... | 1 |
I'm fleshing out the json library to add support for a `to_json` iface, among
other things, and I'm finding a lot of code duplication between my instances.
Here's an example:
iface to_json {
fn to_json_writer(wr: io::writer);
fn to_json_str() -> str;
}
impl of to_json for f... |
Hi folks,
I think my code is wrong, but since it says this is a compiler bug I thought
I'd file it.
I'm on `rustc 0.11.0-pre-nightly (bb5695b95c288c442dbe528f7e1c1b08f79f033d
2014-06-29 23:36:43 +0000)` (os x)
I have the following code:
extern crate crypto = "rust-crypto";
use std::io::stdi... | 0 |
### What problem does this feature solve?
Having multiple event handlers that call the very same function add noise to
the templates.
I propose to DRY that a bit.
### What does the proposed API look like?
Currently you can pass multiple functions to a single event handler like so:
<component
... |
### What problem does this feature solve?
So far a hack such as
<template>
{{foo}}
</template>
//js
var promise = new Promise(s=>setTimeout(s(1)))
{
data:{foo:''},
computed:{
async bar(){
return await promise
}
... | 0 |
julia> using LinearAlgebra
julia> LinearAlgebra.hello()
ERROR: UndefVarError: hello not defined
Stacktrace:
[1] getproperty(x::Module, f::Symbol)
@ Base ./Base.jl:26
[2] top-level scope
@ REPL[2]:1
The error could be more helpful with `ERROR: UndefVarError: no bi... |
Following this LoopVectorization issue asking for `begin`/`end` support:
JuliaSIMD/LoopVectorization.jl#246
I was curious how Base Julia correctly handled `begin`/`end` with
`CartesianIndex`.
julia> i = CartesianIndex((1,2))
CartesianIndex(1, 2)
julia> A = rand(6,5,4,3,2);
julia>... | 0 |
# Description of the new feature/enhancement
There doesn't seem to be an obvious way to detect when running from the
terminal. This is a issue for applications and libraries where behavior is
dependent on the terminal. For example, a Python library may require colorama
for some terminals and not others.
# Proposed ... |
# Environment
Windows build number: 10.0.18362.239[run "ver" at a command prompt]
Windows Terminal version 0.2.1831.0:
Any other software? No
# Steps to reproduce
material. -->
Opened one WSL terminal tab with a relatively long path like this:

google
### Versions of Apache Airflow Providers
apache-airflow 2.5.0
apache-airflow-providers-apache-beam 4.1.0
apache-airflow-providers-cncf-kubernetes 5.0.0
apache-airflow-providers-google 8.6.0
apache-airflow-providers-grpc 3.1.0
### Apache Airflow version
2.5.0
### Ope... | 0 |
### System info
* Playwright Version: [v1.29.2]
* Operating System: [macOS 13.2, macOS 11.5.2] ※but, I didn't check other versions.
* Browser: [Chromium]
* Other info:
### Source code
* [] I provided exact source code that allows reproducing the issue locally.
**Config file**
// playwrigh... |
### System info
* Playwright Version: 1.32.1
* Operating System: Windows 11
* Browser: All
* Other info: We leverage "Webpack" normally to package our test files but we are able to remove all of the "Webpackifying" except for the source map comment to repro this issue
### Source code
Create two test files ... | 0 |
`A_mul_B!(B, A, B)` replaces B with all zeros for the case where A is not
small and square:
X = randn(3, 2)
Y = randn(3, 3)
Z = randn(3, 4)
M = randn(3, 3)
R = expm(M - M')
display(A_mul_B!(X, R, X))
display(A_mul_B!(Y, R, Y))
display(A_mul_B!(Z, R, Z))
outputs:
... |
It seems there is a bug in A_mul_B! when both matrices have dimension (1, 1)
a = fill(1.0, (1,1)) ; b = fill(1.0, (1,1)) ; A_mul_B!(a, a, b)
#> 1x1 Array{Float64,2}:
#> 0.0
I expected the results to return 1 but it returns 0. This happens both in
0.3.9 and 0.4.0-dev+5446
| 1 |
by **jackbox55** :
What steps will reproduce the problem?
1. Download test case
2. extract test case
3. cd unmarshal_testcase && make && ./unmarshal_testcase
Expected: 9th and 16th item to be parsed like the others
Instead: the 9th and 17th item are empty strings
It do... |
What does 'go version' print?
go version go1.3.2 darwin/amd64
What steps reproduce the problem?
1. hg pull && hg update
2. cd src
3. ./all.bash
What happened?
--- FAIL: TestParseInSydney (0.00 seconds)
format_test.go:201: ParseInLocation(Feb 01... | 0 |
I upgraded my game to r70 (From r63) and noticed that my torch was not moving
with the camera.
I position the target for the spot light in-front of the camera, but it now
appears I must manually call
this.flashLight.target.updateMatrix() ;
to get the light to follow the new target position.
Was this an intended c... |
Bug: The changes to spotLight.target.position are not affecting.
Normal work with r68: http://jsfiddle.net/doexclusive/jhoe4ynr/
Bug with r69 and from dev branch: http://jsfiddle.net/doexclusive/6dhdbpw9/
| 1 |
After reading some different methods of utilizing CSS modules within Nextjs
pages, I'm wanting to know if the same concept can be applied to components
but with SASS. This is one of the examples I'm referencing to:
https://github.com/zeit/next.js/tree/canary/examples/with-next-sass
What I'm trying to achieve is som... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
I just started to use next.js, but after the completion of the installation is
encountered, only in macOS, win 10 is normal.
## Current Behavior
`These relative modules were not found:
* ../../../../... | 0 |
# Checklist
* I have verified that the issue exists against the `master` branch of Celery.
* This has already been asked to the discussion group first.
* I have read the relevant section in the
contribution guide
on reporting bugs.
* I have checked the issues list
for similar or identical bug reports.... |
# Checklist
* I have verified that the issue exists against the `master` branch of Celery.
* This has already been asked to the discussion group first.
* I have read the relevant section in the
contribution guide
on reporting bugs.
* I have checked the issues list
for similar or identical bug reports.... | 0 |
## Motivation
Historically organizations partaking in the release process have managed their
own fork of incubator-superset which is deployed in production via a Git
submodule. Both companies have been actively developing Superset and deploy
internally (features and bug fixes) at a higher cadence than the public PyP... |
As a continuation feature to the native-filters left side panel there is a
requirement on focusing users on charts by a specific user-path in watch a
short summary for the current active filters that applies the current scope in
order to make the dashboard more readable oriented in the cases where
dashboards are serv... | 0 |
### Describe your issue.
I'm inconsistently getting a RuntimeWarning from scipy, seemingly only after
running a matplotlib plotting function. This isn't really a problem for me,
but it is weird and I didn't see it referenced anywhere so I figured I would
at least raise an issue.
I don't get the runtime error if I j... |
### Describe your issue
Several statistical distribution methods emit warnings stemming from Boost.
This issue tracks the status of all of them.
* `beta.ppf` as reported here; should be fixed by boostorg/math#827
* `ncf` as reported in gh-17101, should be fixed by boostorg/math#846
* `nct` \- I'm not sure tha... | 1 |
@bstrie So, this code raises an assertion in llvm when compiling with -g.
Without -g it works fine.
#![feature(unboxed_closures)]
pub struct A;
impl A {
pub fn foo(&self, f: Box<Fn<(), ()> + 'static>) ->
Box<Fn<(), ()> + 'static> {
(box move |&:| {
... |
rust version: rustc 0.12.0-pre-nightly (`09abbbd` 2014-09-11 00:05:41 +0000)
Assertion failed: (getOperand(0)->getType() == cast<PointerType>(getOperand(1)->getType())->getElementType() && "Ptr must be a pointer to Val type!"), function AssertOK, file /Users/rustbuild/src/rust-buildbot/slave/nightly-ma... | 1 |
# 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... |
# Checklist
* I have verified that the issue exists against the `master` branch of Celery.
* This has already been asked to the discussion group first.
* I have read the relevant section in the
contribution guide
on reporting bugs.
* I have checked the issues list
for similar or identical bug reports.... | 0 |
**Migrated issue, originally created by Michael Bayer (@zzzeek)**
this would expand upon _load_enums() in postgresql/base.py, so that any kind
of custom type is recognized during reflection. We'd likely have to create
some kind of "ad-hoc" type that is declared like this:
from sqlalchemy.dialects.pos... |
**Migrated issue, originally created by David Lord (@davidism)**
I have the following models:
* `Device`
* `DeviceSource` has a foreign key and relationship to `Device`
* `LDAPDeviceSource` is a joined-table inheritance of `DeviceSource`
In order to make defining new `DeviceSource` subclasses easier, I creat... | 0 |
Challenge Target the same element with multiple jQuery Selectors has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML,
like Gecko) Chrome/51.0.2704.106 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
... |
Challenge Target the same element with multiple jQuery Selectors has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML,
like Gecko) Chrome/51.0.2704.106 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
... | 1 |
### Issue Details
* **Electron Version:**
v5.0.1
* **Operating System:**
Linux Mint 19.1, using the Cinnamon desktop environment
### Expected Behavior
When creating a tray and setting a click event (but no context menu) it was
expected that the event would trigger when clicking directly on the tray icon.
... |
* Output of `node_modules/.bin/electron --version`: v3.0.2 and v4.0.0
* Operating System (Platform and Version): Linux bitang 4.15.0-36-generic #39-Ubuntu SMP Mon Sep 24 16:19:09 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
* Output of `node_modules/.bin/electron --version` on last known working Electron version (... | 1 |
I know that the new IO is being worked on, but I could see this being a sneaky
thing that gets lost.
#![feature(io)]
use std::io::Write;
fn main() {
write!(&mut std::io::stdout(), "Hello world").unwrap();
}
This code prints nothing. If we use `stderr` instead, there is output.
`ru... |
The final step of runtime removal changes the threading/process model so that
the process shuts down when the main thread exits. But several shared
resources, like the helper thread for timeouts, are shut down when the main
thread exits (but before the process ends), and they are not prepared to be
used after shut do... | 1 |
##### ISSUE TYPE
* Bug Report
##### ANSIBLE VERSION
ansible 2.1.0.0
##### CONFIGURATION
[defaults]
hostfile = hosts
roles_path = ./roles:./external_roles
transport = ssh
hash_behaviour = merge
retry_files_enabled = False
[ssh_connection]
ssh_arg... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
Default Variable management
##### ANSIBLE VERSION
ansible 2.4.0 (fix-aos-login-port 395d4d4c5b) last updated 2017/05/09 08:59:20 (GMT -700)
config file = /Users/damien/projects/cloudlabs-topologies/two-tier-arista-l3/ansible.cfg
confi... | 0 |
Feature request of LSP: features like "source.addMissingImports",
"source.organizeImports"
|
It seems that there is no refactoring available when using this extension?
With extension off:

With it on:

b = np.array(['eggs', 'spam', 'spam', 'eggs', 'eggs... |
>>> import numpy as np
>>> x = np.array('abc', 'c')
>>> x == x
array([ True, True, True], dtype=bool)
>>> np.equal(x, x)
NotImplemented
| 1 |
## 🚀 Feature
label smoothing addition to standard cross entropy?
## Motivation
## Pitch
## Alternatives
## Additional context
|
Currently our cross entropy loss (i.e., nn.CrossEntropyLoss) only supports a
hard target class, i.e., wanting to maximize the output (log) probability of a
particular class. But in many times training w.r.t. a soft target distribution
(i.e., wanting the output to match a particular distribution) is quite useful
too, ... | 1 |
# Description of the new feature/enhancement
It would be good to show a shortcut tooltip (`alt+1`, etc) when hovering on an
unselected tab.
Users might know the shortcut only if they read Settings.
# Proposed technical implementation details (optional)
N/A
|
# Environment
Windows build number: 10.0.18362.0
# Steps to reproduce
Set-PSReadLineOption -Colors @{
"Command" = [ConsoleColor]::Yellow
}
in scheme change color for powershell / pwsh .exe
"brightYellow": "#F9F1A5",
# Expected... | 0 |
There was a bug introduced in the `walk` module ~1hr ago. The issue is in
version `walk@2.3.11`. For some reason, `npm install` is resolving the
`2.3.11` version, even though the latest `next.js` `package.json` pins the
walk module to `2.3.9`.
Either way, a bad publish in the `walk` module has occurred and will like... |
# Bug report
## Describe the bug
When using next.js with a custom-server, `publicRuntimeConfig` is undefined in
the client.
## To Reproduce
Check the logs on these Codesandboxes:
Working without a server: hello-world
Not working with a custom server: custom-server-express
## Expected behavior
`publicRun... | 0 |
#### Code Sample, a copy-pastable example if possible
> > > df = pd.DataFrame({"a" : [0,1,2], "b" : [1,2,3]})
> df[["a", "a"]].apply(lambda x: x[0] + x[1], axis = 1)
>>>
>>> #### Expected Output
>>>
>>> 0 0
> 1 2
> 2 4
> dtype: int64
>>>
>>> #### output of `pd.show_versions()`
>>>
>>> Traceback (mo... |
The last line of the following code snippet does not work, while it seems it
should. Am I overlooking something?
df = pd.DataFrame(np.random.randn(9,2), index=[1,1,1,2,2,2,3,3,3], columns=['a', 'b'])
df
df.loc[[1, 2]] # works
df.loc[:,['a', 'b']] # works
df.loc[[1, 2], ['a', 'b']]... | 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?
5.1.1
### Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy?
ShardingSphere-Proxy
### Expected behavior
i hava three databases of mysql,one for write,tow for read,i use
ShardingSphere-Proxy and config readwrite-splitting, when a... | 0 |
**Set alphamap will make transparent material behind invisible**
In the screenshot, an aphamap is applied on the pink patch and set the
transparent = true. The blue patch also set transparent = true. It can be seen
that the part of the blue patch that behind the pink patch is invisible. If
the transparent = false (... |
##### Description of the problem
We (@Jozain and myself) are currently implementing out-of-order transparency
for ThreeJS for a project of ours. We'd like to contribute it back. We are
implementing the method of Morgan Mcguire, Weighted-Blended Order Independent
Transparency: http://casual-effects.blogspot.ca/2014/0... | 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: xxx
* Operating System version: xxx
* Java version: xxx
### Steps to reproduce this issue
nacos... |
* 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.
### General Description
I noticed that there are many test to production inheritance structure in test
code. Maybe it is not the best pr... | 0 |
On testing #2994
In the following snippet place the caret on 'hello' and perform a 'Fold'
operation:
class xyz {
foo() {
if (a == b) {
hello
} else {
world
}
}
}
Observe: 'foo()' get collapsed but I would ... |
Testing #2994

When my cursor is at line `266` and run the Fold action, the folding block
that starts at line `263` gets folded. I expected that the block that starts
at line `265` to be folded instead.
When t... | 1 |
This is from julia-users. The example is:
function g(a)
if a
f() = 2
else
f() = 3
end
return f
end
f = g(true)
f() # Returns 3
What's also interesting is that g(false) in another REPL session gives an
error: "f not defined". So in this setup you eith... |
I have been trying to determine why a program that I am running reports a 4x
difference in the amount of resident memory that Linux says Julia is
requesting versus the output of `Base.summarysize()`. I am unclear if this is
a bug or just my naivete:
Declare a new structure with a single `Dict` child:
... | 0 |
[Enter steps to reproduce below:]
1. ...
2. ...
**Atom Version** : 0.165.0
**System** : linux 3.17.0-031700-generic
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: EACCES, open '/home/joao/.atom/compile-
cache/cson/5af7724b023a6274b520f79f04fb798a67319ca7.json'
At fs.js:75
... |
Just a moment ago I stumbled upon a similar issue to #3056. As a background: I
do like atom so much, that I started it to use it as a drop-in replacement for
gedit. Even to edit system configuration files. In this scenario it's quite
common to invoke editors via sudo.
Atom will start in a broken state if you it was ... | 1 |
**Is your feature request related to a problem? Please describe.**
This is a feature request for Normal-inverse-gamma distribution support at
`scipy.stats` subpackage.
I will implement and open a pull request if approved.
**Describe the solution you'd like**
Normal-inverse-gamma distribution distribution is the ... |
Right now the Normal-inverse-gamma distribution is missing in `scipy.stats`. I
think it qualifies as useful addition since it is the conjugate prior of the
normal distribution in case mean and variance are unknown. Therefore the
Normal-inverse-gamma distribution is important for Bayesian inference which
has been for ... | 1 |
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubelet-\nserial-gce-e2e-ci/279/\n\nFailed: [k8s.io] Resource-usage [Serial] [Slow] regular resource usage\ntracking [Benchmark] resource tracking for 10 pods per node {E2eNode Suite}\n\n \n \n /var/lib/jenkins/workspace/kubelet-serial-gce-e2e-ci/go/src/k8s.io/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e_node/resource_usage_test.go:57\n Expected error:\n <*errors.errorString | 0xc82050ea50>: {\n s: \"pod ran to completion\",\n }\n pod ran to completion\n not to have occurred\n /var/lib/jenkins/workspace/kubelet-serial-gce-e2e-ci/go/src/k8s.io/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/pods.go:57\n \n\n" |
We need an issue to track this.
Recently we added the memory eviction test #28693.
Currently, it is running in the serial test job. However, after adding it all
test running after it could not start pod.
They all failed with the reason `Evicted: The node was low on compute
resources.`.
Currently, we are not sure... | 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.6
* Java version: JDK8
DUBBO客户端与服务端建立连接超时,然后抛出异常。请问是否可以添加上重试的特性?
|
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.3
* Operating System version: win10
* Java version: 1.8
* SpringBootVersion: 2.0.6 2.0.9
... | 0 |
Maybe this is actually an issue with Visual Studio, but when I create a
typescript project and provoke a build error, I'll get the error message twice
in the Error List - one time from IntelliSense and one time from the compiler.
And it looks like - when doing something similar in C# - the error messages
are merged ... |
Hi gyus,
I could not find duplicate so I am posting here.
**TypeScript Version:** `1.8.9`
Target: `es5`
**Code:**
var myMap = new Map();
myMap.set(0, "zero");
myMap.set(1, "one");
for (var [key, value] of myMap) {
console.log(key + " = " + value);
}
**Actual emit:**
... | 0 |
This issue is only ocuring in [Iphone 12].
### System info
* Playwright Version: [v131.1]
* Operating System: Ubuntu
* Browser: DEVICE_TYPE=iPhone12
* Other info:
it("renders the component", async () => {
await page.click("text=Go to page");
await expect(page).toHaveSe... |
### System info
* Playwright Version: [v1.33.0]
* Operating System: [Windows 11, macOS 13.2]
* Browser: [Chromium]
* Other info:
### Source code
import { test } from "@playwright/test";
test("test", async ({ page }) => {
await page.goto("https://letcode.in/table");
... | 0 |
The following code is miscompiled on my OS X laptop:
use std;
native "cdecl" mod libc = "" {
fn printf(s: *u8, a: int); /* A tenuous definition, indeed. Herp, derp. */
}
fn main() {
let b = std::str::bytes("%d\n");
let b8 = unsafe { std::vec::unsafe::to_pt... |
this test (src/test/run-pass/c-stack-as-value.rs) yields a LLVM compilation
error:
// xfail-test
native "c-stack-cdecl" mod rustrt {
fn unsupervise();
}
fn main() {
let _foo = rustrt::unsupervise;
}
| 1 |
> Issue originally made by @sorgloomer
### Bug information
* **Babel version:** 6.5.1
### Options
{
plugins: ['transform-es2015-modules-amd']
}
### Input code
require("foo").bar;
### Description
Trying to compile the above code with:
var ba... |
> Issue originally made by @greypants
### Bug information
* **Babel version:** 6.5.2
* **Node version:** 4.2.4
* **npm version:** 2.14.12
### Options
react
### Input code
<div label="foo" label="label is duplicated" />
### Description
<div label="foo" label... | 0 |
On AlpineLinux, which is a mil based Linux distributive, some of numpy's test
fail. The log is attached.
log.txt
There are two types of issues - one for various missed overflow/underflow
exceptions, the second one is for incorrect results from musl's trigonometric
functions.
The first one can be fixed by includin... |
I've ran into issue with linalg.solve on different systems: in RHEL and Ubuntu
it will raise an LinAlgError exception, but on Alpine it will return `nan`.
Ubuntu:
$ docker run -it --rm ubuntu:18.04 /bin/sh
$ apt-get install python3-numpy
# python3
Python 3.6.6 (default, Sep 12 2018, 18:26:... | 1 |
`runFromBundle` on FlutterView can be called only once. Some add-to-app use
cases (such as letting `RecyclerView` manage the lifecycle of the
`FlutterView`) requires us to be able to unload these bundles and load them up
again. This also affects use cases where the app bundles are dynamically
loaded from a URL. Accor... |
It might already be in the plans. But I notice the Shrine we show in
flutter_gallery is the only pre-Material-theming shrine.
This is not at all urgent.

FYI @willlarche
| 0 |
### Context
I have a neo4j dashboard (7474) behind a reverse proxy binded on https (443)
### What I get
When trying to access the dashboard from https I get redirected to http
curl -ILk 'https://neo4j-redirect-issue/' -H 'Accept: text/html'
HTTP/1.1 303 See Other
Location: https://neo4j-red... |
Webadmin interface doesn't use the `X-Forwarded-Host` and `X-Forwarded-Proto`
headers to generate URLs. The URLs are correctly generated in the REST
interface.
### With 1.9.4
A basic query
$ curl -i -H 'X-Forwarded-Host: external.foo.bar:1234' -H 'X-Forwarded-Proto: https' localhost:7474/db/data/
... | 1 |
### System info
* Playwright Version: [v1.32]
* Operating System: [Windows 11]
* Browser: [WebKit]
* Other info:
i set userAgent in browsercontext using launchPersistentContext as
`Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_1 like Mac OS X) AppleWebKit/605.1.15
(KHTML, like Gecko) Version/16.1 Mobile/15E148 ... |
### System info
* Playwright Version: [v1.32.2]
* Operating System: [macOS 13.3]
* Browser: [WebKit]
* Other info:
### Source code
**main.js file**
const { webkit } = require('playwright');
const test = async () => {
const context = await webkit.launchPersistentContext('path... | 1 |
Regarding the `spider_idle` signal, the doc says:
> If the idle state persists after all handlers of this signal have finished,
> the engine starts closing the spider. After the spider has finished closing,
> the spider_closed signal is sent.
>
> You can, for example, schedule some requests in your `spider_idle` han... |
It seems to be failing in CI environment excepts where dependency versions are
pinned. I suspect it may be because of the latest w3lib release.
_____________ CrawlSpiderTest.test_process_request_instance_method _____________
self = <tests.test_spider.CrawlSpiderTest testMethod=test_process_req... | 0 |
pytorch 1.0
DOC err:torch.nn.CrossEntropyLoss
if weight=NONE
loss(x,class)=−x[class]+log(j∑exp(x[j])) ,The result is correct.
if weight!=NONE
loss(x,class)=weight[class]*(−x[class]+log(j∑exp(x[j]))) ,The result is
wrong?
* * *
## import torch
import torch.nn.functional as F
a=[[-5.,-6.],[3.,2.],[3.,2... |
Hi,
there is something strange in the `backward` step (or maybe something I don't
understand). If I define a Module that takes 3 inputs, the `grad_input` has to
be of size 3, right ? But this is not the case here (from the backward_hook
point of view):
from torch.autograd import Variable
import to... | 0 |
I have npm scripts for all my build tasks. How do I run these from Code? To be
honest it's not a major problem switching to a console but it would be nice to
run from within code.
I would have thought this was a candidate for standard behaviour shipped with
code?
I looked at creating tasks and the output processor ... |

| 0 |
##### Description of the problem
The parameter `linewidth` from the `LineBasicMaterial` class is ignored. The
expected outcome is to set the width of a line with this parameter.
Code:
container = document.createElement('div');
document.body.appendChild(container);
camera = new THREE.Perspecti... |
##### Description of the problem
`LineBasicMaterial` no work in Chrome. Works great in Firefox. Worked in in
Chrome 54 until we updated to latest release. We get the lines, they have no
width. I know this has been reported a million times in regard to Windows but
I'm on Mac OS 10.11.6.
##### Three.js version
* r... | 1 |
#### Code Sample, a copy-pastable example if possible
pd.Series(range(10))
#### Problem description
There is a option `display.show_dimensions` which allow show the dimension of
a `DataFrame`, while it would be useful if the length of a `Series` can be set
to show when the index is not a range list.
... |
rather than `display.max_rows` directly
for considency with the new 'truncate' option
| 1 |
This is part of the Rust tutorial session. The whole purpose of the exercise
was to find a mistake in the block expression.
See Exercise 2.1
http://pnkfelix.github.io/cyot/tutorial/exercises/ex_part_2
With rust compile this:
fn foo() -> i32 {
42
}
pub fn main() {
le... |
When `if` and `else` arms have incompatible types, like below, the compiler
should point at both arms with the evaluated type and also suggest removal of
trailing semicolon if relevant.
fn main() {
let a = if false { "x" } else { "y"; };
}
Current:
error[E0308]: if and ... | 1 |
Say I keep my containers as light weight as possible, perhaps using alpine or
some other light weight distro.
When something goes wrong in a pod, it can be difficult to exec in and debug
sometimes because there are no debugging tools in the container.
It would be awesome if you could temporarily attach a new sideca... |
**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.):
* * ... | 0 |
[Enter steps to reproduce below:]
1.Opened two files
2\. Right click to split
**Atom Version** : 1.0.0
**System** : Windows 8.1
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (... |
I right-clicked on a folder in the tree view
**Atom Version** : 0.194.0
**System** : Windows 7 Entreprise
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Fu... | 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
... |
[ ] bug report => search github for a similar issue or PR before submitting
[x] feature request
[ ] support request => Please do not submit support request here, instead see
A more general problem: we need somehow export/expose enums, static fields,
classes, functions etc. into template wi... | 0 |
### System info
* Playwright Version: 1.35.0
* Operating System: [Ubuntu 22.04 amd64]
* Browser: [Chromium, Firefox]
* Other info:
### Source code
const { firefox,chromium } = require('playwright');
(async () => {
const browser = await chromium.launch(
{
... |
### System info
* Playwright Version: [v1.33.0]
* Operating System: [All, Windows 11, Ubuntu 20, macOS 13.2, etc.]
* Browser: [All, Chromium, Firefox, WebKit]
* Other info:
### Source code
* I provided exact source code that allows reproducing the issue locally.
**Config file**
// playwri... | 0 |
http://freecodecamp.com/challenges/waypoint-iterate-with-javascript-while-
loops
Currently asks the user, "Let's try getting a for loop to work by pushing
values to an array."
Should be, "Let's try getting a while loop to work by pushing values to an
array."
|
Challenge http://freecodecamp.com/challenges/waypoint-iterate-with-javascript-
while-loops has an issue.
Text reads, "Let's try getting a for loop to work by pushing values to an
array." It should instead read, "Let's try getting a while loop to work by
pushing values to an array."
| 1 |
### Bug
There is a difference between `class Base` and `class Base extends Object`
that shouldn't be there.
Classes explicitly extending Object (and their subclasses) are always
instances of Object and **are not instances of the respective classes**.
**Function calls fail** on classes explicitly extending Object (... |
Current Babel transform, when it comes to call the parent
function _possibleConstructorReturn(self, call) {
if (!self) {
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
}
return call && (typeof call === "object" || typeof call === "fu... | 1 |
julia> versioninfo()
Julia Version 1.3.0-rc4.1
Commit 8c4656b97a (2019-10-15 14:08 UTC)
Platform Info:
OS: Linux (x86_64-linux-gnu)
CPU: Intel(R) Core(TM) i5-8250U CPU @ 1.60GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-6.0.1 (ORCJIT, skylake)
Environment... |
In a few places, the performance of splatting a number has shown up: #29060,
#28764 (comment) and working around this give signficiant speed-ups.
The code is well inferred but there is a call to `_apply` instead of the
actual method. This dissapears if the number is wrapped in a tuple.
It would be nice to have thi... | 1 |
when exporting node's properties using neo4j-shell( start p=node(1) return
p;), the data within {..} seems to comply with json protocol as json object,
but if there is double quotes(") in property value, no escape for it("), this
cause trouble when I try to parse the property data with json libs
|
Neo4j 2.0, attempting to copy dumped subgrap into 2nd DB, using the Movies
sample graph:
neo4j-shell -port 1338 -c 'dump match n return n limit 500;' |neo4j-shell -path aa -file -
Transaction started
ERROR (-v for expanded information):
SyntaxException: Invalid input 'B': expected ... | 1 |
A left-over header causes the _cat/plugin endpoint to throw :
curl localhost:9200/_cat/plugins
{"error":"ElasticsearchIllegalStateException[mismatch on num
}
|
NEED: In many (if not majority cases) when present users with business
analytics, the user would want to see numbers for complete data set. No matter
how you aggregate it should present the same data with the same number of
documents. Inability to handle "missing" values exclude those from analysis
making analyzed da... | 0 |
A max number of failures or failure backoff policy for Jobs would be useful.
Imagine you have an ETL job in production that's failing due to some
pathological input.
By the time you spot it, it's already been rescheduled thousands of times. As
an example, I had 20 broken jobs that kept getting rescheduled; killing... |
Today `kubectl exec sh` depends on a shell being present in each container
image. I think we can do better.
What if we had something like `kubectl sh` which would run a statically linked
busybox (or something like that) that was provided by the host node and made
that enter the cgroups and namespaces and chroot of t... | 0 |
Hello guys, im facing a problem which im not sure if it`s a Bug on THREE.js or
it`s really how Points works.. consider the following code:
var maxPoints = 10;
var group = new THREE.Group();
for (var i = 0; i < maxPoints; i++) {
var x = Math.random();
var y = Math.random();... |
Not sure if this is a bug, but the triangulation fails, although shape is
simple. See the images, code and description of the problem:
http://stackoverflow.com/questions/16241854/holes-in-polygons-causes-
triangulation-failure-in-three-js
Without holes works.
Every combination of orientation has no effect.
* * *
... | 0 |
Hi.
I am trying to upsert sales data (salesId (Primary Key), itemId and
description) to a table and I am running into some problems, specifically
(1) an attribute error: `AttributeError: 'StrSQLCompiler' object has no
attribute 'visit_on_duplicate_key_update'` and
(2) an unsupported compilation error:
`sqlalchem... |
**Migrated issue, originally created by Dmytro Starosud (@dima-starosud)**
This is using sqlalchemy 1.2.0b3.
I've faced weird behavior shown in following code snippet. Assertion in that
test fails. But if you comment either `#1` or `#2` or both it will pass.
Base = declarative_base()
... | 0 |
## Problem
Our code is riddled with snippets that look like this:
if err != nil {
return nil, err
}
These lines bubble errors up the call stack until someone decides to log them
and move on:
if err != nil {
glog.Errorf("Something failed: %v", err)
}
Which can yield... |
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.): external
service
**Kubernetes version** (use `kubectl version`):
v1.5.0-alpha.0.2084+162d80eced3989
**What happened** :
ExternalName type service cannot be created ... | 0 |
I'm using Memcached I set the following session
`$m = $this->get("session.handler.memcached");
$m->write($session->getId(),array("lol"=>"mdr")); $m->close();`
In another page , I execute this :
`$session = $this->getRequest()->getSession(); $session->start(); $m =
$this->get("session.handler.memcached");
var_du... |
Let's say you add a time field like this:
/** @var FormBuilderInterface $builder */
$builder->add('time', TimeTime::class, [
'model_timezone' => 'UTC',
'view_timezone' => 'America/New_York',
]);
So users are entering the "time" field in their local time. Right now
(2016-03-30) this... | 0 |
# Environment
Windows build number: Microsoft Windows [Version 10.0.18362.267]
Windows Terminal version: 0.3.2142.0
Any other software:
* Powershell6
* Windows Subsystem for Linux - Ubuntu
# Steps to reproduce
* Open Windows Terminal with `cmd.exe` as the default profile .... |
Requesting that an option exist for a quake style drop down of the terminal
window from the top of the screen be added. (Not unlike ConEmu for windows,
Guake or Yakuake)
| 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
* DubboX version: 2.8.4
* Java version: 1.8.0_191
* Spring Boot Version: 2.0.3.RELEASE
* Spring Cloud Version: F... |
* 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
branch: master
functions take & put in org.apache.dubbo.common.utils.Stack consider no the
situation that index plus mS... | 0 |
import jax
import jax.numpy as jnp
from jax.experimental import enable_x64
@jax.jit
def f(x):
with enable_x64():
return x.view(jnp.int64)
f(jnp.arange(10).reshape(5,2))
------------------------------------------------------------------------... |
minimal repro:
from jax import jit, experimental
@jit
def f(a):
with experimental.enable_x64():
return 1 + a
f(1)
RuntimeError: Invalid argument: Binary op add with different element types: s64[] and s32[].
| 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.