text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
Methods in Dates have a habit of causing ambiguities for packages that define
new AbstractArray types, e.g., JuliaArrays/StaticArrays.jl#18 where nearly
half of the ambiguities are due to Dates-related methods. The problem, in a
nutshell, is that Dates specializes several AbstractArray methods on the
element type whe... |
Dates redefines `+(::Array{Date}, Date...) = .+`, meaning that array + scalar
doesn't throw an error.
julia/stdlib/Dates/src/arithmetic.jl
Line 94 in f8d82cc
| (-)(x::AbstractArray{T}, y::T) where {T<:TimeType} = x .- y
---|---
This should probably be deprecated for consistency.
| 1 |
# Bug report
**What is the current behavior?**
Optional chaining operators being removed which causes a runtime errors.
**If the current behavior is a bug, please provide the steps to reproduce.**
env.js
export const env = {}
index.js
import { env } from './env';
console.log(en... |
# Bug report
**What is the current behavior?**
Webpack incorrectly compiles `x?.value` to `(something).value` when `x` is
something that's been imported.
**If the current behavior is a bug, please provide the steps to reproduce.**
webpack.config.js:
module.exports = {
entry: "./index.js",
... | 1 |
Maybe its time to support stylus https://github.com/LearnBoost/stylus
Many users like me use stylus in projects and they want to have bootstrap
stylus in project
Everyone know why stylus is much better of less
You maybe use less only for simple mixins/variables But developers ...
We import bootstrap.styl and chan... |
Carousel does not start sliding to the next one after 5 seconds until after I
click to the next slide. Only then does the timer start. What am I missing?
| 0 |
I often find myself doing some quick-and-dirty plotting, and wishing there was
a simple, one-step, easy-to-remember way to set the default figsize for all
matplotlib plots.
I imagine something very light-weight like `sns.set(figsize=(2, 4))` or
`sns.set_figsize(2, 4)`.
iPython actually has this already as `IPython.... |
## sns.set_theme(style="ticks")
sns.pairplot(df)
AttributeError Traceback (most recent call last)
in
\----> 1 sns.set_theme(style="ticks")
2 sns.pairplot(df)
**AttributeError: module 'seaborn' has no attribute 'set_theme'**
I have got this error while using seaborn.
| 0 |
Some folders/projects, even in safe mode, just search forever and ever. Other
folders work just fine since
Started happening with 0.191
What can I provide for more info?

|
Searching a folder that contains some broken symlinks:
ENOENT: no such file or directory, stat '/Users/kevin/github/atom/node_modules/temp/node_modules/.bin/rimraf'
at Error (native)
at fs.statSync (fs.js:846:18)
at Object.fs.statSync (ATOM_SHELL_ASAR.js:206:16)
at Objec... | 1 |
##### Description of the problem
ThreeJs ThreeMF loader is blocking the UI while upzipping the 3MF file.
try {
zip = new JSZip( data ); // eslint-disable-line no-undef
} catch ( e ) {
if ( e instanceof ReferenceError ) {
console.error( 'THREE.3MFLoader: jszip missing and file is co... |
As discussed in #11301 one of the main problems that we have in WebVR,
although is annoying in non-VR experiences too, is blocking the main thread
while loading assets.
With the recent implementation on link traversal in the browser non-blocking
loading is a must to ensure a satisfying user experience. If you jump f... | 1 |

Challenge [Waypoint: Add Font Awesome Icons to all of our
Buttons](http://www.freecodecamp.com/challenges/waypoint-add-font-awesome-
icons-to-all-of-our-buttons) has an issue... |
Hmm, I don't know why, but I am getting issues with the preview layout in the
bootstrap section.
First in the buttons section : http://prntscr.com/89uesz
Then in the check box section: http://prntscr.com/89ujcq
I am sure there is no error with my code, but still I am pasting the code for
it here
<l... | 1 |
by **Ekspluati** :
What steps will reproduce the problem?
1. Run all.bash on localized version of Windows.
What is the expected output?
No error from the program
What do you see instead?
--- cd ../doc/progs
helloworld3 failed: "hello, world can't open file; err=MA☼A☼ri... |
by **jkinner** :
What steps will reproduce the problem?
1. 6g DayOfWeek.go
2. 6g test.go
3. 6l test.6
What is the expected output? What do you see instead?
Expected: Successful creation of 6.out
Seen:
(13) DATA
extratype·DayOfWeek.DayStructPublic+0(/8,$go.stri... | 0 |
It would be nice if I could color-code folders and files, just like you can in
macOS. How about a powertoy for this?
|
## ℹ Computer information
* Windows build number: [run "winver"] 20175
* PowerToys version: 0.20.0
* PowerToy module: n/a
## 📝 Provide detailed reproduction steps (if any)
After updating, the installer asked if I wanted to restart Windows Explorer.
I picked Yes, and Explorer closed but it did not start ag... | 0 |
`~/jax$ python3 tests/host_callback_test.py` fails with:
[ RUN ] CallJaxTest.test_jax_grad
2021-04-15 00:16:53.333864: E external/org_tensorflow/tensorflow/compiler/xla/status_macros.cc:56] Internal: RET_CHECK failure (external/org_tensorflow/tensorflow/compiler/xla/service/gpu/outfeed_thunk.c... |
Please:
* Check for duplicate requests.
* Describe your goal, and if possible provide a code snippet with a motivating example.
Hi all,
Whilst working on a recent project I realised that scipy.stats.multinomial
doesn't have a jax.scipy implementation.
I thought it'd be worthwhile to implement as well as a dec... | 0 |
I understand that this has been brought up(as formatter options, but i think
it would include this) before, but please read what I have to say as I believe
I have newer and more solid reasoning for this change.
Since a meta/config file(#3179) is on the Q3 2021 Roadmap and Q3 is coming
soon, I'd like to bring up addi... |
I really like the idea of "one formatting style". People spend too much time
on these matters. I also currently use two spaces for JavaScript files as it
is the Prettier default.
But thinking more about the accessibility issues with defaulting to a small
indent size, deno should reconsider.
Ref: stylelint/stylelint... | 1 |
Here is my interceptor
axios.interceptors.response.use((response) => {
return response
}, function (error) {
// Do something with response error
if (error.response.status === 401) {
auth.logout()
router.replace('/login')
}
return Promise.reject(err... |
#### Summary
I searched through all the issues and double checked the ones referenced in
#812 but my problem seems to be different.
My problem is that creating an instance does not copy over or use the
interceptors added to the global Axios.
import Axios from "axios";
Axios.interceptors.requ... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
But I think that this issue #3319 can be related and maybe solve the problem.
## Current Behavior
Based on what I have:
I have a folder estructure working with `yarn workspaces` with multiple
workspaces like:
|-- package... |
After configuring next with a webpack function it seems that the function gets
called twice during all builds which results in ForkTsCheckerWebpackPlugin
running lint/ts checks twice (in my setup).
* I have searched the issues of this repository and believe that this is not a duplicate.
## Steps to Reproduce ... | 0 |
I am trying to call `setState({ flash: false })` followed by `setState({
flash: 'up' })` which should remove the flash class from the DOM element and
add it again, therefore triggering the css animation defined on that class (it
only works the first time).
This is not working as expected, unless I introduce some... |
### Website or app
https://codesandbox.io/s/blissful-raman-2on7k2
### Repro steps
1. Create a react app
yarn create react-app test-react
cd test-react
yarn start
2. Create `.env.development` file in root.
HTTPS=true
PORT=4100
BROWSER=none
3. Visit htt... | 0 |
interface OverloadedMethod {
(a:string): Object;
(a:number): void;
}
const bar : string|number = 0;
const foo : OverloadedMethod = null;
foo(bar) // red squiggles here under bar: Argument of type 'string | number' is not assignable to 'string'. Type 'string | number' ... |
The type guard `instanceof Array` does not seem to recognize the type of the
interface IMessage.
interface IMessage {
name: string;
}
function itemFn(pipIn: IMessage[]) {
return pipIn;
}
function baseFn(pipIn: IMessage) {
return [pipIn];
}
... | 0 |
Following up on this Discourse post. According to @stevengj, this issue might
be solved by the resolution this Yggdrasil issue.
I am running into an odd error when using Julia 1.7.0 on my 2017 Mac Book Pro
(Intel i7) on Mac OS 12.01. In particular, executing
n = 1000;
A = randn(Float32, n, n);
... |
On macos, using version `1.7.0-rc2`, julia just shows `StackOverflowError`
with no other info when taking the matrix exp with a ~ 300x300 complex-valued
matrix. Minimum example:
using LinearAlgebra
n = 300
m = rand(ComplexF64, n, n);
mex = exp(m);
Alro ran with `--startup-file=no... | 1 |
The imputer should have an option to add a binary indicator feature (for each
possibly missing feature) that indicate whether a feature was imputed or not
(0 or 1).
In applications, missingness is often informative.
|
#### Describe the workflow you want to enable
It would be nice if the `ColumnTransformer` would `get_feature_names` from
even transformers that don't implement `get_feature_names`, and used the full
API of `get_feature_names` in transformers where it has been implemented.
#### Describe your proposed solution
#####... | 0 |
I have a large mesh, which I intend to render without smooth shading. As such,
there is no point calculating vertex normals. Normally, this is ok, since I
can do:
geom.computeFaceNormals();
if(smoothShading) geom.computeVertexNormals();
However, when I do `geometry.computeMorphNormals()`, it ... |
FYI I'm working on a parasolid exporter (x_t to begin with). Just posting an
issue to avoid duplicating effort or in case anyone wants to discuss /
collaborate. I expect to have a PR ready in a few weeks.
| 0 |
**Describe the bug**
I am not sure if this a gltf bug or a three js bug but when exporting a
skinned mesh with an armature with a specific scale the bounding box will not
work correctly, for example, I have an object with an armature of scale 0.018
for all axes and a mesh child with a scale of 1; what happens when ... |
##### Description of the problem
Hi,
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.
I'm sure it's not the clipping field, because they disappear suddenly, from
one frame to another.
I'm also sure this... | 1 |
how can retry when image loading failed
|
Right not the glide scoket timeout is 2500 ms
I wish to make it 5000ms
How do I do this ?
Also I wish to do a retry if timeout happens
Also I am trying to use download only along with DiskCacheStrategy =
DiskCacheStartergy.SOURCE
Please help me out withthese issues
| 1 |
If you manually move a shard using the Reroute API, it appears that the
Cluster node stats API breaks for the duration of the shard reassignment (500
Internal Server error, message at bottom of the gist). It begins working again
once the shard has been fully relocated and intialized.
Here is a recreation. The index ... |
To reproduce, start a single node and as soon as node starts run the following
script:
# Create and delete index a few times
for i in {1..4}
do
curl -XDELETE localhost:9200/test
curl -XPUT localhost:9200/test -d '{
"settings": {
"index.number_of_shard... | 1 |
version: 0.10.8

after `format code`:

|
Ported from microsoft/TypeScript-Sublime-Plugin#285
Related to microsoft/TypeScript-Sublime-Plugin#265.
Issue:

Correct:
. Now I close the application and then change
`zoomFactor=1.0`, it should look larger. **But no.** I checked the
`Preferences` f... |
* Electron version: 1.7.6
* Operating system: MacOS 10.11.6
### Expected behavior
When a custom zoomFactor is defined in the BrowserWindow initialization (say
1.5), the window is displayed in that specific zoomFactor.
If you close the app, set a new zoomFactor in the code (say 1.2), and start
the app again, th... | 1 |
Uncaught Error: EACCES, open '/home/alex/.atom/compile-
cache/cson/5af7724b023a6274b520f79f04fb798a67319ca7.json'
**Atom Version** : 0.154.0
**System** : linux 3.13.0-40-generic
**Thrown From** : Atom Core
### Steps To Reproduce
1. ...
2. ...
### Stack Trace
At fs.js:75
Error: EACC... |
I'm not sure if this is already possible in some way, or if it's desirable
beyond a very specific use case I have run into.
I would like to be able to write `require "react-atom-fork"` in a package and
get access to the version of React used by Atom itself. This works around a
React bug where having multiple copies ... | 0 |
**Elasticsearch version** : 2.3.3, 1.4.4
**Plugins installed** : not related
**JVM version** : 1.8.0_77
**OS version** : OS X El Capitan
**Description of the problem including expected versus actual behavior** :
In ES 2.3.3, if you do a geo polygon query whose one side lies on the equator
in the south hemisphe... |
**Elasticsearch version** : 2.3.3
**Plugins installed** : nothing
**JVM version** : 1.8.0_77
**OS version** : OS X El Captain 10.11.5
**Description of the problem including expected versus actual behavior** :
I found a bug when testing geo polygon search across the prime meridian (the 0
longitude). It cannot f... | 1 |

Challenge Use an ID Attribute to Style an Element has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36`.
Ple... |
In all the exercises, we the users are forced to press the enter key before
writing any code.
* * *
#### Update:
We have locked the conversation temporarily on this thread to collaborators
only, this has been resolved in staging, and will be live soon.
The fix can be confirmed on the beta website.
The workaround... | 1 |
**Mauricio Noda** opened **SPR-6743** and commented
* * *
**Affects:** 3.0 GA
**Issue Links:**
* #11410 Make HttpServletRequest and HttpServletResponse available for injection ( _ **"duplicates"**_ )
|
**Mauricio Noda** opened **SPR-6744** and commented
While creating a custom Spring Security AuthenticationProvider I stumbled on
the need for instances of both HttpServletRequest and HttpServletResponse.
There´s no way to easily access them. Modifying
org.springframework.web.context.request.RequestContextListener to... | 1 |
Hi, I try to add shared layer in Graph, but facing this problem:
from keras.models import Graph
from keras.layers import containers
block = containers.Sequential()
block.add(Dense(8, input_dim=20, activation='relu'))
block.add(Dense(1))
graph = Graph()
graph.add_i... |
Hi,
I have been going through the latest the LSTM model for the text generation
example from Andrej Kaparthy. It's pretty cool and works pretty well. Now, I
am wondering if the LSTM model by Junhua Mao (http://arxiv.org/abs/1412.6632)
can be supported easily. The reason i am asking this is the duplication of an
embe... | 0 |
* Electron Version: 2.0.3
* Operating System (Platform and Version): Windows_NT x64 10.0.17134
* Last known working Electron version: None
**Expected Behavior**
When a window is maximized, the edges of the window should be in the same
position as the edges of the screen it is maximized in
**Actual behavior*... |
* Electron Version: 2.0.1
* Operating System (Platform and Version): Windows10 1803
* Last known working Electron version: 2.0.1
**Expected Behavior**
Maximized normal and restore normal when i click button in no frame window
**Actual behavior**
The first click is normal, but on the second click, there is... | 1 |

The exception information returned by mysql executing the insert method is
caught by the method execute catch of JDBCExecutorCallback and the execution
result is false, which ca... |
Originally posted by @strongduanmu in #11442 (comment)_
| 0 |
**Is this a request for help?** (If yes, you should use our troubleshooting
guide and community support channels, see
http://kubernetes.io/docs/troubleshooting/.):
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.):
* * ... |
**Is this a request for help?** (If yes, you should use our troubleshooting
guide and community support channels, see
http://kubernetes.io/docs/troubleshooting/.):
No
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.):
... | 0 |
_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):
... |
**System information**
Ubuntu 18.04, Tensorflow r2.0 from pip
**Describe the current behavior**
https://github.com/tensorflow/tensorflow/blob/r2.0/tensorflow/core/kernels/non_max_suppression_op.cu.cc#L96
**Describe the expected behavior**
const float w = fdimf(xx2, xx1);
const float h = fdimf... | 0 |
It would be so cool to have a power toy that recorded your screen, with
microphone and camera. Windows already has this, but it's limited to 2
minutes, and you can only record screen in one app at a time.
|
## ℹ Computer information
* PowerToys version: 0.20.1
* PowerToy Utility: Settings
* Running PowerToys as Admin: no
* Windows build number: [run "winver"] 18362 (happens only on laptop screen but not on attached monitor).
## 📝 Provide detailed reproduction steps (if any)
1. Try to navigate the left navi... | 0 |
### Problem description
When clicking a menu item that is disabled onTouchTap is fired anyways.
alert("what")} />
### Versions
* Material-UI: 0.18.X (latest)
* React: 15.5
* Browser: chrome latest
|
Hi,
if a menu item is disabled and clicked the onTouchTap function is still
called. Code example below. Happens in latest 0.18 release. It has correct
disabled styling.
what i would expect: disabled icons do not trigger onTouchTap function.
Regards
<IconMenu>
<MenuItem
onTouchTa... | 1 |
I was testing a few different ways to calculate a quantity over an array, and
noticed for loops slowed down significantly from commit `317a4d1`* (16 days
old master). @timholy suggested I file an issue here.
The test code is here:
https://github.com/JaredCrean2/julia_tests/tree/master/array_speed2. It does
the calc... |
It would be great to get suggestions from the REPL on methods for a given
type. For example, I enter a `DataFrame` `df` on the REPL, and it provides me
with a list of methods that I can use with a `DataFrame`. Amongst others, this
would suggest `head` for the `DataFrame`. I could then select and autocomplete
with `[T... | 0 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
apt_key
##### ANSIBLE VERSION
ansible 2.4.0.0
config file = None
configured module search path = [u'/home/mg/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /home/mg/.venv/local... |
From @selivan on 2016-06-15T16:15:11Z
##### ISSUE TYPE
* Feature idea
##### COMPONENT NAME
apt_key
##### ANSIBLE VERSION
`ansible --version`:
ansible 2.1.0.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
##### CONFIGURATION
#####... | 1 |
### Reproducing code example:
There should be a default serializer for the type of **float32** defined.
Flask/jsonify() can serilize the type of float64 but not float32.
The following code throws error: TypeError: Object of type float32 is not JSON
serializable
x = {'value': numpy.float32(0.1)}
... |
It seems that the np.geomspace() functions produces wrong numbers
### Reproducing code example:
import numpy as np
a = np.geomspace(1, 16, 5, dtype=int)
print(a)
[ 1 2 4 7 16]
The correct answer should be
[ 1 2 4 8 16]
### NumPy/Python version information:
... | 0 |
## Feature request
**What is the expected behavior?**
Following the definition inside the docs:
https://webpack.js.org/api/module-methods/#import-1
We can use static paths inside dynamic imports, to search matching files
inside a specific folder / files tree.
Example:
importApp(path) {
... |
# Bug report
**What is the current behavior?**
When requiring files using `import.meta.webpackContext` (added in #15446) that
are located within a node_modules folder, eg:
const vuetify = import.meta.webpackContext('vuetify/lib/locale', {
recursive: false,
regExp: /(en|hu)\.js$/i,
})... | 0 |
### System information
* **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : Yes
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Ubuntu 16.04
* **TensorFlow installed from (source or binary)** : Binary, tf-nightly
* **TensorFlow version (use co... |
_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):
... | 0 |
### Version
2.3.3
### Reproduction link
https://github.com/Lacroute/webpack-simple-bug
### Steps to reproduce
Just create a minimal project from this template and add some logs inside the
hooks, you should obtain this in the console.
, this
is a VERY minimal reproduction, what re... | 0 |
Does vscode-node-debug support Sourcemap section?
|
Hi!
I was wondering if there are any plans to add this awesome feature to
JavaScript/TypeScript language in future releases. That'll be awesome!
| 0 |
Using javascript to automatically update a small preview for colour variables
on the customiser (perhaps using input groups).
For example:

|
It would be nice to have better color inputs, e.g. with `[type="color"]` or
with color preview, because of current ones are too monochromatic.
| 1 |
When any one of the independent variables are bound to a single number (by
setting the upper bound equal to the lower bound), the SLSQP optimization
fails. However, setting the bounds to (lower_bound, upper_bound + 1e-8) works
fine. This wasn't an issue in 1.4.1 and seems to have started happening in
1.5.0.
#### Rep... |
Hello,
It seems that in _numdiff.py module the _dense_difference function does not
take into account situation of an optimisation with equal bounds constraints
and where initial solution respect this constraint for some .
In that case line 519 in _numdiff.py module dx and df are equal to zero and
trigger nan in the... | 1 |
by **mazdak@chango.com** :
On OS X 10.9 Mavericks, when building the following code snippet, I get the following
error:
# command-line-arguments
xxxx.go:190:12: struct size calculation error off=40 bytesize=32
The same go file (which is actually a cgo file) works on older vers... |
http://play.golang.org/p/FYbJS-dtlY
If one gets variable names confused and accidentally take the index of an integer type,
the error returned is "index of type int". This error makes it sound like the
index variable is of integer type, which is correct code. I think it would be much
... | 0 |
OK. The glow text example I gave that's currently inside the code (but unused)
isn't great.
I've received feedback from @MilesMSCohen that it has a fundamental flaw:
* It loses all font hinting which makes it hard to read, especially at small sizes.
Ouch. I want hinting. The recommended alternative is to render ... |
Microsoft Windows [Version 10.0.18362.86]
Issue: Text rendering for CustomTextRenderer::_DrawGlowGlyphRun seems off.
I did the exact modifications as the dev (Mike) at the build conference to
enable glowing text, which required uncommenting the line to call the function
(and commenting the default text render call... | 1 |
Hi,
I would like to find the best-fit axis of points that are on a cylindrical
surface. Seems that `scipy.linalg.svd` is the function to look for.
So to test out, I decide to generate some points, function `makeCylinder`,
from this thread https://stackoverflow.com/questions/22285994/how-to-generate-
regular-points... |
My issue is about a possible memory leak in scipy.spatial.distance.pdist and
scipy.spatial.distance.cdist
#### Reproducing code example:
import numpy as np
from scipy.spatial.distance import pdist
X = np.random.uniform(0, 100, size=10000).reshape(-1, 10)
for _ in range(10000):
test... | 0 |
_Original tickethttp://projects.scipy.org/numpy/ticket/2091 on 2012-03-26 by
trac user dougal, assigned to @pv._
The following code segfaults for me on OSX 10.7.3.
from __future__ import print_function
import numpy as np
import multiprocessing as mp
import scipy.linalg
def f(... |
The following commit `ad9c2f4` breaks sage's ability to compile inline
fortran:
sage -t -long "devel/sage-main/sage/misc/inline_fortran.py"
**********************************************************************
File "/home/work/fbissey/sandbox/sage-5.6.rc0/devel/sage-main/sage/misc/inline_fort... | 0 |
This was originally brought up at
https://github.com/kennethreitz/requests/issues/2061. If you change
`session.proxies` after calling `session.get` and call `session.get` again, it
does not use the updated value. You have to do
`session.get(proxies=session.proxies)`.
Assumedly this is not difficult to fix, since set... |
`Session.trust_env = False` turns off the checking of environment variables
for options including proxy settings (`*_proxy`). But `urllib` picks up and
uses these environment proxy settings anyway. `requests` should pass the
`trust_env` setting on to `urllib`. (Although I'm not sure if `urllib` has a
similar override... | 1 |
Right now, if I run `deno doc` without any params I get a stack overflow:

Instead it should show a descriptive error, that it needs params, like `deno
run`.
(Should this issue be moved to `deno_doc` repo... |
I was just upgrading deno to 1.3.1 version and going to show builtin docs. It
shows
thread 'main' has overflowed its stack
fatal runtime error: stack overflow
Aborted (core dumped)
| 1 |
The feature that captures "stdout" for tests doesn't capture all the ways that
a test could print to stdout.
#[test]
fn output_capture_tests() {
println!("This gets captured...");
let _ = std::io::stdout().write_line("but this does not...");
let _ = std::task::try(proc() { p... |
I've filed this bug in rust-lang/cargo but I'm afraid rust-lang/rust is the
correct repo for this.
I ran the tests for one of my crates that uses threads in its example code.
I've noticed it printed some lines to stdout, even though `--nocapture` wasn't
set, but not all of them. It appears that text printed from new... | 1 |
**Apache Airflow version** : 2.0.1
**Kubernetes version (if you are using kubernetes)** (use `kubectl
version`):1.11
**Environment** :
* **Cloud provider or hardware configuration** : OpenShift 3.11
* **OS** (e.g. from /etc/os-release): RHEL Server
* **Kernel** (e.g. `uname -a`): Linux
* **Install tools** ... |
### Apache Airflow version
2.1.4 (latest released)
### Operating System
Debian GNU/Linux 10 (buster)
### Versions of Apache Airflow Providers
apache-airflow-providers-amazon==2.2.0
apache-airflow-providers-celery==2.0.0
apache-airflow-providers-cncf-kubernetes==2.0.2
apache-airflow-providers-docker==2.1.1 ... | 0 |
The following code makes rustc core dump. It is hardly a normal use case, but
it would be nice if rustc failed more gracefully.
$ cat main.rs
#![no_std]
#![feature(box_syntax)]
#![feature(lang_items)]
extern crate core;
use core::ptr::Unique;
#[lang="owned_box"]
... |
I’m playing with making a bare-metal executable in rust. I fully admit to not
knowing what I’m doing, but I thought this was worth reporting given that it
resulted in a stack overflow in rustc. This was produced with the rust nightly
from 2014/1/10. I’m on OS X 10.10.1 and installed rustc from the OS X .pkg
flle.
He... | 1 |
Try this:
d = Dict([1,2] => 1.1, [3,2] => 0.1)
length.(keys(d))
It doesn't work on 0.5 (I've been told it works on master,
https://discourse.julialang.org/t/length-keys-d-does-not-work/913). Can we
pull this into 0.5.1?
|
Currently the very common operation of iterating a Dict's keys in sorted order
requires writing the overly verbose `sort!(collect(keys(d)))`. This could be
abbreviated to `sort(keys(d))` by adding a `sort` method for `KeyIterator`,
but do we manually add methods for all relevant functions in Base? What about
user-def... | 1 |
While using the new version of ListItem this bit of code resulted in the
following error **uncaught Error: Invariant Violation: ReactMount: Two valid
but unequal nodes with the same`data-reactid`**
Note that this ListItem itself was nested in other lists and cards. Funny
thing is the same code worked with the earli... |
When a `Menu` has no selected items, it always has a highlighted first item.
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
If I open a menu that has no item with `select={true}` I would expect the menu
to open with the first item highlighted for as... | 0 |
am using the https://pub.dartlang.org/packages/camera
and am having a problem with image update. I have an image instantiated in my
`build()` method with a new `Image.file(new File(img))`, where file is the
local file saved from the camera. The file is saved and and new path is send
to Flutter, but the image is... |
## Steps to Reproduce
I am able to successfully run the application with `flutter run`
When I make any change to the application, like add a `print("Hello");` and
perform a hot reload the exception is hit. I am running this on a Samsung
Galaxy S8. This happens irrespective of the change, when I restart the
`flutter... | 0 |
# Summary of the new feature/enhancement
Imagine you need to search something very quickly using PowerToys Run. You
pressed `Alt` \+ `Space`, and you need to open your browser first then search
on url bar. but instead I think we might use PT Run to launch websites as well
as applications by typing some queries like:... |
# Summary of the new feature/enhancement
I want to be able to start a web search from the launcher.
Ideally, I'd type `bing power toys` and it would navigate to
`https://www.bing.com/search?q=power+toys` in my default browser.
`google power toys` would go to the equivalent.
The ability to specify the keyword/se... | 1 |
**Do you want to request a _feature_ or report a _bug_?**
Bug
**What is the current behavior?**
The following code example works well with `text` input type, but allows
inputs like `012` or `0012` to be entered when using the `number` input type.
The `console.log` line always runs and shows the right value, and... |
**Do you want to request a _feature_ or report a _bug_?**
bug
**What is the current behavior?**
I have a number input with defalut value 0 and in onChange function I'll parse
value to float to avoid invalid input, but I'll always get left pad 0 on input
UI. But in previouse version, my code works.
**If the cur... | 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 => 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
... | 1 |
**Describe the bug**
The language server/extension crashes when using the import.meta.url variable.
**To Reproduce**
Just create any relative route with the URL api and see the magic happen.
**Video**
https://user-
images.githubusercontent.com/42647963/102919956-ca313c80-4457-11eb-926d-0015827f386c.mp4
**Versi... |
Reproduction:
Create a file named `mod.ts` and start typing the following.
new URL(".", import.meta
Output from lsp:
Starting Deno language server...
version: 1.10.1+1871ff5 (release, x86_64-apple-darwin)
Connected to "Visual Studio Code" 1.56.0
language server initi... | 1 |
const LogRow = React.createClass({
mixins: [PureRenderMixin],
render: function() {
return (
<TableRow>
<TableRowColumn >{this.props.dataVal.timestamp}</TableRowColumn>
<TableRowColumn >{this.props.dataVal.logLevel}</TableRowColumn>
<TableRowColumn >{this.props.da... |
I have created a component which generates Table and another one which
generates TableRows. The problem is that the checkbox on the rows are not
showing.
Any ideas?
Thanks
| 1 |
Use tf.one_hot() on Windows 10, GPU, Nvidia 970. Error
CUDA_ERROR_LAUNCH_FAILED happens.
### What related GitHub issues or StackOverflow threads have you found by
searching the web for your problem?
I have post an issue in
http://stackoverflow.com/questions/41115476/tensorflow-gpu-cuda-error-launch-
failed-on-tf-on... |
I'm using a LeNet-5 mnist example from Udacity's course. Link to the source
code is below.
Training works ok on a CPU (config = tf.ConfigProto(device_count = {'GPU':
0})),
but fails in a GPU mode with the following 'CUDA_ERROR_ILLEGAL_ADDRESS' error:
> I c:\tf_jenkins\home\workspace\release-
> win\device\gpu\os\... | 1 |
Classes **with super class** are very slow to `new`, in comparison to what
babel@7.8.8 does. The difference can be found at here.
function test(Vec3) {
const t1 = Date.now();
(() => {
for (let i = 0; i < 1000000; ++i) {
const x = Math.random();
... |
> Issue originally made by @madole
### Bug information
* **Babel version:** 6
* **Node version:** 5
* **npm version:** 3
### Input code
class Animal {
constructor(name) {
this.name = name;
}
async getAge() {
const age = await getAgeFromAPI()... | 0 |
Opening this file:
https://github.com/espadrine/aulx/blob/master/html/tokenizer.js
Causes the parser to choke and Atom warns several times about not responding.
Eventually you have to give up and quit the whole app.
The exact line that is doing it is this:
https://github.com/espadrine/aulx/blob/master/html/tokenize... |
May be a known issue, but files with large embedded images such as github's
public/enterprise/maintenance.html will often cause Atom to freeze (MacVim
actually struggles as well).
Seems some of them (github's public/maintenance.html for instance) work fine
when in soft wrap mode, or until you move your cursor to the... | 1 |
This issue relates to scipy.stats.kstest. The one-sided test, as specified by
the `alternative` argument, works in the opposite direction compared to the
other statistical tests (ttest_ind, wilcoxon). In the example below, the
p-values for the t-test and wilcoxon test are close to zero, but for the
Kolmogorov-Smirnov... |
Hi, I've found that the `stats.ks_2samp()` documentation notes section states:
In the one-sided test, the alternative is that the empirical
cumulative distribution function F(x) of the data1 variable is "less"
or "greater" than the empirical cumulative distribution function G(x)
of the data... | 1 |
# 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.... |
# 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 |
xref #8309
for example:
pd.qcut([1,1,1,1,1,1,1,1,1,1,1,1,1,5,5,5], [0.00001, 0.5])
will raise "ValueError: Bin edges must be unique: array([ 1., 1.])" exception
Fix suggestion - add one new line:
def qcut(x, q, labels=None, retbins=False, precision=3):
if com.is_integer(q):
... |
pandas.cut and similar operate on the principle that bins start at one end of
a line and finish at another. However, sometimes it is necessary to work with
data that operates on a circular scale, for example compass directions.
It would be a great enhancement if pd.cut could deal with these cases.
I do not know of... | 0 |
my project is about a self driving car by using an odroid-c2 and usb camera
,wich can detect barriers and Traffic lights !
first step i succeed to realize the mjpeg streamer refering to this url:
forum.odroid.com/viewtopic.php?f=52&t=23503
and at the end i got a real live video by accesing to http://ip-adress:por... |
my project is about a self driving car by using an odroid-c2 and usb camera
,wich can detect barriers and Traffic lights !
first step i succeed to realize the mjpeg streamer refering to this url:
forum.odroid.com/viewtopic.php?f=52&t=23503
and at the end i got a real live video by accesing to http://ip-adress:por... | 1 |
**Gisbert van Rossum** opened **SPR-6428** and commented
When using 2 PropertyPlaceHolderConfigurers, placeholders declared (and given
a value) in the first PPC are not resolved in the second PPC.
<bean id="configurer1"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property nam... |
**Milan Skuhra** opened **SPR-9322** and commented
I tried to inject collection of beans (services) twice, into two beans
(registers); and every register has injected different count of services.
Proxied bean was missing in second injection. It happend when first injection
occurs and injecting proxied bean isn't ... | 0 |
If I compile the following code on the old compiler (with the module command
line flag) I get the error 'error TS2058: Return type of exported function has
or is using private type 'MyElement'.'
If I use the new compiler and the --module flag it compiles with no complaints
export module Foo
{
... |
**TypeScript Version:**
1.8.10
**Code**
let a;
let b = { a as string };
let c = { <string> a };
**Expected behavior:**
The type of `b` and `c` should be `{ a: string }` and the output should be
this:
var a;
var b = { a: a };
var c = { a: a };
**Actual behavior:**
... | 0 |
## Checklist
* I have included the output of `celery -A proj report` in the issue.
(if you are not able to do this, then at least specify the Celery
version affected).
* I have verified that the issue exists against the `master` branch of Celery.
## Steps to reproduce
I'm using django 1.8 + Celery 4.0.1 +... |
# Checklist
* 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 already fixed in the master branch.
* I have included all related issues and possible dup... | 0 |
# Summary of the new feature/enhancement
It would be nice if it was possible to right click on a folder in Windows
Explorer and select "Open in Terminal" sort of like you can do with PowerShell
6.0.

It w... |
# Add "open Windows terminal here" to right-click context menu?
We know that, for windows 7, by default when we click "shift + right click
with mouse" when we enter into a folder without selecting anything, we can see
the option "open command window here".

at getCommitTree (chrome-
extension://fmkadmapgofa... |
React components could use some way to dynamically add a handler to be called
on unmount. Either some event handler like way (`this.addUnmountHandler`) or
some other way to register a 'destructor'/destroy method for an object that a
component is holding on to.
`componentWillUnmount` exists but it does not scale well... | 0 |
## We hope to support the fuzzy query of encrypted fields
Now it is to report exceptions directly, and the algorithm can be implemented
by itself
### Is your feature request related to a problem?
no
|
## sharding-sphere 3.0.0 , Tables not configured with sharding rules will not
choice the defaultDataSrouces,and will choice the first dataSource in
dataSourcesMap.
Please answer these questions before submitting your issue. Thanks!
### Which version of ShardingSphere did you use?
3.0.0
### Which project did you u... | 0 |
# Environment
Windows build number: Microsoft Windows [Version 10.0.18362.175]
Windows Terminal version (if applicable):
Apple bootcamp 6.1
# Steps to reproduce
Open windows terminal and try to type `[` or `]`
# Expected behaviour
One is able to type the characters
# Actual behav... |
**Your Windows build number:**
10.0.18362.86
**What you're doing and what's happening:**
Trying to enter the `@` sign on a Swedish keyboard in a PowerShell console
using `Alt Gr` \+ `2`.
See animated gif:

[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
... | 0 |
Params specified using axios.create are ignored. Here's a test case:
const axios = require('axios');
const agent = axios.create({
baseURL: 'https://www.test.com',
params: {
test: 'test',
},
});
Promise.all([
agent.get('/'),
agent.get('/', { pa... |
**Describe the bug**
Specific request params do not get merged with the instance default params.
**To Reproduce**
const instance = axios.create({
baseURL: "http://www.example.com",
params: {
q: "question",
}
});
instance.get("/page",
{
... | 1 |
##### System information (version)
* OpenCV => 4.1.2
* Operating System / Platform => Windows 64 Bit
* Compiler => Visual Studio 2015
##### Detailed description
I compiled OpenCV4.1.2 from source , add OpenVINO R3 support and banding to
python3.6.4.
When i use net.setPreferableBackend(cv2.dnn.DNN_BACKEND_I... |
Corrupt JPEG data: 1 extraneous bytes before marker 0xdb
| 0 |
I think that exception should be handled/wrapped internally and be reraised as
a `RequestException`-based exception.
Traceback (most recent call last):
File "X:\dev\rotaryboard\daemon\testdaemon.py", line 117, in <module>
res = foobar_cmd()
File "X:\dev\rotaryboard\daemon\testdaemon... |
When _timeout_ parameter is used, socket operations can thrown
_socket.timeout_ exception, which is not converted into
_requests.exceptions.Timeout_. This causes users to handle two different types
of exceptions, which essentially represent the same error.
Here is corresponding traceback:
>>> r=reques... | 1 |
_Original tickethttp://projects.scipy.org/scipy/ticket/707 on 2008-07-23 by
trac user rjansen, assigned to @wnbell._
Hi,
I'm trying to compile scipy on Solaris 10:
After, what seems to be a succesfull LAPACK and ATLAS build with the GNU
compiler 4.0.2 (switched to sunfreeware python,w hich is build with GNU
compil... |
Hi all,
This issue is meant to be read by people interested in a SciPy (package)
sprint.
First things first: SciPy is a library covering very diverse topics, so **do
something you're interested in** (say you're into signal processing, then ask
one of the core developers or experienced users about what could make se... | 0 |
I am trying to find a better packing way than browserify file into one.
|
#### Use case:
You create a library/tool that has dependencies.
You want to distribute your library in a UMD format (and have it work in the
browser without a user having to use something like system.js to polyfill
"require")
#### Current solution:
Using browserify to do the inlining work or create a custom buil... | 1 |
* VSCode Version: 0.10.13-insider
* OS Version: win10
How can i switch back to the `English commands` or the console can support
both 'English' and 'Chinese'?When i'm coding, I have to switch the IME.
... |
From @espresso3389 in #4679:
> I'm on Windows 10 and the IME is ATOK; a Japanese thirdparty IME.
> Even with MS-IME, the behavior is same.
> Typing "git: プル" correctly works but doing "git プル" does not work.
> The search function does not seem to work with Japanese characters.
![eea0c49e-f3a0-11e5-9726-32d... | 1 |
**Describe the feature** :
Currently `epoch_millis` has what appears to be an arbitrary 13 character
upper limit on what can be parsed. The date format documentation indicates
that the year range is between 1653 and 2286, and that you should use a
different formatter if your values exceed that range.
Because `epo... |
The suggester API is a good choice to get simple suggestions. But these
suggestions may take additional informations into account. Typing in something
like `restaurant` will result in restaurants all over the world. But in this
case the geolocation of the request can be used to get better results, namely
those which ... | 0 |
In the "Install" tab under "Settings", the search box is no longer searching
when the enter key is pressed. In order to search I have to click on the
inactive button in the button group with "Packages/Themes", then click back to
the category that I actually want to search. I'm on a new MacBook running OS X
10.10 with... |
Steps to reproduce:
1. Open settings
2. Install
3. Search for anything and press enter to run the search
4. Items come up
5. Repeat 3-4 if you want to to prove that it'll work again and again
6. Close settings tab
7. Open settings (it should still be on install pane)
8. Search for anything and press ... | 1 |
#### Claim Your Front End Development Certificate
https://www.freecodecamp.com/challenges/claim-your-front-end-development-
certificate
#### Step 3 displaying challenge map multiple times (infinite loop?), loading
prompt never finishes
After reaching step 3 where my profile is checked to see if I've completed all
... |
Hi, this looks to be the same as issue #5174, which is closed.
When I try to claim my front end development certificate at:
https://www.freecodecamp.com/challenges/claim-your-front-end-development-
certificate
When I get to step 3, and I click "Open link in new tab (this unlocks this
step)", I get an "Oops" error... | 1 |
**Migrated issue, originally created by Anonymous**
The following field/index produces an error in SA 0.4.2 / MySQL 5:
table = sa.Table('resource_path', self.db_metadata,
sa.Column('id', sa.Integer, primary_key = True),
sa.Column('path', sa.Bin... |
**Migrated issue, originally created by Anonymous**
This MAY be related to changes in #965, however, I had to make the following
change. The program worked without change with 4.0.0. The same problem shows
up in 0.4.2b, and possibly earlier versions.
The traceback:
File "/usr/lib/python2.3/site-
packages/SQLAlche... | 0 |
### Description
My team has an airflow stack orchestrating many of our ETL jobs. Recently, we
noticed a bug in one of our hourly job's code causing a large number of hourly
datasets to be malformed(more than 500). Thus, after fixing the ETL job, we
have the need to rerun all the impacted DAG runs to correct the data... |
**Description of the problem**
A common workflow we have is running daily DAGs not dependent of past runs.
When deployed, It need to catch up for many years before the runs are up to
date and can be used by analysts.
The problem is that most of times, recent runs are more used/valuable than
performing ETL of execut... | 1 |
I'm using numpy 1.12.0 version.
>>> a= np.load('a.npy')
>>> len(a)
1030703
>>> np.fft.fft(a[0:len(a)-3])
array([-18765.00000000 +0.j , 11107.65388924+14875.98484147j,
-1335.17295525 +4724.62925166j, ...,
-386.13524067 +590.33225249j, -1335.17295525 ... |
_Original tickethttp://projects.scipy.org/numpy/ticket/506 on 2007-04-27 by
@cournape, assigned to unknown._
Currently, using fft on arrays of size which has a prime number is extremely
slow (up to 15 minutes for eg an array of size 100003). The major problem
though is that the code being uninterruptible, this effe... | 1 |
Move Destructor into the React namespace so my typescript can use it.
React version: 17.0.2
## Steps To Reproduce
I want to create functional hook components that replace commonly duplicated
code - for instance, I am commonly using my event bus.
// somewhere...
const AppContext = createContext<{... |
Describe what you were doing when the bug occurred:
1.
2.
3.
* * *
## Please do not remove the text below this line
DevTools version: 4.11.0-39713716aa
Call stack: at store_Store.getElementAtIndex (chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:22171:35)
at store_Store.getElementIDAtIn... | 0 |
Our React app was triggering the following error during navigation events:
`Uncaught TypeError: Cannot read property 'firstChild' of undefined`
The error was occurring in the function `findComponentRoot`, when it failed to
find a component for an event callback.
In our app, this was happening when we would navigat... |
Hi,
When trying to unmount my whole app, I got some error.
> Uncaught TypeError: Cannot read property 'firstChild' of undefined
> ReactMount.js:606ReactMount.findComponentRoot
> ReactMount.js:606ReactMount.findReactNodeByID ReactMount.js:552getNode
> ReactMount.js:128executeDispatch
> EventPluginUtils.js:1... | 1 |
From @amenonsen on 2016-05-07T16:06:34Z
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
ec2_vpc_net
##### ANSIBLE VERSION
ansible 2.2.0 (devel 56ba10365c) last updated 2016/05/05 17:12:03 (GMT +550)
##### CONFIGURATION
Default
##### OS / ENVIRONMENT
N/A
##### SUMMARY
ec2_vpc_net al... |
##### ISSUE TYPE
* Feature Idea
##### COMPONENT NAME
Azure Cloud Module
Azure inventory script
We have a discussion in this PR about authentication and routing to the
correct endpoints for the Azure modules, considering Public Azure / Gov /
German / China and even Azure Stack. I wanted to open an issue about ... | 0 |
Angular doesn't work in IE11. This plunker is minimal reproduction:
Check this plunker please in IE11.
https://plnkr.co/edit/LOJWgfDGvtKQzhxuD8Wa?p=preview
It doesn't work with webpack as well.
|
**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
... | 1 |
When koa-router is wrapped by next, /graphiql become 404
* [ x] I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
/graphiql should not 404
## Current Behavior
/graphiql 404
## Steps to Reproduce (for bugs)
wrapped with next js, this code below will m... |
# Bug report
## Describe the bug
When you use react a component residing outside the main Next.js project
folder which uses hooks. You end up getting `Invalid hook call` error and the
application breaks. Components without hooks work as expected.
The bug appears in all versions `>9.0.5` when you change the webpack... | 0 |
I have a page with url denied in server.js (I should see the content of the
_error page instead of the original "post.js" content), but when I access this
url, the _error content is almost instantly rerendered by the original
"post.js" content. Is there any way how to avoid this strange behavior?
* I have searched... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
Importing a constant and using it in a `<style jsx>` tag should work as per
the documentation in tests using Jest
## Current Behavior
The imported constant is `undefined` when used in the `<style j... | 0 |
* VSCode Version:
* OS Version:
Steps to Reproduce:
1. edit a file (VSCode marks it as needing to be saved)
2. Alt+F+S
file doesn't save. in any other windows program, chording Alt+F (let go of F,
keep holding Alt) + S will save the file.
if you let go of "Alt" between F and S, it works. my muscle mem... |
New line character (\n) not detected in regular expression search. It is
treated as string even when regular expression option is selected.
| 0 |
twisted.internet.base.ThreadedResolver currently (18.9.1.dev0) uses
socket.gethostbyname to do DNS resolution, which does not support IPv6.
Meanwhile, scrapy currently (1.5.0) uses ThreadedResolver to do DNS
resolution, thus unable to crawl host name with IPv6 address only or pure IPv6
ip address.
https://github.co... |
I'm running into problems while trying to run the example on the scrapy.org
home page from the FOSDEM IPv6-only Wi-Fi network. (The scraper works fine
from an IPv4 network.)
If both IPv4 and IPv6 are enabled on my computer (OS X Yosemite), and the IPv4
is configured with DHCP, and thus gets a self-assigned address (... | 1 |
**Anders Kobberup** opened **SPR-9263** and commented
We are having a rising amount of issues where the symptom is that random
properties that have been autowired into our beans (via `@autowired` setter
methods) turns our null, without any exceptions during start up.
This means that we have no way of knowing whet... |
**Olivier Lamy** opened **SPR-5385** and commented
All artifactIds has changed in 3.0M1.
It will be a REAL NIGTHMARE for maven users when upgrading due to all
artifactIds change !!
This will break a lot of builds for people who wants to upgrade !!
Please any chance to revert to this non backward compatible cha... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.