Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 88 for told (0.08 sec)

  1. src/runtime/mgcmark.go

    // returns false, the caller must retry the assist.
    func gcParkAssist() bool {
    	lock(&work.assistQueue.lock)
    	// If the GC cycle finished while we were getting the lock,
    	// exit the assist. The cycle can't finish while we hold the
    	// lock.
    	if atomic.Load(&gcBlackenEnabled) == 0 {
    		unlock(&work.assistQueue.lock)
    		return true
    	}
    
    	gp := getg()
    	oldList := work.assistQueue.q
    	work.assistQueue.q.pushBack(gp)
    
    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. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go

    func Renameat(fromfd int, from string, tofd int, to string) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(from)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(to)
    	if err != nil {
    		return
    	}
    	_, _, e1 := syscall_syscall6(libc_renameat_trampoline_addr, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. src/encoding/xml/marshal_test.go

    	{Value: atomValue, ExpectXML: atomXML},
    	{Value: &Generic[int]{1}, ExpectXML: `<Generic><X>1</X></Generic>`},
    	{
    		Value: &Ship{
    			Name:  "Heart of Gold",
    			Pilot: "Computer",
    			Age:   1,
    			Drive: ImprobabilityDrive,
    			Passenger: []*Passenger{
    				{
    					Name:   []string{"Zaphod", "Beeblebrox"},
    					Weight: 7.25,
    				},
    				{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go

    func Renameat(fromfd int, from string, tofd int, to string) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(from)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(to)
    	if err != nil {
    		return
    	}
    	_, _, e1 := syscall_syscall6(libc_renameat_trampoline_addr, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    // (For n>1 the details of sampling may change.)
    func SetMutexProfileFraction(rate int) int {
    	if rate < 0 {
    		return int(mutexprofilerate)
    	}
    	old := mutexprofilerate
    	atomic.Store64(&mutexprofilerate, uint64(rate))
    	return int(old)
    }
    
    //go:linkname mutexevent sync.event
    func mutexevent(cycles int64, skip int) {
    	if cycles < 0 {
    		cycles = 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/math/big/float_test.go

    		}
    	}
    }
    
    func TestFloatInc(t *testing.T) {
    	const n = 10
    	for _, prec := range precList {
    		if 1<<prec < n {
    			continue // prec must be large enough to hold all numbers from 0 to n
    		}
    		var x, one Float
    		x.SetPrec(prec)
    		one.SetInt64(1)
    		for i := 0; i < n; i++ {
    			x.Add(&x, &one)
    		}
    		if x.Cmp(new(Float).SetInt64(n)) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go

    func Renameat(fromfd int, from string, tofd int, to string) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(from)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(to)
    	if err != nil {
    		return
    	}
    	_, _, e1 := syscall_syscall6(libc_renameat_trampoline_addr, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers_test.go

    		UpdateType: kubetypes.SyncPodUpdate,
    	})
    	// Wait for the previous work to be delivered to the worker
    	drainAllWorkers(podWorkers)
    	channels.Channel("5-static").Hold()
    	podWorkers.UpdatePod(UpdatePodOptions{
    		Pod:        newNamedPod("5-static", "test1", "pod1", true),
    		UpdateType: kubetypes.SyncPodKill,
    	})
    	podWorkers.UpdatePod(UpdatePodOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ppc64/asm.go

    //
    //  2. R2 holds the TOC pointer on entry. The caller has already saved R2 to the TOC stack save slot.
    //
    //  3. R2 does not hold the TOC pointer on entry. The caller has no expectations of R2.
    //
    // Go only needs case 1 and 3 today. Go symbols which have AttrShare set could use case 2, but case 1 always
    // works in those cases too.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go

    func Renameat(fromfd int, from string, tofd int, to string) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(from)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(to)
    	if err != nil {
    		return
    	}
    	_, _, e1 := syscall_syscall6(libc_renameat_trampoline_addr, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
Back to top