- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 514 for Uint64 (0.1 sec)
-
cmd/os-instrumented.go
ioutilx.OsOpenFile = OpenFile ioutilx.OpenFileDirectIO = OpenFileDirectIO ioutilx.OsOpen = Open } type osMetrics struct { // All fields must be accessed atomically and aligned. operations [osMetricLast]uint64 latency [osMetricLast]lockedLastMinuteLatency } // time an os action. func (o *osMetrics) time(s osMetric) func() { startTime := time.Now() return func() { duration := time.Since(startTime)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Feb 15 01:09:38 UTC 2024 - 6.3K bytes - Viewed (0) -
api/go1.5.txt
pkg go/types, type Sizes interface, Alignof(Type) int64 pkg go/types, type Sizes interface, Offsetsof([]*Var) []int64 pkg go/types, type Sizes interface, Sizeof(Type) int64 pkg go/types, type Slice struct pkg go/types, type StdSizes struct pkg go/types, type StdSizes struct, MaxAlign int64 pkg go/types, type StdSizes struct, WordSize int64 pkg go/types, type Struct struct pkg go/types, type Tuple struct
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Jul 30 21:14:09 UTC 2015 - 46.6K bytes - Viewed (0) -
src/archive/tar/strconv.go
return 0 } if inv == 0xff { return ^int64(x) } return int64(x) } // Normal case is base-8 (octal) format. return p.parseOctal(b) } // formatNumeric encodes x into b using base-8 (octal) encoding if possible. // Otherwise it will attempt to use base-256 (binary) encoding. func (f *formatter) formatNumeric(b []byte, x int64) { if fitsInOctal(len(b), x) { f.formatOctal(b, x) return }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Aug 01 14:28:42 UTC 2023 - 9K bytes - Viewed (0) -
api/go1.21.txt
pkg log/slog, method (Value) Int64() int64 #56345 pkg log/slog, method (Value) Kind() Kind #56345 pkg log/slog, method (Value) LogValuer() LogValuer #56345 pkg log/slog, method (Value) Resolve() Value #56345 pkg log/slog, method (Value) String() string #56345 pkg log/slog, method (Value) Time() time.Time #56345 pkg log/slog, method (Value) Uint64() uint64 #56345 pkg log/slog, type Attr struct #56345
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Aug 07 09:39:17 UTC 2023 - 25.6K bytes - Viewed (0) -
api/go1.14.txt
pkg syscall (freebsd-arm64-cgo), type IfData struct, Mtu uint64 pkg syscall (freebsd-arm64-cgo), type IfData struct, Noproto uint64 pkg syscall (freebsd-arm64-cgo), type IfData struct, Obytes uint64 pkg syscall (freebsd-arm64-cgo), type IfData struct, Oerrors uint64 pkg syscall (freebsd-arm64-cgo), type IfData struct, Omcasts uint64 pkg syscall (freebsd-arm64-cgo), type IfData struct, Opackets uint64
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 508.9K bytes - Viewed (0) -
internal/bucket/bandwidth/reader.go
} err = r.throttle.WaitN(r.ctx, tokens) if err != nil { return } n, err = r.r.Read(buf[:need]) if err != nil { r.lastErr = err return } r.m.updateMeasurement(r.opts.BucketOptions, uint64(tokens)) return } // NewMonitoredReader returns reference to a monitored reader that throttles reads to configured bandwidth for the // bucket.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 12 14:57:31 UTC 2024 - 3.2K bytes - Viewed (0) -
internal/event/event.go
S3 Metadata `json:"s3"` Source Source `json:"source"` Type madmin.TraceType `json:"-"` } // Mask returns the type as mask. func (e Event) Mask() uint64 { return e.EventName.Mask() } // Log represents event information for some event targets. type Log struct { EventName Name Key string Records []Event
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 20 00:53:08 UTC 2023 - 3.4K bytes - Viewed (0) -
internal/bucket/object/lock/lock_test.go
} } // TestUnmarshalDefaultRetention checks if default retention // marshaling and unmarshalling work as expected func TestUnmarshalDefaultRetention(t *testing.T) { days := uint64(4) years := uint64(1) zerodays := uint64(0) invalidDays := uint64(maximumRetentionDays + 1) tests := []struct { value DefaultRetention expectedErr error expectErr bool }{ { value: DefaultRetention{Mode: "retain"},
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Jun 29 01:20:27 UTC 2024 - 17.1K bytes - Viewed (0) -
api/go1.20.txt
pkg syscall (freebsd-riscv64), type Rusage struct, Msgrcv int64 #53466 pkg syscall (freebsd-riscv64), type Rusage struct, Msgsnd int64 #53466 pkg syscall (freebsd-riscv64), type Rusage struct, Nivcsw int64 #53466 pkg syscall (freebsd-riscv64), type Rusage struct, Nsignals int64 #53466 pkg syscall (freebsd-riscv64), type Rusage struct, Nswap int64 #53466 pkg syscall (freebsd-riscv64), type Rusage struct, Nvcsw int64 #53466
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 21:23:32 UTC 2023 - 602.6K bytes - Viewed (0) -
src/cmd/asm/internal/asm/parse.go
return 0 } // positiveAtoi returns an int64 that must be >= 0. func (p *Parser) positiveAtoi(str string) int64 { value, err := strconv.ParseInt(str, 0, 64) if err != nil { p.errorf("%s", err) } if value < 0 { p.errorf("%s overflows int64", str) } return value } func (p *Parser) atoi(str string) uint64 { value, err := strconv.ParseUint(str, 0, 64) if err != nil {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 04 18:16:59 UTC 2024 - 36.9K bytes - Viewed (0)