text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
There's no e2e test for dynamic volume provisioning AFAICT. Also, on Ubernetes-Lite, we should verify that a dynamically provisioned volume gets zone labels.
I'm excited to see that auto-provisioned volumes are going to be in 1.2 (even if in alpha), but AFAICT there's no e2e coverage yet.
1
#### Describe the bug There is an issue when using `SimpleImputer` with a new Pandas dataframe, specifically if it has a column that is of type `Int64` and has a `NA` value in the training data. #### Code to Reproduce def test_simple_imputer_with_Int64_column(): index = pd.Index(['A', 'B', 'C...
#### Describe the bug Starting from pandas 1.0, an experimental pd.NA value (singleton) is available to represent scalar missing values. At this moment, it is used in the nullable integer, boolean and dedicated string data types as the missing value indicator. I get the error `TypeError: float() argument must be ...
1
### Describe the issue: numpy 1.20 encouraged specifying plain `bool` as a dtype as an equivalent to `np.bool_`, but these aliases don't behave the same as the explicit numpy versions. mypy infers the dtype as "Any" instead. See the example below, where I expected both lines to output the same type. ### Reproduce t...
Back in #17719 the first steps were taken into introducing static typing support for array dtypes. Since the dtype has a substantial effect on the semantics of an array, there is a lot of type-safety to be gained if the various function-annotations in numpy can actually utilize this information. Examples of this...
1
When I run `flutter test --coverage` on `https://github.com/dnfield/flutter_svg`, I eventually get this output over and over again: unhandled error during test: /Users/dnfield/src/flutter_svg/test/xml_svg_test.dart Bad state: Couldn't find line and column for token 2529 in file:///b/build/slave...
0
You need to double-transpose vectors to make them into 1-column matrices so that you can add them to 1-column matrices or multiply them with one-row matrices (on either side).
julia> X = [ i^2 - j | i=1:10, j=1:10 ]; julia> typeof(X) Array{Int64,2} julia> X[:,1] 10x1 Int64 Array 0 3 8 15 24 35 48 63 80 99
1
React v16.3 context provided in `pages/_app.js` can be consumed and rendered in pages on the client, but is undefined in SSR. This causes React SSR markup mismatch errors. Note that context can be universally provided/consumed _within_ `pages/_app.js`, the issue is specifically when providing context in `pages/_app....
Relates to #2438 . If we add the same `<link />` tag multiples in different `<Head />`, they are duplicated in the rendered the DOM * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior multiple `<link />` tags with exactly the same attributes should ...
0
In Bootstrap 3.0.3, when I use the "table table-condensed table-bordered table-striped" classes on a table, the table-striped defeats all the table contextual classes (.success, .warning, .danger, .active) in its rows or cells. When only the table-striped class is removed, the contextual classes then work perfectly ...
i have table with class .table-striped. it has 3 rows with tr.danger. only the middle one is red, the other two are default color. when i remove .table-striped, it works correctly
1
**TypeScript Version:** 1.9.0-dev / nightly (1.9.0-dev.20160311) **Code** class ModelA<T extends BaseData> { public prop : T; public constructor($prop : T) { } public Foo<TData, TModel>( $fn1 : ($x : T) => TData, $fn2 : ($x : TData) => TM...
**TypeScript Version:** 1.8.0 **Code** interface Class<T> { new(): T; } declare function create1<T>(ctor: Class<T>): T; declare function create2<T, C extends Class<T>>(ctor: C): T; class A {} let a1 = create1(A); // a: A --> OK let a2 = create2(A); // a: {} --> S...
1
## Steps to Reproduce Ran the Hello World guide, the app crashes when i run it in debug mode. But then i can start app the app normally and everything works fine, but i could not find a way to attach a debugger. I am using a tablet: Lenovo TB3 710I ## Logs Exception from flutter run: FormatException...
## Steps to Reproduce 1. cd `/examples/hello_world/` 2. connect a physical Android device 3. `flutter run` Output: mit-macbookpro2:hello_world mit$ flutter run -d 00ca05b380789730 Launching lib/main.dart on Nexus 5X in debug mode... Exception from flutter run: FormatException: Bad UTF-8...
1
deno: 0.21.0 v8: 7.9.304 typescript: 3.6.3 Run this code in both node.js and deno: let o = {}; o.a = 1; o.b = 2; o.c = 3; o.d = 4; o.e = 5; o.f = 6; console.log(o); Node.js output: { a: 1, b: 2, c: 3, d: 4, e: 5, f: 6 } deno output: { a, b, c, d, e, f } So, if ...
Match colors and semantics. node's stringify has been tweaked and optimized over many years, changing anything is likely surprising in a bad way.
1
Julia has kick ass features for computation. However what is the point of computing so much if the data cannot be visualized/inspected ? Current 2d plotting capabilities are nice, but no real matlab/scilab/scipy competitor would be credible without some kind of 3d plotting. One way of going would be to "port" may...
I would like to discuss moving the Julia buildbots to something more maintainable than `buildbot`. It's worked well for us for many years, but the siloing of configuration into a separate repository, combined with the realtively slow pace of development as compared to many other competitors (and also the amount of cr...
0
Hi, If I use a custom distDir: * the following error appears in the console: `http://myUrl/_next/-/page/_error` / 404 not found * hot reloading does not work properly anymore If I go back to the default, it goes away. my `next.config.js` file: // see source file server/config.js module.expo...
I cannot get the custom distDir to work. Whenever I add a next.config.js file and set the distDir as described in the documentation module.exports = { distDir: 'build' }; the build is created in that directory, but there is always an exception being thrown in the browser when loading the pag...
1
Worked around in CI by pinning to 1.8.5, see gh-9987 For the issue, see e.g. https://circleci.com/gh/scipy/scipy/12334. It ends with: !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ! ./scipy-ref.tex:25: fontspec error: "font-not-found" ! ! The font "FreeSerif" cannot be found. !...
_Original tickethttp://projects.scipy.org/scipy/ticket/1889 on 2013-04-10 by trac user avneesh, assigned to unknown._ Hello all, I notice a somewhat bizarre issue when constructing sparse matrices by initializing with 3-tuples (row index, column index, value). The following is a slight abstraction to what my exact...
0
With version 3.1.0, the HintManagerHolder.clear method is executed each time SQL is executed? When using HintShardingAlgorithm, you need to set HintManagerHolder before executing SQL. I execute multiple SQL in Dao, or execute multiple Dao methods in a service. I want to set HintManagerHolder in the form of AOP inter...
## Question Why DriverJDBCExecutor#executor do not handle the error result of branch thread execution? DriverJDBCExecutor#executor: ![image](https://user- images.githubusercontent.com/43204877/177512854-6437ce45-89f5-431a-9365-e899755c8555.png) JDBCExecutorCallback#execute: ![image](https://user- images.githu...
0
Hi I have a select box that has to contain the following options. Mention the same label for the options "audi" and "ford". <select> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="opel">Opel</option> <option value="audi">Audi</option> ...
Q | A ---|--- Bug report? | no Feature request? | yes BC Break report? | ? RFC? | ? Symfony version | 3.2.7 In the documentation for data transformers, the input is validated in the IssueToNumberTransformer class, and the error message is set in the TaskType class. What if there are multiple types of i...
0
_Please make sure that this is a build/installation issue. As per ourGitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:build_template_ System information OS : Windows 10 TensorFlow installed from (source or binary): from pip TensorFl...
Hi: my program have bug in these code line: word_embeddings = tf.scatter_nd_update(var_output, error_word_f, sum_all) word_embeddings_2 = tf.nn.dropout(word_embeddings, self.dropout_pl) # The error hint as follows: ValueError: Tensor conversion requested dtype float...
0
ERROR: type should be string, got "\n\nhttps://babeljs.io/repl/#?experimental=true&evaluate=true&loose=false&spec=false&playground=false&code=%40test(()%20%3D%3E%20123)%0Aclass%20A%20%7B%7D%0A%0A%40test(()%20%3D%3E%20%7B%20return%20123%20%7D)%0Aclass%20B%20%7B%7D%0A%0A%40test(function()%20%7B%20return%20123%20%7D)%0Aclass%20%D0%A1%20%7B%7D\n\n"
Compare the output of these two to show the difference. https://babeljs.io/repl/#?experimental=true&evaluate=true&loose=false&spec=false&code=%40decorate((arg)%20%3D%3E%20null)%0Aclass%20Example1%20%7B%0A%7D%0A%0A%40decorate(arg%20%3D%3E%20null)%0Aclass%20Example2%20%7B%0A%7D @decorate((arg) => null) ...
1
Challenge using-the-justifycontent-property-in-the-tweet-embed has an issue. User Agent is: `Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/55.0.2883.87 Chrome/55.0.2883.87 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if poss...
Challenge [Steamroller](https://www.freecodecamp.com/challenges/steamroller has an issue. **User Agent is** : `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36`. **Issue Description** : Global Variables value is not getting flushed. My co...
0
Hi, Just installed deno and try to run welcome.ts file which is mentioned in docs, i am facing this issue. Details are below. D:\deno>deno run https://deno.land/welcome.ts Downloading https://deno.land/welcome.ts WARN RS - Sending fatal alert BadCertificate an error occurred trying to conn...
There should be a way to allow insecure https requests, using `window.fetch()` for example. It should disable certificate validation for all requests made from the program. As of implementation, there are two optoins that come to my mind: environment variable and flag. Below are some examples of how it's done in o...
1
### Problem description When props.animated is true, Popover calls setState from within a setTimeout. // in componentWillReceiveProps if (nextProps.animated) { this.setState({ closing: true }); this.timeout = setTimeout(function () { _this2.setState({ open: false...
## Problem Description On occasion clicking the SelectField will result in the label text disappearing and the dropdown menu not displaying. Clicking the SelectField again will cause the label text to reappear and clicking again brings up the dropdown menu as expected. The dropdown seems to briefly load before disap...
1
We need a shorcut for move windows aplications to another virtual desktop. I use MoveToDesktop by Eun: MoveToDesktop, ~~but it cannot be configured~~. This tool provide combination for move application to next virtual desktop using "win+alt+arrow" powerstroke.
Such as press twice 'Alt' to open PowerToys Run, Alfred can do this, this is powerful, and will help people who want to migrate from MacOS just like me, thanks.
0
#### Twitch TV challenge https://www.freecodecamp.com/challenges/use-the-twitchtv-json-api #### Issue Description Your example site https://codepen.io/FreeCodeCamp/full/Myvqmo/ is not working. link to each Twitch Channel is 404. Also, channel information is not displayed properley - it just says "Account Closed" f...
#### Challenge Name https://www.freecodecamp.com/challenges/use-the-twitchtv-json-api #### Issue Description JSONP calls to the channels API result in a bad request. This is due to an update to the Twitchtv API which now requires a client id, which means creating an account and registering your application with th...
1
## Bug Report * I would like to work on a fix! **Current behavior** A clear and concise description of the behavior. `generate()` produces incorrect code for arrow function expression. const generate = require('@babel/generator').default; const node = t.arrowFunctionExpression( [], t.objectE...
> Issue originally made by @also ### Bug information * **Babel version:** 6.2.0 * **Node version:** 4.1.2 * **npm version:** 3.4.1 ### Options none ### Input code Dependencies in package.json: { "dependencies": { "babel-runtime": "6.2.0" }, "devD...
0
Hello, I've been creating notifications with https://github.com/electron/electron/blob/master/docs/tutorial/desktop- environment-integration.md#notifications-windows-linux-macos Can someone please confirm what I suspect: * There is no way to bind some kind of click handler to a notification, all clicking ever do...
It would be really great if Electron supported the "notification actions" feature added in Chrome 48: https://www.chromestatus.com/features/5906566364528640 https://developers.google.com/web/updates/2016/01/notification-actions?hl=en Essentially, you say: new Notification("123", {title: "123", sile...
1
### Description Ability to clear or mark task groups as success/failure and have that propagate to the tasks within that task group. Sometimes there is a need to adjust the status of tasks within a task group, which can get unwieldy depending on the number of tasks in that task group. A great quality of life upgrade...
### Description Hi, It would be very interesting to be able to filter DagRuns by using the state field. That would affect the following methods: * /api/v1/dags/{dag_id}/dagRuns * /api/v1/dags/~/dagRuns/list Currently accepting the following query/body filter parameters: * execution_date_gte * execution_d...
0
Profiling vet on a large corpus shows about >10% time spent in syscalls initiated by gcimporter.(*parser).next. Many of these reads are avoidable; there is high import overlap across packages, particularly within a given project. Concretely, instrumenting calls to Import (in gcimporter.g...
Currently gc generates the following code: var s1 string 400c19: 48 c7 44 24 08 00 00 movq $0x0,0x8(%rsp) 400c22: 48 c7 44 24 10 00 00 movq $0x0,0x10(%rsp) s2 := "" 400c2b: 48 8d 1c 25 20 63 42 lea 0x426320,%rbx 400c33: 48 8b 2b ...
0
In the bonfire problem, it states: > Return the number of total permutations of the provided string that don't > have repeated consecutive letters. > For example, 'aab' should return 2 because it has 6 total permutations, but > only 2 of them don't have the same letter (in this case 'a') repeating. I believe thi...
I selected the buttons as checked but the waypoint is not noticing that the buttons are checked.
0
Typscript typings for ChipProps includes tabIndex of type: number | string which is incompartible with the overriding tabIndex property extended from HTMLElement via HTMLDivElement. * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior No error. Property t...
When use the Card component and also SSR, React 16 gives the following message: > Did not expect server HTML to contain a <div> in <div>. * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior A Card component should render on the serve side, so the cl...
0
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** ...
Detected in CI: https://app.circleci.com/pipelines/github/electron/electron/31161/workflows/e022a2a8-d5fb-47b4-806f-84f69ecf0a8a/jobs/686542 Received signal 11 SEGV_MAPERR ffffffffffffffff 0 Electron Framework 0x0000000114bcb869 base::debug::CollectStackTrace(void**, unsigned lon...
1
I am trying to figure out how to center an item in the navbar. I would essentially like to be able to have two navs, one left and one right. Then have an element (logo or CSS styled div) in the middle of the nav. It would be nice to have something similar to .pull-right, a .pull-center or something to assist with thi...
1
Is there a supported way to write an image using the `clipboard` API? I've tried writing a data URL using `writeText` (similar to this) but that isn't cutting it. Perhaps the `type` parameter is involved but the documentation isn't clear as to what that should be.
Is it possible to use `clipboard.read()` to access an image copied to OS X's pasteboard?
1
Hi, again a bug which doesn't need fixing right now, but in a long run. It would be good to be more FHS and distributions friendly, that means at least: - honor libexecdir (binary architecture files) and datadir (documentation, etc.) - allow to have standard library fi...
What steps will reproduce the problem? 1. visit the documentation for any type (e.g. http://golang.org/pkg/net/http/#CanonicalHeaderKey) 2. click on the title of the section, to go see the corresponding code What is the expected output? What do you see instead? I expect to g...
0
# Bug report **What is the current behavior?** Destructuring DefinePlugin variables causes runtime error `Uncaught ReferenceError: process is not defined` **If the current behavior is a bug, please provide the steps to reproduce.** 1. have DefinePlugin plugin defined in the webpack config like this: ...
# Bug report **What is the current behavior?** Hi, I am working with webpack 4 and yarn berry workspaces. whenever I try to import a "package (workspace)" the browser console gives me a warning: "export 'IAppError' was not found in './src/reduce_request_error' The app however works, and no other places throw thi...
0
**Context:** * Playwright Version: playwright-chromium@1.2.1 * Operating System: Windows 10 Build 18363.900 * Node.js version: 12.18.3 * Browser: MS Edge Chromium Version 84.0.522.52 (Official build) (64-bit) **Code Snippet** const EDGE_PATH = require("edge-paths").getEdgePath(); const c...
**Context:** * Playwright Version: tested on versions 1.6.1, 1.3.0 and 1.4.0 * Operating System: Edition Windows 10 Enterprise Version 20H2 Installed on ‎8/‎20/‎2020 OS build 19042.630 Experience Windows Feature Experience Pack 120.2212.31.0 * Node.js version: v12.10.0 * Browser: MS Edge Chromi...
1
I'm not super awesome at Python, so I'd appreciate any help you can provide to help nail down this issue. Newer versions of Python 3 on Windows appear to have an issue when doing an ssl handshake. This appears to be a problem with urllib3 on Windows python packages only. I was able to successfully use Python 3.3.2 a...
I'm getting a strange error when using Requests in Python 3.3 (other flavors of Python 3 do not get this error): Traceback (most recent call last): File "C:\Python33\lib\site-packages\requests\packages\urllib3\connectionpool.py", line 421, in urlopen body=body, headers=headers) File...
1
The current implementation of autowiring seems to force unnecessary coupling and to be instable in case of change in a vendor's service implementation. Example 1: interface IA interface IB extends IA *service* class C implemets IB I can autowire using the type hint `IB`, but not `IA`. E...
With a fresh 4.1.1 install, I override the framework's router: namespace App\Service; use Symfony\Bundle\FrameworkBundle\Routing\Router; class AdminRouter extends Router { } And make a service with: App\Service\AdminRouter: arguments: $resource: ...
0
### Describe your issue. When the `hybr` method doesn't converge, it may sometimes report erroneously `success = True`. For example, looking at the function $f(x) = x^2-2x$ for initial value $x_0=1$ (or values very close to $1$), this method reports convergence on `1.01` . When looking at other methods available in...
Running from scipy.optimize import root print(root(lambda x: (x - 1) ** 2 - 1, 1)) print(root(lambda x: (x - 1.6667898)**2 - 2, 1.66678977)) gives the ridiculous results fjac: array([[-1.]]) fun: array([-0.9999]) message: 'The solution converged.' ...
1
##### Description of the problem There seems to be a bug when copying from a buffer geometry into another existing buffer geometry, which causes groups to be appended, instead of replaced. I don't think this is working as intended. Problematic code I think this needs a clearGroups() call before starting to add ...
I was loading an .obj with ~70k vertices, and it was taking ~20s to load the model. The slowness was being caused by `mergeVertices` call here: https://github.com/mrdoob/three.js/blob/master/examples/js/loaders/OBJMTLLoader.js#L101 I commented it out just to see what would happen, and it took about ~1s to load the ...
0
I think this should be marked as feature request, but it's not as much a request as a curious question (and a scream of pain, yes). From now on I'm going to talk about neo4j-embedded API, not Cypher. Since most methods on most entities return Iterables or Iterators, further processing of the results turns into a fai...
when our neo4j backup runs daily, it seems to be generating inconsistency checker report files in the /root folder filling up space **Neo4j Version:** 3.5.7 **Operating System:** Ubuntu 18.04.2 LTS ### Steps to reproduce 1. Install neo4j 3.5.7 2. Take backups nightly until problems arise ### Expected behavi...
0
I have simple dropdown buttons we built with 2.04 links are A tags, proper quotes, href='#' Used to work fine. Upgraded today to 2.1 and the links in any dropdown button don't work. The dropdown menu opens, but clicking on a link closes the menu without any action. tested on Android 2.3 and iOS 5 Rolledback to 2....
Heya! We downloaded the server backend for the custom bootstrap builds. I would like to add a custom prefix as a field to the customizer frontend. In general, would you merge a PR for the customizer frontend and the node backend with the possibility to prefix the css classes?
0
##### ISSUE TYPE * Bug Report ##### ANSIBLE VERSION ansible 2.1.2.0 config file = /etc/ansible/ansible.cfg configured module search path = Default w/o overrides ##### CONFIGURATION No changes to default ansible.cfg ##### OS / ENVIRONMENT Ubuntu Directory Structure: ...
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME ec2_group ##### ANSIBLE VERSION ansible 2.3.0.0 config file = /home/con5cience/git/Ansible/ansible.cfg configured module search path = [u'/usr/share/ansible', u'library'] python version = 2.7.13 (default, Jan 12 2017, 17:59:37) ...
0
# Environment Windows build number: 10.0.19041.264 PowerToys version: 0.18.2 PowerToy module for which you are reporting the bug (if applicable): FanzyZones (Keyboard Manager?) # Steps to reproduce 1. In FancyZones enable "Override Windows Snap hotkeys (Win + arrow) to move windows bet...
KBM currently does not always work consistenly with FZ and Shortcut guide if the Win key is remapped. The current workaround for a user would be to disable and enable KBM (since this will restart the hook), however we should automatically do this for v1.
1
##### ISSUE TYPE * Bug Report ##### ANSIBLE VERSION ansible 2.1.0.0 config file = /path/to/whatever/ansible.cfg configured module search path = Default w/o overrides ##### CONFIGURATION [ssh_connection] pipelining=True ##### OS / ENVIRONMENT N/A ##### SU...
##### ISSUE TYPE Feature Idea ##### COMPONENT NAME ssh control persist ##### ANSIBLE VERSION 2.0 ##### SUMMARY When trying to use the ec2 plugin, ssh fails with this error: `SSH Error: unix_listener: "/Users/luke/.ansible/cp/ansible-ssh- ec2-255-255-255-255.compute-1.amazonaws.com-22-ubuntu.CErvOvRE5U0urCgm" ...
1
Currently applications are not staying in the fancy zones, when the monitor is powered off and on again. All applications pile up in the upper left corner. Would be nice to keep the state/position of the applications after the screen is powered again. Same as when the computer is returning from sleep mode.
This was mentioned in the README so I'm creating the issue as it sounds like a neat idea to me I'm assuming this would allow for more flexible window arrangements than the current quadrant snapping, etc.
1
### What problem does this feature solve? Allow resolution of promises inside templates. ### What does the proposed API look like? `{{ await someFunction(value) }}`
### Version 2.3.4 ### Reproduction link https://github.com/geekdada/vue-hackernews-2.0 ### Steps to reproduce $ yarn $ MICRO_CACHE=false node --expose-gc --inspect server $ ab -n 50 -c 20 http://127.0.0.1:8080/ Stimulate a garbage collection before dump memory heap. ### What is expected? ...
0
I hit an ICE - I've reduced a reproducible test case here: http://is.gd/M5LB6P pub struct Foo<T, P> where P: DerefMut<Target=Bar<T>> { bar: P, } pub struct Bar<T> { nzp: NonZero<*mut Option<T>> } impl<T, P> Foo<T, P> where P: DerefMut<Target...
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
## Feature request **What is the expected behavior?** The documentation says that > The `[contenthash]` substitution will add a unique hash based on the content > of an asset. When the asset's content changes, `[contenthash]` will change > as well. However, the `[contenthash]` does **not** actually match the hash...
## Feature request Please natively support output chunk hashing that is based on chunks _output_ rather than their _input_ (i.e., `output.filename = "[name]-[chunkhash].js"`). _Why?_ you may ask? Because hashing is mainly used for production asset caching. Right now, there are at least three ways the content of a c...
1
## Environment info * Python 3.7.7 (default, Mar 26 2020, 15:48:22) * [GCC 7.3.0] :: Anaconda, Inc. on linux * Operating System: Ubuntu 16.04.6 LTS / running on Docker * CPU/GPU model: CPU Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz * C++ compiler version: * CMake version: #### Steps/Code to Reproduce Sup...
I'm opening the issue just to have a reference from sklearn import set_config from lightgbm import LGBMClassifier set_config(print_changed_only=True) print(LGBMClassifier(metric='auc')) will fail because `metric` is not part of the signature of init, it's part of a kwargs parameter. Argua...
1
[root@pcbsd-7889] /home/jc/atom# script/build Node: v0.10.32 npm: v1.4.28 Installing build modules... Installing apm... events.js:72 throw er; // Unhandled 'error' event ^ Error: incorrect header check at Zlib._binding.onerror (zlib.js:295:17) npm ERR! atom-package-manager@0.133.0 install: `node ./s...
I followed the build instructions given for the FreeBSD (10.0 x86_64) here- https://github.com/atom/atom/blob/master/docs/build-instructions/freebsd.md I compiled node and npm from sources (FreeBSD ports) but still no luck. Here is the full error log: http://pastebin.com/WQx8UXWs
1
**Description** Add the option for the celery worker to create a new virtual env, install some packages, and run airflow run command inside it (based on `executor_config` params). Really nice to have - have reusable virtual env that can be shared between tasks with the same param (based on user configuration). *...
### Apache Airflow version 2.3.0 (latest released) ### What happened After upgrading Airflow from 2.2.4 to 2.3.0, the Airflow webserver encounters the following errors: [2022-05-10 05:04:43,530] {manager.py:543} INFO - Removed Permission View: can_create on Users [2022-05-10 05:04:43,639] {manag...
0
include: playbook.yml a=2 b=3 c=4 we can do it with tasks, why not? see also: handlers make sure with_items also works with these includes as it now works with task includes
Unable to connect to ec2-host (errors with permission denied errors) in AWS. 1. Have the following entry in inventory file 2. Following command was executed ansible -vvv test_ansible --user ansible --private- key=/home/ansible/.ssh/id_rsa -m ping --become-user=ansible It is trying to connect as ec2-user@ec2_r...
0
#### Code Sample, a copy-pastable example if possible dat = pd.DataFrame( {'number': [2, 2, 3], 'string': ['a', 'a', 'b']}, index=pd.date_range('2018-01-01', periods=3, freq='1s') ) dat.rolling('2min').apply(lambda x: len(np.unique(x))) number string ...
Hi the `Pandas` dream team. I think it would be nice if `rolling` could accept `strings` as well (see https://stackoverflow.com/questions/52657429/rolling-with-string-variables) With the abundance of textual data nowadays, we want `Pandas` to stay at the top of the curve! import pandas as pd impo...
1
**Steps to reproduce:** 1. Start Terminal. 2. Press `Win`+`Left` key to dock Terminal window to the left half of my monitor. The Terminal window starts at (0|0) left top position. 3. Exit Terminal. 4. Start Terminal. **Actual results:** After step 4, the Terminal window starts at some probably random (X|Y...
# Summary of the new feature/enhancement When the window is closed, remember its position/size for next time, either automatically or with some sort of explicit "remember" option. Alternatively, as a minimal implementation, be able to manually specify initial position (similar to how you already can with column and...
1
Firstly, thanks for such an awesome project! When trying to add Javascript to customise onClick, Tooltips, etc. in the deck.gl visualisations, the text box in which you enter the code text behaves erratically. It is also unclear what is actually persisted onto the visualisation, it doesn't appear to be the code as e...
Current size of dashboard.entry.js is aroung 7+ MB which causes slight sluggishness in rendering. Are there any optimizations that I can do to reduce its size and improve overall rendering speed?
0
* I have searched the issues of this repository and believe that this is not a duplicate. * * * **Previous Behavior** In version 1.0.0.beta31, you could put anything inside a `<Fade>` component and it would get faded. **Current Behavior** As of version 1.0.0.beta32, it seems that `Fade` relies on the child c...
* [y] I have searched the issues of this repository and believe that this is not a duplicate. I have multiple `Paper` components, and each of them need to have a different background color. Do i simply wrap each of the components around a `MuiThemeProvider` with custom theme? Is there any major disadvantage to th...
0
So Babel is compiling a `for of` loop into code that uses Symbol - which is an ES6 specific feature. Example: for (let i of x) { console.log(i) } Babel output: "use strict"; var _iteratorNormalCompletion = true; var _didIteratorError = false; var _iterato...
I have some code like: for (var n of geoHashes) { console.log(n); } Only in firefox it throws an error: ReferenceError: Symbol is not defined
1
The select component in `1.0-beta.27` does not change selection to when you type * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior When you have a select field selected and begin to type, it should change selection to match what you typed. ## Current ...
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior I would expect native and non-native Selects to left justify their text with the same text indent as an Input. ## Current Behavior Currently on firefox on Windows and Linux the native select (the m...
0
I just updated to the latest version of webpack. Running `webpack -h` cuts off halfway through the process. Previous versions had more options and output. ![image 2016-05-25 at 2 57 02 pm](https://cloud.githubusercontent.com/assets/2992789/15552628/51f89d98-2289-11e6-9269-139e1a64b19a.png)
![image](https://cloud.githubusercontent.com/assets/1094697/15363804/8eb8e284-1d4c-11e6-9f10-08c60b6819a8.png) And I found the official node manual not recommend to use: if (someConditionNotMet()) { printUsageToStdout(); process.exit(1); } I think this is the reason why the help ...
1
I was just messing around with some toy problems and discovered that you could create multiple methods with the same signature when using concrete types in parametric methods: julia> foo(a::Int64, b::Int64) = a + b foo (generic function with 1 method) julia> foo{T<:Int64}(a::T, b::T) = a -...
@jakebolewski, @jiahao and I have been thinking through some type system improvements and things are starting to materialize. I believe this will consist of: * Use `DataType` to implement tuple types, which will allow for more efficient tuples, and make tuple types less of a special case in various places. This mi...
1
I don't know who's making the bug, so reporting here. I'll move to correct repo if someone helps me debug it. **Do you want to request a _feature_ or report a _bug_?** Bug **What is the current behavior?** Please watch below screencast: https://drive.google.com/file/d/1KMP44qsZ4y3MwrLLDdnOzPZ8z5mMElFP/view ...
Where does proptypes doc live? It's confusing it's still on React object but inaccessible from the website through search or table of contents. Let's either reinstantiate it or move it fully to the standalone repo. Also it's confusing we're deprecating createClass but it still lives in the docs ("React without ES6") ...
0
(This may well be a duplicate, but I didn't find a specific duplicate and I'm not clueful enough to figure out if it's included in any of the others.) # Environment Windows build number: 10.0.18945.1001 Windows Terminal version (if applicable): 0.3.2142.0 Any other software? Repr...
# Environment Windows build number: Microsoft Windows [Version 10.0.18362.267] Windows Terminal version (if applicable): 0.3.2171.0 Any other software? # Steps to reproduce 1. Edit config. 2. For any keybinding, add an additional key definition to the "keys" list. 3. Close and...
0
#### Code Sample, a copy-pastable example if possible import pandas as pd df = pd.DataFrame({ 'Foo64': [1.2, 2.4, 7.24], }) df['Foo32'] = df['Foo64'].astype('float32') df.eval('-1 + Foo64') # Works df.eval('-1 + Foo32') # Throws Exception Tra...
#### Code Sample, a copy-pastable example if possible def test_unary(): df = pd.DataFrame({'x': np.array([0.11, 0], dtype=np.float32)}) res = df.eval('(x > 0.1) | (x < -0.1)') assert np.array_equal(res, np.array([True, False])), res #### Problem description This is relate...
1
This is a regression from 0.6.2 which affects DataFramesMeta (JuliaData/DataFramesMeta.jl#88). Under some very particular circumstances, expression interpolation reverses the order of keys in a dictionary, compared with the order obtained in other places inside the same function. This is a problem when the function r...
When computing the matrix product of a transposed real matrix with a complex matrix, I encountered a performance issue. Consider the following computations: julia> A=randn(1000,1000); julia> B=randn(1000,1000); julia> Z=complex(randn(1000,1000),randn(1000,1000)); julia> # pre-compiling ...
0
Continuing #3059. See also #3092 * allow dupe columns when they are in the same block/dtype * Perhaps figure out a way to handle that case as well.
#### Code Sample, a copy-pastable example if possible >>> import pandas as pd >>> s = pd.Series() >>> ts = pd.Timestamp('2016-01-01') >>> s['a'] = None >>> s['b'] = ts >>> s a None b 1451606400000000000 dtype: object OK, no worries, we got coer...
0
Trying to implement a tree-like structure: extern mod core(vers = "0.5"); priv struct Node<K, V> { left: core::Option<Node<K, V>> } I hit the following compiler error: rust: task 7f3b6c105dd0 ran out of stack /usr/local/bin/../lib/librustrt.so(_ZN9rust_task13...
This is an ICE on some obviously bogus input code. struct A<X>; fn foo<I:A<&'self int>>() { } fn main() { } Transcript: % RUST_LOG=rustc=1 rustc --version /tmp/baz2.rs /Users/pnkfelix/opt/rust-dbg/bin/rustc 0.8-pre (dd5c737 2013-09-08 12:05:55 -0700) host: x86_...
0