Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 210 for fInt64 (0.2 sec)

  1. 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)
  2. pkg/kubelet/eviction/helpers.go

    					available: resource.NewQuantity(int64(*containerFs.InodesFree), resource.DecimalSI),
    					capacity:  resource.NewQuantity(int64(*containerFs.Inodes), resource.DecimalSI),
    					time:      containerFs.Time,
    				}
    			}
    		}
    	}
    	if rlimit := summary.Node.Rlimit; rlimit != nil {
    		if rlimit.NumOfRunningProcesses != nil && rlimit.MaxPID != nil {
    			available := int64(*rlimit.MaxPID) - int64(*rlimit.NumOfRunningProcesses)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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 (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top