- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 230 for gotland (0.06 sec)
-
internal/s3select/json/record.go
func jsonFloat(f float64) string { var tmp [32]byte dst := tmp[:0] // Convert as if by ES6 number to string conversion. // This matches most other JSON generators. // See golang.org/issue/6384 and golang.org/issue/14135. // Like fmt %g, but the exponent cutoffs are different // and exponents themselves are not padded to two digits. abs := math.Abs(f) fmt := byte('f') if abs != 0 {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 23 19:35:41 UTC 2024 - 5.3K bytes - Viewed (0) -
docs/debugging/xattr/go.mod
go 1.21 require ( github.com/olekukonko/tablewriter v0.0.5 github.com/pkg/xattr v0.4.9 ) require ( github.com/mattn/go-runewidth v0.0.15 // indirect github.com/rivo/uniseg v0.4.4 // indirect golang.org/x/sys v0.15.0 // indirect
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon May 27 19:17:46 UTC 2024 - 289 bytes - Viewed (0) -
model.go
package gorm import "time" // Model a basic GoLang struct which includes the following fields: ID, CreatedAt, UpdatedAt, DeletedAt // It may be embedded into your model or you may build your own model without it // // type User struct { // gorm.Model // } type Model struct { ID uint `gorm:"primarykey"` CreatedAt time.Time UpdatedAt time.Time DeletedAt DeletedAt `gorm:"index"`
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Sat Feb 18 01:06:43 UTC 2023 - 396 bytes - Viewed (0) -
schema/naming.go
package schema import ( "crypto/sha1" "encoding/hex" "regexp" "strings" "unicode/utf8" "github.com/jinzhu/inflection" "golang.org/x/text/cases" "golang.org/x/text/language" ) // Namer namer interface type Namer interface { TableName(table string) string SchemaName(table string) string ColumnName(table, column string) string JoinTableName(joinTable string) string RelationshipFKName(Relationship) string
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Wed Jun 12 03:46:59 UTC 2024 - 5.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.29.md
- go.opentelemetry.io/proto/otlp: v0.19.0 → v1.0.0 - golang.org/x/crypto: v0.11.0 → v0.14.0 - golang.org/x/mod: v0.10.0 → v0.12.0 - golang.org/x/net: v0.13.0 → v0.17.0 - golang.org/x/oauth2: v0.8.0 → v0.10.0 - golang.org/x/sync: v0.2.0 → v0.3.0 - golang.org/x/sys: v0.10.0 → v0.13.0 - golang.org/x/term: v0.10.0 → v0.13.0 - golang.org/x/text: v0.11.0 → v0.13.0 - golang.org/x/tools: v0.8.0 → v0.12.0
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Wed Oct 23 04:37:31 UTC 2024 - 375.1K bytes - Viewed (1) -
cmd/jwt.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import ( "errors" "net/http" "time" jwtgo "github.com/golang-jwt/jwt/v4" jwtreq "github.com/golang-jwt/jwt/v4/request" "github.com/minio/minio/internal/auth" xjwt "github.com/minio/minio/internal/jwt" "github.com/minio/pkg/v3/policy" ) const ( jwtAlgorithm = "Bearer"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 22 07:04:48 UTC 2024 - 4.5K bytes - Viewed (0) -
internal/ioutil/discard.go
// io.Writer implementation alone avoids also unnecessary buffer copies, // and as such incurred latencies. var Discard io.Writer = discard{} // discard is /dev/null for Golang. type discard struct{} func (discard) Write(p []byte) (int, error) { return len(p), nil } // DiscardReader discarded reader func DiscardReader(r io.Reader) { Copy(Discard, r)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Nov 06 22:26:08 UTC 2023 - 1.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.27.md
- go.uber.org/goleak: v1.2.0 → v1.2.1 - golang.org/x/mod: v0.6.0 → v0.9.0 - golang.org/x/net: 1e63c2f → v0.8.0 - golang.org/x/sync: 886fb93 → v0.1.0 - golang.org/x/sys: v0.3.0 → v0.6.0 - golang.org/x/term: v0.3.0 → v0.6.0 - golang.org/x/text: v0.5.0 → v0.8.0 - golang.org/x/tools: v0.2.0 → v0.7.0 - golang.org/x/xerrors: 5ec99f8 → 04be3eb - google.golang.org/grpc: v1.49.0 → v1.51.0
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Wed Jul 17 07:48:22 UTC 2024 - 466.3K bytes - Viewed (0) -
.github/CODE_OF_CONDUCT.md
# Code of Conduct
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Nov 13 16:48:04 UTC 2017 - 95 bytes - Viewed (0) -
internal/jwt/parser.go
// original file https://github.com/golang-jwt/jwt/blob/main/parser.go // borrowed under MIT License https://github.com/golang-jwt/jwt/blob/main/LICENSE import ( "bytes" "crypto" "crypto/hmac" "encoding/base64" "errors" "fmt" "hash" "sync" "time" "github.com/buger/jsonparser" "github.com/dustin/go-humanize" jwtgo "github.com/golang-jwt/jwt/v4" jsoniter "github.com/json-iterator/go" )
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 17 16:45:46 UTC 2024 - 14.1K bytes - Viewed (0)