Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 160 for fInt64 (1.41 sec)

  1. staging/src/k8s.io/api/storage/v1alpha1/generated.pb.go

    	return n
    }
    
    func sovGenerated(x uint64) (n int) {
    	return (math_bits.Len64(x|1) + 6) / 7
    }
    func sozGenerated(x uint64) (n int) {
    	return sovGenerated(uint64((x << 1) ^ uint64((int64(x) >> 63))))
    }
    func (this *CSIStorageCapacity) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&CSIStorageCapacity{`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 76.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/rbac/v1beta1/generated.pb.go

    	l = len(m.Name)
    	n += 1 + l + sovGenerated(uint64(l))
    	return n
    }
    
    func (m *Subject) Size() (n int) {
    	if m == nil {
    		return 0
    	}
    	var l int
    	_ = l
    	l = len(m.Kind)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = len(m.APIGroup)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = len(m.Name)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = len(m.Namespace)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1alpha1/generated.pb.go

    	l = len(m.Name)
    	n += 1 + l + sovGenerated(uint64(l))
    	return n
    }
    
    func (m *Subject) Size() (n int) {
    	if m == nil {
    		return 0
    	}
    	var l int
    	_ = l
    	l = len(m.Kind)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = len(m.APIVersion)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = len(m.Name)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = len(m.Namespace)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/rbac/v1/generated.pb.go

    	l = len(m.Name)
    	n += 1 + l + sovGenerated(uint64(l))
    	return n
    }
    
    func (m *Subject) Size() (n int) {
    	if m == nil {
    		return 0
    	}
    	var l int
    	_ = l
    	l = len(m.Kind)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = len(m.APIGroup)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = len(m.Name)
    	n += 1 + l + sovGenerated(uint64(l))
    	l = len(m.Namespace)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    //
    // nowritebarrier is only advisory here.
    //
    //go:nowritebarrier
    func markroot(gcw *gcWork, i uint32, flushBgCredit bool) int64 {
    	// Note: if you add a case here, please also update heapdump.go:dumproots.
    	var workDone int64
    	var workCounter *atomic.Int64
    	switch {
    	case work.baseData <= i && i < work.baseBSS:
    		workCounter = &gcController.globalsScanWork
    		for _, datap := range activeModules() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top