Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
e95584c
refactor codes against hadoop-2.2.0
May 18, 2014
5407cd5
Merge pull request #1 from manuzhang/refactor_code_against_hadoop-2.2.0
manuzhang May 18, 2014
fc294c5
add contacts
clockfly May 18, 2014
399307b
nativetask against hadoop-1.2.1
manuzhang May 18, 2014
0589f65
Update README.md
clockfly May 18, 2014
85e9abb
update README.md
manuzhang May 18, 2014
31f4702
update README.md
manuzhang May 18, 2014
f92f9bb
update README.md
manuzhang May 18, 2014
d14264f
Merge pull request #2 from manuzhang/hadoop-1
manuzhang May 18, 2014
a9c3bfc
Update README.md
clockfly May 18, 2014
5206a5c
Update README.md
clockfly May 18, 2014
946a085
Add documents
clockfly May 18, 2014
b54723d
Merge branch 'master' of https://github.com/intel-hadoop/nativetask
clockfly May 18, 2014
74cba36
Update README.md
clockfly May 18, 2014
7579c2b
Update README.md
clockfly May 18, 2014
279a5d8
Update README.md
clockfly May 18, 2014
dd7b820
Update README.md
clockfly May 18, 2014
12a105f
Update README.md
clockfly May 18, 2014
4ba818c
Update README.md
clockfly May 18, 2014
b14061d
sdk: support customized native comparator
clockfly May 18, 2014
0937d82
Merge branch 'master' of https://github.com/intel-hadoop/nativetask
clockfly May 18, 2014
e4debe5
Update README.md
clockfly May 19, 2014
82b34dc
add .gitignore and .gitattributes
manuzhang May 21, 2014
4b7f2f1
Merge pull request #3 from manuzhang/add_gitignore_attributes
manuzhang May 21, 2014
3b907c8
Merge branch 'hadoop-1' of https://github.com/intel-hadoop/nativetask
manuzhang May 22, 2014
63e818b
Revert "Merge branch 'hadoop-1' of https://github.com/intel-hadoop/na…
manuzhang May 22, 2014
59658af
update .gitignore
manuzhang May 22, 2014
c745e31
Merge pull request #5 from manuzhang/update_gitignore
manuzhang May 22, 2014
8fc488e
Update README.md
clockfly May 28, 2014
a069e82
Update README.md
clockfly May 28, 2014
eddb851
remove intel artifacts
manuzhang Jun 25, 2014
2c01044
Merge pull request #9 from manuzhang/remove_intel_artifacts
manuzhang Jun 25, 2014
23133fd
Update README.md
clockfly Sep 24, 2014
3d7217a
add a note to README.md
ivajloip Nov 4, 2014
6890de0
Merge pull request #26 from ivajloip/note-for-autotools
clockfly Nov 4, 2014
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
20 changes: 20 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Auto detect text files and perform LF normalization
* text=auto

*.cs text diff=csharp
*.java text diff=java
*.html text diff=html
*.py text diff=python
*.pl text diff=perl
*.pm text diff=perl
*.css text
*.js text
*.sql text

*.sh text eol=lf

*.bat text eol=crlf
*.cmd text eol=crlf
*.vcxproj text merge=union eol=crlf
*.csproj text merge=union eol=crlf
*.sln text merge=union eol=crlf
130 changes: 121 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,123 @@
*.iml
# Java
*.class
*.jar
*.war
*.ear
hs_err_pid*

# C/C++
*.slo
*.lo
*.o
*.ko
*.obj
*.elf
*.so
*.so.*
*.dylib
*.dll
*.lai
*.la
*.a
*.lib
*.exe
*.app
*.i*86
*.x86_64
*.hex

# CMake
CMakeCache.txt
CMakeFiles
Makefile
cmake_install.cmake
install_manifest.txt

# Eclipse
*.pydevproject
.metadata
.gradle
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.settings/
.loadpath
.externalToolBuilders/
*.launch
.cproject

# IDEA
.idea/
*.ipr
*.iws
.idea
.svn
.classpath
.project
.cproject
.settings
target
autom4te.cache
*.iml
out/
.idea_modules/
atlassian-ide-plugin.xml
com_crashlytics_export_strings.xml

# Emacs
*~
\#*\#
/.emacs.desktop
/.emacs.desktop.lock
*.elc
auto-save-list
tramp
.\#*
.org-id-locations
*_archive
*_flymake.*
/eshell/history
/eshell/lastdir
/elpa/

# Vim
[._]*.s[a-w][a-z]
[._]s[a-w][a-z]
*.un~
Session.vim
.netrwhist

# Linux
*~
.directory

# OSX
.DS_Store
.AppleDouble
.LSOverride
Icon
._*
.Spotlight-V100
.Trashes
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msm
*.msp

# Maven
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties

# Ant
build/
Loading