Harshavardhana
c9af01d807
Enhance listing further, this time handle cases related to common prefixes
9 years ago
Harshavardhana
762b798767
Migrate this project to minio micro services code
9 years ago
Harshavardhana
d54488f144
Move all server and controller packages into top-level
9 years ago
Anand Babu (AB) Periasamy
d1f1b7ac31
new version format and some cleanup
9 years ago
Harshavardhana
bd33ccc3a2
Run tests only on travis, local builds just do govet, golint and gofmt
9 years ago
Harshavardhana
7093a05ab1
Version is a package now, will be re-used across codebase.
9 years ago
Harshavardhana
1887114444
Fix all the golint complaints about newly added changes
...
Do not use func(this *server), such generic names should not be used
for writing struct methods.
9 years ago
Harshavardhana
1e2c010174
Avoid shadowing variables and enable checks to avoid them during build
9 years ago
Harshavardhana
d0f945f8e7
Simplify erasure package for OSX
9 years ago
Harshavardhana
e6a072e0ad
Add package add and remove commands to Makefile
9 years ago
Harshavardhana
988d39a5b6
Migrate to golang1.5 release with GO15VENDOREXPERIMENT=1 enabled
9 years ago
Harshavardhana
74587886d2
Refactoring minio server command and flags
9 years ago
Harshavardhana
61175ef091
Migrate to govendor to avoid limitations of godep
...
- over the course of a project history every maintainer needs to update
its dependency packages, the problem essentially with godep is manipulating
GOPATH - this manipulation leads to static objects created at different locations
which end up conflicting with the overall functionality of golang.
This also leads to broken builds. There is no easier way out of this other than
asking developers to do 'godep restore' all the time. Which perhaps as a practice
doesn't sound like a clean solution. On the other hand 'godep restore' has its own
set of problems.
- govendor is a right tool but a stop gap tool until we wait for golangs official
1.5 version which fixes this vendoring issue once and for all.
- govendor provides consistency in terms of how import paths should be handled unlike
manipulation GOPATH.
This has advantages
- no more compiled objects being referenced in GOPATH and build time GOPATH
manging which leads to conflicts.
- proper import paths referencing the exact package a project is dependent on.
govendor is simple and provides the minimal necessary tooling to achieve this.
For now this is the right solution.
9 years ago
Harshavardhana
5d3379ed7e
deprecate 'make.go', go back to Makefile - make.go is not genversion.go
9 years ago
Harshavardhana
aabfd541e1
Merge cmd/donut into minio cmd, deprecate controller RPC request
9 years ago
Harshavardhana
e4543489fe
Use updatedeps script to update godeps
9 years ago
Harshavardhana
4498662c16
Remove scsi non portable code, instead "donut make" implements functionality to instantiate a donut
9 years ago
Harshavardhana
1e80925ca7
Remove dependency on minio/cli for make.go fixes #738
9 years ago
Harshavardhana
55e4d0c6a5
mkdonut now creates a donut processing cli args
9 years ago
Harshavardhana
7615a6bfe5
HEAD shouldn't have any body, handle it in writeErrorResponse()
9 years ago
Harshavardhana
5cfb05465e
Add cache, donut tests separately - fix behavior differences
...
Remove priority queue, implement it using a simpler channels
10 years ago
Harshavardhana
8bde4d4e34
Migrating minio server build to do 'go run make.go' style like mc
10 years ago
Harshavardhana
5101273ec7
Do not attempt to restore while saving new deps
10 years ago
Harshavardhana
5d484e2770
Implement custom date command for cross platform portability
10 years ago
Harshavardhana
82a0eac659
Add filesystem factory functions and add related cli options
10 years ago
Harshavardhana
554a244b47
Add donut OSX support
10 years ago
Harshavardhana
f00bfd38da
Bump gocyclo back to 16
10 years ago
Harshavardhana
de56909d55
More scripts and code from Minio-io to minio
10 years ago
Harshavardhana
8d06504068
Change all minio-io path to minio
10 years ago
Harshavardhana
bbace9ac2e
Make buildDate universal
10 years ago
Harshavardhana
a60d279817
bump up gocyclo to 18
10 years ago
Anand Babu (AB) Periasamy
b8eb34aded
cleaning make:clean
10 years ago
Harshavardhana
096a994c7b
Add build date using ldflags
10 years ago
Anand Babu (AB) Periasamy
b010fd0ff3
Version is now based on MD5SUM of its binary
10 years ago
Harshavardhana
c5d8ca245d
Memory now handles submitting large files - fixes #482
10 years ago
Harshavardhana
97d1f03a87
Fix build for travis
10 years ago
Harshavardhana
c63bdf79fa
Remove docs, minimal docs going to be at minio.io instead and rest amazon docs
10 years ago
Harshavardhana
7fd1cc073c
Add everything back into one project hood, still missing iodine
10 years ago
Harshavardhana
637d2d687a
Add full rebuild for minio command to avoid godep stale issues
10 years ago
Harshavardhana
9c0b17c239
Build everything by default
10 years ago
Frederick F. Kautz IV
a689769245
Updating godep to minio-io/godep
10 years ago
Harshavardhana
92f408af5d
Add erasure to godep
10 years ago
Harshavardhana
4d57ca7c44
Update makefile
10 years ago
Anand Babu (AB) Periasamy
e14ba846b5
make clean build-constants.go
10 years ago
Anand Babu (AB) Periasamy
3c4aa85c69
git commit hash generator
10 years ago
Harshavardhana
58082cd8dc
Add gocyclo into source build, choosing cyclomatic complexity tolerance of 15 and below
10 years ago
Harshavardhana
b952855779
Add strict checks with vet, golint and gofmt
10 years ago
Harshavardhana
d992bccd9a
Move pkg/storage/erasure to pkg/encoding/erasure - and other cleanups
10 years ago
Harshavardhana
e5af8a3f5d
Further fixes -
...
- All test files have been renamed to their respective <package>_test name,
this is done in accordance with
- https://github.com/golang/go/wiki/CodeReviewComments#import-dot
imports are largely used in testing, but to avoid namespace collision
and circular dependencies
- Never use _* in package names other than "_test" change fragment_v1 to expose
fragment just like 'gopkg.in/check.v1'
10 years ago
Harshavardhana
3a3c8645fc
Update comments across the codebase
10 years ago