text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
from Tensor.java:
**non-scalar DataType.STRING tensors are not supported yet**
Is there a plan for adding them for the Java interface?
|
Currently, string tensors are not supported in java:
https://github.com/tensorflow/tensorflow/blob/master/tensorflow/java/src/main/java/org/tensorflow/Tensor.java#L90
Implementing this would be very helpful in scenarios of training a model in
one language, and serving from a different one, as it allows moving some... | 1 |
See the reported issue and particularly scikit-image/scikit-image#954
(comment) for the details.
From what I've succeded to track, this may be related to a direct `malloc`
call:
1 -> 2 -> 3.
|
Original reported on the scipy-user list: gmane
import numpy as np
from scipy import ndimage
arr = np.zeros((1024, 1024))
arr_filt = ndimage.median_filter(arr, 150)
The call to `ndimage.median_filter` requires allocating a 4050000000 byte (=
150 * 150 * 150 * 150 * 8) b... | 1 |
## Minimal Verifiable Complete Exemple
Below a MVCE of the behavior:
import pandas as pd
# Trial Data:
data = {
'key1': list(range(6))*2
,'key2': [100, 100, 100, 100, 200, 200, 200, 300, 300, None, None, None]
,'data': ['a']*12
}
# Load Data:
df0 = pd.DataFram... |
#### Code Sample, a copy-pastable example if possible
In [2]: mi = pd.MultiIndex.from_tuples([('a', 'w'), ('b', 'x'), (np.nan, 'y'), ('d', 'z')])
In [3]: list(mi) # OK
Out[3]: [('a', 'w'), ('b', 'x'), (nan, 'y'), ('d', 'z')]
In [4]: list(mi.remove_unused_levels()) # not OK
Out... | 1 |
Commit `b149be5` specifically removed all processing of non-HTTP(s) URLs.
Previous to this commit if you were to pass in params, it would be appended to
the URL. Since this commit it no longer works. Specifically I ran into this
issue when running docker-py against a unix socket.
I understand that for non standard U... |
resquests.Session() adds extra Host field to the header dictionary passed as
argument even if that field is already specified in the dictionary. This
happens when transfer-encoding is specified in the header dictionary. Having
duplicate host field in the header confuses apache traffic server.
| 0 |
enum Empty {}
struct Unit;
trait Run {
fn run() -> u8;
}
impl Run for Empty {
fn run() -> u8 { 0 }
}
impl Run for Unit {
fn run() -> u8 { 1 }
}
fn main() {
println!("{} {}", Empty::run(), Unit::run());
}
... |
foo.rs:
trait Bar {
fn bar() {}
}
enum Foo {}
impl Bar for Foo {}
fn main() {
Foo::bar();
}
Warning:
> rustc --version
rustc 1.0.0-nightly (199bdcfef 2015-03-26) (built 2015-03-27)
> rustc foo.rs
foo.rs:5:1: 5:12 warning: e... | 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
13.1.2
### What opera... |
### 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 operating sys... | 1 |
scipy/scipy/optimize/optimize.py
Line 1519 in 11509c4
| result = OptimizeResult(fun=fval, jac=gfk, nfev=fcalls[0],
---|---
|
There are several recent PRs featuring new functions for statistical tests:
* A new binomial test function (gh-12603)
* Page's L (gh-12531)
* Somers' D (gh-12653)
* Alexander-Govern (gh-12873)
* Tukey-Kramer (gh-13002)
* Cramer-von-Mises (gh-11119, merged)
The new `make_tuple_bunch` (gh-12323) is fo... | 0 |
# What is it
Since the hooks launch, I've been working with various teams and developers,
and all of them, I repeat, ALL of them, seniors and juniors. Have been using
useEffect "wrong" (considering what the react team intended). They all use the
dependency array as an update array. There is no reason to keep hammeri... |
I've built a task execution pipeline utilizing React v14 and I've begun
testing it against React v15 and have noticed that all of a sudden I'm getting
an invariant error: _React DOM tree root should always have a node reference_.
When I comment the line that is causing this error (
react/src/renderers/dom/client/Re... | 0 |
`scipy.spatial.distance.pdist` and `scipy.spatial.distance.cdist` always
return ones when the `metric` parameter is set to `"minkowski"` and `p` to
`np.inf`. This doesn't happen when you set `metric` to
`scipy.spatial.distance.minkowski`.
This is because `pdist` and `cdist` call internally the C function
`minkowski_... |
Using `scipy.spatial.distance.cdist` with the Minkowski distance and
`p=np.inf` does not produce expected result. In particular, I'm not sure how
`cdist` is producing all distance of only 1's (see Minkowski below). Using
Chebyshev distance produce expected results, but they should be equivalent for
$p=\infty$.
... | 1 |

I investigated this and found out that it appears on table cells with newline
involved. Example:
### Properties
| Name | Type | Default | Description |
... |
### Problem description
`PropTypes.oneOf` properties seem to break the template in the documentation
for version v.0.17.4
### Image

1. 2. 3. 4.
## Context
## Your Environment
Tech | Version
---|---
Material-UI |
React |
browser |
etc |
|
* I have searched the issues of this repository and believe that this is not a duplicate.
We would like to use a 16 column grid as we're using material-ui to build a
dashboard that requires more granular layout positioning.
Now I've thought of a few ways I could do this and would be interested in your
opinion... | 0 |
**Is this a request for help?** (If yes, you should use our troubleshooting
guide and community support channels, see
http://kubernetes.io/docs/troubleshooting/.):
No
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.):
e... |
Need to add reconciler logic to the service controller sync loop to allow
cloud provider packages to reconcile healthcheck and target pools
created/needed by the service loadbalancer feature.
| 0 |
* Electron version: v1.3.2
* Operating system: Windows 7
So, I wanted to convert web app to desktop app with electron. Here is web app:
click And here is github repo: click
But when I opened it with electron as a desktop app, it's mixing a "drag file
page" with next page that allows to edit that file. It looks ... |
jQuery contains something along this lines:
if ( typeof module === "object" && typeof module.exports === "object" ) {
// set jQuery in `module`
} else {
// set jQuery in `window`
}
module is defined, even in the browser-side scripts. This causes jQuery to
ignore the `window` object... | 1 |
If you have a directory named ''upgrade_backup'' in your Neo4j database
directory, startup can fail.
axel@dev1 ~/Downloads/neo4j-community-2.1.2$ bin/neo4j start
WARNING: Max 1024 open files allowed, minimum of 40 000 recommended. See the Neo4j manual.
Using additional JVM arguments: -server -... |
@Romiko: 'Hi,
I notice that if a DB Upgrade needs to be performed, it will try upgrade the
database, but if there was already a backup of the DB from a previous upgrade,
it then fails.
[WaWorkerHost.exe] at org.neo4j.server.Bootstrapper.main(Bootstrapper.java:52)
[WaWorkerHost.exe] Caused by:
org.neo4j.kernel.imp... | 1 |
I've followed the custom-express-example to set custom server routes.
Next/Link is working properly in client-side, but when the page is refreshed,
the error message with 'not found' appears in console, regarding the files
(css/images) from '/static' folder.
* I have searched the issues of this repository and beli... |
* I have searched the issues of this repository and believe that this is not a duplicate.
I'm struggling to put Next.js and Serverless together. I could use some help
with my latest issue. I don't really know if the bug is on Next.js side, or
serverless side (none, I guess, it's just hard to put them together)... | 0 |
Hello everyone,
I came across an issue where I cannot build for android platform without
having a complete iOS toolchain. This happens when I start working with third
party plugins such as google_sign_in and firebase_auth.
After importing a plugin in 'pubspec.yaml' file and run 'flutter package get',
the process f... |
Running `flutter start` with an iOS project configured, dumps a LOT of
(scary?) output. Could we hide most of this, unless the user chose `flutter
start --verbose` ?
For example:
~/flutter/testme $ flutter start
severe: Warning: Multiple devices are connected, but no device ID was specified.
B... | 0 |
I think these should probably be done with generics, and can handle type
checking internally like `transmute`.
|
Currently they only take an `int` which is fine, but makes using them awkward
in many cases.
Also, many systems have a `dwcas` ( _double word compare-and-swap_ ) operation
that could be used when trying to CAS a `u64` on a 32-bit system. I'm pretty
sure LLVM will take care of much of it itself, and these intrinsics ... | 1 |
We should generate something like:
<msg id="..." meaning="..."><source>path/to/file.ts:123</source>This is a message</msg>
`extractor.ts` should take a callback to generated the exact file path from
e.g. a `ts.SourceFile` object or similar, so users can adjust the path to
their particular repository f... |
**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
... | 1 |
`gomobile bind -target android` only generates an android/arm library, however
many new phones such as the Nexus 5x are android/arm64. The generated
libraries are incompatible and return an error when accessed.
11-05 16:37:18.387 2581 2664 E AndroidRuntime: FATAL EXCEPTION: AsyncTask #2
...
1... |
Android doesn't only run on arm-based systems but also some other
architectures are commonly used, such as x86 (mostly Intel Atom, but also the
simulators) arm64 (also known as aarch64) and MIPS.
It would be great if at least x86 was supported.
| 1 |
**Elasticsearch version** : 5.0.0-alpha5
**Plugins installed** : []
**JVM version** :
**OS version** :
**Description of the problem including expected versus actual behavior** :
Considering the following request/response:
curl -XPUT "http://localhost:9200/test" -d'
{
"settings": {
... |
`org.elasticsearch.search.aggregations.metrics.max.Max` has both a `value` and
a `geValue()` methods. It should only have one of them. Other single-metric
aggs seem to be impacted as well.
cc @colings86
| 0 |
Hello, I was performing some simple tests and stumbled upon something that did
not seem to behave as expected....
I wanted to set the window screen size different (bigger) than the viewport
but when I evaluated screen.height I always got the viewport's height.
I tried setting ScreenSize in the context but also in... |
### Playwright version
1.15.2-1633455481000
### Operating system
Windows
### What browsers are you seeing the problem on?
Firefox
### Other information
Python 3.1.0
### What happened? / Describe the bug
Passing `screen={'width': any_int, 'height': any_int}` to context, is not
properly reflected, as `window.i... | 1 |
**Is this a request for help?** (If yes, you should use our troubleshooting
guide and community support channels, see
http://kubernetes.io/docs/troubleshooting/.):
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.):
* * ... |
**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.): ku... | 0 |
##### ISSUE TYPE
* Bug Report
##### ANSIBLE VERSION
ansible 2.1.0.0
config file = /etc/ansible/ansible.cfg
configured module search path = ['/usr/share/custom_modules']
##### CONFIGURATION
pipelining = True
##### OS / ENVIRONMENT
CentOS Linux release 7.0.1406... |
##### ISSUE TYPE
Bug Report
##### COMPONENT NAME
synchronize module
##### ANSIBLE VERSION
ansible 2.1.0.0
##### CONFIGURATION
host_key_checking = False
##### OS / ENVIRONMENT
Fedora 23
##### SUMMARY
Doing a remote-to-remote push requires using delegate_to. When using
synchronize on a hos... | 1 |
Original bug ticket: [https://npm.community/t/9947](https://npm.community/t/9947)
Originally filed: 2019-09-09T12:25:22.211Z
|
### Current Behavior:
running `npx @package@version` generate it with the current install version
### Expected Behavior:
it should be generated with the given version
### Steps To Reproduce:
ex. steps to reproduce the behavior:
1. run `npm i -g npm@latest` to install npm 7
2. run `npx @angular/cli@next new`... | 0 |
Hi,
some days ago, I wanted to launch a debate about the console commands
available in Standard edition.
## Actual status
For the record, we have 72 commands available when we install Symfony (71 if
we remove the Symfony ACL component).
I don't think this need a screenshot, we can say the first contact with the
... |
I suppose you already had this before as well, copying a route and forgetting
to rename it. The old route gets overwritten and you might not even notice it
until its too late.
How about throwing an Exception when the same route name is defined twice in
the same YAML or XML file to increase developer experience?
| 0 |
It's okay on Chrome 36 and on IE 11, sadly, it's pushing content to the left
on Firefox 32.0, when you minimize the screen, then open the modal while it's
minimized, then you maximize and open the modal again.
|
div.input-append is a block that contains only floating elements, thus gets a
0px height; if a .help-block follows the div.input-append, it is displayed
next to the div.input-append instead of under it, because the 0px-height
div.input-append does not offset it vertically. adding "clear: left" to the
.help-block seem... | 0 |
e.g. in
https://build.julialang.org/#/builders/79/builds/6315/steps/5/logs/stdio
nested task error: Failed - mbedTLS: ctr_drbg_init returned (-0x0034) CTR_DRBG - The entropy source failed while requesting
|
Not sure how to expect this to be handled, but saw it on CI:
Error in testset Downloads:
Error During Test at /Users/julia/buildbot/worker-tabularasa/tester_macos64/build/share/julia/stdlib/v1.6/Downloads/test/runtests.jl:184
Got exception outside of a @test
TaskFailedException
... | 1 |
Seeing is believing: http://doc.rust-lang.org/std/ops/trait.Drop.html
`core::finally::Finallyalizer` and `collections::vec::PartialVecNonZeroSized`
are two of many dangling links in the `Drop` page. They shouldn't be visible
at all because `core::finally` and `PartialVecNonZeroSized` are private items.
|
For example, `NaiveSearcher` on the clone page: http://doc.rust-
lang.org/std/clone/trait.Clone.html
| 1 |
e.g. `torch.sin(1)` or `torch.sin([1,2,3])`
Numpy supports this feature, which makes programming very convenient.
Thx!
|
Numpy automatically casts inputs to ndarrays when doing operations on them.
For example:
>>> np.sum([1, 2])
3
>>> np.sqrt(9)
3.0
Pytorch fails instead:
>>> torch.sum([1, 2])
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: ... | 1 |
It appears that dynamically provisioned volumes bypass the labelling admission
controller, and so are not labeled with zone information.
|
I created a PV and it wasn't labeled with the Ubernetes-Lite tags, but I
wasn't running under Ubernetes-Lite at the time...
"annotations": {
"kubernetes.io/createdby": "aws-ebs-dynamic-provisioner",
"volume.alpha.kubernetes.io/storage-class": "foo",
"volu... | 1 |
# Description of the new feature/enhancement
Moving profiles.json to C:\Users\xxx\AppData\Roaming\WindowsTerminal would
allow it to make use of the Roaming folder, and also put it in an easier and
more consistent place for people to create symlinks to sync it across several
machines using OneDrive/Google Drive/NextC... |
# Environment
Windows Terminal version (if applicable): 10.0.18362.356
# Steps to reproduce
Execute man page command like:
user@xps:~$ man ls
# Actual behavior
Some text in man page are invisible.

at commitIndex (chrome-
extension://fmkadmap... |
PLEASE INCLUDE REPRO INSTRUCTIONS AND EXAMPLE CODE
I got this error when I click 'Ranked'.
* * *
## Please do not remove the text below this line
DevTools version: 4.0.4-3c6a219
Call stack: at chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:11441
at Map.forEach ()
at commitIndex (chrome... | 1 |
# Environment
Version: 1903
OS BUILD: 18362.10006 (Microsoft Windows [Version 10.0.18362.10006])
Windows Terminal version (if applicable):
Any other software?
# Steps to reproduce
Build code from 42c1e58966b50c72039808b09b663b74180519ce and the build completes, but when I start the app, I... |
# Environment
Windows build number: 10.0.18363.418
Windows Terminal version (if applicable): 0.5.2762.0
# Steps to reproduce
In WSL session, press `Alt+Left` and release `Left` key then `Alt` key.
# Expected behavior
This should not input `Ctrl+D`
# Actual behavior
The terminal will execute `Alt+Left` keystr... | 0 |
I love the API for global shortcuts - is it possible to somehow use a similar
API to add shortcuts to a focused BrowserWindow?
|
I'd like to add some hotkeys for events in my app, and accelerators seem like
the natural way to do that, but some of these things don't make sense in a
menu. Is there a way to use accelerators without registering a global shortcut
or a menu? I'd rather not have hidden menus.
| 1 |
### Apache Airflow version
2.6.2
### What happened
I install Airflow with:
pip install apache-airflow['postgresql']
pip install psycopg2-binary
# airflow.cfg: executor = LocalExecutor
# airflow.cfg: sql_alchemy_conn = postgresql+psycopg2://airflow:airflow@localhost/airflow
airflow db... |
**Apache Airflow version** :
2.0.2
**Kubernetes version (if you are using kubernetes)** (use `kubectl version`):
1.19.7
**Environment** :
* Azure AKS
* Azure Postgresql
* Bitnami template
**What happened** :
Scheduler stopped running after processing a dag at 00:30. Next dags at 00:45
did not get execute... | 0 |
# Bug report
## Describe the bug
Scripts in the Head are run twice if marked `async`.
## To Reproduce
Steps to reproduce the behavior:
1. Create next app
2. Create file at `/static/log.js` with `console.log('hello');` inside
3. Attach to a page (make sure to add the `async` attribute)
<NextH... |
When starting the next build, nothing is shown for a good amount of time. This
has caused several misunderstandings with newer developers and is fairly
annoying to have no idea how much longer your build will take.
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expect... | 0 |
### System information
* **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** :
Partly
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** :
RHEL 7
* **TensorFlow installed from (source or binary)** :
unknown
* **TensorFlow version (use command... |
#1300
I have got a nvidia p100 GPU which is support fp16, and I run the TF case
'cifar10_train.py'. Without option '--use_fp16', the performance is also 1600
examples/sec, and with the option '--use_fp16', the performance down to 500
examples/sec. Any ideas about this issue?
userid@ubuntu-WK-4xP100:
~~/weike/tensor... | 1 |
Describe what you were doing when the bug occurred:
1. Started profiler recording
2. Expanded an accordion control
3. Collapsed same control
4. Stopped the recording
5. The error showed up
* * *
## Please do not remove the text below this line
DevTools version: 4.11.0-39713716aa
Call stack: at updateTr... |
With `eslint-plugin-react-hooks@4.0.0` I observe an unexpected warning (with a
weird behaviour) on custom hook call-site.
## Steps To Reproduce
1. yarn create react-app hooks-bug
2. cd hooks-bug
3. npm run eject
4. npm i eslint-plugin-react-hooks@4.0.0
5. place code from the examples below into `App.js`
... | 0 |
* * *
### Expected Behavior
The app should've run
any flask app really
### Actual Behavior
Flask didn't startup properly and threw an errorcode
$ flask run
* Serving Flask app "falsker"
* Forcing debug mode on
* Restarting with stat
File "C:\Anaconda3\envs\flaskui\Scr... |
I am running apistar on python 3 and encountering an issue that has lead me to
the werkzeug reloader.
(fresh) C:\Users\uskaxb07\PycharmProjects\testapi>apistar run
Starting up...
* Restarting with stat
File "C:\Users\uskaxb07\env\fresh\Scripts\apistar.exe", line 1
SyntaxError: Non-UT... | 1 |
I'm creating pagination like the example in the documentation. I have previous
and next links on each side and links to each page in the middle.
Out of the box doesn't look great when I scale down to a phone (wraps in the
middle) so I figured I'd put .hidden-xs on the middle page number links so
when I view on a pho... |
related to issues #8500 , #7808 , #4929 ; using `.hidden-sm` to hide span
within `.nav > li > a` . Because class is `display: block` above -sm then text
wraps to new line. Would you consider `.hidden-*` classes to be `display:
inline-block` instead ?
Here's a jsfiddle of the two cases - but the repercussions could b... | 1 |
I have tried to make StaticArrays.jl compatible with the functions in
`Base.LinAlg` but I get hung up on some inconsistencies.
The functions `lufact()`, `qr()` and `svd()` all use `similar()` to construct
a (mutable) array for working with and returning output. In _StaticArrays_
that would be e.g. the `MMatrix` type... |
This was reported at Stack Overflow:
* http://stackoverflow.com/questions/35094986/does-macro-hygiene-only-protect-you-in-different-modules
_ _ _(_)_ | By greedy hackers for greedy hackers
(_) | (_) (_) | Documentation: http://docs.julialang.org
_ _ _| |_ __ _ ... | 0 |
# Summary of the new feature/enhancement
Add the name of the connection/profile on the tabs, specifically useful for
remote connections, since currently it's hard to tell which terminal is
opened:

# Propo... |
扩展向下箭头可以放在右侧,最小化旁边,左右下边框可以取消,不需要看到
| 0 |
**Patrick Marschik** opened **SPR-9127** and commented
When you create an annotation based configuration class with a
`@PropertySource` annotation that provides multiple .properties files and a
name for that property source only one property source gets registered since
all `ResourcePropertySource` s have the same ... |
**Christian Tzolov** opened **SPR-2186** and commented
When used for a void method invocation the MethodInvokingFactoryBean returns a
'null' value instead of VoidType.
(Test is attached)
* * *
**Affects:** 2.0 RC1
**Attachments:**
* MethodInvokingFactoryBean_VoidReturnValueTest.java ( _1.06 kB_ )
* TestCo... | 0 |
Hi
I am using the Breevy (from http://www.16software.com) text expander for many
things, including documentation, and it doesn't go well with vsCode.
The expander has 2 operating modes, one where it simulates key presses, and
one where it uses the clipboard, simulating a cut/paste operation to insert
text in the cu... |
* VSCode Version: 1.0
* OS Version: windows 10
Paste code `var p = 1?2:(3<4?5:6)`, and everything after this will be in wrong
color.

| 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 Bug Report.
## Current Behaviour
Running `ngc` generates a `View_AppComponent_0()` function that takes the
logger as argument. If the component template does not declare any element or
text that function is basically empty. The `l` parameter is not used, which
can lead to errors when typescript bui... | 0 |
The information in `doc/source/user/c-info.how-to-extend.rst` is repeated in
`doc/source/reference/c-api.array.rst. The first should only reference the
second, and the descriptive text should be merged.
This may be a good starter task. The cycle to fix this issue, based on the doc
building documentation is to
1. ... |
I started out thinking I've found a docbug but I'm becoming less sure. The
problem is that the documentation of `numpy.ma.sort` (devdocs version) says
> Sort the array, in-place
> [...]
> Returns: `sorted_array`
Whereas the behaviour seems to be the opposite:
>>> import numpy as np
>>> arr ... | 0 |
I'm using typescript 1.7.5, typings 0.6.9 and angular 2.0.0-beta.0.
How can I get rid of the typescript compile error messages `Duplicate
identifier` due to typings definition files?
The `Duplicate identifier` error occurs in the definition files of the
following directories:
node_modules/angular2/ty... |
After updated TS to 1.5-beta, my code failed to compile. My code uses a few
ES6 APIs such as `Set`, but the `--target` is still ES5. It seems TS 1.5-beta
removed those ES6 APIs from `lib.d.ts` when targeting ES5. I think this is a
bad change.
ES6+'s new language features and new APIs are very different stories. New ... | 0 |
This issue is for discussing how to make the new GC (#8699) thread-safe. A GC
expert should check the arguments here. For background, see the elegant state
transition diagram in `src/gc.c`.
I'm assuming that garbage collection operates in stop-the-world mode, and for
now, that the mark/sweep phase is single-threaded... |
$ julia -e 'reinterpret(Nothing, nothing)'
$ julia --code-coverage=user -e 'reinterpret(Nothing, nothing)'
ERROR: bitcast: target type n... | 0 |
_Original tickethttp://projects.scipy.org/numpy/ticket/1738 on 2011-02-09 by
@nbecker, assigned to unknown._
find_first would be a performance enhancement. The current alternative would
be something like:
argmax (some boolean function...)
which requires a lot of extra work if all you want is the index of the firs... |
_Original tickethttp://projects.scipy.org/numpy/ticket/1673 on 2010-11-13 by
trac user tom3118, assigned to unknown._
The "numpy for matlab users" suggests using
`nonzero(A)[0][0]`
to find the index of the first nonzero element of array A.
The problem with this is that A might be a million elements long and th... | 1 |
### Bug report
If one makes a scatter plot (or a line graph) having multiple points with
different markers and colors, but the same label, this will result in an error
in version 2.1.1 (but not 2.1.0). A small example is provided below:
**Code for reproduction**
#!/usr/bin/env python
import matpl... |
### Summary
120 seconds is an extremely long timeout when running locally and having
failures. It would be good to only set the 120 seconds on CI/remote systems
and have a shorter 10-20 second timeout for most contributors with reasonable
CPU architectures.
matplotlib/lib/matplotlib/tests/test_backends_interactiv... | 0 |
It would help people to keep the font sizes on there site more consistent is
classes were also offered as the same sizes as the the headings.
E.g. bits of text that semantically are not headings, but for styling purposes
should appear the same size, or are different levels in the document
structure.
The change wou... |
Upon trying to add the examples' CSS to the `csslint` Grunt task, I discovered
that some of them fail csslint:
Running "csslint:src" (csslint) task
Linting docs/examples/blog/blog.css ...ERROR
[L44:C1]
Rule is empty. Rules without any properties specified should be removed. (empty-rules)
... | 0 |
# Environment
Windows build number: [Versione 10.0.18362.356]
PowerToys version: 0.11.0
PowerToy module: FancyZones
# Steps to reproduce
The Windows bottom bar appear at fullscreen in one of the zone I set
(screenshot attached) .
It happens as long as I use on ore more Virtual Deskto... |
# Environment
Windows build number: Windows 10 1903 (18362.356) - 64bit
PowerToys version: 0.11.0
PowerToy module: Shortcut Guide, FancyZones
# Steps to reproduce
Open the shortcut guide click onto the taskbar and then trigger the window
controls to move a window to a specific zone (Wind... | 1 |
Challenge Use the Twitchtv JSON API has an issue.
User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
The current link for step 8 is :... |
Related to challenge /use-the-twitchtv-json-api.
I think it should be https://github.com/FreeCodeCamp/FreeCodeCamp/wiki/Front-
End-Project-Use-the-Twitchtv-JSON-API.
| 1 |
**Feature**
**What is the current behavior?**
With a UI kit that uses forwardRefs, I get error messages like this:

**What is the expected behavior?**
It would look a lot better if forwardRefs were a bit ... |
People lose hours of work debugging a simple issue: two versions of React
being loaded at the same time.
gaearon/react-hot-loader#32 (comment)
KyleAMathews/coffee-react-quickstart#10 (comment)
gaearon/react-document-title#1 (comment)
clayallsopp/react.backbone#26
Because there is no warning right away when th... | 0 |
Challenge http://www.freecodecamp.com/challenges/waypoint-use-css-selectors-
to-style-elements has an issue.
When completing this challenge, before I had placed the closing curly bracket,
the challenge updated to finished.
: any
}
Function.prototype.hello = function() {
console.log('hello world')
}
function noop() {}
noop.hello() //==> 'hello world' in the console
However, as soon as I ... | 0 |


|



produced annotation only in the lower left corner. This looks like a bug?

1. 2. 3. 4.
## Context
## Your Environment
Tech | Version
---|---
Material-UI |
React |
browser |
etc |
| 0 |
with xcode-select pointed to Xcode 8:
$ xcode-select -p
/Applications/Xcode.app/Contents/Developer
I get the following compile error with build_all_ios.sh on Sierra:
checking whether we are cross compiling... configure: error: in `/Users/serkan/tensorflow/tensorflow/contrib... |
When running `compile_ios_protobuf.sh`, it says:
checking whether we are cross compiling... configure: error: in
'.../tensorflow/tensorflow/contrib/makefile/downloads/protobuf':
configure: error: cannot run C compiled programs.
If you meant to cross compile, use `--host'. See`config.log' for more details
| 1 |
flutter.yaml's assets support is a convenient way to add assets for both
platforms. Unclear if we want to keep it long term, but if we do it would be
nice to add support for directories and/or file globbing. Right now I'm in the
process of writing a script to update my flutter.yaml when my directory of
images change.... |
I'd like to be able to add an entire folder of assets without having to
enumerate each one in my flutter.yaml.
| 1 |
## 🐛 Bug
Python doesn't care about indentation of comment lines, but the TorchScript
parser can get confused by non-indented comments (which is what Jupyter
produces when you comment code out with ctrl-/).
## To Reproduce
import torch
import torch.utils.collect_env
torch.utils.collect_env.ma... |
This can cause issues when you have comments at a lower indentation than the
rest of the code:
import torch
class Foo(torch.nn.Module):
def forward(self, x):
x = torch.neg(x)
# foo foo foo i have a comment at the wrong indent
return x
torch.jit.scri... | 1 |
* I tried using the `@types/openlayers` 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:` i... |
I tried using the latest `passport/passport.d.ts` file in this repo and had
problems.
The authors of that type definition are cc/ @Horiuchi_H
When I use with
"@types/passport": "0.2.34",
"@types/passport-local": "1.0.29",
I got error:
>
> ERROR in [at-loader] node_modules/@types/passp... | 0 |
**TypeScript Version:**
1.8.7
**Code**
file1.ts:
export enum MyEnum {
FOO
};
export var object1 = {
foo: MyEnum.FOO
};
file2.ts:
export enum MyEnum {
BAR
}
export var object2 = {
foo: MyEnum.BAR
};
file3.ts
... |
**TypeScript Version:**
1.7.5 / 1.8.0-beta / nightly (1.9.0-dev.20160217)
**Code**
// try augmenting the SymbolContructor to have some expected symbol on it.
// in RxJS5's case, it'll be the Symbol.observable symbol from the es-observable spec.
interface SymbolConstructor {
observable:... | 0 |
Atom does not get focus after changing the window to it using `Alt+Tab`. I
need to click into the editor before can start typing. That is annoying and
should not be necessary.
|
I'm on Ubuntu 14.04 and every time I alt+tab or make Atom lose focus in any
way, the cursor position disappears. I have to click on the window to make it
reappear.
| 1 |
##### Description of the problem
@donmccurdy
glTF 2.0 allows each texture referenced from a material (the textureInfo
structure) to include a `texCoord` value. By default, this is 0 to use the
first UV channel. It looks like three.js doesn't support anything other than 0
here. The value is just ignored so any mode... |
Hello,
I'm running into a display bug at large output sizes with the WebGLRenderer.
Fiddle here.
When setting the canvas size (with `renderer.setSize`) to a width or height
above 4096, the output begins to distort and the camera appears to go off
center. It happens with both Orthographic and Perspective cameras. Yo... | 0 |
### Bug report
I am trying to use np.polyfit function. I have been using this for quite some
time, but yesterday realize that something is broken. First I use a polyfit to
find a line arguments then I plot the graph, but when trying to call polyfit
for the second time, it produce the error, even thou I am calling th... |
### Bug report
**Bug summary**
savgol_filter crashes with an error in the lstsq algorithm if executed after a
plot with dashed/dotted/dashdotted line style.
**Code for reproduction**
import matplotlib.pyplot as plt
from scipy.signal import savgol_filter
ls='--'
# ls=''
y = range... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
In page component lifecycle method, it could access `req` and `res` in server
side.
## Current Behavior
In static method `getInitialProps`, the argument `context` has fields `req`
and `res` which is ex... |
Can you please add an example here:
https://github.com/zeit/next.js/tree/master/examples
that uses API routes to handle POST requests with also a custom Express server
to serve the application? I feel like there are conflicts between routes
provided by the Express server, the file system routing of Next and the API... | 0 |
Windows Build `Microsoft Windows [Version 10.0.17763.134]`
Building linux kernels using `make menuconfig` is functional and produces
slight gibberish in the console. Attached should be screenshots of the console
and xterm after launching `make menuconfig` in the linux kernel repository as
pulled from github. (`git c... |
# Summary of the new feature/enhancement
New tab button and drop-down menu should be right next to the tab instead of
spacing far away, like Edge. And the tab button should be designed like Edge.
# Proposed technical implementation details (optional)
 and started
getting these warnings:
/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-
packages/scipy/stats/_continuous_distns.py:24: RuntimeWarning: numpy.dtype
size changed, may indicate binary incompatibility
from . import vonmises_c... | 1 |
**Migrated issue, originally created by Robert Schütz (@dotlambda)**
When I run the tests of SQLAlchemy's latest version using Python 3.7, I get
============================= test session starts ==============================
platform linux -- Python 3.7.0, pytest-3.6.2, py-1.5.3, pluggy-0.6.0 --... |
**Migrated issue, originally created by Scott Milliken (@smilliken)**
We've been getting occasional AttributeError exceptions raised from the
`sqlalchemy.ext.declarative.clsregistry._MultipleClassMarker.add_item` method
as it tries to access a `__module__` attribute here:
https://github.com/zzzeek/sqlalchemy/blob/2... | 0 |
I got a problem that i don't really understand why this is happen.
MATCH (n:USER) where n.email = 'email@hotmail.com' return count(n);
This return me 1.
MATCH (n:USER{email:'email@hotmail.com'}) return count(n);
This return me 1.
MATCH (n:USER) return count(n);
This return me 1150012.
MATCH (n:USER) where n... |
Hi
I am regularly using MERGE to apply data onto an existing graph. Today I am
encountering a new error on a previous working MERGE. I believe this to be a
bug.
I am receiving error "More than one item in
org.neo4j.helpers.collection.IteratorUtil$12@44c217b1, first:55110598,
second:55114825" when trying to merge.
... | 0 |
I just noticed there are two copies of the following in bootstrap.css v3.0.2
.container:before,
.container:after {
display: table;
content: " ";
}
.container:after {
clear: both;
}
|
show on bootstrap.css
https://github.com/twbs/bootstrap/blob/3.0.0-wip/dist/css/bootstrap.css#L581
https://github.com/twbs/bootstrap/blob/3.0.0-wip/dist/css/bootstrap.css#L723
https://github.com/twbs/bootstrap/blob/3.0.0-wip/dist/css/bootstrap.css#L743
https://github.com/twbs/bootstrap/blob/3.0.0-wip/dist/css/... | 1 |
[alt + click] for custom multiple cursors does not work on Linux.
|
On most Linux desktops `alt+click` will allow you drag a window by clicking
anywhere over it. This conflicts with the multiple cursors binding.
It's still possible to obtain multiple cursors with commands like
`insertCursorAbove` or `insertCursorAtEndOfEachLineSelected`, but this affects
multiple people, and it's al... | 1 |
Challenge use-tabindex-to-specify-the-order-of-keyboard-focus-for-several-
elements has an issue.
User Agent is: `Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML,
like Gecko) Ubuntu Chromium/55.0.2883.87 Chrome/55.0.2883.87 Safari/537.36`.
Please describe how to reproduce this issue, and include links t... |
Challenge add-an-accessible-date-picker has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/54.0.2840.71 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
The code result includes additional... | 1 |
# Checklist
* I have read the relevant section in the
contribution guide
on reporting bugs.
* I have checked the issues list
for similar or identical bug reports.
* I have checked the pull requests list
for existing proposed fixes.
* I have checked the commit log
to find out if the bug was alrea... |
# Checklist
* I have included the output of `celery -A proj report` in the issue.
(if you are not able to do this, then at least specify the Celery
version affected).
* I have included all related issues and possible duplicate issues in this issue.
* I have included the contents of `pip freeze` in the iss... | 0 |
**Przemek Ch** opened **SPR-8732** and commented
Method
protected String autogenerateId() throws JspException {
return StringUtils.deleteAny(getName(), "[]");
}
form AbstractDataBoundFormElementTag class doesn't work with freemarker.
Example
<@spring.formInput path="lead... |
**Ken Egervari** opened **SPR-6163** and commented
Using ignore accept header and default content type causes problems. Here is
my bean xml:
{code?xml}
<bean id="contentNegotiatingViewResolver"
class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
<property name="order" value="1"/>
<... | 0 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
copy
##### ANSIBLE VERSION
ansible 2.4.0.0
##### CONFIGURATION
ANSIBLE_SSH_ARGS(/Users/dude/dev/www-ansible/ansible.cfg) = -o
StrictHostKeyChecking=no
DEFAULT_HASH_BEHAVIOUR(/Users/dude/dev/www-ansible/ansible.cfg) = merge
DEFAULT_HOST... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
winrm
##### ANSIBLE VERSION
ansible 2.2.0
config file = /etc/ansible/ansible.cfg
configured module search path = ['/usr/share/ansible']
##### CONFIGURATION
Not aware of any changes in ansible.cfg.
Otherwise using the followin... | 0 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
The shell module is ignoring proxy environment
I'm working on some server with limited internet connexion (need to use proxy
settings)
On some module, i need to set environment otherwise i get a timeout.
It's a main issue for me as i don't want to have dupl... |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
cron
##### ANSIBLE VERSION
ansible 2.3.1.0
##### CONFIGURATION
##### OS / ENVIRONMENT
FreeBSD on server, CentOS on client
##### SUMMARY
If cron job is on the last line of crontab, it gets duplicated on every play.
##### STEPS TO REPROD... | 0 |
Currently to load pretrained tensor into an Embedding I am running:
embedding = torch.nn.Embedding(length, dim)
embedding.weight.data = pretrained_vectors_tensor
This first initializes a tensor of size `length x dim` which can be quite
large and then throws all of that away. When creating the embe... |
### Summary
Loading pre-trained embeddings is common practice with today's Embeddings.
Most often than not, people use large pre-trained Embeddings such as Word2Vec,
Glove or FastText with their models. As such there should be an easy and
simple way of doing this so common operation.
### Current Behaviour
To load ... | 1 |
plt.title("title")
plt.gca().twiny().set_xlabel("xlabel")
plt.tight_layout()

matplotlib 1.5.0.
|
This is an issue that came up in http://trac.sagemath.org/13625
When `subplot.xaxis.tick_top()` is used, then the position of the plot title
is not recomputed. Ideally, it should be shifted further up. Example code is
as follows
from matplotlib.figure import Figure
figure = Figure()
subplot = ... | 1 |
### Is there an existing issue for this?
* I have searched the existing issues
### This issue exists in the latest npm version
* I am using the latest npm
### Current Behavior
When running `npm ci` in a directory with an existing `node_modules` that
contains a `.bin` directory, the command fails with the fol... |
I am using a link from
https://github.com/ionicthemes/ionic-facebook-login
and use this theme in app building first I have clone it then we use ionic
serve and got error
> ng.cmd run app:serve --host=localhost --port=8100
> [ng] An unhandled exception occurred: Could not find module "@angular-
> devkit/build-... | 0 |
This:
extern crate iron;
use iron::{Request, Response, IronResult, Iron, status};
use std::net::ip::Ipv4Addr;
fn main() {
Iron::new(hello_world);
fn hello_world(_: &mut Request) -> IronResult<Response> {
Ok(Response::with(status::Ok, "hello world")... |
I hit an internal compiler error in rustc 0.12.0-nightly (`d53874e` 2014-10-02
01:22:20 +0000).
Notes:
* trying to compile ncollide / nphysics. It wasn't finding crates, possibly because of ncollide recently switching to use cargo's 'feature' feature, so I was randomly prodding the Cargo.toml files trying to get ... | 1 |
### Current Behavior:
If a non-namespaced package is published with
`npm publish --access restricted`
npm ignored the user directive that access should be restricted and publishes
the package.
### Expected Behavior:
Attempting to publish a package which isn't namespaced with `npm publish
--access restricted` sh... |
# What / Why
> Hey, I've `npm publish`'d a library to npm's public registry and it finished
> successfully, I received an email claiming it is published and when I search
> the exact name on npmjs.com it shows on the dropdown.
> However, I don't see it on my user page and it's package page returns 404.
>
> I also... | 0 |
### System information
* **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : no
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Ubuntu 16.04
* **TensorFlow installed from (source or binary)** : source
* **TensorFlow version (use command below)*... |
Issue to trace effort of swig interface for java. Started implementation -
will update with progress. If anyone has any comments/tips - please feel
welcome to join the discussion!
| 0 |
### Problem
Recently, it was found that there is no option to draw bright dot spherical
symbols in 2D during drawing. I don't know how to solve this problem
### Proposed solution
_No response_
|
## Feature Request
I would like to know if Matplotlib could provide the functionality to plot
using markers with gradient filling in scatter / plot, such that the markers
in an 2D plot may mimic the appearance of a glossy 3D object, as the sample
png attached (the gradient is post processed by Inkscape, however).
C... | 1 |
**System information**
-Google Colab
-GPU
-Python 3
-Tensorflow tf-nightly-2.0-preview
When I write the code:
`from __future__ import absolute_import, division, print_function`
`!pip install tf-nightly-2.0-preview`
`import tensorflow as tf`
`tf.enable_eager_execution()`
It gives me the error **Attr... |
**System information**
* Have I written custom code (as opposed to using a stock example script provided in TensorFlow): NO
* OS Platform and Distribution (e.g., Linux Ubuntu 16.04):Colab
* Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device:
* TensorFlow installed f... | 1 |
This strange behavior came up in pandas-dev/pandas#19813:
In [23]: np.array([], dtype=object).sum()
Out[23]: False
In [26]: np.array([], dtype=object).prod()
Out[26]: True
It's almost as if NumPy picks a dtype at random (e.g., bool in this case) to
use for computing the result. A... |
This is pretty weird:
>>> arr = np.array([1, 2, 3], dtype=object)
>>> np.add.reduce(arr)
6
>>> np.add.reduce(arr[:0])
False
>>> np.multiply.reduce(arr)
6
>>> np.multiply.reduce(arr[:0])
True
It happens for array results too:
>>> arr = np.array([[1], [2], ... | 1 |
### System Info
(Possible duplicate: #10256)
I have written a custom tokenizer that builds on top of `BertTokenizer`
(returns one extra list of ids that will later be embedded in a custom model).
I have pushed it to Hub as well. Now, how can I allow others to use it? The
code for the tokenizer is uploaded to Hub a... |
### Model description
I would like to implement a new model architecture.
## Short description
RWKV v2 is an "RNN with transformer-level performance, without using
attention. Similar to Apple's Attention Free Transformer. All trained models
open-source. Inference is very fast (even on CPUs) and might work on cell
... | 0 |
### Describe the issue with documentation
On https://airflow.apache.org/docs/apache-airflow/stable/stable-rest-api-
ref.html#operation/patch_dag
the payload in the example for PATCH /dags/{dag_id} suggest that it's possible
to update `schedule_interval` which is not true :
{
"is_paused": true,
... |
**Description**
Since Airflow 2 we get a lot of customization options for pods spawned using
`KubernetesPodOperator`. There is, however, one area in which nothing has
changed and it's `xcom_sidecar_container`. Currently, all of the specs for it
are hardcoded in `PodDefaults` class.
This issue is meant to start disc... | 0 |
**Christophe Roudet** opened **SPR-7686** and commented
When using SpringBeanAutowiringSupport.processInjectionBasedOnServletContext()
a NullPointerException is raised in
InjectionMetadata.checkPropertySkipping(PropertyValues pvs)
protected boolean checkPropertySkipping(PropertyValues pvs) {
... |
**Christian Nelson** opened **SPR-1899** and commented
I would like to see an analog to the DataBinder.setAllowedField(String[])
called setIgnoredFields(String[]) or setDisallowedFields(String[]).
In most scenarios, there are fewer fields to ignore than to allow. Almost all
of my command objects have only one fiel... | 0 |
Right now all constraint configuration should be defined in the
`validator.xml` or `validator.yaml` file. Once you have a lot of entities this
file becomes overly large. As I'm completely unfamiliar with the way metadata
is handled by the validation component I need some suggestions before I can
open a PR.
This migh... |
I have a website splitted in 2 areas:
* public customers
* professional customers
Both areas contains the same organization (a list of the same activities).
I am trying to generate the sames urls for both areas (just adding a prefix on
pro area) and share the configuration so I don't need to duplicate all urls... | 0 |
Attempt to run a python program using a single line problem matcher. For
example, use the tasks.json from
http://stackoverflow.com/questions/29987840/how-to-execute-python-code-from-
within-visual-studio-code, except make it a test command or build command so
you can run with a shortcut. Run on an app.py file contain... |
whether vscode can change the mechanism that make me can get all all
completionitem list include vscode itself provided in the following method
provideCompletionItems in my vscode plugin? where I can know how vscode deal
with this in vscode source?
vscode.languages.registerCompletionItemProvider("javas... | 0 |
The issue at #4273 was closed but the problem still exists. There is even a
repo with a repro
### Input Code
export * from 'module'
### Babel Configuration (.babelrc, package.json, cli command)
{
"plugins": [
"transform-runtime"
],
"presets": [
... |
> Issue originally made by @brnrd
### Bug information
* **Babel version:** 6.3.26
* **Node version:** 5.2.0
* **npm version:** 3.3.12
### Options
using babel-cli, "babel --presets es2015"
### Input code
try {
function Person() {
this.age = 0;
... | 0 |
I'm running Symfony2 2.6.6, nginx 1.7.12 on linux/64.
env VARS
SYMFONY__DATABASE__PASSWORD => "testtesttest"
SYMFONY__DATABASE__USER => "root"
have been set in shell & nginx.
As documented
"How to Set external Parameters in the Service Container":
http://symfony.com/doc/... |
I think that in order to provide a better user experience, we should improve
the error messages shipped with the Form component by default. I am **not**
talking about the error messages in the Validator component.
If I use the Validator component stand-alone, getting an error such as "This
value is not a valid numbe... | 0 |
This is an alternative fix to #4087 (and therefore impacts #15002, #12573 and
#12977 too).
I first posted it as a comment on #15002 . But I think it would be easier to
think about it.
Plus, since the design will probably requires several PRs, I was thinking of
using this issue to centralize them.
The basic idea is... |
The doctrine bundle, the validator and the annotation reader all support
caching.
The doctrine bundle supports memcache, apc, array and xcache.
The annotations reader supports file and any mechanism that implements
`Doctrine\Common\Cache\Cache` by providing a service in the configuration.
The validator component o... | 0 |
**Sorriso** opened **SPR-8930** and commented
the full code source having the issue can be found here:
https://github.com/sorriso/TodoSRV
this is a small application architecture sample (still under improvement /
development) of a full todos application
with a RIA javascript application on client side (using sp... |
**Abhijit Sarkar** opened **SPR-9359** and commented
Background: I opened an improvement SWS-746 but it was incorrectly closed. It
is OK if the improvement is not accepted but the fact that it was closed
because "here has been a UriTemplate class since version 3.0, which allows you
to create a URI template quite ea... | 0 |
$ flutter create dummy
Creating project dummy...
Wrote 64 files.
Running 'flutter packages get' in dummy... 2.7s
[✓] Flutter is fully installed. (on Mac OS X 10.12.4 16E195, channel master)
[✓] Android toolchain - develop for Android devices is fully installed. (A... |
I followed the procedure mentioned in the documentation
1. I have installed the git for windows
2. Then used this command in cmd : $ git clone -b beta https://github.com/flutter/flutter.git
3. Then i set the environment path in user variables of flutter.
4. Then using flutter doctor i got this error :
C:\Wi... | 0 |
**Eberhard Wolff** opened **SPR-6870** and commented
The Autowiring algorithms tries to work out the dependencies by building up
the Beans. If this fails, a BeanCreationException is thrown, caught and then a
different way to handle the dependencies is tried. In some situations this
results in slow performance and i... |
**Kieron Edwards** opened **SPR-5933** and commented
This is the exception when trying to load
org.apache.xml.dtm.ref.DTMManagerDefault from ShadowingClassLoader in a
multithreaded environment (I have assigned intensive parsing tasks to multiple
threads). I can get around this by subclassing AbstractJpaTests :-
... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.