You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by le...@apache.org on 2020/01/24 01:58:48 UTC

[incubator-datasketches-website] branch master updated (78d766e -> d6a8bea)

This is an automated email from the ASF dual-hosted git repository.

leerho pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-website.git.


    from 78d766e  whitespace build kick
     new 3b5b4fd  First commit.
     new 2d74670  Remove temp content from SVN attempt.
     new 11dd10e  initial commit of landing page
     new 80c161c  add /local to gitignore
     new 69de122  add .DS_Store to gitignore
     new 36f08c4  remove 404 and index html from master
     new 01b36b5  Merge branch 'master' of git@github.com:apache/incubator-datasketches-website.git
     new 7945b47  update website
     new 3e1498c  Update gitignore
     new 6fa201e  update _config.yml
     new 223fea8  update docs
     new d6a8bea  Merge branch 'master' of git@github.com:apache/incubator-datasketches-website.git

The 12 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                  |   2 +-
 .svn/entries                |   1 +
 .svn/format                 |   1 +
 .svn/wc.db                  | Bin 0 -> 122880 bytes
 .svn/wc.db-journal          |   0
 _config.yml                 |  22 ++++++++++++----------
 docs/Architecture.md        |   2 +-
 docs/HLL/Hll_vs_CS_Hllpp.md |   2 +-
 docs/Research.md            |   4 ++--
 9 files changed, 19 insertions(+), 15 deletions(-)
 create mode 100644 .svn/entries
 create mode 100644 .svn/format
 create mode 100644 .svn/wc.db
 create mode 100644 .svn/wc.db-journal


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[incubator-datasketches-website] 01/12: First commit.

Posted by le...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-website.git

commit 3b5b4fdeffa3c1d24db740f925e8dabf1c5bf232
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Sat Jun 29 23:01:25 2019 -0700

    First commit.
---
 .svn/entries                          |   1 +
 .svn/format                           |   1 +
 .svn/wc.db                            | Bin 0 -> 122880 bytes
 .svn/wc.db-journal                    |   0
 README.md                             |   1 +
 trunk/content/index.mdtext            |  24 +++++++++++++++
 trunk/content/sitemap.html            |   2 ++
 trunk/lib/path.pm                     |  39 ++++++++++++++++++++++++
 trunk/lib/view.pm                     |  23 +++++++++++++++
 trunk/templates/single_narrative.html |   1 +
 trunk/templates/skeleton.html         |  54 ++++++++++++++++++++++++++++++++++
 11 files changed, 146 insertions(+)

diff --git a/.svn/entries b/.svn/entries
new file mode 100644
index 0000000..48082f7
--- /dev/null
+++ b/.svn/entries
@@ -0,0 +1 @@
+12
diff --git a/.svn/format b/.svn/format
new file mode 100644
index 0000000..48082f7
--- /dev/null
+++ b/.svn/format
@@ -0,0 +1 @@
+12
diff --git a/.svn/wc.db b/.svn/wc.db
new file mode 100644
index 0000000..7021e1b
Binary files /dev/null and b/.svn/wc.db differ
diff --git a/.svn/wc.db-journal b/.svn/wc.db-journal
new file mode 100644
index 0000000..e69de29
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..652ef06
--- /dev/null
+++ b/README.md
@@ -0,0 +1 @@
+# incubator-datasketches-website
diff --git a/trunk/content/index.mdtext b/trunk/content/index.mdtext
new file mode 100644
index 0000000..6efd559
--- /dev/null
+++ b/trunk/content/index.mdtext
@@ -0,0 +1,24 @@
+Title:     Home Page
+Notice:    Licensed to the Apache Software Foundation (ASF) under one
+           or more contributor license agreements.  See the NOTICE file
+           distributed with this work for additional information
+           regarding copyright ownership.  The ASF licenses this file
+           to you under the Apache License, Version 2.0 (the
+           "License"); you may not use this file except in compliance
+           with the License.  You may obtain a copy of the License at
+           .
+             http://www.apache.org/licenses/LICENSE-2.0
+           .
+           Unless required by applicable law or agreed to in writing,
+           software distributed under the License is distributed on an
+           "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+           KIND, either express or implied.  See the License for the
+           specific language governing permissions and limitations
+           under the License.
+
+# Welcome
+
+Welcome to the Apache CMS.  Please see the following resources for further help:
+
+ - <http://www.apache.org/dev/cmsref.html>
+ - <http://wiki.apache.org/general/ApacheCms2010>
diff --git a/trunk/content/sitemap.html b/trunk/content/sitemap.html
new file mode 100644
index 0000000..e5e0daa
--- /dev/null
+++ b/trunk/content/sitemap.html
@@ -0,0 +1,2 @@
+{% include "single_narrative.html" %}
+
diff --git a/trunk/lib/path.pm b/trunk/lib/path.pm
new file mode 100644
index 0000000..846db97
--- /dev/null
+++ b/trunk/lib/path.pm
@@ -0,0 +1,39 @@
+package path;
+
+# taken from django's url.py
+
+our @patterns = (
+	[qr!\.md(?:text)?$!, single_narrative => { template => "single_narrative.html" }],
+
+	[qr!/sitemap\.html$!, sitemap => { headers => { title => "Sitemap" }} ],
+
+) ;
+
+# for specifying interdependencies between files
+
+our %dependencies = (
+    "/sitemap.html" => [ grep s!^content!!, glob("content/*.mdtext"), glob "content/*.md" ],
+);
+
+1;
+
+=head1 LICENSE
+
+           Licensed to the Apache Software Foundation (ASF) under one
+           or more contributor license agreements.  See the NOTICE file
+           distributed with this work for additional information
+           regarding copyright ownership.  The ASF licenses this file
+           to you under the Apache License, Version 2.0 (the
+           "License"); you may not use this file except in compliance
+           with the License.  You may obtain a copy of the License at
+
+             http://www.apache.org/licenses/LICENSE-2.0
+
+           Unless required by applicable law or agreed to in writing,
+           software distributed under the License is distributed on an
+           "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+           KIND, either express or implied.  See the License for the
+           specific language governing permissions and limitations
+           under the License.
+
+
diff --git a/trunk/lib/view.pm b/trunk/lib/view.pm
new file mode 100644
index 0000000..e44e6d4
--- /dev/null
+++ b/trunk/lib/view.pm
@@ -0,0 +1,23 @@
+package view;
+use base 'ASF::View'; # see https://svn.apache.org/repos/infra/websites/cms/build/lib/ASF/View.pm
+
+1;
+
+=head1 LICENSE
+
+           Licensed to the Apache Software Foundation (ASF) under one
+           or more contributor license agreements.  See the NOTICE file
+           distributed with this work for additional information
+           regarding copyright ownership.  The ASF licenses this file
+           to you under the Apache License, Version 2.0 (the
+           "License"); you may not use this file except in compliance
+           with the License.  You may obtain a copy of the License at
+
+             http://www.apache.org/licenses/LICENSE-2.0
+
+           Unless required by applicable law or agreed to in writing,
+           software distributed under the License is distributed on an
+           "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+           KIND, either express or implied.  See the License for the
+           specific language governing permissions and limitations
+           under the License.
diff --git a/trunk/templates/single_narrative.html b/trunk/templates/single_narrative.html
new file mode 100644
index 0000000..19d6b98
--- /dev/null
+++ b/trunk/templates/single_narrative.html
@@ -0,0 +1 @@
+{% extends "skeleton.html" %}
diff --git a/trunk/templates/skeleton.html b/trunk/templates/skeleton.html
new file mode 100644
index 0000000..26b0621
--- /dev/null
+++ b/trunk/templates/skeleton.html
@@ -0,0 +1,54 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html lang="en">
+  <head>
+    <title>{% block title %}{{ headers.title }}{% endblock %}</title>
+
+    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
+    <meta property="og:image" content="http://www.apache.org/images/asf_logo.gif" />
+
+    <link rel="stylesheet" type="text/css" media="screen" href="http://www.apache.org/css/style.css">
+    <link rel="stylesheet" type="text/css" media="screen" href="http://www.apache.org/css/code.css">
+
+    {% if headers.atom %}
+      <link rel="alternate" href="{{ headers.atom.url }}"
+            type="application/atom+xml" title="{{ headers.atom.title }}" />
+    {% endif %}
+
+    {% if headers.base %}<base href="{{ headers.base }}" />{% endif %}
+    {% if headers.notice %}<!-- {{ headers.notice }} -->{% endif %}
+  </head>
+
+  <body>
+    <div id="page" class="container_16">
+      <div id="header" class="grid_8">
+        <img src="http://www.apache.org/images/feather-small.gif" alt="The Apache Software Foundation">
+        <h1>The Apache Software Foundation</h1>
+        <h2>{% block tagline %}{{ headers.title }}{% endblock %}</h2>
+      </div>
+      <div id="nav" class="grid_8">
+        <ul>
+          <!-- <li><a href="/" title="Welcome!">Home</a></li> -->
+          <li><a href="http://www.apache.org/foundation/" title="The Foundation">Foundation</a></li>
+          <li><a href="http://projects.apache.org" title="The Projects">Projects</a></li>
+          <li><a href="http://people.apache.org" title="The People">People</a></li>
+          <li><a href="http://www.apache.org/foundation/getinvolved.html" title="Get Involved">Get Involved</a></li>
+          <li><a href="http://www.apache.org/dyn/closer.cgi" title="Download">Download</a></li>
+          <li><a href="http://www.apache.org/foundation/sponsorship.html" title="Support Apache">Support Apache</a></li>
+        </ul>
+        <p>{{ breadcrumbs|safe }}</p>
+        <form name="search" id="search" action="http://www.google.com/search" method="get">
+          <input value="*.apache.org" name="sitesearch" type="hidden"/>
+          <input type="text" name="q" id="query">
+          <input type="submit" id="submit" value="Search">
+        </form>
+      </div>
+      <div class="clear"></div>
+      {% block content %}<div id="content" class="grid_16"><div class="section-content">{{ content|markdown }}</div></div>{% endblock %}
+      <div class="clear"></div>
+    </div>
+
+    <div id="copyright" class="container_16">
+      <p>Copyright &#169; 2011 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.<br/>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
+    </div>
+  </body>
+</html>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[incubator-datasketches-website] 08/12: update website

Posted by le...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-website.git

commit 7945b47523ba6fc82549e1fbf709c8d69e06ff61
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Thu Jan 23 12:05:34 2020 -0800

    update website
---
 .gitignore | 20 --------------------
 1 file changed, 20 deletions(-)

diff --git a/.gitignore b/.gitignore
index 367c43c..cc1a9cf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,21 +1,3 @@
-<<<<<<< HEAD
-# Jekyll
-_site
-.sass-cache
-.jekyll-metadata
-about.md
-Gemfile
-Gemfile.lock
-_posts/
-
-# Eclipse
-.project
-
-# yml files
-
-/local/
-.DS_Store
-=======
 # Eclipse project files 
 .classpath
 .project
@@ -56,5 +38,3 @@ vendor/
 .paper/
 tmp/
 /local/
-
->>>>>>> branch 'master' of git@github.com:apache/incubator-datasketches-website.git


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[incubator-datasketches-website] 03/12: initial commit of landing page

Posted by le...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-website.git

commit 11dd10ea17b8e96d4e8e9b1db7424ef7a5a4f9f3
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Tue Jul 2 19:19:47 2019 -0700

    initial commit of landing page
---
 .gitignore   | 13 ++++++++++
 404.html     | 24 ++++++++++++++++++
 _config.yml  | 43 +++++++++++++++++++++++++++++++
 css/main.css | 46 +++++++++++++++++++++++++++++++++
 index.html   | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 209 insertions(+)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..1f9c53a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,13 @@
+# Jekyll
+_site
+.sass-cache
+.jekyll-metadata
+about.md
+Gemfile
+Gemfile.lock
+_posts/
+
+# Eclipse
+.project
+
+# yml files
diff --git a/404.html b/404.html
new file mode 100644
index 0000000..c472b4e
--- /dev/null
+++ b/404.html
@@ -0,0 +1,24 @@
+---
+layout: default
+---
+
+<style type="text/css" media="screen">
+  .container {
+    margin: 10px auto;
+    max-width: 600px;
+    text-align: center;
+  }
+  h1 {
+    margin: 30px 0;
+    font-size: 4em;
+    line-height: 1;
+    letter-spacing: -1px;
+  }
+</style>
+
+<div class="container">
+  <h1>404</h1>
+
+  <p><strong>Page not found :(</strong></p>
+  <p>The requested page could not be found.</p>
+</div>
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 0000000..f91333e
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1,43 @@
+# Welcome to Jekyll!
+#
+# This config file is meant for settings that affect your whole blog, values
+# which you are expected to set up once and rarely edit after that. If you find
+# yourself editing this file very often, consider using Jekyll's data files
+# feature for the data you need to update frequently.
+#
+# For technical reasons, this file is *NOT* reloaded automatically when you use
+# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
+
+# Site settings
+# These are used to personalize your new site. If you look in the HTML files,
+# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
+# You can create any custom variable you would like, and they will be accessible
+# in the templates via {{ site.myvariable }}.
+title: Your awesome title
+email: your-email@example.com
+description: >- # this means to ignore newlines until "baseurl:"
+  Write an awesome description for your new site here. You can edit this
+  line in _config.yml. It will appear in your document head meta (for
+  Google search results) and in your feed.xml site description.
+baseurl: "" # the subpath of your site, e.g. /blog
+url: "" # the base hostname & protocol for your site, e.g. http://example.com
+twitter_username: jekyllrb
+github_username:  jekyll
+
+# Build settings
+markdown: kramdown
+theme: minima
+plugins:
+  - jekyll-feed
+
+# Exclude from processing.
+# The following items will not be processed, by default. Create a custom list
+# to override the default setting.
+# exclude:
+#   - Gemfile
+#   - Gemfile.lock
+#   - node_modules
+#   - vendor/bundle/
+#   - vendor/cache/
+#   - vendor/gems/
+#   - vendor/ruby/
diff --git a/css/main.css b/css/main.css
new file mode 100644
index 0000000..3ef5a34
--- /dev/null
+++ b/css/main.css
@@ -0,0 +1,46 @@
+
+html, body {
+	position:relative;
+	height:100%;
+	min-height:100%;
+	height:100%;	
+	color:#444;
+        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
+        font-weight: 400;
+	margin:0 20px 20px;
+	word-wrap:break-word;
+}
+
+h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
+  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
+  font-weight: 300;
+}
+
+body {
+  background-color: #FFF;
+}
+
+.ds-title {
+  text-align: center;
+}
+
+.ds-text {
+  text-align: left;
+}
+
+a {
+  color: #2576CC;
+}
+
+a:hover, a:focus {
+  color: #b1bac6;
+  text-decoration: none;
+}
+
+li {
+  line-height: 1.7em;
+}
+
+p {
+  line-height: 1.7em;
+}
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..b24d37b
--- /dev/null
+++ b/index.html
@@ -0,0 +1,83 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+<title>Apache DataSketches (incubating)</title>
+<link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700,300italic|Open+Sans:300italic,400italic,600italic,400,300,600,700' rel='stylesheet' type='text/css'>
+<link rel="stylesheet" href="/css/main.css">
+
+</head>
+<body>
+
+<div class="ds-title">
+ <p><b><h1>Apache DataSketches (Incubating)</h1></b></p>
+ <p><b><h2>A software library of stochastic streaming algorithms</h2></b></p>
+</div>
+<div class="ds-text">
+    <p>Apache DataSketches is an open source, high-performance library of stochastic streaming algorithms commonly called "sketches" in the data sciences. Sketches are small, stateful programs that process massive data as a stream and can provide approximate answers, with mathematical guarantees, to computationally difficult queries orders-of-magnitude faster than traditional, exact methods.</p>
+    <p>After 8 years of development and 5 years as in Open Source, we have begun the important migration from a stand-alone GitHub site to being a member of the Apache Software Foundation community. While we undergo this migration, we beg your patience.</p>
+</div>
+
+<div>
+<ul>
+<li>Please continue to use <a href="http://datasketches.github.io">DataSketches.GitHub.io</a> for all overview documentation and access to online-javadocs for the time being.</li>
+
+<li>Please continue to use our <a href="https://groups.google.com/forum/#!forum/sketches-user">Google-groups Forum</a> or the GitHub-issues on the specific repositories to bring issues or questions to our attention.</li>
+
+<li>Please continue to use the <a href="https://search.maven.org/classic/#search%7Cga%7C1%7Cg%3A%20com.yahoo.datasketches">Maven Central GroupID = "com.yahoo.datasketches"</a> to locate current and past release Jars until we have formal releases under Apache.</li>
+
+<li>The <a href="https://datasketches.apache.org">datasketches.apache.org</a> website will be a placeholder until we have migrated our current community website from 
+  <a href="http://datasketches.github.io">DataSketches.GitHub.io</a>. For detailed project information, please continue to visit 
+  <a href="http://datasketches.github.io">DataSketches.GitHub.io</a>.</li>
+
+<li>As the repositories under GitHub.io/DataSketches migrate they will disapear from the the GitHub.com/DataSketches organization page. Please refer to this list be directed to the proper locations.</li>
+
+<li>Web Sites
+  <ul>
+  <li><a href="http://datasketches.github.io">Original Website</a></li>
+  <li><a href="http://datasketches.apache.org">New Website (not yet active)</a></li>
+  <li><a href="https://github.com/DataSketches/DataSketches.github.io">Original Website Source</a></li>
+  <li><a href="https://github.com/apache/incubator-datasketches">New Website Source</a></li>
+  </ul>
+</li>
+
+<li>Java
+  <ul>
+  <li><a href="https://github.com/DataSketches/memory">memory</a></li>
+  <li><a href="https://github.com/DataSketches/sketches-core">sketches-core</a></li>
+  <li><a href="https://github.com/DataSketches/sketches-hive">sketches-hive</a></li>
+  <li><a href="https://github.com/DataSketches/sketches-pig">sketches-pig</a></li>
+  <li><a href="https://github.com/DataSketches/sketches-vector">sketches-vector</a></li>
+  <li><a href="https://github.com/DataSketches/sketches-misc">sketches-misc</a></li>
+  <li><a href="https://github.com/DataSketches/sketches-android">sketches-android</a></li>
+  <li><a href="https://github.com/DataSketches/characterization">characterization</a></li>
+  <li><a href="https://github.com/DataSketches/experimental">experimental</a></li>
+  </ul>
+</li>
+
+<li>C++
+  <ul>
+  <li><a href="https://github.com/DataSketches/sketches-core-cpp">sketches-core-cpp</a></li>
+  <li><a href="https://github.com/DataSketches/sketches-postgres">sketches-postgres</a></li>
+  <li><a href="https://github.com/DataSketches/characterization-cpp">characterization-cpp</a></li>
+  <li><a href="https://github.com/DataSketches/experimental-cpp">experimental-cpp</a></li>
+  </ul>
+</li>
+  
+<li>Command Line
+  <ul>
+  <li><a href="https://github.com/DataSketches/homebrew-sketches-cmd">homebrew-sketches-cmd</a></li>
+  <li><a href="https://github.com/DataSketches/sketches-cmd">sketches-cmd</a></li>
+  <li><a href="https://github.com/DataSketches/homebrew-sketches">homebrew-sketches</a></li>
+  </ul>
+</li>
+</ul>
+</div>
+ 
+<hr>
+
+<div  style="margin-bottom:40px;">
+  <p><i>Disclaimer:</i> Apache DataSketches is an effort undergoing incubation at <a href="https://www.apache.org/">The Apache Software Foundation (ASF)</a>, sponsored by the <a href="https://incubator.apache.org/">Apache Incubator</a>. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status  [...]
+</div>
+
+</body>
+</html>
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[incubator-datasketches-website] 11/12: update docs

