- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 1,405 for Golang (0.05 sec)
-
CHANGELOG/CHANGELOG-1.32.md
- go.uber.org/zap: v1.26.0 → v1.27.0 - golang.org/x/crypto: v0.24.0 → v0.28.0 - golang.org/x/exp: f3d0a9c → 8a7402a - golang.org/x/lint: 1621716 → d0100b6 - golang.org/x/mod: v0.17.0 → v0.21.0 - golang.org/x/net: v0.26.0 → v0.30.0 - golang.org/x/oauth2: v0.21.0 → v0.23.0 - golang.org/x/sync: v0.7.0 → v0.8.0 - golang.org/x/sys: v0.21.0 → v0.26.0 - golang.org/x/telemetry: f48c80b → bda5523
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Tue Dec 16 18:27:41 UTC 2025 - 448.1K bytes - Viewed (0) -
cmd/os-dirent_namelen_linux.go
const nameBufLen = uint16(len(nameBuf)) limit := dirent.Reclen - fixedHdr if limit > nameBufLen { limit = nameBufLen } // Avoid bugs in long file names // https://github.com/golang/tools/commit/5f9a5413737ba4b4f692214aebee582b47c8be74 nameLen := bytes.IndexByte(nameBuf[:limit], 0) if nameLen < 0 { return 0, fmt.Errorf("failed to find terminating 0 byte in dirent") } return uint64(nameLen), nil
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Thu Aug 19 01:35:22 UTC 2021 - 1.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.19.md
- go.uber.org/atomic: v1.3.2 → v1.4.0 - golang.org/x/crypto: bac4c82 → 75b2880 - golang.org/x/exp: 4b39c73 → da58074 - golang.org/x/image: 0694c2d → cff245a - golang.org/x/lint: 959b441 → fdd1cda - golang.org/x/mobile: d3739f8 → d2bd2a2 - golang.org/x/mod: 4bf6d31 → v0.3.0 - golang.org/x/net: 13f9640 → ab34263 - golang.org/x/oauth2: 0f29369 → 858c2ad - golang.org/x/sys: fde4db3 → ed371f2
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Wed Jan 05 05:42:32 UTC 2022 - 489.7K bytes - Viewed (0) -
internal/config/lambda/target/lazyinit.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package target import ( "sync" "sync/atomic" ) // Inspired from Golang sync.Once but it is only marked // initialized when the provided function returns nil. type lazyInit struct { done uint32 m sync.Mutex } func (l *lazyInit) Do(f func() error) error {
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Mar 07 16:12:41 UTC 2023 - 1.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.28.md
- go.uber.org/multierr: v1.6.0 → v1.11.0 - golang.org/x/crypto: v0.1.0 → v0.11.0 - golang.org/x/exp: 6cc2880 → a9213ee - golang.org/x/mod: v0.9.0 → v0.10.0 - golang.org/x/net: v0.8.0 → v0.13.0 - golang.org/x/oauth2: ee48083 → v0.8.0 - golang.org/x/sync: v0.1.0 → v0.2.0 - golang.org/x/sys: v0.6.0 → v0.10.0 - golang.org/x/term: v0.6.0 → v0.10.0 - golang.org/x/text: v0.8.0 → v0.11.0
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Fri Sep 05 03:47:18 UTC 2025 - 456.9K bytes - Viewed (1) -
CHANGELOG/CHANGELOG-1.26.md
- go.opencensus.io: v0.23.0 → v0.24.0 - golang.org/x/mod: v0.9.0 → v0.12.0 - golang.org/x/oauth2: ee48083 → v0.7.0 - golang.org/x/sync: v0.1.0 → v0.3.0 - golang.org/x/time: 90d013b → v0.3.0 - golang.org/x/tools: v0.6.0 → v0.12.0 - google.golang.org/api: v0.60.0 → v0.114.0 - google.golang.org/genproto: c8bf987 → 438c736 - google.golang.org/grpc: v1.49.0 → v1.56.3 - google.golang.org/protobuf: v1.28.1 → v1.31.0
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Thu Mar 14 16:24:51 UTC 2024 - 425.7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.22.md
- go.uber.org/zap: v1.10.0 → v1.17.0 - golang.org/x/lint: 738671d → 6edffad - golang.org/x/mod: ce943fd → v0.4.2 - golang.org/x/net: 3d97a24 → 37e1c6a - golang.org/x/sync: 67f06af → 036812b - golang.org/x/sys: a50acf3 → 59db8d7 - golang.org/x/text: v0.3.4 → v0.3.6 - golang.org/x/time: f8bda1e → 1f47c86 - golang.org/x/tools: v0.1.0 → v0.1.2 - google.golang.org/genproto: 8816d57 → f16073e
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Tue Dec 13 12:43:45 UTC 2022 - 454.1K bytes - Viewed (0) -
internal/http/close.go
xioutil "github.com/minio/minio/internal/ioutil" ) // DrainBody close non nil response with any response Body. // convenient wrapper to drain any remaining data on response body. // // Subsequently this allows golang http RoundTripper // to reuse the same connection for future requests. func DrainBody(respBody io.ReadCloser) { // Callers should close resp.Body when done reading from it.
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 1.7K bytes - Viewed (0) -
README.md
# GORM The fantastic ORM library for Golang, aims to be developer friendly. [](https://goreportcard.com/report/github.com/go-gorm/gorm) [](https://github.com/go-gorm/gorm/actions) [](https://opensource.org/licenses/MIT)
Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Thu Oct 30 09:30:20 UTC 2025 - 1.8K bytes - Viewed (0) -
internal/disk/fdatasync_linux.go
// // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. package disk import ( "os" "syscall" "golang.org/x/sys/unix" ) // Fdatasync - fdatasync() is similar to fsync(), but does not flush modified metadata // unless that metadata is needed in order to allow a subsequent data retrieval
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Wed Sep 29 23:40:28 UTC 2021 - 1.8K bytes - Viewed (0)