Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 192 for fInt64 (0.55 sec)

  1. src/fmt/fmt_test.go

    	{"%3c", '⌘', "  ⌘"},
    	{"%-3c", '⌘', "⌘  "},
    	{"%c", uint64(0x100000000), "\ufffd"},
    	// Runes that are not printable.
    	{"%c", '\U00000e00', "\u0e00"},
    	{"%c", '\U0010ffff', "\U0010ffff"},
    	// Runes that are not valid.
    	{"%c", -1, "�"},
    	{"%c", 0xDC80, "�"},
    	{"%c", rune(0x110000), "�"},
    	{"%c", int64(0xFFFFFFFFF), "�"},
    	{"%c", uint64(0xFFFFFFFFF), "�"},
    
    	// escaped characters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    }
    
    func direntIno(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(Dirent{}.Ino), unsafe.Sizeof(Dirent{}.Ino))
    }
    
    func direntReclen(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(Dirent{}.Reclen), unsafe.Sizeof(Dirent{}.Reclen))
    }
    
    func direntNamlen(buf []byte) (uint64, bool) {
    	reclen, ok := direntReclen(buf)
    	if !ok {
    		return 0, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	reason containerKillReason
    }
    
    // containerResources holds the set of resources applicable to the running container
    type containerResources struct {
    	memoryLimit   int64
    	memoryRequest int64
    	cpuLimit      int64
    	cpuRequest    int64
    }
    
    // containerToUpdateInfo contains necessary information to update a container's resources.
    type containerToUpdateInfo struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    	return dataUsageInfo, nil
    }
    
    func (s *xlStorage) getDeleteAttribute() uint64 {
    	attr := "user.total_deletes"
    	buf, err := xattr.LGet(s.formatFile, attr)
    	if err != nil {
    		// We start off with '0' if we can read the attributes
    		return 0
    	}
    	return binary.LittleEndian.Uint64(buf[:8])
    }
    
    func (s *xlStorage) getWriteAttribute() uint64 {
    	attr := "user.total_writes"
    	buf, err := xattr.LGet(s.formatFile, attr)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  5. src/time/format.go

    			overflow = true
    			continue
    		}
    		y := x*10 + uint64(c) - '0'
    		if y > 1<<63 {
    			overflow = true
    			continue
    		}
    		x = y
    		scale *= 10
    	}
    	return x, scale, s[i:]
    }
    
    var unitMap = map[string]uint64{
    	"ns": uint64(Nanosecond),
    	"us": uint64(Microsecond),
    	"µs": uint64(Microsecond), // U+00B5 = micro symbol
    	"μs": uint64(Microsecond), // U+03BC = Greek letter mu
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. src/internal/trace/order.go

    		extra := makeEvent(evt, curCtx, go122.EvProcSteal, ev.time, uint64(curCtx.P))
    		extra.base.extra(version.Go122)[0] = uint64(go122.ProcSyscall)
    		o.queue.push(extra)
    	}
    	o.queue.push(Event{table: evt, ctx: curCtx, base: *ev})
    	return newCtx, true, nil
    }
    
    func (o *ordering) advanceUserTaskBegin(ev *baseEvent, evt *evTable, m ThreadID, gen uint64, curCtx schedCtx) (schedCtx, bool, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  7. src/reflect/type.go

    	// OverflowInt reports whether the int64 x cannot be represented by type t.
    	// It panics if t's Kind is not Int, Int8, Int16, Int32, or Int64.
    	OverflowInt(x int64) bool
    
    	// OverflowUint reports whether the uint64 x cannot be represented by type t.
    	// It panics if t's Kind is not Uint, Uintptr, Uint8, Uint16, Uint32, or Uint64.
    	OverflowUint(x uint64) bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/obj.go

    		return 0, err
    	}
    	return int64(encodeCBImmediate(uint32(imm))), nil
    }
    
    func EncodeCJImmediate(imm int64) (int64, error) {
    	if err := immIFits(imm, 12); err != nil {
    		return 0, err
    	}
    	if err := immEven(imm); err != nil {
    		return 0, err
    	}
    	return int64(encodeCJImmediate(uint32(imm))), nil
    }
    
    func EncodeIImmediate(imm int64) (int64, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS___RMDIR_A<<4, uintptr(unsafe.Pointer(_p0)))
    	runtime.ExitSyscall()
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Seek(fd int, offset int64, whence int) (off int64, err error) {
    	runtime.EnterSyscall()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  10. cmd/storage-datatypes_gen_test.go

    	bts := make([]byte, 0, v.Msgsize())
    	bts, _ = v.MarshalMsg(bts[0:0])
    	b.SetBytes(int64(len(bts)))
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		bts, _ = v.MarshalMsg(bts[0:0])
    	}
    }
    
    func BenchmarkUnmarshalBaseOptions(b *testing.B) {
    	v := BaseOptions{}
    	bts, _ := v.MarshalMsg(nil)
    	b.ReportAllocs()
    	b.SetBytes(int64(len(bts)))
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 62.6K bytes
    - Viewed (0)
Back to top