text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
I want to be able to search for text in terminal and see them highlighted. Like on iTerm 2.
# Environment Windows build number: Microsoft Windows [Version 10.0.19013.1102] Windows Terminal version (if applicable): 0.6 # Steps to reproduce Create a color scheme with foreground as #ffffff and background as #000000 to represent white and black respectively. Create two profiles of cmd,...
0
### Describe the issue: Currently `np.array([np.nan], dtype=np.int64)` raises an error, however `np.array([np.nan]).astype(np.int64)` is undefined behavior that only issues a warning. Would it be worth promoting this to an error to stay consistent with `np.array` behavior? ### Reproduce the code example: ...
I tried to install recent NumPy (1.14.4), forced by SciPy :( It works in local env but not in Docker running Alpine. Minimal Docker file that reproduces the problem: FROM python:3.6.5-alpine RUN apk add --no-cache build-base RUN pip install numpy==1.14.4 By using 1.14.3 it all works.
0
hi, the constructor of Symfony\Component\Security\Acl\Domain\RoleSecurityIdentity\RoleSecurityIdentity takes $role as a parameter and checks if it is an instance of Symfony\Component\Security\Core\Role\Role. Following the guidelines in http://symfony.com/doc/master/cookbook/security/entity_provider.html, our Role cl...
The "Symfony\Component\Console\Command::setApplication" default value is set to null. If null is pass to this method the execution of "$this->setHelperSet($application->getHelperSet());" will not be able to complete and throw a fatal error. This default value should be remove, or a check before setting the helperSe...
0
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior ## Current Behavior ## Steps to Reproduce (for bugs) 1. npm install --save next react react-dom 2. Populate ./pages/index.js inside your project: export default () => Welcome to next.js! 3. n...
This example works fine when using the stable version v5.1 but causes an error when upgrading to the latest canary. It looks like it might be related to the new Babel v7 beta or the `babel-plugin-bucklescript` that is used but I couldn't isolate/reproduce the problem in the other repo. * I have searched the is...
0
Not sure if Bug or question, but at least unexpected behavior. **Describe the bug** When querying duplicated results of the type `(User, int, datetime)`, an attempted deduplication using `.unique()` did not have any effect, and returned multiple rows containing the exact same values. The reason is that the de...
**Migrated issue, originally created by jvanasco (@jvanasco)** I'm requesting that ScopedSession.session_factory become a public API method. This is currently implemented, but hidden and undocumented. Rationale / use-case: We have a transaction-safe PostgreSQL application. There exists some tasks that require a ...
0
In the following code, playwirght is not able to recognize the click event on search button. When i ran the application in debug mode even the debug statement is not capturing the details of the search image click. Search result are displayed but there is no trace of click statement in debug logs. It was working ...
Hi, I have long term scenario which is interdependent and I am currently using the following structure. test.describe.serial('create / modify / destroy', () => { test('setup', async () => { ....... }); test('modify', async () => { ....... }); test('destro...
0
### Issue Details * **Electron Version:** * 6.0.8 * **Operating System:** * Windows 10 (1809) ### Expected Behavior _app.getLocale()_ should return value passed to _app.commandLine.appendSwitch('lang', VALUE)_ ### Actual Behavior _app.getLocale()_ always returns _'en-US'_ ### To Reproduce ...
### 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:** * 5....
1
Choose one: is this a bug report or feature request? ### Input Code class Test { testFun() { return 0; } } ### Babel Configuration (.babelrc, package.json, cli command) { "babel-preset-es2015": "7.0.0-alpha.10", } ### Expected Behavior I used...
Minimal repro: .babelrc { "presets": ["es2015", "stage-2"] } repro.js class Stream { timeout(timeLimit, opts) { let timeout = null; } } $ babel --version 6.1.18 (babel-core 6.1.19) $ babel repro.js TypeError: repro.js: Du...
0
Spacing seems to be hard coded to `xs` but there's code that calculates spacing for each breakpoint. https://github.com/mui-org/material- ui/blob/c3f222bf8c08e9607a32d5eb9161de5ed124780b/src/Grid/Grid.js#L187 Is this something that just needs to be "turned on" or were there complications with exposing this?
Hello, ![we-need-to-go- deeper](https://cloud.githubusercontent.com/assets/1443499/22936973/6b73451a-f2d7-11e6-9620-7ff7b684db13.jpg) ### Description #### Add extra flex properties on Layout Currently, not all flex properties are supported. I think we could benefit to have them so we don't have to touch the CSS...
1
This causes an infinite loop: macro_rules! m { ( $()+ ) => (); } m!();
Play rust link: http://is.gd/DVjBtk macro_rules! a {(<$($($d:expr),*$($c:ident),*)*>) => (B<$($d,)*$($c,)*>);}a! (<>);
1
Events are helpful for traceability and system performance analysis. Long term storage of event data will be in a monitoring/storage backend of user's choice. Heapster is well suited for being an events proxy since it is built to handle multiple backends.
Env: Kubernetes 1.3.3 on AWS I ran into the same problem described into #26673 but now it's happening on every deploy. I would have reopened the issue, but I was not the author so I could not. The bug presents itself because I have a build that does `kubectl rollout status deployment/application-unstable` just af...
0
Hi, I was trying to add Cairo, Gadfly and IJulia packages, and ran into some issues. 1. Gadlfy installed fine. But I can't use this. julia> using Gadfly ERROR: IOString not defined in reload_path at loading.jl:144 in _require at loading.jl:59 in require at loading.jl:43 while loading /home/mahesh/.juli...
Fresh install of Julia head on OSX 10.8.5. `Pkg.add("Gadfly") ; using Gadfly` yields ERROR: IOString not defined while loading /Users/dpo/.julia/v0.3/Gadfly/src/weave.jl, in expression starting on line 21 while loading /Users/dpo/.julia/v0.3/Gadfly/src/Gadfly.jl, in expression starting on line ...
1
While debugging biocore/biom-format#816, we noticed that the return type of `__getitem__` for a sparse matrix object changed between SciPy versions. We did not see anything that stood out in the changelog regarding this, but we apologize if we overlooked something. We also attempted to identify what commit may have ...
Indexing csr or csc sparce matrix return an array of one element with scipy 1.3, With previous version it returned a scalar. I believe it is an oversight since lil_matrix indexing still return a scalar. import scipy import numpy as np print(type(scipy.sparse.csr_matrix(np.eye(3))[0,0])) pri...
1
All of the projects I'm working on are mounted through SSHFS which will become inaccessible as I move around places, and now that Atom attempts to load previously opened tabs/folders on program startup, I almost always will see a huge list of red warnings on the right side twice a day as I move from home to office an...
It's useful that atom can remember the files/folders you had open last time and then re-open them next time you start atom. I can't seem to figure out how to turn off this behavior though, I generally _want_ to start clean each time I open atom. Is there a config option to enable/disable this feature? Or could we im...
1
* VSCode Version: 1.0.0 * OS Version: OSX 10.11.4 (15E65) Steps to Reproduce: When I press "CMD"+"/" the result is "CMD"+"[" and others Should I re-binding the shortcut Thanks
Now it "outdents." There are a few other potentially related oddities, such as Command-[ causing the text to get smaller, and Command-] causing the text to get larger. If I had to guess, someone change the key-mapping code to work off of key codes and not characters, so it think it's using a QWERTY keyboard, even th...
1
I just completed jQuery, and started Javascript, but the challenges section is all messed up I tried in all browsers, and all latest updated. Chrome, Mozilla, Microsoft Edge. I even tried on both my desktop PC as well as laptop, same issue ![screenshot_4](https://cloud.githubusercontent.com/assets/4403762/955480...
After finishing a challenge and jumping to the next, I find that 9/10 times when I click where I want to start typing my code the cursor (flashing "I"?) doesn't stick to where I want to be. I'll start typing and it'll go a line or two below, which I have to erase, click somewhere else, then finally be able to type wh...
0
# Environment Microsoft Windows [Version 10.0.18362.388] Version: 0.5.2762.0 # Steps to reproduce Open terminal full screen app open 7 or more tabs # Expected behavior The tab on the end should show a X button and not be cut off; # Actual b...
# Environment Windows build number: [10.0.18362.175] Windows Terminal version (if applicable): Any other software? # Steps to reproduce Open the new terminal on a french machine, using AZERTY keyboard Type Alt Gr + 8 to get the back-slash # Expected behavior A back-slash should ...
0
I am opening this master/umbrella issue to track Ubernetes e2e test flakes. I think this issue is sufficient right now. But as we make progress we might have to fork this into sub-issues. This issue is not just about the e2e tests themselves but also includes infrastructure related flakes such as bringing up the clu...
We reverted it to use Update (PUT) while scale was broken. We should revert back, for ReplicationController, ReplicaSet, and Deployment. cc @janetkuo @madhusudancs @soltysh @kargakis
0
#### Code Sample, a copy-pastable example if possible import io import pandas csv_file = io.StringIO("""datetime,cloudcover_eddh,dewpoint,dewpoint_eddh,humidity,humidity_eddh,lat,lon,precipitation_eddh,pressure_eddh,temperature,temperature_eddh,winddirection_eddh,windgust_eddh,windspeed_eddh ...
When concatting two dataframes where there are a) there are duplicate columns in one of the dataframes, and b) there are non-overlapping column names in both, then you get a IndexError: In [9]: df1 = pd.DataFrame(np.random.randn(3,3), columns=['A', 'A', 'B1']) ...: df2 = pd.DataFrame(np.random.r...
1
* Electron Version: 2.0.7 * Operating System (Platform and Version): Ubuntu 16.04 **Expected Behavior** The print task should be sent without showing the system dialog, and it should print the html content. **Actual behavior** it is not doing anything at all. **To Reproduce** secondWindow.we...
1
# 🚀 Feature request The current implementation of TokenClassificationPipeline cannot do anything with text input beyond the length (measured in tokens) allowed by the model's number of positional embeddings. I think it would be useful to many users to have a setting in the pipeline that allows for a "sliding window...
Hi, I am trying to convert a fine-tuned GPT-Neo (125M) model to ONNX using the code below: from transformers import pipeline, convert_graph_to_onnx, GPTNeoForCausalLM, GPT2Tokenizer from pathlib import Path import torch model_name = "EleutherAI/gpt-neo-125M" pipeline_name = "text-...
0
* have a breakpoint in a loop * run and once hitting the breakpoint keep pressing play * > notice that the feedback of resume and pause is not strong enough. It seems we animate/delay something which hides the state transitions.
Hi Guys! If I create a new file in my workingdirectory ist doesn't show up. I have to refresh the list and then there is my new file. In a previous version the refresh was automatically there when I create a new file. The same thing applies to folders. My version of VSCode is 0.10.5
0
Hi, I am getting the error below. The same query runs without any problems when just a few records are returned by the where clause. I am currently running on a single node "quickstart" configuration. Thank You `2017-09-19 11:03:54 DEBUG DruidDao:414 - SQL: select A, B, C, D, E, G, H, I, L from dataSource where A i...
Today we have 2 ways to create a druid dimension based on a lookup. The first one (old way) is as an extraction function `ExtractionFn` and the second is via lookup dimension spec `LookupDimensionSpec`. Chronologically speaking the LookupDimensionSpec was introduced after ExtractionDimensionSpec. The reason beh...
0
Hi, Should be great to be able to perform a grouping of computed values using the pipeline aggregation range bucket. Thanks, David
Let's say the data set is transactions made by users and the question we want to ask is "Which users have transactions totalling between 100 - 200, 200 - 300, etc.?" At the moment, there doesn't seem to be a way to do this in one query. Given documents like this: "user": user1, "credit": 50 ...
1
## Checklist Happens on master and previously released versions as well. ## Steps to reproduce See celery/celery/backends/redis.py Line 22 in b266860 | from . import async, base ---|--- and celery/celery/backends/rpc.py Line 20 in b266860 | from .async import AsyncBackendMixin, BaseResultConsumer ...
# 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 same feature was already implemented in the main branch. * I hav...
0
`.text-right`, `.text-center`, `.text-left` don't have any affect when applied to `<td>` elements. I haven't checked, but I assume that's because the CSS specifies `p.text-right` etc.
With the following code, "foo" is aligned to left instead of right <table class="table"> <tr> <td class="text-right">foo</td> </tr> </table>
1
### Bug summary When using symlog scale for an axis, a false warning is initially generated - independant of the data to plot - as soon as the mouse is moved over the axes. ### Code for reproduction import matplotlib.pyplot as plt ax = plt.figure().add_subplot() ax.set_yscale('symlog') ...
Matplotlib plots are shown in reduced resolution: every pixel of the plot takes 4 physical pixels. Version: 1.2.0 To reproduce just plot anything on retina macbook. Screen Shot 2013-04-28 at 14 56 02
0
Challenge http://www.freecodecamp.com/challenges/waypoint-write-reusable- javascript-with-functions has an issue. Please describe how to reproduce it, and include links to screenshots if possible. I got the right answer, but the question wasn't a good guide. I suspect the question can be tightened up. Should I propo...
http://www.freecodecamp.com/challenges/waypoint-write-reusable-javascript- with-functions In this waypoint you learn functions but a few things are confusing to new people in my opinion: **1) Showing functions written two different ways without any explanation:** On the code you see: ourFunction = f...
1
The current code for `str::not_utf8` condition does this: cond.raise(fmt!("from_bytes: input is not UTF-8; first bad byte is %u", first_bad_byte as uint)) It might be more reasonable for condition handlers to recover in this situation if they had a reference to...
Currently even this simple `cat` program: use io::ReaderUtil; fn main() { for io::stdin().each_line |line| { io::println(line); } } ...fails on the broken or invalid UTF-8 strings (or possibly in other character encodings, as this example illustrates): $ echo 깨진 글자 ...
1
### System info * Playwright Version: [v1.35.1] * Operating System: [Ubuntu 22.04.2] * Browser: [WebKit, Mobile Safari] ### Source code * I provided exact source code that allows reproducing the issue locally. workflow: name: Playwright Tests on: push: branches:...
### Your question 👋 I have a question about using regex. Say there is an element on page as follows: <img .... data-permalink="2021-08-09/hello-world.png"> I would like to use regex to match the element like this: await page.waitForSelector( 'img[data-permalink="/*world*/i"' ); ...
0
I use the cifar10 model train my own TFRecord dataset ,it's running on Ubuntu 14.4 without error,but getting these errors when I run it on Mac or GPU server。And I am sure the labels of my dataset are right ,I don't know why get labels bigger than 10 ,I just have 10 classifications。 I use this code write images and l...
I use cifar10 model training my dataset,which is made by tf.python_io.TFRecordWriter() . I am sure labels in dataset are right,because it's running ok on Ubuntu PC but get Error Invalid argument: Received a label value of 255 which is outside the valid range of [0, 10) on Mac and GPU Server. W tensorflow/core/fram...
1
[ x] feature request **Current behavior** currently renderer.setElementStyle can not set !important renderer.setElementStyle(el, styleProperty, styleValue) **Expected behavior** renderer.setElementStyle(el, styleProperty, styleValue, important) important could be a optional boolean **What is the motivation...
**I'm submitting a ...** (check one with "x") [x] bug report => search github for a similar issue or PR before submitting **Current behavior** Both options will fail: [ngStyle]="{'color':'red !important'}" [style.color]="'red !important'" **Expected behavior** `!impor...
1
Error log: Starting Deno language server... version: 1.34.1 (release, x86_64-unknown-linux-gnu) executable: /home/olivier-faure/.cargo/bin/deno Connected to "Visual Studio Code" 1.78.2 Enabling import suggestions for: https://deno.land Server ready. ====================...
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 and re-run with the RUST_BACKTRACE=1 env var set and include the backtrace in your report. Platform: linux x86_64 Version: 1....
1
Canonical example `[None, ..10]` doesn't work for a generic `[Option<T>, ..10]`. It's possible to write a macro to accomplish this, but it sucks that that's necessary.
This should be fixable by special casing this (the type isn't copyable, but for this specific case the variant is). This problem only exists with fixed-size vectors since `vec::from_fn(10, |_| None)` works with non-copyable types. @nikomatsakis thinks this should be fixable
1
I have been using the fill_between function before and recently I have started receiving an `IndexError: too many indices for array: array is 0-dimensional, but 1 were indexed` . I also tried some examples using the fill_between function in your documentation (https://matplotlib.org/stable/gallery/lines_bars_and_mark...
### Bug summary There is a test in `astropy` that started breaking when using matplotlib + numpy 1.24.0.dev0+896.g5ecaf36cd . Same error using stable matplotlib and matplotlib from the nightly wheel. The actual test is at https://github.com/astropy/astropy/blob/75f9b60b5521ed8dae08611ddf766c95ce421801/astropy/visua...
1
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME ansible-playbook ##### ANSIBLE VERSION ansible 2.2.2.0 ##### CONFIGURATION ##### OS / ENVIRONMENT Debian Jessie ##### SUMMARY Duplicate role in a playbook is played only once, this changes behaviour compared to ansible-playbook 2.2.1.0 ...
##### ISSUE TYPE * Bug Report ##### COMPONENT NAME ec2_ami_find ##### ANSIBLE VERSION ansible 2.3.0.0 config file = /etc/ansible/ansible.cfg configured module search path = [u'/usr/share/ansible', u'library'] python version = 2.7.13 (default, Apr 4 2017, 08:44:49) [GCC 4.2.1 Co...
0
In below screenshot, I am scanning the database for a categorical called `classification_id` with the value `50ef44b795e6e42cd2000001` but I am getting a data-row where the categorical has the value 50ef44b795e6e42cd6000001`. How is this possible? Note that my list of categorical is huge, more than 4 million entries...
#### Code Sample, a copy-pastable example if possible # Your code here cdef inline void remove_var(double val, double *nobs, double *mean_x, double *ssqdm_x) nogil: """ remove a value from the var calc """ cdef double delta # Not NaN ...
0
## Problem I build dashboards on a “dev” instance, export them, and import the archive on the “prod” one; all via CLI. I grant access to these dashboards to certain roles using RBAC — i.e. I edit dashboard properties and add one (or more) user group(s) to the “Role” selector (e.g. `guest` in the example below): !...
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 any * I have reproduced the issue with at least the latest released version of superset * I have checked the issue tracker for the same issue and...
0
issue/a/a.go: package a /* static long long mod(long long a, long long b) { return a % b; } */ import "C" func F(a, b int64) int64 { return int64(C.mod(C.longlong(a), C.longlong(b))) } issue/b/b.go exactly the same except "package b" instead of "package a...
This issue perplexes me to the point that I'm not able to reproduce it using a minimal example. andlabs/ui#29 A bunch of people have reported in my GUI package (github.com/andlabs/ui) is spitting out numerous errors such as github.com/andlabs/ui(.text): undefined: github.com...
0
As long as current page is a Flutter page, the home button returns to the desktop, you can return from the launcher icon to the original page; but in the native Activity, then the state is lost, the return page is MainActivity ## Steps to Reproduce 1. In android native SecondActivity , press home key back to desk...
Let me preface this by saying I've looked at the 4 other reports of seg faults and none of their solutions have worked for me, so I'm not trying to post a duplicate. ## Logs My application constantly crashes in debug mode at random intervals and in random places within the app. This is the fault: F/...
0
I’m having an issue using the prediction probabilities for sparse SVM, where many of the predictions come out the same for my test instances. These probabilities are produced during cross validation, and when I plot an ROC curve for the folds, the results look very strange, as there are a handful of clustered points ...
Add a test for the following: A sample weight of 2 (3, 4, 5, n) on a given sample should have the same effect as placing this sample 2 (3, 4, 5, n) times in the data. This should hold for many estimators, especially those that fully optimize a convex loss.
0
**System information** * Have I written custom code (as opposed to using a stock example script provided in TensorFlow): yes, found here (https://github.com/viaboxxsystems/deeplearning-showcase/blob/tensorflow_2.0/flaskApp.py) * OS Platform and Distribution (e.g., Linux Ubuntu 16.04): MAC OSX 10.14.4 * Tensor...
_Please make sure that this is a bug. As per ourGitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:bug_template_ **System information** * Have I written custom code (as opposed to using a stock example script provided in TensorFlow): yes...
0
I would have expected this to work, but it does not: #[feature(macro_rules)]; macro_rules! test { () => { fn foo(); } } trait Foo { test!() } Currently fails with this error: test.rs:10:4: 10:8 error: unexpected token: `test`...
The following code produces an ICE (using the latest nightly) macro_rules! width( ($this:expr) => { $this.width.unwrap() } ); struct HasInfo { width: Option<usize> } impl HasInfo { fn get_size(&mut self, n: usize) -> usize { ...
0
When maximized and then exited, it saves the sizes and not the maximization. And it ends up opening un-maximized, but with the maximized sizes. **Correct behaviour should be:** If maximized, use the value of last resize before maximization, but also flag the maximization. On Windows, resizing due to Aero-Snap behav...
This error shows up when I save/close a file or for some files when I switch to that tab. v0.103.0 on Mac OS X 10.9.3 with the react editor enabled. Uncaught Error: spawn ENOENT util.js:682 exports._errnoException util.js:682 ChildProcess._handle.onexit child_process.js:857 (anonymous function...
0
when i use the javatype of LocalDateTime mapped to sql timestamp,the resultset can not call LocalDateTimeTypeHandler rightly to finish converting, framework throws ' java.sql.SQLFeatureNotSupportedException: getObject with type',i wonder why?
Please answer these questions before submitting your issue. Thanks! com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry '162887478624124928' for key 'PRIMARY' ### Which version of Sharding-Jdbc do you using? ### Expected behavior 不知道为啥会出现主键冲突的情况 ### Actual behavior ### S...
0
# Feature request ## Is your feature request related to a problem? Please describe. I was excited to see a static site generator in Next. I want to write a prototype of a site, which would end up using Next. I'd love the prototype to be static so I can zip it up and send to someone who isn't tech savvy unzip and ru...
There are many tags in the HTML which NextJS generates which contain absolute URLs. For example: href="/_next/blah" I've added selenium + chrome headless testing to my Next project, and it works fine when I test http://localhost:3000, but when I do a `next export`, and then try to to test `file:/...
1
Transferred from http://code.opencv.org/issues/4455 || Jens Garstka on 2015-07-01 08:32 || Priority: Normal || Affected: branch 'master' (3.0-dev) || Category: ml || Tracker: Bug || Difficulty: Easy || PR: || Platform: x64 / Linux ## SVM write/load problems with k...
##### System information (version) * OpenCV => 4.1.1 * Operating System / Platform => Windows 10 64bit * Compiler => Visual Studio 2019 16.2.0 ##### Detailed description I have an original image in green tones: ![raw](https://user- images.githubusercontent.com/42886604/62464462-570d2480-b795-11e9-8773-86ff...
0
hi, i have a dialog with `autoScrollBodyContent={true}` and it works on a desktop. but when opening the dialog on a mobile device (nexus6), the scrollbar is not on the right edge of the dialog it is about 1cm inside the dialog. when using the chrome-inspector you can simulate this behaviour with other small devices ...
### Problem description How can I make the Dialog scrollable in v1. I have a modal with a list in it, and the list goes off the page. I would like the ability to scroll down. I would like the scrollbar to be on the main browser window, rather than on the modal itself. ### Link to minimal working code that reproduce...
1
When I type in Chinese, the word choice box is alway stay in the top left corner of the screen instead of following the cursor.
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/...
1
Hi, * I use glide to load gif, it can be loaded and displayed in ImageView, but the display is not normal. * I use another open source project(GifDrawable) that also support gif, the gif can be loaded and displayed normally in ImageView. * Use glide and gifdrawable to load gif effect is as follows. Use glid...
**Glide Version:** 3.6.1 **Issue details:** While loading GIF's there is significant delay before showing **only** the second frame, and this happens only for the first loop, all the later loops goes with expected delay. So after doing some research, I thought it may be because Glide is resizing the frames, so I...
1
* VSCode Version: 1.2.0 * OS Version: Windows 10.0.10586 Steps to Reproduce: 1. Make the font size larger than default in user settings 2. Write code that causes IntelliSense to raise a tooltip 3. Notice the truncated text due to the tooltip not growing to fit the content ### Repro screenshot ![image](h...
Installing extensions and themes would be easier if there was a GUI to do so. It's currently somewhat hidden in the command palette, especially for users not familiar with similar editors.
0
Spinoff discussion of #1373, #3128 and #3228. We're pretty sure that we need to change the current way refs work (see above). However, the new ref callbacks are also not ideal because it relies on some imperative code and suffers from timing issues like all imperative life- cycles. It is also not very convenient wit...
In Internet Explorer, a disabled radio button will fire an onChange event when double clicked. The checked state does not change, but the onChange event fires nonetheless. http://jsfiddle.net/abzosdau/4/
0
Hi all For some reason Launcher duplicates items on the list. It shows the application in the search list but also it duplicates that same application by showing .lnk file from the menu start folder for the same app. Please see the screenshot below: ![Annotation 2020-05-19 184232](https://user- images.githubusercon...
Add tabs to each Fancy zone to allow multiple applications within each zone Adding tabs to each Zone will allow users to position multiple unrelated windows on limited screen real-estate. This is a must-have feature for PowerToys users with single screens, including laptops on the move. Add the capability that when...
0
when numpy is 1.11.3, distplot() is not working, but under numpy 1.11.1, it's working with warning: > Woking\path\lib\site-packages\statsmodels\nonparametric\kdetools.py:20: > VisibleDeprecationWarning: using a non-integer number instead of an integer > will result in an error in the future > y = X[:m/2+1] + np...
I can't get `kdeplot` or `distplot` to work with my `pd.Series` (or `np.array`) u = np.array([ 3.41959 , 1.79315 , 1.17229 , 1.59909 , 1.27337 , 1.21917 , 2.60591 , 2.0571 , 1.83865 , 1.94869 , 1.65421 , 1.67777 , 1.23781 , 1.46352 , 1.41791 , 2.00387 , 2.51076 , 1.59734 , 1.32982 , 1.89372 , 1.40614 ,...
1
**I'm submitting a ...** (check one with "x") [x] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ...
**I'm submitting a ...** (check one with "x") [x] bug report [ ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question **Current behavior** The problem happened only on IE. Af...
1
## Bug Report **For English only** , other languages will not accept. Before report a bug, make sure you have: * Searched open and closed GitHub issues. * Read documentation: ShardingSphere Doc. Please pay attention on issues you submitted, because we maybe need more details. If no response anymore and we c...
For English only, other languages we will close it directly. Please answer these questions before submitting your issue. Thanks! ### Which version of Sharding-Sphere do you using? 2.0.3 ### Which project do you using? Sharding-JDBC or Sharding-Proxy? Sharding-JDBC ### Expected behavior Sharding configuration i...
0
Describe what you were doing when the bug occurred: 1. Start profiling 2. End profiling 3. Iterate over commits using arrows and/or bar graph * * * ## Please do not remove the text below this line DevTools version: 4.2.1-3816ae7c3 Call stack: at chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/build/ma...
PLEASE INCLUDE REPRO INSTRUCTIONS AND EXAMPLE CODE I got this error when I click 'Ranked'. * * * ## Please do not remove the text below this line DevTools version: 4.0.4-3c6a219 Call stack: at chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:11441 at Map.forEach () at commitIndex (chrome...
1
Hi, One thing that I miss from Cypress is `@cypress/react`, which gives the ability to test react components in the browser easily. It is possible to write test that looks like this: import { mount } from '@cypress/react' import { createElement } from 'react'; // A simple react component...
guys, any plans to implement component testing for vue and react js applications. * * * ### Edit: From the maintainers. A beta just launched, which supports Vue, React, and Svelte, see here: https://playwright.dev/docs/test-components
1
Reporting a bug. Using two way binding - with the `ngModel` directive - will work on the development - unminified - version of angular2; I expect the `ngModel` to work as well on the minified angular2, but it crashes and burns. Working Minimal Example Non Working Minimal Example The difference between the two pl...
When using minified bundles with SystemJS, and a simple snippet like this <template ngFor #item [ngForOf]="items" #i="index"> <li>{{i}}</li> <li *ngIf="i % 2 == 0">number is even</li> </template> Will throw TypeError: this.directive_0...
1
NOTE: Only file GitHub issues for bugs and feature requests. All other topics will be closed. For general support from the community, see StackOverflow. To make bugs and feature requests more easy to find and organize, we close issues that are deemed out of scope for GitHub Issues and point people to StackOverfl...
The current .whl does not support python 3.6. Please update to support the latest version of python. Thanks! C:\WINDOWS\system32>python --version Python 3.6.0 C:\WINDOWS\system32>pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.1-cp35-cp35m-win_amd64.whl tensorflow-0.1...
1
NOTE: Only file GitHub issues for bugs and feature requests. All other topics will be closed. For general support from the community, see StackOverflow. To make bugs and feature requests more easy to find and organize, we close issues that are deemed out of scope for GitHub Issues and point people to StackOverfl...
The following commands were run on a Fedora 23 64 bits on Tensorflow master, but I get similar results on the 0.8 branch. Using Bazel 0.2.1 on a laptop without graphics card: $ bazel build -c opt --verbose_failures //tensorflow/tools/pip_package:build_pip_package INFO: Found 1 target... ERROR:...
1
Now that PR #6511 has been merged, self referential parent/child support is explicitly disabled. Self referential parent/child was never explicitly supported. It wasn't documented and no tests existed for this parent/child use case. A long time ago it used to work, but since 0.90 self referential parent/child has not...
Users can provide various intervals for the date histogram but application code doesn't know which interval was chosen at query time. Knowing this is particularly useful when building client-side visualizations where an axis is required or labels need to be generated.
0
show the code: axios.defaults.retry = 4; axios.interceptors.response.use(undefined, (err) => { console.log(err.config) }); result: ![image](https://user- images.githubusercontent.com/24989439/65499868-e8288e00-def0-11e9-8071-1dffdc10b84e.png) **Expected behavior** ![image](https...
So, if I understand it right, in 0.19.0 you've added `mergeConfig` And this function filter config and remove custom properties from it. It broke my solution for cancellation: How it works: const requestManager = new RequestManager(); const instance = axios.create(); requestManager.patchAx...
1
PLEASE INCLUDE REPRO INSTRUCTIONS AND EXAMPLE CODE * * * ## Please do not remove the text below this line DevTools version: 4.0.5-5441b09 Call stack: at chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:11441 at Map.forEach () at commitIndex (chrome- extension://fmkadmapgofadopljbjfkapdkoi...
PLEASE INCLUDE REPRO INSTRUCTIONS AND EXAMPLE CODE I got this error when I click 'Ranked'. * * * ## Please do not remove the text below this line DevTools version: 4.0.4-3c6a219 Call stack: at chrome- extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:11441 at Map.forEach () at commitIndex (chrome...
1
On Ubuntu 14.04: tkelman@nanosoldier4:~/Julia/julia-0.5$ ./julia -e 'versioninfo()' && make test-reflection Julia Version 0.5.0-dev+3719 Commit cc43988* (2016-04-23 09:07 UTC) Platform Info: System: Linux (x86_64-linux-gnu) CPU: Intel(R) Xeon(R) CPU E3-1241 v3 @ 3.50GHz WO...
A common idiom for testing if values in a collection `C` are unique is length(unique(C))==length(C) or variations, eg when the length `n` is known, length(unique(C))==n These show up in various tests, assertions, inner constructors. However, if the goal is only to test for uniqueness, ...
0
Importing from `three/examples/jsm/.../<module>` causes bundlers (tested with rollup) to include the library twice (or multiple times). For example, when doing `import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls'`, the bundler will follow the import and in the OrbitControls.js the imports come ...
##### Description of the problem In version R90 I have an atlas that is loaded/created with: new THREE.TextureLoader(manager).load(url, function(t){ //Upload to gpu renderer.setTexture2D(t, 0); //Frames is the atlas data. for (name in frames) { var frame...
0
I don't understand the compile toolchain very well, and I haven't yet gotten good profile info (see https://groups.google.com/d/msg/julia- dev/RKAahOwppNs/Kg0TFx_SBwAJ), but at least for the SubArray tests I'm guessing that this line, via `jl_compress_ast`, is an enormous bottleneck in compilation. I inserted a debug...
Hey all, Recently, I've made changes to Redis.jl to transition from v0.3 to v0.4. I'd like to tag the latest version so that users can stop getting deprecation warnings in their v0.4 code. Unfortunately, I've ran into an issue that I can't seem to resolve. This code was working under v0.3: https://github.com/jkaye2...
0
I am having trouble configuring the latest master branch (`dbe7ee0`). When I run `./configure`, I get: ERROR: [...]/tensorflow/tensorflow/contrib/session_bundle/BUILD:107:1: no such target '//tensorflow/core:android_lib_lite': target 'android_lib_lite' not declared in package 'tensorflow/core' defined ...
**System information** * Linux Ubuntu 16.04 * Python 3.6.7 * packages: logging 0.5.1.2, tensorflow 2.0.0-alpha0 When importing `tensorflow` any logging user-defined config is ignored and tf config is used instead. Here is an example where logging format and level is changed. Note that the `info` isn't printe...
0
Hi everyone, Sorry in advance if it's duplicated. Feel free to link me to the original issue # Bug report getInitialProps is called but doesn't return any props ## To Reproduce I'm using a combination of all of the examples listed below : * custom-server-express * with-next-css * with-next-routes * with...
When downloading, installing and running the Material UI example application, I am met with the following compile error: These dependencies were not found: * react-dom/lib/EventConstants in ./node_modules/react-tap-event-plugin/src/TapEventPlugin.js * react-dom/lib/EventPluginHub in ./node...
0
As pointed out in this stackoverflow question, `.offset` and `.repeat` are properties of a texture, not a material. Suppose, for example, a user wants to share a spritesheet across multiple materials. Currently that is not possible, since `offset` is a property of the texture, and can only be set once. Also, ma...
(Since docs are part of the repository, I'm assuming this is the right place to suggest this) Currently all internal links don't use href attribute, and as a result they can't be opened in a new tab with ctrl+click or right click, making the docs much harder to navigate.
0
In the following snippet `this` should be colorized ![image](https://cloud.githubusercontent.com/assets/172399/13001496/ad147ad6-d166-11e5-8986-4357fefee8bc.png) It is colorized when I use the monokai theme ![image](https://cloud.githubusercontent.com/assets/172399/13001499/cc18324c-d166-11e5-9f08-a408ff10009c.p...
* Open nodeAppInsightsTelemtryAppender.ts#40 * Notice broken colouring of comments inside contructor arguments ![screen shot 2016-02-14 at 18 00 03](https://cloud.githubusercontent.com/assets/1926584/13035008/ed1f36a4-d344-11e5-83df- caf715965c47.png) Other problematic languages with deep scope hierarchies: ...
1
`versioninfo()` julia> versioninfo() Julia Version 1.5.1 Commit 697e782ab8 (2020-08-25 20:08 UTC) Platform Info: OS: macOS (x86_64-apple-darwin19.5.0) CPU: Intel(R) Core(TM) m3-7Y32 CPU @ 1.10GHz WORD_SIZE: 64 LIBM: libopenlibm LLVM: libLLVM-9.0.1 (ORCJIT, skylak...
Not sure whether this is by design or something can be improved upon. myfunc(; x::Int64=1) = x + 1 myfunc(; y::Int64=1) = y + 1 Below are the results of calling these functions. julia> myfunc(x=1); ERROR: unrecognized keyword argument "x" julia> myfunc(y=2); The s...
1
This snippet: (Playpen link) #![allow(unstable)] extern crate test; fn main() { let a: Vec<u8> = Vec::with_capacity(::std::usize::MAX); ::test::black_box(a); } Causes the program to close with a SIGILL (Illegal instruction) error. I would have expected someth...
I get an ICE compiling this function: use std::num; use std::num::Int; /// Iterates the cumulative sum pub fn cumulative_sum<T, I>(iter: I) -> std::iter::Scan<'static, T, T, I, T> where T: Clone + num::Int + Add<T, T>, I: Iterator<T> { let z: T = num::Int::zero(); i...
0
**Jonathan Slate** opened **SPR-3464** and commented When loading a form using SimpleFormController, if the Object formBackingObject provides contains an Object that also exists in a list of Objects within the Map provided by referenceData, those two objects must be exactly equivalent (equals method) in order to ha...
**Manuel Aldana** opened **SPR-4239** and commented java.lang.Properties are bound to xml configuration: <props> <prop key="any.key">anyValue</prop> </props> a shorter, less verbose version would be better readable, for instance like following: <props> <prop key="any.key" value="anyValue"/> </props> *...
0
Invalid email with space between the userame and the @ will be treated as valid email "fakeEmail @fakeDomain.com" I found that the issue in: File: vendor/symfony/symfony/src/Symfony/Component/Validator/Constraints/EmailValidator.php Line No: 83 } elseif (!preg_matc...
before its checking for FILTER_VALIDATE_EMAIL but now its not checking even basic validations for valid email. like "kuldip pujara@gmail.com" it allow with space which must not allowed. we can use regular expression from following https://html.spec.whatwg.org/multipage/forms.html#valid-e-mail-address or we c...
1
# Environment Windows build number: 10.0.18362.175 Windows Terminal version (if applicable): 0.2.1715.0 Any other software: Visual Studio 2017 (I guess it fails with other VS versions) # Steps to reproduce Add this entry to `profile.json`: { "a...
# Environment Windows build number: [run "ver" at a command prompt] Windows Terminal version (if applicable): Any other software? Today I modified the Windows Terminal configuration file and wanted to create a Pwsh with the emoji title. However, I encountered some confusion in this p...
1
I have a page which have more than 50 checkbox, the response is slow when click checkbox. It seems be fixed when I add shouldComponentUpdate(). shouldComponentUpdate: function shouldComponentUpdate(nextProps, nextState) { return nextState.switched !== this.state.switched; },
In my project I'm having an issue that only appears on mobile. Couldn't reproduce that behavior on codesandbox though. There the popover behaves the same on PC and mobile. * I have searched the issues of this repository and believe that this is not a duplicate. ## Current Behavior Here's a link to codesandbox ex...
0
* I have verified that the issue exists against the `master` branch of Celery. * This has already been asked to the discussion group first. * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports. * I h...
# Checklist * I have verified that the issue exists against the `master` branch of Celery. * This has already been asked to the discussion group first. * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports....
0
**Original** module m { var z = x; var y = { a: x, x }; } **Expect** (function (m) { var z = m.x; var y = { a: m.x, x: m.x }; })(m || (m = {})); **Actual** (function ...
Please fill the following out: * Name: IDeliverable, Ltd. * Homepage url: http://www.ideliverable.com * Brand Guidelines/Licensing: N/A * Logo: http://www.ideliverable.com/Media/Default/Site/Logo-Full-Color-Transparent.svg > Example: > > Name: Microsoft > Homepage url: https://microsoft.com > Brand Gu...
1
ES 1.4 added support for Children aggregation, which is a really great feature. The next step would be to also support a Parent aggregation Here is a quick example of a typical use case: Let's say we've got 2 types, one containing Product information (name, description, categories, size, weight, etc) and another...
I understand that issue #9611 was closed regarding this: > Nested fields need to be queries with nested queries/filters, because > multiple documents can match and you need to be able to specify how these > multiple scores should be reduced to a single score. > — -- @clintongormley # Proposal I propose that, wh...
0
Happens on the latest master version (Channel master, v0.5.8-pre.98). This was tested with an Android emulator (Nexus 5), Android phone (Sony Xperia Z5 Compact) and Android tablet (Huawei Mediapad M3 lite). The documentation recommends wrapping the contents of an `AlertDialog` into a `ListView`: //...
## Steps to Reproduce 1. code : rect = Rect.fromCircle(center: center, radius: radius); angle = 160.0 * (-1); double startAngle = -math.pi / 2; double sweepAngle = 2 * math.pi * (angle / 360); print( 'angle === $angle --- $startAngle --- $sweepAngle ---...
0
# Environment Windows build number: 10.0.18363 PowerToys version: 0.18.0 PowerToy module for which you are reporting the bug (if applicable): PowerToys Run # Steps to reproduce 1. Open PT Run 2. Type Text 3. Select entry 4, Remove character from text in input field # Expected be...
Steps to repro: 1. Navigate to a really long path (beyond the search box size) 2. Do Ctrl+C to copy the file path 3. Paste the file path in search box 4. The shadow is misaligned ![image](https://user- images.githubusercontent.com/8364748/80645382-dfb4aa80-8a1f-11ea-993e-1461d14f4f12.png)
1
From support/bcc930f09fb511e399ae8f0476ae462c
In the example below atom finds the summer symbol but not the winter symbol. var winter = (function() { console.log('winter'); }); var summer = function() { console.log('summer'); }; ![screen shot 2014-03-04 at 11 52 10 am](https://camo.githubusercontent.com/13c7d46d0eb0271203a7f0996bfb2bb79d25df90b1ac490c...
1
**Airflow version: 1.10.12** import random import string import requests from airflow import DAG from airflow.contrib.sensors.python_sensor import PythonSensor from airflow.operators.dummy_operator import DummyOperator from datetime import datetime dag = DAG( ...
**Apache Airflow version** : `2.0.0` **Kubernetes version (if you are using kubernetes)** (use `kubectl version`): Client Version: version.Info{Major:"1", Minor:"19", GitVersion:"v1.19.3", GitCommit:"1e11e4a2108024935ecfcb2912226cedeafd99df", GitTreeState:"clean", BuildDate:"2020-10-14T12:50:19Z", GoV...
1
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior When I use `noWrap` on Typography, it should not cut my "g" off, just like without `noWrap` ![image](https://user- images.githubusercontent.com/5027156/31172909-b4b50b16-a905-11e7-8c70-cf675fcfd134.png...
I was trying to install material-ui on an app under with `"react": "^0.14.0-beta3"`. However the package.json in master and alarmingly also in the v0.11 branch seem to have `"react": ">=0.13"` as a peerDependency. npm ERR! peerinvalid The package react does not satisfy its siblings' peerDependencie...
0
Hi guys, I need to enable HA for controller currently. I decided to use kops app and kubernetes version 1.4.3. Currently I have 3 controllers (each in different AZ), however I need to have rest of stuff located only in one AZ, ie. zone C. In this situation leader election marked master from zone B as a leader and...
**What keywords did you search in Kubernetes issues before filing this one?** (If you have found any duplicates, you should instead reply there.): perma-failed deployment **Kubernetes version** (use `kubectl version`): v1.6.0-alpha.0.191+a132e5c5800108 **What happened** : Shouldn't count the time in pause ph...
0
Version: 1.0.0 OS Version: Microsoft Windows NT 10.0.18363.0 IntPtr Length: 8 x64: True Date: 08/05/2020 12:14:21 Exception: System.ObjectDisposedException: Cannot access a disposed object. Object name: 'Timer'. at System.Timers.Timer.set_Enabled(Boolean value) at System.Timers.Timer.Start() at Po...
Popup tells me to give y'all this. 2020-07-31.txt Version: 1.0.0 OS Version: Microsoft Windows NT 10.0.19041.0 IntPtr Length: 8 x64: True Date: 07/31/2020 17:29:59 Exception: System.ObjectDisposedException: Cannot access a disposed object. Object name: 'Timer'. at System.Timers.Timer.set_Enabled(Boo...
1
Allow opening additional windows (BrowserWIndow) to be able to work on multi- monitor setups. See also: * Detachable split-view * Ability to have a "folder" open over multiple windows (like Visual studio) * Multiple windows, same folder
Hi, I suggest floating windows option for: * Terminal * Debug console * Problems * Output Eventually: * tabs * Explorer / search / debug / git / extensions This way we could take advantage of large screen space and / or multi monitors. Having to constantly switch between the various windows is not ...
1
## Exception Version: 1.0.0 OS Version: Microsoft Windows NT 10.0.19041.0 IntPtr Length: 8 x64: True Date: 08/03/2020 23:27:53 Exception: System.ObjectDisposedException: Cannot access a disposed object. Object name: 'Timer'. at System.Timers.Timer.set_Enabled(Boolean value) at System.Timers.Timer.S...
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
##### System information (version) * OpenCV => 3.4 * Operating System / Platform => Windows 7 64 Bit * Compiler => python 3.5.5 / IPyhton 6.5 ##### Detailed description I am reading videostream from a webcam and that works fine for raw YUY2 format, the default. But i want to do some testing between YUY2 an...
##### System information (version) * OpenCV => 3.1.0 * Operating System / Platform => Windows 7 64 Bit * Compiler => Python ##### Detailed description Trying to switch camera output from YUY2 to MJPG but it does not work. MJPG mode is working in other software packages. ##### Steps to reproduce ...
1
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for a feature request that matches the one I want to file, without success. ### Electron Version ^11.0.1 ### What oper...
* electron version: 1.6.2 * os: windows 7 Okay, here's a problem I've met: If I set the BrowserWindow with option "transparent: true", the function ".isMaximized()" always return the "false" value, which means I cant reset the window into its initial size.
0
## 🐛 Bug RuntimeError: Exporting the operator affine_grid_generator to ONNX opset version 11 is not supported. Please open a bug to request ONNX export support for the missing operator. ## To Reproduce Steps to reproduce the behavior: 1. Just trying to convert this pytorch project in link to onnx model, using ...
import torch import torch.nn as nn class Model(nn.Module): def __init__(self): super(Model, self).__init__() def forward(self, theta, size): return torch.nn.functional.affine_grid(theta, size, align_corners=None) model = Model() theta =...
1
# Checklist * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports. * I have checked the pull requests list for existing proposed fixes. * I have checked the commit log to find out if the bug was alrea...
# Checklist * I have verified that the issue exists against the `master` branch of Celery. * This has already been asked to the discussion group first. * I have read the relevant section in the contribution guide on reporting bugs. * I have checked the issues list for similar or identical bug reports....
0
The link on the 1.0 documentation "View the latest version here" should point to the 1.1 version of the same page (if it exists). Currently, it just navigates to the root page (http://kubernetes.io/docs).
Getting messages like the following repeatedly in the log: W0129 04:35:07.724460 1 aws.go:1489] Error authorizing security group ingressInvalidPermission.Duplicate: the specified rule "peer: sg-fd3fc79a, ALL, ALLOW" already exists It seems the controller should just be satisfied that the ru...
0
@ symbol is not working with German keyboard layout. Nothing appears in editor, neither with hardware, nor with virtual keyboard. Works in all other software. There is no other keybinding set for this in Atom, as far as i can see. If i switch to English layout, it works, but screws all the other symbols, obviously....
> Atom doesn't handle keyboards with Right Alt (i.e. AltGr). This is a very > basic mistake. I have a Hungarian keyboard layout, I can only write specific > keys like "|" (pipe) by pressing Right Alt (AltGr) and then W, which Atom > doesn't recognize and treat like Alt-W or something? > The point is there are some...
1
# Bug report ## Describe the bug I have two page components PageA and PageB. PageA doesn't use antd components but PageB does. The style file of PageB imported antd's css file: style-b.less @import '~antd/dist/antd.css'; // ...other styles PageB: import './style-b.less' ...
In this small repo I've illustrated `next-css` not working with SSR, this is a blocker from my team moving off of https://github.com/traveloka/styled-modules which we're super eager to do. Great work on Next.js 5.0! Can't wait to fully migrate to it :) I would mind if Next.js apps had to have a custom `_document.js...
1
### Affected Version 0.20.0 ### Description Ingesting to same Datasource from 2 different Kafka clusters with exact same topic name/specs overwrites previous Supervisor. * Steps to reproduce the problem 1. Create 1st Kafka spec and submit; 2. Create 2nd Kafka spec and submit with exact same spec as 1st, bu...
Opentsdb logs as follows: 20:23:04.230 WARN [PutDataPointRpc.execute] - Invalid tag value ("bd-prod-rt- olap0:8082"): illegal character: :: metric=query.cpu.time ts=1527769336 value=1101 service=druid/broker host=bd-prod-rt-olap0:8082 type=segmentMetadata dataSource=accesslog-tranquility-seller-log tag value shoul...
0
**TypeScript Version:** nightly (1.9.0-dev.20160429) **Code** const foo = { _foo: 'bar', get foo() { // <- 'foo' implicitly has return type 'any' because it does not have a return type annotation and is referenced directly or indirectly in one of its return expressions. re...
**TypeScript Version:** 1.8.9 **Code** interface Window { URL; } **Actual behavior:** When upgrading typescript versions, new definitions were added to lib.d.ts, and these new definitions cause conflicts with definitions we had in our project. This makes it annoying to upgrade typesc...
0
## Current (minimized) example of breakage: (courtesy of youknowone; see comments below) fn main() { let _a = [0, ..1 as uint]; } ## Original Report: The following code causes the crash enum State { ST_NULL, ST_WHITESPACE } priv fn SomeFunction () -> StateTable { Stat...
Compiling the following program leads to an internal compiler error: fn main(++args: ~[~str]) { let n = 1; let a = ~[0, ..n]; } Trace: tmp % RUST_LOG=rustc=0,::rt::backtrace rustc fail.rs rust: task failed at 'Unsupported constant expr', /home/philipp/programmin...
1
![screen shot 2015-08-19 at 4 55 58 pm](https://cloud.githubusercontent.com/assets/11863735/9372439/4dc233ce-4693-11e5-8307-886f53602bff.png) Challenge http://freecodecamp.com/challenges/waypoint-comment-your-javascript- code has an issue. Please describe how to reproduce it, and include links to screenshots if poss...
As discussed on the chat there is two annoying things making me want to smash my mac. 1. Everytime I change the code inside editor, left sidebar scroll up, and effectively making me scroll down as I want to see "objectives" 2. Exiting from the ""(quotes) could be easier then clicking left key, shortcut alt+spac...
1