Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 388 for is_zero (0.23 sec)

  1. test/escape_reflect.go

    	return v.IsValid() || v.IsNil() || v.IsZero()
    }
    
    func is2(x [2]int) bool {
    	v := reflect.ValueOf(x) // ERROR "x does not escape"
    	return v.IsValid() || v.IsNil() || v.IsZero()
    }
    
    func is3(x struct{ a, b int }) bool {
    	v := reflect.ValueOf(x) // ERROR "x does not escape"
    	return v.IsValid() || v.IsNil() || v.IsZero()
    }
    
    func overflow(x int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. pkg/util/async/bounded_frequency_runner.go

    	// record the soonest requested retry time in bfr.retryTime and then only signal
    	// the Loop thread once, just like Run does.
    	bfr.retryMu.Lock()
    	defer bfr.retryMu.Unlock()
    	if !bfr.retryTime.IsZero() && bfr.retryTime.Before(retryTime) {
    		return
    	}
    	bfr.retryTime = retryTime
    
    	select {
    	case bfr.retry <- struct{}{}:
    	default:
    	}
    }
    
    // assumes the lock is not held
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  3. src/syscall/zsyscall_linux_mips64.go

    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	var _p1 unsafe.Pointer
    	if len(buf) > 0 {
    		_p1 = unsafe.Pointer(&buf[0])
    	} else {
    		_p1 = unsafe.Pointer(&_zero)
    	}
    	r0, _, e1 := Syscall6(SYS_READLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 40.3K bytes
    - Viewed (0)
  4. src/syscall/zsyscall_linux_mipsle.go

    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	var _p1 unsafe.Pointer
    	if len(buf) > 0 {
    		_p1 = unsafe.Pointer(&buf[0])
    	} else {
    		_p1 = unsafe.Pointer(&_zero)
    	}
    	r0, _, e1 := Syscall6(SYS_READLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 40.3K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_linux_ppc64.go

    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	var _p1 unsafe.Pointer
    	if len(buf) > 0 {
    		_p1 = unsafe.Pointer(&buf[0])
    	} else {
    		_p1 = unsafe.Pointer(&_zero)
    	}
    	r0, _, e1 := Syscall6(SYS_READLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 41K bytes
    - Viewed (0)
  6. src/debug/gosym/pclntab.go

    func (t *LineTable) funcData(i uint32) funcData {
    	data := t.funcdata[t.funcTab().funcOff(int(i)):]
    	return funcData{t: t, data: data}
    }
    
    // IsZero reports whether f is the zero value.
    func (f funcData) IsZero() bool {
    	return f.t == nil && f.data == nil
    }
    
    // entryPC returns the func's entry PC.
    func (f *funcData) entryPC() uint64 {
    	// In Go 1.18, the first field of _func changed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    			continue
    		}
    
    		if end.Before(thisInstant) {
    			expiry := end.Format(dateFormat)
    			countFiles[expiry] = append(countFiles[expiry], f)
    			if earliest[expiry].IsZero() || earliest[expiry].After(begin) {
    				earliest[expiry] = begin
    			}
    		}
    	}
    	for expiry, files := range countFiles {
    		if notNeeded(expiry, *todo) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. src/internal/poll/fd_poll_runtime.go

    func (fd *FD) SetWriteDeadline(t time.Time) error {
    	return setDeadlineImpl(fd, t, 'w')
    }
    
    func setDeadlineImpl(fd *FD, t time.Time, mode int) error {
    	var d int64
    	if !t.IsZero() {
    		d = int64(time.Until(t))
    		if d == 0 {
    			d = -1 // don't confuse deadline right now with no deadline
    		}
    	}
    	if err := fd.incref(); err != nil {
    		return err
    	}
    	defer fd.decref()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_linux_mips.go

    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	var _p1 unsafe.Pointer
    	if len(buf) > 0 {
    		_p1 = unsafe.Pointer(&buf[0])
    	} else {
    		_p1 = unsafe.Pointer(&_zero)
    	}
    	r0, _, e1 := Syscall6(SYS_READLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 40.3K bytes
    - Viewed (0)
  10. pkg/registry/core/namespace/storage/storage.go

    	// upon first request to delete, we switch the phase to start namespace termination
    	// TODO: enhance graceful deletion's calls to DeleteStrategy to allow phase change and finalizer patterns
    	if namespace.DeletionTimestamp.IsZero() {
    		key, err := r.store.KeyFunc(ctx, name)
    		if err != nil {
    			return nil, false, err
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 13.4K bytes
    - Viewed (0)
Back to top