text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
Why this margin is needed? bootstrap.css (5648 line) body.modal-open, .modal-open .navbar-fixed-top, .modal-open .navbar-fixed-bottom { margin-right: 15px; }
When launching the modal component (http://getbootstrap.com/javascript/#modals) the entire content will slightly move to the left on mac OS (haven't tried it on windows yet). With the active modal the scrollbar seem to disappear, while the content width still changes. You can observer the problem on the bootstrap pa...
1
Maybe I'm missing something in the debug UI experience but I see no way to add a condition to a function breakpoint even though the debug protocol supports it.
* VSCode Version: 1.1.1 * OS Version: El Captian (10.11.5) ![2016-05-17 14 24 23](https://cloud.githubusercontent.com/assets/12817/15313107/a7c149ea-1c3b-11e6-8185-b3e2113c08ed.png) How can I remove those ugly brackets in the menu? are they shortcut hints? No use to me at all.
0
Cast renders an anonymous alias contrary to the documentation The example used in the documantation from sqlalchemy import cast, Numeric, select stmt = select([ cast(product_table.c.unit_price, Numeric(10, 4)) ]) renders as SELECT CAST(product_table...
We're having some issues with `back_populates` of relationships referring to other relationships with `viewonly=True`. We get duplicates in the relationship list that the `back_populates` refers to. Test case: import sqlalchemy from sqlalchemy import Column from sqlalchemy import ForeignKey ...
0
This bug-tracker is monitored by Windows Console development team and other technical types. **We like detail!** If you have a feature request, please post to the UserVoice. > **Important: When reporting BSODs or security issues, DO NOT attach memory > dumps, logs, or traces to Github issues**. Instead, send dumps/...
When we paste anything in the Windows Terminal ubuntu instance using any command like **vim abc.txt** , it automatically inserts new line after each line, and eats up some characters from the beginning of the pasted text. Here is the screenshot: https://i.imgur.com/pJ0Fsbw.png Here the text copied to my clipboard ...
0
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.5.10 * Operating System version: windows7 * Java version: jdk1.8 when is use dubbo-2.5.10 star...
# 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
Use case: for classifiers with predict_proba I like to see precision/recall data across different probability values. This would be really easy to return from current cross_validation.py master if not for if not isinstance(score, numbers.Number): raise ValueError in _cross_val_score with this changed to a war...
I'd like to use cross_validation.cross_val_score with metrics.precision_recall_fscore_support so that I can get all relevant cross- validation metrics without having to run my cross-validation once for accuracy, once for precision, once for recall, and once for f1. But when I try this I get a ValueError: ...
1
Referring the documentation provided by playwright, seems like the hooks (example: afterAll / beforeAll) can be used only inside a spec/ test file as below: // example.spec.ts import { test, expect } from '@playwright/test'; test.beforeAll(async () => { console.log('Before tests'); }); test.afterAll(async ()...
### System info * Playwright Version: [v1.32.3] * Operating System: [All, Windows] I only has Windows * Browser: [Chromium, Firefox] Page Visibility API : https://developer.mozilla.org/en- US/docs/Web/API/Page_Visibility_API **Steps** * Start a test and wait for the browser opens (let the test wait log, w...
0
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME ??? ##### ANSIBLE VERSION ansible 2.6.0 (skipped_false 39251fc27b) last updated 2018/02/10 00:32:41 (GMT +200) config file = None configured module search path = ['/home/nikos/.ansible/plugins/modules', '/usr/share/ansible/plugins/mod...
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME lib/ansible/playbook/base.py ##### ANSIBLE VERSION ansible 2.2.0.0 config file = configured module search path = Default w/o overrides ##### CONFIGURATION ##### OS / ENVIRONMENT N/A ##### SUMMARY I am trying to set the vars ...
1
##### System information (version) * OpenCV => 3.4.1 (master seems to be same) * Operating System / Platform => cygwin 64 bit * Compiler => g++ (gcc 7.3.0) ##### Detailed description In some (very rare) condition, "Error: Assertion failed" happens at: opencv/modules/core/src/types.cpp Line 154 in da7e1cf...
##### System information (version) * OpenCV => 4.1.0 * Operating System / Platform => Ubuntu 18.04 LTS * Compiler => clang-7 ##### Detailed description An issue was discovered in opencv 4.1.0, there is an out of bounds read in function cv::predictOrdered<cv::HaarEvaluator> in cascadedetect.hpp,...
0
##### Description of the problem I don't know if it is expected or if I miss something, but it looks like the envmap textures generated by PMREGenerator and the renderer specified at that time cannot be re-used with another renderer. In this example, the envmap is generated using **renderer**. If the scene is ren...
##### Description of the problem Using `PMREMGenerator.fromEquirectangular` in multiple simultaneous three.js renderers causes only the last renderer to have a correctly functioning texture (at least for use as an envMap) This happens even when each renderer has its own instance of `pmremGenerator` and calls `disp...
1
## Bug Report ### Which version of ShardingSphere did you use? 5.0.0 ### Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy? ShardingSphere-JDBC ### Expected behavior execute well ### Actual behavior 11-19 17:53:11.212 INFO 59884 --- [nio-8088-exec-1] ShardingSphere-SQL ...
For example๏ผš insert into the_biz(id,ser_id,biz_time) values (1,1,now()) NoneShardingStrategy is default for no sharding tables,but error occurs .because of sql checking? When in no-sharding table cases,could we make shardingsphere look like it doesn't exist?
0
[ yes ] I've searched for any related issues and avoided creating a duplicate issue. Description Announcement, it's not a bug probablyใ€‚ Firstly ,I run the standard wss ( ws over https server ) code by a single js file, It worked. and then , I copy the same code into the electron main.js, it can't be worked. ...
ERROR: type should be string, got "\n\nhttps://i.imgur.com/mYtRTmJ.png\n\nhttps://electronjs.org/docs/api/browser-window\n\n"
0
# 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...
## Related Issues and Possible Duplicates #### Related Issues * #6672, #5890 #### Related PRs * #6757 # Steps to Reproduce Here is the script that reproduces the issue: import time from celery import Celery app = Celery('example') app.conf.update( backend_url='re...
1
At the moment, index signature parameter type must be string or number. Now that Typescript supports String literal types, it would be great if it could be used for index signature parameter type as well. For example: type MyString = "a" | "b" | "c"; var MyMap:{[id:MyString] : number} = {};...
Typescript requires that enums have number value types (hopefully soon, this will also include string value types). Attempting to use an enum as a key type for a hash results in this error: "Index signature parameter type much be 'string' or 'number' ".-- An enum is actually a number type.-- This shouldn't be an err...
1
Hello community and devs of PowerToys, this is my first time here and I was ok with these tools until it stopped working and an error message appears when I try to start it. I followed istructions and copied the message below. You can find the log here Error Message: Version: 1.0.0 OS Version: Microsoft Wind...
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
So far I really like Atom 1.0 - it's got a long way to go, but it will get there. We needed an editor like this. Anyway: the only thing bothering me was how quickly it installed itself (Windows 8.1, 64 bit). Even though that might sound like a _good_ยจthing, it isn't. When I double-click the installer I get no option...
So far I really like Atom 1.0 - it's got a long way to go, but it will get there. We needed an editor like this. Anyway: the only thing bothering me was how quickly it installed itself (Windows 8.1, 64 bit). Even though that might sound like a _good_ยจthing, it isn't. When I double-click the installer I get no option...
1
> Issue originally made by @xfix ### Bug information * **Babel version:** 6.2.1 * **Node version:** 5.1.0 * **npm version:** 3.5.0 ### Options --presets es2015 ### Input code let results = [] for (let i = 0; i < 3; i++) { switch ('x') { case 'x': ...
## Bug Report **Current Behavior** I am getting following error. Can't figure out solution. I found many post which looks duplicate here but, nothing work. node_modules@babel\helper-plugin-utils\lib\index.js throw Object.assign(err, { Error: Requires Babel "^7.0.0-0", but was loade...
0
### Vue.js version 2.0.0-rc.4 ### Reproduction Link https://jsbin.com/rifuxuxuxa/1/edit?js,console,output ### Steps to reproduce 1. After hitting 'Run with JS', click the 'click here' button 2. Wait till `this.show` is `true`(8 seconds), click the 'click here' button again ### What is Expected? In step 1, ...
I reported the same issue for `v-if` which got fixed in `vue@2.0.0-rc.4`. However, with this version the same code using `v-show` โ€“ which previously worked perfectly โ€“ does not work anymore. ### Vue.js version 2.0.0-rc.4 ### Reproduction Link http://codepen.io/analog-nico/pen/KgPKRq ### Steps to reproduce 1. ...
1
**Description** I'd like to propose a few steps to improve the validation constraints: * Deprecate empty strings (`""`) currently happily passing in string constraints (e.g. `Email`) * https://docs.jboss.org/hibernate/stable/beanvalidation/api/javax/validation/constraints/Email.html * Deprecate non string...
**Description** In most validators, there's a failsafe mecanism that prevent the validator from validating if it's a `null` value, as there's a validator for that (`NotNull`). I think `NotBlank` shouldn't bother on `null` values, especially as `NotBlank` and `NotNull` are used together to prevent `null` values too...
1
_Original tickethttp://projects.scipy.org/numpy/ticket/1880 on 2011-06-26 by @nilswagner01, assigned to unknown._ ====================================================================== FAIL: test_timedelta_scalar_construction (test_datetime.TestDateTime) ---------------------------------------...
_Original tickethttp://projects.scipy.org/numpy/ticket/1887 on 2011-06-29 by @dhomeier, assigned to unknown._ With Python versions 2.4-2.6, the output of np.timedelta only produces the format string since (probably) merging the datetime branch, like this: >>> np.__version__ '2.0.0.dev-f7c16d7' ...
1
This is using a fresh install of Anaconda in an Ubuntu 15.10 based Google Cloud VM. At first glance it seemed to relate to difficulties getting console encoding (see `from pandas.core.format import detect_console_encoding` below)? import pandas -------------------------------------------------...
When using the `read_gbq()` function on a BigQuery table, incorrect results are returned. I compare the output from `read_gbq()` to that of a CSV export from BigQuery directly. Interestingly, there are the same number of rows in each output - however, there are many duplicates in the `read_gbq()` output. I'm using ...
0
It would be nice to have a busy indicator component. Almost every site I build today uses ajax in some way, usually to handle form submissions so I have a constant need for these indicators. ![](https://camo.githubusercontent.com/085593e5d469a4e7d6e5777c3f01c54c2f0849ee5ee703c86226c9645a4e4ea8/68747470733a2f2f726177...
Since v3.0 is on the horizon, perhaps #1371 could be revisited? Even just including a GIF would be very convenient.
1
ERROR: type should be string, got "\n\nhttps://github.com/kevin1024/pytest-httpbin\n\n"
ERROR: type should be string, got "\n\nhttps://github.com/kevin1024/pytest-httpbin\n\n"
1
Auto generated links are broken -- all google links points to Not Found page. Example link from google: https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.ttest_rel.html working link: https://docs.scipy.org/doc/scipy/reference/reference/generated/scipy.stats.ttest_rel.html doubled part '/referen...
The new theme seems to have introduced a duplicate `reference` in the URL, e.g., * Before: https://docs.scipy.org/doc/scipy/reference/linalg.interpolative.html * After: https://docs.scipy.org/doc/scipy/reference/reference/linalg.interpolative.html The effect was that today all SciPy search engine results I foun...
1
Getting script error while define more than on complex property in **@input()** or How to define complex property. Please find plnkr link. https://plnkr.co/edit/NcvjuqZvo6jilmrdeZ1R?p=preview `VM1920 zone.js:420 Unhandled Promise rejection: Template parse errors: Can't bind to 'content.value' since it isn't a kn...
**I'm submitting a ...** (check one with "x") [ ] bug report => search github for a similar issue or PR before submitting [x] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ...
1
* VSCode Version: 1.0.0 * OS Version: Ubuntu 16.04 Steps to Reproduce: 1. Ctrl+Shift+Alt+Down - default ubuntu hotkeys to move window to other desktop I set Ctrl+Shift+D for me right now, but it will be nice to have OS dependency of hotkeys out of the box
1. Create a new extension with yo code (just a TypeScript basic extension. 2. Publish to the gallery 3. Install on VS Code 4. Update the extension version and republish to the gallery 5. Extensions: Show Outdated Extensions 6. You see that a new version of the extension is available. Click Update extensio...
0
Is it possible to install TF in windows environment? I checked "pip install" is not supported in windows. Any plan for it?
I was excited to see tensorflow, but as many other users, we are on Windows, would be nice to see this support happen. Will you accept Windows port contributions? In the meantime, Microsoft recently released their Deep Learning toolkit which scales on multiple machines with GPUs for both Linux and Windows. https://g...
1
## โ“ Questions & Help I want to use `mixed_precision`, and I found tf.keras.mixed_precision.experimental.Policy. So I put `tf.keras.mixed_precision.experimental.set_policy("mixed_float16")` before `TFBertModel.from_pretrained(pretrained_weights)`. When I run the code, I got the following error: > InvalidArgumentEr...
# ๐Ÿ› Bug ## Information Model I am using (Bert, XLNet ...): 'ner' pipeline Language I am using the model on (English, Chinese ...): English The problem arises when using: * the official example scripts: (give details below) * my own modified scripts: (give details below) The tasks I am working on is: * a...
0
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.4.1 * Operating System version: win7 * Java version: 1.8 Java Code๏ผš package com.ghy.www; i...
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.0 * Operating System version: mac * Java version: 1.8 ### Steps to reproduce this issue 1...
0
by **jaq@spacepants.org** : I just downloaded the source code release branch from code.google.com per the instructions, then ran all.bash: hg clone ... hg update release cd go/src ./all.bash ... --- FAIL: TestLookupHost (0.00 seconds) hosts_test.go:65: LookupHos...
by **dave@lytics.io** : Building with the race detector enabled sometimes blows up and consumes all available memory. This happens for me with the package "labix.org/v2/mgo" . What steps will reproduce the problem? Download labix.org/v2/mgo and build it with -race: {{{ ...
0
Compare these 1.15 docs with these 1.13 docs
I'm having difficulties displaying the NumPy reference in HTML format. There seems to be some formatting shining through which isn't correctly translated to HTML, or the rendering engine can't display the content properly. The problem shows, for example, when looking at the ndarray reference, subsection "Internal me...
1
Describe what you were doing when the bug occurred: 1. Trying to access Components tab in Chrome Dev tools 2. 3. * * * ## Please do not remove the text below this line DevTools version: 4.10.0-11a2ae3a0d Call stack: at store_Store.getElementAtIndex (chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/bui...
Describe what you were doing when the bug occurred: 1. Open React Devtool 2. Select the Component tab 3. Got below error * * * ## Please do not remove the text below this line DevTools version: 4.8.2-fed4ae024 Call stack: at Store.getElementAtIndex (chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/buil...
1
This is how I broke our build. % pwd /home/rog/src/go/src/local/gobug % ls % cat > foo.go package foo var X = 0 ^D % cat > bar.go package foo var Y = 0 ^D % cat > foo_test.go package foo_test import ( "testing" foo "local/gobug"...
What steps will reproduce the problem? If possible, include a link to a program on play.golang.org. 1. hg pull ;hg update;hg id gobuild@raspberrypi:~/go/src$ hg id 5e3661048f2e+ tip gobuild@raspberrypi:~/go/src$ 2. check GOARM setting. gobuild@raspberrypi:~/go/src$ e...
0
**Migrated issue, originally created by Michael Bayer (@zzzeek)** re: the "creator" function. see #647 #2808 #3235 for what keeps coming up.
**Migrated issue, originally created by Sorin Sbarnea (@sorin)** Instead of hardcoding the backend engine to use for postgresql, sql alchemy should try to use pg8000 if the native module is not present.
0
I want to know how to handle cases where everything goes wrong, I am not too much worry for the workers, queue or db. I already know how their up time or how they handle crashes. But, I am still not sure to understand how works airflow. I assume that you a server or a process that know when to add stuff in the queue...
\--> **Apache Airflow version** : 1.10.10 **Kubernetes version (if you are using kubernetes)** (use `kubectl version`): NA **Environment** : * **Cloud provider or hardware configuration** : AWS * **OS** (e.g. from /etc/os-release): CentOS Linux release 7.7.1908 (Core) * **Kernel** (e.g. `uname -a`): 3.10.0...
0
I am interested in implementing a new connector for Superset to add MongoDB support, and would like to know if others have started similar work too so as to avoid duplicate effort. ### Inspiration @priyankajuyal I think there're 3 methods to support mongodb in superset: * Implement a mongodb in sqlalchemy, this ...
Make sure these boxes are checked before submitting your issue - thank you! * I have checked the superset logs for python stacktraces and included it here as text if there are any. * I have reproduced the issue with at least the latest released version of superset. * I have checked the issue tracker for the sa...
0
Several of the types in the Iterators package are widely useful, plus have very small implementations that perform well. I would say these are: Count, Take, Drop, Cycle, Repeat, and RepeatForever. It would make sense to have these in Base. Also, iterators are afflicted by a mild case of "lettercase hell". We export ...
Mutually recursive type declarations such as type A a :: B b end type B c :: A d end appear to be presently unsupported, as per this discussion: https://groups.google.com/forum/#!msg/julia-users/LctRzct1R-M/s_vLVUxSyVcJ More gener...
0
# Description of the new enhancement Currently windows terminal does not support vim (vim for windows) completely. When vim is launched from the windows terminal, the document opens fine and all of the vim features are available. The only issue is that the rendering of the document is with blue color as opposed to n...
I just installed Windows Terminal for the first time this morning and the first thing I noticed -- before trying to make ANY changes to settings or even using the command lines -- was the semi-transparent background in the CMD tabs. I think it looks neat, but I am confused about why it is transparent when the termina...
0
The get started part has a section MNIST for ML Beginners. In this tutorial you should download the test data via: from tensorflow.examples.tutorials.mnist import input_data mnist = input_data.read_data_sets("MNIST_data/", one_hot=True) Unfortunately that's not working because of an connection error.
I was able to run the Inception-v3 model on Android just fine, and I now want to run my own trained TensorFlow model on Android. I'm following the approach from TensorFlow's image recognition tutorial and the Android TensorFlow demo, and adapting as necessary. My changes include: (a) integrating Android OpenCV as par...
0
**I'm submitting a ...** (check one with "x") [x] bug report [ ] feature request [ ] support request **Current behavior** When a web component is used inside an Angular component, attributes specified on web component are not available inside `attachedCallback` of web component. Also, ...
**I'm submitting a ...** (check one with "x") [x] bug report [ ] feature request [ ] support request **Current behavior** I'm trying to integrate ChartIQ library which has HTML Custom Elements to my angular 2 application. Some of these elements have logic in createdCallback, but when ...
1
The code completion functionality often gets in the way when typing prose into a text file. For example, if I were writing this comment in a .txt file with VS Code and tried to type the word fun immediately followed by the Enter key, I'd automatically have the word "functionality" instead, because Code "learned" from...
At the moment when none of the contributed completion processors returns any proposals, the textual completion processor starts adding proposals. That's fine for languages where we have no sophisticated completion processor, but looks bad for languages that pretend to have a 'smart' completion processor.
1
On current master (on macOS), I get these warnings when building Julia. I suppose they are safe to ignore. LINK usr/lib/julia/sys.dylib ld: warning: could not create compact unwind for _julia_Dict_17462: stack subq instruction is too different from dwarf stack size ld: warning: could not cr...
On macOS 10.14.6, I've started to get these warning when building Julia, at the very end: $ make ... LINK usr/lib/julia/sys.dylib ld: warning: could not create compact unwind for _julia_Dict_16937: stack subq instruction is too different from dwarf stack size ld: warning: could not ...
1
Please add support for selecting multiple images at once using the image_picker plugin.
Right now the picker defaults to single mode, it would be nice to be able to have a multi-mode, by passing a parameter when you launch it, then an array is returned of files instead of just one. for android this might help speed things up unique code intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true...
1
### Describe the issue: Hi, I have recently created a new python environment using the 3.10.4 python version. I have installed the latest public version (1.22.3) and when I am trying to catch the epsilon, I have an error that cannot allow me to use the command: numpy.finfo(float).eps or numpy.finfo(numpy.float32)...
Ravel and unravel are **synonyms** , but the methods where they appear accomplish inverse operations. See my SO question for details and example. Can you consider introducing alternative methods that contain `unravel` in their name (even functions containing ravel are IMHO not a happy choice)? I propose to change...
0
Consider the following code from `numpy/distutils/fcompiler/gnu.py`: import sysconfig target = sysconfig.get_config_var('MACOSX_DEPLOYMENT_TARGET') if not target: target = '10.9' s = f'Env. varia...
Not sure that this issue is related to NumPy. When I try to install NumPy with Pipenv, it fails with a `TypeError` exception. This issue doesn't seem to happen if using `pip` directly. ### Steps to reproduce: I could reproduce with this config: * macOS 11.0 (Intel) * Python 3.9.0 * pip 20.3.1 * pipenv,...
1
* Electron version: 1.7.x * Operating system: Windows 10 ### Expected behavior You should be able to share any screen connected on the computer, see the content of the screen you selected locally, as well as the other participants. ### Actual behavior Once you select the screen you want to share on a multi-sc...
* Electron version: 1.7.3 - not sure when this was introduced, works fine in latest production build based on 1.4.15 * Operating system: Windows ### Expected behavior I have three screens connected to my computer. `desktopCapturer.getSources({types: ['screen']})` correctly identifies three sources. I want to s...
1
I believe this is a bug, or if it isn't, I couldn't find anything in the documentation that says it should act this way. It seems like random.choice is ignoring the masked values. As you can see in the code below, the output of random.choice gives values that have been previously masked on the array. ### Reproducin...
The subject says it all, but in case you missed it: the function `numpy.show_config()` (an alias for `numpy.__config__.show()`) doesn't have a docstring, and it does not appear in the online docs. A docstring that explains the information printed by `show_config()` would be helpful.
0
**David Harrigan** opened **SPR-8986** and commented Hi, In our application we have a rapidly growing number of JAXB2 annotated classes. It is a right pain to add these classes manually to the "classesToBeBound" property in the Jaxb2Marshaller. Given that other components (I'm looking at you Hibernate : Annotation...
**Loren Rosen** opened **SPR-305** and commented The shell scripts in samples/jpetstore/db/hsqldb has DOS line delimiters instead of Unix delimiters. This can cause attempts to run this sample application to fail. What happens is that, when you start up the database via server.sh, the shell sees the end of the com...
0
1. What is a short input program that triggers the error? (compile with -race enabled) package pdl var ( codec1 = codec{newE, "application/pdf"} codec2 = codec{newE, "text/plain"} availableCodecs = [...]codec{codec1, codec2} ) typ...
What steps will reproduce the problem? 1. Set your $INCLUDE environment variable to be longer than 500 characters. 2. Try to assemble any .s file. (I've been using $GOROOT/src/pkg/runtime/$GOARCH/asm.s) 3. Get a segmentation fault. I've reproduced with both 6a and 8a. I'm assumin...
0
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.8-SNAPSHOT * Operating System version: MacOS * Java version: oraclejdk1.8 ### Steps to repro...
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.6.9 * Operating System version: centos 6.4 * Java version: 1.8 ### Steps to reproduce this iss...
0
Right now, it seems like the only way to set -Ofair is via the command line. Is there also a way to set this programmatically in `celeryconfig.py`, or in Django's `settings.py`?
Can Celery expose a configuration parameter for the optimisation parameter(currently only passable on the command line as `-Ofair`.
1
Hey, I found something weird... I have a routing system with a modular structure, inside my general routing.yml there's an api_routing.yml and, inside it, there's one .yml for every 'module' of my application, those are: benefits_routing.yml entities_routing.yml user_routing.yml Focusing on benefits, the gener...
There is currently a known limitation when using route imports that makes it impossible to to have a root route `/` be imported under a prefix without a trailing slash. See #4322 and silexphp/Silex#149 I propose to solve this problem in a generic way by offering an option when importing routes to remove or add trail...
1
Any `enum` type that references itself in a constructor appears to cause the compiler to run out of stack. As a simple example, here's `ll.rs`: enum list { nil, cons(int, list) } fn main() {} On compiling with backtrace: $ RUST_LOG=rustc=0,::rt::backtrace rustc ll.rs rust: ...
The `net` module has a few things which I would like to consider improving: * Must the `Acceptor` and `Listener` traits exists? It's a shame having to import the traits just to make a simple server. * Does the layout make sense? `std::io::net::ip` is quite long. Possibly a top-level `net` module? Possibly shorte...
0
This is related to #2461. Essentially if we wrap a render call in a try catch this works the first time. It seems like when `React.render` is called a second time (the update case) it does not work. It seems that `React.render` is async when updating an existing component tree. I may be missing something but it seem...
So I'm trying to put some graceful error handling in case 1 of my views crap out: var MyGoodView = React.createClass({ render: function () { return <p>Cool</p>; } }); var MyBadView = React.createClass({ render: function () { throw new Error('crap'); ...
1
The docs pages for Send and Sync show duplicated and incorrect items in the "Implementors" section. Specifically, an incorrect positive impl for `Rc` is present and the correct negative impl is present twice. Also, impls for `Arc` and `ArcInner` appear multiple times, with and without trait bounds and `where` clau...
# Issue I noticed with a few of my crates that I have some redundancies between my docs and the code in the crate, specifically testcases. As a example, here `nice_example()` is duplicated: //! docs docs docs //! docs docs docs //! ``` //! fn nice_example() { ... } //! ``` ......
0
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior This should work: // in pages/index.js import { Layout } from 'layout' export default () => <Layout /> // in layout/index.js export { default as Layout } from './Layout...
Hello! I'm just now getting started with next (using version 1.2.3), and I have the following folder structure: * package.json * pages * index.js * lib * components * Test.js I have a symlink: `node_modules/lib -> ../lib`. I import my `Test` component with `import Test from 'lib/compone...
1
I like the scrollBeyondLastLine feature but it scrolls too much to my state and i often find myself beeing scared to have cleared my file :s That would be great if `editor.scrollBeyondLastLine` could be a boolean or an integer that would represent the maximium of lines it would overscroll. Thanks
We want to adopt tslint for checking our typescript code. Most of our style guide should be checked by tslint. ## General * Add initial tslint.json * Add tslint to our gulp script * Add a Code task with a problem matcher for tslint * Document its use in the Contribution Guidelines * Implement non externa...
0
* [ x ] I tried using the latest `mongoose/mongoose.d.ts` `"@types/mongoose": "^4.6.1"` file in this repo and had problems. * [ x ] I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript * [ x ] I want to talk about `mongoose/mongoose.d.ts`. * The authors of that type defin...
* I tried using the `@types/xxxx` package and had problems. * I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript * I have a question that is inappropriate for StackOverflow. (Please ask any appropriate questions there). * Mention the authors (see `Definitions by:` in `ind...
0
### Description Currently, there is support only for one_success trigger_rule, which starts the task instance the moment after one of the upstream tasks succeeds. The idea for the new trigger_rule is to wait for all upstream tasks to be done and at least one of them succeed. ### Use case/motivation The use case is...
**Description** I would like to have a trigger rule that triggers a task if all the upstream tasks have executed ( _all_done_ ) and there is atleast one successful upstream task. This would be like the trigger rule: _one_success_ , except it'll wait for all upstream tasks to finish. **Use case / motivation** I h...
1
* * * **STOP READING NOW** If you get the error message from the caption, because it is useless and too generic (are you sure that you build OpenCV library and not other make project?). Reason of your build problem is somewhere above this line, you need to grab it instead. To get right error message you should ...
##### System information (version) * OpenCV => :4.0.0.21: * Operating System / Platform => : windows10: * Compiler => :pre-build version from pip: ##### Detailed description background: i wanna achieve opencv dnn model to detect face in an image after accessing the model and prototxt from opencv_extra/test...
0
.navbar-brand has max-width: 200px. Don't see why this constaint is there, because some sites may wish to have wider logos. This can affect the centering of the logo at mobile (< 768px) resolution
I am using the 3.0 RC1 scripts and styles and it seems the navbar-brand (bootstrap.css line 2736) has its max-width set to 200px. Text beyond 200px wrap around. For desktop mode 200px can be restrictive. Was the 200px width enforced due to a previous feature request? If not, dropping the max-width (or increasing by ...
1
When sending OPTION requests with token requests, IE11 and below said that the list could not find the request header. They tried various methods, such as reducing the browser blocking script, using es6-primise, using babel-polyfill. All browsers except IE browser were normal, and asked for your help. Look at the rea...
ๅœจๆœ‰ๅธฆtoken่ฏทๆฑ‚็š„ๆƒ…ๅ†ตไธ‹๏ผŒIE11ๅŠไปฅไธ‹ๅ‘้€OPTION่ฏทๆฑ‚็š„ๆ—ถๅ€™่ฏดๅˆ—่กจๆ‰พไธๅˆฐ่ฏทๆฑ‚ๅคด๏ผŒๅฐ่ฏ•ไบ†ๅ„็งๅŠžๆณ•๏ผŒๆฏ”ๅฆ‚้™ไฝŽๆต่งˆๅ™จ้˜ปๆญข่„šๆœฌใ€ไฝฟ็”จes6-primiseใ€ไฝฟ็”จbabel- polyfill้ƒฝๅฐ่ฏ•ไบ†ไพ็„ถไธ่กŒ๏ผŒ้™คไบ†IEๆต่งˆๅ™จๅ…ถไป–ๆต่งˆๅ™จ้ƒฝๆญฃๅธธ๏ผŒๆฑ‚ๅคงๅฎถ็š„ๅธฎๅŠฉๅธฎ็œ‹็œ‹ๆ˜ฏไป€ไนˆๅŽŸๅ› ๅ•Š๏ผŒ่ฐข่ฐขใ€‚ ![DIOX$EM@O0E$YJ5B30$QSYU](https://user- images.githubusercontent.com/31311845/63649078-c1e5c600-c76b-11e9-9aad-66685995a719.png)
1
The preview iframe on the right of the code window shows duplicate code. ![preview- iframe](https://cloud.githubusercontent.com/assets/169922/11039473/73866be6-86cd-11e5-960d-feba8376fd30.png) When I checked the source code for the iframe, I did see the code duplicated twice as well. This occurs on many, if not ...
Challenge http://www.freecodecamp.com/challenges/waypoint-line-up-form- elements-responsively-with-bootstrap has an issue. I think the problem is happening on all Waypoint pages; the device right side of the screen where the CatPhotoApp page displays the information is being displayed duplicated; Another point is t...
1
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior I would like to have an Avatar component with the logged in person's image. ## Current Behavior Does not work, only if I import the image at the top, and write a static string as src. ## Steps to Repr...
### Problem description It's inconsistence, but seems like `TabIndicator`'s width does not calculated correctly. ### Versions * Material-UI: 1.0.0-alpha.21 * React: 15.6.1 * Browser: Safari ### Images & references When defined with: ![screen shot 2017-07-07 at 12 08 59 pm](https://user- images.github...
0
All of the base jumps refer us back to the "get set for basejumps" waypoint for a review of cloud9, etc to setup the appropriate environment. However, half the pages (as you step through the 14 pages for that waypoint) FORCE you to open an external site in order to progress to the next page. It's a horrible user expe...
The GIF Style challenges are great for short introductions, but more challenging for longer content, like "Get Set for Basejumps" there are several improvements that would make them easier to use: * **Enable "Previous" button on final screen** Right now there is no "Previous" button on the "Finish Challenge" scr...
1
## โ„น Computer information * PowerToys version: v0.21.1 * PowerToy Utility: Fancy Zones * Running PowerToys as Admin: Yes * Windows build number: [run "winver"] Win10 Version 1909 (OS Build 18363.1082) ## ๐Ÿ“ Provide detailed reproduction steps (if any) 1. Set Allow Zones to span across monitors = YES 2....
## โ„น Computer information * PowerToys version: v0.21.1 * PowerToy Utility: FancyZones * Running PowerToys as Admin: No * Windows build number: Windows 10 Version 2004: 19041.450 ## ๐Ÿ“ Provide detailed reproduction steps (if any) 1. Check the **Allow zones to span across monitors** checkbox 2. Configure...
1
W0921 21:05:38.642280 11417 docker.go:265] found a container with the "k8s" prefix, but too few fields (2): "k8s_unidentified" I0921 21:05:38.642486 11417 container_gc.go:140] Removing unidentified dead container "/k8s_unidentified" with ID "2876" I0921 21:05:38.642860 11417 disk_manager.go...
Hi! $ ./cluster/kube-up.sh ... Starting cluster using provider: vagrant ... calling verify-prereqs ... calling kube-up Bringing machine 'master' up with 'virtualbox' provider... Bringing machine 'node-1' up with 'virtualbox' provider... ==> master: Importing base box 'kube-fedor...
0
## ๐Ÿ› Bug CTCLoss occassionally causes segfault ## To Reproduce Steps to reproduce the behavior: # model class StrippedResnet(nn.Module): def __init__(self, base_model: nn.Module, n_classes: int): super().__init__() self.base = nn.Sequential(*list(base_model....
## ๐Ÿ› Bug torch.seed() fails with `Overflow when unpacking long` after a tensor is copied to cuda ## To Reproduce to reproduce: # test.py import torch print(f"Torch version: {torch.__version__}") x = torch.tensor(data=[[1,2],[3,4]], dtype=torch.long, device=None) x = x.to('cuda:...
0
1. What version of Go are you using (go version)? * 1.4 * tip +9ef10fde754f 2. What operating system and processor architecture are you using? OS X 10.10.1 amd64 3. What did you do? package main func main() { _ = complex(0) } http://play.golang.org/p/BdgB06q5te 4....
http://play.golang.org/p/gOwL0S64NQ reported by lvd package main import ( "fmt" "math" ) func main() { for i := 0; i < 4; i++ { ii := float64(i) e := ii * (math.Log(4/2) - math.Log(ii)) fmt.Println(e, math...
1
### Bug report **Bug summary** On macOS with PyQt4, when placing a `FigureCanvasQTAgg` and a `QGraphicsView` in the same widget, some QWidget recursive repaint and Core Graphics errors (see below) occur when showing the widget. **Code for reproduction** from PyQt4 import Qt import matplotlib ...
### Bug report **Bug summary** As of master, $ python examples/images_contours_and_fields/plot_streamplot.py QWidget::repaint: Recursive repaint detected Fatal Python error: Segmentation fault (Qt5Agg backend) **Code for reproduction** See above. **Actual outcome** NA **Expected ou...
1
I upgraded from ansible 1.3 to ansible 1.6 and my asynchronous tasks are not working properly when those have to be SKIPPED. (when are not skipped everything works ok). This is my task to reproduce the error: - name: Create screen session to run dd on new disk (async mode) shell: /bin/dd if={{ ...
##### Issue Type: Bug Report ##### Ansible Version: 1.6.1, devel ##### Environment: Centos 6.5, OS X 10.9.2 ##### Summary: An async task with 'poll: 0' fails only when the 'when' condition causes it to be skipped. If I remove the poll option or set it to a number higher than 0, the task is successfully skipped....
1
**Migrated issue, originally created by Sheer El Showk (@sheer)** This bug was discussed on stack overview here: [http://stackoverflow.com/questions/33888539/getting-sqlalchemy-to-do-on- duplicate-key-update-inside-an-orm-cascade-in- mys?noredirect=1#comment55890922_33888539 ](Link URL) We create a simple object...
Replace the asyncpg paramstyle from format to numeric, using `$` instead of the standard `:`. The main advantage of this style is that allows repeated parameters to not be duplicated
0
# Checklist Please add the ability to specify `https` scheme for results backend. Right now, it seems that http is the default with no way to change it. If this already exists can you please point me to it? celery/celery/backends/elasticsearch.py Line 38 in 6be4523 | scheme = 'http' ---|--- * I have che...
# Checklist * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports. * I have checked the pull requests list for existing proposed fixes. * I have checked the commit log to find out if the bug was alrea...
0
## Checklist * I have included the output of `celery -A proj report` in the issue. (if you are not able to do this, then at least specify the Celery version affected). * I have verified that the issue exists against the `master` branch of Celery. ## Steps to reproduce **I am using celery version 3.0.23 an...
# Checklist * I have checked the issues list for similar or identical feature requests. * I have checked the pull requests list for existing proposed implementations of this feature. * I have checked the commit log to find out if the if the same feature was already implemented in the master branch. ...
0
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Grow transition honors the enter/leave durations propagated from the Dialog component. ## Current Behavior `Dialog` accepts enter and leaveTransitionDuration props but the `Grow` transition only accept...
Tooltip in a narrow table head cell wraps its content while tooltips in ordinary table cells don't. * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior I expect it to behave the same as a tooltip in any other table cell ## Current Behavior I added ...
0
julia> collect(Iterators.Stateful(2x for x in 1:3)) 2-element Vector{Int64}: 2 4 The input has 3 elements, I would therefore expect the output also to have 3 elements, but there are only 2. On the other hand, the problem disappears if * we remove the generator col...
Strage behaviour of Stateful iterator: Although julia> for a in Iterators.Stateful([1,2,3]) print(a) end 123 works as it should, With list comprehension it fails to iterate over last element julia> [a for a in Iterators.Stateful([1,2,3])] 2-elem...
1
**Oliver Drotbohm** opened **SPR-6467** and commented Currently `ContentNegotiatingViewResolver` acts lenient as it returns `null` when it can not resolve any view to indicate that further `ViewResolvers` configured shall step in and try to resolve the view. In cases when `ContentNegotiatingViewResolver` is the on...
**Chris Beams** opened **SPR-9779** and commented Per email. * * * This issue is a sub-task of #14349 **Issue Links:** * #14417 Upgrade to JUnit 4.11 snapshot in support of JDK7 ( _ **"depends on"**_ ) * #14350 Build against JDK 7, test against JDK 6+7 ( _ **"is depended on by"**_ ) * #14625 AdvisorAdapte...
0
Consider i have the following directory tree in my application: - app.js - locale/ - es/ - module1/ - form1.json - form2.json - module2/ - form3.json - form4.json - en/ - module1/ - form1.json - ...
I'm having a hard time figuring this out. I have all these node_modules which include the css files I need but I can only get the javascript from the require. For example require('bootstrap') will only return the js file and not the css. I've tried require("!style!css!bootstrap/dist/css"); but ...
0
I am replacing the last softmax layer (with 1000 output units) of the original model (VGG16) with a new softmax layer (with 10 output units): model.add(Dense(4096, activation='relu')) model.add(Dropout(0.5)) model.add(Dense(1000, activation='softmax')) model.load_weights('./vgg16_weights.h5') model.layers.p...
I'm trying to start https://github.com/iamaaditya/VQA_Demo which uses pre- trained VGG16 model (https://github.com/iamaaditya/VQA_Demo/blob/master/models/CNN/VGG.py). The last 2 layers are removed with layers.pop(). This doesn't seem to work, however. The message "ValueError: could not broadcast input array from shap...
1
**Description:** When Deno is called from a directory that used to exist but doesn't anymore (i.e. deleted externally), it will panic. **Steps to Reproduce:** 1. `mkdir /tmp/testing && cd /tmp/testing` 2. `deno` or `deno repl` or `deno run https://deno.land/std/examples/welcome.ts` 3. Observe that it works ...
~ RUST_BACKTRACE=1 deno run -A cli.ts ============================================================ Deno has panicked. This is a bug in Deno. Please report this at https://github.com/denoland/deno/issues/new. If you can reliably reproduce this panic, include the reproduction steps...
1
With the new preview tabs, there's currently not a way to keep a tab opened without making changes to the file's contents. In sublime, double clicking a file prevents the preview from being closed when switching to another file. This would be useful behaviour in atom's preview tabs as well.
Using Atom v0.206.0-4941229 on Mac OS X 10.10.3. ![screen shot 2015-06-02 at 7 38 29 pm](https://cloud.githubusercontent.com/assets/1038121/7951649/0ca54bf4-095f-11e5-9aa6-84c1474b35bd.png) ### Repro Steps 1. Open Atom 2. Open Settings View 3. Navigate to Tabs package settings 4. Ensure "Use Preview Tabs" ...
1
* [x ] I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior When using a grid that scrolls vertically, a horizontal scrollbar should not be necessary. ## Current Behavior The grid looks like it generates double the needed spacing on the right side, resulti...
The `<Grid container>` extends beyond its parent, with half of spacing size. I have marked the extra width in red, also setting spacing to zero fixes the problem. ![mobile-padding](https://user- images.githubusercontent.com/3260363/28355346-338983fc-6c81-11e7-9f67-fb33c7758283.png) Here is a working example: ...
1
#### Code Sample If test.csv file looks like: a,b,c 0,1,2 1,2,3 Reading in the file with the header given in a list of length 0 results in no warnings or errors, but each line is interpreted as NaNs. >>> import pandas as pd >>> pd.read_csv("test.csv", header=[0]) ...
`read_csv` with a single-row header either breaks any names that might be on the index, or reads all data as `NaN`. This problem might exist because `pd.read_csv` hasn't caught up to #7589. In [1]: import pandas as pd In [2]: from StringIO import StringIO In [3]: pd.read_csv(StringIO(...
1
See demo code which was taken straight from the blog post.
The example from release notes is not working for me with `babel --version // 5.1.13` .babelrc { "stage": 0, "optional": [ "es7.decorators" ] } decorators.js function concat(...args) { let sep = args.pop(); return function(target...
1
As of today one needs to enumerate all the directives used by a given `@View`. This is very verbose and repetitive process, especially for simpler cases / components where one uses only standard / built-in directives. Assuming that I'm building a simple components that only consumes built-in directives I need to wri...
This is something that is bothering me. <someComponent *ngfor="#video in videos" [video]='video'> I'm repeating video 3 times, and I'm creating an extra temp variable. <someComponent *ngfor="[video] in videos"> Makes much more sense to me. Is this something that is poss...
0
Right now you have to type `</` and press enter to close the last tag it would be much simpler to just press enter and have it close
in html file-type vscode version 0.10.6 My User Settings config says: "editor.autoClosingBrackets": true, but it still doesn't work. For example, when you type in "<script" the IntelliSense suggestions pops up and you press enter on "script" it doesn't close the tag like this: <script> </scr...
1
**Describe the feature** : At the moment there is no single point of truth of all possible Elasticsearch settings. By that i mean both settings that are configured in the `elasticsearch.yml` & ones that are configured on a specific index (For example in a template). It would be extremely helpful to have a single p...
We currently build pom files for elasticsearch artifacts when running `gradle assemble`. We should validate these pom files, eg to ensure they don't contain broken xml, duplicate sections, valid tag names, etc.
0
**TypeScript Version:** nightly (1.9.0-dev.20160303) **Code** interface Foo { foo( key: string ): string; foo( keys: string[] ): string[]; } declare var foo: Foo; declare const bar: string|string[]; const baz = foo.foo( bar ); **Expected behavior:** The c...
It would be enormously helpful if `this` recognized type parameters: abstract class Functor<a> { abstract map<b>(map: (value: a) => b): this<b>; } abstract class Monad<a> extends Functor<a> { abstract bind<b>(bind: (value: a) => this<b>): this<b>; }
0
What does 'go version' print? go version go1.3 linux/amd64 go version devel +f7e7857afd88 Fri Aug 01 16:45:33 2014 -0700 linux/amd64 What steps reproduce the problem? If possible, include a link to a program on play.golang.org. 1. Run code at http://play.golang.org/p/41yjG2b...
Go version: `go version go1.5.1 linux/amd64` What I did: used gofmt on my source code What I expected: have spaces around bitwise `&` everywhere What I saw: in one occasion there was no spaces around the operator I have put "before" and "after" code into a gist, so from the diff you can easily see the changes a...
0
just in case this is not present as another issue Details are from a discourse post
It's interesting that this is valid syntax in Julia and Lua: function rec() return rec() end The difference is that in Lua, when you call `rec()` it will stare at you and engage your motherboard's built-in space heater until you ctrl-C out. In Julia: julia> rec() ERROR: ...
0
Challenge Waypoint: Use appendTo to Move Elements with jQuery has an issue. User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code...
A bug seems to be present: Chrome 46.0.2490.86 m; Windows 8.1 with respect to `appendTo()` function. `$("#target2").appendTo($("#right-well"));` does work, but not the `$("#target2").appendTo("#right-well");`, the latter being suggested in the tutorial. Hard reload and cache clearing did not seem to solve the probl...
1
I have a navbar-fixed-top navbar. Links that include "scroll to id" (as in href="#myid") don't adjust scroll position to account for the 50px of the navbar. Can you add some JS to detect this situation on the URL and adjust the scroll position back by the height of the navbar?
navbar covers first lines of a section called via <a href='#section'>Section</a>
1
### Apache Airflow version 2.2.1 (latest released) ### Operating System debian ### Versions of Apache Airflow Providers apache-airflow==2.2.1 apache-airflow-providers-amazon==2.3.0 apache-airflow-providers-ftp==2.0.1 apache-airflow-providers-google==6.0.0 apache-airflow-providers-http==2.0.1 apache-air...
### Apache Airflow version 2.2.1 (latest released) ### Operating System Linux (ubuntu 20.04) ### Versions of Apache Airflow Providers apache-airflow-providers-ftp==2.0.1 apache-airflow-providers-http==2.0.1 apache-airflow-providers-imap==2.0.1 apache-airflow-providers-microsoft-azure==3...
1
**Symfony version(s) affected** : 3.x, 4.x **Description** Due to update in php-intl library this loop is infinite. symfony/src/Symfony/Component/Intl/Data/Bundle/Reader/BundleEntryReader.php Line 81 in 95932df | while (null !== $currentLocale) { ---|--- **How to reproduce** Update php-intl to the l...
PHP 7.2.17-1+ubuntu18.04.1+deb.sury.org+3 SYMFONY: Symfony 4.2.4 locale_parse('root') now return an empty array as opposed to previos php versions which makes the Symfony\Component\Intl\Data\Bundle\Reader loop through fallback locales as "en" => "root" => "" => "root" => "" and so on without it becoming null to b...
1
# Description of the new feature/enhancement Customizing Terminal settings should be allowed to be loaded from my OneDrive folder or my own github repository, just like my powershell settings are or my VIM settings. Currently, when I login into a new machine I have to merge or manually copy settings for Terminal, I...
# Description of the new feature/enhancement There should be an option for choosing default shell. Currently, If one wishes to use WSL, it has to open terminal, then open new tab with wsl. previously, one could simply pin wsl to taskbar, and when needed, one could open the wsl directly. furthermore, it would be nice...
0
### Bug summary `contourf()` by default does not draw borders between adjacent levels. However, including the `alpha` keyword argument makes these borders visible. Desired behavior is to not draw these lines even with `alpha` specified. ### Code for reproduction import matplotlib.pyplot as plt im...
This is the underlying problem raised in #1178. It is illustrated by the test below; note that boundary anomalies are visible in all forms--agg on the screen, and pdf and svg displayed with a viewer--but in different places depending on the viewer and the size of the figure as rendered. Note that the colorbar is ...
1
### Describe your issue. This is fine on linux, but on OSX with an M1, `stats.beta().interval()` produces an overflow warning for completely reasonable values that should not cause overflow issues. ### Reproducing Code Example from scipy import stats stats.beta(4, 2).interval(0.95) ### Error mes...
### Describe your issue Several statistical distribution methods emit warnings stemming from Boost. This issue tracks the status of all of them. * `beta.ppf` as reported here; should be fixed by boostorg/math#827 * `ncf` as reported in gh-17101, should be fixed by boostorg/math#846 * `nct` \- I'm not sure tha...
1
The string "0.6" appears 35 times in our tree and we don't have an obvious way to eliminate this duplication. Something like `include_lit!` might do the job.
Consider extern crate innercrate; //defines only one public item `from_inner_crate` pub use inner::{inner_fn, from_inner_crate}; /// Top level documentation pub fn top_level(){} pub mod inner { pub use innercrate::from_inner_crate; /// Defined in...
0
import pandas as pd dates = [ 20140101, 20140102, 20140103] states = [ "CA", "NY", "CA"] x = pd.DataFrame({ 'dates' : dates, 'states' : states }) #y = pandas.DataFrame({ 'state' : [ 'CA', 'OR' ], 'value' : [ 1, 2]}) y = pd.DataFrame({ 'states' : [ "CA", "NY" ], 'stateid' : [ 1...
Using floor on a DatetimeIndex that has a timezone with DST fails when converting the result back to the tz as there may be ambiguous time (see example below). # create 15' date range with Brussels tz idx = pandas.date_range("2016-01-01","2017-01-01",freq="15T", tz="Europe/Brussels") # transfor...
0
We can obviously have the task bar on multiple displays, but currently only one display will show system icons on one display at a time, without using third party software. Would it be possible to add a feature to show them on all displays at once? Thanks * * * If you'd like to see this feature implemented, add a...
# .NET Core 3 upgrade Update all sections that use .NET to .NET Core 3 ## .NET Framework 4.7.2 * ColorPicker <\- done by @snickler * MarkdownPreviewHandler <\- #8405 * PreviewHandlerCommon <\- #8405 * SvgPreviewHandler <\- #8405 * SVGThumbnailProvider <\- #8405 ### Tests * Microsoft.Interop.Tests <\-...
0