text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
Displaying Google Maps inside a Bootstrap layout gives some problems.
Check out the examples below.
http://jsbin.com/evuduw/ (master - bad)
http://jsbin.com/evuduw/3 (2.0-wip -- looks fixed)
The maps look okay, but if you try and switch the view to terrain or
enable/disable "show labels" in the first the layout o... |
When a "bare bones" Google Map is embedded on a Bootstrap-styled page inside a
grid row & span, the terrain drop-down menu gets pushed off the side of the
map:
http://imagebin.org/index.php?mode=image&id=174078
The satellite drop-down menu is similarly affected when 2 entries are present,
but looks normal when only... | 1 |
# Please, add an ability to take into account the Caps Lock key status when
remapping shortcuts and maybe other keys which can be turned on and off.
The reason behind this is the following. Some laptops, for instance Surface
Book, doesn't contain a numpad and any special key which turns a part of the
keyboard to the... |
Dozens of us don't use Caps Lock at all during our normal workflow (dozens!),
so it would be nice to be able to use it as an extra modifier when using the
Remap Shortcuts functionality.
This is already a thing in macOS world thanks to tools like Karabiner Elements
or BetterTouchTool that allow yout to turn Caps Loc... | 1 |
Hi,
Does tensorflow version r1.9 support Intel Xeon E5645 CPU?
Thanks !
Alan
|
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 |
On Julia master (so the conditional below evaluates as `true`).
This works:
julia> module MyMod
"""
A docstring
"""
macro mymac(ex)
return esc(ex)
end
end
Main.MyMod
help?> MyMod.@mymac
A docs... |
Noted during #22631
Meta.@lower begin
if true
"""
hello
"""
h() = 1
end
end
:($(Expr(:thunk, CodeInfo(
2 1 โ goto #3 if not true ... | 1 |
Hi everyone,
I found a wrong highlighting in for loop, please have a look below screenshot.
This error can make all below lines go wrong syntax highlight too.

|
Ported from microsoft/TypeScript-Sublime-Plugin#285
Related to microsoft/TypeScript-Sublime-Plugin#265.
Issue:

Correct:
 which prevents th... |
Shared 5 will not get assigned after an upgrade from 1.5.0 to 1.6.0.
[root@ls2-es-lb ~]# curl -XGET "http://localhost:9200/_cluster/state/routing_table,routing_nodes/logstash-cdr-2015.05.18" | jq '.'
{
"allocations": [],
"routing_nodes": {
"nodes": {
"Ts0HJNFvSGy2JVd31... | 1 |
Currently, you'll get an unexplained
error: unresolved modulename: std
Which is bound to confuse people.
|
If you write something like `#debug["%u", 10]`, the type error (unsigned vs
signed int) gets reported in `core.rs`, at the definition of `#debug`, rather
than at the point of use. This is very confusing and makes you think something
is fundamentally wrong in the Rust libraries (as in, they don't compile)
rather than ... | 1 |
details here:
https://groups.google.com/forum/#!topic/druid-user/K7YmcBJM6T4
please help!
|
all the tasks keep restarting with this error in the logs:
I tried:
* upgrading node from 0.12.1 to 0.12.2
* spinning a whole new server and created a replica.
Completely unrecoverable!
2018-08-13 15:41:48,555 INFO i.d.i.o.ForkingTaskRunner [forking-task-runner-1] Exception caught during execu... | 1 |
I just stumbled upon an illegal instruction while redefining a function called
with splatting, under some peculiar conditions. Here is a minimal test case:
b = 1
v = (1,)
# type annotation for A (but not the actual type) is necessary to trigger the bug
# the return value is not importa... |
I found that sometimes function overwriting does not work right away. The
method redefinition warning gets triggered, but the old function definition is
used.
Here is a minimal test case which shows the bug (the last call fails, but
calling `f()` again then produces `2` as expected):
f() = 1
... | 1 |
## ๐ Bug
## To Reproduce
Steps to reproduce the behavior:
import torch
a = torch.arange(1,17).float().reshape(4,4)
print(a)
cpu_res = torch.mean(a, (0,0))
cuda_res = torch.mean(a.cuda(), (0,0))
print(cpu_res)
print(cuda_res)
Result is
tensor([[ 1., 2., ... |
## ๐ Bug
I am not sure if this is reproducible for every environment, but I hit the
following error when trying to set cuda device in processes. What is weird is
that the error disappears if I remove the line `x = torch.rand(20, 2).cuda()`
right after the for loop.
Traceback (most recent call last):
... | 0 |
While running an example from recommender system package for movielens data,
the performance of multithreaded parallel version does not seem to scale well.

To run the example... |
I ran my Logistic Regression benchmark for threads. Not sure if this is
related to earlier issues or not, but I thought I'd post an issue anyway.
Usually the output would be (on a version of master sometime in January)
Warm up run : 25 iterations!
Time taken by serial implementation = 1.508228316... | 1 |
This may sound weird but a deno.info api would be really helpful for me.
(Exposing the output of the deno info command in some form without having to
access the CLI.)
My use case is having deno make requests for the module and all imported
modules to the webserver it's also running (allowing the server to trigger
co... |
Currently "deno info https://deno.land/std/http/file_server.ts" will display a
dependency graph of the specified module. It would be nice to be able to
access this information in a programmatic way.
let depTree = await Deno.deps("https://deno.land/std/http/file_server.ts")
Where depTree would be ... | 1 |
Challenge Waypoint: Delete Properties from a JavaScript Object has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko/20100101
Firefox/41.0`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
var ourDog = {
"name... |
Challenge Waypoint: Delete Properties from a JavaScript Object has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101
Firefox/41.0`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
var ourDog = {
"name": ... | 1 |
Here's my problem.
Using react-router 1.0, i'm going to be re-rendering trees that are 90% the
same. We use an external lib for an api that produces video mark up. Totally
out of our hands. They modify the dom and that's how it has to be.
My problem comes in that when the routing changes, it re-renders the tree, an... |
When writing a component that contains a set of large subtrees that stay
relatively the same, but are simply moved around such that React's virtual DOM
diffing can't detect the movement, React will end up recreating huge trees it
should simply be moving.
For example, pretend `blockA` and `blockB` are very large stru... | 1 |
# Environment
Windows build number: Version 10.0.18362.175
Windows Terminal version (if applicable): 0.2.1831.0
# Steps to reproduce
1. Set the `HKCU\Console\VirtualTerminalLevel` registry entry to 1, to enable support for VT escape sequences by default.
2. Makes sure the `initialCols` ... |
# Environment
Windows build number: Microsoft Windows [Version 10.0.18362.295]
Windows Terminal version (if applicable): Version: 0.4.2382.0
Any other software?
# Steps to reproduce
say we have
"
Line 1
Line 2
Line 3
"
on screen.
use Mouse to select multiple lines in t... | 0 |
**Do you want to request a _feature_ or report a _bug_?**
Bug
**What is the current behavior?**
The DOM property `dateTime` isn't converted to its lowercase attribute
counterpart `datetime` for the `<time>` element when the element is rendered
with `ReactDOMServer.renderToString()`.
**If the current behavior i... |
**Do you want to request a _feature_ or report a _bug_?**
Bug
**What is the current behavior?**
ReactDOMServer generates camelCased markup for the `cellSpacing` and
`cellPadding` attributes:
`<table cellSpacing="1" cellPadding="2"></table>`
(Here's an example pen: https://codepen.io/anon/pen/jGBLdP)
I believe ... | 1 |
Failed: https://k8s-gubernator.appspot.com/build/kubernetes-
jenkins/logs/kubernetes-e2e-gke-test/13512/
Run so broken it didn't make JUnit output!
|
Failed: https://k8s-gubernator.appspot.com/build/kubernetes-
jenkins/logs/kubernetes-e2e-gke-test/13477/
Run so broken it didn't make JUnit output!
| 1 |
I went through this:
1. `tensorboard --logdir=output/trash --debug` showed the expected path
2. `find output/trash | grep tfevents` showed two event files
3. `find output/trash | grep tfevents | xargs ls -lh` showed that they are 6.4M and 1.2M big.
Still, the tensorboard looks like this:
:
If installed from binary pip package, provide:
1. Which pip package you installed.
sudo pip install --upgrade
https://storage.googleap... | 1 |
App Component template
<tabs>
<tab-link>Chat notification component goes here</tab-link>
<tab>Chat display component goes in here</tab>
<tab-link>Other Chat notification component goes here</tab-link>
<tab>Other Chat display component goes in here</tab>
</tabs>
Tabs Com... |
Previously discussed with @vsavkin and @jeffbcross
Background - programmatically listening to events propagated by children is
difficult currently.
Consider:
You have a `<accordion>` component and n `<accordion-item>` components:
<accordion>
<accordion-item></accordion-item>
<accordion-... | 1 |
This is on scipy 0.13.0:
from scipy.signal import lti
import matplotlib.pyplot as plt
for zeta in [0.99999, 1.00000, 1.00001]:
H = lti([1],[1,2*zeta,1])
t,y = H.step()
plt.figure()
plt.plot(t,y)
The zeta = 0.99999 and 1.00001 cases give expected result... |
A 6th order analog filter appears very distorted in scipy.signal.step compared
to Octave:
z = array([], dtype=float64)
p = array([-2.8576, -2.8576, -2.8576, -2.8576, -2.8576, -2.8576])
k = 544.49693870986994
t_s, y_s = step((z, p, k), T=t)
plot(t_s, y_s)

;_ ), but the object
literal for 'routes' ( _react_router_1.match({ routes, location: req.url
}_...) does not.
# INPUT
// server.tsx
... |
Using typescript@next (1.8.0-dev.20151109) and the following compilerOptions:
"compilerOptions": {
"target": "ES6",
"module": "commonjs"
}
Any code using named import as a shorthand property will result in invalid
code being generated.
Example:
import {foo} from './... | 1 |
Proxy `CONNECT` support is required for https urls to work.
When proxy support was added to Scrapy, urllib still didn't supported CONNECT,
but that has been fixed now:
http://bugs.python.org/issue1424152
Now we need to add support to Scrapy (which doesn't use urllib at all).
This link contains useful tips on how... |
I have a spider that's throwing the following error when trying to crawl this
URL.
>>> fetch('https://vconnections.org/resources')
2015-08-12 10:07:28 [scrapy] INFO: Spider opened
2015-08-12 10:07:28 [scrapy] DEBUG: Retrying <GET https://vconnections.org/resources> (failed 1 times): [<twisted.p... | 0 |
This is a feature request.
I suggest that we can assign DOM `Node` to the member of `vm.$data` like
following example.
Template:
<div id="bar">
<div>{{content}}</div>
</div>
Vue:
var node = ...; // `DOM::Node` or `DOM::DocumentFragment`
new Vue({
el: "#bar",
... |
I've already mentioned it in issue #384, but I'd like to gain access to a
specific dom node without creating a child VM when not needed, very close to
what `v-ref` do.
So i've thought of something like this:
<canvas v-el="myCanvas"></canvas>
Then using it in parent VM like this:
v... | 1 |
This is magical:
julia> (1:4) .+ (1:4)
2:2:8
I love that we can be so clever. Unfortunately, it can come back and bite us
sometimes:
julia> (1:4) .+ (4:-1:1)
ERROR: ArgumentError: step cannot be zero
Stacktrace:
[1] steprange_last(::Int64, ::Int64, ::Int64) at ./ra... |
Julia 1.0:
I observed that when starting up Julia with the `--math-mode=fast` option, I
get incorrect results for sinpi and cospi functions.
With the default math mode:
julia> a = rand(5)
5-element Array{Float64,1}:
0.5897641978923696
0.2459464145866952
0.06373272357797632
0.2... | 0 |
# Description of the new feature/enhancement
The ability to create a new tab with 'Run as a different user' option would be
nice. I often need to run shells as different users.
|
# Description of the new feature/enhancement
Add ability to open new tabs that run one (or more) custom command before the
opening
# Proposed technical implementation details (optional)
In the profile.json add add a new field, for example `commands`:
{
"acrylicOpacity" : 0.5,
... | 0 |
Possibly related to #2751, #2725 and #2686, but I do not think it's a
duplicate, since this bug only appears when default parameters are used. Also,
I tried asking in slack, but didn't recieve an answer and I think the question
got burried now.
I'm using a fresh setup with `node v5.0.0`, `npm v3.3.11`, `babel-cli 6.... | 0 | |
Fancy Zones does not work on applications which have their own sub-windows ?
|
# Environment
Windows build number: Microsoft Windows [Version 10.0.17763.1039]
PowerToys version: 0.14 - 0.15
PowerToy module for which you are reporting the bug (if applicable): FancyZones
# Steps to reproduce
Create FancyZone layout, use mouse to drag-and-drop "Solution Explorer" or a... | 1 |
## Describe the bug
If I use react hooks inside a page or component
`import Comp from '../../comp`
in nextjs everything work fine, if I use react hooks inside a component in an
external library
`import { Comp } from 'my-components`
I get this error:
`Hooks can only be called inside the body of a function c... |
* I have searched the issues of this repository and believe that this is not a duplicate.
Would it be possible to have an example that uses uses Rematch (2500+ stars)
as the state management / store?
Just a random request haha
https://github.com/rematch/rematch/blob/master/docs/purpose.md
| 0 |
When import external module, we should have a completion list for names of
external modules.
|
Hi,
Visual Studio (2013 Ultimate) provides intellisense for the src attribute for
script elements, by reading the file system and displaying available files or
folders.
 indicates that the 3rd and 4th dimensions are of size 0, when A is an
array of dimension 3 or 4. This is illustrated below:
julia> size(ones(2))
(2,)
julia> size(ones(2,3))
(2,3)
julia> size(o... |
$ julia
_
_ _ _(_)_ | A fresh approach to technical computing
(_) | (_) (_) | Documentation: http://docs.julialang.org
_ _ _| |_ __ _ | Type "help()" to list help topics
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 0.3.... | 1 |
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gke/10984/\n\nFailed: [k8s.io] Job should fail a job {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:133\n Jul 11 05:31:16.288: Couldn't delete ns \"e2e-tests-job-0hlz2\": namespace e2e-tests-job-0hlz2 was not deleted within limit: timed out waiting for the condition, pods remaining: []\n \n\n" | ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gke/9800/\n\nFailed: [k8s.io] Job should delete a job {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:133\n Jun 23 22:05:43.977: Couldn't delete ns \"e2e-tests-job-vueky\": namespace e2e-tests-job-vueky was not deleted within limit: timed out waiting for the condition, pods remaining: []\n \n\n" | 1 |
After the configuration is completed, there is basically no need to modify the
configuration. This is a low-frequency operation. The tray icon has only one
setting option, which is a waste of tray space. I hope to provide the option
to hide the tray icon.
|
Hello,
could FancyZones have such possibility to alt-tab over windows snapped to the
same zone?
Let's say I have 3 zones on my monitor and for example each zone has three
different applications snapped into it. Could for example shortcut alt+tab+1
switch just between apps snapped into zone 1 and alt+tab+2 into zone... | 0 |
# Summary of the new feature/enhancement
Hi there! I'd love the ability to fuzzy search for Control Panel tasks like I
can in the Start Menu. For instance, if I search for "partition", I see
**Create and format hard disk partitions** which takes me to **Disk
Management** , or if I type "users", I get **Add, edit, or... |
Sometimes the usual way of pasting from clipboard doesn't work (I'm looking at
you, vSphere client..).
A perfect addon would be to paste Clipboard content as keystrokes with a
special keyboard shortcut - CTRL+SHIFT+V for example.
| 0 |
GOARCH=386
$ hg identify
b950f00ad6f1 tip
changeset: 7774:b950f00ad6f1
tag: tip
user: Russ Cox <rsc@golang.org>
date: Tue Mar 15 22:33:57 2011 -0400
summary: gofix: procattr
unexpected fault address 0xb8002000
throw: faul... |
[as mentioned by manveru in #golang-nuts]
Run the following piece of code through gofmt.
The text inside the comment is indented.
Run that text through gofmt again.
The text inside the comment is indented one more time.
At the least, gofmt should be idempotent.
I think i... | 0 |
# Bug report
**What is the current behavior?**
When I use webpack to bundle code that includes a Web Worker which contains a
dynamic import, the resulting code erroneously duplicates the file path of the
chunk that it's trying to load. Instead of requesting something like
`foo/bar/abc.[a1b2c3d4].chunk.js`, it requ... |
# Bug report
I have import some of my modules dynamically based on button click, i have
used like below"
import { Button } from '@syncfusion/ej2-buttons';
// Initialize Button component.
let button: Button = new Button({ content: 'Button' });
// Render initialized Button.
but... | 0 |
Q | A
---|---
Bug report? | maybe
Feature request? | yes/no
BC Break report? | no
RFC? | no
Symfony version | 3.3.8
I have an issue with validator component. I have a base class and a child.
Base class defines a property and a set of constaints. Child must redefine one
of the constraints - it must modi... |
A simple exampleโ
use Symfony\Component\Validator\Constraints as Assert;
use Symfony\Component\Validator\Validation;
use Doctrine\Common\Annotations\AnnotationRegistry;
AnnotationRegistry::registerAutoloadNamespace('Symfony\Component\Validator\Constraints', __DIR__);
class Par... | 1 |
### Bug report
The `direction="column"` setting appears to break the `label_mode="L"` option
for `AxesGrid`.
**Code for reproduction**
import matplotlib.pyplot as plt
import mpl_toolkits
fig = plt.figure()
grid = mpl_toolkits.axes_grid1.AxesGrid(fig, 111, nrows_ncols=(2,3),
a... |
### Bug report
**Bug summary**
Axes of `mpl_toolkits.axes_grid1.axes_grid.Grid` (and `ImageGrid`) are not
positioned correctly when `direction='column'`. This affects, e.g., the tick
labels (see figures).
**Code for reproduction**
import matplotlib.pyplot as plt
import mpl_toolkits.axes_grid1 as... | 1 |
Hi
I am currently writing a pretty simple implementation of a binary tree and
appear to have stumbled upon an internal compiler error that only occurs when
compiling with the debugInfo (-g) flag the compiler insisted i report it. :)
p.s. I am running under windows 7 on a 32 bit machine
heres the compiler output
... |
Compiling libcore with -g leads to the following error:
error: internal compiler error: Type metadata for ty::t '&[core::fmt::rt::Piece<>]' is already in the TypeMap!
This is due to the vec slice in question occurring multiple times along a type
reference chain and the code path for vec slices do... | 1 |
plt.plot([1,2,3,8,6,4,3,1],'o-',label='เคฐเคพเคทเฅเคเฅเคฐ')
plt.xlabel('เคจเคฟเคตเฅเคคเฅเคคเคฟ เคชเฅเคฐเคคเคฟเคถเคค')
plt.ylabel('เคเคเฅเคฐเฅเคฏ เคฌเฅเคฏเคพเค')
plt.legend()

Devanagari font rendering is incorrect. For example: เคจ... |
### Bug report
**Bug summary**
Title sums it up all I guess.
Related:
* Issue #3517 on Github
* This and this on stack exchange
Here I used sinhala as Indic Script instance.
I think the font family has to do something with this issue since output to
different font families are different. I'm not an expert... | 1 |
##### System information (version)
* OpenCV => 3.4.2
* Operating System / Platform => Ubuntu 18.04
* Compiler => cmake3.10.2
##### Detailed description
It caused an error following after ` import cv2` under `python3`
Python 3.6.8 (default, Oct 7 2019, 12:59:55)
[GCC 8.3.0] on linux
T... |
Build:
[ RUN ] hal_intrin256.uint8x16_AVX2
SIMD256: void opencv_test::hal::intrin256::opt_AVX2::test_hal_intrin_uint8()
/build/3_4_coverage-lin64-debug/opencv/modules/core/test/test_intrin_utils.hpp:274: Failure
Expected: (LaneType)data.u[i]
Which is: '\t' (9)
To be... | 0 |
<div><span>Get</span> the Best Price</div> // Text in one lineline
In case i want to make the word hidden on xs it brakes the text with
display:block !important and span loose its inline behavior.
<div><span class="hidden-xs">Get</span> the Best Price</div>
Even bootstrap at first mobil... |
related to issues #8500 , #7808 , #4929 ; using `.hidden-sm` to hide span
within `.nav > li > a` . Because class is `display: block` above -sm then text
wraps to new line. Would you consider `.hidden-*` classes to be `display:
inline-block` instead ?
Here's a jsfiddle of the two cases - but the repercussions could b... | 1 |
**Context:**
* Playwright Version: 1.12.3
* Operating System: Windows
* Node.js version: 14.17
* Browser: Chromium, Firefox
* Extra:
**Code Snippet**
The code sample generates full page screenshots for both headful and headless
modes.
import { chromium, firefox, Browser } from "playwright... |
**Context:**
* Playwright Version: 1.10.0
* Operating System: Mac
* Node.js version: 12
* Browser: Chromium
* Extra:
Base Docker image: mcr.microsoft.com/playwright:v1.10.0-focal
**Code Snippet**
Help us help you! Put down a short code snippet that illustrates your bug and
that we can run and deb... | 1 |
What steps will reproduce the problem?
This simple code reveals an infinite print loop:
package main
import "fmt"
import "log"
import "runtime/debug"
var count = 0
type foo struct {
i int
}
func (f foo) String() string {
count++
if cou... |
by **mddkpp** :
1. What is a short input program that triggers the error?
package main
import "fmt"
type A [10]int
var a A
func main() {
a.pp()
b := &a
c := &b
c.pp() // or just use (&(&a)).pp()
}
func (... | 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 ...** (check one with "x")
[x] bug report
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
**Current behavior**
Right now if you set a the Content-... | 0 |
TestDualStackUDPListener still fails on Dragonfly sometimes.
From `f6d1009`
http://build.golang.org/log/f4bc3bb1b42e2afb646e754f6f2d36ec6a665daf
--- FAIL: TestDualStackUDPListener (0.02s)
listen_test.go:319: skipping udp test
listen_test.go:319: skipping udp test
listen_test... |
Not sure the version of dragonfly builder but the root cause of test flakiness
comes from the kernel changes like the following:
http://gitweb.dragonflybsd.org/dragonfly.git/commit/727ccde8cce813911d885b7f6ed749dcea68a886
Simply dragonfly is dropping support for ipv6 ipv4-mapped address for some
reason.
| 1 |
pandas 0.14 changed `.iloc` to accept out-of-bounds indexers for slices. I
think we should do the same for `.loc`, for similar reasons of consistency and
efficiency.
Note that this is already currently inconsistent for int and float indexes
(not entirely sure why):
>>> pd.Series(range(5), np.arange(5)... |
I didn't directly find an issue about it, or an explanation in the docs, but I
stumbled today on the following, which did surprise me a bit:
Considering the following dataframe:
In [18]: df = pd.DataFrame(np.random.randn(5,2), index=pd.date_range('2012-01-01', periods=5))
In [19]: df
Out[... | 1 |
Challenge Passing Values to Functions with Arguments has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
//... |
I am trying the exercise given for the above lesson. The link is given below:
http://www.freecodecamp.com/challenges/passing-values-to-functions-with-
arguments#?solution=%2F%2F%20Example%0Afunction%20ourFunction(a%2C%20b)%20%7B%0A%20%20console.log(a%20-%20b)%3B%0A%7D%0AourFunction(10%2C%205)%3B%20%2F%2F%20Outputs%... | 1 |
Helllo,
I'm very love material-ui and react.
I need to use these components. Is it possible to support these components.

### Components
* DatePicker
* TimePicker
### Versions
* Material-UI: v... |
* Component
* Tests (at least unit tests)
* Docs
* Demo
* Keyboard accesibility mui/mui-x#6232
* Composable, so users can build something like #7574 for instance
* Fixes old issues #7866, #7783, #7781, #7767, #6970, #6944, #6918, #6916, #6886, #6718, #6594, #6439, #6358, #6312, #6134, #5897, #5800, #5743... | 1 |
I hope I'm not reporting an issue that's already known. Starting with
matplotlib==2.0.0b1, pyplot.bar does not cycle through colors anymore.
Instead, if I pass list of colors, it only uses color 'C0'.
Minimum code to reproduce bug:
import matplotlib.pyplot as plt
x_pos = [0, 1, 2]
heights = [1... |
### Bug report
**Bug summary**
pyplot.plot worked fine (including version 2.0.0) with the Qt4/PySide backend
specified in matplotlibrc. With version 2.0.1, it seems to try to use Qt5
instead and fails.
**Code for reproduction**
Any code
import matplotlib.pyplot as plt
plt.plot([1, 2, 3])
... | 0 |
Hi, I faced a problem unable to cast an object as a method. While this is
handled automatically using an if / else block (and congratulation to the guys
who implemented this), this is not working yet into a switch case nor
manually. Here is my code to reproduce the error:
|
I have the following code:
function logNumber(v: number) { console.log("number:", v); }
function logString(v: string) { console.log("string:", v); }
function foo1(v: number|string) {
switch (typeof v) {
case 'number':
logNumber(v);
break;... | 1 |
sys.getsizeof() uses the `__sizeof__` method, if defined, to return a Python
object's full memory footprint (including owned data areas that lay outside of
the basic object structure).
Currently:
>>> x = np.zeros((20000,))
>>> x.nbytes
160000
>>> sys.getsizeof(x)
80
On the other... |
_Original tickethttp://projects.scipy.org/numpy/ticket/1683 on 2010-11-22 by
trac user ghazel, assigned to unknown._
>>> sys.getsizeof(numpy.array([]))
80
>>> sys.getsizeof(numpy.array(range(100000)))
80
| 1 |
I've got a numpy.ndarray of shape (24569,) (also tried with (24569,1)) with
samples of random variables (not the distribution)
`fit_alpha, fit_loc, fit_beta=stats.gamma.fit(data)`
results in fit_alpha and fit_loc being nans, while fit_beta = 1
`I've tried to suggest starting parameters by using
stats.gamma.fit(dat... |
When fitting a distribution, it would be useful to be able to specify shape
parameter starting values with keywords instead of args- eg
scipy.stats.gamma.fit(mydata, floc=0, a=2)
This is already allowed for scale and loc, but not for the shape params. It's
easy to change, such as
i... | 1 |
**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): Google Colab
* Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: No
* TensorFlow... |
* * *
### 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)** : Ubuntu 16.04
* **Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device*... | 0 |
* I tried using the `@types/fluent-ffmpeg` package and had problems.
* I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript
* I understand that `@types` package versions do not follow SemVer.
* I have a question that is inappropriate for StackOverflow. (Please ask any appro... |
* Mention the authors (see `Definitions by:` in `index.d.ts`) so they can respond.
* Authors: @Flarna, @SimonSchick, @Semigradsky, @rbuckton, @mjbvz, @G-Rath, @sandersn
* `assert.strict.equal` should not be deprecated: https://nodejs.org/dist/latest-v14.x/docs/api/assert.html#assert_assert_equal_actual_... | 0 |
Regarding #9556 and #9172, I would like to suggest the following feature
request:
In ansible-playbooks support decrypting files on copy:
`copy: src=somefile.key dest=/etc/apache2/ssl/ decrypt=yes`
Where somefile.key is encrypted with ansible-vault. That would be better
usability.
|
##### Issue Type:
Bug Report
##### Ansible Version:
`ansible 1.8.2`
##### Environment:
Mac OSX 10.9 running against Ubuntu 14.04.
##### Summary:
When defining a string, trailing `0`s get removed.
##### Steps To Reproduce:
In my inventory:
server apples="1.20"
In my playbook:
... | 0 |
#22063 suggested adding a banner stating "this version is really old" but
modifying rust after the fact wasn't well liked. A better way would be to add
a conditional banner which checks rust-lang or something similar to see if
something new has been released. It should only appear if it's too old or
something similar... |
Quick over: the `cfg()` attribute can't be used to do multiple-declaration of
rust types/fns/mods along multiple-dimensions of consideration (OS, arch)
without signifigant hurdle-jumping-through'ing. I spoke with @graydon about
this, briefly, on IRC and he was under the impression that commas in a list
passed to `cfg... | 0 |
Re-opening #2526 as it was closed as duplicate. It is still reproducible in
1.9.01
|
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
docker_container module
##### ANSIBLE VERSION
ansible 2.2.1.0
config file = /Users/alebedev/projects/ansible/ansible.cfg
configured module search path = Default w/o overrides
##### OS / ENVIRONMENT
N/A
##### SUMMARY
port_publ... | 0 |
### Description
Hey Team Airflow!
Can you please add support for v4.1.0 of flask-appbuilder?
I keep getting vulnerabilities issues that got fixed -
dpgaspar/Flask-AppBuilder#1831
### Use case/motivation
After executing safety https://pypi.org/project/safety/ we get that there are
vulnerability issues with al... |
### Body
FAB 4.0.0 keeps a lot of our imporant dependencies from upgrading - including
some with CVEs. We should make the effort to upgrade FAB to 4.0.0 soon to make
sure we have it in 2.4.0 (or if possible even in 2.3.* line.
It has a number of UI dependencies though - including breaking changes in some
libraries ... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
There is no need for the children prop type to be required. One can set the
content with `dangerouslySetInnerHTML`.
Anyways, it was not required with `flow-types` implementation.
## Current Behavior
A... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Current Behavior
When overriding the class name `imgFullHeight ` via `classes ` property
injection (according to the docs here) an error occurs:
> InvalidCharacterError
> Failed to execute 'add' on 'DOMTokenList':... | 0 |
### Problem
I'd like to display equations using matplotlib in realtime. However, matrix
and array require usetex=true and slows down rendering significantly.
### Proposed solution
It is very helpful if you could implement the matrix or array to work without
usetex=true.
|
Original report at SourceForge, opened Wed Apr 15 14:40:54 2009
MPL currently has great math support for single line equations, but not for
multiple line ones. We ran into this problem when generating docs using
sphinx. The following snippet:
### /begin
.. math::
E(t) = x + \delta(t)
This type of experiment can ... | 1 |
Steps to reproduce:
1. Create new empty ASP.NET project in Visual Studio
2. Add TypeScript file to project
3. Accept prompt to add TypeScript functionality to project
4. From command-line, build the solution:
`msbuild /p:DeployOnBuild=true /p:EnablePackageProcessLoggingAndAssert=true`
The following error i... |
Typescript compiler lacks a native way of maintaining compilation options and
source files for a given compilation unit like a project or a module. Using
/// can help ease the problem, but there is still a tax of adding and managing
the references and it does not handle the compilation options issue. Moreover,
differ... | 0 |
### Apache Airflow version
2.2.3 (latest released)
### What happened
I followed all the instructions to set up Breeze for the first time but when I
run `./breeze` I get the following error:
#10 9.605
#10 9.605 Installing mysql client version 8.0
#10 9.605
#10 9.613 gpg: keybox '/tmp/tm... |
**Apache Airflow version** : 2.1.3
**Apache Airflow Provider versions** (please include all providers that are
relevant to your bug):
apache-airflow-providers-amazon==2.0.0
apache-airflow-providers-celery==2.0.0
apache-airflow-providers-cncf-kubernetes==2.0.0
apache-airflow-providers-docke... | 0 |
**Migrated issue, originally created by Anonymous**
I noticed that only linux (using cxOracle) there's an object leak with a
specific kind of usage.
from sqlalchemy import *
import gc
engine = create_engine('oracle://dsn=somedb&user=myuser&password=mypass')
foo = Table('foo', en... |
**Migrated issue, originally created by Anonymous**
When I try to use objects linked by relation with backref memory is not
released neither after objectstore.flush() nor objectstore.clear() nor
objectstore.expunge() nor gc.collect()
When I break backref relation memory cleared by gc.collect() good.
Bug reprodu... | 1 |
need to emit a 2.0 warning for this, no magic SQL things like this should
happen
def distinct(self, *expr):
r"""Apply a ``DISTINCT`` to the query and return the newly resulting
``Query``.
.. note::
The :meth:`.distinct` call include... |
**Migrated issue, originally created by Michael Bayer (@zzzeek)**
Starting with r2598, I'm seeing some failures with how I'm using the
association proxy. I've modified the
examples/association/proxied_association.py file which duplicates the
problem.
It is possible that I'm not suppose to remove associations ... | 0 |
On master, as a small example:
In [1]: df = pd.DataFrame([[1,2,3,4],[5,6,7,8]], columns=['A','B','A','B'])
In [2]: df
Out[2]:
A B A B
0 1 2 3 4
1 5 6 7 8
In [4]: df.to_excel('test_excel_duplicate_columns.xlsx')
gives:

[ ] 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 notice there is no control value accesor for inputs of type "file"
| 1 |
High Priority:
* `repeat`
* `split`
* `std`
* `var`
* `renorm`
* `eq`
* `ge`
* `gt`
* `le`
* `lt`
* `ne`
Mid Priority:
* `cross`
* `cumsum`
* `trace`
* `unfold`
* `cumprod`
* `atan2`
* `__and__`
* `__bool__`
* `__iand__`
* `__ior__`
* `__ixor__`
* `__mod__`
* `__nonz... | 1 | |
i can build and run the app fine locally but when i try deploying to heroku i
get this
remote: -----> Building dependencies
remote: Installing node modules (yarn.lock)
remote: yarn install v0.24.6
remote: [1/4] Resolving packages...
r... |
# Bug report
**Edit +++ ON HOLD** I just had a lightbulb moment. I will post my
discovery/misunderstanding in the next few hours. This ticket can probably be
closed then, but I have to test my new theory firstโฆ
## Describe the bug
Multiple (duplicate) meta tags such as `charSet` and `viewport` are rendered
in ... | 0 |
**Is this a request for help?** (If yes, you should use our troubleshooting
guide and community support channels, see
http://kubernetes.io/docs/troubleshooting/.): no
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.): "i... |
Reported by a couple users. For example:
http://stackoverflow.com/questions/34732597/kubernetes-pod-cant-connect-
through-service-to-self-only-to-other-pod-contai
If deliberate, we should document it. I don't see this mentioned in
services.md, for instance.
| 0 |
I think that the help text should be changed to indicate that the selector
$(container) needs to be used. If used as is it does not work.
Instead of
$("#target4").appendTo("#left-well");
it should read
$("#target4").appendTo($("#left-well"));
Challenge Waypoint: Use appendTo to Move Elements with jQuery has ... |
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 |
$ flutter create myapp
...app created..
$ cd myapp
$ flutter run
This app produces the following error when run on a Pixel XL:
--------- beginning of main
W/ActivityManager: Permission Denial: Accessing service ComponentInfo{com.google.android.music/com.google.android... |
## Steps to Reproduce
1. Start a Timer with a 30 second delay - set the callback to fire a method to make a sound using (package `audioplayers: ^0.7.8`)
2. Lock the phone
3. Wait 30 seconds. Notice that the sound was not fired right away. Sometimes it is 15 seconds late, sometimes it is 45 seconds late.
Why i... | 0 |
Am I the first one find it out?
v1-beta2 AppBar
If there is an icon button on the left the title, the icon button margin-left
is large than margin-top and margin-bottom.
I don't know if it is a issue.
|
Since upgrading from material-ui@1.0.0-beta.12 to >=1.0.0-beta.13, my
application cannot even boot up, it crashes straight with an error message.
* I have searched the issues of this repository and believe that this is not a duplicate.
## Current Behavior
The following error message gets thrown in the form of a ... | 0 |
The help gives no info about the fact that a function is deprecated.
EDIT: Unless you notice that it is defined in `deprecated.jl`.
Example:
help?> fft
search: fft fft! FFTW fftshift rfft ifft bfft ifft! bfft! ifftshift irfft brfft
No documentation found.
Base.DFT.fft i... |
Unlike other iterable types, `Task` seem to advance on `done` instead of
`next`. Is there a reason for this - it seems to break the iteration contract.
eg.
function p()
produce("A")
produce("B")
produce("C")
end
t = Task(p)
println("1")
s = start(t)
... | 0 |
In angular 1 we transform form data in this way `ng-model-options="{
getterSetter: true }"`. In my plunk
http://plnkr.co/edit/hWuOlOQn9iTlTKEL38sM?p=preview emails input can be a
comma delimited email list. How could it be implemented without moving
transform logic to the `onSubmit` method?
I found the `ControlValue... |
Implementing custom formatters and parsers is a common way to extend control
types in Angular 1.
I think there are two ways to do it in Angular 2:
* Implement parsers and formatters similar to Angular 1
* Make defining new value accessors easier, so the use case can be handled by defining a new accessor.
| 1 |
### System info
* Playwright Version: [v1.32.3]
* Operating System: [ubuntu-20.04]
* Browser: [Chromium]
* Other info:
### Source code
* I provided exact source code that allows reproducing the issue locally.
)
* we use m6i.2xlarge AWS instance type
... | 0 |
While tracing codes, found that:
Inside ReactCompositeComponentMixin.mountComponent, the code reads
// These should be set up in the constructor, but as a convenience for
// simpler class abstractions, we set them up after the fact.
inst.props = publicProps;
inst.context = ... |
Hello there!
We, in our team, love the new Hooks API!
But it comes with one negative thing we are experiencing since the 16.8
update...
Hooks can only be called inside the body of a function component.
We internally use multiple repositories.
One for every customer project and multiple share... | 0 |
Is there any existing feature for printing the scene tree to the console, e.g.
for debugging? I'm finding it a bit time-consuming to expand `node.children`
recursively in the JS Console. If not, I wanted to propose something along the
lines of:
SceneUtils.log( node );
. <Scene>
โโโ <O... |
**Describe the bug**
JPEG textures in an input GLB get exported as PNG, causing such models to grow
enormously in size.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to https://threejs.org/editor/
2. Import DamagedHelment.glb
3. Export as GLB
4. Note the original was 3.8 Mb, while the new is 17.... | 0 |
# Description of the new feature/enhancement
Improve the console User Experience by using the console schema "Campbell".
Currently, using the "Solarize Dark", makes it harder to read and the bash
console colors are gone.
# Proposed technical implementation details (optional)
Change:
"colorScheme": "Solarized Dar... |
When I don't use the terminal for some time (preferably when I left my PC
unattended for some time...), the window just disappeared.
Since I have little to no idea on how this can be reproduced consistently, I
mainly want to post this here in case other people observe the same behavior.
# Environment
... | 0 |
**TypeScript Version:**
1.8.0.10 & nightly (1.9.0-dev.20160601)
**Code**
Small example project here: https://github.com/unindented/ts-webpack-example
Project has the following layout:
.
โโโ app
โย ย โโโ index.css
โย ย โโโ index.html
โย ย โโโ index.ts
โโโ components
โย ย โโโ butt... |
**TypeScript Version:**
This is reproducible both in VSCode 1.0 and in the playground
(https://www.typescriptlang.org/play/#src=...)
**Code**
interface A {
x: number;
}
interface B {
x: string;
}
const c: A | B = { x: 1 || "a" };
const d: A | B = { ... | 0 |
I am trying to use scipy.dendrogram to create a dendrogram of genomics data.
Unfortunately, the dendrogram fails with a recursion error
THis code worked for slightly smaller datasets but maybe the data is
malformed.
Note: the data used here where created using sch.linkage(distance_matrix_rows,
method="ward")
##... |

I'm trying to do a dendrogram:
> ValueError: Linkage 'Z' uses the same cluster more than once.
Am I doing something wrong here?
| 1 |
### Proposed new feature or change:
As the title, `Bfloat16` is a new data type of `float number` that is used in
cuda A100 cards and intel CPU. Does `numpy` have any plan to support
`Bfloat16`?
|
## Feature
Hi,
I am working at PaddlePaddle(chinese DL framework). We and other DL frameworks
would extremely benefit from integrated bfloat16 numpy datatype. I have seen
that TF added its own implementation and lately a standalone pip package
bfloat16 was released.
I have also seen NEP 41, 42, 43 which from wha... | 1 |
Symfony 4.1.0
Hello when I deploy my symfony application on my production server it does not
work it shows me an error that is the following :
`Attempted to call an undefined method named "hasBeenStarted" of class
"Symfony\Component\HttpFoundation\Session\Session".`
Please can you help me to find a solution I must... |
**Symfony version(s) affected** : >=4.0.12, >=4.1.1
**Description**

After upgrading HttpFoundation to version 4.0.12 (due to a security issue
reported by SensioLabs Security Checker), our web debug... | 1 |
# Environment
Windows build number: 10.0.18363.836
PowerToys version: 0.18.1
PowerToy module for which you are reporting the bug (if applicable):Fancy Zones
Not sure if this specific issue is already mentioned, but just to be sure it
is...
# Steps to reproduce
I have two screens, using ... |
# Environment
Windows build number: 10.0.18363 build 18363
PowerToys version: 0.19.0
PowerToy module for which you are reporting the bug (if applicable):
PowerToys Run
# Steps to reproduce
Update PowerToys to 0.19.0, try to launh PowerToys Run through the default shortcut ... | 0 |
# Environment
Microsoft Windows [Version 10.0.17763.557]
other software:
1. Chrome Version 77.0.3865.90 (Official Build) (64-bit)
2. vstudio about (note the Resharper because this is where it happened):
Microsoft Visual Studio Professional 2019
Version 16.2.5
VisualStudio.16.Release/16.2.5+29306.81
Mic... |
# Environment
Windows build number: 18362.207
Windows Terminal version (if applicable):
Any other software? VS2019 with Windows 10 SDK 17763
# Steps to reproduce
Launch the sample
# Expected behavior
it should work
# Actual behavior
The call to SetConsoleMode fails with ERROR_IN... | 0 |
# Bug report
As written on the title I have the issue of having `__webpack_exports__` that
is undefined when loading (later) a second entry point.
I'm using the latest lib versions `webpack@5.35.0` and `webpack-dev-
server@3.11.2` on node `v15.11.0` on Linux.
I have a very simple config:
entry: ... |
Hi sokra,
I just got involved in another JS project and decided to stick with the tools
I am familiar with, i.e. webpack, among others. Unfortunately when I created a
new project I ran into some strange errors I could not explain. I ended up
cleaning my old project of all generated content (npm & jam modules) and
up... | 0 |
Hello,
I am trying to load vtk files in three.js using the VTKLoader. The vtk files
are produced by paraview. However, the loader fails silently and no vtk data
is shown on the browser.
Any suggestion?
Thank you!
|
I would like to ask for advice because of I have one use case where I need to
load VTK file which is a BINARY DATASET STRUCTURED POINTS, which represents a
segmented image.
# vtk DataFile Version 3.0
VTK File Generated by Insight Segmentation and Registration Toolkit (ITK)
BINARY
DATASET ST... | 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.5
* Operating System version: xxx
* Java version: xxx
### Steps to reproduce this issue
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.0
* Operating System version: centos
* Java version: 1.8
### ้ๆฑ
ๆณๅ่ฐ็จ๏ผ่ฟๅๅผๅขๅ ็classๅญๆฎต๏ผๅปบ่ฎฎๅขๅ ๅผๅ
ณใ
... | 0 |
### 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:**
* v1... |
To repro:
1. Launch an Electron app (hello world/default fiddle will do)
2. Open DevTools
3. Find a minified JS file, e.g. renderer_init.js
4. Click the "Pretty Print" button in DevTools
Expected behavior:
The JS in the DevTools view is replaced with a pretty-printed version of the
code
Actual behavior: ... | 1 |
# Environment
Windows Terminal version: Microsoft Windows [Version 10.0.18362.239]
Linux subsystem in Windows <a href="https://www.microsoft.com/en-us/p/kali-linux/9pkr34tncv07?activetab=pivot:overviewtab" target="_blank">(you can download it from here!)</a><a href="https://www.kali.org/news/kali-l... |
Windows version is 10.0.16299.248
Bash is using locale en_US.UTF-8
When i use the Arrow keys to go back on the command line, and start typing,
what has previously been written will be overwritten IF I have passed over a
space character using the right Arrow key (not expected). If I do not pass
over a space charact... | 0 |
## Bug Report
**Current Behavior**
Using typescript if I have a class that extends from another class fields in
the extending class are overwritten with undefined. This happens after the
constructor has finished and it occurs in the defineProperty.js of
babelRuntime.
**Input Code**
class Base {
... |
## Bug Report
**Current Behavior**
When a class (B) extends another class (A) and includes a type definition to
narrow the type of something specified in class A, it will set the narrowed
property's value to undefined. This diverges from the TSC behavior.
The output from the below code under babel is `a, undefin... | 1 |
A way to make a custom proptype required would be useful. Maybe some form of
the createChainableTypeChecker factory could be exposed?
|
This one is hard to explain or reproduce but I'll try...
I'm using the following mixin which has changed slightly from the original I
found in a gist a while back:
var React = require('react');
var LayeredComponentMixin = {
componentDidMount: function() {
this._layer = docu... | 0 |
Trying to install scipy 0.14.0 under Python 3.3.4 but got test errors on three
modules with the configuration listed below.
Using LAPACK, ATLAS, and BLAS rpmโs that comes with Red Hat 6.
Any help would be appreciated.
Dwayne
#
## FAIL: test_basic.test_xlogy
Traceback (most recent call last):
File "/cm/shared... |
Hello,
I compiled scipy 0.13.3 succesfully on my CentOS laptop on which I run the
following kernel:
2.6.32-431.11.2.el6.x86_64
I have a two core proc (0,1) of the following type:
> > more /proc/cpuinfo
> processor : 0
> vendor_id : GenuineIntel
> cpu family : 6
> model : 23
> model name : Intel(R)... | 1 |
Since v0.0.6 of package jqueryui.TypeScript.DefinitelyTyped, there're
compilations errors when referencing jqueryui.d.ts. I tried v0.0.7 and I have
the same errors.
Signature for 'position' is duplicated
Signature for 'hide' is duplicated
Signature for 'show' is duplicated
Signature for 'toggle' is duplicated
... |
* I tried using the `@types/node` package and had problems.
* I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript
* I have a question that is inappropriate for StackOverflow. (Please ask any appropriate questions there).
* Mention the authors (see `Definitions by:` in `ind... | 0 |
Sorry if this is sparse on details. I mainly want to determine if there is a
bug with `showDrawer` or with the way I attempted to use it.
Yesterday, I attempted to use `showDrawer` with the `7be58b1` alpha branch of
Flutter. The drawer appeared/dismissed correctly, and the widgets I put in the
drawer were correct.
... |
 **Issue byHixie**
_Wednesday Oct 07, 2015 at 21:22 GMT_
_Originally opened ashttps://github.com/flutter/engine/issues/1528_
* * *
e.g. the card_collection.dart demo's drawer's checkboxes don't check when you
tap them.
| 1 |
This was very surprising to me, and took me a very long time to figure out:
julia> using Random
julia> rng = Random.GLOBAL_RNG
_GLOBAL_RNG()
julia> deepcopy(rng) === rng
true
Even more surprising is
julia> copy(rng) === rng
false
There's similar behavior w... |
let
function wat()
a::String = "wat"
println(a)
end
a::String = "me"
wat()
end
This will throw an exception telling me
ERROR: LoadError: syntax: type of "a" declared in inner scope
while loading /wat.jl, in expression starting on l... | 0 |
Was reading up on changes for Android P, and it led me to file this...
https://android-developers.googleblog.com/2017/11/getting-your-android-app-
ready-for.html
https://code.tutsplus.com/articles/faster-logins-with-password-autofill-in-
ios-11--cms-29096
@Hixie do you think this is the domain of the framework or... |
We should make sure our text fields trigger the autofill support:
https://developer.android.com/guide/topics/text/autofill.html
| 1 |
Misc. Window Management bucket
* Make sure caption controls "dim out" when window loses NC focus (`WM_NCACTIVATE`?)
* #1840 When we're maximized, the system thinks we're a full-screen app. We need to jiggle the window by 1px or something.
Others:
* #2001 Make sure MinMaxCloseControl supports FullScreen & Tab... |
* Your Windows build number: (Type `ver` at a Windows Command Prompt)
Microsoft Windows [Version 10.0.18362.113]
* What you're doing and what's happening: (Copy & paste specific commands and their output, or include screen shots)
Compiled Windows Terminal application using VS2019 16.0.3 targeted on x86.
When... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.