text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
Sorting on documents that are missing a key would be very helpful, partially
matching the api for sorting numerical values. For example:
{
"sort" : [
{ "user" : {"missing" : "_last"} },
],
"query" : {
"term" : { "user" : "kimchy" }
}
{
"sort" : [
{ "... |
This is a follow up to #772 that supports special sorting for 'null' values
for numeric fields. The same would be very useful for (not analyzed) string
fields as well. If feasible, special handling for empty and blank strings
would be useful. The latter is however optional as it is possible to achieve
uniform handlin... | 1 |
As requested here I'm filing a bug report for the following test case:
$ cat hosts
---
- group: all
hosts:
- host: 10.120.137.188:23000
- host: 10.120.137.188:23001
$ ansible all -i ./hosts -m shell -a uptime
10.120.137.188:23000 | FAILED => FAILED: [Errno -2] Nam... |
Ansible: devel, r404c3acbbf5ed3f2f6a5a2f64cc230cd22317e15
OS: Ubuntu 12.04
Python: 2.7.3
When a host is listed both "globally" and within a group, e.g.
10.0.3.232 foo=bar
[example]
10.0.3.232
[example:vars]
domain=example.com
The 'setup' command lists it only as bel... | 1 |
## Do not comment here.
This is a tracking issue for the next release, v3.0.3. Only linked issues,
pull requests, and commits should be included. See contributing guidelines for
more information. All notable changes have been mentioned here. See the v3.0.3
milestone for a complete set of changes.
### Key changes
T... |
When I use the validation elements in an inline form with Bootstrap 3, the
input's width is getting wider.
From my observation the normal case is that when the input element is verified
30.5px are removed from the input width and its padding is increased by 30.5px
to give space for the glyphicon span. But in the inl... | 0 |

column ordering is... |
<div class="container">
<div id="teaser" class="row">
adsffdasdf
</div>
<div id="main" class="row">
<div class="col-lg-9 col-push-3">
asdfsdaf
</div>
<div class="col-lg-3 col-pull-9">
asdffaf
... | 1 |
### Website or app
https://codesandbox.io/s/react-devtools-weird-bug-o3sib?file=/src/App.js
### Repro steps
I stumbled across the weirdest bug with React DevTools and hooks that causes
it to error out when inspecting a component. A minimal test case is documented
in the Code Sandbox link, along with more details o... |
React version: 17.0.1
## Steps To Reproduce
1. clone repo: https://github.com/avkonst/react-devtools-crash-demo
2. yarn start
3. open the browser of the started app
4. open devtools
5. click Counter component in the components tab of the development tools
6. Watch it not loading anything and unhandled e... | 1 |
It doesn't seem possible to compile and output to stdout. There was some
discussion on CodePlex before the migration to github:
https://typescript.codeplex.com/workitem/600
|
The compiler incorrectly reports a parameter/call target signature mismatch
when using the spread operator. Pasting this code into the TypeScript
Playground:
function foo(x: number, y: number, z: number) { }
var args = [0, 1, 2];
foo(...args);
produces this error:
Supplied ... | 0 |
Note that this is my understanding, please correct me if I'm wrong.
Currently when conhost acts as bridge between kernel and terminal (is in vt
mode), both conhost and terminal have a `TextBuffer`. If there is an API call
from app, then conhost executes it as it used to in window mode, possibly
altering buffer, but ... |
# Environment
Windows build number: [Version 10.0.18362.239]
Windows Terminal version (if applicable): 0.3.2142.0
# Steps to reproduce
Pressing AltGR + 2/3/4/7/8/9/0/+ (number row) - and possibly other key
combinations requiring AltGR does not seem to bite on the terminal. For
instance, get... | 0 |
## Objective
The purpose of this document is to consolidated the major Kubernetes Volume
issues/feature requests, and introduce high-level designs that ensure
alignment between all of them.
## Background
There are three big designs currently being considered for Kubernetes Volume
Storage:
1. Dynamic Provisionin... |
At github page
https://github.com/kubernetes/kubernetes/blob/master/docs/getting-started-
guides/ubuntu.md
Mentioned one page: http://kubernetes.github.io/docs/getting-started-
guides/ubuntu/
The above link was not found (see attached screenshot)
 written in ES2015
without transpiling them.
That's a pretty good thing specially if they are gonna used in a project like
Next.js or CRA (which does transpiling). They offer benefits like:
* No need to transpile before shipping to NPM
* Get the benefit of... | 0 |
**Torsten Krah** opened **SPR-8674** and commented
Please look at the attached Testcase. Conversion does work for String -> Set
in 3.0.5 but fails in 3.0.6. Elements are converted to the collection type
rather than their Collections elements type.
The revision and bug which causes this is mentioned in the forum t... |
**Jeremy Grelle** opened **SPR-7400** and commented
Building on the newly added ResourceHttpRequestHandler, the following advance
features should be re-considered:
* Minification should be applied to text-based resources where possible e.g. .js (should be possible to disable)
* Resource bundling should be sup... | 0 |
The following code:
@functools.partial(jax.custom_vjp, nondiff_argnums=(1,))
def _precise_mean(x, axis):
with jax.experimental.enable_x64():
return jnp.mean(x.astype("float64"), axis=axis).astype(x.dtype)
def _precise_mean_fwd(x, axis):
return _precise_mean(x, axis... |
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 |
**Expected Behavior**
Use the session.setProxy function of a window to set a user:pass authenticated
proxy. Load URL in that window. Expect that app.login event is triggered and
request is made.
**Actual behavior**
Set session proxy to a user:pass authenticated proxy, loadURL requests fail
with status "failed"... |
### 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 |
they have plans so that deno can run on arm architectures.
|
When attempting to install deno on my Raspberry Pi, I get the following:
$ curl -fsSL https://deno.land/x/install/install.sh | sh -s v0.4.0
Unsuported architecture armv7l. Only x64 binaries are available.
Is support for 32-bit ARM processors something we can eventually expect?
| 1 |
**Migrated issue, originally created by Anonymous**
It is possible for a MSSQL connection attached to one database to reference
objects in another database by using the objects' full names in the form,
<database_name>.<owner_name>.<table_name>. The schema.Table constructor takes
a schema argument and an owner argum... |
**Migrated issue, originally created by Anonymous**
Please find attached some diffs which go towards supporting multipart schema
names. Background discussion can be found on a thread on the sqlalchemy group:
http://groups.google.com/group/sqlalchemy/browse_frm/thread/e34ff8fed2c5be2a
I added a couple of new tests... | 1 |
* I have read the Contributing Guidelines for this project.
* I agree to follow the Code of Conduct that this project adheres to.
* I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:** 8.1.1
* **Operating System:** W... |
* Electron version: 1.6.8
* Operating system: MacOS
Apologies if this is a duplicate, I found issues related to `window.open`,
however I believe none covered my use case
### Expected behavior
Communication between an iframe and windows it opens should be possible (via
`postMessage` API). Therefore, `window.ope... | 0 |
Challenge Waypoint: Use appendTo to Move Elements with jQuery has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 6.3; WOW64; rv:42.0) Gecko/20100101
Firefox/42.0`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
<script>
$(document).read... |
A bug seems to be present: Chrome 46.0.2490.86 m; Windows 8.1 with respect to
`appendTo()` function.
`$("#target2").appendTo($("#right-well"));` does work, but not the
`$("#target2").appendTo("#right-well");`, the latter being suggested in the
tutorial.
Hard reload and cache clearing did not seem to solve the probl... | 1 |
Hi ,
I used the VideoCapture function to call the camera, but something went wrong.
Is this a bug? My CV version is 4.5.3 .
import cv2
cap = cv2.VideoCapture(0)
while True:
ret,frame=cap.read()
gray=cv2.cvtColor(frame,cv2.COLOR_BGR2GRAY)
cv2.imshow('WindowName',gray)
if cv2.waitKey(1)&0xFF==ord('q'): ... |
##### System information (version)
* OpenCV => 3.4.2
* Operating System / Platform = macOS 10.13.6
* Compiler = Xcode Version 10.0 beta 6 (10L232m)
##### Detailed description
OpenCV iOS framework build fails against most recent Xcode 10 beta. The
following error occurs:
CMake Error at cmake/Op... | 0 |
It would be interesting to have a section thant explain how to extends and
modifiy Bootstrap for our own project (jsute modify the .less file?) How that
can work with the bootstrap update???
Thanks.
|
As provided here https://gist.github.com/1866577
| 0 |
Rather than rolling our own sparse-matrix library, it seems like it would be
much better to use PETSc, which is the de-facto standard here.
PETSc would give us access to a huge number of sparse-direct back-ends
(#2632), iterative solvers, sparse eigensolvers (#1573) via the SLEPc library,
optimized implementations (... |
I'm having a problem where when I build from `3c7136e` when I run julia, I get
the error `could not allocate pools` If I run as a different user, Julia runs
successfully.
I think there might be something specific to my user on this box, but I am
happy to help identify what is happening here.
I think this is related... | 0 |
* Avatar broken.
* Username is missing first character.
* User link points to 404 Not Found: https://atom.io/users/
* Clicking "Report issues" triggers a dialog about invalid URL with `%@`.

|

This is https://atom.io/packages/jshint \- it uses a repo path of the form
`username/repo` in `package.json`. The repo link in the package card is
missing the first letter, and tries ... | 1 |
I tried the example in the file "neural_style_transfer.py". I want to see the
outputs features of relu units for a single image in VGG network. I do not
want to trouble to modify the code so I simply duplicated the same image for
three times and inputs them together to the net (using K.function to extract
three outpu... |
A shared layer is represented by a single in-memory object. However, in the
case shown below, saving then loading the model leads to the creation of
duplicate layers - this means that training the loaded model will lead to
different results. This is because one use of the shared layer is in a
(sub-)model, which in tu... | 0 |
This works fine in Chrome React DevTools, only an issue in the Firefox flavor.
React version: N/A
## Steps To Reproduce
1. Use the React DevTools in Firefox
2. With the Components inspector open, press e.g. CMD-+ or CMD-- to increase/decrease the UI font size
## The current behavior
The rest of the debugger ... |
This was a bit weird:

Look at the last log.
Notice how our internal error that we're supposed to just give to the error
boundary is said to be uncaught. I wonder why. It does... | 0 |
* Electron version: All
* Operating system: Windows vs Mac
When I define a custom undo behaviour I found it become different between
Windows and Mac devices.
This is what I did:
// the main menu I overwrite:
let menuTemplate = [
// Edit
{
label: 'Edit',
submenu: [
... |
Minimal repro: https://gist.github.com/DanielDignam/b49084941a2f731501d5
We are using node 4.1.1, Chrome 45.0.2454.85, and Electron 0.35.2, on Windows
10
Run attached app. Notice ^Z reports correctly to the console. Type something
into the input box and hit the button to remove the element from the DOM. Hit
^Z noti... | 1 |
Describe what you were doing when the bug occurred:
1.
2.
3.
* * *
## Please do not remove the text below this line
DevTools version: 4.2.1-3816ae7c3
Call stack: at chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:157108
at Map.forEach ()
at commitIndex (chrome-
extension://fmkadmap... |
PLEASE INCLUDE REPRO INSTRUCTIONS AND EXAMPLE CODE
I got this error when I click 'Ranked'.
* * *
## Please do not remove the text below this line
DevTools version: 4.0.4-3c6a219
Call stack: at chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:11441
at Map.forEach ()
at commitIndex (chrome... | 1 |
**What is the current behavior?**
When I using DefinePlugin to inject `process.env` variable into the package,
the output file will contain hundreds of duplicated the variable object (in
everywhere the code use it) like this:
{NODE_ENV:"production"}.NODE_ENV
Even I activated the `--optimize-ded... |
# Bug report
**What is the current behavior?**
If i use babel-transform-runtime and use optimization splitChunks
app.bundle.js not start in browser.
**If the current behavior is a bug, please provide the steps to reproduce.**
clone https://github.com/ariran5/webpack-splitting-error
open index... | 0 |
* Electron version: 0.36.7
I would like to be able to customize the button title for an `open dialog`
(https://github.com/atom/electron/blob/master/docs/api/dialog.md#dialogshowopendialogbrowserwindow-
options-callback)
For example, to say `Choose` instead of `Open`:
 the question arises whether we need to
deprecate some object before it can be removed or changed. This goes back to
defining what is public API in scikit-learn.
The lest controversial definition is that,
* import paths with that include a module with a leading `_` are private
... |
This is maybe for 1.0. Recently we started marking files like
`model_selection._split` private, so that everything has a single canonical
import:
from sklearn.model_selection import cross_val_score
For many (older?) models that's not the case, we have
from sklearn.linear_model.logistic ... | 1 |
It seems there are incompatibilities between the new Profiler and the previous
one, regarding CSS frameworks.
Indeed, the profiler breaks Bootstrap 3.x styles, and vice-versa (you can see
on the screenshot below that the left side menu is not at the correct
position):
,'badRefererAction'));
When these conditions are fullfilled, my controller action is ca... | 0 |
Describe what you were doing when the bug occurred:
1.
2.
3.
* * *
## Please do not remove the text below this line
DevTools version: 4.2.1-3816ae7c3
Call stack: at chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:157108
at Map.forEach ()
at commitIndex (chrome-
extension://fmkadmap... |
Describe what you were doing when the bug occurred:
1.
2.
3.
* * *
## Please do not remove the text below this line
DevTools version: 4.10.0-11a2ae3a0d
Call stack: at store_Store.getElementAtIndex (chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:21215:35)
at store_Store.getElementIDAtIn... | 0 |
As reported at pendulum, there are cases where creating a `date_range` fails
with a segfault: pendulum issues 131.
#### Code Sample
from datetime import datetime, timedelta
from pendulum.tz.timezone import UTCTimezone
from pendulum.tz.timezone_info import UTC
import pandas as pd
... |
xref #13351 (comment)
We use `io/common/_get_handle` and `io/common/get_filepath_or_buffer` in
various places in most of the io modules, need to unify encoding handling to a
somewhat simpler interface (1 function).
| 0 |
Hello,
The description of some of the commands on the list are too long. This makes
them difficult to read.

I think that some text should be moved to descriptions of individu... |
### Description
I think adding the following operators/sensors would benefit companies that
need to start/stop RDS instances programmatically.
Name | Description | PR
---|---|---
`RdsStartDbOperator` | Start an instance, and optionally wait for it enter
"available" state | #27076
`RdsStopDbOperator` | Start a... | 0 |
### Current Behavior:
The docs for npm@7 mention hook scripts as a feature:
> If you want to run a specific script at a specific lifecycle event for ALL
> packages, then you can use a hook script.
>
> Place an executable file at `node_modules/.hooks/{eventname}`...
^ https://github.com/npm/cli/blob/latest/docs/con... |
First of all, thanks for all of the work being done on the npm CLI and the
ecosystem! Tons of new amazing things in v7.
### Current Behavior:
Hook scripts (documented in the docs here) seem to no longer get run for npm
v7.
For example, an executable file at `node_modules/.hooks/postinstall` with the
following cont... | 1 |
### System info
* Playwright Version: [v1.32.3]
* Operating System: [macOS 12.6.5]
* Browser: [Chromium]
* Other info:
### Source code
* I provided exact source code that allows reproducing the issue locally.
**Link to the GitHub repository with the repro**
**Steps**
* `npx playwright test --ui`
*... |
### System info
* Playwright Version: [v1.34.2]
* Operating System: [macOS 13.2]
* Browser: [WebKit]
* Other info:
### Source code
* I provided exact source code that allows reproducing the issue locally.
**Link to the GitHub repository with the repro**
https://github.com/ArrayZoneYour/playwright-scree... | 0 |
#### Challenge Name
Get set for our algorithm challenges
#### Issue Description
This isn't a challenge, it is just the overview/instruction page for basic-
algorithm-scripting. It loads page 1/4 but the "Go to my next step" button is
broken so you cannot navigate to pages 2, 3, and 4. You have to just skip to
the ... |
**Expected Behavior:** When I click "Go to my next step", I should go to my
next step.
**Current Behavior:** When I click "Go to my next step", I stay on that page
and nothing happens.
I have tried refreshing, clearing cache and history, re-logging in, but the
current behavior has not changed.
#### Challenge Nam... | 1 |
A component in 2.0.0-alpha.45 with
template: `<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"></svg>`
arrives in the DOM as
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 100 100" version="1.1"></svg>
Note the lower-case `b` of `viewbox`. Tha... |
SVG elements inside templates are not visible with alpha.38. From what I can
see, the browser is not recognizing the svg element.
Works in alpha.37: http://plnkr.co/edit/GOEp4DSa0Q3HGZGxXVAi
Breaks in alpha.38: http://plnkr.co/edit/thIhnOB9zhzIQeEnmZUA
import {bootstrap, bind, Component, View} from ... | 1 |
Hi!
I used the customizer to generate my own bootstrap 3 css files and using it to
display a dialog with 'fade' in the class made the dialog background go black
instead of 50% opacity black.
Inspecting the modal-backdrop I figured the .fade opacity: 1 attribute was
overriding the .modal-backdrop opacity: 0.5 attrib... |
Hi!
I just generated a customized version and the modal background is totally
black (I also generated a version without any change to be sure it wasn't me
that caused that):

edit:
Issue was solved once i properly set my system time
|
* Electron version: 1.4.1
* Operating system: Linux 4.4.11-v7+
* node v4.2.1
* npm v2.14.7
| 1 |
Font-family not being passed to SnackBar as expected.
Add a SnackBar component at the root of your project. Without any parent from
which it will catch the font family, it goes to the serif default browser
font.
* Material-UI: Current
* React: Current
* Browser: Any
|
### Problem description
A `<SnackBar>` component added inside a `<MuiThemeProvider>` element displays
with a bad font.
### Steps to reproduce
Create a `<Snackbar />` inside a document with no default styles in the body -
just a `<MuiThemeProvider>` wrapper.
<MuiThemeProvider>
<div>
... | 1 |
## 🐛 Bug
When I use a single GPU, all parameters in the model get non-zero gradients;
but after wrapping my model with nn.DataParallel, the gradients of some part
(RNN in my case) of the model become zero.
## To Reproduce
Steps to reproduce the behavior:
import sys
import torch
from ... |
## 🐛 Bug
I have tried running RNNs (LSTMs and GRUs) on multiple GPUs using
`nn.DataParallel()` and when I print/plot the gradients, they are 0. They are
not `Nan` or `None` but `0.0`. I have run the same code with CNNs and it
worked fine. The RNN is part of `model.parameters()` so that is also not an
issue.
This ... | 1 |
I'm see in docs inside SelectionControls an usage example of Switch with
label, it's supposed to be used like:
<FormControlLabel
control={
<Switch
checked={this.state.checkedA}
onChange={(event, checked) => this.setState({ checkedA: chec... |
It would be a nice feature to not collapse a `Collapse` component all the way,
but instead to collapse it to a height specified. This would allow for a small
preview of the collapsable content.
There could be other ways to implement the same functionality.
Thanks for the consideration!
* I have searched the ... | 0 |
Since DCN make convolution networks gain a massive accuracy, it's that
possible adding DCN inside pytorch natively?
Or does it already supported in somewhere in someway?
|
## 🚀 Feature
Exactly as introduced in Microsoft paper :
https://arxiv.org/pdf/1703.06211.pdf
## Motivation
This operator has great advantages and abilities, and his popularity is
increasing.
I don't think that any further explanation is needed.
BTW, other frameworks already have this operator, and I'm not talki... | 1 |
### Bug summary
`import matplotlib.pyplot as plt`
Nomatter what drawing behavior(plot, scatter...) I uesd, I would always get
below error:
Traceback (most recent call last):
File "dt.py", line 14, in <module>
plt.scatter(x, y, s=area, c=colors, alpha=0.5)
File "C:\Python37\Lib\sit... |
### Bug summary
matplotlib/lib/matplotlib/backends/qt_compat.py
Line 144 in 318b234
| _to_int = operator.attrgetter("value") if QT_API == "PyQt6" else int
---|---
Have to check for "PySide6" too.
### Code for reproduction
$ QT_API=pyside6 python -c "import matplotlib.backends.backend_qt5agg... | 1 |
Superset returns an internal server error when there are duplicated calculated
column names
### Expected results
No 5xx
### Actual results
5xx
#### Screenshots

#### How to reproduce the bug
While rec... |
Make sure these boxes are checked before submitting your issue - thank you!
* I have checked the superset logs for python stacktraces and included it here as text if any
* I have reproduced the issue with at least the latest released version of superset
* I have checked the issue tracker for the same issue and... | 0 |
When I try trace a model, I got this error:
TracedModules don't support parameter sharing between modules
After digging into jit module source codes, this error thrown for the reason
that:
the module weights already inside a set, but id is different with exists one, then out perfor... |
When tracing a model like this:
class BasicConv(nn.Module):
def __init__(self, in_planes, out_planes, kernel_size, stride=1, padding=0, dilation=1,
groups=1, relu=True, bn=True, bias=False):
super(BasicConv, self).__init__()
self.out_channels = ... | 1 |
Some days ago, I wrote some code involving char as HashMap key. At that time,
char didn't implement the IterBytes trait, so I implemented it locally myself.
After updating rust, my code failed to compile with a somewhat less than
obvious error.
Example:
extern mod std;
use std::map::HashMap;
u... |
The following code compiles:
struct Foo<'a>(&'a uint);
impl<'a> Foo<'a> {
fn bar<'a>(self, other:Foo<'a>) {}
}
However, in the event of a lifetime mismatch, this can lead to confusing error
messages.
use std::kinds::marker::ContravariantLifetime;
// Using a C... | 0 |
**I'm submitting a ...** (check one with "x")
[ ] bug report => search github for a similar issue or PR before submitting
[X ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
... |
**I'm submitting a ...**
[x] bug report
[ ] feature request
[ ] support request
**Current behavior**
Components added dynamically that have `ChangeDetectionStrategy.OnPush` do not
detect input changes. For example, if such a component is instantiated at
runtime via `ViewContainerRef.cre... | 0 |
@ssingaraju: '
How do I reverse the nodes(p) iterable using an order by similar option. I
guess right now Destination prints first.
Thanks
'
|
@ssingaraju: 'How do I reverse the nodes(p) iterable using an order by similar
option. I guess right now Destination prints first.
Thanks
'
| 1 |
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gce-latest-1.4-latest-1.5-cvm-kubectl-skew/1201/\n\nFailed: [k8s.io] Kubectl client [k8s.io] Kubectl apply should reuse nodePort\nwhen apply to an existing SVC {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:521\n Expected error:\n <exec.CodeExitError>: {\n Err: {\n s: \"error running &{/workspace/kubernetes_skew/cluster/kubectl.sh [/workspace/kubernetes_skew/cluster/kubectl.sh --server=https://104.198.36.5 --kubeconfig=/workspace/.kube/config get service redis-master --namespace=e2e-tests-kubectl-adz6a -o jsonpath={.spec.ports[0].nodePort}] [] <nil> Error executing template: nodePort is not found. Printing more information for debugging the template:\\n\\ttemplate was:\\n\\t\\t{.spec.ports[0].nodePort}\\n\\tobject given to jsonpath engine was:\\n\\t\\tmap[string]interface {}{\\\"status\\\":map[string]interface {}{\\\"loadBalancer\\\":map[string]interface {}{}}, \\\"kind\\\":\\\"Service\\\", \\\"apiVersion\\\":\\\"v1\\\", \\\"metadata\\\":map[string]interface {}{\\\"namespace\\\":\\\"e2e-tests-kubectl-adz6a\\\", \\\"selfLink\\\":\\\"/api/v1/namespaces/e2e-tests-kubectl-adz6a/services/redis-master\\\", \\\"uid\\\":\\\"a5a5f4e8-b7cd-11e6-93a2-42010af00002\\\", \\\"resourceVersion\\\":\\\"930\\\", \\\"creationTimestamp\\\":\\\"2016-12-01T13:54:15Z\\\", \\\"labels\\\":map[string]interface {}{\\\"app\\\":\\\"redis\\\", \\\"role\\\":\\\"master\\\"}, \\\"name\\\":\\\"redis-master\\\"}, \\\"spec\\\":map[string]interface {}{\\\"sessionAffinity\\\":\\\"None\\\", \\\"ports\\\":[]interface {}{map[string]interface {}{\\\"protocol\\\":\\\"TCP\\\", \\\"port\\\":6379, \\\"targetPort\\\":\\\"redis-server\\\"}}, \\\"selector\\\":map[string]interface {}{\\\"app\\\":\\\"redis\\\", \\\"role\\\":\\\"master\\\"}, \\\"clusterIP\\\":\\\"10.0.168.216\\\", \\\"type\\\":\\\"ClusterIP\\\"}}\\n\\n error: error executing jsonpath \\\"{.spec.ports[0].nodePort}\\\": nodePort is not found\\n [] <nil> 0xc820b01fa0 exit status 1 <nil> true [0xc820b6a040 0xc820b6a058 0xc820b6a070] [0xc820b6a040 0xc820b6a058 0xc820b6a070] [0xc820b6a050 0xc820b6a068] [0xafa720 0xafa720] 0xc820aaeae0}:\\nCommand stdout:\\nError executing template: nodePort is not found. Printing more information for debugging the template:\\n\\ttemplate was:\\n\\t\\t{.spec.ports[0].nodePort}\\n\\tobject given to jsonpath engine was:\\n\\t\\tmap[string]interface {}{\\\"status\\\":map[string]interface {}{\\\"loadBalancer\\\":map[string]interface {}{}}, \\\"kind\\\":\\\"Service\\\", \\\"apiVersion\\\":\\\"v1\\\", \\\"metadata\\\":map[string]interface {}{\\\"namespace\\\":\\\"e2e-tests-kubectl-adz6a\\\", \\\"selfLink\\\":\\\"/api/v1/namespaces/e2e-tests-kubectl-adz6a/services/redis-master\\\", \\\"uid\\\":\\\"a5a5f4e8-b7cd-11e6-93a2-42010af00002\\\", \\\"resourceVersion\\\":\\\"930\\\", \\\"creationTimestamp\\\":\\\"2016-12-01T13:54:15Z\\\", \\\"labels\\\":map[string]interface {}{\\\"app\\\":\\\"redis\\\", \\\"role\\\":\\\"master\\\"}, \\\"name\\\":\\\"redis-master\\\"}, \\\"spec\\\":map[string]interface {}{\\\"sessionAffinity\\\":\\\"None\\\", \\\"ports\\\":[]interface {}{map[string]interface {}{\\\"protocol\\\":\\\"TCP\\\", \\\"port\\\":6379, \\\"targetPort\\\":\\\"redis-server\\\"}}, \\\"selector\\\":map[string]interface {}{\\\"app\\\":\\\"redis\\\", \\\"role\\\":\\\"master\\\"}, \\\"clusterIP\\\":\\\"10.0.168.216\\\", \\\"type\\\":\\\"ClusterIP\\\"}}\\n\\n\\nstderr:\\nerror: error executing jsonpath \\\"{.spec.ports[0].nodePort}\\\": nodePort is not found\\n\\nerror:\\nexit status 1\\n\",\n },\n Code: 1,\n }\n error running &{/workspace/kubernetes_skew/cluster/kubectl.sh [/workspace/kubernetes_skew/cluster/kubectl.sh --server=https://104.198.36.5 --kubeconfig=/workspace/.kube/config get service redis-master --namespace=e2e-tests-kubectl-adz6a -o jsonpath={.spec.ports[0].nodePort}] [] <nil> Error executing template: nodePort is not found. Printing more information for debugging the template:\n \ttemplate was:\n \t\t{.spec.ports[0].nodePort}\n \tobject given to jsonpath engine was:\n \t\tmap[string]interface {}{\"status\":map[string]interface {}{\"loadBalancer\":map[string]interface {}{}}, \"kind\":\"Service\", \"apiVersion\":\"v1\", \"metadata\":map[string]interface {}{\"namespace\":\"e2e-tests-kubectl-adz6a\", \"selfLink\":\"/api/v1/namespaces/e2e-tests-kubectl-adz6a/services/redis-master\", \"uid\":\"a5a5f4e8-b7cd-11e6-93a2-42010af00002\", \"resourceVersion\":\"930\", \"creationTimestamp\":\"2016-12-01T13:54:15Z\", \"labels\":map[string]interface {}{\"app\":\"redis\", \"role\":\"master\"}, \"name\":\"redis-master\"}, \"spec\":map[string]interface {}{\"sessionAffinity\":\"None\", \"ports\":[]interface {}{map[string]interface {}{\"protocol\":\"TCP\", \"port\":6379, \"targetPort\":\"redis-server\"}}, \"selector\":map[string]interface {}{\"app\":\"redis\", \"role\":\"master\"}, \"clusterIP\":\"10.0.168.216\", \"type\":\"ClusterIP\"}}\n \n error: error executing jsonpath \"{.spec.ports[0].nodePort}\": nodePort is not found\n [] <nil> 0xc820b01fa0 exit status 1 <nil> true [0xc820b6a040 0xc820b6a058 0xc820b6a070] [0xc820b6a040 0xc820b6a058 0xc820b6a070] [0xc820b6a050 0xc820b6a068] [0xafa720 0xafa720] 0xc820aaeae0}:\n Command stdout:\n Error executing template: nodePort is not found. Printing more information for debugging the template:\n \ttemplate was:\n \t\t{.spec.ports[0].nodePort}\n \tobject given to jsonpath engine was:\n \t\tmap[string]interface {}{\"status\":map[string]interface {}{\"loadBalancer\":map[string]interface {}{}}, \"kind\":\"Service\", \"apiVersion\":\"v1\", \"metadata\":map[string]interface {}{\"namespace\":\"e2e-tests-kubectl-adz6a\", \"selfLink\":\"/api/v1/namespaces/e2e-tests-kubectl-adz6a/services/redis-master\", \"uid\":\"a5a5f4e8-b7cd-11e6-93a2-42010af00002\", \"resourceVersion\":\"930\", \"creationTimestamp\":\"2016-12-01T13:54:15Z\", \"labels\":map[string]interface {}{\"app\":\"redis\", \"role\":\"master\"}, \"name\":\"redis-master\"}, \"spec\":map[string]interface {}{\"sessionAffinity\":\"None\", \"ports\":[]interface {}{map[string]interface {}{\"protocol\":\"TCP\", \"port\":6379, \"targetPort\":\"redis-server\"}}, \"selector\":map[string]interface {}{\"app\":\"redis\", \"role\":\"master\"}, \"clusterIP\":\"10.0.168.216\", \"type\":\"ClusterIP\"}}\n \n \n stderr:\n error: error executing jsonpath \"{.spec.ports[0].nodePort}\": nodePort is not found\n \n error:\n exit status 1\n \n not to have occurred\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/util.go:2183\n \n\nPrevious issues for this test: #28523\n\n" | ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gci-gke-staging-parallel/1671/\n\nFailed: [k8s.io] Kubectl client [k8s.io] Kubectl apply should reuse nodePort\nwhen apply to an existing SVC {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:134\n Oct 27 16:08:39.030: Couldn't delete ns: \"e2e-tests-kubectl-5yeis\": an error on the server (\"Internal Server Error: \\\"/apis/autoscaling/v1/namespaces/e2e-tests-kubectl-5yeis/horizontalpodautoscalers\\\"\") has prevented the request from succeeding (get horizontalpodautoscalers.autoscaling) (&errors.StatusError{ErrStatus:unversioned.Status{TypeMeta:unversioned.TypeMeta{Kind:\"\", APIVersion:\"\"}, ListMeta:unversioned.ListMeta{SelfLink:\"\", ResourceVersion:\"\"}, Status:\"Failure\", Message:\"an error on the server (\\\"Internal Server Error: \\\\\\\"/apis/autoscaling/v1/namespaces/e2e-tests-kubectl-5yeis/horizontalpodautoscalers\\\\\\\"\\\") has prevented the request from succeeding (get horizontalpodautoscalers.autoscaling)\", Reason:\"InternalError\", Details:(*unversioned.StatusDetails)(0xc82097e730), Code:500}})\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:338\n \n\nPrevious issues for this test: #28523\n\n" | 1 |
The TypeScript definition for Array.filter specifies the callback must return
a boolean, thus the code example at the bottom of this post fails to compile.
Here's the current definition:
filter(callbackfn: (value: T, index: number, array: T[]) => boolean, thisArg?: any): T[];
The spec says this a... |
From here: https://typescript.codeplex.com/workitem/2464
I have a possible solution: Just allow this:
class A {
[index: number]: A; // <- since you can already do this
(...args): A; // <- why not allow this also?
constructor(...args) { }
}
Other suggestion by fdecampredon ... | 0 |
## ℹ Computer information
* PowerToys version: 0.22.0
* PowerToy Utility: Video Conference
* Running PowerToys as Admin: Yes
* Windows build number: [run "winver"] 19401.450
## 📝 Provide detailed reproduction steps (if any)
1. Use Video Conference in high resolution monitor
### ✔️ Expected result
Show... |
## 📝 Provide a description of the new feature
I am on a 43" 4k monitor with Windows scaled to 150%. The Video Conference
toolbar is quite small - see attachment. It might be nice if this was
scalable.
I tested and it seems to not change size as you change scaling in Windows. I
think it should at least follow scali... | 1 |
When drag-drop a firefox tag across screens, the atom(0.190.0) will exit. On
Ubuntu 14.04, Firefox 37.01. Here's the console log .
[23715:0414/125813:ERROR:browser_main_loop.cc(170)] Running without the SUID
sandbox! See
https://code.google.com/p/chromium/wiki/LinuxSUIDSandboxDevelopment for more
information on deve... |
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 (version)
* OpenCV => 3.4 / master branch
* Operating System / Platform => Jetson TX2 Aarch64 Ubuntu 16.04 64bit
* Compiler => GCC 5.4.0
##### Detailed description
I wrote PR #12905 , but even after mergin this PR, the test fails on Jetson
TX2 (Aarch64)
$ ./bin/opencv_... |
##### System information (version)
* OpenCV => 4.0.0 --> 4.1.0-pre
* Operating System / Platform => Ubuntu 16.04
* Compiler => gcc 6.4
##### Detailed description
When running the detailed stitching example, this error occurred:
> /io/opencv/modules/core/src/ocl.cpp:4766: error: (-215:Assertion failed)
> u->... | 0 |
# Bug report
## Describe the bug
The final generated HTML contains multiple references of the same script when
using `dynamic(() => import("XXX"))` feature.
<script async="" data-next-page="/_rendr" src="/_next/static/-QRY2dlf37nt2x4YyPE4t/pages/_rendr.js"></script>
<script async="" data-next-pag... |
# Bug report
I recently upgraded to the latest canary and noticed horizontal scrolling on
some mobile devices. As it turned out, this was caused by #6754 (cc
@developit).
Although the default new value of `viewport` is inserted only when there is no
custom one, this logic did not work for me, because my custom `vie... | 0 |
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.): dns,
skydns, dns not resolving
* * *
**Is this a BUG REPORT or FEATURE REQUEST?** (choose one): Bug
**Kubernetes version** (use `kubectl version`):
Clien... |
@nikhiljindal there are two controllers in federation for v1.3, however the
clientset of cluster controller and service controller are different so I open
this issue to discuss with you how to keep them identical.
1. The versioned clientset kept broken before I merged service controller, like watcher always get a ... | 0 |
I don't find where to define number of columns in customizer? Pls advise.
|
Gotta bring back those grid mixins so folks can generate any number of columns
easily—screw this no mixin business we have right now.
| 1 |
I'm using Atom 0.121.0 on OSX 10.9.4. I turn `Atom` into Mac Fullscreen mode,
and back. I found the Window is restored to normal, but the header is covered
by the menu bar, and I cannot access it.
Here is the screenshot:
 does not seem to work properly
when there is no constraint defined for a given property at all.
The documentation says: "The required option can be guess... |
A mistake that I frequently see is that people forget to call `createView()`
when passing a form to the view. What do you think about converting
`FormInterface` instances to `FormView` objects automatically by calling
`createView()`, for example, in a listener?
| 0 |
# Summary of the new feature/enhancement
Allow mapping the Windows key alone as the shortcut key for PowerTools Run,
disabling the windows start menu launch, but still allowing the windows combo
shortcuts (WIN+L, WIN+1, WIN+TAB etc) to work. One can still access the start
menu or it's search by clicking with mouse.
... |
## ℹ Computer information
* PowerToys version: 0.21.1.0
* PowerToy Utility:
* Running PowerToys as Admin: yes
* Windows build number: [run "winver"] Microsoft Windows NT 10.0.19041.0
## 📝 Provide detailed reproduction steps (if any)
Actually wasn't even doing anything on my computer, just had powertoys ru... | 0 |
macOS Catalina 10.15.4
NumPy 1.18.4
PyPy 7.3.1 (Python 3.6.9) with GCC 4.2.1 Compatible Apple LLVM 11.0.3
(clang-1103.0.32.59)] on darwin
Build issue after installing development version of SciPy as per the
instructions mentioned in INSTALL.rst.txt
The issue seems to be happening only with pip_pypy3 (PyPy 7.3.1)... |
macOS Catalina 10.15.4
NumPy 1.18.4
PyPy 7.3.1 (Python 3.6.9) with GCC 4.2.1 Compatible Apple LLVM 11.0.3
(clang-1103.0.32.59)] on darwin
Issue while trying to install SciPy 1.4.1 (latest) as a dependency of sklearn.
This issue is still present if I try to install SciPy directly.
#### Reproducing code example:
... | 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.2+
* Operating System version: mac
* Java version: jdk8
### Steps to reproduce this issue
r... |
* [ x ] I have searched the issues of this repository and believe that this is not a duplicate.
* [ x ] I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: latest
* Operating System version: mac
* Java version: 1.8
### Steps to reproduce th... | 0 |
_From@jwulf on November 24, 2015 12:49_

_Copied from original issue:microsoft/vscode#544_
|
**TypeScript Version:**
nightly (1.9.0-dev.20160217)
**Code**
A contrived example:
interface Convert {
(arg: string): number;
(arg: number): string;
}
function convert(arg: number | string): number | string {
return typeof arg === 'number' ? arg.toString() : parseFlo... | 0 |
Noticed on freebsd-amd64-race:
http://build.golang.org/log/bfca7707a0ccb2dd15e8228eb5b97434c33d1143
WARNING: DATA RACE
Write by goroutine 71:
database/sql.(*Stmt).Query()
/tmp/buildlet-scatch184358971/go/src/database/sql/sql.go:1436 +0x6f3
database/sql.func·039()
/tm... |
The godoc output for this program fragment:
type privateType interface {
Foo()
}
func F(x privateType) {}
will mention that x has type privateType but won't describe that type, making it
impossible for the user to know what arguments can be passed to F without rea... | 0 |
### Documentation Link
https://matplotlib.org/stable/api/figure_api.html?highlight=note#module-
matplotlib.figure
### Problem
The usage of
Notes
------
vs
Note:
vs
.. note::
is a bit inconsistent. As an example, the linked page use all three versi... |
### Documentation Link
_No response_
### Problem
We currently have a mix of `.. notes::` and numpydoc Notes in the docstrings,
and they render differently (compare e.g.
https://matplotlib.org/devdocs/api/_as_gen/mpl_toolkits.mplot3d.axes3d.Axes3D.html#mpl_toolkits.mplot3d.axes3d.Axes3D.grid
and
https://matplotlib.... | 1 |
Q | A
---|---
Bug report? | yes
Feature request? | no
BC Break report? | no
RFC? | no
Symfony version | dev-master
I have reproduced this in a small example in this git repository.
If I load my dependency injection configuration from a config file that looks
like this the environment variables aren't ... | Q | A
---|---
Bug report? | yes
Feature request? | no
BC Break report? | no
RFC? | no
Symfony version | 3.2.2
Hi,
I'm trying to use the new `env()` placeholder introduced with #19681, but I
can't get it to work. I installed `symfony/dependency-injection|config|yaml`,
and I followed Setting up the Cont... | 1 |
#### Why is this important and How to do it?
I see a lot of job seeking websites are asking for Github username, because
they are interested to know what we have done till now with codding.
And that's where my idea comes from, we have so much code written in FCC and
so little in Github!
Why not connect FCC with G... |
We are looking for a low-friction way for campers to be able to push their
Free Code Camp challenge solutions to a GitHub repository.
We need to establish:
* is it possible to create, then write to, a camper's open source repository? (https://developer.github.com/v3/repos/#create)
* could we push a .md file wit... | 1 |
Just to confirm that there are numerous translations that are missing in the
Spanish translation. I think a message asking for help for translation or any
indication of why some of them are not still completed should be considered?
|
As an user, when completing challenges in a non-english language and running
into a challenge that does not have an active translation, I want a
notification explaining that translation is being worked on, and the current
one is missing. And invitation to contribute with it, perhaps?
Said notification should link to... | 1 |
From @cherusk on 2016-09-16T16:58:59Z
Come back to me asap, please. Were prepared for impl. if OK.
##### ISSUE TYPE
* Feature Idea
##### COMPONENT NAME
mount module
##### ANSIBLE VERSION
ansible 2.0.0.2
Copied from original issue: ansible/ansible-modules-core#4885
|
##### Issue Type:
Bug Report
##### Ansible Version:
Ansible 1.9.2
##### Ansible Configuration:
[defaults]
library = /etc/ansible/library
##### Environment:
Ubuntu 14.04 LTS
##### Summary:
When a playbook is run more than once concurrency from one host to another a
suspected race condit... | 0 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
Core
##### ANSIBLE VERSION
2.4.0.0
(Probably. Install busted so it's hard to tell.)
##### CONFIGURATION
Not got that far
##### OS / ENVIRONMENT
macOS Sierra 10.12.6 (16G29)
Xcode 9.0 installed
##### SUMMARY
Can't install: `sudo pip ... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
include_role
##### ANSIBLE VERSION
ansible 2.4.0.0
config file = /usr/local/etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
##### OS / ENVIRONMENT
FreeBSD-11.1-RELEASE
##### SUMMARY
Cannot find t... | 0 |
I can't see what actually caused the test to fail.
|
I'm not sure if this is an artifact of how we're using `test`, or if we're
printing this stack trace ourselves.
Here's an example:
00:06 +0 -1: end-to-end test tap on the floating action button; verify counter
DriverError: Failed to fulfill WaitFor due to remote error
... | 1 |
Traceback (most recent call last):
File "C:\Users\zuha\AppData\Local\Programs\Python\Python36\lib\site-
packages\tensorflow\python\pywrap_tensorflow_internal.py", line 14, in
swig_import_helper
return importlib.import_module(mname)
File "C:\Users\zuha\AppData\Local\Programs\Python\Python36\lib\importlib_
_init_... |
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 |
I can't postmessage a shared WebAssembly memory or module to a worker:

results in:

Sam... |
# Deno op dispatch and native plugins
## Overview
Deno dispatch system is based on
Deno.core.send(opId: number, control: null | ArrayBufferView, data?: ArrayBufferView)
* a function that passes messages from JS to Rust and executes function described with `opId`.
Message passing is done using so-... | 0 |
# Possibility to setup rules for automatic moving windows in to zones.
I think it might be a useful feature when newly opened window will be moved in
to defined zone automatically. The rules for automatic moving can be applied
based on process name (and/or window title, etc).
The rules can be applied when window i... |
Hi all,
It would be great to choose what apps to show up on startup within a specific
layout using FancyZones. For example, I have a setup of two displays and three
virtual desktops and I need to open my apps and reposition them on the screen
each time I boot-up my system.
| 1 |
conda activate base
2.0.0-alpha0
2019-05-29 19:58:31.543654: I
tensorflow/core/platform/cpu_feature_guard.cc:142] Your CPU supports
instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
2019-05-29 19:58:31.557759: I
tensorflow/stream_executor/platform/default/dso_loader.cc:42] Successfully
... |
_Please make sure that this is a bug. As per ourGitHub Policy, we only
address code/doc bugs, performance issues, feature requests and
build/installation issues on GitHub. tag:bug_template_
**System information**
* Have I written custom code (as opposed to using a stock example script provided in TensorFlow):
... | 1 |
The typescript typings support a property "openImmediately" in SelectField
which is supposed to be passed to the DropDownMenu child. But the actual
SelectField implementation doesn't support it, it's not passed down to
DropDownMenu, there's a console error instead:
warning.js:33 Warning: React does not recognize the... |
### Problem description
Safari has issues with rendering the CircularProgress component. The CPU load
rises rapidly and the page freezes. Moreover, the circle looks odd since it is
shown in a fully closed fashion.
### Link to minimal working code that reproduces the issue
`<CircularProgress size={80}/>`
### V... | 0 |
This not happens outside terminal = using powershell directly.
# Steps to reproduce
1. start type anything
2. press space
# Expected behavior
1. the left space or character on the left of command do not delete
# Actual behavior
1. any character on left was deleted and the command characters go to left
... |
# Environment
Windows build number: 0.3.2171.0
Windows Terminal version (if applicable): 0.3.2171.0
Any other software?
# Steps to reproduce
1. Open Windows Terminal
2. Change to any of the Vietnamese input methods and type
# Expected behavior
* Vietnamese texts being entere... | 0 |
### Input Code
The following test suite describes the issue:
import {expect} from 'chai';
class Demo {
bad = async (x) => arguments[0];
good = (x) => (async () => (x))();
}
describe('async bound handlers', function() {
lazy('demo', () => new Demo('Scope leak!'))... |
if I create class property and assign in a bound function, in the generated
code I can access particular arguments without problem, but if I try to access
`arguments` it brings class constructor's `arguments` into the closure and
they become `arguments` of the bound function.
this is what I'm trying to achieve
... | 1 |
[Enter steps to reproduce below:]
1. ...
2. ...
**Atom Version** : 0.189.0
**System** : Mac OS X 10.10.2
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: ENOENT: no such file or directory, open
'/Users/akihiroyajima/Dropbox/Settings/.atom/packages/save-
session/projects//Users/ietty/Works/total... |
My settings have `tab spaces` set to 4. I also have `soft tabs` enabled - as
well as `Show invisibles` so I can see that spaces are being inserted instead
of tabs.
If I hit space bar 4 times (or hit tab once).
.
* Mention the authors (see `Definitions by:` in `ind... | 0 |
After I upgraded the React version of the project from 16.14.0 to 18.2.0, the
console reported the following warning after the project started
Warning: Internal React error: Expected static flag was missing. Please notify the React team.
 before being passed as a child.
Is really useful but... not so much if you don't know where the offending code
is. A trace call would _really_ help narrow down where in an application the
problemat... | 1 |
##### Description of the problem
Hello,
We're facing a problem with some envmap using. On firefox for Android, if you
try to run (for example) this sample :
https://threejs.org/examples/webgl_loader_gltf.html the 3D helmet model will
not be rendered.
We did investigations and we noticed than the problem is present... |
I've been testing returning indexed buffer geometry with the FBXLoader, and it
looks like it should be possible (at least, I have it working for some simple
models consisting of just vertices and normals).
It certainly reduces duplication of vertex info a lot, especially when
dividing up quads.
Getting the indexing... | 0 |
I am trying to define optional externals in an es6 project.
The feature exists - #339 , but there is no flag that I can set in the
(externals) configuration to make a dependency optional. Digging into the code
I found that optional is a flag checking for reasons, and if every reason's
dependency is marked as option... |
I npm installed bootstrap version 3.3.6 and imported it into vendor.ts.
Everything seems to be working except the glyphicons, specifically .glyphicon-
search is only working in safari, but not showing up in Chrome and Firefox. In
Chrome in dev tools, I can see it finds the source.
I have these errors in my console:
... | 0 |
**System information**
* Have I written custom code (as opposed to using a stock example script provided in TensorFlow): Yes
* OS Platform and Distribution (e.g., Linux Ubuntu 16.04): nvidia-docker `tensor:19.02-py3` (Ubuntu 16.04)
* TensorFlow installed from (source or binary): Source
* TensorFlow version ... |
## **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): Linux Ubuntu 16.04, nvcr.io/nvidia/tensorrt:19.02-py3
* Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue h... | 1 |
# What / Why
For switching different Node.js version, we use symlink for global
node_modules.
$ ls -ld /usr/local/lib/node_modules
/usr/local/lib/node_modules -> /var/packages/Node.js_v16/var/node_modules
The global module directory and npm itself is removed after installing global
module.
... |
### Is there an existing issue for this?
* I have searched the existing issues
### This issue exists in the latest npm version
* I am using the latest npm
### Current Behavior
If I have a symlink called `node_modules` to a different directory, then npm
will remove this symlink and create a real folder. This ... | 1 |
I am trying to build a zip file only containing the code I need for production
deployment. Smaller builds benefit nearly all production users: cheaper to
store indefinitely, quicker to roll out after build finish, faster to load
cold start in serverless, and for large projects it is easy to go over
serverless dist li... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
When I was reading source codes of next.js, I found an interesting place,
https://github.com/zeit/next.js/blob/canary/lib/router/router.js#L138.
We'd better to return `true` there? Those codes were intro... | 0 |
It'd be nice if there was an upgrade function for the plugin binary to save
having to uninstall and then install when a new version of a plugin is
released.
Even if it was just a download and overwrite to begin with, it could be
expanded from there.
|
To update a plugin, we need to remove it first otherwise, elasticsearch will
complain that it's already installed:
sudo bin/plugin -install mobz/elasticsearch-head
-> Installing mobz/elasticsearch-head...
Failed to install mobz/elasticsearch-head, reason: plugin directory /usr/share/elasti... | 1 |
gotype $GOROOT/src/pkg/net
leads to several error messages due to unresolvable 'import "C"'.
go/types could be more tolerant with invalid operands and types to avoid follow-up
errors.
(For instance, conversions of the form T(x) could always succeed even if x is invalid.
... |
by **skinner.david** :
Before filing a bug, please check whether it has been fixed since the
latest release. Search the issue tracker and check that you're running the
latest version of Go:
Run "go version" and compare against
http://golang.org/doc/devel/release.html If a newer ve... | 0 |
##### System information (version)
* OpenCV => 3.4.3
##### Detailed description
the bindings generator seems not to respect the `HAVE_OPENCV_*` defines.
##### Steps to reproduce
in cmake set:
BUILD_LIST=features2d,python3
you will get a compile error like
opencv/build/module... |
##### System information (version)
* OpenCV => 3.3.1
* Operating System / Platform => Ubuntu 16.04
* Compiler => /usr/bin/c++ (ver 5.4.0)
##### Detailed description
FlannBasedMatcher has two methods, constructor `FlannBasedMatcher` and
`create()` that can't be wrapped without optional flann module but `CV_WR... | 1 |
The compiler should allow shebangs to pass through.
http://stackoverflow.com/questions/23298295/how-to-make-a-shell-executable-
node-file-using-typescript
|
**TypeScript Version:**
1.7.5 / 1.8.0-beta / nightly (1.9.0-dev.20160217)
**Code**
// A self-contained demonstration of the problem follows...
**Expected behavior:**
**Actual behavior:**
| 0 |
Challenge http://freecodecamp.com/challenges/waypoint-use-responsive-design-
with-bootstrap-fluid-containers has an issue. Please describe how to reproduce
it, and include links to screenshots if possible.
When instructed to wrap all html elements in div this Waypoint gives you
credit prematurely (by simply creating... |
Challenge http://freecodecamp.com/challenges/waypoint-use-responsive-design-
with-bootstrap-fluid-containers has an issue.
We need to put all of our html codes in a div with a class container-fluid,
but it doesn't matter where you put your code ...div class="container-
fluid"></div... challange accept it everytime.
... | 1 |
### System info
* Playwright Version: [v1.30]
* Operating System: [ Jenkins CI, Docker, Ubuntu 20]
* Browser: [Chromium]
* Other info:
### Source code
**Link to the GitHub repository with the repro**
https://github.com/kLjubomir/playwright_reproducible
Additional information on Jenkins and Dockerization:... |
### System info
* Playwright Version: [v1.34.3]
* Operating System: [Ubuntu 20]
* Browser: [All]
* Other info:
### Source code
* I provided exact source code that allows reproducing the issue locally.
**Link to the GitHub repository with the repro**
[https://github.com/your_profile/playwright_issue_tit... | 0 |
**David Pedowitz** opened **SPR-4770** and commented
Introduce `@HandlerInterceptor` to create a more symmetrical relationship
between `@Controller`, `@ModelAttribute` and `@RequestParam`.
This came out of some questions and brainstorming in a Spring training session
in LA, 5/1/08 with Chris Beams, Tchavdar Ivanov... |
**Mark Davies** opened **SPR-8471** and commented
A less significant version of this problem has already been raised under
#10033 \- a performance bottleneck affecting Wicket. However, the same issue
causes a serious thread deadlock in our application, occasionally preventing
application startup.
The basic issue s... | 0 |
Lately I have been playing with fonts with ligatures like PragmataPro, Fira
Code, Hasklig, etc...
The only way I have found to make Atom to actually render any ligature is by
adding `text-rendering: optimizeLegibility` to my style config. Anyways, this
completely breaks pretty much the entire editor. Cursor position... |
I'm using the Atom for Windows Alpha from the Atom website (not Chocolatey),
version 0.136.0 (as viewed in the Help menu and with `--version` in the
command line, the `version` file in the Atom folder says v0.17.1; it was
downloaded around 12:30AM US Eastern on October 14, 2014 if that helps) on
Windows 8.1. I set `t... | 1 |
Challenge http://www.freecodecamp.com/challenges/bonfire-return-largest-
numbers-in-arrays has an issue. Please describe how to reproduce it, and
include links to screenshots if possible.
It doesn't matter what code you write, your get the same error:
Cannot read property 'eql' of undefined
Even chopping the func... |
Challenge Build a Tic Tac Toe Game has an issue.
User Agent is: `Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML,
like Gecko) Chrome/49.0.2623.87 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
If you select 'x', let the game place an 'o' in sp... | 0 |
From @basictheprogram on 2016-10-20T21:26:19Z
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
script module
##### ANSIBLE VERSION
$ ansible --version
ansible 2.3.0 (devel 05aed6e52e) last updated 2016/10/18 22:32:33 (GMT -500)
lib/ansible/modules/core: (detached HEAD b59b5d36e0) las... |
##### Issue Type:
Bug Report
##### Ansible Version:
ansible 1.5.5
##### Environment:
Running from NixOs, managing GCE (small instance) Debian 7.4 without
backports.
##### Summary:
The problem is that the file and unarchive (possibly others) freeze when using
sudo user option on a task. This basically breaks th... | 0 |
I just stumbled across this in the minified version of Bootstrap 1.3.0. On
line 4 we have:
ol,ul{list-style:none;}
and on line 88 we have:
ul,ol{margin:0 0 18px 25px;}
. Obviously they could be written as one rule:
ul,ol{margin:0 0 18px 25px;list-style:none;}
... |
I've noticed that Bootstrap doesn't change it font sizes between layouts. Why
is that? For example, the H1 font size is 36px. This seems fine on a desktop
but is WAY too big on a mobile layout. What was the reasoning behind not
making the font sizes responsive?
And if I wanted to make them responsive, is that easy t... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.