text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
One example is the `unreachable!` macro, though I think I've seen it
elsewhere. The documention of the macro in libcore is fine, but the docs of
the same macro in libstd have the source formatting all weird, and the actual
`[src]` link is broken.
|
For some macros the documentation has presentation problems,
for others macros the documentation it is OK.
Problems:
* Variable names are not highlighted in blue
* There is an additional space between $ and the variable name (and in other places)
* Unexpected line breaks even when horizontal space is left ... | 1 |
##### Issue Type:
Bug Report
##### Ansible Version:
1.8 (devel) - works in 1.7
##### Environment:
running on: Linux Ubuntu
managing: Linux Ubuntu
##### Summary:
`vars/main.yml` gets loaded from all roles at the beginning of playbook
(expected). In case one variable is in multiple roles, it **gets overwritten... |
This has come and gone over the previous releases, and is currently present on
the devel branch.
To reproduce:
roles/test1/vars/main.yml:
myvar: test1
roles/test2/vars/main.yml:
myvar: test2
both roles' task file is:
- debug: var=myvar
and the playbook:... | 1 |
**Eric Fletcher** opened **SPR-3019** and commented
The issue appears to be a compatibility issue between Quartz1.6 JDBCJobStore
and Spring scheduling.
When using a CronTriggerBean to persist a cron trigger a
DataTruncationExceptions is being thrown when attempting to insert the
trigger. The stack trace indicates ... |
**Ben Sion** opened **SPR-8210** and commented
It would be very helpful if the EmbeddedDatabaseBuilder could be configured to
continue on error or ignore drop statements when executing schema and data
scripts. This would simplify the use of the EmbeddedDatabase for use in unit
tests (and probably other scenarios).
... | 0 |
without threads it is fine:
julia> function foo(x,y,z)
for i in eachindex(y)
y[i] -= z[x]
end
x += 1
return x
end
foo (generic function with 1 method)
julia> @code_warntype foo(1,[1,2,3],[4,5,6])
Variables
... |
using Images: realtype
function ifi{T<:Real,K,N}(img::AbstractArray{T,N}, kern::AbstractArray{K,N}, border::AbstractString, value)
if border == "circular" && size(img) == size(kern)
out = real(ifftshift(ifft(fft(img).*fft(kern))))
elseif border != "inner"
... | 1 |
IS:
As the title says the output of deno bundle when including something from
pika.dev seems to ignore pika atleast partially.
I created a little test repo with a "bundle.sh" script:
https://github.com/katywings/deno-pika-bundle-test
What I try to bundle looks something like this:
import { css } fr... |
## Steps to reproduce
Run `deno bundle https://deno.land/x/once/index.js`
## Expected behavior
It prints a bundled JavaScript code
## Actual behavior
error TS5012: Cannot read file 'https://deno.land/x/once/index.js': Error: assert.
►
error TS6053: File 'https://deno.land/x/once/index... | 1 |
I have a very strange behavior with the np.dot() function. When computing:
np.dot(vector, vector)
I get a negative value, -3.68935e+19, with the array below:
[-0.95558429 -0.79491568 -0.34074336 -0.31960416 -0.50112027 -0.14804825
0.83092237 -1.04872239 -0.06821966 0.95099533 0.23211323 -0.08363034
-0.84720... |
I've found a very strange bug. Under certain circumstances, a small number of
the entries in the dot product of two 2D arrays will be wrong:
import numpy as np
nrow, ncol = 2, 69900
rows = np.random.normal(size=(nrow, 1)).astype(np.float32)
columns = np.random.normal(size=(1, ncol)).astype(... | 1 |
Is there a simple integrated way to handle the load animation based on a
condition not at the call time but at the loading time ?
Typical basic usage : `.animate(getUserVisibleHint() ? R.anim.abc_fade_in :
R.anim.none)` with a viewpager that preload fragments.
This works well when loading from cache as it's fast so... | 0 | |
### Problem description
By default all IE browsers > 10 show a clear icon for text input when any
value is entered. Normally the icon has the same height as the input element.
With Material-UI the input element is far higher than the actual text, so the
demo page http://www.material-ui.com/#/components/text-field ... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
I want to get the dom nodes of the Table to complete some events.But there is
no way to get the dom in the document.What can I do?
Tech | Version
---|---
Material-UI | 0.19.0
React | 15.5.4
brows... | 0 |
Since the default recommended filters for scipy are now SOS, it should make
sense to use them for decimate (and other internal uses)
This is the current state of scipy.signal.decimate
if zero_phase:
y = filtfilt(b, a, x, axis=axis)
else:
y = lfil... |
Importing `scipy.sparse` or `scipy.special` (from 1.0.0rc1 openblas linked
wheels) on windows can fail with an ImportError if the target machine does not
have msvcp140.dll (part of MS Visual C++ 2015 redistributable package)
installed.
### Reproducing code example:
pip install scipy==1.0.0rc1
pyth... | 0 |
Might it make sense to define `eachindex` on strings to be the set of valid
indices into the string? That would allow some code to be generic with regards
to being passed abstract arrays or strings.
|
Using the Color package made Julia exit without any message whatsoever.
I pinned the error down to Color.jl line 616
const CAT97s = [ 0.8562 0.3372 -0.1934
-0.8360 1.8327 0.0033
0.0357 -0.0469 1.0112 ]
const CAT97s_INV = inv(CAT97s)
Same behaviou... | 0 |
I just reviewed a PR with the line `case err.Error() == "http: can't write
HTTP request on broken connection"`. That's brittle code, and it's hard to
test in a way that ensures it stays in sync with any changes to the error
message wording in net/http--but there's no way to improve upon it given the
errors the http p... |
(From aaronlevy on IRC)
It's hard for a client to know when a HTTP request failed due to timeout, and
when for other reasons.
Given a slow server
package main
import (
"fmt"
"net/http"
"time"
)
func main() {
http.HandleFunc("/", func(w http.Respon... | 1 |
**Description**
When a page executes too many queries it would be extremely useful to know
where these queries are executed. Since these queries are generated by
Doctrine it is very non-obvious where they are coming from.
**Example**

### Bug information
* **Babel version:** 6.4.0
* **Node version:** 4.2.0
* **npm version:** 2.14.15
### Options
{
"presets": [ "es2015", "stage-0" ]
}
### Input code
class Tester {
foo () {
const foo =... |
Feature request
### Current Behavior
Currently the following block:
render`
<div>
<h1>Hello, world!</h1>
<h2>It is ${new Date().toLocaleTimeString()}.</h2>
</div>
`;
will result into:
"use strict";
var _templateObject = _taggedTemplat... | 0 |
hi there, i have a question about face and vertex uvs ....
i sort of understend the face uv .... wich works in the faces list with a
index ....
[ [ UV1, UV2, UV3, … ], [ UV1, UV2, UV3, … ], … ];
the extra [ ] is one face and thats where the index points at ..... (please,
correct me if im wrong)
and every val... |
In the normalmap shader here:
https://github.com/mrdoob/three.js/blob/master/src/renderers/shaders/ShaderLib.js#L572
It defines uniforms for the various standard material colors (diffuse,
ambient, specular) but it does so in a way that is different from every other
material because it calls them "uDiffuseColor", "u... | 0 |
Dear @stas00 and whoever else is willing to help!
So far I have only checked pegasus' rouge scores on 2/12 datasets for which we
have checkpoints.
For the other 10 datasets I either haven't tried or have tried briefly and
gotten stuck.
The full scope of the project is that:
for each dataset:
1. There is an a... |
## Environment info
* `transformers` version: 4.17.0
* Platform: Linux-4.14.252-131.483.amzn1.x86_64-x86_64-with-glibc2.9
* Python version: 3.6.13
* PyTorch version (GPU?): 1.7.1 (True)
* Tensorflow version (GPU?): not installed (NA)
* Flax version (CPU?/GPU?/TPU?): not installed (NA)
* Jax version: no... | 0 |
Originally reported by Anik Halder on the mailing list
http://matplotlib.1069221.n5.nabble.com/IPython-FITS-file-plotting-problem-
tp47271.html
Consider this simple example:
import matplotlib.pyplot as plt
import numpy as np
x = np.arange(10)
X, Y = np.meshgrid(x,x)
Z = ((X-5)**2 ... |
The following minimal example:
import matplotlib
matplotlib.use('Agg')
from astropy.wcs import WCS
from wcsaxes import datasets
import matplotlib.pyplot as plt
hdu = datasets.fetch_msx_hdu()
plt.imshow(hdu.data, vmin=-2e-4, vmax=2e-4)
plt.savefig('image.png')
produces ... | 1 |
Hi,
We are suffering a big performance hit with druid due to a dimension in our
data source which has a very high cardinality. We need that dimension but only
if there are significant rows with that dimension, i.e. we should
ignore/discard cases where this dimension with a unique value only appears
once.
We thought... |
I see a problem with the current way of managing metadata about publishing
segments in AppenderatorDriver. Lets say a task calls AppenderatorDriver to
publish segments for a sequence, then the driver will remove the sequence
information from activeSegments and publishPendingSegments map. Now, if the
task is restarted... | 0 |
# Summary of the new feature/enhancement
I used to use Hain to do /shutdown or /restart, this is a feature I
surprisingly used allot!
My PC screen would be off and I would be able to do ALT+SPACE /restart or
/shutdown without having to turn on my screen.
I would also use /taskkill /f /t /pid [Process name] allot... |
## 📝 Provide a description of the new feature
Web developers, designers or anybody that working with colors need more color
formats (better color models) in the ColorPicker as only the RGB values
## Wikipedia - Color models
If you'd like to see this feature implemented, add a 👍 reaction to this post.
| 0 |
Every `View` should have a queue of dom write operations and and a queue of
dom read operations.
1. All dom operations should be ran in the queues.
2. Write operations must run bottom up (child view, then parent view).
3. We need to flush the queues on digest.
| 1 | |
### System Information
OpenCV version: 4.6.0
MacBook M1 Pro
Venture 13.1
Xcode 14.1
Python 3.11.0
Command:
python opencv/platforms/ios/build_framework.py ios --contrib opencv_contrib --iphoneos_archs arm64 --iphonesimulator_archs x86_64
### Detailed description
Always Build error with ... |
** BUILD FAILED **
The following build commands failed:
EmitSwiftModule normal x86_64 (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/objd... | 1 |
### Bug summary
I use the `rect` parameter of the figure's layout engine to set figure
margins. For figures with `layout='constrained'` this parameter appears to be
ignored if `rcParams['figure.constrained_layout.use']` is `True` when saving
the figure.
### Code for reproduction
import matplotlib.pyp... |
### Bug summary
When setting `rcParams['figure.constrained_layout.use'] = True` and
`ax.set_aspect('equal')`, and saving with `bbox_inches = 'tight'`, the
resulting figure is cropped incorrectly.
### Code for reproduction
import matplotlib as mpl
import matplotlib.pyplot as plt
mpl.rcPar... | 1 |
* Electron version: 1.4
* Operating system: windows
### Expected behavior
After taking from cookies.get I should be able to use the same output to
cookies.set
### Actual behavior
Error: Setting cookie failed
at Error (native)
### How to reproduce
When a browser window closes I want to nab it's cookies and... |
None of the cookies I am saving from my session have a `url` property.
However, when I call `win.webContents.session.cookie.set(cookie, cb)` I get an
error cause the cookie I am trying to set doesn't have a `url` property. If
they cookie didn't have a url on it when I called
`win.webContents.session.cookies.get()`, t... | 1 |
When loading a model (tensorflow, darknet) to a myriad VPU, following happens
as I understood:
1. OpenCV reads the model and converts it to the IE representation.
2. The model will be transferred to the VPU.
3. Ready to accept forward requests.
Is it possible to release the converted model from the RAM, becau... |
##### System information (version)
* OpenCV => 4.5.1
* Operating System / Platform => Windows 64 Bit
* Compiler => Visual Studio 2019
##### Detailed description
There are vertical artifacts in image after a gaussian filter of size greater
than 14x14 on the borders of an image. The picture is also a little bi... | 0 |
# Summary of the new feature/enhancement
Similar to the pipline of a screen GIF recorder I would like to request a
screen video recorder. It should let us either record the whole screen or a
customizable area. It also should have an option to record the sound or not.
Everything else such as customizable FPS / codec,... |
Windows build number: Version 10.0.18363.836
PowerToys version: 0.18
PowerToy module for which you are reporting the bug (if applicable): PowerToys
Run
After closing Run using escape button and also after selecting a result, when
I reopen Run, the search text and search results are not cleared from last
search.
... | 0 |
Good progress is made on supporting the case of packages that carry their own
typings in #2338.
That proposal doesn't currently deal with modules that do not carry their own
typings, a.k.a. all modules that need typings from DefinitelyTyped.
This issue is to investigate possibilities of, and propose a (simple) solu... |
**TypeScript Version:**
1.7.5 / 1.8.0-beta / nightly (1.9.0-dev.20160217)
**Code**
// A self-contained demonstration of the problem follows...
this._register('vscode.diff', (left: URI, right: URI, label: string) => {
return this._commands.executeCommand('_workbench.diff', left, right, la... | 0 |
## Question
batch insert 10000 record by default just need 2~3 second,but use sharding-
jdbc insert need more than 2 minutes。
how to optimize it to improve efficiency?
maven version:

test case result... |
### Dependence
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc8</artifactId>
<version>12.2.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.shardingsphere</groupId... | 0 |
vue/src/compiler/codeframe.js
Line 16 in 7a8de91
| for (let j = i - range; j <= i + range || end > count; j++) {
---|---
当`count < end`时,此for循环无法停止。
|
### Version
2.6.10
### Reproduction link
https://jsfiddle.net/qagby1e4/
### Steps to reproduce
Somehow if I use the attribute "open" on a html tag, vue fills the attribute
with the value "open". See the attached jfiddle, and inspect the span
containing the attribute. If I put the tag outside the vue app, everyth... | 0 |
## **What keywords did you search in Kubernetes issues before filing this
one?** (If you have found any duplicates, you should instead reply there.):
azure load balancer
**Is this a BUG REPORT or FEATURE REQUEST?** (choose one): Kind of both
**Kubernetes version** (use `kubectl version`): current master
**Envi... |
**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.):
... | 0 |
Hi,
Thank you so much for creating SQLAlchemy!
### Summary
We are currently seeing the following error:
sqlalchemy.exc.IntegrityError: (raised as a result of Query-invoked autoflush; consider using a session.no_autoflush block if this flush is occurring prematurely)
(mysql.connector.errors.Integ... |
**Migrated issue, originally created by Anonymous**
We have some code with a one-to-many relationship that we want to normally
populate in an eager manner. The relationship definition had the attribute
lazy="subquery" to achieve this.
If a query is then written that attempts to explicitly load the one-to-many
coll... | 0 |
Getting an error when trying to use `DatagramConn` to send to the network's
broadcast address.
const msg = new TextEncoder().encode("Hello world\n");
const conn = Deno.listenDatagram({
hostname: "0.0.0.0",
port: 8002,
transport: "udp",
});
await conn.send(msg, {
... |
When using `Deno.memoryUsage()` without the `--unstable` flag, Deno causes the
following error:
error: TS2339 [ERROR]: Property 'memoryUsage' does not exist on type 'typeof Deno'.
console.log(Deno.memoryUsage());
~~~~~~~~~~~
On the other hand, other unstable APIs (e.g. `Deno.r... | 0 |
### System info
* Playwright Version: [v1.33.0] (Java)
* Operating System: [macOS 13.4.1]
* Browser: [Firefox]
* Other info: M1 architecture
### Source code
* I provided exact source code that allows reproducing the issue locally.
* detailed logs attached
In Firefox only (not Chromium, Webkit), a clic... |
### System info
* Playwright Version: [1.24.0]
* Operating System: [Windows 10 Pro]
* Browser: [Chromium]
* Playwright/test Version:[1.33.0]
**Bug Description**
In the test I wrote, the browser stays open for about 2 minutes after the test
is completed. There is no such problem in the other tests I wrote.... | 0 |
#### Code Sample, a copy-pastable example if possible
In [2]: df = pd.DataFrame([[1, 2]], columns=pd.MultiIndex.from_product([['A'], ['a', 'b']]))
In [3]: reind = df.set_index([('A', 'a')])
In [4]: reind.reset_index()
---------------------------------------------------------------... |
Dataframe.duplicated() and .drop_duplicates() are flagging rows as duplicates
when they are in fact distinct.
This was the smallest dataset I could make to recreate the issue, but I've
seen this issue on DataFrames of any size:
>>> import pandas as pd
>>> json_data = '{"Col1":{"0":"S2#OaGwWII... | 0 |


|
## ComboPooledDataSource not compatible with apache shardingsphere.
I am currently trying to implement shardingshpere in my current company's
codebase. Previously created an example project using HikariDataSource and it
worked fine.
Now in companies code base uses c3p0.ComboPooledDataSource as datasource. So
when a... | 1 |
#### Challenge Name
https://www.freecodecamp.com/challenges/use-a-css-class-to-style-an-
element#?solution=%3Cstyle%3E%0A%20%C2%A0.red-
text%20%7B%0A%20%C2%A0%20%20color%3A%20red%3B%0A%20%20%7D%0A%3C%2Fstyle%3E%0A%0A%3Ch2%20class%3D%22red-
text%22%3E%0A%20%20CatPhotoApp%0A%3C%2Fh2%3E%0A%0A%3Cp%3EKitty%20ipsum%20dolo... |
Challenge Use a CSS Class to Style an Element has an issue.
User Agent is: `Mozilla/5.0 (Linux; Android 4.4.2; SM-T231 Build/KOT49H)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.105 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
... | 1 |
Q | A
---|---
Bug report? | no
Feature request? | yes
BC Break report? | no
RFC? | yes
Symfony version | 4.1
`Finder::ignoreVCS()` is great at ignoring file patterns for the files created
by popular VCS systems.
However, it would be great to be able to instruct `Finder` to actually exclude
the paths e... |
should be mapped to number input type with step="any"...yes, number supports
float.
| 0 |
Hi,
I'm writing an app with Emoji Skin Tone Modifiers.
So, this string `" 👍 🏿"` should display as 👍🏿.
This works on Android but on iOS the modifier stays separate ( 👍 🏿).
### Screenshots
Android:
.toBeVisib... |
### System info
* Playwright Version: 1.36.0
* Operating System: OSX
* Browser: N/A
* Other info:
**package.json config file**
"devDependencies": {
"@playwright/test": "^1.36.0",
}
We do not have `playwright` as a dependency anywhere.
**Steps**
* Add `"@playwright/test": "^1.36.... | 0 |
# ISSUE TYPE
* Bug Report
##### COMPONENT NAME
ansible-pull
##### ANSIBLE VERSION
ansible 2.1.2.0
##### OS / ENVIRONMENT
N/A
##### SUMMARY
Not sure if this is a problem or just me doing it wrong, but I can not add a
custom path for the known_hosts file for ansible-pull.
##### STEPS TO R... |
##### SUMMARY
The `git` submodule which is used by `ansible-pull` when cloning the inventory
repo is fixed to either initializing submodules recursively or not
initializing submodules and doesn't support just initializing the first level
of submodules in the repo.
Use Case:
I have thousands of IOT devices being ma... | 1 |
Before 3.0.3 it was possible to setup a table with table-striped and use the
contextual. Now the styling by table-striped overrules contextual classes.
|
i have table with class .table-striped. it has 3 rows with tr.danger. only the
middle one is red, the other two are default color.
when i remove .table-striped, it works correctly
| 1 |
When using the (unofficial) babel-plugin-transform-for-of-as-array on a
`for..of` loop that iterates over an imported array variable, the AMD (and
CommonJS) modules transform fail to rewrite all of the array references.
Repro: https://github.com/MattiasBuelens/babel-for-of-modules-regression
### Input Code
... |
Thanks for Babel. I'd love for Babel to be a superset of defs.js so I can
deprecate defs eventually. For that reason, I'm going through the defs test
suite and will open up issues (for bugs and improvement) as I find them.
~/projects/defs.js/tests % cat var-inside-let.js
"use strict";
... | 0 |
If a playbook is written to include a dependency role explicitly, that role
can be loaded more than once if another role depends on it. Consider this
example. `base` is a role with no dependencies. `feature` is a role with a
meta/main.yml file specifying the `base` role as a dependency. `base` will be
run twice by de... |
As a system administrator I want to install build dependency packages for
developer and buildhost machines using the same syntax I install normal
packages with.
It would be useful if one could install build-deps via the apt module instead
of mixing and matching apt module and commands for "apt-get build-dep "
| 0 |
As a Haskell programmer, I like the ability to use Unicode character in names.
However, I've noticed that the character "𝒢" with the default font causes Atom
to place the cursor too far to the right, creating a gap.
|
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 |
Challenge Use Spans for Inline Elements has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
<link href="http... |
In all the exercises, we the users are forced to press the enter key before
writing any code.
* * *
#### Update:
We have locked the conversation temporarily on this thread to collaborators
only, this has been resolved in staging, and will be live soon.
The fix can be confirmed on the beta website.
The workaround... | 1 |
Challenge http://www.freecodecamp.com/challenges/waypoint-manipulate-arrays-
with-unshift has an issue. Please describe how to reproduce it, and include
links to screenshots if possible.
In the description
Let's take the code we had last time and unshiftthis value to the end: "Paul"
it should read "start" instead... |
Challenge http://www.freecodecamp.com/challenges/waypoint-manipulate-arrays-
with-unshift has an issue.
Just a little detail that may lead to confusion: in the description of the
Waypoint it's written "to the end", when the unshift function adds the new
value to the beginning of the array:
"Let's take the code we... | 1 |
The Go language has this cool feature for struct composition where if you put
one struct after another's values, its values are inherited into the other.
type foo1 struct {
bar string
}
type foo2 struct {
baz string
foo1 // foo2 now also has the field "bar" inherite... |
Julia Version 0.3.0-prerelease+355 (2013-12-08 02:02 UTC)
64-bit Linux (Kubuntu 13.10)
A brief discussion about this is also at
https://groups.google.com/forum/#!topic/julia-users/8tMwmFQZFrc
There are a couple of situations where running methodswith function does not
give the expected result. The returned report... | 0 |
[Enter steps to reproduce below:]
1. ...
2. ...
**Atom Version** : 0.165.0
**System** : Mac OS X 10.10.1
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: EEXIST, file already exists '/Users/BernzAir/.atom/storage'
At /Applications/Atom.app/Contents/Resources/app/node_modules/mkdi... |
[Enter steps to reproduce below:]
1. ...
2. ...
**Atom Version** : 0.165.0
**System** : Mac OS X 10.10.1
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: EEXIST, file already exists '/Users/812studio/.atom/storage'
At /Applications/Atom.app/Contents/Resources/app/node_modules/mkd... | 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.3
* Operating System version: macOs Sierra
* Java version: JDK 1.7
### Steps to reproduce th... |
Add missing UT for RedisRegistry which got identified as part of PR review
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: xxx
* Operating System ... | 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:** 9.0.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:**
* 11... | 0 |
see http://docs.scipy.org/doc/scipy/reference/special.html
in the Bessel Functions section.
1. the description of jn() and jv() are identical, however jn() should be "integer order n" while jv() should be "real order v". (c.f. the entries for yn() and yv() )
2. in the Bessel Functions section, note that the arg... |
>>> scipy.info(scipy.special.jn)
jv(x1, x2[, out])
y=jv(v,z) returns the Bessel function of real order v at complex z.
Could it be related to
https://github.com/scipy/scipy/blob/master/scipy/special/generate_ufuncs.py#L372
where `jn` is aliased to `jv` in the ufunc generation code?
| 1 |
After completing a video challenge, I first see my brownie points increment by
1 and I am directed to the next challenge, but when I havigate away and come
back, my recently gained brownie point(s) has/have disappeared and the
recently completed challenge(s) is/are not marked as complete.
|
I answer all of the quiz questions correctly and the box pops up saying
"Congratulations!
Hike completed. Saving..." but then when I go back to the map or my account
page there is no record of me having completed the challenge. No green
checkbox, no mark on the calendar, and no point.
I did the first video challen... | 1 |
After recent changes to Process (seems like today's changes), getting the
following error when firing off a Process command that runs `php composer.phar
dump-autoload --optimize`
proc_close(): 219 is not a valid process resource
|
Hello,
after the recent merge to 2.3 of symfony/process all my servers are returning
this error:
proc_close(): 356 is not a valid process resource
Note: the number changes depending on the environment.
Any idea? I'm pretty sure that every Laravel 4 installation is broken right
now
| 1 |
#### Code Sample, a copy-pastable example if possible
df = pd.DataFrame(list(range(9)), pd.MultiIndex.from_product([['a', 'b', 'c'], [1, 2, 3]]), ['col'])
df.index
# MultiIndex(levels=[['a', 'b', 'c'], [1, 2, 3]],
# labels=[[0, 0, 0, 1, 1, 1, 2, 2, 2], [0, 1, 2, 0, 1, 2, 0, 1, 2]... |
#### Code Sample, a copy-pastable example if possible
In [2]: df = pd.DataFrame(index=range(3), columns=['A', 'B', 'C', 'D', 'E', 'F'])
In [3]: df.loc[0, ['A', 'D']] = (1,2)
In [4]: df.loc[:, ['B', 'E']] = (1,2)
In [5]: df[['C', 'F']] = (1,2)
In [6]: df
Out[6]:
... | 0 |
Based on the documentation here tf.nn.in_top_k treats ties as positive, which
is almost never what you'd want. This is a major flaw, which leads to
misleading metrics. An all zero predictions would give you 0 error with any
targets. I think the default behavior should be to not count ties,
|
This is a feature request related to #10489 (tie handling in function
in_top_k)
Would it be possible to add an option/argument specifying whether ties should
be included or excluded?
In other words, make it possible for ties to return False instead of True.
Thanks!
| 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:**
* v1... |
* Electron version: `1.7.7`, `1.6.12`
* Operating system: macOS 10.13
We're getting several reports of a native crash on startup for the Slack app,
when running the High Sierra beta. One in particular also tried the Trello
Electron app and found it crashed in the same way:
> Yesterday I install the Trello app f... | 0 |
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.):
## I search the keywords "kube-proxy curl hang"
* _This a BUG REPORT *_ (choose one):
**Kubernetes version** (use `kubectl version`): 1.3
**Environment** :
* **Othe... |
**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.):
... | 0 |
In NumPy 1.13, `numpy.diff()` no longer works with Bool-Arrays:
>>> import numpy as np
>>> np.diff([True, False, False])
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File ".../lib/python3.6/site-packages/numpy/lib/function_base.py", line 1926
, in diff
... |
Should modify the docstring accordingly, raise a meaningful error, or
(preferably) make it work by hidding some logic under the hood.
Traceback:
In [11]: x = np.array([[True, True], [False, False]])
In [12]: np.diff(x)
----------------------------------------------------------------------... | 1 |
`svds` lacks the ability to specify the starting vector, whereas the
underlying `eigs` function it calls does. It would be nice to have the user be
able to specify the starting vector, to be consistent with all the other
iterative methods.
|
v0 is used as the initial value for seeding the eigs computations and is
supported by `eigs()`
| 1 |
From #26823 on the 1-2 release branch.
https://console.cloud.google.com/storage/browser/kubernetes-jenkins/pr-
logs/pull/26823/kubernetes-pull-test-unit-integration/29130/
=== RUN TestEtcdDeleteCollectionNotFound
I0603 16:07:09.501076 31650 trace.go:57] Trace "etcdHelper::Create *api.Pod" (sta... |
**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.):
... | 0 |
The change introduced in `a108445` causes fields that were valid in 2.6.4 to
be invalid in 2.6.5.
When I revert that one commit in 2.6.5 the problem is fixed.
The error I get:
Symfony\Component\Validator\ConstraintViolation
Object(Symfony\Component\Form\Form).children[bundle] = 550fe15080c7e16f5b... |
After updating Symfony from 2.6.4 to 2.6.5 handling (MongoDB) `document` as
Field is broken.
Example FormType:
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('terminal', 'document', array('label' => 'terminal', 'required' => false, 'class' => 'comp... | 1 |
**TypeScript Version:**
nightly (1.9.0-dev.20160217)
**Code**
function wrap<T, U>(wrapper: (arg: T) => U) {
return function(target: Object, propertyKey: string, descriptor: TypedPropertyDescriptor<(...args: any[]) => T>) {
var originalMethod = descriptor.value; // save a referenc... |
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 |
#### Code Sample
In [19]: dates = pd.period_range('20100101','20100105', freq='D')
In [20]: weights = pd.DataFrame(np.random.randn(5, 5), index=dates, columns = ['g1_%d' % x for x in range(5)])
In [21]: weights.join(pd.DataFrame(np.random.randn(5,5), index=dates, columns = ['g2_%d' % ... |
I've run into a data-dependent bug with MultiIndex. Attached are a test script
and a data file generation script:
* sales-data.py loads CSV data from a CSV data file with read_csv and then displays a multiindexed subset.
* sales-gen.sh is an AWK script that generates CSV test files. By default, it creates a 600M... | 0 |
Hi,
What needs to be done to get only one source map to show and used for
debugging. Currently there are two being created, the one being the es6 file
and the other the transpiled one. (see image below.) Here is my config file:
var path = require('path'),
webpack = require("webpack"),
libPath = path.join(__dirn... |
# Bug report
Minimal repro:
https://github.com/Bnaya/webpack5-twice-compile-why
**What is the current behavior?**
Run the project https://github.com/Bnaya/webpack5-twice-compile-why on a mac
machine
(yarn && yarn start)
After the initial compile, open `src/index.js` and hit save.
You will see that webpack ... | 0 |

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

Correct:

seems to be broken. I tried a few different configurations (even the default)
and received the following in an error.txt:
A less error occured trying to build your bundle. You've likely entered an invalid input into the less vari... |
Tried to download a customised setup but css files are empty once downloaded,
the same is true for IE,Safari,FireFox and Chrome. Received a error file with
the downloaded zip, message as follows:
A less error occured trying to build your bundle. You've likely entered an
invalid input into the less variable field. Ch... | 1 |
Logged from file retry.py, line 68
Traceback (most recent call last):
File "c:\python27\lib\logging__init__.py", line 884, in emit
stream.write(fs % msg.encode("UTF-8"))
UnicodeDecodeError: 'utf8' codec can't decode byte 0xd3 in position 234:
invalid continuation byte
Logged from file retry.py, line 68
Tr... |
Some error message as:
2015-07-01 16:03:46+0800 [Launcher,7500/stderr] Traceback (most recent call
last
):
File "D:\Python27\lib\logging__init__.py", line 882, in emit
stream.write(fs % msg.encode("UTF-8"))
UnicodeDecodeError: 'utf8' codec can't decode byte 0xd3 in position 267:
invalid continuation byte ... | 1 |
### Vue.js version
2.0.2
### Reproduction Link
http://codepen.io/anon/pen/WGyrdz
### Steps to reproduce
Just load up the page in edge or internet explorer (11) with your console
open. Vue will display the warning "duplicate attribute: class".
When removing the `class` attribute, the warning goes away.
### Wha... |
### What problem does this feature solve?
利用keep-alive结合compontent,实现切换tab的效果。但是有多个tab用同一个组件的情况,我加了key做区分,如下:
<component :is="currentTabComponent" :key="moduleId" ></component>
这样,可以缓存这些使用同一个组件的tab。问题是,删除tab时,用include只能匹配组件的name或注册名,并不能区分使用相同组件的tab。
然后我用$desytoy销毁,再次创建时又会有组件不断created,缓存不了的现象。
有什么办法解决这种场景吗?
... | 0 |
Using kubectl create with a list no longer works. We get the output:
$ _output/local/bin/linux/amd64/kubectl create -f /tmp/test.json
error validating "/tmp/test.json": error validating data: couldn't find type: v1.List; if you choose to ignore these errors, turn validation off with --validate=fals... |
# Proposal to create a generic interface from kubelet to cadvisor
## 1\. Background
cadvisor was integrated with kubernetes in issue #4798, which made
the deployment of kubernetes simpler and out-of-box UX smoother for new
users. However, at the same time, it created a tight coupling between
kubelet and cadvi... | 0 |
**Context:**
* Playwright Version: [0.11.1]
* Operating System: [Mac Catalina]
**package.json**
`{ "dependencies": { "playwright": "^0.11.1" } } `
**test.js**
`const playwright = require('playwright');`
`(async () => {`
` for (const browserType of ['chromium', 'firefox', 'webkit']) {`
` const browse... |
Version: `d367a2e` (current master)
When running this script it opens two pages (and I think two contexts)
* one after `chromium.launch`
* the other after `context.newPage`
const { chromium, devices } = require("playwright");
const iPhone = devices["iPhone 6"];
(async () => {
c... | 1 |
Seen on current main in job `ci/circleci: refguide_check`:
===================
scipy.sparse.linalg
===================
scipy.sparse.linalg.svds
------------------------
File "build-install/lib/python3.9/site-packages/scipy/sparse/linalg/_eigen/_svds.py", line 280, in svds
... |
### Describe your issue.
Lately I have seen the refguide job failing in CI multiple times in some
sparse svd section:
https://app.circleci.com/pipelines/github/scipy/scipy/19755/workflows/7be1af01-79dc-459c-92c4-d4a6d72c2471/jobs/66447
Thought I would raise attention with a separate issue.
Slightly related: it loo... | 1 |
**I'm submitting a bug report **
[x] bug report
[ ] feature request
[ ] support request
**Current behavior**
Unable to create custom TypeScript decorators when using AoT compiler.
Reproduce steps:
* Create new angular-cli project.
* Run project using: `ng serve --port 3000` (serve... |
Right now, we have to specify the attribute name as a parameter of the
@Attribute decorator.
@Directive({selector: 'input})
class Component {
constructor(@Attribute('type') private type:String, private element:ElementRef){
if(type === 'date') {
}
}
... | 0 |
slides change sharply without transition
|
On my site and the document I try to test Carousel on IE(7-9) I didn't see
transition work. I want it work the same FF, Chrome and Safari. Everyone have
any idea?
| 1 |
The code for data-toggle="buttons" doesn't listen for change events. If the
underlying radio/checkbox is changed by other code and fires a change event
the .active class remains as-is.
|
Maybe I'm doing something wrong, but when I use the btn-group with the radio
input type and then set the input checked value, the toggle button state
doesn't become active.
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary">
<input type="radio" name="option... | 1 |
The Flask Doc Download link mentioned below are broken
http://flask.pocoo.org/docs/flask-docs.pdf
http://flask.pocoo.org/docs/flask-docs.zip
|
### Expected Behavior
For the server to start correctly, this code used to work before 1.1.2.
from pathlib import Path
ui_dist_dir = Path(__file__).parent / "ui" / "public"
app = Flask(__name__, static_folder=ui_dist_dir, static_url_path="/static", template_folder=ui_dist_dir)
I'm not su... | 0 |
Currently if a compute node receives a duplicate request it just does the same
query twice. Should be pretty easy to keep track of in progress queries and if
a dup comes in block the request until the results are cached (pretty much all
read through caches do this)
|
CachingCostBalancerStrategyFactory registers callbacks in its `start()`
method, which is problematic since any callbacks that happen between start of
ServerInventoryView and BalancerStrategyFactory will be missed. Inventory view
callbacks should generally be registered in constructors, not in start
methods.
I discov... | 0 |
When using Atom (0.138.0 from zip download) on german Windows 7 with german
keyboard layout the backslash (`\`) is entered with the `AltGr`+`ß`
combination. In atom this does not enter the character in the text but swallow
the keypress. `AltGr`+`q` (which produces the at (`@`) is also ignored).
|
Original issue: atom/atom#1625
* * *
Use https://atom.io/packages/keyboard-localization until this issue gets fixed
(should be in the Blink upstream).
| 1 |
When all of the points are in one hemisphere some of the Voronoi points are
incorrect.
To be more precise, certain of the points are on the wrong side of the sphere.
An example is to create a tetrahedron with the following generator points:
generators (polar)
[[-25.56198973 10.81015471]
[-54.40661695 26.7367228... |
As pointed out by @tylerjereddy in #5232, the `scipy.spatial.SphericalVoronoi`
algorithm does not cover cases where all generator points are on a single
hemisphere. How would an extension of the algorithm look like to include those
cases? Are there theoretical treatises tackling these cases?
### Reproducing code exa... | 1 |
#### Code Sample, a copy-pastable example if possible
# Your code here
import sqlite3
import pandas as pd
cnx = sqlite3.connect('database.sqlite')
df = pd.read_sql_query("SELECT * FROM Player_Attributes", cnx)
#### Problem description
AttributeError: module 'pandas' has no attribute 'read'
... |
Struggled with this for a while to work out why I was getting `TypeError:
incompatible index of inserted column with frame index` when doing
df['new_col'] = my_series.
Turns out the the series had duplicates in its index. This occured because I
was importing a CSV and then setting the index. Perhaps we need a warnin... | 0 |
**Steps to reproduce and a minimal demo of the problem**
http://plnkr.co/edit/IAMpyeJl9rQlAcEFPoRs?p=preview
_What steps should we try in your demo to see the problem?_
1. put some input longer than 2 characters in the first input
2. try to put some input longer than 2 characters in the second input
**Current... |
`npm install` is failing on a change done on May 1st is causing all
fresh/clean checkouts to fail
Reproduced by
First Bad (you can also use master(as of `9f784dc`)) check in that appeared in
history (note you will never see this error if you already have build from a
previous version)
rm -rf node_mod... | 0 |
Julia has a few setting that can controlled through environmental variables.
Most of these settings are undocumented in the manual. From a cursory scan of
Julia base these seem to be the available environmental variables settings for
Julia:
JULIA_HISTORY
JULIA_CPU_CORES
JULIA_LOAD_PATH
JULI... |
It would be useful to have a doc section on envvars, seeing as we're starting
to get more of them (that are quite useful as well!) Things like
`JULIA_PKGDIR`, `JULIA_LOAD_PATH` (once #5425 is merged), `JULIA_HOME`,
`JULIA_CPU_CORES`, `JULIA_EDITOR`, etc...
| 1 |
Automatically signing iOS for device deployment using specified development team in Xcode project: Q48Y4UFKL8
Running pod install...
Starting Xcode build...
Xcode build done.
Installing and launching...
Traceback (most recent call last):
File "<input>", line 1, in <module>
... |
My app crashes on android right after it launches on the emulator.
## Code
### build.grade
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.goog... | 0 |
### System information
* **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : Custom
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Windows 10
* **TensorFlow installed from (source or binary)** : Binary
* **TensorFlow version (use command below... |
Hi,
I ran into this performance issue while trying to upgrade tensorflow from
version 0.12.1 to 1.X.
We ran a network with large embedding lookup tables:
* 100K X 32 (for example, word embedding - with 100K unique words)
* 300K X 128 (for example, categorical feature with cardinality of 300K unique items)
Aft... | 0 |
# Environment
Windows build number: Microsoft Windows [Version 10.0.18363.815]
PowerToys version: v0.17.0
PowerToy module for which you are reporting the bug (if applicable): PowerToys Settings
# Steps to reproduce
Install a previous version (I had v0.16.1)
Enable "Always run as admini... |
When PowerToys is started on windows startup an uac dialog is popping up.
I checked the wiki (https://github.com/microsoft/PowerToys/wiki/Release-check-
list) this should not be the case.
UAC level on my machine is default.
PowerToys is running as admin.
Always run as admin is on.
Windows build number: 10.0.... | 1 |
Deno lint in 1.4.0 is flagging this piece of code unreachable.
switch (token) {
case "auto":
return i + "width: auto;" + nl;
case "full":
return i + "width: 100%;" + nl;
case "screen":
return i + "width: 100vw;" + nl;
case ... |
Previous related issues:
* #6559
* #7615 (marked as duplicate of 6559)
These seem to be considered resolved via the `-j` flag implemented by #9815.
`-j` is definitely a welcome improvement. However, it's only enabling separate
test files to run parallel. I believe instead the expectation is that
parallelism be... | 0 |
var z = () => {};
new z;
This code should throw per spec, but results in creating instance of
z.function.
|
let hello = () => "Yo!";
let greet = new hello();
^ must throw `TypeError: hello is not a constructor` but it does not. Same
code
| 1 |
I'm trying to upgrade from legacy version 2.0.3 -> `Sharding-JDBC 4.0.0-RC1`,
here I have many compatibility issue, such as:
* FORCE INDEX will cause BAD SQL.
* LIMIT NOT WORKING with sum etc.
so I am wondering how much SQL test case is included in this project?
|
version: sharding proxy 5.0.0
yml:
schemaName: sharding_db
dataSourceCommon:
username: root
password: 123456
connectionTimeoutMilliseconds: 30000
idleTimeoutMilliseconds: 60000
maxLifetimeMilliseconds: 1800000
maxPoolSize: 50
minPoolSize: 1
maintenanceIntervalMilliseconds: 30000
dataSources:
ds1... | 0 |
* Electron version: 1.2.5
* Operating system: Windows 10
My application has a custom "res://" protocol. It appears to register
correctly (no errors or anything) but as you can see from the picture I'm
getting the error **net::ERR_UNKNOWN_URL_SCHEME**. This is working in version
1.2.4.
: IThingInfo {
// Use the params object here with destructuring...
}
When I tried to refactor `id` to `thingId`, it renamed it... | 0 |
Expected behavior, to be able to call something like:
`console.log(arg1, arg2, arg3)` and see the output in stdout separated by
commas.
Actual behavior is that only the first argument is output.
|
It appears as though if I run `console.log(err, result);` only `err` will get
logged to the terminal and never `result`. It should log all arguments passed
in as strings separated by commas.
| 1 |
### Current Behavior:
When using npm@7, if the folder name in which the project is being built
_matches_ the name of the project in `package.json`, a `name` property is
actively removed (or never set) from package-lock.json.
If the project folder does _not_ match the name in `package.json` then the
property is acti... |
### Current Behavior:
package-lock.json changes depending on name of local copy of git repo, e.g. if
i have two copies of the same repo locally one which matches the name in
package.json and one which doesn't i get two different package-lock files, one
specifies the name of the package in the inner packages list and... | 1 |
Hello, I can’t remap any key to the _play/pause_ key. Every other key combo
works, including other media keys, but nothing works to create a play/pause
key (my current keyboard is lacking media keys). Even using the option to type
the key I’m choosing, and using a spare keyboard with media keys, so I know
I’m picking... |
# Environment
Windows build number: `10.0.19041.264`
PowerToys version: `0.18.0`
PowerToy module for which you are reporting the bug (if applicable): `Keyboard Manager`
Tested using a Surface Pro 6 type cover (Australian model) and a Microsoft
Sculpt™ Comfort Keyboard
# Steps to reproduc... | 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: windows10
* Java version: 1.8
### Step to reproduce this issue... |
* 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.7
* Operating System version: Windows 10 centos7.3
* Java version: 1.8
### Steps to reproduc... | 0 |
Would it be possible to implement this interesting paper idea with jax / flax?
Intelligent Matrix Exponentiation
paper: https://arxiv.org/pdf/2008.03936.pdf
code: https://github.com/google-research/google-research/tree/master/m_layer
wiki: https://en.wikipedia.org/wiki/Matrix_exponential
expm docs:
https://ja... |
### Description
When we instantiate a BCOO array, there are situations in which we might like
its `shape` to be a `DeviceArray` (or sequence of `DeviceArray`s). In
particular, we might like the `shape` to be returned by a compiled function.
JAX doesn't complain when we do this — great.
However, if we call the `BCOO... | 0 |
# Environment
Windows Build Number: 10.0.18362.0
WIndows Terminal version: 0.6.2951.0
3 Monitor Setup
- Main Screen High-DPI (Scaling 150%, 3840x2160)
- Left and right: Scaling 100%, 1920x1200
# Steps to reproduce
* Start Terminal
* Terminal window opens on Main Screen (... |
Currently i configure cmd.exe and pwsh.exe as taskbar shortcuts and i can
configure these shortcuts to always run in admin mode when i open them.
Is is possible to do the same for the terminal app? Not sure if this is
possible since it is a store app, and not a win32 app, but it would be really
convenient if i didn'... | 0 |
**Neil Hart** opened **SPR-2649** and commented
There is a Sun bug: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4665132
that causes us to fail when loading our XML config files. When using this
within JWS and with a very limit security policy we get the following stack
trace:
java.security.AccessControlExce... |
**Michael Kanaley** opened **SPR-2326** and commented
Spring 2.0 now supports ApplicationContexts implementing the Lifecycle
interface. I would like to see the start/stop functionality treated
identically to that of init/destroy in the following way:
* sending of an ApplicationEvent after start and before stop ... | 0 |
Hello everyone,
I have a project on react / typescript with webpack 2 and different components
and modules and submodules refered by the main module from outside.
The structure is this:
in index.ts - are all my exports with
export * from './"helper1"
export * from './"helper2"
export * from './"helper3"
... |
**Do you want to request a feature or report a bug?**
Bug
**What is the current behavior?**
When used with commonsChunk with `async:true` and `children:true` I get a
message that I have missing dependencies in all the folders specified in the
`resolve.alias` config.
**If the current behavior is a bug, please p... | 0 |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.5.10
* Operating System version: win10
* Java version: 10
### Step to reproduce this issue
... |
* [√] 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: Windows 10
* Java version: Oracle JDK 1.8
### Steps to rep... | 0 |
**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
... |
@Directive({
selector: 'parent child'
})
Should throw an error, since we don't support selectors which cross elements.
| 0 |
Two recent requests recently to suppress logging on console 1, 2
Since TensorFlow uses Google logging library standard flags should work, ie
"export GLOG_logtostderr=0" should turn off logging to console. However that
doesn't work, I suspect these flags are explicitly overriden in code somewhere
| ERROR: type should be string, got "\n\nhttps://www.tensorflow.org/get_started/get_started \nBasic Usage example output:\n\nWARNING:tensorflow:Using temporary folder as model directory:\nC:\\Users\\pocherka\\AppData\\Local\\Temp\\tmpaq48b_3u \nWARNING:tensorflow:From\nC:\\Users\\pocherka\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-\npackages\\tensorflow\\contrib\\learn\\python\\learn\\estimators\\head.py:625:\nscalar_summary (from tensorflow.python.ops.logging_ops) is deprecated and will\nbe removed after 2016-11-30. \nInstructions for updating: \nPlease switch to tf.summary.scalar. Note that tf.summary.scalar uses the node\nname instead of the tag. This means that TensorFlow will automatically de-\nduplicate summary names based on the scope they are created in. Also, passing\na tensor or list of tags to a scalar summary op is no longer supported. \nWARNING:tensorflow:From\nC:\\Users\\pocherka\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-\npackages\\tensorflow\\contrib\\learn\\python\\learn\\estimators\\head.py:625:\nscalar_summary (from tensorflow.python.ops.logging_ops) is deprecated and will\nbe removed after 2016-11-30. \nInstructions for updating: \nPlease switch to tf.summary.scalar. Note that tf.summary.scalar uses the node\nname instead of the tag. This means that TensorFlow will automatically de-\nduplicate summary names based on the scope they are created in. Also, passing\na tensor or list of tags to a scalar summary op is no longer supported. \nWARNING:tensorflow:From\nC:\\Users\\pocherka\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-\npackages\\tensorflow\\contrib\\learn\\python\\learn\\estimators\\head.py:625:\nscalar_summary (from tensorflow.python.ops.logging_ops) is deprecated and will\nbe removed after 2016-11-30. \nInstructions for updating: \nPlease switch to tf.summary.scalar. Note that tf.summary.scalar uses the node\nname instead of the tag. This means that TensorFlow will automatically de-\nduplicate summary names based on the scope they are created in. Also, passing\na tensor or list of tags to a scalar summary op is no longer supported. \ntrain loss: {'global_step': 1000, 'loss': 2.3828899e-11} \neval loss: {'global_step': 1000, 'loss': 0.0025255322}sic usage\n\n" | 0 |
### Version
2.5.17
### Reproduction link
https://codepen.io/megacromulent/pen/gdMYLx?editors=1010
### Steps to reproduce
1. Create vue app with items displaying in a list.
2. Add transition group with **v-for** with format like **v-for="(item, index) in items"**
3. Use "index" from v-for as the **v-bind:ke... |
### Version
2.6.10
### Reproduction link
cdn.jsdelivr.net
### Steps to reproduce
Our project cannot be accessed because vue cannot be obtained from
https://cdn.jsdelivr.net/npm/vue@v2.6.10,Copying the link to the browser will
report an error
google chrome error info:
cdn.jsdelivr.net 通常会使用加密技术来保护您的信息。Google C... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.