text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
# Environment Windows build number: 10.0.18956.1000 Windows Terminal version (if applicable): 0.3.2171.0 Any other software? No other software relevant I believe # Steps to reproduce 1. Configure a custom `tabTitle` for cmd or PowerShell shells in the profiles.json file, e.g.: ...
# Description of the new feature/enhancement Available to download outside of Microsoft Store # Proposed technical implementation details (optional) Company policy blocked access to Microsoft Store and therefore there is no way to download it. An alternative way to download the windows terminal
0
### Describe the issue: According to the documentation I should be able to create a complex number with `numpy.cdouble(real=1.0, imag=2.0)` but this returns TypeError: function takes at most 1 argument (2 given) Same applies to `complex_` and `complex128`, since they are all the same as far as I...
### Describe the issue: The resulting order of np.argsort appears to be incorrect and does not match with the order returned by x[argsort_idx]. Specifically, when sorting in descending order, the highlighted number should be in position 11, not 9. ![Screenshot 2021-12-13 at 10 49 06](https://user- images.githubus...
0
My python flask : @app.route('/insert/item', methods=['POST']) def insert_item(): return "" In html I try to post a request to /insert/item : fetch('/insert/item', { method: 'POST', headers: { 'Content-Type': 'ap...
With the following example: from flask import Flask app = Flask(__name__) @app.route('/', methods=['POST']) def hello_world(): return 'Hello World!' if __name__ == '__main__': app.run() When you set the request body to `{}` with Postman or any H...
1
##### Issue Type: Bug Report ##### Ansible Version: Ansible >= 1.8.0 ##### Environment: N/A ##### Summary: Ever since `313f26f`, if a variable is set in `group_vars` and overridden via `--extra-vars`, the value from `group_vars` ends up being used when the variable is referenced in role variables. ##### Steps...
If I set a variable in a role which refers to another variable, then override the second variable with `--extra-vars` the original variable is unchanged. Here's an example: cat <<'EOF' > playbook --- - hosts: 127.0.0.1 connection: local gather_facts: false roles: ...
1
**TypeScript Version:** 1.7.5 **Code** import {HTTP_PROVIDERS} from 'angular2/http'; // <-- one quotes ! import {Component} from "angular2/core"; import {Http} from "angular2/http"; // <-- two quotes ! @Component({ templateUrl: 'tst.html', viewProviders: [HTTP_PROVID...
Using Angular2-beta0 So I have this TS file import { Component, View } from 'angular2/core'; import { Router } from 'angular2/router'; import {AuthCanActivate} from "../../common/auth/auth.canactivate"; import {ComponentInstruction} from "angular2/router"; import {CanActivate} from "an...
1
Hi. I want to set a proxy for all of the connections of my app. how can I do this? actually, I want to set proxy for firebase.
## Steps to Reproduce * Open the example project flutter_gallery * Change the timer duration that mimics a latency interval for the indicator to be shown to 10 seconds<like the below: **Future _handleRefresh() {** final Completer completer = new Completer(); new Timer(const Duration( **seconds: 10** ), () ...
0
The error is that it occured in npm itself
In Termux(android app) npx create-react-app myapp failed Installation aborted All the newly created directories were rolled back and deleted You can see Error log below: 2021-09-16T10_09_09_239Z-debug.log
1
Hi y'all I'm using Next.js V3.0.3 and I'm having problem on IE11 with the following error; Object doesn't support property or method 'assign' TypError: Object doesn't support property or method 'assign' ## Steps to Reproduce (for bugs) 1. Create a next.js app 2. use `{...oneObject, ......
Getting large error (printing all of CSS used in `<style jsx global>`) in web console. Warning: Text content did not match. Server: " ...(css)... I _think_ this is causing FOUC, so there is a flash of unstyled content followed by a second later the actual styles. This is coming from a librar...
0
celery failed to run the command in subprocess. when restarting the celery worker the command is running in the background. the subprocess is working without calling as celery task # Checklist * I have verified that the issue exists against the `master` branch of Celery. * This has already been asked to t...
## Steps to reproduce celery 3.1.25 with redis celery worker -A celery_worker.celery --loglevel=info --logfile=/tmp/celery.log --beat from celery.schedules import crontab CELERYBEAT_SCHEDULE = { 'every-monthly-blog-digest': { 'task': 'app.users.views.monthly_blog_digest',...
0
### Version 2.5.17 ### Reproduction link https://jsfiddle.net/jcatfour/g6ykuwhe/ ### Steps to reproduce Try to change the dropdown value. The text displayed in the select box will almost always stay as "Today", despite the value changing, though it SOMETIMES will actually change to the correct value. Again, as y...
### Version 2.5.16 ### Reproduction link https://jsfiddle.net/azpxdt3a/1/ ### Steps to reproduce Try select any item except first one. ### What is expected? Item selected. ### What is actually happening? always shows first item. Once any item except first is selected, it's no more possible to select first on...
1
**Nicolas FABRE** opened **SPR-6334** and commented Using org.springframework.jdbc.core.JdbcTemplate.batchUpdate(String sql, BatchPreparedStatementSetter pss), if the number of rows I want to insert (update or delete) is greater than the batch size I define in the BatchPreparedStatementSetter, the rows after the ba...
**Yanming Zhou** opened **SPR-8213** and commented I have the same problem with http://forum.springsource.org/showthread.php?t=105476 * * * **Affects:** 3.0.5 **Reference URL:** http://forum.springsource.org/showthread.php?t=105476 **Issue Links:** * #9610 Doc: `@Autowired` not working in BeanFactoryPostProc...
0
### System information * **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : Y * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Linux Centos 7 * **TensorFlow installed from (source or binary)** : Binary * **TensorFlow version (use command below)...
When running tensorboard on Mac OS X currently, you have to specify the absolute directory to the logs path in order to get it to run. tensorboard --logdir /Users/myusername/Code/tensor-play/tf-play/linear_regression/logs/events It should accept relative paths (like most unix commands) for convenience...
0
It looks like the `compatibility` mode is broken in 1.25.2 https://deno.land/manual@v1.25.2/node/compatibility_mode > deno run --unstable --compat --allow-read --allow-env ./test.f.cjs PS C:\github.com\functionalscript\functionalscript> deno run --unstable --compat --allow-read --allow-env ./test.f...
`Deno.test({ name: "a", ignore: undefined, fn() {}})` works in Deno 1.32.4 and breaks in Deno 1.32.5 /m/a/P/g/d/x ❯❯❯ deno test test.ts Check file:///mnt/artemis/Projects/github.com/denoland/x/test.ts Uncaught error from ./test.ts FAILED ERRORS ./test.ts (uncaught error) ...
0
* VSCode Version: Version 0.10.10 Commit `5b5f4db` Date 2016-03-07T10:30:20.458Z Shell 0.35.6 Renderer 45.0.2454.85 Node 4.1.1 * OS Version: Ubuntu Linux Steps to Reproduce: 1. make new dir; `code .`; create new foo.js file 2. add code: if (!varName) In themes other than the d...
* VSCode Version: 0.10.11 * OS Version: Windows 10 1511 Steps to Reproduce: In a typescript file, have let varName = ""; varName = "a"; The issue is that the 'var' substring in `varName` is highlighted the way the `var` construct would ordinarily be.
1
Why is hidden-xs on a span adding display-block.
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
Can i have fix please **Originally posted by @F0o0De inhttps://github.com/F0o0De/coinigyV2/issues/1**
Remove all my api’s and reset all my accounts and balance to zero. Since, I was bugged and hacked. Thank you I really appreciate all the hard work and effort.
1
In Mac OS X when you paste a minified file like jquery.min.js or bootstrap.min.css Atom crashes or stays unresponsive for a minute or two.
May be a known issue, but files with large embedded images such as github's public/enterprise/maintenance.html will often cause Atom to freeze (MacVim actually struggles as well). Seems some of them (github's public/maintenance.html for instance) work fine when in soft wrap mode, or until you move your cursor to the...
1
##### System information (version) * OpenCV => 3.1 * Operating System / Platform => macOS 10.12 * Compiler => gcc * Matlab => Matlab_R2016b ##### Detailed description Cannot find Matlab automatically, because `OpenCVFindMatlab.cmake` looks for a wrong name. ##### Solution Change in `OpenCVFindMatlab.cmak...
##### System information (version) * OpenCV => 3.1 * Operating System / Platform => OS X El Capitan 10.11.3 * Compiler => Xcode 7.3.1 - Apple LLVM version 7.3.0 (clang-703.0.31) ##### Detailed description This line in OpenCVFindMatlab.cmake does not find an existing Matlab installation: file(G...
1
### Bug summary The discrete normalizer produces duplicated labels for the same tick and the colorbar is wrong. ### Code for reproduction import numpy as np import matplotlib.pyplot as plt import matplotlib.colors as mcolors import matplotlib.ticker as mticker fig, ax = plt.subpl...
Applies to version 1.4.2 When using one of the GUI backends (tested with Tk and Qt using IPython) plot markers are only drawn if `markeredgecolor` is not set to 'none' and `markeredgewidth` is nonzero. So plot(linspace(0,2), linspace(0,2)**2, marker='o', markeredgecolor='blue', marker...
0
I would like to extend the `jax.checkpoint` aprroach to implement binomial checkpointing for computing the `vjp` of a time stepping loop the performs computation in step(): def timestep(A,N): for i in range(N): A = step(A,i) The`remat` approach, as I understand it, generates a...
It would be great to have a version of lax.scan used a recursive gradient checkpointing (e.g., "binomial checkpointing") that allows for differentiating through long time series with logarithmic time/space costs. In principle this could be built on top of the experimental `remat` decorator: #1749
1
**Jwala Kompalli** opened **SPR-5560** and commented Hello, I have an existing application usign spring version 1.2.6 deployed and perfectly working on on Sun server 8.1. When I am trying to deploy the same applciation on Sunserver 9.1, I am getting the below exception: sun- appserver9.1|javax.enterprise.system...
**Christian Leskowsky** opened **SPR-3563** and commented See http://opensource.atlassian.com/projects/spring/browse/SPR-2628 for more history. Here's the exception I'm seeing in Tomcat 5.5.23 (Websphere 6.1/DB2 running our application fails similarly)... exception org.apache.jasper.JasperException: org.apache....
1
If the output of a python autograd function is a view and gets modified in- place with a torch.no_grad block later, the python autograd function's backward function doesn't get called and instead an autograd backward pass (through the forward function) runs. This results in incorrect behavior, especially when the for...
## 🐛 Bug Gradients aren't backpropagated when all three conditions are met: 1. Use `torch.utils.checkpoint`. 2. Place `nn.InstanceNorm?d` right before any in-place module such as `nn.ReLU(inplace=True)`. 3. The checkpoint returns the result of the in-place module. ## To Reproduce import torch...
1
We seem to have broken compatibility with fortran-interface-only BLAS libraries. Specifically, we use `cblas_zdotc_sub` and `cblas_cdotc_sub`, which don't exist in some BLAS implementations such as CentOS 7's default `blas` package. Is this something we want to work around, revert, or just live with?
I'd like to propose two added functions to the `merge` function. I'm not sure if this needs to be in core language or somewhere like in DataFrames, but as long as `merge` is in core, seems reasonable to put here (though input welcome!). In particular, I'd like to propose the following two options be offered as optio...
0
[Enter steps to reproduce below:] 1. ... 2. ... **Atom Version** : 0.198.0 **System** : Unknown Windows Version **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:...
I right-clicked on a folder in the tree view **Atom Version** : 0.194.0 **System** : Windows 7 Entreprise **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Fu...
1
I need to detect taps on a TextField. I'm trying to do this with GestureDetector, but it doesn't seem be working: GestureDetector( behavior: HitTestBehavior.translucent, onTap: () { print('hi'); }, child: TextField(), ), Nothing is printed when tapping. Note that I...
## Add onTap gesture on a textField onTap gesture using GestureDetector class is working for every element except for the textField type. How can i use onTap gesture on textfield element?
1
### Problem description Tooltip is displaying under the table rows (on z-axis) ### Link to minimally-working code that reproduces the issue http://www.webpackbin.com/Eyxr9TOLKz ### Versions * Material-UI: 0.17.0 * React: 15.0.2 * Browser: any, checked on the latest versions of firefox and chrome. (Google C...
When trying to view an IconButton's tooltip while contained in a table cell it seems to be hidden by an overflow of some kind. ![](https://camo.githubusercontent.com/ab6b87235f3953c59cf549790281672c785cb444868e8f0ae2d1aaa7bf640e82/68747470733a2f2f6431376f793176686e61783166372e636c6f756466726f6e742e6e65742f6974656d73...
1
Hi. I'm trying to integrate Firebase Auth with Flutter. For that I need to register my Android App with Firebase. For Google Sign-In, I require the SHA-1 Certificate of my Android App. On a regular app, this used to be possible by going to the **Gradle Panel** on the right hand side and executing the **`signingRepor...
@UwaisWisitech commented on Fri Jan 04 2019 I need the SHA-1 key of my Flutter App for Google login. Previously, its possible in Gradle Panel on executing the signingReport Gradle. But there is no Gradle Panel in Flutter. * * * @zoechi commented on Fri Jan 04 2019 Please check https://stackoverflow.com/questions...
1
With an iterator that returns a borrowed reference to its contents, it’s possible to hold the reference longer than the reference is valid. In particular, if the iterator changes its internal state, the new state can be observed via the saved reference. Check it out: fn crash_please() { let mut...
(Sorry for the bad title) trait Fun { type Output; fn call<'x>(&'x self) -> Self::Output; } struct Holder { x: String } impl<'a> Fun for Holder { type Output = &'a str; fn call<'b>(&'b self) -> &'b str { &self.x[] } } This c...
1
Basically this is a straightforward feature request.
Opening this as a response to https://stackoverflow.com/questions/44490622/disable-a-text-edit-field-in- flutter Original question: "I need to disable TextFormField occasionally. I couldn't find a flag in the widget, or the controller to simply make it read only or disable. What is the best way to do it?"
1
Just found out about this dont know if you consider it as a bug or not let foo, bar let bim = boum [ foo, bar ] = ['foo', 'bar'] compile to 'use strict'; var foo = undefined, bar = undefined; var bim = boum[(foo, bar)] = ['foo', 'bar']; whereas ...
This code: const foo = "foo"; function foobar() { ...
1
I added my own custom protocol, which i create a BrowserWindow from using `mist://interface`: protocol.registerHttpProtocol('mist', function(request, callback) { var call = { url: (request.url.indexOf('mist://interface') !== -1) ? global.interfaceAppUrl + request.url.replace('m...
some webpage omit the `http` prefix to minify the page, like `http://taobao.com` electron now can not recognize this kind of url, and will log error like this: [22608:0521/234915:INFO:CONSOLE(0)] "Not allowed to load local resource: file://g.alicdn.com/kg/offline/3.0.1/index-min.js?t=20131121234724.j...
1
As part of #2137 and #456 we have added the crate version to every exported symbol, but not quite in the correct way. Right now the final part of the path used for the symbol ends with `"V" + vers`, which gets passed through the mangler. The original design called for `@vers` but the `@` isn't a valid symbol on all ...
### Status as of 2020-04-18 We intend to stabilize the saturating-float-casts behavior for `as`, and have stabilized unsafe library functions that handle the previous behavior. See #71269 for the latest discussion on that stabilization process. ### Status as of 2018-11-05 A flag has been implemented in the compile...
0
Example: I put a ImageView, set `scaletype="center"` (will not scale), but when I use Glide.with(getApplicationContext()).load(url).placeholder(R.drawable.ic_default).into(imageV); seem that the scaletype been changed, because I found that the placeholder icon been filled the whole imageview size.
Hi I am displaying images in a recyclerview via Glide. The images are different widths and heights and are being pulled from the server. The images all display fine until the views begin to be recycled. The image view has `android:layout_width="wrap_content" android:layout_height="wrap_content"` I have tried to sor...
0
### System info * Playwright Version: [v1.1.36.0] * Operating System: [Linux amd64] * Browser: [All, Chromium, Firefox, WebKit] * Other info: playwright Java and TestNg framework Hi team, Playwright failed to find the locator in the Selenium grid docker setup. It works fine till navigation after it thro...
### System info * Playwright Version: [v1.32.2] * Operating System: [macOS 13.3] * Browser: [WebKit] * Other info: ### Source code **main.js file** const { webkit } = require('playwright'); const test = async () => { const context = await webkit.launchPersistentContext('path...
0
On IRC, @bjz and @Kimundi pointed out some infelicities with how rustpkg handles the test crate. kimundi writes: "I think there are 3 ways to have the test suite of a rustpkg package work: in-crate by compiling the crate with rustc --test, out-of-crate by having a test.rs file that 'extern mod's the crate, and hybri...
This is a tracking issue for the unstable `ref_slice` feature in the standard library. These functions seem fairly innocuous but it's also somewhat questionable how useful they are. They're probably ready for either stabilization or deprecation as-is. cc @nikomatsakis
0
A. All `@assert`s should be exceptional, and since it's a macro already, it should outline (`@noinline`) automatically, as was manually done here (to avoid 3x speed regression): https://github.com/JuliaLang/julia/pull/34237/files B. I was looking into optimizing factorial myself, and think in general throws sho...
We're increasingly seeing this kind of manual optimization in Base code: function f(...) check_cond() || throw(SomeError(...)) end rewritten as @noinline throw_some_error(...) = throw(SomeError(...)) function f(...) check_cond() || throw_some_error(...) ...
1
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 7....
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details Clicking on a Slack update notific...
1
Would anyone be interested in a PR for bundling ES6 modules into single IFFE- scoped files? (a la rollup.js) This would allow bundling for those who don't wish to rely on AMD/System, and remove at least one build step in many scenarios. (Apologies if duplicate. Search/FAQ didn't come up with anything. If additional ...
Relates to #3089, #2743, and #17. # Goals * Bundle _js emit_ for TS projects while preserving internal modular structure (complete with ES6 semantics and _despite_ being concatenated into a single file), _but not exposing it publicly_ and wrapping the chosen entrypoint with a loader for the desired external modul...
1
If I want a terminal for vs code, inputBox is not well for input.
It would be great if vscode has integrated terminal feature refer vim or atom https://atom.io/packages/term3 I saw this suggestion pending in uservoice(https://visualstudio.uservoice.com/forums/293070-visual-studio- code/suggestions/7752357-integrated-terminal) and repost here since it has specific repo
1
Source is very simple. // // static F : Box< Fn(i32) -> i32 > = Box::new(move |x:i32| x); fn main() { } // // this code generate fault as follows. src\main.rs:2:34: 2:58 error: function calls in statics are limited to struct an d enum constructors [E0015] src\main.rs:2 static F : Box<Fn(i32) -> i32>...
If I try to create a `const &'static Fn(u32)`, I trigger an ICE: error: internal compiler error: unexpected panic note: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports note: ...
1
##### ISSUE TYPE * Feature Idea ##### COMPONENT NAME module lineinfile ##### ANSIBLE VERSION 2.3.0.0 --- - hosts: 127.0.0.1 tasks: - name: lineinfile: dest: foo.txt regexp: "msgid aaaa\nmsgstr bbbbb\n" line: "msg...
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME Role dependencies ##### ANSIBLE VERSION ansible 2.2.0.0 config file = /home/kyle/.ansible.cfg configured module search path = Default w/o overrides ##### CONFIGURATION [defaults] inventory = ~/.ansible/hosts ...
0
# Environment Windows build number: 10.0.18362.295 Windows Terminal version: 0.4.2382.0 Other Software: WSL1 Ubuntu 18.04 # Steps to reproduce Open Windows Terminal. Open new Ubuntu tab. # Expected behavior Tab title should be the profile name # Actual behavior Tab title still s...
# Environment Microsoft Windows [version 10.0.18362.175] Terminal Version:0.2.17150 Windows build number: [run "ver" at a command prompt] Windows Terminal version (if applicable): Any other software? # Steps to reproduce # Expected behavior # Actual behavior After the cmd window...
0
Describe what you were doing when the bug occurred: 1. Open the Profiler after playing a while with some React Application 2. Try to reach some snap with the player 3. This happens * * * ## Please do not remove the text below this line DevTools version: 4.6.0-6cceaeb67 Call stack: at j (chrome- extension:/...
### Describe what you were doing when the bug occurred: 1. I did profiling on a list, that gets updated on each pagination api call. 2. Once the profiling was done, I moved around in the Profiler to view the Flamegraph 3. Moving to second capture, the Profiler crashed. **DevTools version** : 4.6.0-6cceaeb67 ...
1
The Geometric and Harmonic means have two sets of test cases in `test_stats`. Ideally, the tests for related functions should occur in one place, not spread across multiple suites. I think these tests should be reviewed and combined into a single test suit where possible. For reference, the tests covering the geomet...
Currently, `scipy.stats` has a function `variation`, which computes the coefficient of variation (`std/mean`). However, there is a closely-related function called the Fano factor (http://en.wikipedia.org/wiki/Fano_factor). While the coefficient of variation is `std/mean`, the Fano factor is `var/mean`. Different ran...
0
I have 3 screens connected to my PC, 1 on the internal graphic card, 2 on external USB-C dock. When I move the Terminal windows from screens on my external to the screen on my internal GC, the program crash (Version: 0.6.2951.0) : Exception non gérée à 0x00007FF8FEF42DC0 (Windows.UI.Xaml.dll) dans WindowsTerminal...
# Description of the new feature/enhancement I like having my console sessions start with a dump of pertinent version information. I was hoping to find an easy way to get the version info of the Windows Terminal session. I'd add it to my `profile.ps1`: "- posh-git version/path: $($m = Get-Module posh-...
0
#### Description Please refer to the link below https://stackoverflow.com/questions/49848932/sklearn-load-svmlight-file- overflowerror-python-int-too-large-to-convert-to-c-lo My data format is libsvm below. " label <feature_index>:<feature_value>". The data type of feature_index is uint64. I got the error here F...
#### Description I am using scikit-learn (0.19.1) in the following setup: Ubuntu 17.10 (x86_64) with numpy-1.14.1 and scipy-1.0.0 When I tried loading a big libsvm file (1696462087 rows) like this: from sklearn.datasets import load_svmlight_file X_train, y_train = load_svmlight_file('/home/user_n...
1
##### Issue Type: I'm getting "ERROR: Syntax Error while loading YAML script," when a tasks/main.yml file in my role doesn't start with '---', this is optional in YAML and works in previous versions. ##### Ansible Version: ansible 1.6 (devel `5f3ea75`) ##### Environment: Ubuntu 12, 13 and Gentoo ##### Summary: ...
##### ISSUE TYPE * Bug Report * Documentation Report ##### COMPONENT NAME apt module ##### ANSIBLE VERSION ansible 2.2.3.0 config file = /home/heartsucker/code/freedomofpress/securedrop/ansible.cfg configured module search path = Default w/o overrides ##### CONFIGURATION ...
0
Copying comment from #4887 to a new issue for discussion purposes: While testing pandas-master, hit a method not in the new groupby dispatch whitelist: `value_counts` (on a `SeriesGroupBy` object). Another possible addition: `shift`, as used in this SO answer. Tried to generate a list of blacklisted methods for Dat...
I am not sure anymore if `DataFrame.pivot` actually supports multiple columns to set as `index`/`columns` (it should), but in any case this error is very confusing: In [1]: df = pd.DataFrame({'lev1': [1, 1, 1, 1,2, 2, 2,2], 'lev2': [1, 1, 2, 2, 1, 1, 2, 2], 'lev3': [1, 2, 1, 2, 1, 2, 1, 2], 'values': r...
0
Safari throws the following error on page load. Chrome + Firefox work fine. [Error] TypeError: undefined is not a function (evaluating '$__2.next()') from (traceur-runtime.js, line 2738) values (angular2.js, line 4710) _createListOfBindings (angular2.js, line 23646) reso...
To repro: Load the hello world example in safari. Stack trace: https://gist.github.com/jteplitz602/26f330e39b60d99a69d3
1
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior npm install next should work without any errors ## Current Behavior When running npm install next I get the following error $ npm install --save next npm WARN deprecated npmconf...
* I have searched the issues of this repository and believe that this is not a duplicate. ## Overview React 16.3 will include a utility for ref forwarding called `React.forwardRef`. Its RFC has been ratified and the initial implementation is available in alpha builds of 16.3. The `typeof` objects returned by...
0
#### Currently, pd.DataFrame does not have a `.nunique` method `DataFrames` have various aggregation methods that they share with `series`, examples being `.sum`, `.count` etc. Likewise with `DataFrame.groupby`-objects. In many cases, a `.nunique` would be useful as on `DataFrame` and `DataFrame.groupby`-object...
When exploring a data set, I often need to `df.apply(pd.Series.nunique)` or `df.apply(lambda x: x.nunique())`. How about adding this as `nunique()`-method parallel to `DataFrame.count()` (`count` and `unique` are also the two most basic infos displayed by `DataFrame.describe()`)? I think there are also use cases for...
1
In addition to "launch" and "attach" we should support any request, e.g. "listen" (php-debug uses a "listen" model).
The actual code editor should be extracted and made into its own separate project outside of VSCode itself. The editor would be massively useful in a variety of other projects that need to embed an editor and many could benefit from this separation. It would also provide a nice 3rd alternative to the other two well-e...
0
# Environment Windows build number: Microsoft Windows [Version 10.0.18362.175] Windows Terminal version (if applicable):0.0.1.0 # Steps to reproduce Login to WSL, use nano to edit a file, mark a text that has at least a linebreak, and paste it on another line. For example in my local Deb Mirror, i mark this ![...
I can't switch to Chinese input method after update, current version is 0.3.2142.0.
0
by **izmalych** : What steps will reproduce the problem? package main import ( "fmt" "json" ) func main() { o := &JsonObject{ 1, 2, 3 } b, e := json.Marshal(o) if e != nil { panic("json panic") } ...
by **kullmann.daniel** : Go to tour.golang.org. Enter following code: package main import ( "fmt" "time" ) func main() { fmt.Println(time.Now()) } Run the code. It prints: 2009-11-10 23:00:00 +0000 UTC This a minor is...
0
While trying to benchmark JuMP solvers on M1, we found that JuMP requires a compiler feature that is apparently not available on aarch64: $ julia --project=. bench.jl ERROR: LoadError: cfunction: closures are not supported on this platform Stacktrace: [1] _set_callback @ ~/.julia...
Hi! I've discovered that many (runtime) performance issues with broadcasting are caused by inlining not working with the highly recursive broadcasting code. It turns out that defining more methods can actually help here. Here is a piece of code you can evaluate in REPL to see that: struct RecursiveInl...
0
popover gets misplaced from its target icon when screen is rotated
Chrome for Mac. Taken from the docs. To repro: 1. Zoom at 90%. (ctrl + `-`) 2. Notice the tooltip arrow has this line of whitespace. ![screen shot 2013-08-14 at 18 41 06](https://camo.githubusercontent.com/93eb174dea23b026bfdf6cef14edbda779f157d8875daf4b673b275af14a3c98/68747470733a2f2f662e636c6f75642e67697468...
1
s = pd.Series(x) m = s.groupby().count() # does not work m = s.groupby(s.values).count() # works In `https://github.com/pydata/pandas/blob/master/pandas/core/generic.py`, `by=None` should be corrected to just `by` as `None` always leads to an error. def groupby(self, by=No...
#### Code Sample, a copy-pastable example if possible pd.read_sql( ''' SELECT CountryCode, ShortName,LatestPopulationCensus FROM Country WHERE Region = 'South Asia' UNION SE...
0
Right now we need to cast to floats in order to print them out.
This code I used to compile fine with a version of Rust that was about 9 days old. All the comments in the code have been there before, now the code fails to compile at the lines `assert_eq!(Foo::id(), "FOO");` and `assert_eq!(Bar::id(), "BAR");`: #[test] fn type_aliases() { struct Foo { ...
0
I assumed `macroexpand` is supposed to produce the same code whether or not if it expands all the macros at once or sequentially expands macros with `recursive = false` option. Here is a MRE where `macroexpand(m, ex; recursive = true)` produces valid code while sequential application of `macroexpand(m, ex; recursive...
julia> macro foo() f = esc(:f); :(let $f(x) = x; $f(3); end) end @foo (macro with 1 method) julia> @foo ERROR: syntax: invalid function name "(escape f)" julia> macroexpand(:(@foo)) :($(Expr(:error, "invalid function name \"(escape f)\""))) It looks li...
1
_Original tickethttp://projects.scipy.org/scipy/ticket/1764 on 2012-11-03 by trac user theyoud, assigned to @pv._ Interpolation (and spline) functions, such as interpolation.interp1d, currently require the array of independent variables (x values) be given in ascending order. These functions could be enhanced to al...
### Describe your issue. Hi all, Our Valgrind CICD run broke after upgrading to Scipy >= 1.9.2 from 1.9.1. The error does not occur without valgrind. Due to the valgrind involvement making an MRE is though. If needed I can create a MRE repo and add a maintainer. Some additional info: * OS: Ubuntu-latest * ...
0
Docker does a credential check when pulling images, but not when using them. It will let you run an image that is already pulled even if you don't present credentials. That is reasonable behavior from the standpoint of the docker tool since it is not trying to be multi-user. However, it makes it hard to make Kubern...
# Problem statement Some images require pull secrets in order to be used by the Kubelet. Pull secrets are per namespace. Imagine the following scenario: 1. If a pod in namespaceA has valid pull secrets for `foo/bar:stable`, when it is scheduled to a given node, the Kubelet uses the pull secrets to pull the image ...
1
![screenshot 2019-02-11 at 21 32 27](https://user- images.githubusercontent.com/1692009/52613881-8e34f580-2e44-11e9-8331-5f7210e34b2b.png) https://github.com/JuliaLang/julia/blob/master/doc/src/manual/mathematical- operations.md#vectorized-dot-operatorsid-man-dot-operators
I suggest changing the monospace font used by the PDF documentation, so the special Unicode strings displayed in e.g. Manual -> Strings -> Unicode and UTF-8.
1
##### System information (version) * OpenCV => 4.0.0 * Operating System / Platform => Android * Compiler => Cmake ##### Detailed description opencv/opencv_contrib#490 as per optimisation related changes implemented for x86 processor with the use of OpenCL and MKL Blas. Can i optimise the same dnn module with...
##### System information (version) * OpenCV => 4.0.0 * Operating System / Platform => ubuntu - docker image (jupyter/datascience-notebook:14fdfbf9cfc1) * Compiler => gcc version 7.3.0 (Ubuntu 7.3.0-27ubuntu1~18.04) ##### Detailed description Building CXX object 3rdparty/protobuf/CMakeFiles/libprotobuf.dir/sr...
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 reports....
Hello all We use Celery 3.0.21 with Redis backend (AWS ElastiCache) and recently I discovered huge memory usage by Redis node. After dumping Redis database and inspecting it I found that there are many reply pidboxes (~40) with 1 big element in array (about 16MB) in which there are many duplicated scheduled tasks (...
0
Had started on a page that references this page. Have filed an issue against the parent but part of its resolution involves fixing this page too: #21631 The page: http://kubernetes.io/v1.1/examples/https-nginx/README.html https://github.com/kubernetes/kubernetes/blob/release-1.1/examples/https- nginx/README.md P...
Forked from the discussion in #30083 for implementing against CRI. I remember there is an old issue for this, but couldn't find it anyway. It's worth noted that changing the container naming format is likely to cause one-time backward compatibility issues during upgrades, and may need non- trivial effort to ensure n...
0
[Enter steps to reproduce below:] 1. ... 2. ... **Atom Version** : 1.0.0 **System** : Unknown Windows Version **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15...
I right-clicked on a folder in the tree view **Atom Version** : 0.194.0 **System** : Windows 7 Entreprise **Thrown From** : Atom Core ### Stack Trace Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Fu...
1
**Chris Beams** opened **SPR-5499** and commented * * * **Affects:** 3.0.5 This issue is a sub-task of #9097 **Issue Links:** * #12474 Use of semicolon delimited lists in REST URIs ( _ **"is duplicated by"**_ ) **Referenced from:** commits `2201dd8` 8 votes, 12 watchers
**nebhale** opened **SPR-2704** and commented Create and upload Maven Source and Javadoc Bundles for Spring 2.0 per user request * * * **Affects:** 2.0 final **Attachments:** * SPR-2704.patch ( _19.66 kB_ ) **Issue Links:** * #6083 add version number to jars and produce separate source jars for modules [b...
0
## Make scrapy.selector into a separate project. When we're scraping web pages, the most common task you need to perform is to extract data from the HTML source. There are several libraries available to achieve this: **BeautifulSoup** , **lxml**. And although scrapy selectors are built over the lxml library, it is...
What do you think about adding response.follow_all shortcut, which returns a list of requests? This is inspired by this note in docs: > `response.follow(response.css('li.next a'))` is not valid because > response.css returns a list-like object with selectors for all results, not > a single selector. A for loop like ...
0
A long time ago I also did an small tool for renaming files. I also thought about implementing some sophisticated search and replace. But then it came to my mind that 1.) there is always too many exceptions and using rules is too unhandy 2.) a good text editor already has all these sophisticated features already buil...
# Summary of the new feature/enhancement Import external file list of new names that will be used on the current queue. Some people just want to rename with a specific list of custom names, not following the Power Rename configuration tool that consider only sequencial names and strings. for example: I have a list ...
1
I input any String type eg:"eee", It is accepted's. **React 15.1.0 windows 10/ chrome 51
A controlled number input, without a corresponding `setState` function, still allows `e`, `-` and `.` to be entered (and numbers can be inputted afterwards). I could be incorrect but I don't believe this is the desired behavior. Here's a JSFiddle demonstrating the issue.
1
Code as of `6088134` * Your Windows build number: Microsoft Windows [Version 10.0.18362.86] * What you're doing and what's happening: 1. Clicked the dropdown in the upper right corner 2. Clicked Settings 3. Code launched with profiles.json in a compact form 4. Formatted the JSON so I could more easily ...
The contents of `profile.json` are all in the same line, marks its readability very low. Maybe it's better to change the default format of it? ![profile_screenshot](https://camo.githubusercontent.com/2afddd8daa45c884eb3c8d6203a52ccdee9a1dd63315604640f4ef0c427000a8/68747470733a2f2f3873706376672e626e2e66696c65732e316...
1
This may exist so apologies if I couldn't find it and am duplicating here: Would it be possible to break out the code for a client only API that doesn't include the entire elastic search code base? Currently we have a lot of modular web services modules that make calls to elastic search and because we want to inclu...
This may exist so apologies if I couldn't find it and am duplicating here: Would it be possible to break out the code for a client only API that doesn't include the entire elastic search code base? Currently we have a lot of modular web services modules that make calls to elastic search and because we want to inclu...
1
### Describe your issue. This may be a duplicate of gh-15072, but 1) I don't have a big array (50 values), and 2) this method did not return any NaN's, just unexpected large (negative or positive) values. I finally caught the issue when I realized I had switched from scipy==1.4.1 to scipy==1.7.3 (before, it was wor...
_Original tickethttp://projects.scipy.org/scipy/ticket/1269 on 2010-08-30 by @josef-pkt, assigned to unknown._ I don't think including the old fuzz tests in test_distributions are necessary anymore. They could be replaced by the new tests, which use a seed, and reuse the random variables, which should speed up the...
0
I am running Julia in parallel, i.e. I am starting several Julia interpreters simultaneously. Usually this works fine. When a package is outdated, both will recompile it. However, I just encountered this error. It went away when I tried again, so I assume it is a race condition. This is with the release branch of J...
Hi all, I am trying to run julia from multiple machines (bash launches multiple julia instances from various machines) and all share the same home dir. The issue is that each machine recompiles the stale cache. (All are share the same package dir). Is this an issue? Is this a known issue? Is there a solution? Than...
1
Do we intend to support prior versions of APIs? E.g. Should we support v1beta1 inputs once we support v1beta2? To do that properly we need to version the whole API, not just individual structures, and we probably want version-specific code that translates old inputs to "most modern" form well isolated. And Th...
BUG REPORT **Kubernetes version** v1.4.3+coreos.0 **Environment** : * **Cloud provider or hardware configuration** : Bare metal CoreOS installation. 3 management nodes + 2 worker nodes. * **OS** (e.g. from /etc/os-release): `CoreOS stable (1185.3.0)` * **Kernel** `4.7.3-coreos-r2` **What happened...
0
Ubuntu 12.04, vscode 0.10.1 Currently when you run `Code` if there is an instances already running (or shift clicking the app icon in Windows/Ubuntu) it will activate the currently opened window. This should open a new instance, the same goes for opening a new instance of `Code` with a folder as an argument when an ...
* VSCode Version: 1.1.1 * OS Version: current OSX Steps to Reproduce: Vscode with github 1. create a file 2. add content in the file, but don't save it. Stay on it in the editor. 3. delete file (move to trash) from tree file browser File still shows in working files as unsaved file, and on screen. This...
0
* Windows build number: 10.0.18362.30 * What you're doing and what's happening: When having one tab (no matter what type of terminal used) open and type `exit`, the terminal doesn't close and the cursor just blinks. However, when having more than one tabs open, the terminal tab closes just fine. * What's wrong...
# Description of the new feature/enhancement Basically I want (hopefully I am not alone) a mode for the Terminal where it is just a blank canvas. This would allow me to run a Terminal for informational purposes (for example: htop on WSL, or sampler) to see stuff at a glance. Since this is the only way this Termin...
0
#### Description the result of kmeans.labels_ when n_jobs=1 is different from n_jobs > 1 #### Steps/Code to Reproduce from sklearn.cluster import KMeans import numpy as np X = np.array([[1, 2], [1, 4], [1, 0], [4, 2], [4, 4], [4, 0]]) kmeans = KMeans(n_clusters=2, random_state=0, n_jobs=1).fit(X) kmeans....
#### Description I noticed that `cluster.KMeans` gives a slightly different result depending on if `n_jobs=1` or `n_jobs>1`. #### Steps/Code to Reproduce Below is the code I used to run the same `KMeans` clustering on a varying number of jobs. from sklearn.cluster import KMeans from sklearn.data...
1
**Do you want to request a _feature_ or report a _bug_?** Bug **What is the current behavior?** When you have an unexpected prop in a component but that prop is not meant to be generated on the HTML DOM so that is set to {null}, React triggers this warning: Warning: Unknown prop `activeClassName`...
`Warning: Unknown prop ... on ... tag. Remove this prop from the element.` These are emitted even if the property value is `undefined`. Should `undefined` perhaps be treated as not existing perhaps? That's how it is intended AFAIK.
1
I've upgraded from 0.10.3 to 0.10.5, and the javascript syntax highlighting doesn't work as well as before (OSX El Capitan): from this: ![screen shot 2015-12-19 at 10 36 26](https://cloud.githubusercontent.com/assets/120693/11912441/d67bc7b2-a63c-11e5-9ab1-05bfc22ee527.png) to this: ![screen shot 2015-12-19 at ...
* VSCode Version: 0.10.11 * OS Version: Windows 7 Steps to Reproduce: 1. Enter function call `fn("{};");` anywhere in a C++ file 2. Syntax higlighting for the rest of the file gets confused - the string is not ended correctly However string literal in an expression works fine, e.g. `a = "{}";` ![image](ht...
0
When the number of layers in the GRU and the number of layers in the hidden size do not match, the GPU throws an error while the CPU does not. The following snippet to illustrates the same: rnn = torch.nn.GRU(input_size=5,hidden_size=4) x = torch.randn(3, 4, 5) hidden = torch...
I run RNN sucessfully with the code. rnn = nn.RNN(features, hidden_size, num_layers) o, hidden = rnn(x, hidden) and I run embedding example. Then, got RuntimeError. RuntimeError: inconsistent tensor size, expected r_ [5 x 25], t [5 x 25] and src [2 x 25] to have thesame nu...
1
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME ansible-playbook ##### ANSIBLE VERSION ansible 2.4.0.0 config file = /etc/ansible/ansible.cfg configured module search path = [u'/home/sean/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ansible python module ...
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME * CallBackModule ##### ANSIBLE VERSION $ ansible --version ansible 2.4.0.0 config file = /Users/<REDACTED>/ansible.cfg configured module search path = [u'/Users/<REDACTED>/ansible-lib/library'] ansible python module locati...
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/.): 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...
**Kubernetes version** (use `kubectl version`): Client Version: version.Info{Major:"1", Minor:"3", GitVersion:"v1.3.6", GitCommit:"ae4550cc9c89a593bcda6678df201db1b208133b", GitTreeState:"clean", BuildDate:"2016-08-26T18:13:23Z", GoVersion:"go1.6.2", Compiler:"gc", Platform:"darwin/amd64"} **Env...
1
Pods with RestartPolicyNever are leaving behind infra pods. Those infra pods should be nuked as soon as the last successful run is completed. For people with lots of successful / failed never pods this consumes IP addresses which is bad when IP addresses are in use. I suspect this is because we don't have another m...
I have noticed it a couple of times that when I am trying to export a resource, selflinks stay around and the namespace is not part of the link anymore. [mkargaki@dhcp129-211 kubernetes.github.io]$ kc get quota -o yaml apiVersion: v1 items: - apiVersion: v1 kind: ResourceQuota m...
0
Seaborn rugplot plot nothing in version 0.10.0 Same code works fine under 0.9.0 and I checked https://seaborn.pydata.org/whatsnew.html to find out if there was an update regarding rugplot but there wasn't. import seaborn from matplotlib import pyplot iris = seaborn.load_dataset('iris') ...
import seaborn as sns a = [1, 2, 4] sns.rugplot(a) With matplotlib 3.1.2: ![image](https://user- images.githubusercontent.com/315810/78386766-2bed0600-75ac-11ea-81e2-81ad3058434b.png) With matplotlib 3.2.1: ![image](https://user- images.githubusercontent.com/315810/78386799-3b6c4f00-75ac-11...
1
Matlab has `cholupdate` for rank 1 updates and downdates to Cholesky factorizations. It would be nice to have something similar, but perhaps with better syntax. LINPACK had these, but LAPACK left out the Cholesky update/downdate capabilities. http://icl.cs.utk.edu/lapack-forum/viewtopic.php?f=2&t=2646 For the dens...
I'm still seeing regression in line number coverage. I've seen this in a number of instances. Below is a partial list: * `convert(::Type{BigInt},::Int64)` * `finalizer(::Any,::Ptr{Void})`
0
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME modules/cloud/vmware/vmware_guest.py ##### ANSIBLE VERSION ansible 2.4.1.0 config file = /home/jzimmett/.ansible.cfg configured module search path = [u'/home/jzimmett/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ...
##### Issue Type: * Bug Report ##### Ansible Version: $ ansible --version ansible 2.1.0 (devel b2a6784a9f) last updated 2016/03/03 23:00:55 (GMT +000) lib/ansible/modules/core: (detached HEAD 0bbb7ba38d) last updated 2016/03/03 23:00:59 (GMT +000) lib/ansible/modules/extras: (detach...
0
When i run my bootsrap run locally disappears by the gylphicon docs the bottom border. Is this normal? ![screenshot from 2013-12-16 22 28 08](https://camo.githubusercontent.com/c92d36e5a68c1affc1d73171c965e80662e88f82d78973b95005df10e6797ec1/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f353630...
![screenshot from 2013-12-16 22 28 08](https://camo.githubusercontent.com/6adbcc1d43a4b3f982970856e316585140621f7b3e8ca158d5fb59058d78bf11/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f353630323931382f313735393035362f30373039666131612d363639392d313165332d383237362d3566653863363161343432372e706e6...
1
Feature gates are generally checked before expansion so feature gates are defeated by code inside macros.
This uses the `log_syntax!` macro without the `log_syntax` feature gate: #[feature(macro_rules)]; // This should be required // #[feature(log_syntax)]; macro_rules! hey ( () => { log_syntax!() } ) fn main() { hey!() ...
1
**Context:** * GOOD Playwright Version: 1.29.0 * BAD Playwright Version: 1.35.1 * Operating System: Mac * Extra: N/A **Code Snippet** Minimal repro: await page.setContent(`<button style="display:contents">DISPLAY CONTENTS</button>`) await expect(page.getByRole('button')).toBeVisible() ...
**Context:** * GOOD Playwright Version: ? (Fixed less than year ago here #15034) * BAD Playwright Version: 1.34.3 * Operating System: Mac * Extra: None **Code Snippet** React code export function App(props) { return ( <div className='App'> <h1>Hello React.</h1> ...
1
**I'm submitting a ...** (check one with "x") [x ] bug report => search github for a similar issue or PR before submitting **Current behavior** I tried to run the live example and it brakes https://angular.io/docs/ts/latest/cookbook/dynamic-component-loader.html I downloaded the archive, ran i...
## I'm submitting a... [x] Bug report I believe the image is blocked simply because of its filename. A rename might fix this. ## Current behavior https://angular.io/guide/dynamic-component-loader The "final ad banner" at the bottom doesn't render on some browsers when using an ad blocker ## ...
1
Challenge Create a Set of Checkboxes has an issue. User Agent is: `Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: <link href="h...
#### Challenge Name All #### Issue Description After passing a few exercises, the display on the phone on the right hand side of the code doesn't work (phone remains blank). Also, the text under run text where it normally shows which criteria have to be met for the code to be accepted is also missing. These issues...
1
From this discourse thread. Here is what I was trying: macro color_output(enabled, block) quote prev_color = Base.have_color eval(Base, :(have_color = $$enabled)) $(esc(block)) eval(Base, :(have_color = $prev_color)) end end In a...
As seen in: macro m() quote x = "x" quote $x end end end julia> @m() ERROR: UndefVarError: x not defined Tested on today's master and `0.4.6`. ...
1
According to Tensorflow 2.0, many important functions are deprecated, such as: tf.layers.dense() tf.layers.dropout() tf.layers.flatten() tf.layers.batch_normalization() ... Since these functions are very widely used, and also very helpful for building complicted models, would you please keep them in the f...
### System information * **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : Y * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Linux Ubuntu 18.04 * **TensorFlow installed from (source or binary)** : source * **TensorFlow version (use command be...
0
When entering a mulit-line input bigger than the available number of lines in the screen window, it becomes impossible to navigate back to the beginning of the input (or it seems kind of possible in a blind way, i.e. the screen is not refreshed accordingly).
Dear professor: i use conda to install like this:conda install -c conda-forge julia However: Preparing transaction: done Verifying transaction: done Executing transaction: / ERROR: Unexpected end of data : jl_oIePR5-download Installing known registries into `~/.julia` ┌ Warning: could not download https:...
0
Hello, since the release of VS Code v0.10.1 I cannot use it anymore - yes, I already tried to reinstall it. It takes minutes to start and all I'm getting is the following: ![unbenannt](https://cloud.githubusercontent.com/assets/7961978/11297744/c5accec8-8f7a-11e5-8bc3-632a0873b1f2.PNG) I am using Windows 10 Pro...
0
* Electron version: 1.6.2 * Operating system: macOS 10.12.4 (Sierra) ### Expected behavior A disabled submenu should be grayed out and not open when `enabled: false` is set. See Finder > Go > Recent Folder if the user has clicked Clear Menu in that submenu. ### Actual behavior Submenu is not grayed out and ca...
When I set ´enabled: false´ to a menu entry which has a submenu with more entries, it doesn't get disabled. Platform: Mac OS X
1
`jax.experimental.ode.odeint` takes a function `func(y, t, *args)`. A known limitation of `odeint` is that `func` cannot close over any tensors, but this information is missing from the documentation.
Mypy requires public API of a package being exported using either `__all__` or `import ... as ...` syntax. python3 -m venv env source env/bin/activate pip install -U pip mypy jax python -m mypy --install-types --non-interactive --strict -c "from jax import numpy as jnp; xs = jnp.zeros(1)" ...
0
see https://groups.google.com/forum/?fromgroups=#!topic/neo4j/CjKNqI5WGhE for context. I constantly encounter a strange problem when running a relatively simple query on Linux based machines while on Windows 7 I have no problems at all (both from neo4j-shell and from Python using py2neo). I have a database with 776...
see http://console.neo4j.org/?id=258d6g for an example, and http://stackoverflow.com/questions/13970033/returning-all-relationships-for-a- list-of-nodes for the discussion on this.
1
Describe what you were doing when the bug occurred: 1. While i am using profilter, i got the following error. * * * ## Please do not remove the text below this line DevTools version: 4.7.0-23309eb38 Call stack: at N (chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:164902) at I (chrome- ...
### Describe what you were doing when the bug occurred: 1. I did profiling on a list, that gets updated on each pagination api call. 2. Once the profiling was done, I moved around in the Profiler to view the Flamegraph 3. Moving to second capture, the Profiler crashed. **DevTools version** : 4.6.0-6cceaeb67 ...
1