text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
Original discussion at https://groups.google.com/forum/#!searchin/golang-
dev/json$20map/golang-dev/5gSHNrJQpUI/vZGSGRmUrC0J
Currently, json.Marshal will fail to marshal Go maps that have non-string
keys, e.g.:
// http://play.golang.org/p/2m9wLZATqw
type Coord struct { X,Y int }
occupied := ma... |
by **lexszero** :
What steps will reproduce the problem?
Build any package using cgo wtih following command:
GOARM=5 GOARCH=arm go build -x
What is the expected output?
Package build process
What do you see instead?
lexs@nyapad ~/.go/src/code.google.com/p/gosqlite/sqli... | 0 |
For audio / scalar time series / 1d signals of shapes T or BxT, one currently
has to unsqueeze at least to 3d tensor and then squeeze back.
With PyTorch now used for everything and not just imaages, easy support for 1d
signals would be great!
|
Currently, `torch.nn.functional.interpolate` has dedicated implementation for
1d, 2d and 3d data, as well as for nearest, bilinear and bicubic
interpolation. The set of different kernels that are dispatched can be seen
here.
Those implementation are all very similar one to the other, and there is a lot
of code dupli... | 1 |
**Migrated issue, originally created by RobS (@phro)**
I'm not really sure what's going on here but for this particular schema after
reflection via the automapper the indexes are duplicated. If you remove
anything from the table definitions the duplication goes away.
$ cat repro.sql
CREATE TABLE... |
**Migrated issue, originally created by Marek Derňár (@marderko)**
Founded bug in "Transactions and Connection Management" documentation
http://docs.sqlalchemy.org/en/latest/orm/session_transaction.html section
"Supporting Tests with Rollbacks". There is:
# then each time that SAVEPOINT ends, reopen i... | 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.... | 1 |
If I've interpreted it correctly seems that there is some strange behavior
with Keras multi inputs and the estimator.
* Why input layers are renamed with `_1` suffix?
* Why TB display a `_2` suffixed parallel sub-graph?
I've attached a snippet runnable on colab and the TB rendered image.
from ten... |
Hello, guys.
I got an error just after install Python 3.5.3 and Tensorflow in a Windows 10
system and it fails in the very first test, the one suggested in Tensorflow
install instructions.
The messages I got are here:
Python 3.5.3 (v3.5.3:1880cb95a742, Jan 16 2017, 16:02:32) [MSC v.1900 64 bit
(AMD64)] on win32 ... | 0 |
* Electron version: 1.4.0
* Operating system: OS X 10.11.6
Hi Electron team,
Awesome project! Discovered this the other day and it's on our way to
production!
Chrome 53 has a flag `Desktop Share with tab source` (chrome://flags/#tab-for-
desktop-share) that enables audio recording on the tab level. Is this pos... |
* Electron version: `0.37.0`
* Operating system: All
I've been trying for weeks now to figure this out, I need to somehow capture
the audio output from my electron application. But the `desktopCapturer` API
appears to exclude that exact use case 😢
Is there an alternative way of performing this capture WITHOUT ... | 1 |
In [48]: s = pd.Series([np.NaN, 'hello world'])
In [49]: s
Out[49]:
0 NaN
1 hello world
dtype: object
In [50]: s.fillna([])
Out[50]:
0 NaN
1 hello world
dtype: object
In [51]: s.fillna(['not empty'])
Out[51]:
... |
Should raise on a passed list to `value`
The results from the fillna() method are very strange when the value parameter
is given a list.
For example, using a simple example DataFrame:
> df = pandas.DataFrame({'A': [numpy.nan, 1, 2], 'B': [10, numpy.nan, 12],
> 'C': [[20, 21, 22], [23, 24, 25], numpy.nan]})
> df... | 1 |
This text in the spec:
---
As a special case, if the return parameters of a function or method g are equal in
number and individually assignable to the parameters of another function or method f,
then the call f(g(parameters_of_g)) will invoke f after binding the return values of g
... |
go version go1.3beta2 +1de165698f51 Thu May 22 11:45:03 2014 -0400 darwin/amd64
The program is
package a
type S struct {
x interface{}
i int
}
func f() {
c := make(chan int)
a := [2]*int{}
for ; ; c <- *a[S{}.i] {
}
}
... | 0 |
**Do you want to request a _feature_ or report a _bug_?**
This is a bug report. I think this bug and one already reported (#13856) have
the same root cause.
**What is the current behavior?**
A component instance preventing its own rerender, by returning `false` from
`shouldComponentUpdate` may under certain con... |
**Do you want to request a _feature_ or report a _bug_?**
bug.
**What is the current behavior?**
In a component tree where legacy context and new context are co-exisiting,
when components are placed on tree nodes under the legacy context provider and
between new context provider and consumer, components are alway... | 1 |
Installation of scipy using zc.buildout fails, because `numpy.distutils.core`
is not available during install:
$ ./bin/buildout
Unused options for buildout: 'unzip'.
Getting distribution for 'scipy'.
Traceback (most recent call last):
[…]
File "setup.py", line 230, in <module>
... |
See numpy/numpy#8762
| 0 |
When trying to use jasmine and angular-scenario type definitions in same
project, I get the following conflicts:
Duplicate identifier 'browser'.
Duplicate identifier 'element'.
The property 'toThrow' does not exist on value of type 'angularScenario.Expect'.
The property 'toNotEqual' d... |
I'll try and add a section to the bottom of `npm test` script to show the
error log for each file that failed.
Creating here to track and prevent duplication of effort.
| 0 |
### Apache Airflow version
2.3.0 (latest released)
### What happened
In the new grid view, tasks are not visible if they contain dots in their name
(but are shown in the details panel and graph view).

... |
### Apache Airflow version
2.3.0 (latest released)
### What happened
`task_id` with `.` e.g. `hello.world` is not rendered in grid view.
### What you think should happen instead
The task should be rendered just fine in Grid view.
### How to reproduce
#
# Licensed to the Apache Software Founda... | 1 |
**Description**
Up until database interaction is introduced, the tutorial for FastAPI uses
pydantic models for everything, such as this example in the sextion on Extra
Models :
class UserOut(BaseModel):
username: str
email: EmailStr
full_name: str = None
class Use... |
**Describe the bug**
Getting duplicate headers on API methods with subdependencies requiring the
same dependency with a Header argument.
**To Reproduce**
I've created an example repo to reproduce
https://github.com/henriklindgren/fastapi-header-bug
Steps to reproduce the behavior:
1. Create an API-method w... | 0 |
$ cat test.rs
enum A { B = A::B as isize }
fn main() {
println!("{}", A::B as isize);
}
$ rustc test.rs
thread 'rustc' has overflowed its stack
Illegal instruction (core dumped)
$ rustc --version --verbose
rustc 1.0.0-beta (9854143cb 2015-04-02) (built 20... |
enum X { A = X::A as isize }
fn main() {}
thread 'rustc' has overflowed its stack
Illegal instruction (core dumped)
| 1 |
**I'm submitting a ...**
[ ] bug report
[X] feature request
[ ] support request
**Current behavior**
Routes do have only a path and are accessed by this path e.g. `<a
routerLink="/crisis-center">Crysis center</a>`
**Expected behavior**
Routes should have a fixed synonym which they ca... |
**I'm submitting a ...** (check one with "x")
[x] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
... | 0 |
* VSCode Version: 1.0.0
* OS Version: OS X El Capitan 10.11.4
No syntax highlighting for C#. Also unable to select C# from the languages
menu.
Steps to Reproduce:
1. Open a .cs file in Visual Studio Code
Expected:
* Syntax highlighting for C# supported.
Actual:
* File is recognised as Plain Text

, what I see is described ... | 1 |
If I navigate to an Angular SPA from another page (outside the SPA), I have to
click back twice to return to where I was. When the page first loads a
duplicate history entry is created. If I keep refreshing the SPA page, the
history gets longer and longer...
Some initial investigation shows that:
* The problem do... |
In case of an Observable array, in component template if we add *ngIf ="
(list$ | async)?.length>0" it doesn't loops through the child *ngFor.
For example if I have below Observable list in the component:
`list$: Observable<any[]>;`
and below in template:
<div>
Length: {{(list$ | async)?.len... | 0 |
[x ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see
https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
I have separated my application into `js` directory ... |
JIT path use relative to wwwroot but AoT use relative path
for JIT: templateUrl:'app/app.html'
for AoT: templateUrl:'app.html'
this bothers me everytime I change from or to AoT compile
| 1 |
_Original tickethttp://projects.scipy.org/scipy/ticket/706 on 2008-07-23 by
trac user rjansen, assigned to @wnbell._
Hi,
I'm trying to compile scipy on Solaris 10:
After, what seems to be a succesfull LAPACK and ATLAS build with the GNU
compiler 4.0.2 (switched to sunfreeware python,w hich is build with GNU
compi... |
This started out as a hack on stack overflow to speed up construction of csr
matrices.
As in some cases savings are considerable (several-fold reduction in time
needed), it was suggested to me to offer this for inclusion in scipy.
I'm on Python 3.6, numpy 1.11.3, scipy 0.18.1
The speedup is achieved by
* using ... | 0 |
### Bug report
**Bug summary**
The figure is copying the image background of the window when I set the
facecolor to None.
**Code for reproduction**
import sys
from PyQt5.QtCore import Qt
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
import matplotlib
matplotlib.use... |
Bug also reported here: https://bugs.archlinux.org/task/41790
When clicking on the Save button on the NavigationToolbar, I get an error:
`Format "png)')" is not supported. Supported formats: eps, jpeg, jpg, pdf,
pgf, png, ps, raw, rgba, svg, svgz, tif, tiff.`
I tracked the bug to be coming from the output of the... | 0 |
### Bug report
**Bug summary**
The axes of a subplot_mosaic show up in a random order in `fig.axes` (likely
due to the use of a `set` for uniquification in `_identify_keys_and_nested`).
**Code for reproduction**
for _ in $(seq 10); do python -c 'from pylab import *; fig, axs = subplot_mosaic("ab"); ... |
Consider the following example:
import matplotlib.pyplot as plt
import numpy as np
fig,axes = plt.subplots()
line_A = axes.plot( np.random.random(10), label="foo" )[0]
line_B = axes.plot( np.random.random(10), label="bar" )[0]
line_C = axes.plot( np.random.random(10), label="qu... | 0 |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: latest
### Step to reproduce this issue
1. export a rest service DemoService with a url: rest://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.4-SNAPSHOT
* Operating System version: win7
* Java version: 8
### Steps to reproduce this is... | 0 |
I can reproduce it reliably, and have tracked it down to what seems like an
ARM code generation bug.
julia> versioninfo()
Julia Version 1.7.0
Commit 3bf9d17731 (2021-11-30 12:12 UTC)
Platform Info:
OS: macOS (arm64-apple-darwin21.1.0)
CPU: Apple M1 Max
WORD_SIZE: 64
... |
From worker 6:
From worker 6: signal (11): Segmentation fault: 11
From worker 6: in expression starting at /Users/keno/julia/usr/share/julia/stdlib/v1.8/LinearAlgebra/test/svd.jl:68
From worker 6: ntuple at ./ntuple.jl:0
From worker 6: unknown function (ip: 0... | 1 |
**Current behavior:**
* Switch to "latest" version of docs
* click on the `docs` link at the top of the page (for example, to switch between the `manual` and `standard library` docs
* The docs pages revert back to `1.0`
**Expected behavior:**
* Once the docs are switched to `latest`, all links should only ... |
Is there a better way to show the `latest` and `release-0.1` versions of the
manual? People cannot guess that the readthedocs icon at the bottom is a
clickable drawer that is closed by default. The interface is not easy to use -
one frequently has to try a couple of times.
Is there a way to make it so that the defau... | 1 |
Description of what I'm doing:
I'm porting the hello world app on the Quick Start page to Clojurescript
https://github.com/atom/atom-shell/blob/master/docs/tutorial/quick-start.md
Here is my port of main.js to Clojurescript:
https://gist.github.com/frankhale/8fe873601fb4212cdc87
I have the requisite files in my ... |
Even when launching from the command line, any JS error occuring in main.js is
internally trapped, preventing debugging. Instead, you get the following:

The error is not reported in ... | 1 |
Unlike Python2, Python3's (builtin) round function is documented to return an
integer when called with a single argument. However, numpy float dtypes do not
satisfy this, returning a float instead.
|
`round(x)` (i.e. `object.__round__(self)`) is expected to return an `int`, but
for numpy floats, it returns a numpy float.
| 1 |
hello! i have the problem when i use the node module "create vite@latest" on
Windows OS, with deno it asks me for certain permissions and when i start in
the command terminal it does not allow me to select the correct tool, it only
stays stuck in the vanilla option, is there any way to solve this? i want to
select th... |
Is supporting Vite on Deno's radar?
Although many Node.js libraries already work with Deno, Vite is a whole
different beast and probably needs changes on Deno's side.
Note that it's not only about supporting Vite, but also its entire ecosystem
(SvelteKit, vite-plugin-ssr, etc.).
FYI Bun is working on supporting Vi... | 1 |
by **namegduf** :
What steps will reproduce the problem?
1. Copy the following into a file:
package main
import "fmt"
func main() {
wait := make(chan bool)
go func() {
<-wait
fmt.Printf("Test!")
}... |
by **montsamu** :
Before filing a bug, please check whether it has been fixed since
the latest release: run "hg pull -u" and retry what you did to
reproduce the problem. Thanks.
What steps will reproduce the problem?
1. need to make an http.Get request but specify a head (e.g.
... | 0 |
Hi!
I'm (eventually) attempting to build a PostCSS/cssnext setup on top of
Next.js, but somehow importing a CSS file cannot be resolved.
My `pages/index.js` file tries to import the `pages/index.css` file (that
exists):
import './index.css'
With the Webpack config:
**next.config.js:**
... |
Sometimes it's nice to break out your CSS into a separate `.css` file. I've
tried to do the following:
pages/
└── index
├── index.css
├── index.js
└── component.js
Then in the index.js, I've tried to do:
import css from './index.css'
And in next.config.... | 1 |
**Apache Airflow version** : 2.0.1
**Kubernetes version (if you are using kubernetes)** (use `kubectl version`):
**Environment** :
* **Cloud provider or hardware configuration** : Dell Latitude
* **OS** (e.g. from /etc/os-release): Ubuntu 20.04.2 LTS
* **Kernel** (e.g. `uname -a`): 5.8.0-48-generic #54~20... |
### Body
I have a kind request for all the contributors to the latest provider packages
release.
Could you please help us to test the RC versions of the providers?
Let us know in the comment, whether the issue is addressed.
Those are providers that require testing as there were some substantial
changes introduce... | 0 |
I wanted to use this `--autoreload` option. But just after I add it I have:
celery -A proj status
Error: No nodes replied within time constraint.
Before that:
celery -A proj status
celery@hostname: OK
1 node online.
So now when I call `celery call tasks.taskn... |
# 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 |
#### Code Sample, a copy-pastable example if possible
As expected:
import pandas as pd
all_cols = list("abcdefg")
informative_cols = ["a","c","g"]
dfrandom = pd.DataFrame(pd.np.random.rand(5, len(all_cols)), columns=all_cols)
field = informative_cols[0]
print(field)... |
## In [6]: DataFrame.from_records( [(1,2,3)], columns=['a','b','a'])
IndexError Traceback (most recent call last)
/home/adam/bin/jtds/ in ()
\----> 1 DataFrame.from_records( [(1,2,3)], columns=['a','b','a'])
/home/adam/code/pandas/pandas/core/frame.pyc in from_records(cls, data, index,
exclude, columns, names, ... | 0 |
是否增加eureka注册中心的支持
how do supported eureka as service discovery?
|
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.5.9~2.5.10
* Operating System version: any
* Java version: any
### Step to reproduce this issu... | 0 |
## Steps to Reproduce
1. Run the following app: https://gist.github.com/tvolkert/1458377c6d4bfb582e14bb284083c1b2
2. In the drawer, select "Show Breakage" to set the `Material.debugEnablePhysicalModel` value to `true`.
3. Look closely at the text rendering within the tab contents
## Results
The rendering of ... |
Test device: **Pixel XL**
The `PageView` contents are rendered correctly on the initial render but once
you start scrolling they become corrupted. They will remain this way even
after the scrollable "settles".
The following are examples of text and a `Widget` near the edges of a
`DecoratedBox`:
![screen shot 2017-... | 1 |
_Please make sure that this is a build/installation issue. As per ourGitHub
Policy, we only address code/doc bugs, performance issues, feature requests
and build/installation issues on GitHub. tag:build_template_
**System information**
* OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Linux Ubuntu 16.04... |
### System information
Linux 4.9.0-kali4-686-pae #1 SMP Debian 4.9.25-1kali1 (2017-05-04) i686
GNU/Linux
TensorFlow installed from source code
TensorFlow version : 1.0.1
Bazel version : 0.4.2
CUDA/cuDNN version: None
GPU model and memory: None
> == cat /etc/issue ==========================================... | 0 |
When clicking the [src] link at the top right of the page of all of the rust
docs pages, you are taken to the 'not found' page instead of being taken to
the relevant source file.
|
I don't think it is, but might be a duplicate of issue #17740.
trait Foo<'a>: 'a {}
impl Foo<'static> for ||: 'static {} // or impl<'a> Foo<'a> for ||: 'a
fn main() {}
* * *
<anon>:3:1: 3:37 error: internal compiler error: cannot relate bound region: ReEarlyBound(6, Typ... | 0 |
# Environment
Windows build number: Microsoft Windows [Version 10.0.18362.10005]
Windows Terminal version: master build commit dca0ffe6dd0f76ca7997807424a2c08684e07751
Debugging mode (Debug x64) under Visual Studio 2019.
# Steps to reproduce
* Use a build from latest master commit... |
# Environment
Windows build number: 10.0.19008.0
Windows Terminal version: 0.6.2951.0
WSL 2: Ubuntu 19.04
# Steps to reproduce
* Open terminal
* Open file to edit in vim
* Type ':set mouse=a' to enable mouse mode globally
* Attempt to scroll
# Expected behavior
* Scrolling an... | 0 |
As @yujuhong noted it'd be useful to reduce variance of measurements.
Additionally we may want to include fluentd pod in the measurements.
|
Since 4:25PM the e2e test `ResourceUsage should not exceed expected amount`
has been failing.
Looking at the last batch of merged PRs I can't tell if any of them are
responsible, either individually or in combination. Please can the PR authors
@eparis @BenTheElder @nikhiljindal @gmarek @feihujiang @yifan-gu have a ... | 1 |
Posted first on stackoverflow, but no response as of yet.
Any steps I can do to debug further would be appreciated.
##
Environment:
* centos 6.7
* opencv 2.4.12
* python 2.7
* GNU libc 2.12
* gcc version 4.4.7 20120313 (Red Hat 4.4.7-16)
uname output:
Linux xxxx 2.6.32-573.18.1.el6.x86_6... |
Can you please help me understand why I can't get imread to open simple
bitonal files like this one?
https://app.box.com/s/y2h71ydjb7uim1um1gwqjvsuqz2cpmf2
This is an example of what I get. It worked in 3.0 rc but with 3.0.0 it no
longer works.
Unhandled exception at 0x00007FF992BB9A1D (opencv_world... | 1 |
We're parsing `widgets.json` to take advantage of the widget categories in the
inspector. In the process of adding some validation, I noticed that the
following widgets show up more than once (and with different categorizations):
* `GridView`
* `ListView`
* `Transform`
Here are the raw bits:
... |
Steps to reproduce:
1. Launch gallery (profile or debug) using `flutter run`.
2. Go to the URL the console tells you about.
3. Try to do anything useful with the observatory.
| 0 |
Hi people,
I have 2 Django projects (at different branchs/versions) on the same machine
and both use celery for asynchronous tasks.
I figure thanks to **sentry** that tasks from app A are sent to workers of app
B. Each application runs under a different unix user and workers/wsgi run
through **supervisor**.
Here t... |
# Checklist
* [ x] I have checked the issues list
for similar or identical feature requests.
* [ x] I have checked the pull requests list
for existing proposed implementations of this feature.
* [ x] I have checked the commit log
to find out if the same feature was already implemented in the
main bra... | 0 |
* Electron version: Latest
* Operating system: OSX, Windows
I've been rebuilding the spellchecker for notion.so and I thought I would
compile some of the quirks I ran into.
The de facto solution right now is to use electron-spellchecker and we've been
using it for the past year, but recently the language auto-d... |
On OS X apart from the basic spell-checking it also provides a "Spelling and
Grammar" menu that allows some more advanced operations:

Chrome browser has implemented most of ... | 1 |
The current implementation of the Image Sizes listview is having usability
issues: the trash can icon gets cut off while the design is not following OS
design guidelines for lists. It allows for in-line editing, which makes sense
in a datagrid that holds a lot of information that you want to 'quick edit'.
The issues... |
We should restructure the table to make it easier to visually capture the
table.
### Original

### Proposal
: JQuery;
button(methodName: string): JQuery;
and line 1007
tooltip(methodName: string): JQuery;
cause "Duplicate overload signature".
|
Today my builds started failing because of a conflict between requirejs and
node require
This is the compile error I received from typescript:
d:/a/1/s/node_modules/@types/node/index.d.ts(99,13):
error TS2403: Subsequent variable declarations must have the same type.
Variable 'require' must... | 0 |
### System info
* Playwright Version: [v1.32.1]
* Operating System: [Windows 10]
* Browser: [ Chromium]
### Source code
* I provided exact source code that allows reproducing the issue locally.
**Link to the GitHub repository with the repro**
**Config file**
**Test file (self-contained)**
... |
It would be great if Playwright had something similar to CodeceptJS methods:

or

I guess th... | 0 |
Hi, I'm noticing that the back button doesn't trigger getInitialProps.
* I have searched the issues of this repository and believe that this is not a duplicate.
## Steps to Reproduce
1. Go to https://wecured.com/condition/depression
2. Click on 'Symptoms' tab, which will trigger a shallow client transition.
... |
I have an app with a single page `index.js`, and I parse the query parameters
in `getInitialProps`:
static async getInitialProps ({query}) {
console.log('PAGE', query.screenId);
try {
const projectData = await ProjectLoader.loadProject(query);
return projectData;
}
catch... | 1 |

Maybe an issue with the cwd?
|

gnome-terminal env:
❯ env
XDG_VTNR=7
LC_PAPER=en_US.UTF-8
LC_ADDRESS=en_US.UTF-8
XDG_SESSION_ID=c2
XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/daimms
LC_MONETARY=en_US.... | 1 |
request.meta['handle_httpstatus_all'] = True
dfd = self.crawler.engine.download(request, info.spider)
When Media Pipeline schedules request it attached `handle_httpstatus_all` meta
which prevents Redirect Middleware from doing it's job. This breaks download
of images that require redirect, most... |
Basically, what's happened is that my spider is unable to download the files
because the file_urls provided are actually redirected to the final download
link. However, because of the following code, the redirect download middleware
is effectively disabled, which makes the download fail.
def _check_med... | 1 |
$ npm install @discordjs/opus
npm ERR! cb() never called!
npm ERR! This is an error with npm itself. Please report this error at:
this is the error that i got on installing some packages for my app
|
### Is there an existing issue for this?
* I have searched the existing issues
### Current Behavior
When I try to install a package from github using ssh
npm i -g github:georgestech/denis-cli
I have to following output
/usr/local/lib/node_modules/@georgestech/denis-cli $ ls
... | 0 |
**Describe the bug**
There is an issue with some incorrect texture colours when loading a GLTF
model via `GLTFLoader` when `WebGLRenderer` is instantiated with `alpha` set
to `true`.
**To Reproduce**
Steps to reproduce the behavior:
Instantiate `WebGLRenderer` with `alpha` set to `false`.
_**Code**_
... |
Redundant AR button on Safari
A clear and concise description of what the bug is. Before submitting, please
remove unnecessary sections.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to 'AR sample'
2. See 2 icon of AR overlaid
**Expected behavior**
Single AR button
**Screenshots**
**Platform:**
... | 0 |
Pattern comprehension now supports
RETURN [(a)-->(b)-->(c) WHERE b:Movie | [b.year,c.prop1] ] AS myColl
but is does not support
RETURN [(a)-->(b)-->(c),(b)-->(d) WHERE b:Movie | [b.year,c.prop1,d.prop2] ] AS myColl
|
## Regex Failure for neo4j-admin
Regex not detecting files along path, even though regex has successfully been
tested on an online regex platform, as well as in Python. I have tried this
regex with, and without double-quotes, and confirmed the path it's intended to
represent is valid by successfully ingesting from t... | 0 |
Currently when users use words that can't be use as an identifier (this case
will be more common as module and class becomes strict mode code), we should
then have better binding diagnostics to report this error instead of
`Duplicate identifier '(Missing)'.`
|
interface Struct {
a: boolean
b: number
}
let v1: Struct = {a: true, b:1}
let v2: Struct = Object.assign({}, v1, {
b: false
})
`v2` variable now contains `{a: true, b: false}`, which is definetely not
`Struct` type. But there is no compile-time error there. How com... | 0 |
An arrow function as part of an extends clause requires parenthesis. This was
changed before ES2015 became final, see
http://wiki.ecmascript.org/doku.php?id=harmony%3Aspecification_drafts#january_20_2014_draft_rev_22
@gabelevi summarized the issue internally at FB:
1. After "extends" there is a LeftHandSideExpres... |
These non-programs are accepted by babel: `!()=>0`, `a + ()=>0`, `a || ()=>0`,
etc.
Arrows should have the precedence of an assignment expression.
| 1 |
### Feature request
Thank you for the awesome framework!
For my work I wanted to use
`transformers.pipelines.token_classification.TokenClassificationPipeline` in
batch mode, since it is much faster on GPU, but I wanted to keep all the
functionality for grouping entities.
So I want to suggest something like this:... |
### System Info
python: 3.8
transformers: 4.23.1
### Who can help?
@patrickvonplaten
### Information
* The official example scripts
* My own modified scripts
### Tasks
* An officially supported task in the `examples` folder (such as GLUE/SQuAD, ...)
* My own task or dataset (give details below)
### ... | 0 |
Flutter crash report; please file at
https://github.com/flutter/flutter/issues.
## command
flutter doctor
## exception
ArgumentError: Invalid argument(s): Invalid locale 'C.UTF-8'
#0 Intl._throwLocaleError (package:intl/intl.dart:231)
#1 Intl.verifiedLocale (package:intl/intl.dart:225... | ERROR: type should be string, got "\n\nhttps://giphy.com/gifs/mXFpFPmmNIe38jrAJK\n\nVelocity becomes 0 as soon as I lift the finger after a fling.\n\n" | 0 |
The first failure happened at ~9:20 PST 29/04/2015. The failure looks like
that:
/go/src/github.com/GoogleCloudPlatform/kubernetes/_output/dockerized/go/src/github.com/GoogleCloudPlatform/kubernetes/test/e2e/density.go:158
Expected error:
<*errors.errorString | 0xc20b84daa0>: {
s: "Controller my-hostname-densi... |
I haven't looked into the details yet, but it seems that a PR went in at
around 16:30 PDT today (Wed 04/29) that is causing significantly more e2e
failures than usual in our continuous integration.
I'll dig into it in the morning unless one of the oncalls gets there before
me.
| 1 |
The mathtext rendered in the 1.3.1 release does't work with the bundled
pyparsing.py module (1.5.0).
Simply installing the latest version of the pyparsing.py module with easy
install doesn't work. It does if the matplotlib\pyparsing.py file is
overvritten with the newer version (2.0.1).
I don't know why the pyparsi... |
### Bug report
**Bug summary**
Because `IndexFormatter.__call__` doesn't round to the nearest integer but
truncates/round up to the next integer, x ticks labels are duplicated when
user pans plot to left, displaying values below minimum.
**Code for reproduction**
import matplotlib.pyplot as plt
... | 0 |
Using
pmap(sqrt,[-1]); "some other return val"
hides the error to be displayed to stdout.
This also partially applied to warnings, but I couldn't find a simple way to
reproduce it (`pmap(warn,["warning"])` actually shows the warning, but nested
warnings in my real life code actually don't get di... |
@everywhere function do_work(i)
r = [1,2,3][i]
println(r)
return r
end
for r in pmap(do_work, [3,2,1,0])
println("pmap got result")
println(typeof(r))
end
The `pmap()` call above returns a RemoteException object in the result array
instead of re-t... | 1 |
I got the following two errors running "nosetests pandas":
## FAIL: test_fred_multi (pandas.io.tests.test_data.TestFred)
Traceback (most recent call last):
File "/Users/hbi16088/python-virtual-env/basic/lib/python2.7/site-
packages/pandas/util/testing.py", line 1135, in wrapper
return t(_args, *_kwargs)
File ... |
Note the duplication of the assignment is not a copy/paste error-- the first
one works, the second one fails, presumably because a different path is taken
if the column already exists than if it doesn't.
>>> pd.__version__
'0.12.0-1081-ge684bdc'
>>> df = pd.DataFrame({"A": [1,2]})
>>> df._i... | 0 |
Added in #5157 but had to be reverted in #7432 because it breaks
`.tsbuildinfo`.
|
Tracking issue for `deno lsp` subcommand.
Given that a lot of code in `vscode_code` duplicates logic inside `deno`
binary (eg. module resolution algorithm, DENO_DIR path hashing) it becomes
obvious that deno should provide its own LSP.
Implementing LSP inside the binary should make maintaining the extension
easier,... | 0 |
#### Code Sample, a copy-pastable example if possible
des_table = df_final_S1415.describe(percentiles=[.05, .25, .5, .75, .95 ]).T
#### Expected Output
In version 18.0 describe function will return percentiles when columns contain
nan.
#### output of `pd.show_versions()`
But in version 18.1 describe function wil... |
#### Code Sample, a copy-pastable example if possible
import pandas as pd
import numpy
s = pd.Series([1, 2, 3, 4, numpy.nan])
s.quantile(0.5)
nan
#### Expected Output
I would expect 2.5 as output (as with version 0.17.1).
#### output of `pd.show_versions()`
commit: None
python: 2.... | 1 |
[steps to reproduce:]
1. Launch Atom with no project and no file, just the "unitled"
2. right clic on the tabs bar, where no tabs open, just the empty bar
**Atom Version** : 0.198.0
**System** : Windows 8.1
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: Cannot find module './context-menu'
E... |
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 |
In [11]: a = np.dtype({'names':['time','data','pad'], 'formats':['<f8',('<f8', (3, 2)),'<f8'], 'offsets':[0,8,56], 'itemsize':64, 'aligned':True})
In [12]: b = np.zeros(10, dtype=a)
In [13]: b[3][1] = np.ones((3, 2))
In [14]: b
Out[14]:
array([(0.0, [[0.0, 0.0], [0.0, 0... |
_Original tickethttp://projects.scipy.org/numpy/ticket/2006 on 2011-12-23 by
trac user kevin000, assigned to unknown._
Using a recarray with member assignment fails if any column uses the object
data type. I don't understand why this fails, especially since the dictionary
style assignment works.
# Brief example sho... | 1 |
# Environment
Windows build number: [run "ver" at a command prompt]
PowerToys version: 0.13.0
PowerToy module for which you are reporting the bug (if applicable): FancyZones
# Steps to reproduce
Press `Windows`+`Left`
# Expected behavior
Window snaps to the left
# Actual behavior
Win... |
# Environment
Windows build number: Microsoft Windows [Version 10.0.17134.1069]
PowerToys version: 0.11.0
PowerToy module for which you are reporting the bug (if applicable): FancyLayout
# Steps to reproduce
1. Enable "Override Windows Snap hotkeys"
2. Select a three column layout
... | 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.4.1
* Java version: 1.8
### Actual Result
dubbo/dubbo-rpc/dubbo-rpc-
api/src/main/java/org/ap... |
* 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.2
* Operating System version: windows 10
* Java version: 1.8
### Steps to reproduce this iss... | 0 |
Consider implementing an asynchronous file system API.
On the Web, the Native File System API implements an API surface that provides
file and directory access.
* Spec: https://wicg.github.io/native-file-system/
* Explainer: https://github.com/WICG/native-file-system/blob/master/EXPLAINER.md
A similar API shap... |
The proposal for native file system is out.
Where does deno stand?
| 1 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
playbook, tags
##### ANSIBLE VERSION
2.4.0
##### SUMMARY
Fact_gathering is run for plays that do not match a tag.
##### STEPS TO REPRODUCE
- hosts: node-1
gather_facts: yes
tags:
- node-tag
To skip the ... |
With modules taking advantage of module_utils/{ec2,rax}.py there is a lot of
duplicated documentation that has to be managed per module. This is especially
true of the rax modules.
Currently all rax modules, have documentation references to the following
attributes:
api_key
credentials
... | 0 |
First I want to apologize if I've done anything wrong with this bug report,
I'm still new to development and any mistakes made are unintentional.
Environment:
* Python version: 3.11.3
* Flask version: 2.3.0
|
This code is always import error.
(`simplejson` is not included in the `itsdangerous`.)
See: https://github.com/pallets/itsdangerous/blob/master/itsdangerous.py
| 0 |
**Context:**
* Playwright Version: 1.20.0
* Operating System: Mac
* Node.js version: 12.22
* Browser: Chromium, WebKit
* Extra: [any specific details about your environment]
**Code Snippet**
test('example test', async ({ page }) => {
await page.goto(<MY_URL>); // can share the ur... |
### System info
* Playwright Version: [v1.33]
* Operating System: [Windows 10]
* Browser: [Chrome]
* Other info:
### Source code
await Page.GetByRole(AriaRole.Textbox, new() { Name = "Email or phone" }).ClickAsync();
**await Page.GetByRole(AriaRole.Textbox, new() { Name = "Email o... | 0 |
The api for tesitng with pointer events looks something like this:
Point start = new Point(...);
Point end = new Point(...);
tester.dispatchEvent(pointer.down(start), start);
tester.pump();
tester.dispatchEvent(pointer.move(end), start);
tester.pump();
tester.dispatchEvent(point... |
Driving a pointer in a test right now requires pumping, continually giving the
original location, etc.
Instead the API should look something like:
TestGesture gesture = tester.startGesture(downLocation);
gesture.moveTo(newPoint1);
gesture.moveTo(newPoint2);
gesture.moveTo(newPoint3);
g... | 1 |
cli/package.json
Line 72 in 4dbeb00
| "cli-table3": "^0.6.0",
---|---
vulnerability found in "ansi-regex", child dependency of cli-table3
+-- cli-table3@0.6.0
| -- string-width@4.2.2 (at 4.2.3 it upgrades problematic dependencies)
| ---- strip-ansi@6.0.0
| ------ ansi-regex@5.0.0 (vulnerable version... |
### Is there an existing issue for this?
* I have searched the existing issues
### Current Behavior
Security scans fail do to high warning of a security vulnerability in ansi-
regex.
### Expected Behavior
Security scan pass.
### Steps To Reproduce
We use twistlock to do vulnerability detection, which relies ... | 1 |
# Description of the new feature/enhancement
Allow the users to add new languages into terminal, or create "extensions"
like exist in VSCode
# Proposed technical implementation details (optional)
No problem currently, other than end-user inconvenience. I've downloaded
several different language libraries, and each... |
# Description of the new feature/enhancement
When I open File explorer from terminal using command such as `start .`
control should shift to explorer window but it remains in terminal.
# Proposed technical implementation details (optional)
when file explorer starts control should shift to explorer and any further
... | 0 |
From @guenhter on 2016-10-13T15:58:27Z
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
docker_network
##### ANSIBLE VERSION
ansible 2.2.0.0 (detached HEAD 44faad0593) last updated 2016/10/13 13:41:31 (GMT +000)
lib/ansible/modules/core: (detached HEAD d66983b43e) last updated 2016/10/13... |
* Feature Idea
##### ANSIBLE VERSION
ansible 2.0.1.0
config file = /Users/do3cc/dev/ansible/ansible.cfg
configured module search path = Default w/o overrides
##### CONFIGURATION
##### OS / ENVIRONMENT
N/A
##### SUMMARY
It would be nice to be able to provide a seed for random, s... | 0 |
### System information
* **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : No.
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Ubuntu 16.04
* **TensorFlow installed from (source or binary)** : Binary
* **TensorFlow version (use command below)... |
Sometimes could be useful to evaluate on different clusters of the evaluation
set with distinct metrics, summaries etc.
Do you plan that this interface will accept a list of `eval_spec` in the
future?
| 1 |
I have 3 nodes in my cluster and two are master cum data nodes and one node is
client node. When I issues stats api(_cluster/stats), I still see the count of
client as 0 even though its is up and working.
Below is the response of stats API
nodes: {
count: {
total: 3,
master_only: 0,
data_only: 0,
master_d... |
From a cluster running ES 2.1.1 (or ES 1.x) with 8 nodes, two of which were
client nodes:
GET _cluster/stats
produces:
"nodes": {
"count": {
"total": 8,
"master_only": 2,
"data_only": 4,
"master_data": 0,
"client": 0
}
...
}
... | 1 |
When trying to open a link via `shell.openExternal('https://www.google.com')`
it causes Atom to freeze in case the default browser is Chromium (`chromium-
browser`).
After getting the prompt that Atom has freezed and hitting the kill button I
get the following dump on my console on which I've invoked Atom
... |
On Ubuntu 14.04 with Atom Shell 0.22.3
`require('shell').openExternal('http://github.com')` does not seem to work. I
have both Firefox and Chromium installed on that VM.
See atom-archive/feedback#40 for other reports.
Similar to #623
| 1 |
**System information**
* OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Ubuntu 18.04
* TensorFlow installed from (source or binary): source
* TensorFlow version: 1.13.1
* Python version: 2.7
* Bazel version (if compiling from source): 0.21.0
* GCC/Compiler version (if compiling from source): 7... |
Error message occurs when applying L2 loss weight decay with 1080ti gpu
activated
No Error message occurs when applying weight decay with only cpu running
The error message always come out if training with all the Optimizer in
anaconda, win10, gpu 1080ti, tensorflow 1.6.0. CUDA 9 CUDNN 7.0
Tracebac... | 0 |
As everyone knows, Electron is great in terms of easiness of designing GUIs,
but has some severe security and memory issues. The need to lock a version of
Chromium and Node.js into each app means no easy way to quickly solve security
issues (each developer has to update their own app's version manually) and it
also m... |
* Electron version: 1.82
* Operating system: Windows 10 - Windows Subsystem for Linux
With Windows Subsystem for Linux it is now possible to run Windows executables
from bash.
To reproduce the `%HOMEDRIVE%%HOMEPATH%` folder creation issue:
1. Enable Windows Subsystem for Linux in Windows 10
2. Download and... | 0 |
When a crate re-exports something from deep in its internal structure with
"pub use", you can only find the thing at its original path. A case in point
(that just happened on IRC) is searching for something like `uid_t` in the
libc crate; you get the path `libc::types::os::arch::posix88::uid_t` when
actually `libc::u... |
Currently, resolve does a lot of redundant error reporting. For example,
/home/cmr/hacking/rust/src/libextra/interner.rs:161:8: 161:18 error: unresolved name
/home/cmr/hacking/rust/src/libextra/interner.rs:161 ast::ident { repr: off, ctxt: 0 }
... | 0 |
**Elasticsearch version** :
1.7.5
**JVM version** :
1.8.0_40-64
**OS version** :
centos6
**Description of the problem including expected versus actual behavior** :
The current merge count is different between _cat/nodes and _stats/merges. We
show multiple merges being performed on the _cat/nodes api, howe... |
Marvel Sense is not working over ssl, it hangs when it tried to connect to the
elasticsearch API.The rest of Marvel seems to be working fine, as does the
elasticsearch API if called directly.
I am using a freshly installed elasticsearch 1.4.1 and the latest Marvel.
Elasticsearch is exposed on the internet over SSL ... | 0 |
# Summary of the new feature/enhancement
The profiles.json file is hard to find when you don't click the Settings
button within the Terminal. Let's move the default location to somewhere more
accessible.
|
# Summary of the new feature/enhancement
The area in which my cursor will shift from a pointer to a double-sided arrow
for resizing is very small right now, which makes it more difficult than it
needs to be to resize the window.
I'd like to see this area be increased so it's not so difficult to resize.
| 0 |
deno: 0.10.0
v8: 7.7.37
typescript: 3.5.1
When you try to import an ecmascript module using the REPL, you get an
Uncaught SyntaxError:
> import Drash from "https://deno.land/x/drash@v0.8.6/mod.ts";
error: Uncaught SyntaxError: Unexpected identifier
► <unknown>:1:8
at evaluate (js/r... |
When in the Deno REPL and executing:
`import { env } from "deno";`
The output is:
`SyntaxError: Unexpected token {`
Probably related to #1158
Executing: `deno -v` on the commandline returns:
`deno: 0.2.1`
`v8: 7.1.302.4`
`typescript: 3.2.1`
| 1 |
pd.date_range(pd.Timestamp('2015-1-1', tz='US/Eastern'), pd.Timestamp('2016-1-1', tz='US/Eastern'), freq='H') + pd.DateOffset(days=1)
Traceback (most recent call last):
File "/home/jeff/.virtualenvs/omnipotent/local/lib/python2.7/site-packages/IPython/core/interactiveshell.py", line 3066, ... |
#### Code Sample, a copy-pastable example if possible
>>> import pandas as pd
>>> idx = pd.DatetimeIndex(['2000-03-26 04:00'], tz='Europe/Berlin') # Switch to DST was on that day
>>> idx
DatetimeIndex(['2000-03-26 04:00:00+02:00'], dtype='datetime64[ns, Europe/Berlin]', freq=None)
>>> ... | 1 |
**Kenny MacLeod** opened **SPR-6234** and commented
With EhCach you can register event listeners with individual caches.
Unfortunately, Spring's EhCacheFactoryBean does not provide the facility for
configuring these.
We still have the option of configuring the caches in ehcache.xml (see
http://ehcache.org/EhcacheUs... |
**Jeremy Haile** opened **SPR-5324** and commented
The "scanPackages" property requires the package name to have a trailing "."
which is inconsistent with the component-scan. This feature was adding by
#9415
ClassPathScanningCandidateComponentProvider (used by component-scan)
constructs the scanning pattern like t... | 0 |
#### In a nutshell:
* `groupby` on a single categorical column with prescribed categories incorrectly returns results for **all** categories, even those that are not actually present in the DataFrame.
* In addition, when aggregating after grouping on categoricals (`groupby.sum` and the likes), with both prescrib... |
#### Code Sample, a copy-pastable example if possible
import pandas as pd
df = pd.DataF... | 1 |
What steps will reproduce the problem?
If possible, include a link to a program on play.golang.org.
1. Run the code at http://play.golang.org/p/Z2aaevAIbN
What is the expected output?
map[0:2]
What do you see instead?
map[1:2 0:1]
Which compiler are you using (5... |
The Go compiler version does not match the Mercurial repository version.
$ hg id
dd31a3b56536 tip
$ 6g -V
6g version weekly.2011-06-23 8948
| 0 |
Currently `pd.read_sql_query()` accepts an `sqlalchemy.engine.base.Engine`
instance as the `con` parameter. Using that, it presumably creates a new
`sqlalchemy.engine.base.Connection` to connect to the DB server and issue the
query.
However, as most (all?) DB servers associate a session with a connection, this
prec... |
related #7615
Bit of a UI problem here (although it's behaving as the docstring says it
does, so it doesn't quite qualify as a bug):
>>> df = pd.DataFrame({"A": [1,2,3], "B": [4,5,6]})
>>> df.to_csv("tmp.csv", sep=";")
>>> !cat tmp.csv
;A;B
0;1;4
1;2;5
2;3;6
>>> df.to_csv("... | 0 |
Numerous Warnings and Errors occur when including LibTorch in .cu files. I
think maybe some compiling settings are wrong...
One of error is as following.
/home/libtorch/include/torch/csrc/api/include/torch/nn/cloneable.h:68:61: error: invalid static_cast from type ‘const torch::OrderedDict<std::__cxx1... |
Hello, i'm try to build simple project in CMake with libtorch, but **by
default** i get some errors.
Firstly, my **CMakeLists.txt** (of course, i change path to libtorch):
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
project(torch-start LANGUAGES CXX CUDA)
set(CMAKE_PREFIX_PATH "absol... | 1 |
### Version
2.5.21
### Reproduction link
https://github.com/phil294/vue-hackernews-ssr-alternative-data-fetching
### Steps to reproduce
In SSR docs, option 2, Fetch data after the matched view is rendered, calls
`asyncData` in `beforeMount`.
The pseudo-syntax is
if (asyncData)
asyncData()
... |
From knockout to angular to react, now i'm new to Vue. Really love this
library, feels like "angular+react for humans".
:class now support array **OR** object, but sometimes it's still a little
tedious
if :class support classnames(https://github.com/JedWatson/classnames) like
syntax will be better.
example:
fro... | 0 |
# Environment
Windows build number: 10.0.18363.900
PowerToys version: 0.19.1
PowerToy module for which you are reporting the bug (if applicable): FancyZones
Whenever I try to use FancyZones, the overlay looks kinda weird. The numbers
are duplicated and in different spots, which results in... |
# Environment
Windows build number: Microsoft Windows [Version 10.0.19041.329]
PowerToys version: v0.19.0 and v0.19.1
PowerToy module for which you are reporting the bug (if applicable): FancyZones
* Screen Count: 4 (1 is not landscape)
# Steps to reproduce
1. Activate Fancy Zones
... | 1 |
Challenge Waypoint: Target HTML Elements with Selectors Using jQuery has an
issue.
User Agent is: `Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64;
Trident/6.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR
3.0.30729; InfoPath.3; .NET4.0C; .NET4.0E)`.
Please describe how to reproduce this issu... |
Can't run code because of this error error: plugin failed to initialize it is
showing in the lower left corner. Tried different browsers, computer, and
devices same error. Have a really slow internet connection
| 1 |
### Describe the issue with documentation
**Apache Version** : 2.2.3
**OS** :macOS Catalina Version 10.15.7
**Apache Airflow Provider versions** :
**Deployment** :
**Web browser** : Google Chrome Version 98.0.4758.80 (Official Build) (x86_64)
Also happened with Safari Version 13.1.3 (15609.4.1)
**What happene... |
### Apache Airflow version
2.2.3 (latest released)
### What happened
With a docker setup as defined by this compose file, the `airflow-worker`
service `healthcheck.test` command causes a general increase in memory use
overtime, even when idle. This was observed with Airflow 2.1.4 and 2.2.3.
airflow/docs/apache-ai... | 0 |
When you have .col-xs-11 and .col-xs-1 in a single row, it will break into two
rows for very small resolution. .col-xs-10 and .col-xs-2 are okay.
|
See the screenshot: I thougt that these blocks must be in one row, but they
are not. Why? XS layout must have 12-rows grid too.

a[mod(i-1,n)+1]
The only language I know which solves this problem reasonably elegantly is
Mathematica whose `Mod` function takes an optional ... | 0 |
**TypeScript Version:**
Lastest Commit
**Code**
const a = [5, 6, "7", "8"]
const b = a.filter(x => typeof x === "number")
**Expected behavior:**
b is `number[]`
**Actual behavior:**
b is `(number|string)[]`
|
**TypeScript Version:**
nightly (1.9.0-dev.20160323)
**Code**
let numbers: number[] =
[1, '2', 3, '4'].filter(x => typeof x !== 'string');
declare function isNumber(arg: any): arg is number;
let numbers2: number[] = [1, '2', 3, '4'].filter(isNumber);
Playground
**Expected beha... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.