Skip to content

Commit 59098ed

Browse files
committed
Initial commit. v1.0.0
1 parent ce04b7a commit 59098ed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+10591
-2
lines changed

.gitignore

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# use glob syntax.
2+
syntax: glob
3+
*.ser
4+
*.class
5+
*~
6+
*.bak
7+
*.off
8+
*.old
9+
10+
# eclipse conf file
11+
.settings
12+
.classpath
13+
.project
14+
.manager
15+
.idea
16+
17+
# building
18+
target
19+
build
20+
null
21+
tmp
22+
temp
23+
dist
24+
test-output
25+
build.log
26+
pom.xml.releaseBackup
27+
release.properties
28+
TestJavaClass*.java
29+
interpolated-*.xml
30+
31+
# other scm
32+
.svn
33+
.CVS
34+
.hg*
35+
36+
# switch to regexp syntax.
37+
# syntax: regexp
38+
# ^\.pc/
39+
40+
#SHITTY output not in target directory
41+
build.log
42+
43+
# IDEA conf files
44+
*.iml
45+
*.ipr
46+
*.iws
47+
48+
spark-warehouse

LICENSE

100644100755
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,3 +199,63 @@
199199
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200200
See the License for the specific language governing permissions and
201201
limitations under the License.
202+
203+
204+
------------------------------------------------------------------------------------
205+
This product bundles various third-party components under other open source licenses.
206+
This section summarizes those components and their licenses. See licenses/
207+
for text of these licenses.
208+
209+
210+
Apache Software Foundation License 2.0
211+
--------------------------------------
212+
213+
common/network-common/src/main/java/org/apache/spark/network/util/LimitedInputStream.java
214+
core/src/main/java/org/apache/spark/util/collection/TimSort.java
215+
core/src/main/resources/org/apache/spark/ui/static/bootstrap*
216+
core/src/main/resources/org/apache/spark/ui/static/jsonFormatter*
217+
core/src/main/resources/org/apache/spark/ui/static/vis*
218+
docs/js/vendor/bootstrap.js
219+
220+
221+
Python Software Foundation License
222+
----------------------------------
223+
224+
pyspark/heapq3.py
225+
226+
227+
BSD 3-Clause
228+
------------
229+
230+
python/lib/py4j-*-src.zip
231+
python/pyspark/cloudpickle.py
232+
python/pyspark/join.py
233+
core/src/main/resources/org/apache/spark/ui/static/d3.min.js
234+
235+
The CSS style for the navigation sidebar of the documentation was originally
236+
submitted by Óscar Nájera for the scikit-learn project. The scikit-learn project
237+
is distributed under the 3-Clause BSD license.
238+
239+
240+
MIT License
241+
-----------
242+
243+
core/src/main/resources/org/apache/spark/ui/static/dagre-d3.min.js
244+
core/src/main/resources/org/apache/spark/ui/static/*dataTables*
245+
core/src/main/resources/org/apache/spark/ui/static/graphlib-dot.min.js
246+
ore/src/main/resources/org/apache/spark/ui/static/jquery*
247+
core/src/main/resources/org/apache/spark/ui/static/sorttable.js
248+
docs/js/vendor/anchor.min.js
249+
docs/js/vendor/jquery*
250+
docs/js/vendor/modernizer*
251+
252+
253+
Creative Commons CC0 1.0 Universal Public Domain Dedication
254+
-----------------------------------------------------------
255+
(see LICENSE-CC0.txt)
256+
257+
data/mllib/images/kittens/29.5.a_b_EGDP022204.jpg
258+
data/mllib/images/kittens/54893.jpg
259+
data/mllib/images/kittens/DP153539.jpg
260+
data/mllib/images/kittens/DP802813.jpg
261+
data/mllib/images/multi-channel/chr30.4.184.jpg

0 commit comments

Comments
 (0)