text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
#### Code Sample
import pandas as pd
df = pd.DataFrame({
'a': [1, 1, 2, 3],
'b': [None, 1, 2, 3],
'c': [1,2,3,4],
})
grouped = df.groupby(('a', 'b'))
print('Number of groups:', len(grouped))
# Number of groups: 4
num_iterations = 0
for ... |
ENH: maybe for now just provide a warning if dropping the nan rows when
pivotting...
rom ml
http://stackoverflow.com/questions/16860172/python-pandas-pivot-table-
silently-drops-indices-with-nans
This is effectivly trying to groupby on a NaN, currently not allowed
In [13]: a = [['a', 'b', 12, 12, 12... | 1 |
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gce/21728/\n\nFailed: [k8s.io] V1Job should scale a job up {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:127\n Aug 16 08:11:16.645: Couldn't delete ns \"e2e-tests-v1job-gmj3l\": namespace e2e-tests-v1job-gmj3l was not deleted within limit: timed out waiting for the condition, pods remaining: []\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:265\n \n\nPrevious issues for this test: #29976 #30464\n\n" |
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:127
Aug 16 08:11:16.645: Couldn't delete ns "e2e-tests-v1job-gmj3l": namespace
e2e-tests-v1job-gmj3l was not deleted within limit: timed out waiting for the
condition, pods remaining: []
/go/src/k8s.io/kubernetes... | 1 |
Forked from #4396 and probably other issues.
Nodes and other infrastructure resources (e.g., persistent volumes) should go
into a namespace, such as kubernetes. Not putting them into a namespaces,
creates special cases everywhere.
@derekwaynecarr @smarterclayton @lavalamp @thockin @erictune @markturansky
|
See issue #6079 as the roll-up for node upgrades.
This issue is to do an in-place upgrade of the kubelet and kube-proxy binaries
while a node is running. Docker and the kernel/OS are not changed. This
upgrade can only be performed if the requested new version of kubelet and
kube-proxy are compatible with the existin... | 0 |
When renaming a file the file explorer becomes grey. After hitting ENTER to
confirm the changed name, the explorer view (file names) stays grey instead of
becoming white. Does appear randomly. The working files view works as
expected.

Kudos:
I love the new integrated terminal feature!
Task I am trying to do:
Clear the screen after typing a series of terminal commands.
Steps to Reproduce:
1. On a Mac, open the integrated terminal (e.g. Ctrl-`)
2. Type in a few commands.
3. C... | 0 |
* Electron version: 3.1.1
* Operating system: Mac 10.12.2
### Expected behavior
When I refresh the app by pressing `command+r` the page should refresh and the
vibrancy effect should not be removed.
### Actual behavior
When I actually refresh the page, the vibrancy effect is removed and I only
get a white backg... |
* Electron version: 1.4.13 (currently the latest)
* Operating system: OS X El Capitan (10.11.4)
### Expected behavior
When the web page reloads the vibrancy set on the `BrowserWindow` should
remain active.
### Actual behavior
When the web page reloads (either using `[Cmd+R]`, or in my case, due to
Create Reac... | 1 |
> Issue originally made by @Riim
### Bug information
* **Babel version:** 6.x.x
### Options
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel',
query: { presets: ['es2015'] }
}
]
### Input code
... |
It fails with `"<name>" is read-only`.
Sample code:
class A {
b() {
const b = 1;
}
}
| 0 |
Let's say we have two pages: PageA, PageB, and they have pageA.js and
pageB.js. Both of them depdends on a common bunch of stuffs, which can be
packed into a file called "common.js".
pageA.js:
`require(['common', 'someOtherThingsANeeds'], function(){//do sth.})`
pageB.js:
`require(['common', 'someOtherThingsB... |
# Bug report
**What is the current behavior?**
Webpack 5 persistent cache + EnvironmentPlugin: environment variables changing
doesn't affect cache.
**If the current behavior is a bug, please provide the steps to reproduce.**
* make webpack config with persistent cache and EnvironmentPlugin
* build code, for e... | 0 |
When you clone an Object3D object that contains animation, the newly created
object cannot be displayed in the scene.
|
Skinned material need their own geometry to work. This is because the material
deforms the geometry, so if you share the same geometry between two meshes
with deformation, things are going to get weird (at least that's how I
understand it).
Now the problem is, if you load a mesh from a FBX or something else and it
c... | 1 |
if you load a gltf model with some skinned animation and then try to clone
that mesh - you will find yourself in a bit of a pickle!
Skinned geometry loaded with GLTF has no "bones" property, which is expected
by "SkinnedMesh", see:
three.js/src/objects/SkinnedMesh.js
Lines 38 to 47 in 17264b9
| initBones: func... |
##### Description of the problem
GLTF2 models that are clones do not displayed correctly. This is for a number
of reasons
* the onBeforeRender callback is not copied
* GLTFShader is not cloned across
* SkinnedModel skeleton is reinitialised to 0 bones and the source skinnedmodel skeleton is not cloned
http:/... | 1 |
Not certain if this is a bug or defined behaviour (but then the error message
is not clear in any case).
In 0.13.1:
In [28]: df = pd.DataFrame(np.random.randn(9).reshape(3,3), index=[0.1,0.2,0.2],
columns=['a','b','c'])
In [29]: df
Out[29]:
a b c
0.1 1... |
Series.unique returns an numpy array but np.unique(series) returns a series.
Not sure if it is intentional but it might be better to keep both the calls
consistent.
In [173]: a[:10]
Out[173]:
0 4
1 210
2 210
3 210
4 3197
5 3197
6 3197
7 3457
8 3713
9 3741
In [174]: a[:10].unique()
Out[174]: ... | 0 |
This code:
type A end
Base.convert{F}(::Type{A}, x::F, v::Union{F,Vector{F}} = one(F)) = A()
on Julia v0.4.3 gives
julia> convert(A, 0.1)
A()
julia> convert(A, 0.1, 0.2)
A()
julia> convert(A, 0.1, [0.2])
ERROR: MethodError: `convert` has no method match... |
This works:
julia> f(x::Int; y::Union(Symbol, Int)=:foo) = println(y)
# methods for generic function f
f(x::Int64) at none:1
julia> f(1)
foo
julia> f(1, y=:bar)
bar
julia> f(1, y=3)
3
A parametric version instead fails with a cryptic message:
... | 1 |
I know there are a lot of threads out there but I cannot found an "official"
solution to this question.
What is the best way of removing the padding between the columns, and the
container?
Sorry if the question already have an answer.
|
I have tried to make my layout **100%**. And for that I didn't use any `<div
class ="container">`. Just started with `<div class ="row">`.
<div class="row">
<div class="col-md-3">
<div class="sectionLeft">
Sidebar Content
</div>
</div>
<di... | 1 |
Per https://arxiv.org/abs/1502.01852 I'm giving the channel-wise PReLUs a try,
as in:
nn.PReLU(num_parameters=num_channels)
When accidentally getting the `num_parameters` argument wrong it seems like we
crash hard with an invalid `free` somewhere in native code.
Can we put some guards in place t... |
Previously, my desktop was using libtorch 1.2.0 release and everything worked.
After generating the exe, I wanted to take the notebook for on-site
deployment. I installed libtorch on the notebook. At that time, it had been
updated to 1.3.1 but reported the C4146 error. Even if I commented out
everything in the main... | 0 |
1. What version of Go are you using (`go version`)?
1.6
2. What operating system and processor architecture are you using (`go env`)?
linux amd64
3. What did you do?
https://play.golang.org/p/1zJjQLBlMK
4. What did you expect to see?
I want `float32(1e-45) == float32(math.SmallestNonzeroFloat32)` t... |
This is a follow-up to issue #14553. In the special case of a math.Float
number that is smaller than the smallest denormal, but that should be rounded
up to the smallest denormal, rounding up doesn't happen for values x with `0.5
* 2**-149 (0.1000p-149) < x < 0.75 * 2**-149 (0.1100p-149)` for float32
(analogously for... | 1 |
## Bug Report
**For English only** , other languages will not accept.
Before report a bug, make sure you have:
* Searched open and closed GitHub issues.
* Read documentation: ShardingSphere Doc.
Please pay attention on issues you submitted, because we maybe need more
details.
If no response **more than 7 da... |
### Which version of ShardingSphere did you use?
4.0.0-RC1
jOOQ 3.11.11
### Which project did you use? Sharding-JDBC or Sharding-Proxy?
Sharding-JDBC
### Expected behavior
select dest_regional_fee_1.LOGNO from dest_regional_fee_1 where dest_regional_fee_1.ID = ?
### Actual behavior
... | 0 |
Right now Scikit-Learn provides several Naive Bayes models.
* `GaussianNB`: For continuous features that are assumed to be Gaussian distributed.
* `MultinomialNB`: For discreet features that are multinomially distributed, e.g. counts of words of occurrences
* `BernoulliNB`: For indicator features (True/False) ... |
Random Forest is a popular classification technique; recent benchmarks [1][2]
have shown that performance of sklearn's RandomForestClassifier is inferior to
competing software implementations.
The performance penalty most likely stems from the underlying tree building
procedure, however, changes here require conside... | 0 |
penguins = sns.load_dataset("penguins")
sns.displot(data=penguins, x="flipper_length_mm", col='species',
facet_kws=dict(sharex=False, sharey=False))

The x-axis should not be shared.
|
I am trying to use `displot` to plot distributions of different variables in
the same figure. I might be using `displot` incorrectly, but it seems to me
that the `sharex` option passed to `facet_kws` is not working correctly (while
`sharey` does work as expected).
Simple code snippet to reproduce:
imp... | 0 |
### Bug summary
In jupyter lab, the code snippet below sets the title of the axis to the x,y
coords of a mouse click, however in matplotlib 3.5.2 specifically, the clicks
aren't registered unless I'm clicking around using the pan or zoom controls of
the interactive widget. Downgrading to matplotlib 3.5.1, the clicks... |
### Bug summary
A regression between release versions 3.5.1 and 3.5.2 causes figures to fail
to redraw after an initial plot is added using the `pyplot` interface in an
interactive IPython session. This has been observed with both `pyplot.plot`
and `pyplot.tripcolor`. The figure will show the first plot drawn, but
s... | 1 |
The ES7 proposal is available at: https://github.com/leebyron/ecmascript-more-
export-from
The additions include:
reexporting default:
// proposed:
export v from "mod";
// symmetric to:
import v from "mod";
export {v};
reexporting as sub-module:
// proposed:
e... |
Looking at history :
https://github.com/Microsoft/TypeScript/commits/master/bin/lib.d.ts
Was there on April 11 :
https://github.com/Microsoft/TypeScript/blob/6f1feffe6710a3201fb46a0b01e16051bfc18a29/bin/lib.d.ts#L1689
Isn't there on April 18:
https://github.com/Microsoft/TypeScript/blob/b8ebf561f94ea27ecfc6af3c2b20... | 0 |
Autocompletion of variable names, auto closing of brackets and so on doesn't
seem to work in .jsx-files. Shouldn't these files work the same way as the
regular .js-files with the exception of supporting the JSX syntax?
|
I know VSCode has not support JSX yet but it didn't appear so much error
highlights in the last version, even I had already changed my language mode
into `Plain Text`.

| 1 |
##### System information (version)
* OpenCV => 3.4.1
* Operating System / Platform => Windows 64 Bit
* Compiler => Visual Studio 2017
##### Detailed description
`cv::MotionJpegCapture` crashes if `grabFrame` is called after the end of
stream is reached due to unchecked iterator increment `++m_frame_iterator`... |
##### System information (version)
* OpenCV => 2.4+ (All versions since 2012)
* Operating System / Platform => Debian 64 Bit
* Compiler => GCC 6
##### Detailed description
###### Background
I found this issue while trying to use the Conan package manager. I realise
that the OpenCV does not provide any offic... | 0 |
When running Flutter on desktop (desktop embedder), hitting the Enter key
while editing a TextField doesn't call onSubmitted or onEditingComplete. This
only happens on iOS and Android simulators.
|
Enter key blurs the field, which is unexpected. It essentially maps to the
"done" key on the android keyboard which hides the keyboard, but that seems
wrong when using a physical keyboard. We should seek UX guidance on what the
right behavior is here.
| 1 |
I'm working on a library using TypeScript called monapt. I have a grunt task
to compile multiple files and concatenate them together. However, the output
definition has some potential downsides. (I can't remember exactly what they
are at the moment, but hopefully someone else can shed some light on this)
Here is a c... |
Tried using allowJs with a minified version of google analytics and ran into
some duplicate identifier errors. Cut down testcase:
function bar(a) {
if (a)
... | 0 |
_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): Ubuntu 16.04.5 LTS... |
_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): Ubuntu 18.04.1 LTS... | 1 |
##### Feature Request
I like sticking with Three.js' built in animation system so everything works
off the same clock. Most of the stuff you find on the internet suggests using
a third party tweening api, but that must be out of date because
AnimationClip.js really takes care of business for just about anything you
... |
##### Description of the problem
I would like to refactor THREE.Interpolant to be a bit simplier base class
that has less assumptions about how it will be used. This would make it more
flexible.
I would like to make the following changes:
* Remove the assumption in the base class that there is one sampleValues b... | 1 |
# Environment
Windows build number: [run `[Environment]::OSVersion` for powershell, or `ver` for cmd]
Windows Terminal version (if applicable):
Any other software?
# Steps to reproduce
# Expected behavior
# Actual behavior
|
# Environment
Windows build number: Version 10.0.18362.239
Windows Terminal version (if applicable):0.2.1831.0
Symfony 4.3
# Steps to reproduce
Render a block with background color after the text. The used command is from
Symfony 4.3. I can provide instructions or find the exact con... | 0 |
This is a somewhat cosmetic/quality of life issue, but I found the compiler
error in this particular case could have been much more helpful.
**TypeScript Version:** 1.8.9
**Code**
interface A { }
class B extends A { }
**Expected behavior:** An error alluding to the fact that `A` cannot be
extend... |
**TypeScript Version:**
1.8.7
**Code**
tsconfig.json
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"declaration": true
},
"files": [
"main.ts",
"mytypes.ts"
]
}
main.ts
i... | 1 |
class Test { static name = "what"; } will report "what" for Test.name in IE11
but "Test" in FF and Chrome. This seems to be by design
(https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Function/name).
Either the use of 'name' should be not allowed at all or the compiler should
do some name... |
**TypeScript Version:**
1.8.5
**Code**
function FeedPig(what:number)
{
print("the pig ate " + what + " pigs at 8:12");
}
FeedPig([1,2,3]);
**Compiler Invocation**
Using typescriptServices.js:
`ts.transpile(source, null, filename)`
**Expected behavior:**
Type error
... | 0 |
# Environment
Windows build number: [Version 10.0.18362.267] Windows 10 Professional Version 1903
Windows Terminal version (if applicable): whatever is out-of-the-box
Any other software?
* Ubuntu 18.04.LTS from the Microsoft Store fully updated with
`sudo apt update ; sudo apt up... |
# Environment
Windows build number: 10.0.18362.0
Windows Terminal version (if applicable): 0.5.2762.0
# Steps to reproduce
Issue an EL (clear to end of line, `\e[K`) when the cursor is at the rightmost
position, in "pending wrap" a.k.a. "delayed eol wrap" state. Print further
characters. E.g... | 0 |
## 🚀 Feature
`torch.mean` currently only accepts a single dimension. It should also accept
a tuple of dimensions like `torch.sum` does.
## Motivation
Makes code cleaner and more concise when taking the mean of some quantity
across multiple dimensions. An example of this is taking the mean of some
pixel-wise quant... |
* mean
* var, std
* max, min
cc @VitalyFedyunin @ngimel
| 1 |
Hi,
I'm just wondering why `numpy` can be installed on Windows using `pip`, while
for `scipy` it seems that it requires a compilation?
Are there any plans to make this command work on windows on the future: `pip
install scipy`?
Thanks.
|
It would be very helpful to have binary wheel packages for Windows platform.
I think it might work to build those wheels using Appveyor service:
http://www.appveyor.com/
| 1 |
$ pwd
/tmp/scratch
$ ls
main.go x_amd64.s x_other.go
$ cat main.go
package main
func main() {
println(foo())
}
$ cat x_amd64.s
TEXT ·foo(SB), 7, $0
MOVQ $43, ret+0(FP)
RET
$ cat x_other.go
package main
func foo() ... |
Please answer these questions before submitting your issue. Thanks!
1. What version of Go are you using (`go version`)?
go version devel +beabd87 Tue Mar 8 06:02:15 2016 +0000 freebsd/amd64
1. What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOBIN="/h... | 0 |
When performing a hot reload in an application which uses a plugin with
background execution, the background isolate is not updated with the latest
code.
|
## Steps to Reproduce
For my App i using the TabbarView(). On the Profile Page i get bottom overflow
issue, when the keyboard open...

### Tabbar Controller Page
@overr... | 0 |
## Steps to Reproduce
I start a SimpleDialog with a list in it . When I start the Dialog on the
phone all is fine. In the emulator I get an exception which does not provide
info to get to the root cause or useable information. (for me ;))
Phone and Emulator:
• Android SDK built for x86 • emulator-5554 • android-... |
The `AboutListTile` class that provides list of all licenses used by an app
contains a lot of duplicates.
The class is located here:
https://github.com/flutter/flutter/blob/master/packages/flutter/lib/src/material/about.dart
Please remove the duplicating entries.
| 0 |
[f|t]s_module_loader has unnecessary duplicated code.
|
Hello,
After trying for a couple of time on many different install, Deno does not
seem to build on ARM platforms,
I know there is a bug that has been recently patched after the NAPI bug that
occured :
Caused by:
process didn't exit successfully: `/tmp/cargo-installOYnaBk/release/build/deno-0070... | 0 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
As a user who is navigating the react-router enabled site using the keyboard,
I have made my way to a Tabs component, and it is displaying keyboard focus
properly. To select the focused tab, I hit space ... |
Not sure if this is a bug or something I'm doing wrong. I've upgraded to
v1.0.0-alpha.1 to fix issues with the react-tap-event-plugin, and trying to
modify things to suit the new docs but my drawer won't open.
When I attempt to open it, I get this error:
Uncaught TypeError: Cannot read property 'c... | 0 |
**Arjen Poutsma** opened **SPR-5690** and commented
See #10294:
It is useful to filter `@RequestMapping` method based on request headers,
similarly to filtering by paramters. In effect, this feature would look
something like:
`@RequestMapping`(value = "/hotels", header = "content-type=text/*")
This would match r... |
**Ray** opened **SPR-9802** and commented
We tried to upgrade Spring framework from 2.5.5 to 3.1.1, during performance
test we found that TransactionInterceptor will add some performance overhead
because introduce of following method:
org.springframework.transaction.interceptor.TransactionAspectSupport.methodIden... | 0 |
##### ISSUE TYPE
* Bug Report
##### ANSIBLE VERSION
ansible 2.1.1.0
##### CONFIGURATION
##### OS / ENVIRONMENT
Ubuntu 16.04
##### SUMMARY
group_vars are ignored if the inventory is the output of a script that is
stored in a subdirectory. This includes the popular ec2 inventory script. Thi... |
The ability to have role dependencies is nice, but it would be even better to
be able to
call a role as a task with parameters. It would still be ok having to define
the role as a
dependency in meta, but perhaps with a run tag, for example:
meta/main.yml
dependencies:
- role: pre
a... | 0 |
I can write Persian text (almost same as Arabic) in Atom even though it does
not appear right to left. I can live with it, the problem is when I try to
edit the text and I position the cursor somewhere inside the text and begin to
type, the characters appear somewhere else, a few characters away.
To show you a good ... |
Halp ticket:
* support/e61e5074bc3011e396a434cf997499c3
> Support for Unicode is incomplete. Unicode characters are shown, but the
> cursor get stuck, and the navigation with the keyboard arrows stop working.
The user was using this string as an example `ג׳ג׳ג׳dwdwdww`
Here's a GIF of me pressing just the right... | 1 |
Instead of consuming 250 milli-cores, recourse consumer consumes nearly 400
milli-cores. This causes flakiness of autoscaling e2e tests:
http://kubekins.dls.corp.google.com/job/kubernetes-e2e-gce-autoscaling/1521/
**Horizontal pod autoscaling [Skipped][Autoscaling Suite] should scale from 1
pod to 3 pods and from ... |
http://kubekins.dls.corp.google.com/view/Critical%20Builds/job/kubernetes-e2e-gce-
autoscaling/1893/
Horizontal pod autoscaling (scale resource: CPU) [Skipped] [Autoscaling]
ReplicationController Should scale from 1 pod to 3 pods and from 3 to 5
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/... | 1 |
### 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:**
* Do... |
I have a function that is called several times in a loop that is trying to
access cookies, but after few times i get the following error:
Electron: 1.4.11
Cannot get property 'cookies' on missing remote object 16127
Error: Cannot get property 'cookies' on missing remote object 16127
at throwRPCError (D:\devel\w... | 0 |
Very helpful in storing additional info per property. for example a display
name or some other application specific annotations for a property
|
A mapping can have a _meta element - but it only keeps it if declared on the
top level.
When using the _meta to annotate a mapping, or keeping custom configuration on
it, or using it for some binding - a lot of times besides the top level you
also need more custom data on a field level. So you need the mapping to k... | 1 |
## PC details
* scipy==0.12.0
* `Linux dana 3.8.0-30-generic #44-Ubuntu SMP Thu Aug 22 20:52:24 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux`
* Intel(R) Xeon(R) CPU E5-1650 0 @ 3.20GHz
* Linked against Intel MKL (though issue replicated on a machine linked against Atlas)
## Issue
With this mesh I am seeing inco... |
_Original tickethttp://projects.scipy.org/scipy/ticket/642 on 2008-04-15 by
trac user AchimGaedke, assigned to unknown._
Hello!
I use scipy.optimize.leastsq to adopt paramters of a model to measured data.
Each evaluation of that model costs 1.5 h of computation time. Unfortunately I
can not specify a gradient func... | 0 |
The scipy implementation of the hyp1f1 function exhibits a huge inaccuracy
based on a comparison to mpmath's arbitrary-precision and double-precision
implementations (shown below) as well as GSL, all of which agree (GSL gives
`1.649746910616242567826e+00`). The input here comes from GSL's included
tests.
#### Reprod... |
hyp1f1 explodes for modestly large arguments. For example:
scipy.special.hyp1f1(30, 70, 20j)
returns
(-1748.2243027213672+51.441200608645886j)
which is completely wrong (whenever 1 < a < b and z is purely imaginary,
abs(1F1(a,b,z)) <= 1).
This doesn't seem to be insoluble, since the package mpmath (also open sou... | 1 |
I am using the gradle 2.8 and java 1.8.0_20 to build the master branch of the
elasticsearch and get the error:
**AutoExpandReplicas.java:44 : cannot assign to the final variable min**
**min = Integer.parseInt(sMin);**
I have searched the google and there is no answer.
|
I've just updated to JDK 7 update 72 and 1.4.0.Beta1 doesn't work any more
(win 8.1).
# java -version
java version "1.7.0_72"
Java(TM) SE Runtime Environment (build 1.7.0_72-b14)
Java HotSpot(TM) Client VM (build 24.72-b04, mixed mode, sharing)
[2014-10-25 00:37:58,821][I... | 0 |
* Electron version: v1.8.2-beta.3
* Operating system: window7
### Expected behavior
### Actual behavior
Open DevTools, click on any key in the console, the entire application crashes
####Scenario Restore
1. Execute /script/build.py No error occurred.
2. After deployment, find the electron.exe in out and ... |
* Electron version: 1.8.2-beta.3
* Operating system: Windows_NT 10.0.15063
### Expected behavior
When devtools are open I should be able to type directly into the console.
### Actual behavior
When you type into the console in devtools it crashes the electron app without
showing any errors.
### How to reproduc... | 1 |
1. Right Click
**Atom Version** : 0.209.0
**System** : Microsoft Windows 8.1
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Function.Module._load (module... |
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 |
Can no longer start superset in docker on latest master branch (commit:
`ff6773df4ed7d3baca15f19baf30a793b4fce248`)
### Expected results
`docker-init.sh` script doesn't error out.
Here's the command working when I `git checkout
300c4ecb0f6798e5901dcb88a034c53e708ff0b4` :
docker-compose run --rm supe... |
When setting up hierarchical filters, the user might select the parent filter
to be the child filter and the child filter to be the parent. While this is an
obvious mistake from the user, the UI should not freeze but should instead
emit a proper error.
#### How to reproduce the bug
1. Go to a Dashboard
2. Add a... | 0 |
For the one who will tag this issue: Affects **Linux** version. Likely is a
bug. Causes a crash.
I'm not sure where the issue is, but since it's Atom that crashes as a result,
I assume I should report it here. If it turns out to be issue somewhere else,
I'll take my time to report it in the appropriate place.
### S... |
Atom Version: 0.129.0
Video of me triggering the bug: http://ara.sh/private/atom-crash.ogv
Reproducible every time.
Environment:
Ubuntu 14.04 (all updates installed as of filing this issue)
Unity desktop environment
Repro steps:
1. Launch atom from the Terminal
2. Open a Firefox window (or use an exist... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.6
* Operating System version: macos 10.15.13
* Java version: xxx
### Steps to reproduce this... |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.3
* Operating System version: Centos7
* Java version: openjdk1.8+
### Steps to reproduce thi... | 0 |
* Output of `node_modules/.bin/electron --version`: v5.0.0-beta.1
* Operating System (Platform and Version): Windows 10 Version 1803 build 17134.523
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): v4.0.3
**Expected Behavior**
Menu item click function... |
* **Electron Version** (output of `node_modules/.bin/electron --version`):
* 5.0.0-beta.2
* **Operating System** (Platform and Version):
* Windows 7 Professional (SP1)
### Expected Behavior
Not crash
### Actual behavior
Crash 3221225477
### To Reproduce
https://github.com/Gvozd/electron-quick-star... | 1 |
**Description**
PHPUnit 8 has just been released. In addition to new features, the following
has been deprecated and will be removed in PHPUnit 9:
* `assertInternalType()` and `assertNotInternalType()`
* `assertArraySubset()`
* Annotation(s) for expecting exceptions
* Assertions (and helper methods) that ... |
**Description**
Allow to specifying a "message name" which define the type of message that can
be handled.
**Example**
Simple use-case where my main message can be extended:
<?php
use App\Messenger\MessageInterface;
class RandomMessage implements MessageInterface
{
p... | 0 |
**Thanks for reading!**
I will show something to intro this issue.
**I have test two images:**
image one
original size 157 × 266

image two
or... |
Sometimes we need to load image for center inside, but I have not found this
method!
Can add method for center inside?
| 1 |
Running on super old distro (don't ask), yields errors:
$ /home/glen/.deno/bin/deno --help
/home/glen/.deno/bin/deno: /lib64/libgcc_s.so.1: version `GCC_4.0.0' not found (required by /home/glen/.deno/bin/deno)
/home/glen/.deno/bin/deno: /lib64/libgcc_s.so.1: version `GCC_4.2.0' not found (requi... |
Previously I was able to use `--target x86_64-unknown-linux-musl` on rusty_v8
and deno (excluding the plugin). denoland/rusty_v8#49
> It's unclear to me if it's best to _only_ target x86_64-unknown-linux-musl
> or to additionally support it. e.g. sccache seems to _only_ provide binaries
> for that target.
The one c... | 1 |
### 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 a feature request that matches the one I want to file, without success.
### Electron Version
12.0.2
### What opera... |
* Electron version: 1.8.4, recent master (`0d7becf`)
* Operating system: win7 sp1 x64
### Expected behavior
it should navigate using the set proxy
### Actual behavior
net::ERR_NO_SUPPORTED_PROXIES is logged in the devtools console
### How to reproduce
'use strict';
const {app, Browser... | 1 |
* VSCode Version: 1.0.0
* OS Version: Windows 10
Steps to Reproduce:
1. Create a simple html component (Angular, Aurelia, etc.) file. For example: "my-component.html"
2. Set its content to something like: "`<template><div><div><img /></div></div></template>`" all on one line.
3. Press Alt+Shift+F to format... |
* VSCode Version: 1.0.0
* OS Version: OSX 10.11.4
Steps to Reproduce:
1. Try to auto format the following HTML
`<template><div>Hello</div><div>World</div></template>`
I expect to get something like this
`<template>`
`____<div>Hello</div>`
`____<div>World</div>`
`</template>`
But it does not work. If... | 1 |
Hi,
Would it be possible to have PointCloud.raycast() supporting
PointCloud.material.sizeAttenuation = true?
Right now PointCloud.raycast() assumes that all the particles are of the same
size, which is not the case if sizeAttenuation is used.
Many thanks.
Ricardo
|
Thanks so much for adding PointCloud support for RayCasting in r.61! Unless I
am missing something, the current implementation assumes that the points are
all of the same size. Is it possible to make the raycaster aware of the
gl_PointSize of each point, rather than uniformly using
params.PointCloud.threshold?
Thank... | 1 |
sometimes, you can get a large array of flakes due to oome errors.
+++ [0307 09:08:06] Building go targets for linux/amd64:
cmd/hyperkube
+++ [0307 09:08:27] Placing binaries
SUCCESS
Verifying ./hack/../hack/verify-flags-underscore.py
SUCCESS
+ ./hack/test-go.sh
Running ... |
Project: kubernetes-jenkins-pull
Zone: us-central1-b
+++ [0307 10:43:30] Verifying Prerequisites....
+++ [0307 10:43:40] Building Docker image kube-build:build-8f5624d469.
+++ [0307 10:44:35] Running build command....
+++ [0307 10:44:36] Creating data container
Go version: go vers... | 1 |
In version 14.2, if the duplicate filter should detect whether the URL its
ignoring has been sent to a Spider previously. If not, it should not silently
ignore the duplicate URL. A recent Request I did had a 302 redirect to an
identical URL, before redirecting to a unique URL. It took half an hour before
I realized t... |
### Description
In Scrapy 2.6, an ItemLoader instantiated with a base item keeps a reference
to a single same item and instead of loading new items, it repeats the values
added, therefore, producing duplicate items.
### Steps to Reproduce
Run the following script:
from scrapy.loader import ItemLoade... | 0 |
**Ted Bergeron** opened **SPR-4528** and commented
Based on my article:
http://www.triview.com/articles/hibernate/validator/canmeetyourneeds.html
provide built in integration with hibernate validator.
This may be broken down into several issues:
1. Extend JSP tag library to search for validation annotations via ... |
**Bob Jacoby** opened **SPR-7940** and commented
One of my beans (using the `@Component` annotation) implements the
ApplicationListener interface. The bean is also proxied (uses the
`@Transaction` annotation on a few methods). After initializing the context my
AbstractApplicationEventMulticaster defaultRetriever co... | 0 |
system:W7 32
npm:2.15.0
node:V4.4.2
electron:v1.1.0
Masters,I am new to electron and nodejs,please help me.
When I run "npm install --save-dev electron-rebuild", install unsuccess
Partial log:
14474 error Windows_NT 6.1.7601
14475 error argv "D:\WorkProgram\nodejs\node.exe"
"D:\WorkProgram\nodejs\node_m... |
system:W7 32
npm:2.15.0
node:V4.4.2
electron:v1.1.0
Masters,I am new to electron and nodejs,please help me.
When I run "npm install --save-dev electron-rebuild", install unsuccess
Partial log:
14474 error Windows_NT 6.1.7601
14475 error argv "D:\WorkProgram\nodejs\node.exe"
"D:\WorkProgram\nodejs\node_m... | 1 |
The type system does a great job at mirroring most type patterns in JS, all
except mixins/traits, anything that decorates types - which unfortunately is
very common in JS.
Without it the type system remains incomplete - that is, we're still one step
short of being able to describe JavaScript mixin type patterns.
Du... |
It would simplify a lot of use cases if we could override relational,
equality, additive, and Multiplicative operators.
My initial thoughts on how this would work is that functions would replace the
operators with functions when compiling to JavaScript.
class MyClass {
constructor() {
... | 0 |
I have two containers in a stack and both containers have GestureDetector.The
OnTap for the first container is working fine but it's not working with
another container.
The first container is the image and the second one is the green background
aligned partially over the first container.
new Stack(... |
## Steps to Reproduce
1. installed flutter and dependencies
2. started the ios simulator
3. created an app
4. wanted to run the app on ios but got errors
What should I do?
This is the log of output...from command line...
iMac:~ shyamalc$ flutter create myapp
Creating project myapp:
... | 0 |
##### Issue Type:
Bug Report
##### Ansible Version:
ansible 1.6.3
##### Environment:
Ubuntu 14.04
##### Summary:
When using apache2_module for mpm_prefork a change occurs every playbook run,
even though the module is already enabled.
##### Steps To Reproduce:
- name: Ensure mpm_prefork is enabl... |
In Ansible Version 1.6.2 the module 'apache2_module', which was added in 1.6,
always lists apache modules when being enabled as 'changed' if they have some
dependencies.
Tested with the modules headers, deflate, rewrite, ssl.
Here's the output from Ansible:
TASK: [apache | Enable standard mods] ****... | 1 |
It is hard to get the zone to the correct position and correct size with the
mouse.
It would be great if we get a edit button left of the close button. There i
want to put in the position (x pos, y pos) and the size (width, height) - like
in the program WindowManager.
Also it would be great if there is a grab/pick ... |
# Summary of the new feature/enhancement
When creating custom zones, it's very hard to resize them exactly as you want.
In order to get the result you desire, you need to do pixel-perfect movements
with the mouse on zones with thick borders.
? We have a few console.log but they obviously appear in
the console and you can't determine when they occurred in relation to steps in
the trace.
|
When I use test.step I was expecting to see that step in the trace viewer
actions list and not just in the source panel. This would be nice to see and
be able to jump to a particular test location or at least have more context
while diagnosing the test run. Especially if the contained step were indented
below the ste... | 1 |
Currently, both `<small>` and `small` are set to a `font-size` of 85% _fixed_.
The `@font-size-small` is _not_ used to set it.
See `~/less/variables.less` on L#50 for `@font-size-small`.
See `~/less/types.less` on L#80 for `small, .small` definitions.
* * *
Additional to that: `h1, h2, h3, .h1, .h2, .h3, h4, h5, ... |
Right now, the misc `.small` mixin in `type.less` is hardwired to `85%`. That
same 85% of base appears in `variables.less` as `@font-size-small`. Would it
makes sense to have `.small` in `type.less` reference `@font-size-small`
instead of having its own value?
| 1 |
I was surprised (pleasantly so) to read that events bubble through portals and
up the component tree rather than the DOM tree. Obviously this means I can
detect clicks that occur within my component or child components without
having to worry about whether they happen to be portal hosted.
However, another fairly com... |
React version: 17.0.2
Relay version: 12.0.0
## Steps To Reproduce
1. Wrap a component with an ErrorBoundary class to manage errors. Something like this:
<ErrorBoundary FallbackComponent={ErrorFallback}>
<Suspense
fallback={
<LoaderContainer>
... | 0 |
So I was trying to workout why my parallel code was taking so long.
After-all I only sent the big datastructures once, though a closure as the
function that was mapped over.
That should happen, once (I thought), since the function is constant
Not so
MWE:
addprocs(5)
immutable Foo
... |
[Originally posted on -dev by Fermat 618:
https://groups.google.com/d/topic/julia-dev/MOt74gNrc9E/discussion]
When I assign a lambda to a function,
julia> f(x) = x + 2
julia> f = (x) -> x + 20
Warning: redefinition of constant f ignored.
#<function>
julia> f(3)
5
I ... | 0 |
## 📝 Provide a description of the new feature
_What is the expected behavior of the proposed feature? What is the scenario
this would be used?_
* * *
I hope there's some configurable preference for setting priorities of results
in PT run.
For example, I can set the priority of "launch an application" to high, s... |
# History
When first launched, it would be great if PowerToys Run could display a
history of the last commands run (until keyboard input is made). This would
help to replicate the old Run command's dropdown functionality which displays
a history of commands.
| 0 |
Because of PHP 7, `Symfony\Component\Console\Application::renderException()`
should also accept `\Throwable` type.
|
when a command throws a fatal error in PHP7, the exception produced is handled
by global error handler, not application error handler.
thus the error message is properly handled, but the exit code is not.
such code for example (for tests or more) could lead to such behavior, under
Symfony 2.8 / PHP 7
`$a = null; ... | 1 |
From MSFT:21430356
After CTRL+Scroll to zoom in and out a ton, the text gets garbled
I scrolled with CTRL+Scroll to make it really small and really big and went
back and forth. Then, I can scroll up and get garbled text that only extends a
few characters but are truncated rather than wrapping.
|
# Environment
Windows build number: Microsoft Windows [Version 10.0.18932.1000]
Windows Terminal version (if applicable): 0.2.1831.0
Any other software?
VIM - Vi IMproved 8.1 (2018 May 18, compiled May 18 2018 18:26:56), 32bit Console version, [Korean]
# Steps to reproduce
Start... | 0 |
**Migrated issue, originally created by Anonymous**
I would love to be able to use Drizzle from SQLAlchemy... so it sort of needs
a dialect. I'll start working on one...
* * *
Attachments: add_drizzle_dialect.patch
|
**Migrated issue, originally created by Chris Wilson (@qris1)**
We have a complex system with mapped classes defined in many different files,
used by different applications. Therefore we use derived-map polymorphic
loading to load only those classes which are needed, sometimes when processing
query results.
We hav... | 0 |
Hi, I created an env with conda, installed TF, then installed PyTorch, then
"pip install git+https://github.com/huggingface/transformers", but when I ran
'python -c "from transformers import pipeline; print(pipeline('sentiment-
analysis')('I hate you'))"', it gave me the ImportError. How can I resolve
this?
|
* `transformers` 4.2
* Platform: MacOS
* Python version: 3.7.9
* PyTorch version (GPU?): CPU
* Tensorflow version (GPU?): CPU
* Using GPU in script?: No
* Using distributed or parallel set-up in script?: No
* Pip Version: Latest
I can't import the pipeline function:
from transformers i... | 1 |
The following code snippet:
import numpy as np
print(np.array(-2, dtype=np.float32).astype(np.uint8))
returns different results on x86 and ARM:
ARM:
> 0
x86:
> 254
The issue seems to be similar to #16073 and #2398.
My guess is that `char` might be used internally, whi... |
With `ndarray.astype(..., casting="unsafe")` float arrays with NaN/inf will be
converted to `np.iinfo(dtype).min/max`,
>>> np.array([1, np.nan], dtype=np.float32).astype(np.int32)
array([ 1, -2147483648], dtype=int32)
>>> np.array([1, np.inf], dtype=np.float32).astype(np.int32)
arr... | 1 |
After closing a modal once, when I open it again and try to close (using the
"Close" buton or "X" button) nothing happens.
I found that it has to do with commit `a4f0e8d` (I reverted it and it works
fine).
BS 3 RC2 tested with Chrome 28.
|
Hi,
The code used on last Thursday worked fine. But after updated to latest code
on Monday (GMT+8), the modal dialog when clicks to dismiss for seconds onward
cannot be close.
I am checking on source code line 932, if I commented out this line then it is
working again.
this.$element
.removeClass('in')
.attr('a... | 1 |
_Original tickethttp://projects.scipy.org/scipy/ticket/1080 on 2009-12-29 by
trac user mshafiei, assigned to unknown._
the new version of scipy i.e. 0.7.1 and 0.7.0 des not include the "signal"
subpackage. I need to inform my operating system is windows and I downloaded
the .exe file for python 2.5. I installed old... |
_Original tickethttp://projects.scipy.org/scipy/ticket/1079 on 2009-12-29 by
trac user mshafiei, assigned to unknown._
I installed new version of the scipy () for windows using exe file for python
2.5 and the subpackage "signal" does not exist. Since I needed some signal
processing , I start to download the 0.7.0 v... | 1 |
## ℹ Computer information
* Windows build number: [Windows 10 - 2004]
* PowerToys version: 0.20.0
Please open new issue in: https://github.com/microsoft/PowerToys/issues
1. upload log file: C:\Users\cagla\AppData\Local\Microsoft\PowerToys\PowerToys Run\Logs\1.0.0\2020-08-03.txt
2. copy below exception mess... |
Popup tells me to give y'all this.
2020-07-31.txt
Version: 1.0.0
OS Version: Microsoft Windows NT 10.0.19041.0
IntPtr Length: 8
x64: True
Date: 07/31/2020 17:29:59
Exception:
System.ObjectDisposedException: Cannot access a disposed object.
Object name: 'Timer'.
at System.Timers.Timer.set_Enabled(Boo... | 1 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
import_tasks
##### ANSIBLE VERSION
ansible 2.4.1.0
config file = /mnt/c/Users/sumitkumar/Desktop/DGX-Upgrade/Ansible/git/ansible/ansible.cfg
configured module search path = [u'/home/sumit/.ansible/plugins/modules', u'/usr/share/ansibl... |
##### Issue Type:
Bug Report
##### Ansible Version:
1.8.2
##### Environment:
OSX 10.8.5
##### Summary:
Fact gathering fails when cloud module deletes server and roles play is called
with a when conditional.
##### Steps To Reproduce:
Assuming utilization of a cloud module such as 'rax', you can set the count ... | 0 |
_From@aayushkapoor206 on April 7, 2016 19:33_
* VSCode Version: 0.10.11
* OS Version: Windows 10
Steps to Reproduce:
1. Before

2. After
, the TS formatting produces this:
foo()
.then<void>(
function(): void {
},
function(): void {
}
)
.then<void>(
function(): void {
},
function(): v... | 1 |
Right now while using decorators the javascript seems to work, but the types
are too strict.
As you can see here the following does not compile:
declare var _: any;
export function Throttle(milli: number) {
interface Throttled extends Function {
now: Function
}
... |
If we can get this to type check properly, we would have perfect support for
boilerplate-free mixins:
declare function Blah<T>(target: T): T & {foo: number}
@Blah
class Foo {
bar() {
return this.foo; // Property 'foo' does not exist on type 'Foo'
}
}
... | 1 |
I desire to visualize a mesh + its wireframe. The mesh is open and therefore
some back faces are visible.
Using a solid color for the wireframe gives uneven contrast between the shaded
triangles and the unshaded edges:
http://jsfiddle.net/4nf8y3z1/1/
Using `lights: true` on the LineBasicMaterial seems not to work:... |
Know of anything like that? Trying to learn more about the history, approach,
goals, etc.
Thanks!
| 0 |
##### System information (version)
* OpenCV => 4.0.0
* Operating System / Platform => Windows7
* Compiler => VS
##### Detailed description
In `haarfeatures.cpp` in OpenCV I see the following implementation for V & J
Haar features:
void CvHaarEvaluator::generateFeatures()
{
int mod... |
Can anyone suggest how to create pbtxt file for architecture other than ssd,
mask -rcnn and faster-rcnn.
##### System information (version)
* OpenCV => ❔
* Operating System / Platform => ❔
* Compiler => ❔
##### Detailed description
##### Steps to reproduce
| 0 |
Hi,
I am new to electron. I tried to build my own Internet browser with several
tabs using electron. Each tab contains a webview element. I have put src value
to each webview element but I found when I launch the browser only the webview
in active tab was immediately loading. The rest of the webviews were not
loadin... |
Hi,
It would be nice if element can be detached into separate window for
rendering. I don't know if this can be done in electron atm.
| 1 |
### Describe the workflow you want to enable
I need to use `StratifiedGroupKFold` on my data.
Unlike `cross_validate`, `SequentialFeatureSelector.fit` method has no
`**fit_params` or `groups` parameter, so I can't use group split.
### Describe your proposed solution
* Adding `**fit_params` or `groups` parameter... |
### Describe the workflow you want to enable
I would like to be able to pass sample weights to the `fit` method of the
estimator in `SequentialFeatureSelector`. (`SelectFromModel` has this feature
as well.)
Looking at the code, it seems to me that
`sklearn.model_selection._validation._fit_and_score`, which is where... | 1 |
I'm not sure what the best medium to have this discussion in, so let's just
use an issue for now.
### WorkspaceView
**Add**
* WorkspaceView::eachPaneView # Rename of WorkspaceView::eachPane
* WorkspaceView::getPaneViews # Rename of WorkspaceView::getPanes
**Keep**
* WorkspaceView::appendToBottom
* Worksp... |
Not sure how to describe this or what actually caused it. After hitting cmd+z
a few times, the debugger opened and code started duplicating in my file
strangely. I restarted atom and tried to open the folder again, but the window
stays white and I get this in the console:
TypeError: Cannot call method ... | 0 |
##### ISSUE TYPE
Bug Report
##### ANSIBLE VERSION
ansible 1.9.4
configured module search path = None
##### CONFIGURATION
No changes to /etc/ansible/ansible.cfg
##### OS / ENVIRONMENT
ALL CentOS release 6.6 (Final)
##### SUMMARY
\u001b[?25h\u001b[0G\u001b[K\u001b[?25h\u001b[0G\u001b[K... |
From https://groups.google.com/forum/#!topic/ansible-project/2JDkLFsvMcA
I'm having some trouble with the new Ansible 2 when trying to run ping on a
host that works with 1.9.4.
I'm getting the following:
$ ansible -i test all -m ping -u root -vvvvv -c paramiko
Loaded callback minimal of type... | 1 |
Challenge Waypoint: Add a Submit Button to a Form has an issue.
User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
... |
Challenge Waypoint: Add a Submit Button to a Form has an issue.
User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
... | 1 |
Hi all,
In my Electron app, I capture navigation events from a webview in the main
window and display the contents in a second window.
Capturing the event and displaying the selected contents in the second window
using `webview.addEventListener('will-navigate', ...)` and some
renderer->main->renderer ipc works just... |
### Preflight Checklist
* I have read the Contributing Guidelines for this project.
* I agree to follow the Code of Conduct that this project adheres to.
* [ x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
4... | 0 |
Looking at wells (http://getbootstrap.com/components/#wells) and contextual
text and backgrounds (http://getbootstrap.com/css/#helper-classes) and noticed
these are not complementing each other.
A `.well` will make the element ignore the text and background provided by the
contextual classes, so
<p cl... |
I've coded:
<div class="well bg-success">some text</div>
But I didn't get the green background color.
Shouldn't the well component accept the contextual background class
background-color?
| 1 |
I am building a blog with Next.js. I need my contact page to include a contact
form so visitors can send emails via Nodemailer.
I am fairly new to Express so I feel in a little over my head. Should I be
customizing the Next.js server?
Or should I make a separate server? If so, is that completely separate from my
Ne... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
document says:
import Router from 'next/router'
export default ({ url }) => (
<div>
<a onClick={ () => setTimeout(() => url.pushTo('/dynamic'), 100) }>
A route t... | 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 => 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
... | 1 |
So, I use my text editor for all kinds of things (writing code, reading
readmes, editing dotfiles, etc). One of the things I do most often during any
given day is open up large log files to troubleshoot Enterprise problems.
These files can sometimes get as large as 500-800MB.
I just tried viewing a 350MB log file an... | 1 | |
First discussed here: https://discourse.julialang.org/t/unnecessary-where-t-
causes-huge-performance-drop/31078
Given the following functions in a Julia 1.3rc4 session:
function f1(x) where {T}
return x*2
end
function f2(x)
return x*2
end
function f3(::Type{T}... |
Under some circumstances, having an unused typevar in a method definition
causes the method to unexpectedly allocate and perform poorly. For example:
julia> function foo(y::T) where {N, T}
1.0 * y
end
foo (generic function with 1 method)
julia> using BenchmarkTools
... | 1 |
Adjacent patch objects which share an edge show a visible seam at the
coincident edge for edgecolor=None. I've verified via reading the raw text in
the pdf file that the points are precisely coincident and only polygons exist
and there are no lines outlining the patches. The problem continues for
rasterization via ou... |
This is the underlying problem raised in #1178.
It is illustrated by the test below; note that boundary anomalies are visible
in all forms--agg on the screen, and pdf and svg displayed with a viewer--but
in different places depending on the viewer and the size of the figure as
rendered.
Note that the colorbar is ... | 1 |
* I tried using the `@types/xxxx` package and had problems.
* I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript
* I have a question that is inappropriate for StackOverflow. (Please ask any appropriate questions there).
* Mention the authors (see `Definitions by:` in `ind... |
@andy-ms @tkrotoff @zaggino @micksatana @alex3165
I have this issue on SO:
https://stackoverflow.com/questions/49260387/express-router-file-has-a-
typescript-error/49260575
I have a case where this doesn't compile:
import * as express from 'express';
let router = express.Router();
export = r... | 0 |
>>> df = pd.DataFrame([[1, 2], [3, 4]], columns=['a', 'b'])
>>> ar = np.array(0)
>>> df.iloc[ar]
Traceback (most recent call last):
...
...
File "/home/float2/Documents/Python/Pandas/pandas/pandas/core/indexes/base.py", line 529, in _shallow_copy_with_infer
if not le... |
#### Code Sample, a copy-pastable example if possible
The code below works correctly.
df=pd.DataFrame([[1,2],[3,4]])
df.iloc[np.array([0])]
But the code below raises an error.
df.iloc[np.array(0)]
TypeError: object of type 'numpy.int64' has no len()
| 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.