Posted by le...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-website.git

commit 223fea83d2e8df1f318e76ff0325b3059c3687a4
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Thu Jan 23 17:57:46 2020 -0800

    update docs
---
 docs/Architecture.md        | 2 +-
 docs/HLL/Hll_vs_CS_Hllpp.md | 2 +-
 docs/Research.md            | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/Architecture.md b/docs/Architecture.md
index 53e382e..e68bf80 100644
--- a/docs/Architecture.md
+++ b/docs/Architecture.md
@@ -132,7 +132,7 @@ them available to the Postgres database users.
 
 ## Web Site
 
-### incubator-datasketches-website (was DataSketches.github.io) 
+### incubator-datasketches-website
 This is the DataSketches web site source, and is constantly being updated with new material 
 and to be current with the GitHub master.
 This site is not versioned.
diff --git a/docs/HLL/Hll_vs_CS_Hllpp.md b/docs/HLL/Hll_vs_CS_Hllpp.md
index e06b0f2..8418288 100644
--- a/docs/HLL/Hll_vs_CS_Hllpp.md
+++ b/docs/HLL/Hll_vs_CS_Hllpp.md
@@ -226,7 +226,7 @@ Depending on the chosen configuration, the *HllSketch* can be from one to almost
 ****
 
 * [1] [DataSketches HllSketch GitHub](https://github.com/apache/incubator-datasketches-java/tree/master/src/main/java/org/apache/datasketches/hll)
-* [2] [DataSketches HllSketch JavaDocs](https://datasketches.github.io/api/core/snapshot/apidocs/index.html)
+* [2] [DataSketches HllSketch JavaDocs](https://datasketches.apache.org/api/java/snapshot/apidocs/index.html)
 * [3] [HyperLogLogPlus GitHub](https://github.com/addthis/stream-lib/blob/master/src/main/java/com/clearspring/analytics/stream/cardinality/HyperLogLogPlus.java)
 * [4] [Google: HyperLogLog in Practice: Algorithmic Engineering of a State of The Art Cardinality Estimation Algorithm](https://static.googleusercontent.com/media/research.google.com/en//pubs/archive/40671.pdf)
 * [5] The Root-Mean-Square of the Relative Error (RMS-RE) is sensitive to bias of the mean if there is any. However, if the bias is zero RMS-RE will produce the same results as the theoretical Relative Standard Error (RSE) of the stochastic process.
diff --git a/docs/Research.md b/docs/Research.md
index 6146fed..0f61cb6 100644
--- a/docs/Research.md
+++ b/docs/Research.md
@@ -114,7 +114,7 @@ Amit Chakrabarti, Graham Cormode, and Andrew McGregor. A near-optimal algorithm
 Michael B. Cohen, Sam Elder, Cameron Musco, Christopher Musco, and Madalina Persu. Dimensionality reduction for k-means clustering and low rank approximation. In *ACM STOC Proceedings '15*, pages 163–172, 2015.
 
 [DLRT16]
-Anirban Dasgupta, Kevin J. Lang, Lee Rhodes, and Justin Thaler. A framework for estimating stream expression cardinalities. In *EDBT/ICDT Proceedings '16 *, pages 6:1–6:17, 2016. [Talk Slides](https://github.com/DataSketches/DataSketches.github.io/blob/master/docs/pdf/icdt-talk.pdf).
+Anirban Dasgupta, Kevin J. Lang, Lee Rhodes, and Justin Thaler. A framework for estimating stream expression cardinalities. In *EDBT/ICDT Proceedings '16 *, pages 6:1–6:17, 2016. [Talk Slides](https://github.com/apache/incubator-datasketches-website/blob/master/docs/pdf/icdt-talk.pdf).
 
 [FFGM07]
 Philippe Flajolet, E ́ric Fusy, Olivier Gandouet, and Fre ́de ́ric Meunier. Hyperloglog: the analysis of a near-optimal cardinality estimation algorithm. In *DMTCS Conference on Analysis of Algorithms*, pages 137–156, 2007.
@@ -146,7 +146,7 @@ Andrew McGregor. Graph stream algorithms: a survey. *ACM SIGMOD Record*, 43(1):9
 Michael Mitzenmacher, Thomas Steinke, and Justin Thaler. Hierarchical heavy hitters with the space saving algorithm. In *SIAM ALENEX Proceedings '12*, pages 160–174, 2012.
 
 [RLS+ 15]
-Lee Rhodes, Kevin Lang, Alexander Saydakov, Justin Thaler, Edo Liberty, and Jon Malkin. DataSketches: A Java software library for streaming data algorithms. Apache License, Version 2.0, 2015. <https://datasketches.github.io>.
+Lee Rhodes, Kevin Lang, Alexander Saydakov, Justin Thaler, Edo Liberty, and Jon Malkin. DataSketches: A Java software library for streaming data algorithms. Apache License, Version 2.0, 2015. <https://datasketches.apahce.org>.
 
 [Tha07]
 Justin Thaler. REU project website: A near-optimal algorithm for computing the entropy of a stream, 2007. <https://reu.dimacs.rutgers.edu/~jthaler/>.


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[incubator-datasketches-website] 04/12: add /local to gitignore

Posted by le...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-website.git

commit 80c161cea44479dc0048af1f76156fff4039f61e
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Sun Oct 20 14:51:40 2019 -0700

    add /local to gitignore
---
 .gitignore | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitignore b/.gitignore
index 1f9c53a..9afbe71 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,3 +11,5 @@ _posts/
 .project
 
 # yml files
+
+/local/


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[incubator-datasketches-website] 12/12: Merge branch 'master' of git@github.com:apache/incubator-datasketches-website.git

Posted by le...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-website.git

commit d6a8beaceec8851232002a2c8267ff010b7c2642
Merge: 223fea8 78d766e
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Thu Jan 23 17:57:56 2020 -0800

    Merge branch 'master' of git@github.com:apache/incubator-datasketches-website.git



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[incubator-datasketches-website] 07/12: Merge branch 'master' of git@github.com:apache/incubator-datasketches-website.git

Posted by le...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-website.git

commit 01b36b5aea8f203ebe6ddce3d0dfbd6dd0f1dbc3
Merge: 36f08c4 f6035b1
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Thu Jan 23 12:00:10 2020 -0800

    Merge branch 'master' of
    git@github.com:apache/incubator-datasketches-website.git

 .asf.yaml                                          |     6 +
 .gitignore                                         |    44 +
 .travis.yml                                        |    25 +
 DISCLAIMER-WIP                                     |    26 +
 Gemfile                                            |    35 +
 Gemfile.lock                                       |   254 +
 LICENSE                                            |   210 +
 NOTICE                                             |    11 +
 README.md                                          |    86 +
 _config.yml                                        |    80 +-
 _includes/page_footer.html                         |    18 +
 _includes/page_header.html                         |    54 +
 _includes/site_head.html                           |    29 +
 _includes/toc.html                                 |   333 +
 _layouts/doc_page.html                             |    42 +
 _layouts/html_page.html                            |    14 +
 _layouts/table_page.html                           |    49 +
 _layouts/toc_page.html                             |    12 +
 api/hive/snapshot/apidocs/allclasses-frame.html    |   107 +
 api/hive/snapshot/apidocs/allclasses-noframe.html  |   107 +
 api/hive/snapshot/apidocs/constant-values.html     |   477 +
 api/hive/snapshot/apidocs/deprecated-list.html     |   126 +
 api/hive/snapshot/apidocs/help-doc.html            |   231 +
 api/hive/snapshot/apidocs/index-all.html           |  1122 ++
 api/hive/snapshot/apidocs/index.html               |    76 +
 .../DataToSketchUDAF.DataToSketchEvaluator.html    |   574 +
 .../datasketches/hive/cpc/DataToSketchUDAF.html    |   336 +
 .../hive/cpc/GetEstimateAndErrorBoundsUDF.html     |   347 +
 .../datasketches/hive/cpc/GetEstimateUDF.html      |   319 +
 .../datasketches/hive/cpc/SketchToStringUDF.html   |   319 +
 .../UnionSketchUDAF.UnionSketchUDAFEvaluator.html  |   593 +
 .../datasketches/hive/cpc/UnionSketchUDAF.html     |   333 +
 .../datasketches/hive/cpc/UnionSketchUDF.html      |   359 +
 .../DataToSketchUDAF.DataToSketchEvaluator.html    |   126 +
 .../hive/cpc/class-use/DataToSketchUDAF.html       |   126 +
 .../class-use/GetEstimateAndErrorBoundsUDF.html    |   126 +
 .../hive/cpc/class-use/GetEstimateUDF.html         |   126 +
 .../hive/cpc/class-use/SketchToStringUDF.html      |   126 +
 .../UnionSketchUDAF.UnionSketchUDAFEvaluator.html  |   126 +
 .../hive/cpc/class-use/UnionSketchUDAF.html        |   126 +
 .../hive/cpc/class-use/UnionSketchUDF.html         |   126 +
 .../datasketches/hive/cpc/package-frame.html       |    28 +
 .../datasketches/hive/cpc/package-summary.html     |   193 +
 .../apache/datasketches/hive/cpc/package-tree.html |   158 +
 .../apache/datasketches/hive/cpc/package-use.html  |   126 +
 ...ItemsSketchUDAF.DataToItemsSketchEvaluator.html |   502 +
 .../hive/frequencies/DataToItemsSketchUDAF.html    |   339 +
 .../hive/frequencies/DataToStringsSketchUDAF.html  |   320 +
 .../GetFrequentItemsFromStringsSketchUDTF.html     |   332 +
 ...nItemsSketchUDAF.UnionItemsSketchEvaluator.html |   450 +
 .../hive/frequencies/UnionItemsSketchUDAF.html     |   326 +
 .../hive/frequencies/UnionStringsSketchUDAF.html   |   282 +
 ...ItemsSketchUDAF.DataToItemsSketchEvaluator.html |   126 +
 .../class-use/DataToItemsSketchUDAF.html           |   168 +
 .../class-use/DataToStringsSketchUDAF.html         |   126 +
 .../GetFrequentItemsFromStringsSketchUDTF.html     |   126 +
 ...nItemsSketchUDAF.UnionItemsSketchEvaluator.html |   126 +
 .../class-use/UnionItemsSketchUDAF.html            |   168 +
 .../class-use/UnionStringsSketchUDAF.html          |   126 +
 .../hive/frequencies/package-frame.html            |    27 +
 .../hive/frequencies/package-summary.html          |   189 +
 .../hive/frequencies/package-tree.html             |   163 +
 .../datasketches/hive/frequencies/package-use.html |   168 +
 .../DataToSketchUDAF.DataToSketchEvaluator.html    |   574 +
 .../datasketches/hive/hll/DataToSketchUDAF.html    |   337 +
 .../hll/SketchToEstimateAndErrorBoundsUDF.html     |   319 +
 .../datasketches/hive/hll/SketchToEstimateUDF.html |   294 +
 .../datasketches/hive/hll/SketchToStringUDF.html   |   294 +
 .../UnionSketchUDAF.UnionSketchUDAFEvaluator.html  |   593 +
 .../datasketches/hive/hll/UnionSketchUDAF.html     |   333 +
 .../datasketches/hive/hll/UnionSketchUDF.html      |   359 +
 .../DataToSketchUDAF.DataToSketchEvaluator.html    |   126 +
 .../hive/hll/class-use/DataToSketchUDAF.html       |   126 +
 .../SketchToEstimateAndErrorBoundsUDF.html         |   126 +
 .../hive/hll/class-use/SketchToEstimateUDF.html    |   126 +
 .../hive/hll/class-use/SketchToStringUDF.html      |   126 +
 .../UnionSketchUDAF.UnionSketchUDAFEvaluator.html  |   126 +
 .../hive/hll/class-use/UnionSketchUDAF.html        |   126 +
 .../hive/hll/class-use/UnionSketchUDF.html         |   126 +
 .../datasketches/hive/hll/package-frame.html       |    28 +
 .../datasketches/hive/hll/package-summary.html     |   193 +
 .../apache/datasketches/hive/hll/package-tree.html |   158 +
 .../apache/datasketches/hive/hll/package-use.html  |   126 +
 .../datasketches/hive/kll/DataToSketchUDAF.html    |   298 +
 .../apache/datasketches/hive/kll/GetCdfUDF.html    |   297 +
 .../org/apache/datasketches/hive/kll/GetNUDF.html  |   294 +
 .../apache/datasketches/hive/kll/GetPmfUDF.html    |   297 +
 .../datasketches/hive/kll/GetQuantileUDF.html      |   297 +
 .../datasketches/hive/kll/GetQuantilesUDF.html     |   297 +
 .../apache/datasketches/hive/kll/GetRankUDF.html   |   297 +
 .../datasketches/hive/kll/SketchToStringUDF.html   |   294 +
 .../datasketches/hive/kll/UnionSketchUDAF.html     |   298 +
 .../hive/kll/class-use/DataToSketchUDAF.html       |   126 +
 .../datasketches/hive/kll/class-use/GetCdfUDF.html |   126 +
 .../datasketches/hive/kll/class-use/GetNUDF.html   |   126 +
 .../datasketches/hive/kll/class-use/GetPmfUDF.html |   126 +
 .../hive/kll/class-use/GetQuantileUDF.html         |   126 +
 .../hive/kll/class-use/GetQuantilesUDF.html        |   126 +
 .../hive/kll/class-use/GetRankUDF.html             |   126 +
 .../hive/kll/class-use/SketchToStringUDF.html      |   126 +
 .../hive/kll/class-use/UnionSketchUDAF.html        |   126 +
 .../datasketches/hive/kll/package-frame.html       |    29 +
 .../datasketches/hive/kll/package-summary.html     |   189 +
 .../apache/datasketches/hive/kll/package-tree.html |   155 +
 .../apache/datasketches/hive/kll/package-use.html  |   126 +
 .../hive/quantiles/DataToDoublesSketchUDAF.html    |   298 +
 ...ataToItemsSketchUDAF.DataToSketchEvaluator.html |   483 +
 .../hive/quantiles/DataToItemsSketchUDAF.html      |   339 +
 .../hive/quantiles/DataToStringsSketchUDAF.html    |   320 +
 .../hive/quantiles/DoublesSketchToStringUDF.html   |   294 +
 .../hive/quantiles/GetCdfFromDoublesSketchUDF.html |   297 +
 .../hive/quantiles/GetCdfFromStringsSketchUDF.html |   297 +
 .../hive/quantiles/GetKFromDoublesSketchUDF.html   |   294 +
 .../hive/quantiles/GetKFromStringsSketchUDF.html   |   294 +
 .../hive/quantiles/GetNFromDoublesSketchUDF.html   |   294 +
 .../hive/quantiles/GetNFromStringsSketchUDF.html   |   294 +
 .../hive/quantiles/GetPmfFromDoublesSketchUDF.html |   297 +
 .../hive/quantiles/GetPmfFromStringsSketchUDF.html |   297 +
 .../quantiles/GetQuantileFromDoublesSketchUDF.html |   297 +
 .../quantiles/GetQuantileFromStringsSketchUDF.html |   297 +
 .../GetQuantilesFromDoublesSketchUDF.html          |   322 +
 .../GetQuantilesFromStringsSketchUDF.html          |   322 +
 .../hive/quantiles/StringsSketchToStringUDF.html   |   294 +
 .../hive/quantiles/UnionDoublesSketchUDAF.html     |   298 +
 .../UnionItemsSketchUDAF.UnionEvaluator.html       |   463 +
 .../hive/quantiles/UnionItemsSketchUDAF.html       |   339 +
 .../hive/quantiles/UnionStringsSketchUDAF.html     |   320 +
 .../class-use/DataToDoublesSketchUDAF.html         |   126 +
 ...ataToItemsSketchUDAF.DataToSketchEvaluator.html |   126 +
 .../quantiles/class-use/DataToItemsSketchUDAF.html |   168 +
 .../class-use/DataToStringsSketchUDAF.html         |   126 +
 .../class-use/DoublesSketchToStringUDF.html        |   126 +
 .../class-use/GetCdfFromDoublesSketchUDF.html      |   126 +
 .../class-use/GetCdfFromStringsSketchUDF.html      |   126 +
 .../class-use/GetKFromDoublesSketchUDF.html        |   126 +
 .../class-use/GetKFromStringsSketchUDF.html        |   126 +
 .../class-use/GetNFromDoublesSketchUDF.html        |   126 +
 .../class-use/GetNFromStringsSketchUDF.html        |   126 +
 .../class-use/GetPmfFromDoublesSketchUDF.html      |   126 +
 .../class-use/GetPmfFromStringsSketchUDF.html      |   126 +
 .../class-use/GetQuantileFromDoublesSketchUDF.html |   126 +
 .../class-use/GetQuantileFromStringsSketchUDF.html |   126 +
 .../GetQuantilesFromDoublesSketchUDF.html          |   126 +
 .../GetQuantilesFromStringsSketchUDF.html          |   126 +
 .../class-use/StringsSketchToStringUDF.html        |   126 +
 .../class-use/UnionDoublesSketchUDAF.html          |   126 +
 .../UnionItemsSketchUDAF.UnionEvaluator.html       |   126 +
 .../quantiles/class-use/UnionItemsSketchUDAF.html  |   168 +
 .../class-use/UnionStringsSketchUDAF.html          |   126 +
 .../datasketches/hive/quantiles/package-frame.html |    42 +
 .../hive/quantiles/package-summary.html            |   255 +
 .../datasketches/hive/quantiles/package-tree.html  |   178 +
 .../datasketches/hive/quantiles/package-use.html   |   168 +
 .../DataToSketchUDAF.DataToSketchEvaluator.html    |   373 +
 .../datasketches/hive/theta/DataToSketchUDAF.html  |   339 +
 .../datasketches/hive/theta/EstimateSketchUDF.html |   320 +
 .../datasketches/hive/theta/ExcludeSketchUDF.html  |   330 +
 .../hive/theta/IntersectSketchUDAF.html            |   298 +
 .../hive/theta/IntersectSketchUDF.html             |   328 +
 .../datasketches/hive/theta/UnionEvaluator.html    |   533 +
 .../UnionSketchUDAF.UnionSketchUDAFEvaluator.html  |   392 +
 .../datasketches/hive/theta/UnionSketchUDAF.html   |   333 +
 .../datasketches/hive/theta/UnionSketchUDF.html    |   362 +
 .../DataToSketchUDAF.DataToSketchEvaluator.html    |   126 +
 .../hive/theta/class-use/DataToSketchUDAF.html     |   126 +
 .../hive/theta/class-use/EstimateSketchUDF.html    |   126 +
 .../hive/theta/class-use/ExcludeSketchUDF.html     |   126 +
 .../hive/theta/class-use/IntersectSketchUDAF.html  |   126 +
 .../hive/theta/class-use/IntersectSketchUDF.html   |   126 +
 .../hive/theta/class-use/UnionEvaluator.html       |   174 +
 .../UnionSketchUDAF.UnionSketchUDAFEvaluator.html  |   126 +
 .../hive/theta/class-use/UnionSketchUDAF.html      |   126 +
 .../hive/theta/class-use/UnionSketchUDF.html       |   126 +
 .../datasketches/hive/theta/package-frame.html     |    30 +
 .../datasketches/hive/theta/package-summary.html   |   207 +
 .../datasketches/hive/theta/package-tree.html      |   163 +
 .../datasketches/hive/theta/package-use.html       |   163 +
 ...OfDoublesSketchToEstimateAndErrorBoundsUDF.html |   294 +
 .../tuple/ArrayOfDoublesSketchToEstimatesUDF.html  |   294 +
 .../hive/tuple/ArrayOfDoublesSketchToMeansUDF.html |   294 +
 ...fDoublesSketchToNumberOfRetainedEntriesUDF.html |   294 +
 .../ArrayOfDoublesSketchToQuantilesSketchUDF.html  |   351 +
 .../tuple/ArrayOfDoublesSketchToValuesUDTF.html    |   332 +
 .../tuple/ArrayOfDoublesSketchToVariancesUDF.html  |   294 +
 .../hive/tuple/ArrayOfDoublesSketchesTTestUDF.html |   297 +
 ...chUDAF.DataToArrayOfDoublesSketchEvaluator.html |   548 +
 .../hive/tuple/DataToArrayOfDoublesSketchUDAF.html |   317 +
 .../hive/tuple/DataToDoubleSummarySketchUDAF.html  |   352 +
 .../DataToDoubleSummaryWithModeSketchUDAF.html     |   369 +
 .../DataToSketchUDAF.DataToSketchEvaluator.html    |   669 +
 .../datasketches/hive/tuple/DataToSketchUDAF.html  |   364 +
 .../tuple/DoubleSummarySketchToEstimatesUDF.html   |   294 +
 .../tuple/DoubleSummarySketchToPercentileUDF.html  |   297 +
 ...tchUDAF.UnionArrayOfDoublesSketchEvaluator.html |   548 +
 .../hive/tuple/UnionArrayOfDoublesSketchUDAF.html  |   317 +
 ...etchUDAF.UnionDoubleSummarySketchEvaluator.html |   589 +
 .../hive/tuple/UnionDoubleSummarySketchUDAF.html   |   341 +
 ....UnionDoubleSummaryWithModeSketchEvaluator.html |   609 +
 .../UnionDoubleSummaryWithModeSketchUDAF.html      |   365 +
 .../UnionSketchUDAF.UnionSketchEvaluator.html      |   660 +
 .../datasketches/hive/tuple/UnionSketchUDAF.html   |   365 +
 ...OfDoublesSketchToEstimateAndErrorBoundsUDF.html |   126 +
 .../ArrayOfDoublesSketchToEstimatesUDF.html        |   126 +
 .../class-use/ArrayOfDoublesSketchToMeansUDF.html  |   126 +
 ...fDoublesSketchToNumberOfRetainedEntriesUDF.html |   126 +
 .../ArrayOfDoublesSketchToQuantilesSketchUDF.html  |   126 +
 .../ArrayOfDoublesSketchToValuesUDTF.html          |   126 +
 .../ArrayOfDoublesSketchToVariancesUDF.html        |   126 +
 .../class-use/ArrayOfDoublesSketchesTTestUDF.html  |   126 +
 ...chUDAF.DataToArrayOfDoublesSketchEvaluator.html |   126 +
 .../class-use/DataToArrayOfDoublesSketchUDAF.html  |   126 +
 .../class-use/DataToDoubleSummarySketchUDAF.html   |   126 +
 .../DataToDoubleSummaryWithModeSketchUDAF.html     |   126 +
 .../DataToSketchUDAF.DataToSketchEvaluator.html    |   126 +
 .../hive/tuple/class-use/DataToSketchUDAF.html     |   178 +
 .../DoubleSummarySketchToEstimatesUDF.html         |   126 +
 .../DoubleSummarySketchToPercentileUDF.html        |   126 +
 ...tchUDAF.UnionArrayOfDoublesSketchEvaluator.html |   126 +
 .../class-use/UnionArrayOfDoublesSketchUDAF.html   |   126 +
 ...etchUDAF.UnionDoubleSummarySketchEvaluator.html |   126 +
 .../class-use/UnionDoubleSummarySketchUDAF.html    |   126 +
 ....UnionDoubleSummaryWithModeSketchEvaluator.html |   126 +
 .../UnionDoubleSummaryWithModeSketchUDAF.html      |   126 +
 .../UnionSketchUDAF.UnionSketchEvaluator.html      |   172 +
 .../hive/tuple/class-use/UnionSketchUDAF.html      |   178 +
 .../datasketches/hive/tuple/package-frame.html     |    44 +
 .../datasketches/hive/tuple/package-summary.html   |   280 +
 .../datasketches/hive/tuple/package-tree.html      |   187 +
 .../datasketches/hive/tuple/package-use.html       |   169 +
 api/hive/snapshot/apidocs/overview-frame.html      |    28 +
 api/hive/snapshot/apidocs/overview-summary.html    |   193 +
 api/hive/snapshot/apidocs/overview-tree.html       |   272 +
 api/hive/snapshot/apidocs/package-list             |     7 +
 api/hive/snapshot/apidocs/script.js                |    30 +
 api/hive/snapshot/apidocs/stylesheet.css           |   574 +
 api/java/snapshot/apidocs/allclasses-frame.html    |   145 +
 api/java/snapshot/apidocs/allclasses-noframe.html  |   145 +
 api/java/snapshot/apidocs/constant-values.html     |   347 +
 api/java/snapshot/apidocs/deprecated-list.html     |   217 +
 api/java/snapshot/apidocs/help-doc.html            |   231 +
 api/java/snapshot/apidocs/index-all.html           |  5164 +++++++
 api/java/snapshot/apidocs/index.html               |    76 +
 .../apache/datasketches/ArrayOfBooleansSerDe.html  |   349 +
 .../apache/datasketches/ArrayOfDoublesSerDe.html   |   326 +
 .../org/apache/datasketches/ArrayOfItemsSerDe.html |   325 +
 .../org/apache/datasketches/ArrayOfLongsSerDe.html |   326 +
 .../apache/datasketches/ArrayOfNumbersSerDe.html   |   334 +
 .../apache/datasketches/ArrayOfStringsSerDe.html   |   330 +
 .../datasketches/ArrayOfUtf16StringsSerDe.html     |   330 +
 .../org/apache/datasketches/BinomialBoundsN.html   |   304 +
 .../datasketches/BoundsOnBinomialProportions.html  |   442 +
 .../datasketches/BoundsOnRatiosInSampledSets.html  |   372 +
 .../BoundsOnRatiosInThetaSketchedSets.html         |   321 +
 .../org/apache/datasketches/ByteArrayUtil.html     |   835 ++
 .../apidocs/org/apache/datasketches/Family.html    |   756 +
 .../org/apache/datasketches/HashOperations.html    |   635 +
 .../org/apache/datasketches/QuantilesHelper.html   |   359 +
 .../org/apache/datasketches/QuickSelect.html       |   426 +
 .../org/apache/datasketches/ResizeFactor.html      |   448 +
 .../datasketches/SketchesArgumentException.html    |   287 +
 .../org/apache/datasketches/SketchesException.html |   313 +
 .../datasketches/SketchesReadOnlyException.html    |   307 +
 .../datasketches/SketchesStateException.html       |   287 +
 .../apidocs/org/apache/datasketches/Util.html      |  1476 ++
 .../class-use/ArrayOfBooleansSerDe.html            |   126 +
 .../class-use/ArrayOfDoublesSerDe.html             |   126 +
 .../datasketches/class-use/ArrayOfItemsSerDe.html  |   423 +
 .../datasketches/class-use/ArrayOfLongsSerDe.html  |   126 +
 .../class-use/ArrayOfNumbersSerDe.html             |   126 +
 .../class-use/ArrayOfStringsSerDe.html             |   126 +
 .../class-use/ArrayOfUtf16StringsSerDe.html        |   126 +
 .../datasketches/class-use/BinomialBoundsN.html    |   126 +
 .../class-use/BoundsOnBinomialProportions.html     |   126 +
 .../class-use/BoundsOnRatiosInSampledSets.html     |   126 +
 .../BoundsOnRatiosInThetaSketchedSets.html         |   126 +
 .../datasketches/class-use/ByteArrayUtil.html      |   126 +
 .../org/apache/datasketches/class-use/Family.html  |   311 +
 .../datasketches/class-use/HashOperations.html     |   126 +
 .../datasketches/class-use/QuantilesHelper.html    |   126 +
 .../apache/datasketches/class-use/QuickSelect.html |   126 +
 .../datasketches/class-use/ResizeFactor.html       |   376 +
 .../class-use/SketchesArgumentException.html       |   126 +
 .../datasketches/class-use/SketchesException.html  |   182 +
 .../class-use/SketchesReadOnlyException.html       |   126 +
 .../class-use/SketchesStateException.html          |   126 +
 .../org/apache/datasketches/class-use/Util.html    |   126 +
 .../cpc/CompressionCharacterization.html           |   297 +
 .../org/apache/datasketches/cpc/CpcSketch.html     |   934 ++
 .../org/apache/datasketches/cpc/CpcUnion.html      |   391 +
 .../org/apache/datasketches/cpc/CpcWrapper.html    |   400 +
 .../apache/datasketches/cpc/MergingValidation.html |   293 +
 .../datasketches/cpc/QuickMergingValidation.html   |   292 +
 .../datasketches/cpc/StreamingValidation.html      |   291 +
 .../org/apache/datasketches/cpc/TestUtil.html      |   243 +
 .../cpc/class-use/CompressionCharacterization.html |   126 +
 .../datasketches/cpc/class-use/CpcSketch.html      |   211 +
 .../datasketches/cpc/class-use/CpcUnion.html       |   126 +
 .../datasketches/cpc/class-use/CpcWrapper.html     |   126 +
 .../cpc/class-use/MergingValidation.html           |   126 +
 .../cpc/class-use/QuickMergingValidation.html      |   126 +
 .../cpc/class-use/StreamingValidation.html         |   126 +
 .../datasketches/cpc/class-use/TestUtil.html       |   126 +
 .../org/apache/datasketches/cpc/package-frame.html |    28 +
 .../apache/datasketches/cpc/package-summary.html   |   208 +
 .../org/apache/datasketches/cpc/package-tree.html  |   146 +
 .../org/apache/datasketches/cpc/package-use.html   |   167 +
 .../org/apache/datasketches/fdt/FdtSketch.html     |   680 +
 .../apidocs/org/apache/datasketches/fdt/Group.html |   491 +
 .../org/apache/datasketches/fdt/PostProcessor.html |   330 +
 .../datasketches/fdt/class-use/FdtSketch.html      |   168 +
 .../apache/datasketches/fdt/class-use/Group.html   |   238 +
 .../datasketches/fdt/class-use/PostProcessor.html  |   175 +
 .../org/apache/datasketches/fdt/package-frame.html |    23 +
 .../apache/datasketches/fdt/package-summary.html   |   163 +
 .../org/apache/datasketches/fdt/package-tree.html  |   153 +
 .../org/apache/datasketches/fdt/package-use.html   |   172 +
 .../apache/datasketches/frequencies/ErrorType.html |   360 +
 .../datasketches/frequencies/ItemsSketch.Row.html  |   422 +
 .../datasketches/frequencies/ItemsSketch.html      |   905 ++
 .../datasketches/frequencies/LongsSketch.Row.html  |   418 +
 .../datasketches/frequencies/LongsSketch.html      |   947 ++
 .../frequencies/class-use/ErrorType.html           |   217 +
 .../frequencies/class-use/ItemsSketch.Row.html     |   196 +
 .../frequencies/class-use/ItemsSketch.html         |   194 +
 .../frequencies/class-use/LongsSketch.Row.html     |   196 +
 .../frequencies/class-use/LongsSketch.html         |   200 +
 .../datasketches/frequencies/package-frame.html    |    28 +
 .../datasketches/frequencies/package-summary.html  |   208 +
 .../datasketches/frequencies/package-tree.html     |   154 +
 .../datasketches/frequencies/package-use.html      |   189 +
 .../org/apache/datasketches/hash/MurmurHash3.html  |   366 +
 .../datasketches/hash/MurmurHash3Adaptor.html      |   836 ++
 .../apache/datasketches/hash/MurmurHash3v2.html    |   506 +
 .../org/apache/datasketches/hash/XxHash.html       |   334 +
 .../datasketches/hash/class-use/MurmurHash3.html   |   126 +
 .../hash/class-use/MurmurHash3Adaptor.html         |   126 +
 .../datasketches/hash/class-use/MurmurHash3v2.html |   126 +
 .../apache/datasketches/hash/class-use/XxHash.html |   126 +
 .../apache/datasketches/hash/package-frame.html    |    24 +
 .../apache/datasketches/hash/package-summary.html  |   188 +
 .../org/apache/datasketches/hash/package-tree.html |   142 +
 .../org/apache/datasketches/hash/package-use.html  |   126 +
 .../org/apache/datasketches/hll/HllSketch.html     |  1361 ++
 .../datasketches/hll/IntMemoryPairIterator.html    |   382 +
 .../org/apache/datasketches/hll/TgtHllType.html    |   400 +
 .../apidocs/org/apache/datasketches/hll/Union.html |  1199 ++
 .../datasketches/hll/class-use/HllSketch.html      |   230 +
 .../hll/class-use/IntMemoryPairIterator.html       |   126 +
 .../datasketches/hll/class-use/TgtHllType.html     |   255 +
 .../apache/datasketches/hll/class-use/Union.html   |   184 +
 .../org/apache/datasketches/hll/package-frame.html |    27 +
 .../apache/datasketches/hll/package-summary.html   |   203 +
 .../org/apache/datasketches/hll/package-tree.html  |   153 +
 .../org/apache/datasketches/hll/package-use.html   |   175 +
 .../apache/datasketches/hllmap/UniqueCountMap.html |   548 +
 .../hllmap/class-use/UniqueCountMap.html           |   126 +
 .../apache/datasketches/hllmap/package-frame.html  |    21 +
 .../datasketches/hllmap/package-summary.html       |   176 +
 .../apache/datasketches/hllmap/package-tree.html   |   139 +
 .../apache/datasketches/hllmap/package-use.html    |   126 +
 .../apache/datasketches/kll/KllFloatsSketch.html   |  1163 ++
 .../datasketches/kll/KllFloatsSketchIterator.html  |   294 +
 .../kll/class-use/KllFloatsSketch.html             |   183 +
 .../kll/class-use/KllFloatsSketchIterator.html     |   166 +
 .../org/apache/datasketches/kll/package-frame.html |    22 +
 .../apache/datasketches/kll/package-summary.html   |   153 +
 .../org/apache/datasketches/kll/package-tree.html  |   140 +
 .../org/apache/datasketches/kll/package-use.html   |   167 +
 .../org/apache/datasketches/package-frame.html     |    48 +
 .../org/apache/datasketches/package-summary.html   |   332 +
 .../org/apache/datasketches/package-tree.html      |   189 +
 .../org/apache/datasketches/package-use.html       |   357 +
 .../quantiles/CompactDoublesSketch.html            |   255 +
 .../datasketches/quantiles/DoublesSketch.html      |  1335 ++
 .../quantiles/DoublesSketchBuilder.html            |   381 +
 .../quantiles/DoublesSketchIterator.html           |   294 +
 .../datasketches/quantiles/DoublesUnion.html       |   717 +
 .../quantiles/DoublesUnionBuilder.html             |   473 +
 .../apache/datasketches/quantiles/ItemsSketch.html |  1161 ++
 .../quantiles/ItemsSketchIterator.html             |   298 +
 .../apache/datasketches/quantiles/ItemsUnion.html  |   695 +
 .../quantiles/UpdateDoublesSketch.html             |   353 +
 .../quantiles/class-use/CompactDoublesSketch.html  |   179 +
 .../quantiles/class-use/DoublesSketch.html         |   239 +
 .../quantiles/class-use/DoublesSketchBuilder.html  |   177 +
 .../quantiles/class-use/DoublesSketchIterator.html |   169 +
 .../quantiles/class-use/DoublesUnion.html          |   237 +
 .../quantiles/class-use/DoublesUnionBuilder.html   |   178 +
 .../quantiles/class-use/ItemsSketch.html           |   239 +
 .../quantiles/class-use/ItemsSketchIterator.html   |   169 +
 .../quantiles/class-use/ItemsUnion.html            |   192 +
 .../quantiles/class-use/UpdateDoublesSketch.html   |   209 +
 .../datasketches/quantiles/package-frame.html      |    30 +
 .../datasketches/quantiles/package-summary.html    |   216 +
 .../datasketches/quantiles/package-tree.html       |   151 +
 .../apache/datasketches/quantiles/package-use.html |   207 +
 .../sampling/ReservoirItemsSketch.html             |   620 +
 .../datasketches/sampling/ReservoirItemsUnion.html |   509 +
 .../sampling/ReservoirLongsSketch.html             |   544 +
 .../datasketches/sampling/ReservoirLongsUnion.html |   442 +
 .../datasketches/sampling/SampleSubsetSummary.html |   299 +
 .../VarOptItemsSamples.VarOptItemsIterator.html    |   277 +
 .../VarOptItemsSamples.WeightedSample.html         |   271 +
 .../datasketches/sampling/VarOptItemsSamples.html  |   443 +
 .../datasketches/sampling/VarOptItemsSketch.html   |   592 +
 .../datasketches/sampling/VarOptItemsUnion.html    |   461 +
 .../sampling/class-use/ReservoirItemsSketch.html   |   214 +
 .../sampling/class-use/ReservoirItemsUnion.html    |   178 +
 .../sampling/class-use/ReservoirLongsSketch.html   |   208 +
 .../sampling/class-use/ReservoirLongsUnion.html    |   177 +
 .../sampling/class-use/SampleSubsetSummary.html    |   186 +
 .../VarOptItemsSamples.VarOptItemsIterator.html    |   126 +
 .../VarOptItemsSamples.WeightedSample.html         |   182 +
 .../sampling/class-use/VarOptItemsSamples.html     |   171 +
 .../sampling/class-use/VarOptItemsSketch.html      |   207 +
 .../sampling/class-use/VarOptItemsUnion.html       |   178 +
 .../datasketches/sampling/package-frame.html       |    28 +
 .../datasketches/sampling/package-summary.html     |   202 +
 .../apache/datasketches/sampling/package-tree.html |   148 +
 .../apache/datasketches/sampling/package-use.html  |   204 +
 .../org/apache/datasketches/theta/AnotB.html       |   441 +
 .../apache/datasketches/theta/CompactSketch.html   |   398 +
 .../apache/datasketches/theta/HashIterator.html    |   256 +
 .../apache/datasketches/theta/Intersection.html    |   493 +
 .../datasketches/theta/JaccardSimilarity.html      |   392 +
 .../datasketches/theta/PairwiseSetOperations.html  |   390 +
 .../apache/datasketches/theta/SetOperation.html    |   516 +
 .../datasketches/theta/SetOperationBuilder.html    |   674 +
 .../datasketches/theta/SingleItemSketch.html       |   988 ++
 .../org/apache/datasketches/theta/Sketch.html      |   993 ++
 .../org/apache/datasketches/theta/Sketches.html    |   886 ++
 .../org/apache/datasketches/theta/Union.html       |   593 +
 .../datasketches/theta/UpdateReturnState.html      |   434 +
 .../apache/datasketches/theta/UpdateSketch.html    |   729 +
 .../datasketches/theta/UpdateSketchBuilder.html    |  1014 ++
 .../apache/datasketches/theta/class-use/AnotB.html |   172 +
 .../theta/class-use/CompactSketch.html             |   343 +
 .../datasketches/theta/class-use/HashIterator.html |   176 +
 .../datasketches/theta/class-use/Intersection.html |   192 +
 .../theta/class-use/JaccardSimilarity.html         |   126 +
 .../theta/class-use/PairwiseSetOperations.html     |   126 +
 .../datasketches/theta/class-use/SetOperation.html |   287 +
 .../theta/class-use/SetOperationBuilder.html       |   207 +
 .../theta/class-use/SingleItemSketch.html          |   270 +
 .../datasketches/theta/class-use/Sketch.html       |   397 +
 .../datasketches/theta/class-use/Sketches.html     |   126 +
 .../apache/datasketches/theta/class-use/Union.html |   192 +
 .../theta/class-use/UpdateReturnState.html         |   220 +
 .../datasketches/theta/class-use/UpdateSketch.html |   294 +
 .../theta/class-use/UpdateSketchBuilder.html       |   238 +
 .../apache/datasketches/theta/package-frame.html   |    41 +
 .../apache/datasketches/theta/package-summary.html |   304 +
 .../apache/datasketches/theta/package-tree.html    |   176 +
 .../org/apache/datasketches/theta/package-use.html |   240 +
 .../org/apache/datasketches/tuple/AnotB.html       |   311 +
 .../datasketches/tuple/ArrayOfDoublesAnotB.html    |   296 +
 .../datasketches/tuple/ArrayOfDoublesCombiner.html |   236 +
 .../tuple/ArrayOfDoublesCompactSketch.html         |   217 +
 .../tuple/ArrayOfDoublesIntersection.html          |   311 +
 .../tuple/ArrayOfDoublesSetOperationBuilder.html   |   511 +
 .../datasketches/tuple/ArrayOfDoublesSketch.html   |   557 +
 .../tuple/ArrayOfDoublesSketchIterator.html        |   280 +
 .../datasketches/tuple/ArrayOfDoublesSketches.html |   590 +
 .../datasketches/tuple/ArrayOfDoublesUnion.html    |   486 +
 .../tuple/ArrayOfDoublesUpdatableSketch.html       |   611 +
 .../ArrayOfDoublesUpdatableSketchBuilder.html      |   420 +
 .../apache/datasketches/tuple/CompactSketch.html   |   305 +
 .../datasketches/tuple/DeserializeResult.html      |   311 +
 .../org/apache/datasketches/tuple/Filter.html      |   296 +
 .../apache/datasketches/tuple/Intersection.html    |   331 +
 .../org/apache/datasketches/tuple/Sketch.html      |   579 +
 .../apache/datasketches/tuple/SketchIterator.html  |   300 +
 .../org/apache/datasketches/tuple/Sketches.html    |   338 +
 .../org/apache/datasketches/tuple/Summary.html     |   264 +
 .../datasketches/tuple/SummaryDeserializer.html    |   246 +
 .../apache/datasketches/tuple/SummaryFactory.html  |   236 +
 .../datasketches/tuple/SummarySetOperations.html   |   285 +
 .../org/apache/datasketches/tuple/Union.html       |   354 +
 .../apache/datasketches/tuple/UpdatableSketch.html |   721 +
 .../datasketches/tuple/UpdatableSketchBuilder.html |   380 +
 .../datasketches/tuple/UpdatableSummary.html       |   254 +
 .../datasketches/tuple/adouble/DoubleSketch.html   |   637 +
 .../tuple/adouble/DoubleSummary.Mode.html          |   388 +
 .../datasketches/tuple/adouble/DoubleSummary.html  |   412 +
 .../tuple/adouble/DoubleSummaryDeserializer.html   |   299 +
 .../tuple/adouble/DoubleSummaryFactory.html        |   309 +
 .../tuple/adouble/DoubleSummarySetOperations.html  |   354 +
 .../tuple/adouble/class-use/DoubleSketch.html      |   126 +
 .../adouble/class-use/DoubleSummary.Mode.html      |   219 +
 .../tuple/adouble/class-use/DoubleSummary.html     |   222 +
 .../class-use/DoubleSummaryDeserializer.html       |   126 +
 .../adouble/class-use/DoubleSummaryFactory.html    |   126 +
 .../class-use/DoubleSummarySetOperations.html      |   126 +
 .../datasketches/tuple/adouble/package-frame.html  |    29 +
 .../tuple/adouble/package-summary.html             |   188 +
 .../datasketches/tuple/adouble/package-tree.html   |   163 +
 .../datasketches/tuple/adouble/package-use.html    |   166 +
 .../tuple/aninteger/IntegerSketch.html             |   637 +
 .../tuple/aninteger/IntegerSummary.Mode.html       |   388 +
 .../tuple/aninteger/IntegerSummary.html            |   411 +
 .../aninteger/IntegerSummaryDeserializer.html      |   299 +
 .../tuple/aninteger/IntegerSummaryFactory.html     |   296 +
 .../aninteger/IntegerSummarySetOperations.html     |   349 +
 .../tuple/aninteger/class-use/IntegerSketch.html   |   126 +
 .../aninteger/class-use/IntegerSummary.Mode.html   |   220 +
 .../tuple/aninteger/class-use/IntegerSummary.html  |   218 +
 .../class-use/IntegerSummaryDeserializer.html      |   126 +
 .../aninteger/class-use/IntegerSummaryFactory.html |   126 +
 .../class-use/IntegerSummarySetOperations.html     |   126 +
 .../tuple/aninteger/package-frame.html             |    29 +
 .../tuple/aninteger/package-summary.html           |   188 +
 .../datasketches/tuple/aninteger/package-tree.html |   163 +
 .../datasketches/tuple/aninteger/package-use.html  |   166 +
 .../apache/datasketches/tuple/class-use/AnotB.html |   126 +
 .../tuple/class-use/ArrayOfDoublesAnotB.html       |   171 +
 .../tuple/class-use/ArrayOfDoublesCombiner.html    |   172 +
 .../class-use/ArrayOfDoublesCompactSketch.html     |   213 +
 .../class-use/ArrayOfDoublesIntersection.html      |   179 +
 .../ArrayOfDoublesSetOperationBuilder.html         |   183 +
 .../tuple/class-use/ArrayOfDoublesSketch.html      |   267 +
 .../class-use/ArrayOfDoublesSketchIterator.html    |   169 +
 .../tuple/class-use/ArrayOfDoublesSketches.html    |   126 +
 .../tuple/class-use/ArrayOfDoublesUnion.html       |   256 +
 .../class-use/ArrayOfDoublesUpdatableSketch.html   |   229 +
 .../ArrayOfDoublesUpdatableSketchBuilder.html      |   195 +
 .../tuple/class-use/CompactSketch.html             |   189 +
 .../tuple/class-use/DeserializeResult.html         |   253 +
 .../datasketches/tuple/class-use/Filter.html       |   126 +
 .../datasketches/tuple/class-use/Intersection.html |   126 +
 .../datasketches/tuple/class-use/Sketch.html       |   328 +
 .../tuple/class-use/SketchIterator.html            |   171 +
 .../datasketches/tuple/class-use/Sketches.html     |   126 +
 .../datasketches/tuple/class-use/Summary.html      |   347 +
 .../tuple/class-use/SummaryDeserializer.html       |   261 +
 .../tuple/class-use/SummaryFactory.html            |   271 +
 .../tuple/class-use/SummarySetOperations.html      |   252 +
 .../apache/datasketches/tuple/class-use/Union.html |   126 +
 .../tuple/class-use/UpdatableSketch.html           |   269 +
 .../tuple/class-use/UpdatableSketchBuilder.html    |   183 +
 .../tuple/class-use/UpdatableSummary.html          |   264 +
 .../apache/datasketches/tuple/package-frame.html   |    50 +
 .../apache/datasketches/tuple/package-summary.html |   335 +
 .../apache/datasketches/tuple/package-tree.html    |   177 +
 .../org/apache/datasketches/tuple/package-use.html |   469 +
 .../tuple/strings/ArrayOfStringsSketch.html        |   615 +
 .../tuple/strings/ArrayOfStringsSummary.html       |   399 +
 .../strings/ArrayOfStringsSummaryDeserializer.html |   299 +
 .../strings/ArrayOfStringsSummaryFactory.html      |   288 +
 .../ArrayOfStringsSummarySetOperations.html        |   337 +
 .../strings/class-use/ArrayOfStringsSketch.html    |   168 +
 .../strings/class-use/ArrayOfStringsSummary.html   |   216 +
 .../ArrayOfStringsSummaryDeserializer.html         |   126 +
 .../class-use/ArrayOfStringsSummaryFactory.html    |   126 +
 .../ArrayOfStringsSummarySetOperations.html        |   126 +
 .../datasketches/tuple/strings/package-frame.html  |    25 +
 .../tuple/strings/package-summary.html             |   164 +
 .../datasketches/tuple/strings/package-tree.html   |   151 +
 .../datasketches/tuple/strings/package-use.html    |   178 +
 api/java/snapshot/apidocs/overview-frame.html      |    36 +
 api/java/snapshot/apidocs/overview-summary.html    |   274 +
 api/java/snapshot/apidocs/overview-tree.html       |   339 +
 api/java/snapshot/apidocs/package-list             |    15 +
 .../snapshot/apidocs/resources/dictionary.html     |   281 +
 api/java/snapshot/apidocs/script.js                |    30 +
 api/java/snapshot/apidocs/serialized-form.html     |   184 +
 api/java/snapshot/apidocs/stylesheet.css           |   574 +
 api/memory/snapshot/apidocs/allclasses-frame.html  |    37 +
 .../snapshot/apidocs/allclasses-noframe.html       |    37 +
 api/memory/snapshot/apidocs/constant-values.html   |   260 +
 api/memory/snapshot/apidocs/deprecated-list.html   |   126 +
 api/memory/snapshot/apidocs/help-doc.html          |   231 +
 api/memory/snapshot/apidocs/index-all.html         |  1253 ++
 api/memory/snapshot/apidocs/index.html             |    73 +
 .../org/apache/datasketches/memory/BaseBuffer.html |  1113 ++
 .../org/apache/datasketches/memory/Buffer.html     |  1668 +++
 .../memory/DefaultMemoryRequestServer.html         |   366 +
 .../org/apache/datasketches/memory/Handle.html     |   288 +
 .../org/apache/datasketches/memory/MapHandle.html  |   322 +
 .../org/apache/datasketches/memory/Memory.html     |  1999 +++
 .../datasketches/memory/MemoryRequestServer.html   |   269 +
 .../datasketches/memory/ReadOnlyException.html     |   284 +
 .../org/apache/datasketches/memory/UnsafeUtil.html |   791 ++
 .../datasketches/memory/Utf8CodingException.html   |   280 +
 .../datasketches/memory/Util.RandomCodePoints.html |   383 +
 .../org/apache/datasketches/memory/Util.html       |   525 +
 .../apache/datasketches/memory/WritableBuffer.html |  1722 +++
 .../datasketches/memory/WritableDirectHandle.html  |   281 +
 .../apache/datasketches/memory/WritableHandle.html |   254 +
 .../datasketches/memory/WritableMapHandle.html     |   340 +
 .../apache/datasketches/memory/WritableMemory.html |  2205 +++
 .../org/apache/datasketches/memory/XxHash64.html   |   575 +
 .../datasketches/memory/class-use/BaseBuffer.html  |   217 +
 .../datasketches/memory/class-use/Buffer.html      |   236 +
 .../class-use/DefaultMemoryRequestServer.html      |   126 +
 .../datasketches/memory/class-use/Handle.html      |   180 +
 .../datasketches/memory/class-use/MapHandle.html   |   179 +
 .../datasketches/memory/class-use/Memory.html      |   300 +
 .../memory/class-use/MemoryRequestServer.html      |   192 +
 .../memory/class-use/ReadOnlyException.html        |   126 +
 .../datasketches/memory/class-use/UnsafeUtil.html  |   126 +
 .../memory/class-use/Utf8CodingException.html      |   165 +
 .../memory/class-use/Util.RandomCodePoints.html    |   126 +
 .../apache/datasketches/memory/class-use/Util.html |   126 +
 .../memory/class-use/WritableBuffer.html           |   201 +
 .../memory/class-use/WritableDirectHandle.html     |   162 +
 .../memory/class-use/WritableHandle.html           |   159 +
 .../memory/class-use/WritableMapHandle.html        |   164 +
 .../memory/class-use/WritableMemory.html           |   318 +
 .../datasketches/memory/class-use/XxHash64.html    |   126 +
 .../apache/datasketches/memory/package-frame.html  |    44 +
 .../datasketches/memory/package-summary.html       |   440 +
 .../apache/datasketches/memory/package-tree.html   |   190 +
 .../apache/datasketches/memory/package-use.html    |   208 +
 api/memory/snapshot/apidocs/overview-summary.html  |   160 +
 api/memory/snapshot/apidocs/overview-tree.html     |   195 +
 api/memory/snapshot/apidocs/package-list           |     1 +
 api/memory/snapshot/apidocs/script.js              |    30 +
 api/memory/snapshot/apidocs/serialized-form.html   |   152 +
 api/memory/snapshot/apidocs/stylesheet.css         |   574 +
 api/pig/snapshot/apidocs/allclasses-frame.html     |   144 +
 api/pig/snapshot/apidocs/allclasses-noframe.html   |   144 +
 api/pig/snapshot/apidocs/constant-values.html      |   126 +
 api/pig/snapshot/apidocs/deprecated-list.html      |   126 +
 api/pig/snapshot/apidocs/help-doc.html             |   231 +
 api/pig/snapshot/apidocs/index-all.html            |  2353 ++++
 api/pig/snapshot/apidocs/index.html                |    76 +
 .../datasketches/pig/cpc/AlgebraicInitial.html     |   376 +
 .../apache/datasketches/pig/cpc/DataToSketch.html  |   550 +
 .../pig/cpc/DataToSketchAlgebraicFinal.html        |   370 +
 .../pig/cpc/DataToSketchAlgebraicIntermediate.html |   370 +
 .../apache/datasketches/pig/cpc/GetEstimate.html   |   349 +
 .../pig/cpc/GetEstimateAndErrorBounds.html         |   396 +
 .../datasketches/pig/cpc/SketchToString.html       |   371 +
 .../apache/datasketches/pig/cpc/UnionSketch.html   |   541 +
 .../pig/cpc/UnionSketchAlgebraicFinal.html         |   370 +
 .../pig/cpc/UnionSketchAlgebraicIntermediate.html  |   370 +
 .../pig/cpc/class-use/AlgebraicInitial.html        |   126 +
 .../pig/cpc/class-use/DataToSketch.html            |   126 +
 .../cpc/class-use/DataToSketchAlgebraicFinal.html  |   126 +
 .../DataToSketchAlgebraicIntermediate.html         |   126 +
 .../pig/cpc/class-use/GetEstimate.html             |   126 +
 .../cpc/class-use/GetEstimateAndErrorBounds.html   |   126 +
 .../pig/cpc/class-use/SketchToString.html          |   126 +
 .../pig/cpc/class-use/UnionSketch.html             |   126 +
 .../cpc/class-use/UnionSketchAlgebraicFinal.html   |   126 +
 .../UnionSketchAlgebraicIntermediate.html          |   126 +
 .../apache/datasketches/pig/cpc/package-frame.html |    30 +
 .../datasketches/pig/cpc/package-summary.html      |   211 +
 .../apache/datasketches/pig/cpc/package-tree.html  |   152 +
 .../apache/datasketches/pig/cpc/package-use.html   |   126 +
 .../pig/frequencies/AlgebraicInitial.html          |   327 +
 .../pig/frequencies/DataToFrequentItemsSketch.html |   400 +
 ...quentItemsSketchAlgebraicIntermediateFinal.html |   352 +
 .../DataToFrequentStringsSketch.Initial.html       |   320 +
 ...aToFrequentStringsSketch.IntermediateFinal.html |   320 +
 .../frequencies/DataToFrequentStringsSketch.html   |   394 +
 .../FrequentStringsSketchToEstimates.html          |   363 +
 .../pig/frequencies/UnionFrequentItemsSketch.html  |   400 +
 ...quentItemsSketchAlgebraicIntermediateFinal.html |   352 +
 .../UnionFrequentStringsSketch.Initial.html        |   320 +
 ...ionFrequentStringsSketch.IntermediateFinal.html |   320 +
 .../frequencies/UnionFrequentStringsSketch.html    |   394 +
 .../frequencies/class-use/AlgebraicInitial.html    |   172 +
 .../class-use/DataToFrequentItemsSketch.html       |   170 +
 ...quentItemsSketchAlgebraicIntermediateFinal.html |   168 +
 .../DataToFrequentStringsSketch.Initial.html       |   126 +
 ...aToFrequentStringsSketch.IntermediateFinal.html |   126 +
 .../class-use/DataToFrequentStringsSketch.html     |   126 +
 .../FrequentStringsSketchToEstimates.html          |   126 +
 .../class-use/UnionFrequentItemsSketch.html        |   170 +
 ...quentItemsSketchAlgebraicIntermediateFinal.html |   168 +
 .../UnionFrequentStringsSketch.Initial.html        |   126 +
 ...ionFrequentStringsSketch.IntermediateFinal.html |   126 +
 .../class-use/UnionFrequentStringsSketch.html      |   126 +
 .../pig/frequencies/package-frame.html             |    32 +
 .../pig/frequencies/package-summary.html           |   224 +
 .../datasketches/pig/frequencies/package-tree.html |   169 +
 .../datasketches/pig/frequencies/package-use.html  |   185 +
 .../apache/datasketches/pig/hash/MurmurHash3.html  |   384 +
 .../pig/hash/class-use/MurmurHash3.html            |   126 +
 .../datasketches/pig/hash/package-frame.html       |    21 +
 .../datasketches/pig/hash/package-summary.html     |   163 +
 .../apache/datasketches/pig/hash/package-tree.html |   143 +
 .../apache/datasketches/pig/hash/package-use.html  |   126 +
 .../datasketches/pig/hll/AlgebraicInitial.html     |   376 +
 .../apache/datasketches/pig/hll/DataToSketch.html  |   550 +
 .../pig/hll/DataToSketchAlgebraicFinal.html        |   370 +
 .../pig/hll/DataToSketchAlgebraicIntermediate.html |   370 +
 .../datasketches/pig/hll/SketchToEstimate.html     |   327 +
 .../pig/hll/SketchToEstimateAndErrorBounds.html    |   351 +
 .../datasketches/pig/hll/SketchToString.html       |   352 +
 .../apache/datasketches/pig/hll/UnionSketch.html   |   541 +
 .../pig/hll/UnionSketchAlgebraicFinal.html         |   370 +
 .../pig/hll/UnionSketchAlgebraicIntermediate.html  |   370 +
 .../pig/hll/class-use/AlgebraicInitial.html        |   126 +
 .../pig/hll/class-use/DataToSketch.html            |   126 +
 .../hll/class-use/DataToSketchAlgebraicFinal.html  |   126 +
 .../DataToSketchAlgebraicIntermediate.html         |   126 +
 .../pig/hll/class-use/SketchToEstimate.html        |   126 +
 .../class-use/SketchToEstimateAndErrorBounds.html  |   126 +
 .../pig/hll/class-use/SketchToString.html          |   126 +
 .../pig/hll/class-use/UnionSketch.html             |   126 +
 .../hll/class-use/UnionSketchAlgebraicFinal.html   |   126 +
 .../UnionSketchAlgebraicIntermediate.html          |   126 +
 .../apache/datasketches/pig/hll/package-frame.html |    30 +
 .../datasketches/pig/hll/package-summary.html      |   216 +
 .../apache/datasketches/pig/hll/package-tree.html  |   152 +
 .../apache/datasketches/pig/hll/package-use.html   |   126 +
 .../datasketches/pig/kll/DataToSketch.Final.html   |   353 +
 .../datasketches/pig/kll/DataToSketch.Initial.html |   353 +
 .../pig/kll/DataToSketch.Intermediate.html         |   353 +
 .../apache/datasketches/pig/kll/DataToSketch.html  |   550 +
 .../org/apache/datasketches/pig/kll/GetCdf.html    |   328 +
 .../org/apache/datasketches/pig/kll/GetK.html      |   325 +
 .../org/apache/datasketches/pig/kll/GetPmf.html    |   328 +
 .../apache/datasketches/pig/kll/GetQuantile.html   |   327 +
 .../apache/datasketches/pig/kll/GetQuantiles.html  |   327 +
 .../org/apache/datasketches/pig/kll/GetRank.html   |   327 +
 .../datasketches/pig/kll/SketchToString.html       |   323 +
 .../datasketches/pig/kll/UnionSketch.Final.html    |   352 +
 .../datasketches/pig/kll/UnionSketch.Initial.html  |   354 +
 .../pig/kll/UnionSketch.Intermediate.html          |   352 +
 .../apache/datasketches/pig/kll/UnionSketch.html   |   542 +
 .../pig/kll/class-use/DataToSketch.Final.html      |   126 +
 .../pig/kll/class-use/DataToSketch.Initial.html    |   126 +
 .../kll/class-use/DataToSketch.Intermediate.html   |   126 +
 .../pig/kll/class-use/DataToSketch.html            |   126 +
 .../datasketches/pig/kll/class-use/GetCdf.html     |   126 +
 .../datasketches/pig/kll/class-use/GetK.html       |   126 +
 .../datasketches/pig/kll/class-use/GetPmf.html     |   126 +
 .../pig/kll/class-use/GetQuantile.html             |   126 +
 .../pig/kll/class-use/GetQuantiles.html            |   126 +
 .../datasketches/pig/kll/class-use/GetRank.html    |   126 +
 .../pig/kll/class-use/SketchToString.html          |   126 +
 .../pig/kll/class-use/UnionSketch.Final.html       |   126 +
 .../pig/kll/class-use/UnionSketch.Initial.html     |   126 +
 .../kll/class-use/UnionSketch.Intermediate.html    |   126 +
 .../pig/kll/class-use/UnionSketch.html             |   126 +
 .../apache/datasketches/pig/kll/package-frame.html |    35 +
 .../datasketches/pig/kll/package-summary.html      |   249 +
 .../apache/datasketches/pig/kll/package-tree.html  |   157 +
 .../apache/datasketches/pig/kll/package-use.html   |   126 +
 .../pig/quantiles/DataToDoublesSketch.Initial.html |   354 +
 .../DataToDoublesSketch.IntermediateFinal.html     |   373 +
 .../pig/quantiles/DataToDoublesSketch.html         |   587 +
 ...DataToItemsSketch.DataToItemsSketchInitial.html |   353 +
 ...sSketch.DataToItemsSketchIntermediateFinal.html |   374 +
 .../pig/quantiles/DataToItemsSketch.html           |   546 +
 ...ketch.DataToStringsSketchIntermediateFinal.html |   309 +
 .../pig/quantiles/DataToStringsSketch.html         |   389 +
 .../pig/quantiles/DoublesSketchToString.html       |   323 +
 .../pig/quantiles/GetKFromDoublesSketch.html       |   325 +
 .../pig/quantiles/GetKFromStringsSketch.html       |   325 +
 .../pig/quantiles/GetPmfFromDoublesSketch.html     |   328 +
 .../pig/quantiles/GetPmfFromStringsSketch.html     |   328 +
 .../quantiles/GetQuantileFromDoublesSketch.html    |   327 +
 .../quantiles/GetQuantileFromStringsSketch.html    |   327 +
 .../quantiles/GetQuantilesFromDoublesSketch.html   |   327 +
 .../quantiles/GetQuantilesFromStringsSketch.html   |   327 +
 .../pig/quantiles/StringsSketchToString.html       |   323 +
 .../pig/quantiles/UnionDoublesSketch.Initial.html  |   354 +
 .../UnionDoublesSketch.IntermediateFinal.html      |   373 +
 .../pig/quantiles/UnionDoublesSketch.html          |   578 +
 .../UnionItemsSketch.UnionItemsSketchInitial.html  |   353 +
 ...msSketch.UnionItemsSketchIntermediateFinal.html |   352 +
 .../pig/quantiles/UnionItemsSketch.html            |   515 +
 ...Sketch.UnionStringsSketchIntermediateFinal.html |   309 +
 .../pig/quantiles/UnionStringsSketch.html          |   389 +
 .../class-use/DataToDoublesSketch.Initial.html     |   126 +
 .../DataToDoublesSketch.IntermediateFinal.html     |   126 +
 .../quantiles/class-use/DataToDoublesSketch.html   |   126 +
 ...DataToItemsSketch.DataToItemsSketchInitial.html |   126 +
 ...sSketch.DataToItemsSketchIntermediateFinal.html |   168 +
 .../pig/quantiles/class-use/DataToItemsSketch.html |   170 +
 ...ketch.DataToStringsSketchIntermediateFinal.html |   126 +
 .../quantiles/class-use/DataToStringsSketch.html   |   126 +
 .../quantiles/class-use/DoublesSketchToString.html |   126 +
 .../quantiles/class-use/GetKFromDoublesSketch.html |   126 +
 .../quantiles/class-use/GetKFromStringsSketch.html |   126 +
 .../class-use/GetPmfFromDoublesSketch.html         |   126 +
 .../class-use/GetPmfFromStringsSketch.html         |   126 +
 .../class-use/GetQuantileFromDoublesSketch.html    |   126 +
 .../class-use/GetQuantileFromStringsSketch.html    |   126 +
 .../class-use/GetQuantilesFromDoublesSketch.html   |   126 +
 .../class-use/GetQuantilesFromStringsSketch.html   |   126 +
 .../quantiles/class-use/StringsSketchToString.html |   126 +
 .../class-use/UnionDoublesSketch.Initial.html      |   126 +
 .../UnionDoublesSketch.IntermediateFinal.html      |   126 +
 .../quantiles/class-use/UnionDoublesSketch.html    |   126 +
 .../UnionItemsSketch.UnionItemsSketchInitial.html  |   126 +
 ...msSketch.UnionItemsSketchIntermediateFinal.html |   168 +
 .../pig/quantiles/class-use/UnionItemsSketch.html  |   170 +
 ...Sketch.UnionStringsSketchIntermediateFinal.html |   126 +
 .../quantiles/class-use/UnionStringsSketch.html    |   126 +
 .../datasketches/pig/quantiles/package-frame.html  |    46 +
 .../pig/quantiles/package-summary.html             |   325 +
 .../datasketches/pig/quantiles/package-tree.html   |   180 +
 .../datasketches/pig/quantiles/package-use.html    |   180 +
 .../pig/sampling/ArrayOfTuplesSerDe.html           |   307 +
 .../pig/sampling/DataToVarOptSketch.html           |   484 +
 .../pig/sampling/GetVarOptSamples.html             |   347 +
 .../pig/sampling/ReservoirSampling.Initial.html    |   345 +
 .../ReservoirSampling.IntermediateFinal.html       |   345 +
 .../pig/sampling/ReservoirSampling.html            |   488 +
 .../datasketches/pig/sampling/ReservoirUnion.html  |   419 +
 .../pig/sampling/VarOptSampling.Final.html         |   367 +
 .../datasketches/pig/sampling/VarOptSampling.html  |   493 +
 .../datasketches/pig/sampling/VarOptUnion.html     |   464 +
 .../pig/sampling/class-use/ArrayOfTuplesSerDe.html |   126 +
 .../pig/sampling/class-use/DataToVarOptSketch.html |   126 +
 .../pig/sampling/class-use/GetVarOptSamples.html   |   126 +
 .../class-use/ReservoirSampling.Initial.html       |   126 +
 .../ReservoirSampling.IntermediateFinal.html       |   126 +
 .../pig/sampling/class-use/ReservoirSampling.html  |   126 +
 .../pig/sampling/class-use/ReservoirUnion.html     |   126 +
 .../sampling/class-use/VarOptSampling.Final.html   |   126 +
 .../pig/sampling/class-use/VarOptSampling.html     |   126 +
 .../pig/sampling/class-use/VarOptUnion.html        |   126 +
 .../datasketches/pig/sampling/package-frame.html   |    30 +
 .../datasketches/pig/sampling/package-summary.html |   212 +
 .../datasketches/pig/sampling/package-tree.html    |   160 +
 .../datasketches/pig/sampling/package-use.html     |   126 +
 .../apache/datasketches/pig/theta/AexcludeB.html   |   420 +
 .../pig/theta/DataToSketch.Initial.html            |   403 +
 .../pig/theta/DataToSketch.IntermediateFinal.html  |   443 +
 .../datasketches/pig/theta/DataToSketch.html       |   662 +
 .../apache/datasketches/pig/theta/ErrorBounds.html |   398 +
 .../apache/datasketches/pig/theta/Estimate.html    |   364 +
 .../datasketches/pig/theta/Intersect.Initial.html  |   354 +
 .../pig/theta/Intersect.IntermediateFinal.html     |   377 +
 .../apache/datasketches/pig/theta/Intersect.html   |   579 +
 .../datasketches/pig/theta/JaccardSimilarity.html  |   407 +
 .../datasketches/pig/theta/SketchToString.html     |   397 +
 .../datasketches/pig/theta/Union.Initial.html      |   407 +
 .../pig/theta/Union.IntermediateFinal.html         |   443 +
 .../org/apache/datasketches/pig/theta/Union.html   |   649 +
 .../pig/theta/class-use/AexcludeB.html             |   126 +
 .../pig/theta/class-use/DataToSketch.Initial.html  |   126 +
 .../class-use/DataToSketch.IntermediateFinal.html  |   126 +
 .../pig/theta/class-use/DataToSketch.html          |   126 +
 .../pig/theta/class-use/ErrorBounds.html           |   126 +
 .../datasketches/pig/theta/class-use/Estimate.html |   126 +
 .../pig/theta/class-use/Intersect.Initial.html     |   126 +
 .../class-use/Intersect.IntermediateFinal.html     |   126 +
 .../pig/theta/class-use/Intersect.html             |   126 +
 .../pig/theta/class-use/JaccardSimilarity.html     |   126 +
 .../pig/theta/class-use/SketchToString.html        |   126 +
 .../pig/theta/class-use/Union.Initial.html         |   126 +
 .../theta/class-use/Union.IntermediateFinal.html   |   126 +
 .../datasketches/pig/theta/class-use/Union.html    |   126 +
 .../datasketches/pig/theta/package-frame.html      |    34 +
 .../datasketches/pig/theta/package-summary.html    |   239 +
 .../datasketches/pig/theta/package-tree.html       |   156 +
 .../apache/datasketches/pig/theta/package-use.html |   126 +
 .../datasketches/pig/tuple/AlgebraicInitial.html   |   327 +
 ...rayOfDoublesSketchToEstimateAndErrorBounds.html |   331 +
 .../pig/tuple/ArrayOfDoublesSketchToEstimates.html |   330 +
 .../pig/tuple/ArrayOfDoublesSketchToMeans.html     |   325 +
 ...ayOfDoublesSketchToNumberOfRetainedEntries.html |   330 +
 .../ArrayOfDoublesSketchToQuantilesSketch.html     |   348 +
 .../pig/tuple/ArrayOfDoublesSketchToVariances.html |   325 +
 .../ArrayOfDoublesSketchesToPValueEstimates.html   |   325 +
 .../tuple/DataToArrayOfDoublesSketch.Initial.html  |   370 +
 ...taToArrayOfDoublesSketch.IntermediateFinal.html |   399 +
 .../pig/tuple/DataToArrayOfDoublesSketch.html      |   520 +
 .../tuple/DataToDoubleSummarySketch.Initial.html   |   343 +
 ...ataToDoubleSummarySketch.IntermediateFinal.html |   344 +
 .../pig/tuple/DataToDoubleSummarySketch.html       |   431 +
 .../datasketches/pig/tuple/DataToSketch.html       |   453 +
 .../DataToSketchAlgebraicIntermediateFinal.html    |   418 +
 .../pig/tuple/DoubleSummarySketchToEstimates.html  |   329 +
 .../pig/tuple/DoubleSummarySketchToPercentile.html |   328 +
 .../tuple/UnionArrayOfDoublesSketch.Initial.html   |   343 +
 ...nionArrayOfDoublesSketch.IntermediateFinal.html |   373 +
 .../pig/tuple/UnionArrayOfDoublesSketch.html       |   493 +
 .../tuple/UnionDoubleSummarySketch.Initial.html    |   344 +
 ...UnionDoubleSummarySketch.IntermediateFinal.html |   344 +
 .../pig/tuple/UnionDoubleSummarySketch.html        |   431 +
 .../apache/datasketches/pig/tuple/UnionSketch.html |   427 +
 .../UnionSketchAlgebraicIntermediateFinal.html     |   372 +
 .../pig/tuple/class-use/AlgebraicInitial.html      |   180 +
 ...rayOfDoublesSketchToEstimateAndErrorBounds.html |   126 +
 .../class-use/ArrayOfDoublesSketchToEstimates.html |   126 +
 .../class-use/ArrayOfDoublesSketchToMeans.html     |   126 +
 ...ayOfDoublesSketchToNumberOfRetainedEntries.html |   126 +
 .../ArrayOfDoublesSketchToQuantilesSketch.html     |   126 +
 .../class-use/ArrayOfDoublesSketchToVariances.html |   126 +
 .../ArrayOfDoublesSketchesToPValueEstimates.html   |   126 +
 .../DataToArrayOfDoublesSketch.Initial.html        |   126 +
 ...taToArrayOfDoublesSketch.IntermediateFinal.html |   126 +
 .../class-use/DataToArrayOfDoublesSketch.html      |   126 +
 .../DataToDoubleSummarySketch.Initial.html         |   126 +
 ...ataToDoubleSummarySketch.IntermediateFinal.html |   126 +
 .../tuple/class-use/DataToDoubleSummarySketch.html |   126 +
 .../pig/tuple/class-use/DataToSketch.html          |   170 +
 .../DataToSketchAlgebraicIntermediateFinal.html    |   168 +
 .../class-use/DoubleSummarySketchToEstimates.html  |   126 +
 .../class-use/DoubleSummarySketchToPercentile.html |   126 +
 .../UnionArrayOfDoublesSketch.Initial.html         |   126 +
 ...nionArrayOfDoublesSketch.IntermediateFinal.html |   126 +
 .../tuple/class-use/UnionArrayOfDoublesSketch.html |   126 +
 .../UnionDoubleSummarySketch.Initial.html          |   126 +
 ...UnionDoubleSummarySketch.IntermediateFinal.html |   126 +
 .../tuple/class-use/UnionDoubleSummarySketch.html  |   126 +
 .../pig/tuple/class-use/UnionSketch.html           |   170 +
 .../UnionSketchAlgebraicIntermediateFinal.html     |   168 +
 .../datasketches/pig/tuple/package-frame.html      |    46 +
 .../datasketches/pig/tuple/package-summary.html    |   315 +
 .../datasketches/pig/tuple/package-tree.html       |   183 +
 .../apache/datasketches/pig/tuple/package-use.html |   185 +
 .../datasketches/sampling/SamplingPigUtil.html     |   277 +
 .../sampling/class-use/SamplingPigUtil.html        |   126 +
 .../datasketches/sampling/package-frame.html       |    21 +
 .../datasketches/sampling/package-summary.html     |   153 +
 .../apache/datasketches/sampling/package-tree.html |   139 +
 .../apache/datasketches/sampling/package-use.html  |   126 +
 api/pig/snapshot/apidocs/overview-frame.html       |    31 +
 api/pig/snapshot/apidocs/overview-summary.html     |   214 +
 api/pig/snapshot/apidocs/overview-tree.html        |   326 +
 api/pig/snapshot/apidocs/package-list              |    10 +
 api/pig/snapshot/apidocs/resources/dictionary.html |   281 +
 api/pig/snapshot/apidocs/script.js                 |    30 +
 api/pig/snapshot/apidocs/stylesheet.css            |   574 +
 css/blogs.css                                      |    84 +
 css/docs.css                                       |   112 +
 css/footer.css                                     |    40 +
 css/header.css                                     |   212 +
 css/index.css                                      |    12 +
 css/main.css                                       |    71 +-
 css/syntax.css                                     |    69 +
 css/toc.css                                        |    40 +
 docs/Adaptors.md                                   |    36 +
 docs/Architecture.md                               |   193 +
 docs/CPC/CPC.md                                    |    42 +
 docs/CPC/CPCSketchNotebook.html                    | 13582 ++++++++++++++++++
 docs/CommandLine/CommandLine-old.md                |   198 +
 docs/CommandLine/CommandLine.md                    |    23 +
 docs/Concurrency.md                                |    34 +
 docs/DistinctCountCapabilitiesMatrix.md            |    73 +
 docs/DruidIntegration.md                           |    24 +
 docs/Frequency/FrequencySketchesOverview.md        |    60 +
 docs/Frequency/FrequentDistinctTuplesSketch.md     |   204 +
 docs/Frequency/FrequentItemsErrorTable.md          |    78 +
 docs/Frequency/FrequentItemsHiveUDFs.md            |    67 +
 docs/Frequency/FrequentItemsJavaExample.md         |    98 +
 docs/Frequency/FrequentItemsOverview.md            |   284 +
 docs/Frequency/FrequentItemsPigUDFs.md             |   100 +
 docs/Frequency/FrequentItemsReferences.md          |    33 +
 docs/Frequency/FrequentItemsSketchNotebook.html    | 13593 ++++++++++++++++++
 docs/Frequency/data.txt                            |    19 +
 docs/HLL/HLL.md                                    |   164 +
 docs/HLL/HLLSketchNotebook.html                    | 13589 ++++++++++++++++++
 docs/HLL/HllHiveUDFs.md                            |    83 +
 docs/HLL/HllJavaExample.md                         |    98 +
 docs/HLL/HllMap.md                                 |   106 +
 docs/HLL/HllPigUDFs.md                             |   121 +
 docs/HLL/HllSketchVsDruidHyperLogLogCollector.md   |    92 +
 docs/HLL/Hll_vs_CS_Hllpp.md                        |   249 +
 docs/HLL/Hll_vs_G_Hllpp.md                         |    25 +
 docs/KeyFeatures.md                                |    95 +
 docs/LargeScale.md                                 |    79 +
 docs/MajorSketchFamilies.md                        |    57 +
 docs/Memory/MemoryPackage.md                       |   337 +
 docs/Memory/MemoryPerformance.md                   |   111 +
 docs/OrderSensitivity.md                           |    64 +
 docs/Quantiles/Definitions.md                      |   135 +
 docs/Quantiles/DruidApproxHistogramStudy.md        |    87 +
 docs/Quantiles/ExactQuantiles.md                   |    97 +
 docs/Quantiles/KLLSketch.md                        |    74 +
 docs/Quantiles/KLLSketchNotebook.html              | 13734 +++++++++++++++++++
 docs/Quantiles/KllSketchVsTDigest.md               |   122 +
 docs/Quantiles/MomentsSketchStudy.md               |    83 +
 docs/Quantiles/QuantilesAccuracy.md                |   107 +
 docs/Quantiles/QuantilesHiveUDFs.md                |    68 +
 docs/Quantiles/QuantilesJavaExample.md             |   117 +
 docs/Quantiles/QuantilesOverview.md                |   256 +
 docs/Quantiles/QuantilesPigUDFs.md                 |    92 +
 docs/Quantiles/QuantilesReferences.md              |    31 +
 docs/Quantiles/QuantilesStreamAStudy.md            |    90 +
 docs/Quantiles/data.txt                            |    20 +
 docs/Research.md                                   |   156 +
 docs/Sampling/ReservoirSampling.md                 |    71 +
 docs/Sampling/ReservoirSamplingJava.md             |   107 +
 docs/Sampling/ReservoirSamplingPerformance.md      |    84 +
 docs/Sampling/ReservoirSamplingPigUDFs.md          |    93 +
 docs/Sampling/VarOptPigUDFs.md                     |   106 +
 docs/Sampling/VarOptSampling.md                    |    81 +
 docs/Sampling/VarOptSamplingJava.md                |   105 +
 docs/Sampling/data.txt                             |     8 +
 docs/SketchElements.md                             |    65 +
 docs/SketchOrigins.md                              |    59 +
 docs/TheChallenge.md                               |   131 +
 docs/Theta/AccuracyOfDifferentKUnions.md           |    31 +
 docs/Theta/ConcurrentThetaSketch.md                |   207 +
 docs/Theta/InverseEstimate.md                      |    71 +
 docs/Theta/KMVbetterEst.md                         |    44 +
 docs/Theta/KMVempty.md                             |    42 +
 docs/Theta/KMVfirstEst.md                          |    43 +
 docs/Theta/KMVrejection.md                         |    34 +
 docs/Theta/KMVupdateVkth.md                        |    61 +
 docs/Theta/ThetaAccuracy.md                        |    56 +
 docs/Theta/ThetaAccuracyPlots.md                   |   142 +
 docs/Theta/ThetaConfidenceIntervals.md             |   109 +
 docs/Theta/ThetaErrorTable.md                      |    83 +
 docs/Theta/ThetaHiveUDFs.md                        |    87 +
 docs/Theta/ThetaJavaExample.md                     |   131 +
 docs/Theta/ThetaMergeSpeed.md                      |    34 +
 docs/Theta/ThetaMergingAlgorithm.md                |    61 +
 docs/Theta/ThetaPSampling.md                       |    89 +
 docs/Theta/ThetaPigUDFs.md                         |   114 +
 docs/Theta/ThetaReferences.md                      |    32 +
 docs/Theta/ThetaSize.md                            |   202 +
 docs/Theta/ThetaSketchFramework.md                 |    83 +
 docs/Theta/ThetaSketchNotebook.html                | 13651 ++++++++++++++++++
 docs/Theta/ThetaSketchSetOps.md                    |    86 +
 docs/Theta/ThetaSketchSetOpsAccuracy.md            |   146 +
 docs/Theta/ThetaSparkExample.md                    |   363 +
 docs/Theta/ThetaUpdateSpeed.md                     |    79 +
 docs/Theta/data.txt                                |   140 +
 docs/Theta/setops_data.txt                         |    12 +
 docs/Tuple/TupleEngagementExample.md               |   355 +
 docs/Tuple/TupleHiveUDFs.md                        |    51 +
 docs/Tuple/TupleJavaExample.md                     |   102 +
 docs/Tuple/TupleOverview.md                        |    44 +
 docs/Tuple/TuplePigUDFs.md                         |   182 +
 docs/Tuple/data.txt                                |   100 +
 docs/WhoUses.md                                    |    30 +
 docs/downloads.md                                  |    83 +
 docs/img/BigWin1SmallQuerySpace.png                |   Bin 0 -> 37689 bytes
 docs/img/BigWin2Mergeability.png                   |   Bin 0 -> 76017 bytes
 docs/img/BigWins3_4QuerySpeedArchitecture.png      |   Bin 0 -> 82330 bytes
 docs/img/BigWins5_6RealTimeLateData.png            |   Bin 0 -> 156038 bytes
 docs/img/PeopleCloud.png                           |   Bin 0 -> 637550 bytes
 docs/img/SketchElements.png                        |   Bin 0 -> 161007 bytes
 docs/img/SketchOrigins.png                         |   Bin 0 -> 104963 bytes
 docs/img/SwimLanes.png                             |   Bin 0 -> 93577 bytes
 docs/img/TwoDataSources.png                        |   Bin 0 -> 89985 bytes
 docs/img/fdt/FdtGroupErrorQuantiles.png            |   Bin 0 -> 126208 bytes
 docs/img/fi/EstimateError0.7.png                   |   Bin 0 -> 29135 bytes
 docs/img/fi/EstimateError1.1.png                   |   Bin 0 -> 34673 bytes
 docs/img/fi/FI_ConfusionMatrix.png                 |   Bin 0 -> 134911 bytes
 docs/img/fi/FreqItemsError3.png                    |   Bin 0 -> 72528 bytes
 docs/img/fi/GetFrequentItems0.7.png                |   Bin 0 -> 43011 bytes
 docs/img/fi/GetFrequentItems1.1.png                |   Bin 0 -> 39362 bytes
 docs/img/fi/LBError0.7.png                         |   Bin 0 -> 27861 bytes
 docs/img/fi/LBError1.1.png                         |   Bin 0 -> 32563 bytes
 docs/img/fi/RealCountDistribution0.7.png           |   Bin 0 -> 29491 bytes
 docs/img/fi/RealCountDistribution1.1.png           |   Bin 0 -> 26279 bytes
 docs/img/fi/UBError0.7.png                         |   Bin 0 -> 27447 bytes
 docs/img/fi/UBError1.1.png                         |   Bin 0 -> 30154 bytes
 docs/img/hll/DruidBuildMergeTimeComparison.png     |   Bin 0 -> 38927 bytes
 docs/img/hll/DruidHllBiasComparison.png            |   Bin 0 -> 47312 bytes
 docs/img/hll/DruidRSEComparison.png                |   Bin 0 -> 39306 bytes
 docs/img/hll/Hll8CompVsZetaAcc.png                 |   Bin 0 -> 245675 bytes
 docs/img/hll/Hll8HIPvsZetaAcc.png                  |   Bin 0 -> 254861 bytes
 docs/img/hll/HllHipLgK14LgT20_Quantiles.png        |   Bin 0 -> 152963 bytes
 docs/img/hll/HllHipLgK4LgT20LgU20_accuracy.png     |   Bin 0 -> 167286 bytes
 docs/img/hll/HllK21T16U24.png                      |   Bin 0 -> 187914 bytes
 docs/img/hll/HllK21T16U24_closeup.png              |   Bin 0 -> 209986 bytes
 docs/img/hll/HllK21T16U24_scale.png                |   Bin 0 -> 137467 bytes
 docs/img/hll/HllVsHllppAcc.png                     |   Bin 0 -> 308573 bytes
 docs/img/hll/HllVsHllppLogMerit.png                |   Bin 0 -> 122798 bytes
 docs/img/hll/HllVsHllppMerit.png                   |   Bin 0 -> 111251 bytes
 docs/img/hll/Hllpp21sp25T14U24_scale.png           |   Bin 0 -> 176117 bytes
 docs/img/hll/HllppK14T13SP26.png                   |   Bin 0 -> 146739 bytes
 docs/img/hll/HllppK21T14.png                       |   Bin 0 -> 195606 bytes
 docs/img/hll/HllppK21T14_closeup.png               |   Bin 0 -> 225068 bytes
 docs/img/hll/RSE_UniqueCountMap.png                |   Bin 0 -> 104913 bytes
 docs/img/hll/SerCompactSizes.png                   |   Bin 0 -> 129504 bytes
 docs/img/hll/SpeedComparisons.png                  |   Bin 0 -> 173360 bytes
 docs/img/hll/hll-sketch-vs-druid-error-95pct.png   |   Bin 0 -> 133986 bytes
 docs/img/hll/hll-sketch-vs-druid-error-99pct.png   |   Bin 0 -> 143935 bytes
 docs/img/hll/hll-sketch-vs-druid-size.png          |   Bin 0 -> 126275 bytes
 docs/img/hll/serde/Hll4SerDeK12T14.png             |   Bin 0 -> 113610 bytes
 docs/img/hll/serde/Hll8SerDeK12T16CompactF.png     |   Bin 0 -> 110499 bytes
 .../img/hll/serde/Hll8SerDeK12T16CompactFWrapT.png |   Bin 0 -> 98399 bytes
 docs/img/hll/serde/HllVsHllpSummary.png            |   Bin 0 -> 129173 bytes
 docs/img/hll/serde/HllpSerDeP12SP25T14.png         |   Bin 0 -> 105535 bytes
 docs/img/hll/upspeed/HllUpdateSpeed.png            |   Bin 0 -> 172360 bytes
 docs/img/hll/upspeed/HllVsHllpUpdateSpeed.png      |   Bin 0 -> 153626 bytes
 docs/img/memory/BB_LB.png                          |   Bin 0 -> 349354 bytes
 docs/img/memory/CoreHierarchy.png                  |   Bin 0 -> 73930 bytes
 docs/img/memory/MapAndHandleHierarchy.png          |   Bin 0 -> 75181 bytes
 docs/img/memory/MemoryDirect.png                   |   Bin 0 -> 631988 bytes
 docs/img/memory/MemoryHeap.png                     |   Bin 0 -> 621812 bytes
 docs/img/memory/Read_C_Java_Unsafe.png             |   Bin 0 -> 366579 bytes
 docs/img/memory/Speed_0.12.0.png                   |   Bin 0 -> 155464 bytes
 docs/img/memory/Write_C_Java_Unsafe.png            |   Bin 0 -> 471292 bytes
 docs/img/quantiles/DSQsketchK256_StreamA_CDF.png   |   Bin 0 -> 123108 bytes
 docs/img/quantiles/DSQsketchK256_StreamA_PMF.png   |   Bin 0 -> 323666 bytes
 docs/img/quantiles/DSQsketchK32_StreamA_CDF.png    |   Bin 0 -> 139473 bytes
 docs/img/quantiles/DSQsketchK32_StreamA_PMF.png    |   Bin 0 -> 330855 bytes
 docs/img/quantiles/DruidAH_StreamA_CDF.png         |   Bin 0 -> 90482 bytes
 docs/img/quantiles/DruidAH_StreamA_PMF1.png        |   Bin 0 -> 198640 bytes
 docs/img/quantiles/DruidAH_StreamA_PMF2.png        |   Bin 0 -> 141803 bytes
 docs/img/quantiles/MSketch_StreamA_CDF.png         |   Bin 0 -> 103735 bytes
 docs/img/quantiles/QuantilesCDF.png                |   Bin 0 -> 152399 bytes
 docs/img/quantiles/QuantilesCDFAbsRankError.png    |   Bin 0 -> 145712 bytes
 docs/img/quantiles/QuantilesInverseCDF.png         |   Bin 0 -> 141995 bytes
 docs/img/quantiles/StreamA_ExactCDF.png            |   Bin 0 -> 82697 bytes
 docs/img/quantiles/StreamA_ExactHistogram.png      |   Bin 0 -> 292877 bytes
 docs/img/quantiles/TimeSpentHistogram.png          |   Bin 0 -> 207354 bytes
 docs/img/quantiles/TimeSpentLognormal.png          |   Bin 0 -> 227108 bytes
 docs/img/quantiles/TimeSpentQuantiles.png          |   Bin 0 -> 102170 bytes
 .../kll200-vs-ds128-accuracy-per-byte-log.png      |   Bin 0 -> 78284 bytes
 docs/img/quantiles/kll200-vs-ds128-items.png       |   Bin 0 -> 72229 bytes
 docs/img/quantiles/kll200-vs-ds128-rank-error.png  |   Bin 0 -> 74550 bytes
 docs/img/quantiles/kll200-vs-ds128-size.png        |   Bin 0 -> 79397 bytes
 docs/img/quantiles/kll200-vs-ds128-update.png      |   Bin 0 -> 82559 bytes
 .../quantiles/kll200-vs-td100-deserialize-time.png |   Bin 0 -> 161810 bytes
 .../img/quantiles/kll200-vs-td100-error-blocky.png |   Bin 0 -> 180422 bytes
 .../quantiles/kll200-vs-td100-error-gaussian.png   |   Bin 0 -> 158633 bytes
 .../quantiles/kll200-vs-td100-error-same-value.png |   Bin 0 -> 108484 bytes
 .../quantiles/kll200-vs-td100-error-uniform.png    |   Bin 0 -> 159592 bytes
 .../quantiles/kll200-vs-td100-serialize-time.png   |   Bin 0 -> 160827 bytes
 docs/img/quantiles/kll200-vs-td100-size.png        |   Bin 0 -> 136804 bytes
 .../kll200-vs-td100-td200-update-time.png          |   Bin 0 -> 152454 bytes
 .../quantiles/kll200-vs-td200-deserialize-time.png |   Bin 0 -> 153830 bytes
 .../img/quantiles/kll200-vs-td200-error-blocky.png |   Bin 0 -> 178039 bytes
 .../quantiles/kll200-vs-td200-error-gaussian.png   |   Bin 0 -> 156178 bytes
 .../quantiles/kll200-vs-td200-error-uniform.png    |   Bin 0 -> 155946 bytes
 .../quantiles/kll200-vs-td200-serialize-time.png   |   Bin 0 -> 158816 bytes
 docs/img/quantiles/kll200-vs-td200-size.png        |   Bin 0 -> 127462 bytes
 .../qds-7-compact-accuracy-1k-99pct-20180224.png   |   Bin 0 -> 68079 bytes
 docs/img/sampling/compare_datafu.k2048.png         |   Bin 0 -> 110114 bytes
 docs/img/theta/400px-StandardNormalCurve.png       |   Bin 0 -> 10047 bytes
 docs/img/theta/64KSketchVsIEerror.png              |   Bin 0 -> 219112 bytes
 docs/img/theta/Alpha4KError.png                    |   Bin 0 -> 164434 bytes
 docs/img/theta/ConcertLine1.png                    |   Bin 0 -> 654832 bytes
 docs/img/theta/ConcertLine2.png                    |   Bin 0 -> 688483 bytes
 docs/img/theta/ErrorSurface2.png                   |   Bin 0 -> 72949 bytes
 docs/img/theta/Est1Formula.png                     |   Bin 0 -> 13172 bytes
 docs/img/theta/Est2Formula.png                     |   Bin 0 -> 20258 bytes
 docs/img/theta/FractTrialsLB_0p5.png               |   Bin 0 -> 227969 bytes
 docs/img/theta/GenericConcurrentSketch.png         |   Bin 0 -> 49952 bytes
 docs/img/theta/KMV1.png                            |   Bin 0 -> 135294 bytes
 docs/img/theta/KMV2.png                            |   Bin 0 -> 254629 bytes
 docs/img/theta/KMV3.png                            |   Bin 0 -> 261108 bytes
 docs/img/theta/KMV4.png                            |   Bin 0 -> 239252 bytes
 docs/img/theta/KMV5.png                            |   Bin 0 -> 291959 bytes
 docs/img/theta/MergeSpeed.png                      |   Bin 0 -> 127641 bytes
 docs/img/theta/Normal2.png                         |   Bin 0 -> 71904 bytes
 docs/img/theta/QS4KError.png                       |   Bin 0 -> 191931 bytes
 docs/img/theta/QS4KErrorRebuild.png                |   Bin 0 -> 180244 bytes
 docs/img/theta/RSE_4K_0p5.png                      |   Bin 0 -> 161920 bytes
 docs/img/theta/RSEvsK.png                          |   Bin 0 -> 74663 bytes
 docs/img/theta/ThetaSetOps.png                     |   Bin 0 -> 71166 bytes
 docs/img/theta/ThetaSketch1.png                    |   Bin 0 -> 279597 bytes
 docs/img/theta/UpdateSpeed.png                     |   Bin 0 -> 155501 bytes
 docs/img/theta/UpdateSpeedWithRF.png               |   Bin 0 -> 179838 bytes
 docs/img/theta/We_do_sketches.png                  |   Bin 0 -> 409311 bytes
 docs/img/theta/pSamplingPitchfork.png              |   Bin 0 -> 197393 bytes
 docs/img/tuple/ContinuousLogLog.png                |   Bin 0 -> 83337 bytes
 docs/img/tuple/DiscreteLogLog.png                  |   Bin 0 -> 75177 bytes
 docs/img/tuple/EngagementHistogram.png             |   Bin 0 -> 61274 bytes
 docs/img/tuple/TupleJoins.png                      |   Bin 0 -> 34565 bytes
 docs/img/tuple/TupleStartsWithTheta.png            |   Bin 0 -> 90611 bytes
 docs/img/tuple/TupleWithAttributes.png             |   Bin 0 -> 108800 bytes
 docs/img/whoUses/SpliceMachine.png                 |   Bin 0 -> 8381 bytes
 docs/img/whoUses/Yahoo!.png                        |   Bin 0 -> 52105 bytes
 docs/img/whoUses/druid_2x_black_big.png            |   Bin 0 -> 51022 bytes
 docs/pdf/DataSketches.pdf                          |   Bin 0 -> 326266 bytes
 docs/pdf/DataSketches_deck.pdf                     |   Bin 0 -> 9679821 bytes
 docs/pdf/Quantiles_KLL.pdf                         |   Bin 0 -> 538044 bytes
 docs/pdf/SketchEquations.pdf                       |   Bin 0 -> 360653 bytes
 docs/pdf/ThetaSketchFramework.pdf                  |   Bin 0 -> 1062391 bytes
 docs/pdf/icdt-talk.pdf                             |   Bin 0 -> 430309 bytes
 img/Yahoo_white_small.png                          |   Bin 0 -> 10829 bytes
 img/favicon.png                                    |   Bin 0 -> 1998 bytes
 img/man_logo_trans_wht_311_432.png                 |   Bin 0 -> 6587 bytes
 index.md                                           |   122 +
 overview.md                                        |    27 +
 pom.xml                                            |   630 +
 .../org/apache/datasketches/ByteArrayBuilder.java  |   210 +
 src/main/java/org/apache/datasketches/Files.java   |  1040 ++
 .../apache/datasketches/docgen/ErrorTables.java    |    86 +
 .../apache/datasketches/docgen/MarkDownTable.java  |   133 +
 .../apache/datasketches/docgen/TocGenerator.java   |   263 +
 src/main/resources/docgen/toc.json                 |   234 +
 src/main/resources/docgen/tocScript.html           |    64 +
 1180 files changed, 330280 insertions(+), 53 deletions(-)

diff --cc .gitignore
index 0817e33,98ca1d2..367c43c
--- a/.gitignore
+++ b/.gitignore
@@@ -1,16 -1,41 +1,60 @@@
++<<<<<<< HEAD
 +# Jekyll
 +_site
 +.sass-cache
 +.jekyll-metadata
 +about.md
 +Gemfile
 +Gemfile.lock
 +_posts/
 +
 +# Eclipse
 +.project
 +
 +# yml files
 +
 +/local/
 +.DS_Store
++=======
+ # Eclipse project files 
+ .classpath
+ .project
+ .settings/
+ .checkstyle
+ 
+ #OSX files
+ .DS_Store
+ 
+ # Compiler output, class files
+ bin/
+ 
+ #Test output
+ test-output/
+ .clover/
+ local/
+ reports/
+ .pmd
+ 
+ # Build artifacts
+ target/
+ out/
+ build/
+ jarsIn/
+ *.jar
+ build.xml
+ .idea
+ *.iml
+ *.properties
+ *.releaseBackup
+ 
+ # Jekyll
+ _site/
+ vendor/
+ 
+ # Other
+ *.old
+ .paper/
+ tmp/
+ /local/
+ 
++>>>>>>> branch 'master' of git@github.com:apache/incubator-datasketches-website.git
diff --cc _config.yml
index f91333e,7f94b16..141111d
--- a/_config.yml
+++ b/_config.yml
@@@ -1,43 -1,46 +1,47 @@@
- # Welcome to Jekyll!
+ # Licensed to the Apache Software Foundation (ASF) under one or more
+ # contributor license agreements.  See the NOTICE file distributed with
+ # this work for additional information regarding copyright ownership.
+ # The ASF licenses this file to You under the Apache License, Version 2.0
+ # (the "License"); you may not use this file except in compliance with
+ # the License.  You may obtain a copy of the License at
  #
- # This config file is meant for settings that affect your whole blog, values
- # which you are expected to set up once and rarely edit after that. If you find
- # yourself editing this file very often, consider using Jekyll's data files
- # feature for the data you need to update frequently.
+ #     http://www.apache.org/licenses/LICENSE-2.0
  #
- # For technical reasons, this file is *NOT* reloaded automatically when you use
- # 'bundle exec jekyll serve'. If you change this file, please restart the server process.
+ # Unless required by applicable law or agreed to in writing, software
+ # distributed under the License is distributed on an "AS IS" BASIS,
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ # See the License for the specific language governing permissions and
+ # limitations under the License.
  
- # Site settings
- # These are used to personalize your new site. If you look in the HTML files,
- # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
- # You can create any custom variable you would like, and they will be accessible
- # in the templates via {{ site.myvariable }}.
- title: Your awesome title
- email: your-email@example.com
- description: >- # this means to ignore newlines until "baseurl:"
-   Write an awesome description for your new site here. You can edit this
-   line in _config.yml. It will appear in your document head meta (for
-   Google search results) and in your feed.xml site description.
- baseurl: "" # the subpath of your site, e.g. /blog
- url: "" # the base hostname & protocol for your site, e.g. http://example.com
- twitter_username: jekyllrb
- github_username:  jekyll
+ # example: <img class="doc-img-full" src="{{site.docs_img_dir}}PeopleCloud.png" alt="PeopleCloud" />
  
- # Build settings
- markdown: kramdown
- theme: minima
- plugins:
-   - jekyll-feed
+ exclude: 
+   - DISCLAIMER-WIP
+   - LICENSE
+   - NOTICE
+   - README.md
+   - tmp/
+   - target/
+   - test-output/
+   - local/
+   - Gemfile
+   - Gemfile.lock
+   - pom.xml
++  - vendor/
++  - src/
+ 
+ docs_dir: '/docs'
+ docs_img_dir: '/docs/img'
+ docs_pdf_dir: 'https://github.com/DataSketches/DataSketches.github.io/blob/master/docs/pdf'
+ 
+ core_api_snapshot: 'https://datasketches.github.io/api/core/snapshot/apidocs/index.html'
+ pig_api_snapshot: 'https://datasketches.github.io/api/pig/snapshot/apidocs/index.html'
+ hive_api_snapshot: 'https://datasketches.github.io/api/hive/snapshot/apidocs/index.html'
+ misc_api_snapshot: 'https://datasketches.github.io/api/misc/snapshot/apidocs/index.html'
+ 
+ core_readme: 'https://github.com/DataSketches/sketches-core/blob/master/README.md'
+ pig_readme: 'https://github.com/DataSketches/sketches-pig/blob/master/README.md'
+ hive_readme: 'https://github.com/DataSketches/sketches-hive/blob/master/README.md'
+ 
+ druid_datasketches: 'https://druid.apache.org/docs/latest/development/extensions-core/datasketches-extension.html'
  
- # Exclude from processing.
- # The following items will not be processed, by default. Create a custom list
- # to override the default setting.
- # exclude:
- #   - Gemfile
- #   - Gemfile.lock
- #   - node_modules
- #   - vendor/bundle/
- #   - vendor/cache/
- #   - vendor/gems/
- #   - vendor/ruby/
 -


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[incubator-datasketches-website] 10/12: update _config.yml

Posted by le...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-website.git

commit 6fa201eb8f3b0fc81ac72da6ea131f50875178d0
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Thu Jan 23 17:57:27 2020 -0800

    update _config.yml
---
 _config.yml | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/_config.yml b/_config.yml
index 141111d..c9fe96a 100644
--- a/_config.yml
+++ b/_config.yml
@@ -28,20 +28,21 @@ exclude:
   - Gemfile.lock
   - pom.xml
   - vendor/
+  - node_modules
   - src/
 
 docs_dir: '/docs'
 docs_img_dir: '/docs/img'
-docs_pdf_dir: 'https://github.com/DataSketches/DataSketches.github.io/blob/master/docs/pdf'
+docs_pdf_dir: 'https://github.com/apache/incubator-datasketches-website/tree/master/docs/pdf'
 
-core_api_snapshot: 'https://datasketches.github.io/api/core/snapshot/apidocs/index.html'
-pig_api_snapshot: 'https://datasketches.github.io/api/pig/snapshot/apidocs/index.html'
-hive_api_snapshot: 'https://datasketches.github.io/api/hive/snapshot/apidocs/index.html'
-misc_api_snapshot: 'https://datasketches.github.io/api/misc/snapshot/apidocs/index.html'
+java_api_snapshot: 'https://datasketches.apache.org/api/java/snapshot/apidocs/index.html'
+pig_api_snapshot: 'https://datasketches.apache.org/api/pig/snapshot/apidocs/index.html'
+hive_api_snapshot: 'https://datasketches.apache.org/api/hive/snapshot/apidocs/index.html'
+memory_api_snapshot: 'https://datasketches.apache.org/api/memory/snapshot/apidocs/index.html'
 
-core_readme: 'https://github.com/DataSketches/sketches-core/blob/master/README.md'
-pig_readme: 'https://github.com/DataSketches/sketches-pig/blob/master/README.md'
-hive_readme: 'https://github.com/DataSketches/sketches-hive/blob/master/README.md'
+java_readme: 'https://github.com/apache/incubator-datasketches-java/blob/master/README.md'
+pig_readme: 'https://github.com/apache/incubator-datasketches-pig/blob/master/README.md'
+hive_readme: 'https://github.com/apache/incubator-datasketches-hive/blob/master/README.md'
 
-druid_datasketches: 'https://druid.apache.org/docs/latest/development/extensions-core/datasketches-extension.html'
+druid_datasketches: 'https://github.com/apache/druid/tree/master/extensions-core/datasketches'
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[incubator-datasketches-website] 02/12: Remove temp content from SVN attempt.

Posted by le...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-website.git

commit 2d74670efdf280de7959418947396db42f548606
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Tue Jul 2 12:01:05 2019 -0700

    Remove temp content from SVN attempt.
---
 README.md                             |  1 -
 trunk/content/index.mdtext            | 24 ----------------
 trunk/content/sitemap.html            |  2 --
 trunk/lib/path.pm                     | 39 -------------------------
 trunk/lib/view.pm                     | 23 ---------------
 trunk/templates/single_narrative.html |  1 -
 trunk/templates/skeleton.html         | 54 -----------------------------------
 7 files changed, 144 deletions(-)

diff --git a/README.md b/README.md
deleted file mode 100644
index 652ef06..0000000
--- a/README.md
+++ /dev/null
@@ -1 +0,0 @@
-# incubator-datasketches-website
diff --git a/trunk/content/index.mdtext b/trunk/content/index.mdtext
deleted file mode 100644
index 6efd559..0000000
--- a/trunk/content/index.mdtext
+++ /dev/null
@@ -1,24 +0,0 @@
-Title:     Home Page
-Notice:    Licensed to the Apache Software Foundation (ASF) under one
-           or more contributor license agreements.  See the NOTICE file
-           distributed with this work for additional information
-           regarding copyright ownership.  The ASF licenses this file
-           to you under the Apache License, Version 2.0 (the
-           "License"); you may not use this file except in compliance
-           with the License.  You may obtain a copy of the License at
-           .
-             http://www.apache.org/licenses/LICENSE-2.0
-           .
-           Unless required by applicable law or agreed to in writing,
-           software distributed under the License is distributed on an
-           "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-           KIND, either express or implied.  See the License for the
-           specific language governing permissions and limitations
-           under the License.
-
-# Welcome
-
-Welcome to the Apache CMS.  Please see the following resources for further help:
-
- - <http://www.apache.org/dev/cmsref.html>
- - <http://wiki.apache.org/general/ApacheCms2010>
diff --git a/trunk/content/sitemap.html b/trunk/content/sitemap.html
deleted file mode 100644
index e5e0daa..0000000
--- a/trunk/content/sitemap.html
+++ /dev/null
@@ -1,2 +0,0 @@
-{% include "single_narrative.html" %}
-
diff --git a/trunk/lib/path.pm b/trunk/lib/path.pm
deleted file mode 100644
index 846db97..0000000
--- a/trunk/lib/path.pm
+++ /dev/null
@@ -1,39 +0,0 @@
-package path;
-
-# taken from django's url.py
-
-our @patterns = (
-	[qr!\.md(?:text)?$!, single_narrative => { template => "single_narrative.html" }],
-
-	[qr!/sitemap\.html$!, sitemap => { headers => { title => "Sitemap" }} ],
-
-) ;
-
-# for specifying interdependencies between files
-
-our %dependencies = (
-    "/sitemap.html" => [ grep s!^content!!, glob("content/*.mdtext"), glob "content/*.md" ],
-);
-
-1;
-
-=head1 LICENSE
-
-           Licensed to the Apache Software Foundation (ASF) under one
-           or more contributor license agreements.  See the NOTICE file
-           distributed with this work for additional information
-           regarding copyright ownership.  The ASF licenses this file
-           to you under the Apache License, Version 2.0 (the
-           "License"); you may not use this file except in compliance
-           with the License.  You may obtain a copy of the License at
-
-             http://www.apache.org/licenses/LICENSE-2.0
-
-           Unless required by applicable law or agreed to in writing,
-           software distributed under the License is distributed on an
-           "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-           KIND, either express or implied.  See the License for the
-           specific language governing permissions and limitations
-           under the License.
-
-
diff --git a/trunk/lib/view.pm b/trunk/lib/view.pm
deleted file mode 100644
index e44e6d4..0000000
--- a/trunk/lib/view.pm
+++ /dev/null
@@ -1,23 +0,0 @@
-package view;
-use base 'ASF::View'; # see https://svn.apache.org/repos/infra/websites/cms/build/lib/ASF/View.pm
-
-1;
-
-=head1 LICENSE
-
-           Licensed to the Apache Software Foundation (ASF) under one
-           or more contributor license agreements.  See the NOTICE file
-           distributed with this work for additional information
-           regarding copyright ownership.  The ASF licenses this file
-           to you under the Apache License, Version 2.0 (the
-           "License"); you may not use this file except in compliance
-           with the License.  You may obtain a copy of the License at
-
-             http://www.apache.org/licenses/LICENSE-2.0
-
-           Unless required by applicable law or agreed to in writing,
-           software distributed under the License is distributed on an
-           "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-           KIND, either express or implied.  See the License for the
-           specific language governing permissions and limitations
-           under the License.
diff --git a/trunk/templates/single_narrative.html b/trunk/templates/single_narrative.html
deleted file mode 100644
index 19d6b98..0000000
--- a/trunk/templates/single_narrative.html
+++ /dev/null
@@ -1 +0,0 @@
-{% extends "skeleton.html" %}
diff --git a/trunk/templates/skeleton.html b/trunk/templates/skeleton.html
deleted file mode 100644
index 26b0621..0000000
--- a/trunk/templates/skeleton.html
+++ /dev/null
@@ -1,54 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html lang="en">
-  <head>
-    <title>{% block title %}{{ headers.title }}{% endblock %}</title>
-
-    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
-    <meta property="og:image" content="http://www.apache.org/images/asf_logo.gif" />
-
-    <link rel="stylesheet" type="text/css" media="screen" href="http://www.apache.org/css/style.css">
-    <link rel="stylesheet" type="text/css" media="screen" href="http://www.apache.org/css/code.css">
-
-    {% if headers.atom %}
-      <link rel="alternate" href="{{ headers.atom.url }}"
-            type="application/atom+xml" title="{{ headers.atom.title }}" />
-    {% endif %}
-
-    {% if headers.base %}<base href="{{ headers.base }}" />{% endif %}
-    {% if headers.notice %}<!-- {{ headers.notice }} -->{% endif %}
-  </head>
-
-  <body>
-    <div id="page" class="container_16">
-      <div id="header" class="grid_8">
-        <img src="http://www.apache.org/images/feather-small.gif" alt="The Apache Software Foundation">
-        <h1>The Apache Software Foundation</h1>
-        <h2>{% block tagline %}{{ headers.title }}{% endblock %}</h2>
-      </div>
-      <div id="nav" class="grid_8">
-        <ul>
-          <!-- <li><a href="/" title="Welcome!">Home</a></li> -->
-          <li><a href="http://www.apache.org/foundation/" title="The Foundation">Foundation</a></li>
-          <li><a href="http://projects.apache.org" title="The Projects">Projects</a></li>
-          <li><a href="http://people.apache.org" title="The People">People</a></li>
-          <li><a href="http://www.apache.org/foundation/getinvolved.html" title="Get Involved">Get Involved</a></li>
-          <li><a href="http://www.apache.org/dyn/closer.cgi" title="Download">Download</a></li>
-          <li><a href="http://www.apache.org/foundation/sponsorship.html" title="Support Apache">Support Apache</a></li>
-        </ul>
-        <p>{{ breadcrumbs|safe }}</p>
-        <form name="search" id="search" action="http://www.google.com/search" method="get">
-          <input value="*.apache.org" name="sitesearch" type="hidden"/>
-          <input type="text" name="q" id="query">
-          <input type="submit" id="submit" value="Search">
-        </form>
-      </div>
-      <div class="clear"></div>
-      {% block content %}<div id="content" class="grid_16"><div class="section-content">{{ content|markdown }}</div></div>{% endblock %}
-      <div class="clear"></div>
-    </div>
-
-    <div id="copyright" class="container_16">
-      <p>Copyright &#169; 2011 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.<br/>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
-    </div>
-  </body>
-</html>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[incubator-datasketches-website] 06/12: remove 404 and index html from master

Posted by le...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-website.git

commit 36f08c497d3cf8846aed6e0c924f9019c07d88be
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Sun Oct 20 14:57:32 2019 -0700

    remove 404 and index html from master
---
 404.html   | 24 ------------------
 index.html | 83 --------------------------------------------------------------
 2 files changed, 107 deletions(-)

diff --git a/404.html b/404.html
deleted file mode 100644
index c472b4e..0000000
--- a/404.html
+++ /dev/null
@@ -1,24 +0,0 @@
----
-layout: default
----
-
-<style type="text/css" media="screen">
-  .container {
-    margin: 10px auto;
-    max-width: 600px;
-    text-align: center;
-  }
-  h1 {
-    margin: 30px 0;
-    font-size: 4em;
-    line-height: 1;
-    letter-spacing: -1px;
-  }
-</style>
-
-<div class="container">
-  <h1>404</h1>
-
-  <p><strong>Page not found :(</strong></p>
-  <p>The requested page could not be found.</p>
-</div>
diff --git a/index.html b/index.html
deleted file mode 100644
index b24d37b..0000000
--- a/index.html
+++ /dev/null
@@ -1,83 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
-<title>Apache DataSketches (incubating)</title>
-<link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700,300italic|Open+Sans:300italic,400italic,600italic,400,300,600,700' rel='stylesheet' type='text/css'>
-<link rel="stylesheet" href="/css/main.css">
-
-</head>
-<body>
-
-<div class="ds-title">
- <p><b><h1>Apache DataSketches (Incubating)</h1></b></p>
- <p><b><h2>A software library of stochastic streaming algorithms</h2></b></p>
-</div>
-<div class="ds-text">
-    <p>Apache DataSketches is an open source, high-performance library of stochastic streaming algorithms commonly called "sketches" in the data sciences. Sketches are small, stateful programs that process massive data as a stream and can provide approximate answers, with mathematical guarantees, to computationally difficult queries orders-of-magnitude faster than traditional, exact methods.</p>
-    <p>After 8 years of development and 5 years as in Open Source, we have begun the important migration from a stand-alone GitHub site to being a member of the Apache Software Foundation community. While we undergo this migration, we beg your patience.</p>
-</div>
-
-<div>
-<ul>
-<li>Please continue to use <a href="http://datasketches.github.io">DataSketches.GitHub.io</a> for all overview documentation and access to online-javadocs for the time being.</li>
-
-<li>Please continue to use our <a href="https://groups.google.com/forum/#!forum/sketches-user">Google-groups Forum</a> or the GitHub-issues on the specific repositories to bring issues or questions to our attention.</li>
-
-<li>Please continue to use the <a href="https://search.maven.org/classic/#search%7Cga%7C1%7Cg%3A%20com.yahoo.datasketches">Maven Central GroupID = "com.yahoo.datasketches"</a> to locate current and past release Jars until we have formal releases under Apache.</li>
-
-<li>The <a href="https://datasketches.apache.org">datasketches.apache.org</a> website will be a placeholder until we have migrated our current community website from 
-  <a href="http://datasketches.github.io">DataSketches.GitHub.io</a>. For detailed project information, please continue to visit 
-  <a href="http://datasketches.github.io">DataSketches.GitHub.io</a>.</li>
-
-<li>As the repositories under GitHub.io/DataSketches migrate they will disapear from the the GitHub.com/DataSketches organization page. Please refer to this list be directed to the proper locations.</li>
-
-<li>Web Sites
-  <ul>
-  <li><a href="http://datasketches.github.io">Original Website</a></li>
-  <li><a href="http://datasketches.apache.org">New Website (not yet active)</a></li>
-  <li><a href="https://github.com/DataSketches/DataSketches.github.io">Original Website Source</a></li>
-  <li><a href="https://github.com/apache/incubator-datasketches">New Website Source</a></li>
-  </ul>
-</li>
-
-<li>Java
-  <ul>
-  <li><a href="https://github.com/DataSketches/memory">memory</a></li>
-  <li><a href="https://github.com/DataSketches/sketches-core">sketches-core</a></li>
-  <li><a href="https://github.com/DataSketches/sketches-hive">sketches-hive</a></li>
-  <li><a href="https://github.com/DataSketches/sketches-pig">sketches-pig</a></li>
-  <li><a href="https://github.com/DataSketches/sketches-vector">sketches-vector</a></li>
-  <li><a href="https://github.com/DataSketches/sketches-misc">sketches-misc</a></li>
-  <li><a href="https://github.com/DataSketches/sketches-android">sketches-android</a></li>
-  <li><a href="https://github.com/DataSketches/characterization">characterization</a></li>
-  <li><a href="https://github.com/DataSketches/experimental">experimental</a></li>
-  </ul>
-</li>
-
-<li>C++
-  <ul>
-  <li><a href="https://github.com/DataSketches/sketches-core-cpp">sketches-core-cpp</a></li>
-  <li><a href="https://github.com/DataSketches/sketches-postgres">sketches-postgres</a></li>
-  <li><a href="https://github.com/DataSketches/characterization-cpp">characterization-cpp</a></li>
-  <li><a href="https://github.com/DataSketches/experimental-cpp">experimental-cpp</a></li>
-  </ul>
-</li>
-  
-<li>Command Line
-  <ul>
-  <li><a href="https://github.com/DataSketches/homebrew-sketches-cmd">homebrew-sketches-cmd</a></li>
-  <li><a href="https://github.com/DataSketches/sketches-cmd">sketches-cmd</a></li>
-  <li><a href="https://github.com/DataSketches/homebrew-sketches">homebrew-sketches</a></li>
-  </ul>
-</li>
-</ul>
-</div>
- 
-<hr>
-
-<div  style="margin-bottom:40px;">
-  <p><i>Disclaimer:</i> Apache DataSketches is an effort undergoing incubation at <a href="https://www.apache.org/">The Apache Software Foundation (ASF)</a>, sponsored by the <a href="https://incubator.apache.org/">Apache Incubator</a>. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status  [...]
-</div>
-
-</body>
-</html>
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[incubator-datasketches-website] 05/12: add .DS_Store to gitignore

Posted by le...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-website.git

commit 69de122fd65392256942af8c8bd2502983785c40
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Sun Oct 20 14:55:42 2019 -0700

    add .DS_Store to gitignore
---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index 9afbe71..0817e33 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,3 +13,4 @@ _posts/
 # yml files
 
 /local/
+.DS_Store


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[incubator-datasketches-website] 09/12: Update gitignore

Posted by le...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-website.git

commit 3e1498c14e1b05ca8d72e3a6031ef99a3a99738c
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Thu Jan 23 12:39:52 2020 -0800

    Update gitignore
---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index cc1a9cf..aa7448a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -38,3 +38,4 @@ vendor/
 .paper/
 tmp/
 /local/
+.svn/


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org