mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
Fixing godep
This commit is contained in:
2
Godeps/_workspace/src/code.google.com/p/log4go/examples/ConsoleLogWriter_Manual.go
generated
vendored
2
Godeps/_workspace/src/code.google.com/p/log4go/examples/ConsoleLogWriter_Manual.go
generated
vendored
@@ -4,7 +4,7 @@ import (
|
||||
"time"
|
||||
)
|
||||
|
||||
import l4g "github.com/mattermost/platform/Godeps/_workspace/src/code.google.com/p/log4go"
|
||||
import l4g "code.google.com/p/log4go"
|
||||
|
||||
func main() {
|
||||
log := l4g.NewLogger()
|
||||
|
||||
2
Godeps/_workspace/src/code.google.com/p/log4go/examples/FileLogWriter_Manual.go
generated
vendored
2
Godeps/_workspace/src/code.google.com/p/log4go/examples/FileLogWriter_Manual.go
generated
vendored
@@ -8,7 +8,7 @@ import (
|
||||
"time"
|
||||
)
|
||||
|
||||
import l4g "github.com/mattermost/platform/Godeps/_workspace/src/code.google.com/p/log4go"
|
||||
import l4g "code.google.com/p/log4go"
|
||||
|
||||
const (
|
||||
filename = "flw.log"
|
||||
|
||||
2
Godeps/_workspace/src/code.google.com/p/log4go/examples/SocketLogWriter_Manual.go
generated
vendored
2
Godeps/_workspace/src/code.google.com/p/log4go/examples/SocketLogWriter_Manual.go
generated
vendored
@@ -4,7 +4,7 @@ import (
|
||||
"time"
|
||||
)
|
||||
|
||||
import l4g "github.com/mattermost/platform/Godeps/_workspace/src/code.google.com/p/log4go"
|
||||
import l4g "code.google.com/p/log4go"
|
||||
|
||||
func main() {
|
||||
log := l4g.NewLogger()
|
||||
|
||||
2
Godeps/_workspace/src/code.google.com/p/log4go/examples/XMLConfigurationExample.go
generated
vendored
2
Godeps/_workspace/src/code.google.com/p/log4go/examples/XMLConfigurationExample.go
generated
vendored
@@ -1,6 +1,6 @@
|
||||
package main
|
||||
|
||||
import l4g "github.com/mattermost/platform/Godeps/_workspace/src/code.google.com/p/log4go"
|
||||
import l4g "code.google.com/p/log4go"
|
||||
|
||||
func main() {
|
||||
// Load the configuration (isn't this easy?)
|
||||
|
||||
2
Godeps/_workspace/src/github.com/anachronistic/apns/client_mock.go
generated
vendored
2
Godeps/_workspace/src/github.com/anachronistic/apns/client_mock.go
generated
vendored
@@ -1,6 +1,6 @@
|
||||
package apns
|
||||
|
||||
import "github.com/mattermost/platform/Godeps/_workspace/src/github.com/stretchr/testify/mock"
|
||||
import "github.com/stretchr/testify/mock"
|
||||
|
||||
type MockClient struct {
|
||||
mock.Mock
|
||||
|
||||
2
Godeps/_workspace/src/github.com/anachronistic/apns/client_mock_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/anachronistic/apns/client_mock_test.go
generated
vendored
@@ -4,7 +4,7 @@ import (
|
||||
"errors"
|
||||
"testing"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
func TestMockClientConnectAndWrite(t *testing.T) {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/braintree/manners/server_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/braintree/manners/server_test.go
generated
vendored
@@ -1,7 +1,7 @@
|
||||
package manners
|
||||
|
||||
import (
|
||||
helpers "github.com/mattermost/platform/Godeps/_workspace/src/github.com/braintree/manners/test_helpers"
|
||||
helpers "github.com/braintree/manners/test_helpers"
|
||||
"net"
|
||||
"net/http"
|
||||
"testing"
|
||||
|
||||
2
Godeps/_workspace/src/github.com/braintree/manners/transition_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/braintree/manners/transition_test.go
generated
vendored
@@ -1,7 +1,7 @@
|
||||
package manners
|
||||
|
||||
import (
|
||||
helpers "github.com/mattermost/platform/Godeps/_workspace/src/github.com/braintree/manners/test_helpers"
|
||||
helpers "github.com/braintree/manners/test_helpers"
|
||||
"net/http"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
2
Godeps/_workspace/src/github.com/davecgh/go-spew/spew/common_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/davecgh/go-spew/spew/common_test.go
generated
vendored
@@ -21,7 +21,7 @@ import (
|
||||
"reflect"
|
||||
"testing"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/davecgh/go-spew/spew"
|
||||
"github.com/davecgh/go-spew/spew"
|
||||
)
|
||||
|
||||
// custom type to test Stinger interface on non-pointer receiver.
|
||||
|
||||
2
Godeps/_workspace/src/github.com/davecgh/go-spew/spew/dump_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/davecgh/go-spew/spew/dump_test.go
generated
vendored
@@ -67,7 +67,7 @@ import (
|
||||
"testing"
|
||||
"unsafe"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/davecgh/go-spew/spew"
|
||||
"github.com/davecgh/go-spew/spew"
|
||||
)
|
||||
|
||||
// dumpTest is used to describe a test to be perfomed against the Dump method.
|
||||
|
||||
2
Godeps/_workspace/src/github.com/davecgh/go-spew/spew/dumpcgo_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/davecgh/go-spew/spew/dumpcgo_test.go
generated
vendored
@@ -26,7 +26,7 @@ package spew_test
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/testdata"
|
||||
"github.com/davecgh/go-spew/spew/testdata"
|
||||
)
|
||||
|
||||
func addCgoDumpTests() {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/davecgh/go-spew/spew/example_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/davecgh/go-spew/spew/example_test.go
generated
vendored
@@ -19,7 +19,7 @@ package spew_test
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/davecgh/go-spew/spew"
|
||||
"github.com/davecgh/go-spew/spew"
|
||||
)
|
||||
|
||||
type Flag int
|
||||
|
||||
2
Godeps/_workspace/src/github.com/davecgh/go-spew/spew/format_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/davecgh/go-spew/spew/format_test.go
generated
vendored
@@ -72,7 +72,7 @@ import (
|
||||
"testing"
|
||||
"unsafe"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/davecgh/go-spew/spew"
|
||||
"github.com/davecgh/go-spew/spew"
|
||||
)
|
||||
|
||||
// formatterTest is used to describe a test to be perfomed against NewFormatter.
|
||||
|
||||
2
Godeps/_workspace/src/github.com/davecgh/go-spew/spew/spew_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/davecgh/go-spew/spew/spew_test.go
generated
vendored
@@ -23,7 +23,7 @@ import (
|
||||
"os"
|
||||
"testing"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/davecgh/go-spew/spew"
|
||||
"github.com/davecgh/go-spew/spew"
|
||||
)
|
||||
|
||||
// spewFunc is used to identify which public function of the spew package or
|
||||
|
||||
4
Godeps/_workspace/src/github.com/disintegration/imaging/helpers.go
generated
vendored
4
Godeps/_workspace/src/github.com/disintegration/imaging/helpers.go
generated
vendored
@@ -20,8 +20,8 @@ import (
|
||||
"path/filepath"
|
||||
"strings"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/bmp"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/tiff"
|
||||
"golang.org/x/image/bmp"
|
||||
"golang.org/x/image/tiff"
|
||||
)
|
||||
|
||||
type Format int
|
||||
|
||||
2
Godeps/_workspace/src/github.com/garyburd/redigo/internal/redistest/testdb.go
generated
vendored
2
Godeps/_workspace/src/github.com/garyburd/redigo/internal/redistest/testdb.go
generated
vendored
@@ -19,7 +19,7 @@ import (
|
||||
"errors"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/redis"
|
||||
"github.com/garyburd/redigo/redis"
|
||||
)
|
||||
|
||||
type testConn struct {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/garyburd/redigo/redis/conn_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/garyburd/redigo/redis/conn_test.go
generated
vendored
@@ -25,7 +25,7 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/redis"
|
||||
"github.com/garyburd/redigo/redis"
|
||||
)
|
||||
|
||||
type testConn struct {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool.go
generated
vendored
2
Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool.go
generated
vendored
@@ -25,7 +25,7 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/internal"
|
||||
"github.com/garyburd/redigo/internal"
|
||||
)
|
||||
|
||||
var nowFunc = time.Now // for testing
|
||||
|
||||
2
Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool_test.go
generated
vendored
@@ -22,7 +22,7 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/redis"
|
||||
"github.com/garyburd/redigo/redis"
|
||||
)
|
||||
|
||||
type poolTestConn struct {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/garyburd/redigo/redis/pubsub_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/garyburd/redigo/redis/pubsub_test.go
generated
vendored
@@ -20,7 +20,7 @@ import (
|
||||
"sync"
|
||||
"testing"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/redis"
|
||||
"github.com/garyburd/redigo/redis"
|
||||
)
|
||||
|
||||
func publish(channel, value interface{}) {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/garyburd/redigo/redis/reply_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/garyburd/redigo/redis/reply_test.go
generated
vendored
@@ -19,7 +19,7 @@ import (
|
||||
"reflect"
|
||||
"testing"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/redis"
|
||||
"github.com/garyburd/redigo/redis"
|
||||
)
|
||||
|
||||
type valueError struct {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/garyburd/redigo/redis/scan_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/garyburd/redigo/redis/scan_test.go
generated
vendored
@@ -20,7 +20,7 @@ import (
|
||||
"reflect"
|
||||
"testing"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/redis"
|
||||
"github.com/garyburd/redigo/redis"
|
||||
)
|
||||
|
||||
var scanConversionTests = []struct {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/garyburd/redigo/redis/script_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/garyburd/redigo/redis/script_test.go
generated
vendored
@@ -20,7 +20,7 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/redis"
|
||||
"github.com/garyburd/redigo/redis"
|
||||
)
|
||||
|
||||
func ExampleScript(c redis.Conn, reply interface{}, err error) {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/garyburd/redigo/redis/zpop_example_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/garyburd/redigo/redis/zpop_example_test.go
generated
vendored
@@ -16,7 +16,7 @@ package redis_test
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/redis"
|
||||
"github.com/garyburd/redigo/redis"
|
||||
)
|
||||
|
||||
// zpop pops a value from the ZSET key using WATCH/MULTI/EXEC commands.
|
||||
|
||||
4
Godeps/_workspace/src/github.com/go-gorp/gorp/gorp_test.go
generated
vendored
4
Godeps/_workspace/src/github.com/go-gorp/gorp/gorp_test.go
generated
vendored
@@ -28,8 +28,8 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
_ "github.com/mattermost/platform/Godeps/_workspace/src/github.com/go-sql-driver/mysql"
|
||||
_ "github.com/mattermost/platform/Godeps/_workspace/src/github.com/lib/pq"
|
||||
_ "github.com/go-sql-driver/mysql"
|
||||
_ "github.com/lib/pq"
|
||||
_ "github.com/mattn/go-sqlite3"
|
||||
_ "github.com/ziutek/mymysql/godrv"
|
||||
)
|
||||
|
||||
2
Godeps/_workspace/src/github.com/goamz/goamz/aws/attempt_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/goamz/goamz/aws/attempt_test.go
generated
vendored
@@ -3,7 +3,7 @@ package aws_test
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/goamz/goamz/aws"
|
||||
"github.com/goamz/goamz/aws"
|
||||
. "gopkg.in/check.v1"
|
||||
)
|
||||
|
||||
|
||||
2
Godeps/_workspace/src/github.com/goamz/goamz/aws/aws.go
generated
vendored
2
Godeps/_workspace/src/github.com/goamz/goamz/aws/aws.go
generated
vendored
@@ -20,7 +20,7 @@ import (
|
||||
"os"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/vaughan0/go-ini"
|
||||
"github.com/vaughan0/go-ini"
|
||||
)
|
||||
|
||||
// Defines the valid signers
|
||||
|
||||
2
Godeps/_workspace/src/github.com/goamz/goamz/aws/aws_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/goamz/goamz/aws/aws_test.go
generated
vendored
@@ -7,7 +7,7 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/goamz/goamz/aws"
|
||||
"github.com/goamz/goamz/aws"
|
||||
. "gopkg.in/check.v1"
|
||||
)
|
||||
|
||||
|
||||
2
Godeps/_workspace/src/github.com/goamz/goamz/aws/client_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/goamz/goamz/aws/client_test.go
generated
vendored
@@ -2,7 +2,7 @@ package aws_test
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/goamz/goamz/aws"
|
||||
"github.com/goamz/goamz/aws"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
|
||||
2
Godeps/_workspace/src/github.com/goamz/goamz/aws/sign_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/goamz/goamz/aws/sign_test.go
generated
vendored
@@ -6,7 +6,7 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/goamz/goamz/aws"
|
||||
"github.com/goamz/goamz/aws"
|
||||
. "gopkg.in/check.v1"
|
||||
)
|
||||
|
||||
|
||||
2
Godeps/_workspace/src/github.com/goamz/goamz/s3/export_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/goamz/goamz/s3/export_test.go
generated
vendored
@@ -1,7 +1,7 @@
|
||||
package s3
|
||||
|
||||
import (
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/goamz/goamz/aws"
|
||||
"github.com/goamz/goamz/aws"
|
||||
)
|
||||
|
||||
func Sign(auth aws.Auth, method, path string, params, headers map[string][]string) {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/goamz/goamz/s3/multi_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/goamz/goamz/s3/multi_test.go
generated
vendored
@@ -6,7 +6,7 @@ import (
|
||||
"io/ioutil"
|
||||
"strings"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/goamz/goamz/s3"
|
||||
"github.com/goamz/goamz/s3"
|
||||
. "gopkg.in/check.v1"
|
||||
)
|
||||
|
||||
|
||||
2
Godeps/_workspace/src/github.com/goamz/goamz/s3/s3.go
generated
vendored
2
Godeps/_workspace/src/github.com/goamz/goamz/s3/s3.go
generated
vendored
@@ -18,7 +18,7 @@ import (
|
||||
"encoding/base64"
|
||||
"encoding/xml"
|
||||
"fmt"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/goamz/goamz/aws"
|
||||
"github.com/goamz/goamz/aws"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
|
||||
4
Godeps/_workspace/src/github.com/goamz/goamz/s3/s3_test.go
generated
vendored
4
Godeps/_workspace/src/github.com/goamz/goamz/s3/s3_test.go
generated
vendored
@@ -7,9 +7,9 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/goamz/goamz/aws"
|
||||
"github.com/goamz/goamz/s3"
|
||||
"github.com/goamz/goamz/testutil"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/goamz/goamz/aws"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/goamz/goamz/s3"
|
||||
. "gopkg.in/check.v1"
|
||||
)
|
||||
|
||||
|
||||
4
Godeps/_workspace/src/github.com/goamz/goamz/s3/s3i_test.go
generated
vendored
4
Godeps/_workspace/src/github.com/goamz/goamz/s3/s3i_test.go
generated
vendored
@@ -11,9 +11,9 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/goamz/goamz/aws"
|
||||
"github.com/goamz/goamz/s3"
|
||||
"github.com/goamz/goamz/testutil"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/goamz/goamz/aws"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/goamz/goamz/s3"
|
||||
. "gopkg.in/check.v1"
|
||||
)
|
||||
|
||||
|
||||
6
Godeps/_workspace/src/github.com/goamz/goamz/s3/s3t_test.go
generated
vendored
6
Godeps/_workspace/src/github.com/goamz/goamz/s3/s3t_test.go
generated
vendored
@@ -1,9 +1,9 @@
|
||||
package s3_test
|
||||
|
||||
import (
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/goamz/goamz/aws"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/goamz/goamz/s3"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/goamz/goamz/s3/s3test"
|
||||
"github.com/goamz/goamz/aws"
|
||||
"github.com/goamz/goamz/s3"
|
||||
"github.com/goamz/goamz/s3/s3test"
|
||||
. "gopkg.in/check.v1"
|
||||
)
|
||||
|
||||
|
||||
2
Godeps/_workspace/src/github.com/goamz/goamz/s3/s3test/server.go
generated
vendored
2
Godeps/_workspace/src/github.com/goamz/goamz/s3/s3test/server.go
generated
vendored
@@ -7,7 +7,7 @@ import (
|
||||
"encoding/hex"
|
||||
"encoding/xml"
|
||||
"fmt"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/goamz/goamz/s3"
|
||||
"github.com/goamz/goamz/s3"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
|
||||
2
Godeps/_workspace/src/github.com/goamz/goamz/s3/sign.go
generated
vendored
2
Godeps/_workspace/src/github.com/goamz/goamz/s3/sign.go
generated
vendored
@@ -4,7 +4,7 @@ import (
|
||||
"crypto/hmac"
|
||||
"crypto/sha1"
|
||||
"encoding/base64"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/goamz/goamz/aws"
|
||||
"github.com/goamz/goamz/aws"
|
||||
"log"
|
||||
"sort"
|
||||
"strings"
|
||||
|
||||
4
Godeps/_workspace/src/github.com/goamz/goamz/s3/sign_test.go
generated
vendored
4
Godeps/_workspace/src/github.com/goamz/goamz/s3/sign_test.go
generated
vendored
@@ -1,8 +1,8 @@
|
||||
package s3_test
|
||||
|
||||
import (
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/goamz/goamz/aws"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/goamz/goamz/s3"
|
||||
"github.com/goamz/goamz/aws"
|
||||
"github.com/goamz/goamz/s3"
|
||||
. "gopkg.in/check.v1"
|
||||
)
|
||||
|
||||
|
||||
6
Godeps/_workspace/src/github.com/golang/freetype/example/drawer/main.go
generated
vendored
6
Godeps/_workspace/src/github.com/golang/freetype/example/drawer/main.go
generated
vendored
@@ -23,9 +23,9 @@ import (
|
||||
"math"
|
||||
"os"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/freetype/truetype"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"github.com/golang/freetype/truetype"
|
||||
"golang.org/x/image/font"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
4
Godeps/_workspace/src/github.com/golang/freetype/example/freetype/main.go
generated
vendored
4
Godeps/_workspace/src/github.com/golang/freetype/example/freetype/main.go
generated
vendored
@@ -22,8 +22,8 @@ import (
|
||||
"log"
|
||||
"os"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/freetype"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font"
|
||||
"github.com/golang/freetype"
|
||||
"golang.org/x/image/font"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
4
Godeps/_workspace/src/github.com/golang/freetype/example/gamma/main.go
generated
vendored
4
Godeps/_workspace/src/github.com/golang/freetype/example/gamma/main.go
generated
vendored
@@ -19,8 +19,8 @@ import (
|
||||
"log"
|
||||
"os"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/freetype/raster"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"github.com/golang/freetype/raster"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
func p(x, y int) fixed.Point26_6 {
|
||||
|
||||
4
Godeps/_workspace/src/github.com/golang/freetype/example/raster/main.go
generated
vendored
4
Godeps/_workspace/src/github.com/golang/freetype/example/raster/main.go
generated
vendored
@@ -20,8 +20,8 @@ import (
|
||||
"log"
|
||||
"os"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/freetype/raster"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"github.com/golang/freetype/raster"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
type node struct {
|
||||
|
||||
4
Godeps/_workspace/src/github.com/golang/freetype/example/round/main.go
generated
vendored
4
Godeps/_workspace/src/github.com/golang/freetype/example/round/main.go
generated
vendored
@@ -26,8 +26,8 @@ import (
|
||||
"math"
|
||||
"os"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/freetype/raster"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"github.com/golang/freetype/raster"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
// pDot returns the dot product p·q.
|
||||
|
||||
6
Godeps/_workspace/src/github.com/golang/freetype/example/truetype/main.go
generated
vendored
6
Godeps/_workspace/src/github.com/golang/freetype/example/truetype/main.go
generated
vendored
@@ -16,9 +16,9 @@ import (
|
||||
"io/ioutil"
|
||||
"log"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/freetype/truetype"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"github.com/golang/freetype/truetype"
|
||||
"golang.org/x/image/font"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
var fontfile = flag.String("fontfile", "../../testdata/luxisr.ttf", "filename of the ttf font")
|
||||
|
||||
8
Godeps/_workspace/src/github.com/golang/freetype/freetype.go
generated
vendored
8
Godeps/_workspace/src/github.com/golang/freetype/freetype.go
generated
vendored
@@ -13,10 +13,10 @@ import (
|
||||
"image"
|
||||
"image/draw"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/freetype/raster"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/freetype/truetype"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"github.com/golang/freetype/raster"
|
||||
"github.com/golang/freetype/truetype"
|
||||
"golang.org/x/image/font"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
// These constants determine the size of the glyph cache. The cache is keyed
|
||||
|
||||
2
Godeps/_workspace/src/github.com/golang/freetype/raster/geom.go
generated
vendored
2
Godeps/_workspace/src/github.com/golang/freetype/raster/geom.go
generated
vendored
@@ -9,7 +9,7 @@ import (
|
||||
"fmt"
|
||||
"math"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
// maxAbs returns the maximum of abs(a) and abs(b).
|
||||
|
||||
2
Godeps/_workspace/src/github.com/golang/freetype/raster/raster.go
generated
vendored
2
Godeps/_workspace/src/github.com/golang/freetype/raster/raster.go
generated
vendored
@@ -18,7 +18,7 @@ package raster
|
||||
import (
|
||||
"strconv"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
// A cell is part of a linked list (for a given yi co-ordinate) of accumulated
|
||||
|
||||
2
Godeps/_workspace/src/github.com/golang/freetype/raster/stroke.go
generated
vendored
2
Godeps/_workspace/src/github.com/golang/freetype/raster/stroke.go
generated
vendored
@@ -6,7 +6,7 @@
|
||||
package raster
|
||||
|
||||
import (
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
// Two points are considered practically equal if the square of the distance
|
||||
|
||||
6
Godeps/_workspace/src/github.com/golang/freetype/truetype/face.go
generated
vendored
6
Godeps/_workspace/src/github.com/golang/freetype/truetype/face.go
generated
vendored
@@ -8,9 +8,9 @@ package truetype
|
||||
import (
|
||||
"image"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/freetype/raster"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"github.com/golang/freetype/raster"
|
||||
"golang.org/x/image/font"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
func powerOf2(i int) bool {
|
||||
|
||||
4
Godeps/_workspace/src/github.com/golang/freetype/truetype/face_test.go
generated
vendored
4
Godeps/_workspace/src/github.com/golang/freetype/truetype/face_test.go
generated
vendored
@@ -12,8 +12,8 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"golang.org/x/image/font"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
func BenchmarkDrawString(b *testing.B) {
|
||||
|
||||
4
Godeps/_workspace/src/github.com/golang/freetype/truetype/glyph.go
generated
vendored
4
Godeps/_workspace/src/github.com/golang/freetype/truetype/glyph.go
generated
vendored
@@ -6,8 +6,8 @@
|
||||
package truetype
|
||||
|
||||
import (
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"golang.org/x/image/font"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
// TODO: implement VerticalHinting.
|
||||
|
||||
2
Godeps/_workspace/src/github.com/golang/freetype/truetype/hint.go
generated
vendored
2
Godeps/_workspace/src/github.com/golang/freetype/truetype/hint.go
generated
vendored
@@ -12,7 +12,7 @@ import (
|
||||
"errors"
|
||||
"math"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
const (
|
||||
|
||||
2
Godeps/_workspace/src/github.com/golang/freetype/truetype/hint_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/golang/freetype/truetype/hint_test.go
generated
vendored
@@ -10,7 +10,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
func TestBytecode(t *testing.T) {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/golang/freetype/truetype/truetype.go
generated
vendored
2
Godeps/_workspace/src/github.com/golang/freetype/truetype/truetype.go
generated
vendored
@@ -20,7 +20,7 @@ package truetype
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
// An Index is a Font's index of a rune.
|
||||
|
||||
4
Godeps/_workspace/src/github.com/golang/freetype/truetype/truetype_test.go
generated
vendored
4
Godeps/_workspace/src/github.com/golang/freetype/truetype/truetype_test.go
generated
vendored
@@ -15,8 +15,8 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"golang.org/x/image/font"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
func parseTestdataFont(name string) (f *Font, testdataIsOptional bool, err error) {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/gorilla/mux/mux.go
generated
vendored
2
Godeps/_workspace/src/github.com/gorilla/mux/mux.go
generated
vendored
@@ -11,7 +11,7 @@ import (
|
||||
"path"
|
||||
"regexp"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/gorilla/context"
|
||||
"github.com/gorilla/context"
|
||||
)
|
||||
|
||||
// NewRouter returns a new router instance.
|
||||
|
||||
2
Godeps/_workspace/src/github.com/gorilla/mux/mux_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/gorilla/mux/mux_test.go
generated
vendored
@@ -10,7 +10,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/gorilla/context"
|
||||
"github.com/gorilla/context"
|
||||
)
|
||||
|
||||
func (r *Route) GoString() string {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/gorilla/websocket/examples/autobahn/server.go
generated
vendored
2
Godeps/_workspace/src/github.com/gorilla/websocket/examples/autobahn/server.go
generated
vendored
@@ -8,7 +8,7 @@ package main
|
||||
import (
|
||||
"errors"
|
||||
"flag"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/gorilla/websocket"
|
||||
"github.com/gorilla/websocket"
|
||||
"io"
|
||||
"log"
|
||||
"net/http"
|
||||
|
||||
2
Godeps/_workspace/src/github.com/gorilla/websocket/examples/chat/conn.go
generated
vendored
2
Godeps/_workspace/src/github.com/gorilla/websocket/examples/chat/conn.go
generated
vendored
@@ -5,7 +5,7 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/gorilla/websocket"
|
||||
"github.com/gorilla/websocket"
|
||||
"log"
|
||||
"net/http"
|
||||
"time"
|
||||
|
||||
2
Godeps/_workspace/src/github.com/gorilla/websocket/examples/command/main.go
generated
vendored
2
Godeps/_workspace/src/github.com/gorilla/websocket/examples/command/main.go
generated
vendored
@@ -15,7 +15,7 @@ import (
|
||||
"text/template"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/gorilla/websocket"
|
||||
"github.com/gorilla/websocket"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
2
Godeps/_workspace/src/github.com/gorilla/websocket/examples/echo/client.go
generated
vendored
2
Godeps/_workspace/src/github.com/gorilla/websocket/examples/echo/client.go
generated
vendored
@@ -12,7 +12,7 @@ import (
|
||||
"net/url"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/gorilla/websocket"
|
||||
"github.com/gorilla/websocket"
|
||||
)
|
||||
|
||||
var addr = flag.String("addr", "localhost:8080", "http service address")
|
||||
|
||||
2
Godeps/_workspace/src/github.com/gorilla/websocket/examples/echo/server.go
generated
vendored
2
Godeps/_workspace/src/github.com/gorilla/websocket/examples/echo/server.go
generated
vendored
@@ -12,7 +12,7 @@ import (
|
||||
"log"
|
||||
"net/http"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/gorilla/websocket"
|
||||
"github.com/gorilla/websocket"
|
||||
)
|
||||
|
||||
var addr = flag.String("addr", "localhost:8080", "http service address")
|
||||
|
||||
2
Godeps/_workspace/src/github.com/gorilla/websocket/examples/filewatch/main.go
generated
vendored
2
Godeps/_workspace/src/github.com/gorilla/websocket/examples/filewatch/main.go
generated
vendored
@@ -14,7 +14,7 @@ import (
|
||||
"text/template"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/gorilla/websocket"
|
||||
"github.com/gorilla/websocket"
|
||||
)
|
||||
|
||||
const (
|
||||
|
||||
2
Godeps/_workspace/src/github.com/lib/pq/bench_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/lib/pq/bench_test.go
generated
vendored
@@ -17,7 +17,7 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/lib/pq/oid"
|
||||
"github.com/lib/pq/oid"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
2
Godeps/_workspace/src/github.com/lib/pq/buf.go
generated
vendored
2
Godeps/_workspace/src/github.com/lib/pq/buf.go
generated
vendored
@@ -4,7 +4,7 @@ import (
|
||||
"bytes"
|
||||
"encoding/binary"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/lib/pq/oid"
|
||||
"github.com/lib/pq/oid"
|
||||
)
|
||||
|
||||
type readBuf []byte
|
||||
|
||||
2
Godeps/_workspace/src/github.com/lib/pq/conn.go
generated
vendored
2
Godeps/_workspace/src/github.com/lib/pq/conn.go
generated
vendored
@@ -22,7 +22,7 @@ import (
|
||||
"time"
|
||||
"unicode"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/lib/pq/oid"
|
||||
"github.com/lib/pq/oid"
|
||||
)
|
||||
|
||||
// Common error types
|
||||
|
||||
2
Godeps/_workspace/src/github.com/lib/pq/encode.go
generated
vendored
2
Godeps/_workspace/src/github.com/lib/pq/encode.go
generated
vendored
@@ -12,7 +12,7 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/lib/pq/oid"
|
||||
"github.com/lib/pq/oid"
|
||||
)
|
||||
|
||||
func binaryEncode(parameterStatus *parameterStatus, x interface{}) []byte {
|
||||
|
||||
12
Godeps/_workspace/src/github.com/lib/pq/encode_test.go
generated
vendored
12
Godeps/_workspace/src/github.com/lib/pq/encode_test.go
generated
vendored
@@ -7,7 +7,7 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/lib/pq/oid"
|
||||
"github.com/lib/pq/oid"
|
||||
)
|
||||
|
||||
func TestScanTimestamp(t *testing.T) {
|
||||
@@ -468,11 +468,11 @@ func TestBinaryByteSlicetoUUID(t *testing.T) {
|
||||
db := openTestConn(t)
|
||||
defer db.Close()
|
||||
|
||||
b := []byte{'\xa0', '\xee', '\xbc', '\x99',
|
||||
'\x9c', '\x0b',
|
||||
'\x4e', '\xf8',
|
||||
'\xbb', '\x00', '\x6b',
|
||||
'\xb9', '\xbd', '\x38', '\x0a', '\x11'}
|
||||
b := []byte{'\xa0','\xee','\xbc','\x99',
|
||||
'\x9c', '\x0b',
|
||||
'\x4e', '\xf8',
|
||||
'\xbb', '\x00', '\x6b',
|
||||
'\xb9', '\xbd', '\x38', '\x0a', '\x11'}
|
||||
row := db.QueryRow("SELECT $1::uuid", b)
|
||||
|
||||
var result string
|
||||
|
||||
2
Godeps/_workspace/src/github.com/lib/pq/hstore/hstore_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/lib/pq/hstore/hstore_test.go
generated
vendored
@@ -5,7 +5,7 @@ import (
|
||||
"os"
|
||||
"testing"
|
||||
|
||||
_ "github.com/mattermost/platform/Godeps/_workspace/src/github.com/lib/pq"
|
||||
_ "github.com/lib/pq"
|
||||
)
|
||||
|
||||
type Fatalistic interface {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/lib/pq/oid/gen.go
generated
vendored
2
Godeps/_workspace/src/github.com/lib/pq/oid/gen.go
generated
vendored
@@ -11,7 +11,7 @@ import (
|
||||
"os"
|
||||
"os/exec"
|
||||
|
||||
_ "github.com/mattermost/platform/Godeps/_workspace/src/github.com/lib/pq"
|
||||
_ "github.com/lib/pq"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/example_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/example_test.go
generated
vendored
@@ -5,7 +5,7 @@ import (
|
||||
"log"
|
||||
"os"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif"
|
||||
"github.com/rwcarlsen/goexif/exif"
|
||||
"github.com/rwcarlsen/goexif/mknote"
|
||||
)
|
||||
|
||||
|
||||
4
Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/exif.go
generated
vendored
4
Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/exif.go
generated
vendored
@@ -16,7 +16,7 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/rwcarlsen/goexif/tiff"
|
||||
"github.com/rwcarlsen/goexif/tiff"
|
||||
)
|
||||
|
||||
const (
|
||||
@@ -574,7 +574,7 @@ func newAppSec(marker byte, r io.Reader) (*appSec, error) {
|
||||
}
|
||||
|
||||
dataLenBytes := make([]byte, 2)
|
||||
for k, _ := range dataLenBytes {
|
||||
for k,_ := range dataLenBytes {
|
||||
c, err := br.ReadByte()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
||||
2
Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/exif_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/exif_test.go
generated
vendored
@@ -12,7 +12,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/rwcarlsen/goexif/tiff"
|
||||
"github.com/rwcarlsen/goexif/tiff"
|
||||
)
|
||||
|
||||
var dataDir = flag.String("test_data_dir", ".", "Directory where the data files for testing are located")
|
||||
|
||||
4
Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/regen_regress.go
generated
vendored
4
Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/regen_regress.go
generated
vendored
@@ -11,8 +11,8 @@ import (
|
||||
"path/filepath"
|
||||
"strings"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/rwcarlsen/goexif/tiff"
|
||||
"github.com/rwcarlsen/goexif/exif"
|
||||
"github.com/rwcarlsen/goexif/tiff"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/stretchr/objx/accessors_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/stretchr/objx/accessors_test.go
generated
vendored
@@ -1,7 +1,7 @@
|
||||
package objx
|
||||
|
||||
import (
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"testing"
|
||||
)
|
||||
|
||||
|
||||
2
Godeps/_workspace/src/github.com/stretchr/objx/conversions_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/stretchr/objx/conversions_test.go
generated
vendored
@@ -1,7 +1,7 @@
|
||||
package objx
|
||||
|
||||
import (
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"testing"
|
||||
)
|
||||
|
||||
|
||||
2
Godeps/_workspace/src/github.com/stretchr/objx/fixture_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/stretchr/objx/fixture_test.go
generated
vendored
@@ -1,7 +1,7 @@
|
||||
package objx
|
||||
|
||||
import (
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"testing"
|
||||
)
|
||||
|
||||
|
||||
2
Godeps/_workspace/src/github.com/stretchr/objx/map_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/stretchr/objx/map_test.go
generated
vendored
@@ -1,7 +1,7 @@
|
||||
package objx
|
||||
|
||||
import (
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"testing"
|
||||
)
|
||||
|
||||
|
||||
2
Godeps/_workspace/src/github.com/stretchr/objx/mutations_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/stretchr/objx/mutations_test.go
generated
vendored
@@ -1,7 +1,7 @@
|
||||
package objx
|
||||
|
||||
import (
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"testing"
|
||||
)
|
||||
|
||||
|
||||
2
Godeps/_workspace/src/github.com/stretchr/objx/security_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/stretchr/objx/security_test.go
generated
vendored
@@ -1,7 +1,7 @@
|
||||
package objx
|
||||
|
||||
import (
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"testing"
|
||||
)
|
||||
|
||||
|
||||
2
Godeps/_workspace/src/github.com/stretchr/objx/simple_example_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/stretchr/objx/simple_example_test.go
generated
vendored
@@ -1,7 +1,7 @@
|
||||
package objx
|
||||
|
||||
import (
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"testing"
|
||||
)
|
||||
|
||||
|
||||
2
Godeps/_workspace/src/github.com/stretchr/objx/tests_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/stretchr/objx/tests_test.go
generated
vendored
@@ -1,7 +1,7 @@
|
||||
package objx
|
||||
|
||||
import (
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"testing"
|
||||
)
|
||||
|
||||
|
||||
2
Godeps/_workspace/src/github.com/stretchr/objx/type_specific_codegen_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/stretchr/objx/type_specific_codegen_test.go
generated
vendored
@@ -2,7 +2,7 @@ package objx
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"testing"
|
||||
)
|
||||
|
||||
|
||||
2
Godeps/_workspace/src/github.com/stretchr/objx/value_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/stretchr/objx/value_test.go
generated
vendored
@@ -1,7 +1,7 @@
|
||||
package objx
|
||||
|
||||
import (
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"testing"
|
||||
)
|
||||
|
||||
|
||||
4
Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions.go
generated
vendored
4
Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions.go
generated
vendored
@@ -14,8 +14,8 @@ import (
|
||||
"unicode"
|
||||
"unicode/utf8"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/davecgh/go-spew/spew"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/pmezard/go-difflib/difflib"
|
||||
"github.com/davecgh/go-spew/spew"
|
||||
"github.com/pmezard/go-difflib/difflib"
|
||||
)
|
||||
|
||||
// TestingT is an interface wrapper around *testing.T
|
||||
|
||||
4
Godeps/_workspace/src/github.com/stretchr/testify/mock/mock.go
generated
vendored
4
Godeps/_workspace/src/github.com/stretchr/testify/mock/mock.go
generated
vendored
@@ -9,8 +9,8 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/stretchr/objx"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/objx"
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
// TestingT is an interface wrapper around *testing.T
|
||||
|
||||
2
Godeps/_workspace/src/github.com/stretchr/testify/mock/mock_test.go
generated
vendored
2
Godeps/_workspace/src/github.com/stretchr/testify/mock/mock_test.go
generated
vendored
@@ -2,7 +2,7 @@ package mock
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
2
Godeps/_workspace/src/golang.org/x/crypto/bcrypt/bcrypt.go
generated
vendored
2
Godeps/_workspace/src/golang.org/x/crypto/bcrypt/bcrypt.go
generated
vendored
@@ -12,7 +12,7 @@ import (
|
||||
"crypto/subtle"
|
||||
"errors"
|
||||
"fmt"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/crypto/blowfish"
|
||||
"golang.org/x/crypto/blowfish"
|
||||
"io"
|
||||
"strconv"
|
||||
)
|
||||
|
||||
2
Godeps/_workspace/src/golang.org/x/image/font/basicfont/basicfont.go
generated
vendored
2
Godeps/_workspace/src/golang.org/x/image/font/basicfont/basicfont.go
generated
vendored
@@ -10,7 +10,7 @@ package basicfont
|
||||
import (
|
||||
"image"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
// Range maps a contiguous range of runes to vertically adjacent sub-images of
|
||||
|
||||
6
Godeps/_workspace/src/golang.org/x/image/font/basicfont/gen.go
generated
vendored
6
Godeps/_workspace/src/golang.org/x/image/font/basicfont/gen.go
generated
vendored
@@ -18,9 +18,9 @@ import (
|
||||
"path"
|
||||
"path/filepath"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font/plan9font"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"golang.org/x/image/font"
|
||||
"golang.org/x/image/font/plan9font"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
||||
2
Godeps/_workspace/src/golang.org/x/image/font/font.go
generated
vendored
2
Godeps/_workspace/src/golang.org/x/image/font/font.go
generated
vendored
@@ -14,7 +14,7 @@ import (
|
||||
"image/draw"
|
||||
"io"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
// TODO: who is responsible for caches (glyph images, glyph indices, kerns)?
|
||||
|
||||
6
Godeps/_workspace/src/golang.org/x/image/font/plan9font/example_test.go
generated
vendored
6
Godeps/_workspace/src/golang.org/x/image/font/plan9font/example_test.go
generated
vendored
@@ -13,9 +13,9 @@ import (
|
||||
"path"
|
||||
"path/filepath"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font/plan9font"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"golang.org/x/image/font"
|
||||
"golang.org/x/image/font/plan9font"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
func ExampleParseFont() {
|
||||
|
||||
4
Godeps/_workspace/src/golang.org/x/image/font/plan9font/plan9font.go
generated
vendored
4
Godeps/_workspace/src/golang.org/x/image/font/plan9font/plan9font.go
generated
vendored
@@ -21,8 +21,8 @@ import (
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font"
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
|
||||
"golang.org/x/image/font"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
// fontchar describes one character glyph in a subfont.
|
||||
|
||||
2
Godeps/_workspace/src/golang.org/x/image/tiff/reader.go
generated
vendored
2
Godeps/_workspace/src/golang.org/x/image/tiff/reader.go
generated
vendored
@@ -17,7 +17,7 @@ import (
|
||||
"io/ioutil"
|
||||
"math"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/tiff/lzw"
|
||||
"golang.org/x/image/tiff/lzw"
|
||||
)
|
||||
|
||||
// A FormatError reports that the input is not a valid TIFF image.
|
||||
|
||||
2
Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/custom/main.go
generated
vendored
2
Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/custom/main.go
generated
vendored
@@ -9,7 +9,7 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1"
|
||||
"gopkg.in/throttled/throttled.v1"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
2
Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval-many/main.go
generated
vendored
2
Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval-many/main.go
generated
vendored
@@ -9,7 +9,7 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1"
|
||||
"gopkg.in/throttled/throttled.v1"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
2
Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval-vary/main.go
generated
vendored
2
Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval-vary/main.go
generated
vendored
@@ -9,7 +9,7 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1"
|
||||
"gopkg.in/throttled/throttled.v1"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
2
Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval/main.go
generated
vendored
2
Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval/main.go
generated
vendored
@@ -9,7 +9,7 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1"
|
||||
"gopkg.in/throttled/throttled.v1"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
2
Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/memstats/main.go
generated
vendored
2
Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/memstats/main.go
generated
vendored
@@ -11,7 +11,7 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/mattermost/platform/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1"
|
||||
"gopkg.in/throttled/throttled.v1"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user