mirror of
https://github.com/go-gitea/gitea
synced 2025-07-22 10:18:38 +00:00
Integrate public as bindata optionally (#293)
* Dropped unused codekit config * Integrated dynamic and static bindata for public * Ignore public bindata * Add a general generate make task * Integrated flexible public assets into web command * Updated vendoring, added all missiong govendor deps * Made the linter happy with the bindata and dynamic code * Moved public bindata definition to modules directory * Ignoring the new bindata path now * Updated to the new public modules import path * Updated public bindata command and drop the new prefix
This commit is contained in:
committed by
Lunny Xiao
parent
4680c349dd
commit
b6a95a8cb3
28
vendor/github.com/pingcap/go-themis/txn.go
generated
vendored
Normal file
28
vendor/github.com/pingcap/go-themis/txn.go
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
package themis
|
||||
|
||||
import (
|
||||
"errors"
|
||||
|
||||
"github.com/pingcap/go-hbase"
|
||||
)
|
||||
|
||||
var (
|
||||
ErrLockNotExpired = errors.New("lock not expired")
|
||||
ErrCleanLockFailed = errors.New("clean lock failed")
|
||||
ErrWrongRegion = errors.New("wrong region, please retry")
|
||||
ErrTooManyRows = errors.New("too many rows in one transaction")
|
||||
ErrRetryable = errors.New("try again later")
|
||||
)
|
||||
|
||||
type Txn interface {
|
||||
Get(t string, get *hbase.Get) (*hbase.ResultRow, error)
|
||||
Gets(t string, gets []*hbase.Get) ([]*hbase.ResultRow, error)
|
||||
LockRow(t string, row []byte) error
|
||||
Put(t string, put *hbase.Put)
|
||||
Delete(t string, del *hbase.Delete) error
|
||||
GetScanner(tbl []byte, startKey, endKey []byte, batchSize int) *ThemisScanner
|
||||
Release()
|
||||
Commit() error
|
||||
GetStartTS() uint64
|
||||
GetCommitTS() uint64
|
||||
}
|
Reference in New Issue
Block a user