text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
I just found out that property access expressions doesn't work on type
predicate functions and `instanceof` type guards.
class A {
propA: number;
}
class B {
propB: number;
}
class C {
propC: A;
}
declare function isA(p1: any): p1 is D;
... |
This is a proposal for using property access as another form of type guards
(see #900) to narrow union types. While we're investigating expanding the
power of type guards (#1007) this feature would support the natural style that
JavaScript programmers have in their code today.
### Using property access to narrow uni... | 1 |
I am trying to run the following code in anaconda on 64 bit windows 8.1. But
it is generating error randomly after some epochs. Please help to get out of
this.
Code:
from **future** import print_function
import os
import datetime
import time
import numpy as np
from keras.datasets import cifar10
from ker... |
Any idea what could be causing this error? I've been trying to solve this for
a week. Thanks in advance.
Train on 60816 samples, validate on 15204 samples
Epoch 1/20
60816/60816 [==============================] - 19s - loss: 0.1665 - acc: 0.9597 - val_loss: 0.1509 - val_acc: 0.9605
Epoch 2/... | 1 |
**Do you want to request a _feature_ or report a _bug_?**
Bug
**What is the current behavior?**
Adding NamedModulesPlugin to a project that uses certain global lookups
results in what are effectively reference errors.
**If the current behavior is a bug, please provide the steps to reproduce.**
Add NamedModule... |
Adding NamedModulesPlugin to the webpack config somehow removes jquery aliases
from the global namespace. Results in the following Bootstrap Utils error:
Uncaught TypeError: Cannot set property 'emulateTransitionEnd' of undefined
at setTransitionEndSupport (webpack:///./\~/bootstrap/js/dist/uti... | 1 |
**Migrated issue, originally created by Johannes Erdfelt (@jerdfelt)**
sqlite treats unique indexes and unique constraints as distinct entities.
However, only indexes are reflected and unique constraints aren't.
This is different than mysql (which aliases unique constraints to a unique
index) and postgresql (which ... |
### Describe the use case
Postgresql supports domains using the `CREATE DOMAIN` and `DROP DOMAIN`
commands. A domain is a data type with additional constraints -- for example,
an email address is a specific kind of string, so you can use a domain to
define a type that only accepts strings that are correctly formatte... | 0 |
Sick of every time I open Atom having to update stuff...
|
Saw an Atom update, closed Atom to get it. Relaunched Atom from the Terminal:
[master] ~/Development/ $ atom .
LSOpenURLsWithRole() failed for the application /Applications/Atom.app with error -10810.
I guess that means: "I'm still downloading! Be patient!" It'd be nice if the
message clarifi... | 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.):
cre... |
Namespace entity, as other entities, contains ObjectMeta (metadata), which
contains in turn also a namespace property, which is :
a. duplication of information
b. can be updated to a completely different value than the namespace it's in.
so imho this is a bug and can cause inconsistency and confusion.
| 0 |
Using the shortcuts for copying and pasting text selections duplicates the
last selected
character to the beginning of the newly inserted line.

* using copy shortcut and paste from the ... |
When editing files over an sshfs connection, it takes long periods of time to
perform basic actions (directory expansion, file opening). This is likely
because git is running locally, but querying a remote repository many times --
can these behaviors be migrated into a non-blocking request? e.g., allow the
file to op... | 0 |
#### Challenge Name
#### Issue Description
Going to the following URL: https://github.com/FreeCodeCamp/FreeCodeCamp/wiki
This web page has a link called "template" for the Wiki template page.
Clicking on this link
(https://github.com/FreeCodeCamp/FreeCodeCamp/wiki/Algorithm-Wiki-Template)
redirects to the origina... |
I noticed that a couple of links are breaking in FreeCodeCamp wiki.
* Camperbot https://freecodecamp.github.io/wiki/en/CamperBot
* Template https://freecodecamp.github.io/wiki/en/Algorithm-Wiki-Template
| 1 |
### Description
Modify the batch indexing task ID generation logic from
`<index_type_name>_<datasource>_timestamp` to
`<index_type_name>_<datasource>_<random_id>`
This would impact native index tasks as well as hadoop index tasks.
### Motivation
With the existing task naming convention, if there are multiple ... |
HadoopDruidIndexer should load up the runtime.properties like all of the other
processes and be able to fill stuff into the configuration based on the values
it finds (stuff like the pusher). This would help consolidate the various
different ways of specifying configuration.
| 0 |
### Version
2.4.1
### Reproduction link
https://github.com/tiagofelipe/vue-store-bug
### Steps to reproduce
In src/app/auth/services/auth.js i need to import the store "import store from
'../../../store'", but an error occurred:
Uncaught TypeError: Cannot read property 'state' of undefined
Turns out I wasted a... |
### What problem does this feature solve?
因为dom隐藏下,其宽度或者高度为0,但是偏偏有些组件需要用到这个高度宽度,比如自定义的滚动条,轮播等等。
这类的组件一般都有自己的refresh的方法。
为开发过程中为了追求更快的渲染速度使用的是v-show的方案,虽然可以通过v-show对应data的watch去监听
但是这就要组件对外暴露对应的refresh方法,而不能从组件内部的show钩子去实现刷新,这似乎并不怎么优雅。
综上,我希望可以增加show或者hide钩子函数,或者有其他替代方案也是可以的
### What does the proposed API look... | 0 |
### **bug**
You can find the code : https://codesandbox.io/s/j3233w91xw
**Code explanation :**
* The Parent component called "ManageEvents" make an API call to get a list of Events from the backend.
* Once the events get fetch, I use the function "map" to create the child components called "EventCard" that t... |
**Do you want to request a _feature_ or report a _bug_?**
Request a feature
**What is the current behavior?**
`getDerivedStateFromProps` does not expose `prevProps`
**What is the expected behavior?**
`getDerivedStateFromProps` should expose `prevProps` for cleaner
implementation of use case mentioned below.
... | 0 |
# Bug report
## Describe the bug
`next build` fails with following error after upgrade to Next 9.
{ Error: Module did not self-register.
at Object.Module._extensions..node (internal/modules/cjs/loader.js:857:18)
at Module.load (internal/modules/cjs/loader.js:685:32)
at Functio... |
Following instructions on with-apollo example on master (v2.4.6) fails to
build.
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
Should build and run.
## Current Behavior
> Failed to build on
> /var/folders/g0/40w25pdx4r166gr3dr2dszr80000gn/T/73a90... | 0 |
Installed latest Atom from RPM package on Fedora 21 running in a VirtualBox VM
on Windows 8.1, opened a project with default settings and cannot select any
text by clicking and dragging with the mouse.
|
There is a known issue with Chrome41 engine running on Linux in VirtualBox. It
actually became a show-stopper for Chrome42. **TL;DR** : in VB Chrome41 engine
_always_ runs in touch-screen mode, even on desktops.
Hotfix in Chrome41 is to pass `--touch-devices=123` to the chrome command
line.
Is it possible to pass p... | 1 |
1. I want to see .d.ts for `@types/X` package without cloning repo.
But when I open types folder on github I see following error, and `X` folder
is not listed.
`Sorry, we had to truncate this directory to 1,000 files. 3,413 entries were
omitted from the list.`
2. I want to see what issues already filed for `... |
* I tried using the `@types/swaggerize-express` package and had problems.
* I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript
* I have a question that is inappropriate for StackOverflow. (Please ask any appropriate questions there).
* Mention the authors (see `Definition... | 0 |
The following snippet is valid ES6, but does not compile due to the undeclared
property `thing`. Since TypeScript is aiming to be a superset of ES6, how will
this situation be approached?
class Thing {
constructor() {
this.thing = 12;
}
}
|
I would like to implement compilation of ts files to generate source map + js
files inside Eclipse by using `tsc`. I have 2 means to do that:
1. observe changes (with Eclipse IResource API) of typescript files and call `tsc` with the given file
2. call `tsc --watch` for my Eclipse project
I would prefer to do t... | 0 |
I have two projects and each of them has
https://github.com/borisyankov/DefinitelyTyped/blob/master/requirejs/require.d.ts
file included. While compiling them with TS 1.4 I got 55 errors of "Duplicate
identifier '[member_name]'".
How I can eliminate this issue or at least switch it to a warning? Hope it is
not by d... |
I am new to TypeScript, so I may be going about this entirely wrong, but I've
got a scenario where implicit referencing is causing problems.
In my project (Visual Studio 2013 Update 3), I have several Web pages. Each
one has one reference to a script that contains general functionality for all
pages and one referenc... | 0 |
##### System information (version)
* OpenCV => 4.1.0
* Operating System / Platform => Windows 64 bit
##### Detailed description
import cv2
cap = cv2.VideoCapture(0)
while True:
ret, frame = cap.read()
#print(ret)
print(frame)
It prints the 3 channel array val... |
##### System information (version)
* OpenCV => 3.4.x
* Operating System / Platform => Ubuntu 16.04
* Compiler => gcc 5.4.0
##### Detailed description
With OpenVINO 2019R1:
/opt/intel/openvino_2019.1.094/deployment_tools/inference_engine/lib/intel64/libinference_engine.so: undefined reference t... | 0 |
* VSCode Version: 0.10.12-alpha
* OS Version: Windows10
Steps to Reproduce:
1. Create Asp .net core empty project in visual studio.
2. Add some directories under wwwroot folder for client code like JS.
3. Add new item to manage client lib and add bower.json file.
4. Add some client side lib in to bower.... |
add path choose window for img src、link href、script src、background-img src
| 1 |
Figure out how to set the normalize whitespace option and get rid of all the
inline things.
|
In recent versions of nose, the options `NORMALIZE_WHITESPACE` and `ELLIPSIS`
can be set globally. That would be awesome.
This is only available in nose 1.2, though. As removing the flags inline would
break them on older versions, I'm not sure we can ever make the switch :-/
Should we try to monkey-patch?
| 1 |
I've made an electron application to execute a flash application using the
pepflashplaye plugin several platforms.
I have followed the doc https://electronjs.org/docs/tutorial/using-pepper-
flash-plugin
It works fine on Windows, Mac but when i execute it on linux, the electron
window is
launched and a message app... |
* Electron Version: 3.0.0-beta.2
I'm not sure where to report electron webpage issues so am creating this here.
1. Go to https://electronjs.org/releases#3.0.0-beta.2
2. Note the "Linux" section:
> Linux
> Fixed a Linux thing. #123
#123 appears to be a Windows issue that was opened 4+ years ago. Also, th... | 0 |
I've been trying to dynamically check and uncheck the Table Header checkbox
through another component, and have been unable to do so.
While exploring this issue further I found that in the TableHeader component
setting selectAllSelected to true doesn't seem to be passed on. I've added
dummy props to my table header ... |
The current Next.js example is quite daunting with several files and concepts
thrown in. I will apologize in advance because the following may seem like a
bit of a rant, but I really want to improve these examples.
## Things I found confusing
The whole example looks more like someone's personal boilerplate for thei... | 0 |
When doing functional testing using the test client
(Symfony\Bundle\FrameworkBundle\Client) and disabling kernel reboots between
requests using `$client->disableReboot()`, upon the 2nd request I'm running
into this:
symfony/src/Symfony/Component/HttpFoundation/Session/Storage/MockArraySessionStorage.php
Line 134 in... |
Hi there,
the exception is thrown by this line:
https://github.com/symfony/symfony/blob/2.5/src/Symfony/Component/HttpFoundation/Session/Storage/MockArraySessionStorage.php#L134
My setup works completely fine within a valid PHP environment (without
`TestSessionListener`) - data getting stored in the session befor... | 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
I expected to have my .json file returned.
## Current Behavior
Instead, I was asked for 'module' or 'render' objects.
## Steps to Reproduce (for bugs)
1. Create a JSON file to import
2. use dynam... |
Example build fails.
TypeError: (0 , _styles.createStyleSheet) is not a function
at Object.<anonymous> (/xxx/xxxx/xxx/xxx/with-material-ui-next/.next/dist/components/withRoot.js:47:47)
at Module._compile (module.js:573:30)
at Object.Module._extensions..js (module.js:584:10)
... | 0 |
### Preflight Checklist
* I have read the Contributing Guidelines for this project.
* I agree to follow the Code of Conduct that this project adheres to.
* I have searched the issue tracker for a feature request that matches the one I want to file, without success.
### Electron Version
11.3.0
### What o... |
# TypeScript definitions for electron are a mess.
Dear ladies and gentlemen.
Recently I tried to start a TypeScript project using the electron framework.
For that purpose
I started a new TypeScript / node.js project from scratch and installed the
electron npm
package as well as the electron typedefinitions.
U... | 0 |
# Environment
Windows build number: [run "ver" at a command prompt]
PowerToys version: 0.18.1
PowerToy module for which you are reporting the bug (if applicable): PowerToys Run
# Steps to reproduce
Search for a program shortcut inside Documents folder
# Expected behavior
Program shoul... |
# Environment
Windows build number: Version 10.0.18363.836
PowerToys version: v.0.18.1
PowerToy module for which you are reporting the bug: PowerToys Run
# Steps to reproduce
Install PowerToys via GetWin
Run PowerToys in always admin mode
Run PowerToys Run via Alt + Space
Search fo... | 1 |
Please add it so then when dragging the window out of the zone, it restores
back to the size before you snapped it, just like in Windows Snap.
|
I could never figure out how to make this work. Would be nice but is a hard
problem.
| 1 |
http://stackoverflow.com/questions/18924908/remove-parentheses-from-complex-
numbers-pandas/18925604#18925604
|
How can I read back in dataframes from CSV files which I export using
`to_csv()` that have complex numbers?
test case:
data = pd.DataFrame([1+2j,2+3j,3+4j],columns=['a'])
print 'a='
print data['a']
print 'a*2='
print data['a']*2
filename = 'testcase1.csv'
data.to_csv(filen... | 1 |
On a short, wide monitor or possibly a tablet in landscape mode, you cannot
scroll down the menu even though it's fixed positioning and very long. Thus,
you literally cannot click on the bottom options of the left documentation
menu.
For example, make your window something like 1400x600 and open this. Try to
click o... |
On the **Components** page of the Bootstrap docs, the sidebar becomes too tall
for the viewport when `scrollspy` causes the sidebar subheadings to show.
The sidebar cannot be scrolled or manipulated to show content below the
viewport.
See here: http://getbootstrap.com/components/#glyphicons
. I'm trying to figure out
whether this is expected or not.
If it's not, it's probably worth to mention that somewhere.
Anyways I think t... | 0 |
* Electron Version:2.0.7
* Electron Builder Version:20.27.1
* Operating System (Platform and Version):OS X 10.11.6
* Last known working Electron version: unknown
**Expected Behavior**
If app IS already running and the user opens any file with a file extension
handled by the app using "Open With" or double c... |
**Is your feature request related to a problem? Please describe.**
running many electron apps uses much memory and harddisk space overhead
**Describe the solution you'd like**
electron should run as a daemon so that more then 1 app can share functions
**Describe alternatives you've considered**
create os leve... | 0 |
Salute,
currently the GP module does not allow to use multiple input feature with the
same value. At least from the math point of view there is no need for this
restriction. Though, I didn't go through the whole implementation to see if
there is something special about it that would require this restriction. I
teste... |
I would like to suggest that the LOF score which is calculated and stored in
the LOF class as `negative_outlier_factor_` is publicly accessible.
scikit-learn/sklearn/neighbors/lof.py
Line 193 in 18cf2e5
| self.negative_outlier_factor_ = -np.mean(lrd_ratios_array, axis=1)
---|---
With this change it wo... | 0 |
My intellisense is not showing the same behavior as what's shown in the v10.10
release notes.
Note here how the `@constructor` directive is visible at the end of the
description, suggesting that perhaps it wasn't parsed.
 my problems/warnings status
bar shows 99+ and clicking on it shows all are coming from
/Applications/Visual Studio Code -
Alpha.app/Contents/Resources/app/extensions/typescript/server/typescript/lib/lib.d.ts

T... |
# Bug report
(I _think_ this is a bug. It's possible it's a feature I don't yet
understand.)
**What is the current behavior?**
When using the split chunks plugin, the resulting compilation chunks sometimes
have duplicate ids. For example, I added this debugging hook to my webpack
config:
compiler.... | 0 |
ERROR: type should be string, got "\n\nhttps://elasticsearch-\nci.elastic.co/job/elastic+elasticsearch+master+java9-periodic/256/consoleText\n\nThis looks like a fairly minimal reproduction:\n\n \n \n public void testAppendStringIntoMap() {\n assertEquals(\"nullcat\", exec(\"def a = new HashMap(); a.cat += 'cat'\"));\n }\n \n\nI'm not super familiar with this code. Does someone else want it or should I\ngrab it?\n\n" |
Right now Elasticsearch plugins that want ship scripts have to deal with
locating the configuration of Elasticsearch so they can run properly. On the
other hand in 5.0 Elasticsearch will ship the `elasticsearch-plugin` command
that already does this. If we could allow plugins to register `subcommands` of
`elasticsear... | 0 |
Use the proxy object as part of telnet invocation which has been exccluded as
part of [3013] (#3013
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: ... |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.4.1
* Operating System version: Window7
* Java version: JDK8
### Steps to reproduce this iss... | 0 |
The following snippet is valid, as far as I know:
export interface User {
wpUserID: string;
}
The following snippet is also valid, but does not compile, but probably
should:
export default interface User {
wpUserID: string;
}
I get errors thrown at me when using... |
Raised on SO. The following is an error:
export default interface Foo {
}
By design or bug?
| 1 |
* VSCode Version: 0.10.12-alpha
* OS Version: Ubuntu 14.04
* Debugging using Microsoft cpp debugger, but will happen in any "stop-all" style debugger.
Steps to Reproduce:
1. Compile following C++ code
#include <iostream>
#include <cstdlib>
#include <pthread.h>
using namespace... |
* VSCode Version:0.10.10
* OS Version:windows 10
Steps to Reproduce:
1. type
`var a = ENV === 'dev' ? "a" : "b";`
2. " : " is consider as variable type

| 0 |
Challenge Waypoint: Import a Google Font has an issue.
User Agent is: `Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0)
Gecko/20100101 Firefox/42.0`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
When each Waypoint loads, the current code appears to be running twice. ... |
Challenge http://www.freecodecamp.com/challenges/waypoint-line-up-form-
elements-responsively-with-bootstrap has an issue.
I think the problem is happening on all Waypoint pages; the device right side
of the screen where the CatPhotoApp page displays the information is being
displayed duplicated;
Another point is t... | 1 |
With current 0.5 master:
julia> map(Float32, [3,4,5])
3-element Array{Float32,1}:
3.0
4.0
5.0
julia> broadcast(Float32, [3,4,5])
3-element Array{Int64,1}:
3
4
5
We presumably want to return a `Float32` array in both cases?
cc: @ViralBShah: this affe... |
The following code fails with an `InexactError()`:
X = [1,2,3]
Y = [4 5]
broadcast(atan2, X, Y)
whereas
[atan2(x,y) for x in X, y in Y ]
(albeit producing an array of type `Any`), while
atan2([1,2,3],[4,5,6])
produces an array of `Float64`.
Can w... | 1 |
I have a kind request for all the contributors to the latest provider packages
release.
Could you help us to test the RC versions of the providers and let us know in
the comment,
if the issue is addressed there.
## Provider amazon: 2.4.0rc2
* MySQLToS3Operator add support for parquet format (#18755): @guotong... |
**Description**
Currently, in our bash scripts (mostly in CI and Breeze) we use an old and
outdated naming convention where every environment variable is CAPITALIZED.
This comes from my personal background as I am the author of most of it, but
there are better (and modern) conventions that we should use. Particularl... | 0 |
This 3-liner crashes rustc:
struct CrashIt;
impl Iterator for CrashIt { }
fn main() { }
My original code did a lot more than that, but I tried to create the minimal
repro case.
$ rustc --version --verbose
rustc 0.13.0-nightly (c6c786671 2015-01-04 00:50:59 +0000)
binary:... |
### STR
Didn't have time to write a shorter snippet
#![crate_type = "lib"]
#![feature(associated_types, lang_items, unboxed_closures)]
#![no_std]
use Option::{None, Some};
trait Iterator {
type Item;
fn next(&mut self) -> Option<Self::Item>;
}
... | 1 |
### Version
2.5.16
### Reproduction link
https://codesandbox.io/s/rllvz0m21o
### Steps to reproduce
1. Create a "renderless" component that passes data into the default scoped-slot.
render () {
return this.$scopedSlots.default(this)
},
2. Have a component that uses the "renderl... |
### Version
2.5.16
### Reproduction link
https://codesandbox.io/s/vn7jz1l1kl
### Steps to reproduce
Click the button that says "refresh"
### What is expected?
Nothing should happen
### What is actually happening?
[Vue warn]: Duplicate presence of slot "default" found in the same render tree
- this will likel... | 1 |
**What is the bug?**
When you perform the first post request, everything's fine. Each subsequent
request (or a page refresh) leads to a 405 error.
**How to Reproduce the error**
Here's the minimum code to replicate the error:
Project Structure
* templates
* index.html
* main.py
main.py:
... |
With the following example:
from flask import Flask
app = Flask(__name__)
@app.route('/', methods=['POST'])
def hello_world():
return 'Hello World!'
if __name__ == '__main__':
app.run()
When you set the request body to `{}` with Postman or any H... | 1 |
Go version: go1.3.3 linux/amd64 on Fedora 20
When creating an archive (with `tar.NewWriter`), long names (> 100 chars) that
don't fit into standard tar headers need to be encoded differently.
An optimisation in `archive/tar/writer.go: writeHeader()` tries to use a ustar
header when only the name is too long create... |
Using `go1.5`
Also discovered this while fixing other archive/tar issues (and I found fair
number of them, mostly minor). However, fixing this will change the way
archive/tar reads and writes certain formats.
#### What the current archive/tar thinks the GNU format is:
* A magic and version that forms the string ... | 1 |
We got the following warning message:
warning: variant is never used: `Foo`, #[warn(dead_code)] on by default
For this code:
enum Something {
Foo,
NotFoo
}
fn main() {
match Something::NotFoo {
Something::Foo => {}
_ => {}
... |
mod a {
#[deriving(Show)]
pub enum E {
Variant1,
Variant2,
}
}
fn main() {
let x = a::E::Variant1;
let y = match x {
a::E::Variant1 => 1i,
a::E::Variant2 => 2i,
};
println!("Hello world: {... | 1 |
In the resulting output of customized Bootstrap 3 CSS, the styles for .fade.in
come after .modal-backdrop.in
This causes the opacity of the modal backdrop to become 1.0 instead of 0.5,
giving the appearance of a totally black backdrop instead of a faded page.
:
:
* No
**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/.):
Bug?
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.):... | 0 |
OpenCV 4.0.0 alpha cannot be easily included in a /clr or /clr:pure Visual
Studio project, because of the new native use of `<mutex>`, which is forbidden
in that case.
It would be easy to fix it, using a cv::Mutex wrapper around
std::recursive_mutex (instead of straight typedef), with an opaque
implementation that ... |
##### System information (version)
* OpenCV => 3.4.1
* Operating System / Platform => Windows 64 Bit
* Compiler => Visual Studio 2017
##### Detailed description
I can not compile quite simple OpenCV project with CLR on Visual Studio 2017.
It gives me "< mutex > is not supported when compiling with /clr or
/c... | 1 |
**Apache Airflow version** : 1.10.9
**Kubernetes version: 1.15.11
**Environment** :
* **Cloud provider** : Google Cloud
**What happened** :
I started to notice that Airflow webserver performance degrades over time. At
one moment all my webserver pods had 100% CPU used, so UI and API became too
slow, even unusa... |
**Apache Airflow version** : 1.10.7
**Kubernetes version (if you are using kubernetes)** (use `kubectl version`):
**Environment** : local
* **Cloud provider or hardware configuration** : 3Ghz Intel Core i5, 16GB
* **OS** (e.g. from /etc/os-release): Debian 9
* **Kernel** (e.g. `uname -a`): Linux debian 4.9.... | 0 |
As i use the sharding-sphere in my old project . There is some sql segement
like
insert into a (a,b) value(?,?) on duplicate key update a= ? , b = ? + b by use
the PreparedStatement
then the sharding-sphere will ignore the last two question symbol , then will
cause the parameter 3 not found exception .
As i go ... |
## Bug Report
### Which version of ShardingSphere did you use?
Both 5.0.0-alpha and 5.0.0-beta have this problem.
### Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy?
ShardingSphere-JDBC
### Expected behavior
Successful execution of sql.
### Actual behavior
Unsuccessful execution of sql... | 0 |
for example, one might want to solve issue #4357 with this.
a test program: http://play.golang.org/p/gyk1yehoTp
i think we can treat a nil byte slice as the signal.
|
Time.MarshalJSON also encodes uninitialized time.Time values.
It would be better if the encoding was guarded with IsZero() to avoid returning
meaningless times.
| 0 |
**What keywords did you search in Kubernetes issues before filing this one?**
(If you have found any duplicates, you should instead reply there.):
generated.Asset
* * *
**Is this a BUG REPORT or FEATURE REQUEST?** (choose one):
Bug Report
**Kubernetes version** (use `kubectl version`):
Today's HOT.
commit `b7... |
Something like:
rules:
- host: foo.bar.com
path: /api
backend:
- serviceName: alpha1
weight: 1, or 33%
- serviceName: alpha2
weight: 2, or 66%
There'er ways to achieve similar splitting with either a deployment or by
managing Service labels so they span a mi... | 0 |
`flutter run -v` getting stuck at `Waiting for observatory port to be
available...`. Although the build is getting installed on iOS simulator, but
nothing happens if I try to launch it, ie I see a white blank screen and then
goes back to home screen. This is the gif for your reference :
https://media.giphy.com/media... |
Instead of using our own machines and deleting stuff to reproduce states of
missing dependencies to test things like #9580, create an official process to
test on unified initial environments.
Something lightweight like Docker is ideal. Then we can have different images
for each development environment combinations. ... | 0 |
I'm deploying a project of mine to Heroku (which appear to be copying the
project from a directory in which it is built before starting it). This causes
issues with Next.js `5.0.0`, which appear to output absolute paths. This can
be confirmed by going through the sources.
This was not an issue with `4.2.3`.
* I h... |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
HTML/JSX examples with `<img>` elements should have meaningful alt attributes.
## Current Behavior
Two examples in `readme.md` use `<img src="...">` with no alt attribute.
Instead, `alt` attribute... | 0 |
i am new to doctrine... created yml file with name XYZ.Model.User.dcm.yml
inside my condig directory
and i run orm:generate-enities command to generate Entities in XYZ\Model\
directory but i got XYZ\Model\XYZ\Model\User.php instead of XYZ\Model\User.php
|
i am new to doctrine... created yml file with name XYZ.Model.User.dcm.yml
inside my condig directory
and i run orm:generate-enities command to generate Entities in XYZ\Model\
directory but i got XYZ\Model\XYZ\Model\User.php instead of XYZ\Model\User.php
| 1 |
## Description
When trying to boot an electron application with electron command (directly or
indirectly) electron does not boot the app, it simply exits without word,
reason or logs, there are no exceptions thrown, there are no logs output,
there is no indication of what is actually happening. This was initially
di... |
* Electron version: 1.2.4
* Operating system: Linux xxx 4.2.0-38-generic #45~14.04.1-Ubuntu SMP Thu Jun 9 09:27:51 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
I was trying to set 1.2.2 - 1.2.3 versions and works fine. When updating to
1.2.4 app.on('ready'...) never works. No errors output on console.
Trying "Quick ... | 1 |
When you use `<a router-link="foo">Link</a>` with an accompanying `<router-
outlet></router-outlet>`, the proper component's template appears in the
outlet. The issue is when the user refreshes (on the proper URL extension,
i.e., `localhost:8080/foo`), no templates are loaded (including the original
app's template), ... |
It appears that only the HashLocationStrategy updates the url on calls to
router.navigate. When I change my LocationStrategy to the
HTML5LocationStrategy the urls no longer update when navigating from
_"/products/:productId" - > "/"_. The navigation does occur, though.
This is happening on Alpha.31.
The code I'm us... | 1 |
[Enter steps to reproduce below:]
1. ...
2. ...
**Atom Version** : 0.199.0
**System** : Microsoft Windows 7 Enterprise
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.... |
I right-clicked on a folder in the tree view
**Atom Version** : 0.194.0
**System** : Windows 7 Entreprise
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Fu... | 1 |
I think it's a bug related with the feature #19612
I have a route group for an admin section, and I want to prefix the URL and
name of each route inside the `App\Controller\Admin` namespace.
If I go only for the route prefix it works without any problem
# config/routes.yaml
admin:
prefix: /... |
This issue is about discussion my DX initiative for optimization and
generalization of symfony 2 functional testing mechanisms. I use this approach
for about 2 years and i can provide corresponding PR if it receives positive
feedback.
# Problem
For now all the bundles that contain functional tests need to describe ... | 0 |
# \----------------------------------------------------
# This works
# \----------------------------------------------------
import scipy.io as sio
a_dict = {'field1': 0.5, 'field2': 'a string'}
sio.savemat('saved_struct.mat', {'a_dict': a_dict})
# \----------------------------------------------------
from p... |
The MATLAB equivalent of None is the empty array []. It looks like scipy does
not perform this conversion.
But if I try to save a dict with a None inside it, I get this: (scipy 0.13.0
in Anaconda Python on Windows 7 64-bit)
>>> import scipy.io
>>> scipy.io.savemat('test.mat',{'x':3})
>>> scipy... | 1 |
* [ √] I have searched the issues of this repository and believe that this is not a duplicate.
* [ √] I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.1
* Operating System version: Mac OS
* Java version: 1.8
### Steps to reproduce th... |
是否进行心跳信息的发送,是靠下面两个属性来判断的。
Long lastRead = (Long)
channel.getAttribute(HeaderExchangeHandler.KEY_READ_TIMESTAMP);
Long lastWrite = (Long)
channel.getAttribute(HeaderExchangeHandler.KEY_WRITE_TIMESTAMP);
KEY_READ_TIMESTAMP与KEY_WRITE_TIMESTAMP的设置在HeartBeatHandler和HeaderExchangeHandler中都做了一遍。
在HeartBeatHandler中:(代码... | 0 |
We coding almost on US.en keyboard, if need switch input method and switch
command name to Chinese in brain then input, it's not good idea.

|
* VSCode Version:
バージョン 0.10.12-insider
コミット `ef2a1fc`
日付 2016-03-21T11:33:38.240Z
シェル 0.35.6
レンダラー 45.0.2454.85
ノード 4.1.1
Even Japanese people, typing Japanese words are very painful and time-
consuming because of IME composition problems.
We expects that the commands are all in English.
For examp... | 1 |
transformer:https://www.tensorflow.org/alpha/tutorials/text/transformer#top_of_page
Has anyone run this experiment, and the results of my run have not reached the
official results. I posted my code and helped me find the reason.
import tensorflow_datasets as tfds
import tensorflow as tf
i... |
**System information**
* OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10 64bit
* TensorFlow installed from (source or binary): pip
* TensorFlow version: 1.12.0
* Python version: 3.6.7 64bit
* Installed using virtualenv? pip? conda?: No virtualenv. Direct install with pip. No conda. Vir... | 0 |
Possibly this issue is not an issue of Windows Terminal but of WSL or of one
specific distribution within WSL.
# Environment
Microsoft Windows [Version 10.0.18362.356]
Windows Terminal (Preview) [Version 0.4.2382.0]
WSL 1 with Ubuntu 18.04 (not sure how to find out the build number)
# St... |
# Environment
Windows build number: 10.0.18362.0
Windows Terminal version : 0.4.2382.0
ConEmu version: 180626
# Steps to reproduce
1. Copy the color palette for "<Solarized (John Doe)>" from ConEmu to terminal. Here's the relevant JSON:
{
"wh... | 1 |
I’m using a bépo keyboard layout. On Windows, when hitting _AltGr_ , I get it
translated to `ctrl-alt`. On Linux, I get it translated to… `á`, which is very
weird and wrong.
|
Original issue: atom/atom#1625
* * *
Use https://atom.io/packages/keyboard-localization until this issue gets fixed
(should be in the Blink upstream).
| 1 |
PLEASE INCLUDE REPRO INSTRUCTIONS AND EXAMPLE CODE
* * *
## Please do not remove the text below this line
DevTools version: 4.0.5-5441b09
Call stack: at d (chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:5744)
at e.getCommitTree (chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/m... |
* * *
## Please do not remove the text below this line
DevTools version: 4.0.2-2bcc6c6
Call stack: at d (chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:5744)
at e.getCommitTree (chrome-
extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:8526)
at Ai (chrome-
extension://fmkadma... | 1 |
The following program fails with the panic:
package main
import (
"fmt"
"net/mail"
)
func main() {
data := "=??Q? ?=<0@0>"
addr, err := mail.ParseAddress(data)
if err != nil {
return
}
_, err = mail.ParseAddress(a... |
The following program fails the panic:
package main
import (
"fmt"
"net/mail"
)
func main() {
data := "\"\\\x1f,\"<0@0>"
addr, err := mail.ParseAddress(data)
if err != nil {
return
}
_, err = mail.ParseAddress(add... | 1 |
# Bug report
## Describe the bug
`<Link>` will not navigate to pages with Ant Design stylesheets.
## To Reproduce
https://github.com/iamricky/nextjs-bug
## Expected behavior
The app navigates to each route except `/test`. It fails silently w/o errors,
so I don't have a way of investigating it. The app **will** ... |
This is bug report
Link does not work with css-module imported. That happens when page with Link
has no css, and linked page has. No errors in console, so im not sure about
reasons, but there is minimal repo to reproduce:
https://github.com/standy/next-css-error
Bug appears in `next@7.0.0` \+ `next-css@1.0.1`,
... | 1 |
_Original tickethttp://projects.scipy.org/scipy/ticket/1796 on 2012-12-20 by
trac user seanBE, assigned to unknown._
FAILED (KNOWNFAIL=15, SKIP=43, errors=1, failures=69)
Tested scipy using the nose package. 69 failures is quite a lot.
|
_Original tickethttp://projects.scipy.org/scipy/ticket/1729 on 2012-09-18 by
trac user breuderink, assigned to unknown._
Dear developers,
I installed the development version (the latest would not compile due to
VecLib) of SciPy from source:
$ git clone https://github.com/scipy/scipy.git
$ git show
commit `6981... | 1 |
From @srkiNZ84 on 2016-05-09T22:40:20Z
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
ec2_asg
##### ANSIBLE VERSION
ansible 2.0.0.2
##### CONFIGURATION
##### OS / ENVIRONMENT
Running from: Ubuntu Linux
Managing: Ubuntu Linux
##### SUMMARY
We (seeming randomly) get cases where we'... |
It would be nice to be possible to specify vars in tasks files such as the
following:
# playbook.yml
- hosts: localhost
tasks:
- include: tasks.yml
# tasks.yml
vars:
- path: /srv/bar
- name: copy file foo
action: copy src=foo dest=$path/foo
... | 1 |
### Expected Behavior
Only the error message / usage information being printed
### Actual Behavior
A traceback shows up above the usage information.
### Environment
* Python version: 2.7.14
* Flask version: 1.0.2
* Werkzeug version: 0.14.1
* * *
[adrian@blackhole:/tmp]> virtualenv testenv
... |
### Expected Behavior
As there is the support for `lazy loading` the app, when running `flask` CLI
without providing the proper environment variables we must see a better
warning instead of raw exception.
Tell us what should happen.
**we should see a better warning or message pointing to the problem**
... | 1 |
I've been having some issues on 1.3 that I haven't had on 1.2 on the same
machine. Seems like libgit2 update has broken something:
(v1.3) pkg> up
Updating registry at `~/.julia/registries/General`
Updating git-repo `https://github.com/JuliaRegistries/General.git`
┌ Warning: Some registr... |
Opening this issue here since I am pretty sure Pkg has not changed anything,
maybe this is related to the libgit2 upgrade (#32806)?
$ julia13 -e 'using Pkg; Pkg.Registry.update()'
Updating registry at `~/.julia/registries/General`
Updating git-repo `https://github.com/JuliaRegistries/Genera... | 1 |
Behavior in the vast majority of editors/programs is that if you execute the
'Copy' command (Control/Command + C) when no text is selected is that nothing
happens.
Atom instead copies the current line. There's already a nice duplicate-line
command, making the behavior not quite necessary.
The real annoyance is that... |
It's too frequent that someone might accidentally hit the 'c' key instead of
the 'v' key when pasting in atom.
instead of copying empty space, the copy shortcut should simply not do
anything.
I can write the pull request myself if someone can point me in the right
direction, either way if we could improve this very... | 1 |
I know you can alter the darkness of the shadow cast based on the light
itself:
light.shadowDarkness = 0.5;
but say i have objects with materials of various opacities:
var material = new THREE.MeshPhongMaterial( { color : 0x000000, opacity:0.1}
);
material.transparent = true;
all of the shadows are the same d... |
##### Description of the problem
Just as the issue title indicated, I create an InstancedMesh with more than
one instances at different positions, but it's just the Box3 result of the
Geometry attached to it. After reading the code, I have made a fix.
var _box = new THREE.Box3();
var _vector = new... | 0 |
Try this:
* create a new app
* start an emulator
* flutter run your new app
* yay, it works!
* then, replace your lib/main.dart with the following contents:
import 'package:flutter/material.dart';
void main() {
runApp(new MyWidget());
}
class MyWidget extends Stat... |
Add infrastructure to check for program elements changed in the last reload
and not executed. Use this facility in flutter tools to figure out situations
where the user makes changes that will not be reflected after a hot reload and
warn users about the need to do a hot restart for the changes to take effect.
| 1 |
_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):
... |
* **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : No
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : 16.04.4 LTS (Xenial Xerus)
* **Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device** : No
* **Tenso... | 0 |
We have to expand the mod_wsgi deployment chapter.
Related feedback issues:
* http://feedback.flask.pocoo.org/message/98
|
Many people struggle with deploying a simple Flask application. The tutorial
should show that and provide some helpful pointers to other parts of the
documentation that handle deployment.
Related feedback issues:
* http://feedback.flask.pocoo.org/message/105
| 1 |
like javascript, TypeScript editor needs auto { --> } with auto formatting
it will be very useful
thanks
|
In Visual Studio if you go into the options for TypeScript(Tools > Options >
Text Editor > TypeScript > General) the "Automatic brace completion" option is
grayed out.

Windows Terminal version (if applicable): 0.3.2142.0(from Microsoft Store)
# Steps to reproduce
Start this application and drag it somewhere
# Expected behavior
Nothing happened
# Actual behavior
this window got blank and can... |
# Environment
Windows build number: Microsoft Windows [Version 10.0.18362.267]
Windows Terminal version (if applicable): 0.3.2142.0
Any other software?
Ubuntu 18.04 running in WSL1 with zsh as the default shell.
# Steps to reproduce
`apt install sl lolcat` in case they are not i... | 0 |
According to the package doc, address without host specified should be
allowed, e.g. `Dial("tcp", ":80")`. But an error `connectex: The requested
address is not valid in its context` is returned on windows 10.
Please answer these questions before submitting your issue. Thanks!
1. What version of Go are you using ... |
What steps will reproduce the problem?
run this program on windows
package main
import (
"log"
"net"
)
func dial() error {
l, err := net.Listen("tcp", ":0")
if err != nil {
return err
}
go func() {
... | 1 |
when I request http://tjw_161130192022480.company.qihuiwang.com/
return this: invalid hostname: tjw_161130192022480.company.qihuiwang.com,
I don't know how to solve this question !
hlep me !
|
I have url with invalid hostname - it does not match IDNA standards. Scrapy
fails with that.
scrapy fetch "https://mediaworld_it_api2.frosmo.com/?method=products&products=[%22747190%22]"
2018-07-06 11:53:09 [scrapy.core.scraper] ERROR: Error downloading <GET https://mediaworld_it_api2.frosmo.c... | 1 |
### Describe the workflow you want to enable
I Would like to enable `KBinsDiscretizer` to handle NaNs, in order to create
bins representing missing values. This is a bit awkward for ordinal encoding,
but makes a lot of sense for one hot encoding, where one can have a dummy
variable for NaN values or simply set all d... |
Missing values, represented as NaN, could be treated as a separate category in
discretization. This seems much more sensible to me than imputing the missing
data then discretizing.
In accordance with recent changes to other preprocessing, NaNs would simply be
ignored in calculating `fit` statistics, and would be pas... | 1 |
**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.):
* * ... |
#27208 will require Docker to be version 1.9+.
The current image, `e2e-node-coreos-stable20160531-image` is based on CoreOS
835.13.0 and thus has docker v1.8.3.
An update to the current stable or alpha CoreOS image should unblock #27208.
The process used to be roughly documented here (and further down on the same
... | 0 |
I know that this issue has been discussed many times before, and that it
depends on Chromium integrating support for it. However, maybe there can be an
easy workaround?
For example: track a force touch on the entire window rather than on a
specific element, and have Electron fire events when it is detected?
|
I'd like Electron to support Force Touch mainly for what is described here :
atom/atom#11776.
API should have function to receive Force Click/levels of pressure and to send
Force Feedback.
| 1 |
Tried fresh new build with Dart v1.10.1, Node v0.12.4 and deleted
`node_modules`. After `npm install` and `gulp build` I get following stack
trace (WARNING: really long stack trace):
sekibomazic@Sekibs-MBP ~/D/p/a/angular> gulp build
Dart SDK detected
[13:18:42] Using gulpfile ~/Documents/proje... |
**I'm submitting a ...** (check one with "x")
[x ] bug report
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
**Current behavior**
The quick start guide is missing ... | 0 |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.x
* Operating System version: OSX 10.14
* Java version: 1.8
### Steps to reproduce this issue... |
* [ ☑️] I have searched the issues of this repository and believe that this is not a duplicate.
* [ ☑️] I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.3~2.7.5
* Operating System version: MacOS
* Java version: 1.8
### Steps to repro... | 0 |
A.ts:
class A<T> { method() {} }
export = A;
B.ts:
import A = require('A');
new A().method();
When using code completion on the .method call in B.ts,
`getCompletionEntryDetails` throws an exception:
TypeError: Cannot read property 'parent' of undefined
at... |
1. Create a new package directory
2. `npm install github`
3. write the following file:
import GH = require("github");
new GH().activity
4. Get quick info on the word `activity`
Expected: Quick info.
Actual:
TypeError: Cannot read property 'parent' of undefined
... | 1 |
In a stand-alone CMD window, the **CLS** command clears not only the text
currently visible in the window, but all of the history in the scrollback
buffer. In a Windows Terminal CMD tab, clear is clearing only the currently
visible text, leaving the scrollback content untouched.
# Environment
Windows ... |
I feel like this problem should have been reported already, but I couldn't
find it in GitHub issue search.
### Environment
Windows build number: `Microsoft Windows [Version 10.0.18362.205]` \- Win10
ver. 1903 with Microsoft-internal test build for monthly quality update
Windows Terminal version: `8dd2e79` \- Azur... | 1 |
You guys seem to be using np.std(x) to scale each column instead of np.std(x,
ddof=1). As a result your std estimate is biased. Note that similar function
in R, base::scale uses unbiased std estimate.
|
#### Description
It would be nice to provide StandardScaler with an option to chose unbiased
estimator of variance,
It it sometimes convenient to use unbiased estimator of variance: numpy.var(X,
ddof=1)
instead of default: numpy.var(X, ddof=0)
So far StandardScaler does not allow to set ddof.
#### Versions
Lin... | 1 |
I tried using this method : https://groups.google.com/forum/#!topic/twitter-
bootstrap-stackoverflow/O4H28d1-d7Q
but it doesnt work well with bootstrap 3.
Can anyone help me out with this?
Thanks.
|
I have problem in the version of the iPad's Safari browser 5.1.1 (9b2060),
where scrollspy reacts in an unexpected way. After clicking on a menu session,
it redirects to him, so far everything ok, but if I do not move the page and
press on another item, the menu does not recognize the touch. After I move the
page up ... | 0 |
I read in my dataframe with
pd.read_csv('df.csv')
And then I run the code:
df['a'] = pd.to_numeric(df['a'], errors='coerce')
but the column does not get converted. When I use errors = 'raise' it gives me
the numbers that are not convertible but it should be dropping them wit... |
scikits.timeseries notions of fill_missing_dates, duplicates possible, etc.
Little to no testing in this regard
| 0 |
* [x ] I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
run without any error
## Current Behavior
work good with `node server.js`
but with: `next export` got error `Couldn't find a `pages` directory. Please
create one under the project root`
## Step... |
In repositories with multiple projects, sometimes it is appealing to share
code between the projects. Next currently requires that all of the site code
is under the Next project's root directory. With code sharing, the shared code
usually resides outside of the Next project's root. With a few modifications
to the... | 0 |
### Describe the workflow you want to enable
Enable `preprocessor.get_feature_names_out()` where `preprocessor` is a
ColumnTransformer with SimpleImputer.
### Describe your proposed solution
If you do this on sklearn v1.0, you get the error:
AttributeError: Transformer simpleimputer-1 (type Simp... |
### Describe the workflow you want to enable
I would like to get the feature names input to a classifier after imputation.
column_trans = ColumnTransformer([('imputed', SimpleImputer(add_indicator=True), x_con)], remainder='drop')
# column_trans = ColumnTransformer([('scaler', preprocessing.Standa... | 1 |
### Is there an existing issue for this?
* I have searched the existing issues
### This issue exists in the latest npm version
* I am using the latest npm
### Current Behavior
every call that I make with `npm ...` e.g. calling a script `npm run connect`,
there is this weird looking log that makes no sense in... |
### Is there an existing issue for this?
* I have searched the existing issues
### This issue exists in the latest npm version
* I am using the latest npm
### Current Behavior
' npm start ' produces the following timing output which sticks always to the
last line:
![image](https://user-
images.githubuserco... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.