text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
#### Code Sample, a copy-pastable example if possible In [97]: s1 = pd.Series([1,2,3], index=[4,5,6]) In [98]: s2 = pd.Series([1,3,2], index=s1) In [99]: s2 Out[101]: 1 1 2 3 3 2 dtype: int64 so far so good, now lets try a boolean series ...
>>> d = pandas.Series({('1ab','2'): 3, ('1ab',3):4}, ) >>> d = pandas.concat([d,d]) >>> d = pandas.concat([d,d], axis=1) >>> pickle.loads(pickle.dumps(d)) 0 1 1ab 3 4 4 2 3 3 3 4 4 2 3 3 >>> pickle.loads(pickle.dumps(d.T)) Traceback (mo...
0
Maybe it does not cover main idea of 6to5 compiler, but it will be great if we will have ability to specify for which environment we wrote our application. For example, I wrote some modern application of latest version of Firefox and Google Chrome, but according this table http://kangax.github.io/compat- table/es6/...
Possibly through a `blacklistUserAgent` option or something. Would use the kangax compat-table. Important to note that it does not guarantee complete spec compliancy on the vendors end. References: * https://github.com/kangax/compat-table * https://github.com/Fyrd/caniuse * https://github.com/3rd-Eden/userage...
1
When input GLTF file contains accessors with stride that doesn't match the expected stride based on the accessor type, GLTFLoader creates the interleaved attribute as follows: var ibCacheKey = 'InterleavedBuffer:' + accessorDef.bufferView + ':' + accessorDef.componentType; var ib = parser.cache.get...
The main source code has recently been ported to ES2015 modules (see #9310); however, some parts are still relying on global namespace pollution and have thus become unusable. Specifically the things in `/examples/js/` haven't been transformed to support modules yet; this makes them currently unusable from within en...
0
## Steps to Reproduce 1. create new plugin `flutter create --org com.example --template=plugin utf8err` 2. modify file `utf8err\android\src\main\java\com\example\utf8err\Utf8errPlugin.java` content to: package com.example.utf8err; import io.flutter.plugin.common.MethodChannel; impo...
## Steps to Reproduce * Create a Material scaffold flutter app that **does not** use push. * Make sure `aps-environment` is not set. * And that the App ID settings on the Developer portal do not have Push enabled. * Build for iOS * Submit a build to Apple TestFlight. * You'll get an email warning you tha...
0
Currently there are `MuiCardHeader` and `MuiCardContent` stylesheets available for overrides, there is not `MuiCard` though. I need to globally override Card top and bottom margins. * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior import...
## FontIcon inside an IconButton loose is color from props In material-ui.alpha.1 when you put a FontIcon with color props inside an IconButton the prop will not work. I think is related to this commit `a99451a` Before styles was merged like that: `this.mergeStyles({styles.root, style, { color: this.state.h...
0
% RUST_BACKTRACE=1 rustc z.rs z.rs:32:23: 32:27 error: internal compiler error: this path should not cause illegal move z.rs:32 let xs = unsafe { *x.s }; ^~~~ note: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: http://doc.rust-lang.org/complement- bugreport.html ...
Input: struct T(u8); fn t() -> *mut T { unsafe { 0u8 as *mut T } } fn main() { let a = unsafe { *t() }; } Output: $ rustc ../test.rs ../test.rs:9:19: 9:23 error: internal compiler error: this path should not cause illegal move ../test.r...
1
Summary. Python 3.7.0b3 has a new warning: .../python3.7/site-packages/requests/models.py:177: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working if isinstance(hook, collections.Callable): ## ...
~/requests/models.py:170: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working if isinstance(hook, collections.Callable): I created a venv in Python 3.7 and got the warning when using pip.
1
## Environment info * `transformers` version: 4.0.1 * Platform: Linux-4.15.0-132-generic-x86_64-with-glibc2.10 * Python version: 3.8.5 * PyTorch version (GPU?): 1.7.1+cu110 (True) * Tensorflow version (GPU?): not installed (NA) * Using GPU in script?: * Using distributed or parallel set-up in script?:...
## Environment info * `transformers` version: 4.0.0 * Platform: Linux 18.04 * Python version: 3.6.9 * PyTorch version (GPU?): 1.70 (True) * Tensorflow version (GPU?): N/A * Using GPU in script?: Yes * Using distributed or parallel set-up in script?: No ### Who can help @patrickvonplaten ## Informati...
1
Using commit `7fbbfe6` I am experiencing this failure during `make check`: metrics saved to: tmp/check-stage2-T-x86_64-unknown-linux-gnu-H-x86_64-unknown-linux-gnu-std-metrics.json failures: ---- io::process::tests::test_override_env::green stdout ---- task 'io::process::tests::tes...
It seems that #20692 is not only a case for duplicate error messages as shown by fn main() { let array = [1, 2, 3]; for a in array { println!( "{}", a); } } Which print the error 3 times. It is the same as the other case about map rust/src/librustc/middle/trai...
0
I guess this is as designed, but should we somehow improve this experience? Windows. ![image](https://cloud.githubusercontent.com/assets/1926584/12579941/f0de0b08-c42b-11e5-9609-16f45e790013.png)
* VSCode Version: 1.1.1 * OS Version: Windows 7 Scenario 1: We have git hooks installed (a mix of #!/bin/sh and #!/bin/node). The printout messages from these do not show in the VSCode console, only when running from command line (in this case, CMD) Steps 1. Try to commit something with an improper commi...
0
# Bug report ## Describe the bug When using `_app.js` page for common stuff (like creating redux store) - these libraries are duplicated between pages. ## To Reproduce 1. Checkout https://github.com/cherniavskii/nextjs-app-code-splitting-reproduction locally 2. Run `npm install` 3. Run `npm run analyze` 4...
When running next.js on top of Docker with express my app is not hot reloading. It hot reloads without Docker as expected. * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior The app should hot reload. ## Current Behavior The app is not hot reloading, ...
0
# Checklist * I have verified that the issue exists against the `master` branch of Celery. * This has already been asked to the discussion group first. * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug repo...
# Checklist * I have verified that the issue exists against the `master` branch of Celery. * This has already been asked to the discussions forum first. * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports...
0
I have a screenshot test using flutter_driver where I'm taking a screenshot of a Widget which contains an Image widget which is created via `new Image.asset('myasset.png', key: const Key('a'))`. The test code looks like this: test('Widget with Image', () async { await driver.waitFor(find.byVa...
Collecting a screenshot with `driver.screenshot()` after calling `driver.waitUntilNoTransientCallbacks()` doesn't guarantee that the current frame's display list will have reached the GPU before the screenshot is taken.
1
v1-beta12 As per title. If you swipe on an element with a button/button base (i.e. a list item with an action on it), the ripple effect fires. This isn't usually that bad of a problem, however if you are scrolling through a list of items with actions on mobile it is really jarring and janky. As you tap to scroll, ...
In a case of mine, I am opening a slider onClick and then unmounting it through render logic. * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Should not throw an error to a reference Uncaught TypeError: Cannot read property 'getBoundin...
0
* * * ### System information * **Xcode 9.3 and Mac OS is 10.13.4 **: * **TensorFlow r1.2** : * **iPhone 7 plus** : ### Describe the problem NSString* graph_path = FilePathForResourceName(model_file_name, @"tflite"); model = **tflite::FlatBufferModel::BuildFromFile** ([graph_path UTF8String]); if (!m...
It be nice to have autocompletion for the tensorboard arguments. I experimented a bit Era-Dorta@`3c21776` with the argcomplete, however the completion is too sluggish to be useful. The entry point for the completion is after the flags are defined and the slugginesh is due to too much stuff being done before that....
0
tensorflow 1.2 release will support python 3.6?
The current .whl does not support python 3.6. Please update to support the latest version of python. Thanks! C:\WINDOWS\system32>python --version Python 3.6.0 C:\WINDOWS\system32>pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.1-cp35-cp35m-win_amd64.whl tensorflow-0.1...
1
# Description of the new feature/enhancement Arguments to the program. for example the ability to specify which mingw one would want to load, mingw64, mingw32, or msys2. like we can in VSCode # Proposed technical implementation details (optional) This is accomplished in VSCode via this directive in `settings.json`...
# Summary of the new feature/enhancement Current tab styling is ugly, it would be better if some customization options are added: 1. Custom Tabs Position: {Top, Bottom, Sides} 2. Custom Tabs height and font size (Affects oversized + button and down pointing arrow too) 3. Tab opacity and color. 4. Dynamic ap...
0
### Apache Airflow version Other Airflow 2 version (please specify below) ### What happened I am running airflow 2.4.2 in EKS 1.22 with minor tweaks to official helm chart. I am observing in UI, in task logs each log line is coming twice. Attaching a screen-shot below of the issue. As visible here all log lines ar...
### Apache Airflow version 2.4.2 ### What happened We upgraded airflow from 2.4.1 to 2.4.2 and immediately notice that every task log line is duplicated _into_ CloudWatch. Comparing logs from tasks run before upgrade and after upgrade indicates that the issue is not in how the logs are displayed in Airflow, but ra...
1
Q | A ---|--- Bug report? | no Feature request? | yes BC Break report? | no RFC? | no Symfony version | 3.3.0 I have recently started using the Guard component to handle formless authentication. Great addition BTW (Thanks @weaverryan). With the traditional `'form_login'`, we have the option to add man...
Q | A ---|--- Bug report? | no Feature request? | maybe? BC Break report? | no RFC? | no What is the recommended way to do per-firewall guard configuration options? Just add logic based on the request in the Guard? My current use case is redirection settings. Based on what firewall you are using a Guard ...
1
Updated to 0.189 and i see this : ![garbage](https://cloud.githubusercontent.com/assets/419606/6994170/e01d57aa- db34-11e4-905e-de5abc8ed118.png) there is one garbage char on the left side of each line number.
Since the last update Atom is displaying what seems to be a control character on empty rows as well as in front of single row numbers. I am using this font in Atom for a long time and this only started showing recently / in the last version. Other fonts seem to have an empty symbol in place for this. ![styles_less_-...
1
Version: 1.0.0 OS Version: Microsoft Windows NT 10.0.19041.0 IntPtr Length: 8 x64: True Date: 08/10/2020 14:52:44 Exception: System.ObjectDisposedException: Cannot access a disposed object. Object name: 'Timer'. at System.Timers.Timer.set_Enabled(Boolean value) at System.Timers.Timer.Start() at Po...
Popup tells me to give y'all this. 2020-07-31.txt Version: 1.0.0 OS Version: Microsoft Windows NT 10.0.19041.0 IntPtr Length: 8 x64: True Date: 07/31/2020 17:29:59 Exception: System.ObjectDisposedException: Cannot access a disposed object. Object name: 'Timer'. at System.Timers.Timer.set_Enabled(Boo...
1
I have a hard time replicating this issue since it will require me filling up the disk again, but in a nutshell the problem is that when I edit a file in Atom, if the disk space is not enough to save it, I find that the file content is erased. This happened to me more than once (yeah I need more Gbs of disk space) s...
Copying code from another source and pasting into an untitled doc causes Atom to crash with no error message. Still happening after restart. Running Xubuntu 14.04
0
_Please make sure that this is a bug. As per ourGitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:bug_template_ **System information** * Have I written custom code (as opposed to using a stock example script provided in TensorFlow): ...
### System information * **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : Yes * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Linux Mint 18.2 Sonya (based on Ubuntu 16.04) * **TensorFlow installed from (source or binary)** : Source * **Tenso...
1
Q | A ---|--- Bug report? | yes Feature request? | no BC Break report? | no RFC? | yes/no Symfony version | 3.2.2 When executing a command which throws a null error the isSuccessFul() method of Symfony\Component\Process\Process returns true. For example, when executing the following command: ...
Given an new symfony 3.2 project, with this simple Command : <?php namespace AppBundle\Command; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class DemoCommand extend...
1
# Describe the bug With the new version `1.4.0` the call `engine.dialect.has_table` fails for sqlite. This didn't happen in the previous version `1.3.23`. **Note** Starting with version `1.4.0` it's recommended to use sqlalchemy.inspect(engine).has_table(table_name) this works OK. This call ...
**Describe the bug** This code import sqlalchemy print(sqlalchemy.__version__) engine = sqlalchemy.create_engine('sqlite://') # this works on 1.3.20 engine.dialect.has_table(engine, 'mytable') Raises the following exception: % python bug.py 1.4.0b1 Traceba...
1
As a rule of thumb, naming conventions should always include some kind of a package/namespace/prefix/suffix to indicate which plugin objects belong to. In this case, there was none of that and ".modal" was used which is now causing a conflict when you use any other plugins with the same name which, in this case, hap...
http://jsfiddle.net/colllin/jZUbB/ Unless I'm using it incorrectly... sorry for the bad news :)
1
### Description Just like the author of #731, I don't want a 307 temporary redirect which is automatically sent by uvicorn when there's a missing trailing slash in the api call. However, the solution given in that issue, i.e. route path like "/?" no longer works in the versions after this April as reported in in #17...
### First check * I added a very descriptive title to this issue. * I used the GitHub search to find a similar issue and didn't find it. * I searched the FastAPI documentation, with the integrated search. * I already searched in Google "How to X in FastAPI" and didn't find any information. * I already read...
0
### Describe your issue. There is a serious bug in the implementation of Kummer's hypergeometric function. If the first two parameters a, b are real, we have that hyp1f1(a, b, z) should be the conjugate of hyp1f1(a, b, np.conj(z)). This is not always the case. Examples are provided below. Mathematica is one of the ...
I am using the `quad` function from `scipy.integrate v0.19.1` to integrate functions with a square-root like singularity at each end of the integration interval such as for example In [1]: quad(lambda x: 1/sqrt(1-x**2), -1, 1) (I use the `sqrt` function from `numpy v1.12.0`) which immediately yie...
0
Deno.bench(function a() { }); Deno.bench(function b() { }); xxx@xxx xxx % deno bench Check file:///Users/xxx/WebstormProjects/radash/main_bench.ts cpu: Apple M1 Pro runtime: deno 1.29.1 (aarch64-apple-darwin) file:///Users/xxx/WebstormProjects/xxx/...
Hello, I've a behavior in Deno.bench that I cannot explain : Deno.bench("noop", () => {}); Deno.bench("noop", () => {}); Deno.bench("noop", () => {}); ❯ deno bench --unstable noop.ts cpu: Apple M1 runtime: deno 1.23.3 (aarch64-apple-darwin) benchmark time (a...
1
Hi React Community, reading the features related to useState and batching, im finding problems where the state is not updated or when i have memoised a method using `useCallback` i would like to suggest about add a method to get the state in useState, an example for this approach can be this const use...
feature request: getState, example, const [state, setState, getState] = useState(null); it is ok to use the simple variable in a dependent uses effect, but not ok in not a dependant use effect. the state is a simple variable. which is closure passed into functions, so it is not updated. and setState with a functi...
1
Okay, at risk of looking like a fool, I thought I would turn here for help. Using the versions of several popular javascript libraries below, I am attempting to run some basic tests to see if atom-shell would be useful to me. Versions atom-shell: 0.12.3 angularjs: 1.3.0 bootstrap: 3.1.1 d3js: 3.4.6 jquery:...
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
# Weekly Report of Dubbo This is a weekly report of Dubbo. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future. It is all done by @AliGHRobot which is a collaborate robot. See: https://github.com/AlibabaDR/Collabobot . ## Repo...
# Weekly Report of Dubbo This is a weekly report of Dubbo. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future. It is all done by @dubbo-bot which is a collaborate robot. ## Repo Overview ### Basic data Baisc data shows how ...
0
The .col-md class is not present in precompiled build.
When using the customizer, I made the following change: * @font-family-sans-serif - Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif Left everything else as default and downloaded it. When dropping it, noticed that no definitions for .navbar-collapse. I'm sure there are others, but that's what I noticed first...
1
**Do you want to request a _feature_ or report a _bug_?** Feature **What is the current behavior?** The `ref` attribute passed to a DOM node can be either a callback or a `RefObject`, but not both. Sometimes, that's exactly what's required: for example, a library like react-pose demands ref forwarding to work with...
Before React 16.3 we were able to proxy the same element ref to multiple listeners, for example, to grab hold of the element for internal purposes and also expose it publicly, like so: class MyComponent extends Component { attachRef = el => { this.buttonEl = el; this.props.buttonR...
1
this does not seem to work with multiple screens, any plans on extending that feature?
# Summary of the new feature/enhancement Currently the new FZ editor only comes up and applies zone layouts to the primary monitor. In order to get a layout on a different monitor, the original custom editor is needed. Bret and Jeff have a design for this change and now they need to implement it. # Proposed technic...
1
Hi, I have tried this steps but it fails to get minions. core@kube-00 ~ $ kubectl get minions Error: Get http://localhost:8080/api/v1beta3/minions: dial tcp 127.0.0.1:8080: connection refused Deployment was successful without any errors and I can see the all nodes up and running in azure. Please assist .. Tha...
I was trying to follow these instruction @ https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/getting- started-guides/azure.md to build some containers and manage it but I can’t get pass the step of deploying apps Steps I am able to run until is cluster/kube-up.sh ( This step never finishes , loops ...
1
From https://ci.appveyor.com/project/flutter/flutter/build/1.0.10832: 15:03 +2123 ~20: loading C:\projects\flutter sdk\packages\flutter\test\widgets\semantics_5_test.dart unhandled error during finalization of test: C:\projects\flutter sdk\packages\flutter\test\widgets\semantics_4_test.dart ...
cupertino_picker_demo.dart results in bulid Error. `2a8e35c` The latest fix checked in breaks the build with following error. **Compiler message:** file:///d:/Repos/flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_picker_demo.dart:168:23: Error: Getter not found: 'CupertinoDatePickerMod...
0
Okay please check this fiddle out: http://jsfiddle.net/p97xS/3/ So the issue is, When you open or close a popover by clicking the element on which the `popover` is initiated everything works well. Good! However problem arises when you plan to hide popover through another element (or button) using `$('#example').po...
i searched for an already opened issue but did not found any that was reporting this exact problem. I'm trying to use the destroy method on tooltip (bootstrap v3) but it does not remove the element from the DOM. Any idea ? Fiddle : http://jsfiddle.net/52VtD/59/ click on the button to trigger the tooltip destroy m...
1
$ cd fmt $ go vet -x /Users/r/go/pkg/tool/darwin_amd64/vet doc.go export_test.go fmt_test.go format.go print.go scan.go scan_test.go stringer_test.go $ # Add the -v flag $ /Users/r/go/pkg/tool/darwin_amd64/vet -v doc.go export_test.go fmt_test.go format.go print.go scan.go scan_te...
by **vinay.ys** : Fresh build of the latest tip (parent: 19011:ae14bde9ce3c tip) failed reflect test. Build log is attached. What steps will reproduce the problem? Reran ./all.bash and it succeeded fine. So, no simple reproduction Which compiler are you using (5g, 6g, 8g,...
0
![screenshot 114](https://user- images.githubusercontent.com/11151000/45806794-84272480-bcf4-11e8-872c-7828c49657b9.png) ![screenshot 115](https://user- images.githubusercontent.com/11151000/45806796-84272480-bcf4-11e8-90c8-0fa7a7c98bee.png) ![screenshot 116](https://user- images.githubusercontent.com/11151000/45...
I have noticed that spider_idle signal is not called when the last issued request is filtered out by dedupe filter. Example spider: from scrapy import log, signals from scrapy.http import Request from scrapy.spider import BaseSpider class IdleSpider(BaseSpider): name = 'i...
0
This was a nice, though unexpected change with 3.2, but i have one request. Can we pretty please have table-related display options? Obviously I can just add these myself to my instance, but I would love to see this officially supported. The use case is legit to me; something like input group add-ons, which in some c...
I really need ".visible-*-table-cell".
1
Hi, I am trying to build latest TF with CUDNN 6.0 + CUDA 8.0 on Ubuntu 14 but it failed with the following error message. I found some similar issue (#469) reported in the past, not sure if the latest tip has fixed it? Any suggestion would be appreciated. Thanks **Build Command** * build command for CUDA that ...
Hey guys, I can compile the cpu version of tensorflow 1.2.0-rc2 without any problem, however, i am blocked when i try to compile the gpu version. I spend almost the whole day to install tensorflow 1.2.0-rc2 gpu version in our cluster, however there is no lucky. ### Here is the error from the terminal: ERROR: /home...
1
* I tried using the `@types/requirejs` package and had problems. **package.json** ` "devDependencies": { "@syncfusion/ej2-build": "*", "@types/chai": "^3.4.28", "@types/jasmine": "2.8.9", "@types/jasmine-ajax": "^3.1.27", "@types/requirejs": "^2.1.31" } ` **When i try compile my application it t...
I'm getting the following error when I compile my sails project from my lodash typings. error TS2403: Subsequent variable declarations must have the same type. Variable '_' must be of type 'any', but here has type 'LoDashStatic'. >> 1 non-emit-preventing type warning >> Error: tsc return cod...
0
### Describe the workflow you want to enable Currently, there is no way to derive the _Sensitivity_ or the **Specificity** from the confusions matrics The only way to be calculated is to do it yourself. this can be simple if you are doing a simple binary classification like this one on the image. ![Screen Shot 2...
I'm not sure if this is intended, but I was confused that the `score` function after grid search uses a different scorer than the scorer defined in `GridSearchCV`. Example: from sklearn import datasets from sklearn.linear_model import LinearRegression from sklearn.grid_search import GridSearch...
0
**Migrated issue, originally created by Anonymous** If a exception raise in commit() function, rollback() function would be called and then the exception would be re-raised. The re-raising of the exception may be failed when sqlalchemy work with a coroutine framework such as evenlet or gevent due to a context switc...
**Migrated issue, originally created by Anonymous** We have an oracle database with multiple schemas defined. When I try to add a table to a particular schema using SQA (see attached example), the operation fails because a table with the same name is found inside one or more of the other schemas, despite the fact t...
0
#### Code Sample, a copy-pastable example if possible s1=pd.Series([True,False,True,True]) s2=pd.Series([True,True,False]) s1.index=pd.MultiIndex.from_tuples( [(0, 2), (1, 1), (1, 2), (2, 1)],names=['st', 'at']) s2.index=pd.Index([0,1,2], name='st') ds1=pd.DataFrame(s1) ds...
Something seems to be wrong with s1 == s2 when s1 and s2 don't have the same index. Here is a snippet example: import operator import pandas s1 = pandas.Series([1,2], ['a','b']) s2 = pandas.Series([2,3], ['b','c']) s1 == s2 s2 == s1 with the output: InIn [5]: s1 == s...
1
##### ISSUE TYPE * Feature Idea ##### COMPONENT NAME The --limit option ##### ANSIBLE VERSION ansible 2.4.0 (devel ba3295dd3f) last updated 2017/04/12 11:26:36 (GMT +200) ##### CONFIGURATION ##### OS / ENVIRONMENT N/A ##### SUMMARY One of our developer tried to use one of our playbooks ...
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME systemd ##### ANSIBLE VERSION ansible 2.4.0 config file = /home/sxpert/.ansible.cfg configured module search path = [u'/home/sxpert/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ansible python module location...
0
I wanna ask where and how to see the log details(exit code 137,what!) when superset container not started: File /home/superset/superset/assets/src/../backendSync.json was saved! Done in 4.81s. yarn run v1.12.3 $ NODE_ENV=production webpack --mode=production --colors --progress clean-webpack-plugin: /home/sup...
Thank you for all your contributions. To keep the project maintainable, please help the community by * 🚮closing your issues that has been resolved, are no longer relevant or is duplicated. https://github.com/apache/incubator-superset/issues * 🚮closing your PRs that you no longer intend to merge or the code...
0
### Is there an existing issue for this? * I have searched the existing issues ### Current Behavior `npm install -g` creates a folder with the literal name `${XDG_DATA_HOME}` in the current directory, and treats it as the data home dir. ![127120221-54e6ec3d-4a4c-4cd7-ac98-12b7f6f40c12](https://user- images.gith...
### Current Behavior: `npm uninstall -g <package>` doesn't run the `preuninstall` script Also, `npm install -g <package>` doesn't run the `preuninstall` script from the previously installed version of the same package Installing a newer version of a global package does trigger `preuninstall` in v6 ### Expected Be...
0
source code `test.js` as below: function testable(target) { target.isTestable = true; } @testable class MyTestableClass {} and with `.babelrc` { "presets": ["es2015", "stage-0"] } When run babel, failed $ babel test.js TypeError: te...
1
### System info * Playwright Version: 1.27.1 * Operating System: Windows * Browser: MS Edge * Other info: CI/CD on the GitLab platform using windows image containers ### Source code **Config file** // playwright.config.ts import { PlaywrightTestConfig } from "@playwright/test"; ...
### System info * Playwright Version: v1.34.3 * Operating System: macOS 11.6.1 * Browser: All ### Source code * I provided exact source code that allows reproducing the issue locally. **Config file** // playwright.config.ts import { defineConfig, devices } from "@playwright/test"; i...
0
It seems to me, that the source code of unit-tests.html here https://angular.io/docs/ts/latest/testing/jasmine-testing-101.html isn't correct. It should be: ... <link rel="stylesheet" href="../node_modules/jasmine-core/lib/jasmine-core/jasmine.css"> <script src="../node_modules/jasmine-core/l...
**I'm submitting a ...** [ ] 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 **Current behavio...
0
import seaborn as sns sns.histplot([20.002347, 20.002347, 51.004152, 19.00218, 20.002346]) is irresponsive for a long time with increasing memory usage. Adding `bins=10` creates the plot without major delay. Version: 0.11.1
Hello! It is my first Github bug report, so please let me know if some additional info is needed. I'm trying to use sns.pairplot for some pandas DataFrame and in result my computers are running out of memory and losing terminals with all the data. The problem set of digits (csv) can be downloaded here: https://...
1
### Version 2.6.10 ### Reproduction link https://jsfiddle.net/just_ben1996/5bfs80gk/14/ ### Steps to reproduce * Create a component with a :is to an 'input' native element. * v-model this component to something within your data as shown. * Note the input isn't pre-populated with the value, and on change it...
vuejs does not behave properly when use v-model with dynamic component . jsfiddle adress: http://jsfiddle.net/zuomingcai/4pukLmnc/1/ focus the input element in above fiddle and press any key to see the hehavior.
1
After modifying the value of the `indices` attribute of a `csr_matrix`, several operations on the matrix produce segfaults. However, other sparse matrix types (`lil_matrix` and `coo_matrix`) do not. Therefore, I suspect this is because CSR matrix compresses the row indices. I have not come across any legitimate use ...
A `csr_matrix` can be constructed with malformed data (column indices that are out of bounds) without crashing. This can lead to later segfaults when (I guess) out of bounds memory is accessed. In my application, it didn't crash 100% of the time, but was more random, as is common with out-of-bounds memory accesses. I...
1
Running `npm run install` and `npm run start --p 3000` locally works no issues using same version of node. Once deployed using the package.json below I'm receiving errors as in the Heroku Logs below. Big thanks for all the effort being put into this project. package.json { "name": "xxx", ...
# Bug report ## Describe the bug First bug report so patience appreciated. Following an installation of @material-ui/core receive "Invalid hook call". Traced the issue back to any hook in general and react installation location. ## To Reproduce Created simple standard folder structure: src |--components |--...
0
facebook/react/pull/5744 It seems with the newest update v15 when passing props into a child component with the spread operator the console throws the warnings associated with this pull request. seems to only throw issue when the component is not a class but only stateless component hence passing just {...props} an...
React version: 16.13.1 ## Steps To Reproduce 1. In a project with React, and react-leaflet@2.7.0 2. import React from "react"; import Renderer from "react-test-renderer"; import { Map, TileLayer } from "react-leaflet"; let component = Renderer.create( <Map> <Ti...
0
It could be useful to be able to intercept dialog events from webview (alert, confirm, prompt) to be able to implement our own gui. Also it is part of chrome webview events https://developer.chrome.com/apps/tags/webview#event-dialog
* Output of `node_modules/.bin/electron --version`: v3.0.8 * Operating System (Platform and Version): Ubuntu 18.0.4 When running electron like: npx electron web/spectron/example/index.js the appPath (via app.getAppPath()) ends up becoming broken and just: /home/path/to/myproject/node_modules/elec...
0
I wanted to understand if we could create BDD Style tests similar to the ones that we'd create using cucumber with the playwright test runner. we use the test runner extensively in our playwright automation framework (Visual regression is an example). Kindly advise.
Our team has a case to use the BDD test, Playwright has any plan to add their own BDD implementation using the playwright test runner? That would be great if to have. This can help many people who want to use BDD along with Playwright. That's where cucumber became popular 😉
1
In Node we have os.EOL which abstracts the OS. In Deno we have std/fs/eol which is an os-invariant enumeration. The docs for writeFile and similar just use denormalized `\n`. Is this a case where we can prefer the Node pattern over the Go pattern, or is there some other recommended way to do this sort of thing? I'm...
I get this error; in the Deno 1.23.2. error: Unable to output during bundling. Caused by: 0: load_transformed failed 1: failed to analyze module 2: failed to resolve https://esm.sh/react@^18.2.0?pin=v86?bundle/jsx-runtime from file:///C:/Users/ayovr/Documents/dev/deno-b...
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 ...
**I'm submitting a ...** (check one with "x") [x] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ...
1
Maybe there's some really easy way to make this work in TS that I'm not seeing. I want to load jQuery as an AMD module, not as a global. `jquery.d.ts`as currently defined does not export a jquery external module. Instead it defines the $ and jQuery variables as global variables. Is there a simple way to declare an ...
In the `package.json` for this package, currently there is: "dependencies": { "@types/react": "*" }, It would be better to use carat ranges than the current wildcard for `@types/react` in the `package.json` for this package, because otherwise say for example the user is on React 15, a...
0
![image](https://user- images.githubusercontent.com/1462282/79713061-7a272800-8281-11ea-97d5-d5cc2d8f5b1b.png) ID Author Date Message `b7fd1b2` Divyansh Srivastava somm14divi@gmail.com 4/20/2020 2:11:40 AM +00:00 Adding visibility after clearing result in MainViewmodel
When searching 'cmd', can't find command prompt
1
Well this is a downer. I just spun up a new build machine and started cruising through the build, probably not paying as much attention as I should. Here's an excerpt: checking for C compiler default output file name... a.exe checking whether the C compiler works... yes checking whether we are ...
Summary of situation: built julia-1.2.0-rc2 from source for centos6 with gcc 6.4.0 and -DGLIBCXX_USE_CXX11_ABI=0 dlopen an .so which embeds some simple julia code. “Lifted” into global namespace with dlopen(RTLD_NOW | RTLD_GLOBAL) from a maya plugin. jl_init() results in this assert: void* jl_init_llvm(): As...
0
Hi there, we're currently test driving some of our old scripts remotely from ansible and if we choose to use it probably will for some time. On the one hand ansible makes it really easy to automate workflows that span multiple servers (that we'd like to use) on the other hand though it makes it really hard to see l...
Would love to see each 'shell' (&other) command creathave an option that creates a pipe for the duration of the process and pipes it's output into the pipe real time. Doing some long lived load generation and Ansible is crucial, but I don't know how to monitor process, short of adding more layers.
1
## Motivations A lot of JavaScript library/framework/pattern involve computation based on the property name of an object. For example Backbone model, functional transformation `pluck`, ImmutableJS are all based on such mechanism. //backbone var Contact = Backbone.Model.extend({}) var contact =...
Often a method will take as a string the name of a property of some object that it's working on. A common example would be http://backbonejs.org/#Model- get It would be ideal if TypeScript could provide compile-time checking on these calls to make sure that the string is actually a valid property of the underlying m...
1
The links defined in the following lines of code result in a 404 not found page when browsing the Deno manual, due to their location being written relative to the repository file structure and not the docs website URL structure. Found on https://deno.land/manual/contributing: * https://github.com/denoland/deno/bl...
I was confused how my scripts weren't available (even mistakenly blamed $DENO_DIR variable), but turns out my installed scripts aren't available with the exact `-n` property I give them by doing so: deno install -n test_script https://gist.github.com/raw/b1d7c6a2617a40d092f6fa5e055ac748/test.ts Instea...
0
### Bug report **Bug summary** Cannot pickle a plot result if use `tight_layout` method on the plot with datetime objects. **Code for reproduction** import matplotlib.pyplot as plt import pickle from datetime import datetime plot = plt.plot([datetime(1900, 1, 1), datetime(1900, 1, 2...
To help us understand and resolve your issue, please fill out the form to the best of your ability. You can feel free to delete the sections that do not apply. ### Bug report * A short 1-2 sentences that succinctly describes the bug get function of multiprocessing.AsyncResult fails in case of plotting pandas.Dat...
1
Is there a simple way to expose the XHR object so that it can be aborted, or is this better off being handled somehow in a response interceptor?
#### Describe the bug Typing definitions in v0.22.0 are incorrect for Axios class methods. Request (eg. https://github.com/axios/axios/blob/master/index.d.ts#L146) methods typings indicate request data and response should be the same type. That is not correct. #### To Reproduce Use any request method in typescript...
0
Hi, For example, I'd like to insert some new layers to VGG model before the dense layers, load the parameters, freeze them and continue training. I followed some old issues, which are popping up the top dense and outupt layers, adding new layers and the dense and output layers again. When I try to add new layers, ...
i want to apply timedistributed to dropout - the reason is i want each timestep to have exactly x% of the features dropped. i am also using batch_shape for my input with a given batch size since this is required for stateful rnn in my full code. when batch size is given the timedistributed wrapper uses rnn. my backe...
0
# What / Why > I've been unable to install anything (e.g. `npm install npm-groovy-lint`) > because of an error that wouldn't go away. ## When * Every time I try `npm install $packagename` ## Where * n/a ## How ### Current Behavior * Type `npm install npm-groovy-lint`, see 'The package-lock.json file was...
### 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 After updating the overrides, `npm install` is not updating the `package.lock` or `node_modules`. To make it work I had to remove bo...
0
The thrown TransformationFailedException is swallowed by the form component it is happening in the code block bellow excerpt from Form.php starting at line 631 $modelData = $this->normToModel($normData); $viewData = $this->normToView($normData); } } catc...
Hey! I dig into an issue with the form component. First, the use case: A customer would like to have a date form field splitted in a single text field for the date part and two dropdown fields for the hour and minute. For invalid input, it would like to get different error messages according to what was wrong. The...
1
[x ] I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Text field of this select field should not be cleared when its dropdown is opened. ## Current Behavior Text field is cleared ## Steps to Reproduce (for bugs) http://www.material-ui.com/#/components/...
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Bug related to v1 branch. How to add right icon to CardHeader component as on Expandable example in current stable version. ## Current Behavior No possibility to add right icon in CardHeader.
0
requested by @bartlomieu following our chat on the deno/lobby i'm opening an issue concerning, how can we do to write a plugin in pure C code ? for exemple: \-- hello.c #include <stdio.h> void deno_plugin_init(void){ puts("Welcome in the deno land !"); } void dino(void...
1
**Chris Beams** opened **SPR-8667** and commented * * * **Affects:** 3.0.6, 3.1 M2 This issue is a sub-task of #13297 **Issue Links:** * #13335 MANIFEST.MF: OSGi-Version Range too small for JDO in Library org.springframework.orm ( _ **"is duplicated by"**_ )
**Gerrit Brehmer** opened **SPR-7278** and commented The recommended way to develop REST-style webservices is the usage of `@ResponseBody` annotation and HttpMessageConverter instead of generating a model and a view (ContentNegotiatingViewResolver etc.). But there are some limitations, that make things hard to han...
0
### System Info transformers branch main ### Wrong Codes in examples/pytorch/**_no_trainer.py for step, batch in enumerate(eval_dataloader): with torch.no_grad(): generated_tokens = accelerator.unwrap_model(model).generate( bat...
### System Info When I finetuned the text classification model based on the glue no trainer script, I found a bug in our script. The URL is below: https://github.com/huggingface/transformers/blob/main/examples/pytorch/text-classification/run_glue_no_trainer.py#L525 When we use the acce...
1
**System information** * Have I written custom code (as opposed to using a stock example script provided in TensorFlow): Yes * OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10 * Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: N/A * TensorFlow ...
`tf.keras.layers.Concatenate` used to operate in a very straightforward way with the Keras functional API for building DenseNet-esque feedforward networks. The code below works in TF 1.13 but fails in 1.14, 2.0.0a0 and beyond. I also tested replacing the `Concatenate` layer with its functional alternative, `concate...
1
I am filing this issue per @sebmarkbage. See this bin as an example: http://jsbin.com/zehiqa/1/edit?js,output @syranide suggested adding an `onChange` to the `<input>` calling `this.props.toggleSelected`, then adding a `setTimeout` around `setState` inside `App.toggleSelected`. This approach works but seems unneces...
Now that flat bundles are mostly done (#9327), separating out followup work into a separate issue. * Should `ReactDebugCurrentFrame` be in isomorphic package? #9365 * Does `--extractErrors` fully work? It does update the file, but I'm still seeing "out of sync" console spam on rebuilds. * What happens if user ...
0
The script attached to the 2.0 docs which compresses and generates the javascript is pumping files as as "boostrap.min.js" instead of "bootstrap.min.js"
Using this framework has been great every time but I was wondering if you could put back the black/inverse colored labels/buttons in the latest bootstrap release? Thanks for your work and time, Jon Chiappetta
0
[ 16%] Linking CXX executable ../../bin/example_phase_unwrapping_unwrap cd /home/khurram/LIBRARIES/OPENCV34/opencv/build/modules/phase_unwrapping && /home/khurram/miniconda3/bin/cmake -E cmake_link_script CMakeFiles/example_phase_unwrapping_unwrap.dir/link.txt --verbose=1 /usr/bin/c++ -g -H -f...
##### System information (version) * OpenCV =>3.4.3 * Operating System / Platform => Ubuntu14.04 * Compiler =>cmake ##### Detailed description My project runs normal which contains other OpenCV module until I attach parts of code about dnn to load a YOLO model for object detection。 I use CMakeList.txt to g...
0
## Bug Report **For English only** , other languages will not accept. Before report a bug, make sure you have: * Searched open and closed GitHub issues. * Read documentation: ShardingSphere Doc. Please pay attention on issues you submitted, because we maybe need more details. If no response **more than 7 da...
### Which version of ShardingSphere did you use? 5.0.0-alpha ### Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy? ShardingSphere-Proxy ### Expected behavior I use XA transaction configuation, but the sharding-proxy does not send XA SQL to the physics node, the XA transaction is invalid. ...
0
This template is for miscellaneous issues not covered by the other issue categories. For questions on how to work with TensorFlow, or support for problems that are not verified bugs in TensorFlow, please go to StackOverflow. If you are reporting a vulnerability, please use the dedicated reporting process. For high...
### System information * **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Linux Ubuntu 16.04/Windows 10 * **TensorFlow installed from (source or binary)** : No * **TensorFlow version (use comma...
0
Over a year ago, we had the `kubernetes-build` job down <5m. It's now coming in at 30m. Some of that shot up really recently, too, looking at the build time trend: ![time- trend](https://cloud.githubusercontent.com/assets/4942464/16088152/95720012-32da-11e6-981c-410fa6a2abb1.png) It looks like sometime around #1038...
Version-Release number of selected component (if applicable): Server Version: version.Info{Major:"1", Minor:"4+", GitVersion:"v1.4.0-alpha.0.1310+8741217179860e", GitCommit:"8741217179860e9f0ce37997c810f61170a3672a", GitTreeState:"clean", BuildDate:"2016-07-07T06:54:04Z", GoVersion:"go1.6.2", Compiler:"gc", Platfor...
0
**Describe the bug** Hi Three Team, i am facing a great Perfomance drop while setting the correct color encoding for an cubemap used as scene.environment. The drop occours in: WebGLProgram @ three.module.js:18311 Thx Philipp **To Reproduce** _**Live example**_ Check out those Fiddles: 1. Wrong (default, ...
**Describe the bug** The introduction of `SRGB8_ALPHA8` in #22551 improved the render quality of sRGB textures, but also added significant synchronous conversion times that block the main thread. Every sRGB texture adds to the total blocking time, resulting in a poor user experience, especially when the scene contai...
1
CSS for Table is a little wonky when viewed in IE 11 most egregious issues are TableFooter and TableRow do not respect the padding or spacing * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Should be a similar if not identical look and feel across al...
Icon button color = unset, disabled = true -> disabled color Icon button color = primary | accent | contrast, disabled = true -> primary | accent | contrast color * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior The disabled color should be appl...
0
_Original tickethttp://projects.scipy.org/numpy/ticket/414 on 2007-01-08 by trac user lbolla, assigned to unknown._ [[BR]] Wrong results are given by subtract.reduce and divide.reduce, with respect to the standard function reduce. Take a look at this piece of code: * * * from numpy import * x = arange(4) ...
_Original tickethttp://projects.scipy.org/numpy/ticket/413 on 2007-01-08 by @rkern, assigned to @teoliphant._ In [21]: import numpy In [22]: numpy.subtract.reduce(numpy.arange(5)) Out[22]: 2 In [23]: import Numeric In [24]: Numeric.subtract.reduce(Numeric.arange(5)) ...
1
## 🐛 Bug Hello, I’m running a GAN model with some second-order regularization. The training went well at the beginning and the loss decreased. However, after a random period of time, ranging from 3000-8000 updates, the segfault occurs and the training was terminated automatically. ## To Reproduce It is hard for m...
## 🐛 Bug Hello, I’m running a GAN model with some second-order regularization. The training went well at the beginning and the loss decreased. However, after a random period of time, ranging from 3000-8000 updates, the segfault occurs and the training was terminated automatically. ## To Reproduce It is hard for m...
1
##### System information (version) * OpenCV => : 3.4.1: * Operating System / Platform => :MacOS High Sierra 10.13.6: * Compiler => :Xcode 10.0: ##### Detailed description command prompt : make -j2 Scanning dependencies of target opencv_ximgproc [ 41%] Building CXX object modules/ximgproc/CMakeFiles/opencv...
##### System information (version) * OpenCV => 4.1.2 dev * Operating System / Platform => Mac OS X 64 Bit 10.15.1 * Compiler => Python 3.6 ##### Detailed description Hello all, I recently retrained a model and wanted to run it using OpenCV's DNN module. However, when I try to run the file, I keep getting thi...
0
There is a lot of semi-duplication / differences in the `Series()` and `DataFrame()` methods. Maybe it's worth taking a look through them and regularising. Fwiw, I prefer `tostring` vs. `to_string` Also, would be nice to have `tohtml` on things, though expanding it is beyond the scope of this.
I've needed this feature 3 or 4 times recently. The way I've typically done it is by making a new dataframe, concatenating the many dataframes after renaming their columns to identify to which dataframe they originally belonged, dropping all NA from the concatenated dataframe, and then splitting up this dataframe a...
0
**Glide Version** : 3.8.0 **Integration libraries** : none **Device/Android Version** : any **Issue details / Repro steps / Use case background** : I try to load a gradient, which is defined as `my_gradient.xml`: <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.andro...
## Idea Glide.with(this).load(bitmap).into(imageView); Glide.with(this).load(drawable).into(imageView); This looks weird compared to `ImageView.setImageBitmap(bitmap)`, but if you need animation and error handling (null bitmap), the above could become an easy to use, fire and forget, go-to line in...
1
1. Load stocks app. 2. Wait for it to load completely. 3. Tap a row. 4. Wait for the transition to complete. 5. Hit back. `[StockRowPartKey AAPL:arrow]` is seen twice somehow.
There should be real way to execute code in background. I know that this is a duplicate. But it is FFF***ing hard to create a simple alarm clock using a Framework that "almighty Google" supports.
0
The plotting functions on DataFrames always have grid=True. This overrides user settings in matplotlibrc. If you have to created a desired default plot style with the rc file, you want every plot to show with this style unless otherwise specified. Because pandas overrides this setting you have to manually set the ...
When using df.plot() to creat a simple line chart from a dataframe, the expected behavior is that, if no 'grid' keyword is passed, the plot will default to the matplotlib 'axes.grid' rcParam setting to determine whether to show a grid or not. However (in 0.16), the grid is always being shown, regardless of the matplo...
1
## Feature Request **For English only** , other languages will not accept. Please pay attention on issues you submitted, because we maybe need more details. If no response anymore and we cannot make decision by current information, we will **close it**. Please answer these questions before submitting your issue....
Please answer these questions before submitting your issue. Thanks! ### 2.0.0.M1 ### 各节点都更新成功 ### 执行操作后,无响应 ### 表t_order ( ORDER_ID INTEGER not null, USER_ID INTEGER not null, STATUS VARCHAR2(50) ) 分片键使用USER_ID,切分至2个数据库实例中,并在2个数据库实例中分别插入order_id=1234数据记录。 并开启多个线程进行更...
0
When making higher order functions that return functions, type parameters are not preserved in return type. Notice in the following example how `identityM` has the generic type parameter `A` changed into `{}`, resulting in a loss of type safety in the rest of the code. Ideally `identityM` would have the type `<A>(a:...
Motivating example (one of many): function compare<T>(lhs: T, rhs: T): boolean { return lhs === rhs; } if(compare('1', 1)) { // Expected: Error -- I made 'compare' generic for a reason! /* ... */ } ### Proposal When generic type inference performs its Best Common Type ope...
1
// https://msdn.microsoft.com/en-us/library/windows/apps/hh700334.aspx tempFolder.createFileAsync("tempfile.txt", Windows.Storage.CreationCollisionOption.replaceExisting) .then(function (tempFile) { // The createFileAsync call succeeded, so start the download operation. ...
I have the following code: query(id: number) { return this.$http .get('/api/Entity/' + id) .then(function (data) { return data.data; // (a) }); // (b) } When I type the semi-colon at point (a)...
1
I'm trying to get TensorBoard working with Keras. It looks like I'm able to run an initial model with tf (1.12.0) and keras (2.1.6-tf). I have some simple code. Listed below: %matplotlib inline from io import StringIO import numpy as np import pandas as pd import tensorflow as tf...
TensorBoard in Keras crashes deep in the callbacks for the end-of-epoch. Here's a simplified version of the code: # The Code import pandas as pd import keras from keras.models import Sequential from keras.layers import Dense class ToyNet (): def __init__(self, run=1, layer...
1
Discussed in #1818 and submitted a PR in #5140. Because the team is rewriting the compiler. The PR cannot be rebased. cc @tbosch class MyClass { constructor(@Attributes() atts: Map<string, string>) } //Originally, @Attribute('foo') returns Map.get('foo'), now support @Attribute() to retur...
In the existing material design library for Angular 1, there are some components that use a concept of "responsive attributes". Say you have a component like `md-grid-list`, which has an attribute `cols`. You can specify the value conditionally on screen size, for example: cols-sm="2" // Small scre...
1
**Mathieu Larchet** opened **SPR-1718** and commented When configuring a PropertyPlaceHolderConfigurer for external property file, ${xxx} parsing fail for abstract beans. <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="location"> <va...
**Radim Tlusty** opened **SPR-6379** and commented it's probably related to #10432. I think, that the issue is in DefaultBeanDefinitionDocumentReader class. In 3.0.0.RC1 there was used call 'ResourcePatternUtils.isUrl(location)', in 3.0.0.RC2 it's changed and I think, that it's related to this correction. When the...
0
Hi folks, Wondering if someone can please help with this import error on a fresh install. Background: Recently started a new conda environment with a couple of basics like jupyter, numpy, scipy. I'm using MacOS High Sierra 10.13.4, and python3.7 The specific error is: ------------------------------...
## Steps to reproduce: import functools from absl import app import jax from jax.experimental import maps from jax.experimental.pjit import PartitionSpec from jax.experimental.pjit import pjit import numpy as np jax.config.update('jax_parallel_functions_output...
0
I am getting this error when printing an array or a sparse matrix: Virals-MacBook-Pro 05:50:20 {master} ~/julia$ ./julia _ _ _ _(_)_ | A fresh approach to technical computing (_) | (_) (_) | Documentation: http://docs.julialang.org _ _ _| |_ ...
On `2e56f22` and Mac OS 10.9 I get: $ julia -p 2 ERROR: premature end of integer: "9009" in error at error.jl:21 in parseint_nocheck at string.jl:1476 in parseint at string.jl:1515 in parse_connection_info at multi.jl:1076 in read_worker_host_port at multi.jl:1009 in r...
1