text1
stringlengths
0
536k
text2
stringlengths
0
536k
label
int64
0
1
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" error: line not found in debugger output: static void [...]main(); command: gdb -quiet -batch -nx -command=x86_64-unknown-linux-gnu/test/debug-info/limited-debuginfo.debugger.script x8...
<p dir="auto">Apparently new versions of gdb (I'm seeing this with 7.7) changed the output of of <code class="notranslate">info functions</code>.<br> E.g. instead of <code class="notranslate">static void limited-debuginfo::main();</code> it now outputs <code class="notranslate">static void limited-debuginfo::main(void)...
1
<p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong><br> BUG : <a href="https://stackoverflow.com/questions/48695579/how-to-remove-eval-and-function-constructor-from-webpack-build-to-avoid-csp-issu" rel="nofollow">Stackoverflow Link</a></p> <p dir="auto"><strong>What is t...
<p dir="auto">I am currently migrating webpack.config.js from webpack 3 to webpack 4.</p> <p dir="auto">The application uses the style-loader useable feature to load themes as follows:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="loader = re...
0
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [30]: df = pd.DataFrame(dict(a=['A', 'B', 'C'], b=[2, 3, 4])) In [31]: plt.scatter(df['a'], df['b']) Out[31]: &lt;matplotlib.collections.PathCollection at 0x7f17e17b41d0&gt;"><p...
<p dir="auto">This is another issue I've found in code that used to work:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import pandas as pd tm = pd.DatetimeIndex(pd.to_datetime([&quot;2014-01-01 10:10:10&quot;]), tz='UTC').tz_convert('Europe/...
0
<p dir="auto">Hi,<br> In some devices (Moto X) do not download correctly, like the screenshot attached.<br> When i skipMemoryCache(true) it works, because Glide download the image again.<br> I already use asBitmap() with imageDecoder() and the problem still occur.</p> <p dir="auto">But, in my other device (Nexus 4) thi...
<p dir="auto">I load picture with the code</p> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Glide.with(mContext).load(caseDetail.getPicInfo().getImage()).crossFade(250).placeholder(R.color.pic_load).error(R.color.pic_load).into(...
1
<p dir="auto"><strong>Migrated issue, originally created by Johnathon Hege</strong></p> <p dir="auto">It appears that insert().from_select(), when passed a CTE, doesn't generate syntactically valid MS SQL code. The code it generates (using the recursive "parts" example in the CTE documentation) looks like:</p> <div cla...
<p dir="auto"><strong>Migrated issue, originally created by Michael Bayer (<a href="https://github.com/zzzeek">@zzzeek</a>)</strong></p> <p dir="auto">apparently its all possible now. might as well make a new syntax bonanza out of it:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-aut...
1
<h2 dir="auto">Question</h2> <p dir="auto">Upgrade 4.1.1 to 5.2.1, I got an error</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'myTestController'...
<h2 dir="auto">Bug Report</h2> <h3 dir="auto">Which version of ShardingSphere did you use?</h3> <p dir="auto">v5.2.0</p> <h3 dir="auto">Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy?</h3> <p dir="auto">ShardingSphere-JDBC</p> <h3 dir="auto">Steps to reproduce the behavior, such as: SQL to execu...
1
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&g...
<p dir="auto">This will let animations work as a no-op on the server side when the AnimationModule included in the client app module.</p>
1
<p dir="auto">Aggregations, Filters, Builders all have some form of a Bounding Box implementation. This task is to consolidate all of these duplicate "rogue" classes into one (possibly in GeoUtils).</p> <p dir="auto">Note: this consolidation could eventually be replaced w/ an integration of the Apache SIS geometry pack...
<p dir="auto">Validation of index templates has proven difficult to get right due to how multiple templates that might be invalid on their own can result in a valid template in the end, for instance if two templates match a given index name and one of them is providing analysis index settings while the other one is pro...
0
<p dir="auto">A binary compiled with the recent master (or possibly much older master) and <code class="notranslate">extern mod native;</code> fails to run in Windows XP due to the missing symbols including <code class="notranslate">CreateSymbolicLinkW</code>, which are supported since <a href="http://msdn.microsoft.co...
<p dir="auto">I've made some investigation recently, and found that, there are only two APIs which are not supported by Windows XP, throughout the repo tree. There are:</p> <ul dir="auto"> <li>CreateSymbolicLinkW, only used by native::io::file::symlink()</li> <li>GetFinalPathNameByHandleW, only used by native::io::file...
1
<p dir="auto">This is really a bad thing for packages that are intended to be installed globally, and can be a security issue. It isn't in this case because this build was done inside a container + chroot and the RPATH is a directory in / that won't exist.</p> <div class="snippet-clipboard-content notranslate position-...
<p dir="auto">This should compile but no longer does:</p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="use std::cell::RefCell; trait Foo { fn foo(&amp;self) {} } impl&lt;T&gt; Foo for T where T: Clone {} struct Bar; impl...
0
<h4 dir="auto">Code Sample, a copy-pastable example if possible</h4> <p dir="auto">import pandas as pd</p> <p dir="auto">In [1]: df = pd.DataFrame([1,1,1,1])</p> <p dir="auto">In [2]: pd.rolling_window(df, window=[1,1], mean=False)<br> C:\Users\login\AppData\Local\Continuum\Anaconda3\lib\site-packages\spyderlib\widgets...
<p dir="auto">xref <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="145203446" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/12765" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/12765/hovercard" href="https://...
1
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues?q=is%3Aissue">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="au...
<h1 dir="auto">Bug report</h1> <h2 dir="auto">Describe the bug</h2> <p dir="auto">In development mode, the entire application works fine, but in the production assembly, the main page is not initialized. I get html, index.js, but the react is not initialized<br> There are no errors in the console.<br> The problem is on...
0
<p dir="auto"><strong>I'm submitting a ...</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[X] bug report [ ] feature request [ ] support request"><pre class="notranslate"><code class="notranslate">[X] bug report [ ] feature request...
<p dir="auto">See example: <a href="http://plnkr.co/edit/9GdLbXM0mh5zHPKhcwCL?p=info" rel="nofollow">http://plnkr.co/edit/9GdLbXM0mh5zHPKhcwCL?p=info</a></p> <p dir="auto">Both of these should parse correctly:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-...
1
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia&gt; a=zeros(1,1); b = reshape(a,1); push!(b,1); b[1]=-1; a,b ([0.0], [-1.0, 1.0])"><pre class="notranslate"><code class="notranslate">julia&gt; a=zeros(1,1); b = reshape(a,1); push!(b,1); b[1]=-...
<p dir="auto">Consider the following example:</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="xmat = randn(5,5) xvec = reshape(xmat, 25) push!(xvec, 3) xvec[1] = 0.0 xmat[1] # not zero"><pre class="notranslate">xmat <span clas...
1
<h2 dir="auto">🐛 Bug</h2> <p dir="auto">The following error</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="RuntimeError: Could not export Python function call 'type'"><pre class="notranslate"><code class="notranslate">RuntimeError: Could no...
<h2 dir="auto"><g-emoji class="g-emoji" alias="rocket" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f680.png">🚀</g-emoji> Feature</h2> <p dir="auto">Allow using of type() to get type string of a Python object in TorchScript</p> <h2 dir="auto">Motivation</h2> <p dir="auto">type() is commonl...
1
<p dir="auto">Uncaught Error: EACCES, open '/home/eduardo/.atom/compile-cache/cson/5af7724b023a6274b520f79f04fb798a67319ca7.json'</p> <p dir="auto"><strong>Atom Version</strong>: 0.153.0<br> <strong>System</strong>: linux 3.13.0-40-generic<br> <strong>Thrown From</strong>: Atom Core</p>
<p dir="auto">When I open files of UTF-16LE, ATOM magically decodes only 7-bit ASCII characters but no other characters are decoded. I think there are many \0 characters on the file so that ATOM can detect UTF-16 in better way.<br> Furthermore, even with UTF-16LE files with BOM could not be loaded correctly :(</p>
0
<h1 dir="auto">What I'm doing</h1> <p dir="auto">Trying to estimate the emotion of tweets using <a href="https://huggingface.co/cardiffnlp/twitter-roberta-base-emotion" rel="nofollow">https://huggingface.co/cardiffnlp/twitter-roberta-base-emotion</a></p> <h1 dir="auto">The error</h1> <p dir="auto"><code class="notransl...
<h3 dir="auto">System Info</h3> <p dir="auto">transformers==4.20.1<br> torch==1.11.0+cu113<br> Python 3.9.13</p> <h3 dir="auto">Who can help?</h3> <p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/patrickvonplaten/hovercard" data-octo-click="hovercard-link-click" da...
0
<p dir="auto">I have noticed on several websites, that exposed functions are not working. Below is a working example of this issue on one URL. If you need more URLs where this occurs, just comment and I'll provide.</p> <h3 dir="auto">System info</h3> <ul dir="auto"> <li>Playwright Version: Version 1.32.3</li> <li>Opera...
<p dir="auto">In Playwright's doc, there is great mentioning on Page Object Model. However, when I try to follow this model (using TypeScript), I encounter a problem. For common page components, like menu or navigation bar, which appreas on every page on my website, if I create web elements for them in each page object...
0
<h4 dir="auto">Failed to format x-axis as Timestamp</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import numpy as np import pandas as pd import matplotlib.pyplot as plt ts = pd.Series(np.random.randn(1000), index=pd.date_range('1/1/2000', pe...
<p dir="auto">Given the feedback we have got (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="271948289" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/18153" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/1815...
1
<h3 dir="auto">Describe your issue.</h3> <p dir="auto">In the <code class="notranslate">cp310-macosx_arm64</code> test on cirrus-ci there are 14 failing tests in scipy.stats.<br> <a href="https://cirrus-ci.com/task/6051468460425216" rel="nofollow">https://cirrus-ci.com/task/6051468460425216</a></p> <h3 dir="auto">Repro...
<h3 dir="auto">Describe your issue</h3> <p dir="auto">Several statistical distribution methods emit warnings stemming from Boost. This issue tracks the status of all of them.</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code cl...
1
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-create-a-form-element#?solution=%3Clink%20href%3D%22http%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DLobster%22%20rel%3D%22stylesheet%22%20type%3D%22text%2Fcss%22%3E%0A%3Cstyle%3E%0A%20%20.red-text%20%7B%0A%20%20%20%20color%3A%20red%3B%0...
<p dir="auto">I think I wrote correctly but it doesn't work like I thought :(<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/13378727/10334974/3089e878-6d18-11e5-8f89-d9420cb51a43.jpg"><img src="https://cloud.githubusercontent.com/assets/13378727/10334974/3089...
1
<p dir="auto">As with today's command line or powershell, it is possible to go to the address bar in the file explorer and type 'cmd' or 'powershell' and it would open in the current directory location.</p> <ol dir="auto"> <li> <p dir="auto">This feature request is about allowing the same behavior by typing 'terminal' ...
<h1 dir="auto">Summary of the new feature/enhancement</h1> <p dir="auto">This might be related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="451765129" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1133" data-hovercard-type="issue...
0
<ul dir="auto"> <li>Deno: v0.35.0</li> </ul> <p dir="auto"><code class="notranslate">.d.ts</code> file can't be compiled when it is executed from CLI.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ deno empty.d.ts Compile file:///Users/kero...
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="❯❯❯ cat types.d.ts export interface HelloWorld {} ❯❯❯ cat mod.ts export * from &quot;./types.d.ts&quot;; ❯❯❯ deno info mod.ts error: Failed to get compiled source code of file:///m...
1
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[X ] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&...
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&g...
1
<p dir="auto">I created a form without labels and tried to use the optional success/warning/error icons and noticed that they were not positioned correctly:</p> <p dir="auto"><a href="http://jsfiddle.net/9DSQZ/" rel="nofollow">http://jsfiddle.net/9DSQZ/</a></p> <p dir="auto">It seems as though the positioning of these ...
<p dir="auto">When using the has-feedback class on a form and if the label on the form group is not specified then it does not render correctly.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;form&gt; &lt;div class=&quot;form-group has...
1
<h2 dir="auto">Feature request</h2> <p dir="auto"><strong>What is the expected behavior?</strong></p> <p dir="auto">If I have the following,</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import('test.js')"><pre class="notr...
<h1 dir="auto">Bug report</h1> <p dir="auto"><strong>What is the current behavior?</strong><br> Throughout the webpack code, md4 is used as has function. md4 is deprecated, and disabled by default in openssl-3.0.0+ (<a href="https://www.openssl.org/docs/manmaster/man3/MD4_Final.html" rel="nofollow">https://www.openssl....
0
<p dir="auto">Uncaught TypeError: Cannot read property 'slice' of undefined</p> <p dir="auto"><strong>Atom Version</strong>: 0.162.0<br> <strong>System</strong>: linux 3.13.0-43-generic<br> <strong>Thrown From</strong>: Atom Core</p> <h3 dir="auto">Steps To Reproduce</h3> <p dir="auto">I have undone some things (ctrl +...
<h3 dir="auto">Steps To Reproduce:</h3> <ul dir="auto"> <li>Create an __ init __.py in a python package</li> <li>Try to add a few new lines by typing enter (I can't have more than two lines)</li> </ul> <h3 dir="auto">Error</h3> <p dir="auto">Uncaught TypeError: Cannot read property slice of undefined <strong>Atom Ver...
1
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I tried using the <code class="notranslate">@types/connect-mongo</code> package and had problems.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class...
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tkrotoff/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tkrotoff">@tkrotoff</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-h...
0
<p dir="auto">This line of code</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="n=512; L=rand(n,n); z=rand(n); b=L\z;"><pre class="notranslate"><code class="notranslate">n=512; L=rand(n,n); z=rand(n); b=L\z; </code></pre></div> <p dir="auto">ru...
<p dir="auto">Hello,<br> the sum of two symmetric matrices should be flagged as Hermitian<br> and this seems not the case now.<br> Here is an example (Julia Version 1.1.0).<br> The same thing happens when P and Q are complex and also for Symmetric matrices.</p> <p dir="auto">julia&gt; P<br> 3×3 LinearAlgebra.Hermitian{...
0
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/incubator-dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list...
<ul dir="auto"> <li>[<g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png">✔</g-emoji> ] I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li>[✔...
0
<h2 dir="auto"><g-emoji class="g-emoji" alias="information_source" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2139.png">ℹ</g-emoji> Computer information</h2> <ul dir="auto"> <li>PowerToys version: 0.20.1</li> <li>PowerToy Utility: PowerTools Run</li> <li>Running PowerToys as Admin: Yes</li...
<p dir="auto">I was wondering if you guys wanted to see another little utility that I made for myself which is actually surprisingly useful.</p> <p dir="auto">It's a screenshot utility which is similar to a recently added snap feature in windows but I made it specifically to be as unobtrusive and light-weight as possib...
0
<p dir="auto">I've tried to run the setup code in the tutorial, but I met some confusing running errors. I'm new to tensorflow, so I have no idea how to deal with it. Could anybody help me fix this problem? Thanks a lot!</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir=...
<p dir="auto">This is a duplicate request from pytorch issue, which I even reuse their issue title<br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="275285052" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/3790" data-hovercard-type="iss...
0
<h3 dir="auto">Apache Airflow version</h3> <p dir="auto">2.3.1 (latest released)</p> <h3 dir="auto">What happened</h3> <p dir="auto">I have added a new task to an existsting workflow (DAG), where the other tasks already had previous runs.<br> When I added the new task, the grid became inaccessible, because it wanted to...
<h3 dir="auto">Apache Airflow version</h3> <p dir="auto">Other Airflow 2 version</p> <h3 dir="auto">What happened</h3> <p dir="auto">Airflow 2.3.3.<br> Task instance failures produce duplicates in "task_fail" table for this constraint (dag_id, task_id, run_id, map_index).</p> <h3 dir="auto">What you think should happen...
0
<p dir="auto">The error reported when starting the app again:</p> <p dir="auto">Version: 1.0.0<br> OS Version: Microsoft Windows NT 10.0.19041.0<br> IntPtr Length: 8<br> x64: True<br> Date: 09/23/2020 16:20:06<br> Exception:<br> System.ObjectDisposedException: Cannot access a disposed object.<br> Object name: 'Timer'.<...
<p dir="auto">Popup tells me to give y'all this.</p> <p dir="auto"><a href="https://github.com/microsoft/PowerToys/files/5009460/2020-07-31.txt">2020-07-31.txt</a></p> <p dir="auto">Version: 1.0.0<br> OS Version: Microsoft Windows NT 10.0.19041.0<br> IntPtr Length: 8<br> x64: True<br> Date: 07/31/2020 17:29:59<br> Exce...
1
<p dir="auto">English is good but I can't type anything with Korean. I can copy and paste the text, but cannot type it. It feels like it just doesn't support Korean input. I can see text output so maybe it would not be a problem with fonts.</p> <h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notra...
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 18950 Windows Terminal version (if applicable): 0.3 Any other software? Python, Firefox, Visual Studio, etc. They shouldn't impact this problem."...
0
<h5 dir="auto">Description of the problem</h5> <p dir="auto">In creating a shadow for one scene, the basic processes include creating an available light, a cast shadow object, a receive shadow object. The problem I met is in the light's part.</p> <p dir="auto">I create a spotlight with specifying its target to be a cub...
<p dir="auto">Hi!<br> I'm interested in translating the documentations into French after noticing some of my students are sometimes struggling with English terms.</p> <p dir="auto">I wanted to know if there was a specific process for that and also a way to link a version of the translate page to the English one.<br> I ...
0
<p dir="auto">We ran into an issue with keep alives not working. We were using the <code class="notranslate">AutomaticKeepAliveClientMixin</code> in an abstract <code class="notranslate">State</code> class. Because of the <code class="notranslate">@mustCallSuper</code> annotation, we knew to call <code class="notransla...
<p dir="auto">Flutter version: Very recent master build</p> <p dir="auto">Happens in the Android Emulator (with Google Keyboard) and on a real Android device (with Sony keyboard). I'm not sure about iOS.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent....
0
<p dir="auto">by <strong>fuzxxl</strong>:</p> <pre class="notranslate">The following code works under Go 1.2 but fails to compile with the most recent go tip (4b3cdcb02f2d). package cgotest /* #pragma pack(1) struct foo { char c; int x; }; */ import "C" import "unsafe" func foo(f *C.struct_foo) int { ret...
<p dir="auto">by <strong><a href="mailto:justin@fathomdb.com">justin@fathomdb.com</a></strong>:</p> <pre class="notranslate">I'm seeing not-great TLS performance; enabling the ClientSessionCache seems to help. But it looks like even when resuming a session, we still call processCertsFromClient, and do an (expensive) v...
0
<p dir="auto">I am now trying to run playwright with firefox in aws lambda. My lambda is deployed as docker container<br> Playwright is working well with docker and firefox on my local, but I can't find a way how to run this on lambda with docker.</p> <div class="snippet-clipboard-content notranslate position-relative ...
1
<h3 dir="auto">What problem does this feature solve?</h3> <p dir="auto">If you have a duplicate key in v-for or a key that isn't a primitive type, you get a helpful warning in the console in development mode. But if you spell the key name wrong <code class="notranslate">:key="object.typ"</code> instead of <code class="...
<h3 dir="auto">Version</h3> <h3 dir="auto">Reproduction link</h3> <p dir="auto"><a href="https://codesandbox.io/embed/vue2-sfc-playground-forked-32ii7p?fontsize=14&amp;hidenavigation=1&amp;theme=dark" rel="nofollow">codesandbox.io</a></p> <h3 dir="auto">Steps to reproduce</h3> <div class="highlight highlight-source-js ...
0
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues?q=is%3Aissue">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="au...
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues?q=is%3Aissue">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="au...
0
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/incubator-dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list...
<p dir="auto">Come up with some design and implementation for dubbo util support. The purpose of this enhancement is to provide utility methods which can help dubbo user to use and achieve the better API experience without enforcing service implementation to provide those support while they write service.</p> <p dir="a...
0
<p dir="auto">When using nav-justified, and narrowing the window everything responds nicely, but if you widen the window, the nav items don't return to their original size. You can actually see this in the example page.</p> <p dir="auto"><a href="http://getbootstrap.com/examples/justified-nav/" rel="nofollow">http://ge...
<p dir="auto">The justified nav example (<a href="http://getbootstrap.com/examples/justified-nav" rel="nofollow">http://getbootstrap.com/examples/justified-nav</a>) collapses perfectly when the screen is narrowed, but when the screen is expanded it get wonky.<br> <a target="_blank" rel="noopener noreferrer nofollow" hr...
1
<p dir="auto"><strong>I'm submitting a ...</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submi...
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&g...
1
<p dir="auto">by <strong>Vova616</strong>:</p> <pre class="notranslate">What steps will reproduce the problem? foo.c: #include "_cgo_export.h" void test() { Test(1,2,3); } foo.go: package main //void test(); import "C" import "fmt" //export Test func Test(val C.int, val2 C.double, val3 C.double) { fmt.Print...
<pre class="notranslate">The spec at the moment permits _ methods in signatures, like: type A interface{ _() } and such interfaces cannot be implemented, per a prior assessment of this problem (see <a href="https://golang.org/issue/5691" rel="nofollow">issue #5691</a>). That said, there are open questions related ...
0
<p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/ci-kubernetes-e2e-gci-gke-staging-parallel/1263/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/ci-kubernetes-e2e-gci-gke-staging-parallel/1263/</a></p> <p dir="auto">Failed: DumpClusterLogs {e2e.go...
<p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/ci-kubernetes-e2e-aws/1075/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/ci-kubernetes-e2e-aws/1075/</a></p> <p dir="auto">Failed: DumpClusterLogs {e2e.go}</p> <div class="snippet-clipboard-conten...
1
<p dir="auto">Given this:</p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="struct S; impl Drop for S { fn drop(&amp;mut self) { println!(&quot;Dropping S&quot;); panic!(&quot;DIE&quot;); } } struct T; i...
<p dir="auto">The following standalone struct, when compiled, generates the assertion below.</p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="#[deriving(PartialEq)] struct Foo { bar:str }"><pre class="notranslate"><span class=...
0
<h3 dir="auto">Preflight Checklist</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project...
<h3 dir="auto">Preflight Checklist</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project....
0
<p dir="auto"><strong>Description</strong></p> <p dir="auto"><strong>Use case / motivation</strong></p> <p dir="auto">Hi, Airflow team<br> This issue is not related to the Airflow feature, but to the GitHub action control.<br> I am talking with the GitHub Action team, as I noticed, sometimes, the ASF GitHub action ha...
<h3 dir="auto">Apache Airflow version</h3> <p dir="auto">2.2.3 (latest released)</p> <h3 dir="auto">What happened</h3> <p dir="auto">I have tried to schedule a dag to run every 5 mins. However at time 10:57am the dag looks like the below and I would have assumed the dag should have been triggered.<br> <a target="_blank...
0
<p dir="auto">Challenge <a href="https://www.freecodecamp.com/challenges/nest-an-anchor-element-within-a-paragraph#?solution=%0A%3Clink%20href%3D%22https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DLobster%22%20rel%3D%22stylesheet%22%20type%3D%22text%2Fcss%22%3E%0A%3Cstyle%3E%0A%20%20.red-text%20%7B%0A%20%20%20%20col...
<p dir="auto">Challenge <a href="http://beta.freecodecamp.com/en/challenges/applied-accessibility/make-elements-only-visible-to-a-screen-reader-by-using-custom-css" rel="nofollow">make-elements-only-visible-to-a-screen-reader-by-using-custom-css</a> has an issue.<br> User Agent is: <code class="notranslate">Mozilla/5.0...
0
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-sift-through-text-with-regular-expressions" rel="nofollow">http://www.freecodecamp.com/challenges/waypoint-sift-through-text-with-regular-expressions</a> has an issue. Please describe how to reproduce it, and include links to screenshots i...
<p dir="auto">In order to pass the test for this waypoint, the comment for the slash-start-start-slash type of commenting has to be on the same line as the first slash-star, otherwise it doesn't work.<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/5831309/9332...
0
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list-item"><in...
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list-item"><in...
0
<p dir="auto">now that we removed <code class="notranslate">sandbox</code> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="165914680" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/13670" data-hovercard-type="pull_request" data-hoverc...
<p dir="auto">related <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="17655872" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/4468" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/4468/hovercard" href="https://...
0
<p dir="auto">to simple windows-maxsize -&gt; page.windows_maxmize() like selenium;</p>
<p dir="auto">Selenium feature: <a href="https://www.selenium.dev/selenium/docs/api/py/webdriver_remote/selenium.webdriver.remote.webdriver.html#selenium.webdriver.remote.webdriver.WebDriver.maximize_window" rel="nofollow">https://www.selenium.dev/selenium/docs/api/py/webdriver_remote/selenium.webdriver.remote.webdrive...
1
<p dir="auto">The documentation says very little about the <code class="notranslate">priority</code> attribute:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="priority (int): The task priority, a number between 0 and 9. Defaults to the :attr...
<h1 dir="auto">Checklist</h1> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Enhancement%22+-label%3A%22Category%3A+...
0
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/include\thrust/detail/allocator/allocator_traits.inl(101): error C2065: 't': undeclared identifier C:/Program Files/NVIDIA GPU Computing Toolki...
<p dir="auto">Kind of similar to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="486963699" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/25389" data-hovercard-type="issue" data-hovercard-url="/pytorch/pytorch/issues/25389/hovercard" href...
1
<p dir="auto"><strong>TypeScript Version:</strong></p> <p dir="auto">1.8.10</p> <p dir="auto"><strong>Code</strong></p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function Foo() { console.log(new.target); } new Foo();"><pre c...
<p dir="auto">There isn't a lot in the current ES6 spec draft, but it seems to indicate the constructor object that is in the process of being <code class="notranslate">new</code>'d at runtime.</p>
1
<p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.):<br> Yes</p> <p dir="auto"><strong>What keywords did you s...
<p dir="auto">Broken out from <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="40954231" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/1007" data-hovercard-type="pull_request" data-hovercard-url="/kubernetes/kubernetes/pull/1007/hove...
0
<p dir="auto">The scipy curve_fit documentation says that xdata can be an object:</p> <blockquote> <p dir="auto">xdataarray_like or object<br> The independent variable where the data is measured. Should usually be an M-length sequence or an (k,M)-shaped array for functions with k predictors, <strong>but can actually be...
<p dir="auto">In the <a href="https://warrenweckesser.github.io/czi/scipy-2019-czi-proposal-revised.pdf" rel="nofollow">CZI Proposal</a>, we wrote:</p> <blockquote> <p dir="auto">The continuous distributions in SciPy all have a method for fitting the distribution to data using<br> the method of maximum likelihood estim...
0
<p dir="auto">Some element set display is <code class="notranslate">inline-block</code>, when use .visible-xx or .hidden-xx it will replace to <code class="notranslate">block</code>. and i found that bootstrap add tr,td,th style for the issues. I suggest use <code class="notranslate">display:none</code> only, like this...
<p dir="auto">related to issues <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="16856611" data-permission-text="Title is private" data-url="https://github.com/twbs/bootstrap/issues/8500" data-hovercard-type="pull_request" data-hovercard-url="/twbs/bootstrap/pull/8500/hovercard" href=...
1
<p dir="auto">This might be considered a duplicate of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="116720211" data-permission-text="Title is private" data-url="https://github.com/flutter/flutter/issues/357" data-hovercard-type="issue" data-hovercard-url="/flutter/flutter/issues/35...
<p dir="auto">OEM widget:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/5479/11884756/e60f455e-a4d0-11e5-8e6f-ae6a69da3730.png"><img src="https://cloud.githubusercontent.com/assets/5479/11884756/e60f455e-a4d0-11e5-8e6f-ae6a69da3730.png" alt="scr...
0
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=david_syer" rel="nofollow">Dave Syer</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-9367?redirect=false" rel="nofollow">SPR-9367</a></strong> and commented</p> <p dir="auto">It is very difficult (impossible) to ha...
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=sgarlatm" rel="nofollow">Matthew Sgarlata</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-5931?redirect=false" rel="nofollow">SPR-5931</a></strong> and commented</p> <p dir="auto">The dojo framework creates form wi...
0
<h3 dir="auto">Current Behavior:</h3> <p dir="auto"><code class="notranslate">npm install &lt;pkg&gt;</code> runs pre and post install scripts specified in <code class="notranslate">&lt;pkg&gt;</code>.</p> <h3 dir="auto">Expected Behavior:</h3> <p dir="auto">Either pre and post install scripts must not run or this shou...
<h3 dir="auto">Is there an existing issue for this?</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the existing issues</li> </ul> <h3 dir="auto">Current Behavior</h3> <p dir="auto"><a href="https://gith...
0
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/apache/incubator-dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list-item"><inp...
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/apache/incubator-dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list-item"><inp...
0
<p dir="auto">It would be nice if keybindings.json added a warning (i.e yellow underscore) on a keybinding if it detects it is a duplicate with an existing keybinding.<br> Thanks</p>
<p dir="auto">If I try to install the extension, vscode asks to restart, then after restarting I see an "issue" at the bottom left of the vscode window.</p> <p dir="auto">[c:/Program Files (x86)/Microsoft VS Code/resources/app/extensions/csharp-o]: Cannot read file c:/Program Files (x86)/Microsoft VS Code/resources/app...
0
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="f(x::T) where T = 1 hasmethod(f, Tuple{T} where T)"><pre class="notranslate"><span class="pl-en">f</span>(x<span class="pl-k">::</span><span class="pl-c1">T</span>) <span class="pl-k...
<p dir="auto">It may be a malformed method call but it crashes julia v1.1 and only after the method has been defined:<br> <code class="notranslate">hasmethod(Base.map!,Tuple{Any,Base.ValueIterator{D}} where D&lt;:Dict)</code></p> <p dir="auto">While this nearly identical version does not:<br> <code class="notranslate">...
1
<p dir="auto">Report: <a href="https://github.com/maleadt/BasePkgEvalReports/blob/0bb12607c245153c8e7215788e580d43d7d2d51a/pkgeval-9bd498d_vs_2e6715c/logs/Strided/1.4.0-DEV-082f446f52.log">https://github.com/maleadt/BasePkgEvalReports/blob/0bb12607c245153c8e7215788e580d43d7d2d51a/pkgeval-9bd498d_vs_2e6715c/logs/Strided...
<p dir="auto">The following code snippet incorrectly allocates a PhiC nodes, despite not having any variables:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="@noinline use(x) = string() @noinline function _waitlock(rl::ReentrantLock) try ...
1
<p dir="auto">I think next.js grown up into level when examples could live by own life in separate repository (eg. zeit/next.js-examples). Examples are more about wide community than core development and doesn't require so much quality as core do.<br> Many pull request are about updating examples or about adding new ex...
<p dir="auto">And instead open a new repo called zeit/next.js-examples</p> <p dir="auto">It's painful to download all examples while cloning next.js for hacking...</p>
1
<p dir="auto">Consider:</p> <div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="- hosts: all tasks: - name: echo stuff command: 'echo &quot;{{ item }}&quot;' notify: notifier {{ item }} with_items: - ...
<h5 dir="auto">Issue Type:</h5> <p dir="auto">Bug Report</p> <h5 dir="auto">Ansible Version:</h5> <p dir="auto">ansible 1.5.3</p> <h5 dir="auto">Environment:</h5> <p dir="auto">N/A</p> <h5 dir="auto">Summary:</h5> <p dir="auto">Parent task unable to call handlers of child</p> <h5 dir="auto">Steps To Reproduce:</h5> <di...
1
<p dir="auto">The following crashes in 0.7 and 1.0. I cannot reproduce this without parametric types or without at least two Unions in the struct.</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="struct Test{T} A::Array{Uni...
<p dir="auto">Difficult to tell if this is a duplicate of some existing subtyping issue, but it's important:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia&gt; typeintersect(Base.RefValue, Ref{Union{Int,T}} where T) Union{}"><pre class="...
1
<p dir="auto">Hi, I noticed a weird resizing behavior on Chrome. I'm not sure if it's a browser bug or not. It doesn't happen on Firefox. Check the screenshots for a better understanding of the issue.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/403f00...
<p dir="auto">The justified nav example (<a href="http://getbootstrap.com/examples/justified-nav" rel="nofollow">http://getbootstrap.com/examples/justified-nav</a>) collapses perfectly when the screen is narrowed, but when the screen is expanded it get wonky.<br> <a target="_blank" rel="noopener noreferrer nofollow" hr...
1
<p dir="auto">Hi!</p> <p dir="auto">I'm using TypeScript with named parameters massively like this.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="class User { public firstName: string; public lastName: string; constructor({firstName, la...
<p dir="auto">Today, we can take advantage of parameter properties to reduce the boilerplate, e.g:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class Person { constructor(public firstName: string, public lastName: number, pu...
1
<p dir="auto">When I run in android studio it showing following error :</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Exception in thread &quot;main&quot; java.util.zip.ZipException: error in opening zip file at java.util.zip.ZipFile.open(Na...
<p dir="auto">Right now there isn't single source of truth for the clang version used, which is causing formatting mismatches across environments.</p>
0
<p dir="auto">Hi guys,</p> <p dir="auto">I have been trying to solve this issue for 64 hours and nothing. I am a bit tired. Could you help me please?</p> <p dir="auto">Here is the project: <a href="https://github.com/slamby/slamby-website">https://github.com/slamby/slamby-website</a></p> <p dir="auto">Right now I do no...
<p dir="auto">Hey guys,</p> <p dir="auto">I just updated to angular/compiler 2.2.4 and my ngc is no longer creating my application ngFactory files in the specified outGen folder. The last working version of angular/compiler on my stack was 2.1.2. I'm currently on node 6.9.1 and angular 2.2.4. You can check out my stack...
1
<p dir="auto">If a modal is defined with <code class="notranslate">'backdrop': false</code>, hidding it will throw an error :</p> <blockquote> <p dir="auto">Uncaught TypeError: Cannot call method 'remove' of undefined</p> </blockquote> <p dir="auto">changing :</p> <div class="snippet-clipboard-content notranslate posit...
<p dir="auto">With options { backdrop: false }, this.$backdrop.remove() is still being called which results in an exception as this.$backdrop is null.</p> <code class="notranslate"> hideModal: function () { var that = this this.$element.hide() this.backdrop(function () { that.remov...
1
<p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong><br> feature</p> <p dir="auto"><strong>What is the current behavior?</strong><br> The style prop must always be an object.</p> <p dir="auto"><strong>What is the expected behavior?</strong><br> The style prop could optional...
<p dir="auto">Based on the discussion in: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="109359892" data-permission-text="Title is private" data-url="https://github.com/facebook/react/issues/5030" data-hovercard-type="issue" data-hovercard-url="/facebook/react/issues/5030/hovercard?...
1
<pre class="notranslate">What steps will reproduce the problem? Create a file with these contents and run `go test -race`: package main import _ "testing" What is the expected output? PASS What do you see instead? # testmain /var/folders/gs/mznx8_ps7299rqztvxhggq7c0000gn/T/go-build422539209/_/Users/titan...
<p dir="auto">by <strong>kevin.dankwardt</strong>:</p> <pre class="notranslate">1. What is a short input program that triggers the error? A short program doesn't seem to trigger the error. The program, called crazylib1.go, that does trigger the error starts with: package crazylib1 func Crazy1() int { s = "bbbbbbbbb...
0
<h3 dir="auto">Reproducing code example:</h3> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np integer_list = [18446744073709551615] arr = np.array(integer_list) arr.dtype # Returns: dtype('uint64') # So far...
<p dir="auto">When <code class="notranslate">np.array()</code> or <code class="notranslate">.asarray()</code> is used to go from a list of integers, without specifying a dtype explicitly, it can pick default dtypes including int64 &amp; uint64. But there's a strange corner case where it defaults to float64 and loses pr...
1
<p dir="auto">Here my work for webpack4 (i just did tested on browser only )</p> <p dir="auto">A little boilerplate using no babelified code of source nextJs inside with feature like hot-reload completely working with css,css and js</p> <p dir="auto">I changed a bit the core of nextjs to make all works .. i wait for an...
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues?q=is%3Aissue">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="au...
1
<p dir="auto"><strong>Elasticsearch version</strong>: 2.2.0</p> <p dir="auto"><strong>JVM version</strong>: 1.8.0_74</p> <p dir="auto"><strong>OS version</strong>: 3.13.0-74-generic <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="165835" data-permission-text="Title is private" data-u...
<p dir="auto">This started to occur in ES v2.2.0. Easy steps to repro:</p> <ol dir="auto"> <li>Crete and index</li> <li>Put an alias</li> <li>Display the alias</li> <li>Check that the filter is not presented</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipb...
1
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ X] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&...
<p dir="auto"><strong>I'm submitting a ...</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[X] bug report [ ] feature request"><pre class="notranslate"><code class="notranslate">[X] bug report [ ] feature request </code></pre></div> <p...
1
<h1 dir="auto">Environment</h1> <p dir="auto">Windows 10 - PowerToys 0.18.2</p> <h1 dir="auto">Steps to reproduce</h1> <p dir="auto">Select a few files in explorer, and launch PoweerRenamer</p> <p dir="auto">enter (.*) in the "Search for:" field<br> enter "$1.txt" in the "Replace with:" field.</p> <h1 dir="auto">Expect...
<p dir="auto">due to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="540249146" data-permission-text="Title is private" data-url="https://github.com/microsoft/PowerToys/issues/980" data-hovercard-type="issue" data-hovercard-url="/microsoft/PowerToys/issues/980/hovercard" href="https:...
1
<h3 dir="auto">Which version of ShardingSphere did you use?</h3> <p dir="auto">5.0.0-RC1-SNAPSHOT</p> <h3 dir="auto">Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy?</h3> <p dir="auto">shardingsphere-jdbc</p> <h3 dir="auto">Reason analyze (If you can)</h3> <p dir="auto"><a class="issue-link js-is...
<p dir="auto">refer to: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1050776186" data-permission-text="Title is private" data-url="https://github.com/apache/shardingsphere/issues/13554" data-hovercard-type="issue" data-hovercard-url="/apache/shardingsphere/issues/13554/hovercard" ...
0
<p dir="auto">NOTE: this seems to be fixed in 7.x either intentionally or from refactorings. I don't know the maintenance status of 6.x, so I'm opening this anyhow.</p> <p dir="auto">Choose one: is this a bug report or feature request? <strong>Bug</strong></p> <h3 dir="auto">Input Code</h3> <p dir="auto">Repro repo: <a...
<p dir="auto">Choose one: is this a bug report or feature request?</p> <p dir="auto">Bug</p> <h3 dir="auto">Input Code</h3> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="export const f1 = function () {}; export const f2 = () =&gt; ...
1
<h1 dir="auto">I have a component the has the following in the template:</h1> <p dir="auto">Last bid: {{newBid?.amount | number:'1.1-2'}}<br> Bid time: {{newBid?.bidTime | date: 'medium'}}</p> <p dir="auto">This code works fine in Chrome and Firefox. But in Safari 9 I got an error "Can't find variable: Intl" and then m...
<p dir="auto">Hello,</p> <p dir="auto">Found an issue in AsyncRoutes. It looks like RouteData is not preserved unlike with SyncRoutes.<br> Please check the following plunker: <a href="http://plnkr.co/edit/uc26p2QEMHZgiEYwqeK6?p=preview" rel="nofollow">http://plnkr.co/edit/uc26p2QEMHZgiEYwqeK6?p=preview</a></p> <p dir="...
0
<p dir="auto">Bootstrap 2 featured various layouts for tabs (e.g they could be placed sideways).<br> Is tha coming to BS3 ?</p>
<p dir="auto">Hi, guys!</p> <p dir="auto">Left-sided and right-sided tabs are missing.</p> <p dir="auto">Thank you!</p>
1
<p dir="auto">This is another one that needs <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="444150563" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/796" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/796/h...
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: Microsoft Windows [Version 10.0.18362.418] Windows Terminal version (if applicable): Windows Terminal (Preview) Version: 0.5.2762.0 Any other so...
0
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/apache/incubator-dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list-item"><inp...
<p dir="auto">现在的dubbo与当当的dubbox兼容吗?一直用dubbox,想升级一下。<br> (虽然知道兼容的可能性几乎没有,碰碰运气问一下。)</p> <p dir="auto">dubbox修改了dubbo的序列化协议。<br> \dubbo\rpc\protocol\dubbo\DubboCodec.java 对比:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5990337/53237923-dbca2180-36d2-11e9-9fb4-...
0
<p dir="auto">Hi. Today, I tried to work on making test codes for my plugin and I can't make the call to plugin methods in test code. Is there any guideline make test code for plugins?</p> <div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-con...
<p dir="auto">Currently our plugin template and plugin docs have no recommendation for how to test a plugin. We should probably figure out what to do here.</p>
1
<h3 dir="auto">TL;DR: provide a syntax which kills this compiler error:</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Class 'D' incorrectly implements interface 'C'. Property '_a' is protected but type 'D' is not a class derived from 'C'."><...
<p dir="auto">It seems like the rules for <strong>a)</strong> implementing multiple interfaces and <strong>b)</strong> intersection types should be consistent.</p> <p dir="auto">Example 1: Optional members</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet...
1
<p dir="auto">I have executed the following code with Electron v6.0.0-beta.3.<br> And when I clicked the button on the form it crashed.</p> <p dir="auto">Apparently, there is a problem with the execution of .</p> <p dir="auto">Do you have any one who knows the solution?</p> <p dir="auto">Regards.</p> <div class="snippe...
<h3 dir="auto">Preflight Checklist</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project...
0
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: Microsoft Windows NT 10.0.18362.0 Windows Terminal version (if applicable): 0.5.2762.0"><pre lang="none" class="notranslate"><code class="notransl...
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 10.0.19013.0 Windows Terminal version: 0.6.2951.0"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: 10.0.19013...
0
<p dir="auto">On Material UI Next, the Select component behaves different from Material UI 0.19.<br> On the old version, you could open the select box, and type to select an option, then press enter to select the option.</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disable...
<p dir="auto">I open the same popover in a small browser window on PC and on mobile. On PC the popover fits page width (if I stretch the window it becomes bigger), has padding etc. On mobile it goes over the edge of the screen.</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="...
0
<p dir="auto">Recently introduced batch renormalization could be very useful, but without support for a fused batch norm, it has limited use (XLA JIT still has too many problems to be used instead of a fused version)</p>
<p dir="auto"><strong>System information</strong></p> <ul dir="auto"> <li>Have I written custom code (as opposed to using a stock example script provided in TensorFlow):<br> Yes</li> <li>OS Platform and Distribution (e.g., Linux Ubuntu 16.04):<br> MacOSX 10.13.6</li> <li>Mobile device (e.g. iPhone 8, Pixel 2, Samsung G...
0
<p dir="auto">Hello everyone,</p> <p dir="auto">Would it be useful to have something like <em>numpy.stats</em> on the grounds of <em>scipy.stats.describe</em> ?<br> Though a simple implementation, I believe it would be very handy for Numpy users. More information on <em>scipy.stats.describe</em> here : <a href="https:...
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/numpy/ticket/1172" rel="nofollow">http://projects.scipy.org/numpy/ticket/1172</a> on 2009-07-15 by trac user etu, assigned to unknown.</em></p> <blockquote> <blockquote> <blockquote> <p dir="auto">a = array([-128], int8)<br> a<br> array([-128], dtype=...
0
<h5 dir="auto">ISSUE TYPE</h5> <ul dir="auto"> <li>Bug Report</li> </ul> <h5 dir="auto">COMPONENT NAME</h5> <p dir="auto">vars_plugins</p> <h5 dir="auto">ANSIBLE VERSION</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ dpkg -l ansible Desire...
<h5 dir="auto">ISSUE TYPE</h5> <ul dir="auto"> <li>Feature Idea</li> </ul> <h5 dir="auto">COMPONENT NAME</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.5.0 config file = /home/conductor/playbooks/ansible.cfg configured module...
0
<h5 dir="auto">Description of the problem</h5> <p dir="auto">Not sure if this is the same bug or two different.</p> <ol dir="auto"> <li> <p dir="auto">Whenever SkinnedMesh origin is out of camera frustum, the mesh gets culled even if its actual transformed geometry must be visible on the screen.<br> Seems like the boun...
<h5 dir="auto">Description of the problem</h5> <p dir="auto">Hi,</p> <p dir="auto">I've been playing around with a model for a while, and noticed that if I load it in three.js and zoom closely to the head, it disappears, along with the helmet.</p> <p dir="auto">I'm sure it's not the clipping field, because they disappe...
1
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/mui-org/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Ex...
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">...
0
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list-item"><input type="c...
<ul dir="auto"> <li>[X ] I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li>[X ] I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a du...
0
<p dir="auto">I think it would be possible for Deno to support ARM as rust can be compiled for ARM architecture devices</p>
<p dir="auto">I was originally excited about the security-consciousness of deno, but I am now struggling to see the benefit.</p> <p dir="auto">It strikes me that the security is too broad-grained in two ways:</p> <ol dir="auto"> <li>It tries to make do with <a href="https://deno.land/manual.html#flags" rel="nofollow">±...
0