Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 266 for tp (0.02 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go

    	SYS_CLOCK_GETTIME            = 232 // { int clock_gettime(clockid_t clock_id, struct timespec *tp); }
    	SYS_CLOCK_SETTIME            = 233 // { int clock_settime(clockid_t clock_id, const struct timespec *tp); }
    	SYS_CLOCK_GETRES             = 234 // { int clock_getres(clockid_t clock_id, struct timespec *tp); }
    	SYS_KTIMER_CREATE            = 235 // { int ktimer_create(clockid_t clock_id, struct sigevent *evp, int *timerid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go

    	SYS_CLOCK_GETTIME            = 232 // { int clock_gettime(clockid_t clock_id, struct timespec *tp); }
    	SYS_CLOCK_SETTIME            = 233 // { int clock_settime(clockid_t clock_id, const struct timespec *tp); }
    	SYS_CLOCK_GETRES             = 234 // { int clock_getres(clockid_t clock_id, struct timespec *tp); }
    	SYS_KTIMER_CREATE            = 235 // { int ktimer_create(clockid_t clock_id, struct sigevent *evp, int *timerid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_CLOCK_GETTIME            = 232 // { int clock_gettime(clockid_t clock_id, struct timespec *tp); }
    	SYS_CLOCK_SETTIME            = 233 // { int clock_settime(clockid_t clock_id, const struct timespec *tp); }
    	SYS_CLOCK_GETRES             = 234 // { int clock_getres(clockid_t clock_id, struct timespec *tp); }
    	SYS_KTIMER_CREATE            = 235 // { int ktimer_create(clockid_t clock_id, struct sigevent *evp, int *timerid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

         */
        @Override
        public boolean overlaps ( SmbResourceLocator other ) throws CIFSException {
            String tp = getCanonicalURL();
            String op = other.getCanonicalURL();
            return getAddress().equals(other.getAddress()) && tp.regionMatches(true, 0, op, 0, Math.min(tp.length(), op.length()));
        }
    
    
        /**
         * @param dr
         * @param reqPath
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:24:53 UTC 2019
    - 23.9K bytes
    - Viewed (0)
  5. src/time/mono_test.go

    	ticker := NewTicker(1)
    	yes("<-Tick(1)", <-ticker.C)
    	ticker.Stop()
    	no("Date(2009, 11, 23, 0, 0, 0, 0, UTC)", Date(2009, 11, 23, 0, 0, 0, 0, UTC))
    	tp, _ := Parse(UnixDate, "Sat Mar  7 11:06:39 PST 2015")
    	no(`Parse(UnixDate, "Sat Mar  7 11:06:39 PST 2015")`, tp)
    	no("Unix(1486057371, 0)", Unix(1486057371, 0))
    
    	yes("Now()", Now())
    
    	tu := Unix(1486057371, 0)
    	tm := tu
    	SetMono(&tm, 123456)
    	no("tu", tu)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 19 17:10:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  6. pkg/kubelet/server/server.go

    	tlsOptions *TLSOptions,
    	auth AuthInterface,
    	tp oteltrace.TracerProvider) {
    
    	address := netutils.ParseIPSloppy(kubeCfg.Address)
    	port := uint(kubeCfg.Port)
    	klog.InfoS("Starting to listen", "address", address, "port", port)
    	handler := NewServer(host, resourceAnalyzer, auth, kubeCfg)
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.KubeletTracing) {
    		handler.InstallTracingFilter(tp)
    	}
    
    	s := &http.Server{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  7. src/runtime/signal_freebsd_riscv64.go

    func (c *sigctxt) ra() uint64  { return c.regs().mc_gpregs.gp_ra }
    func (c *sigctxt) sp() uint64  { return c.regs().mc_gpregs.gp_sp }
    func (c *sigctxt) gp() uint64  { return c.regs().mc_gpregs.gp_gp }
    func (c *sigctxt) tp() uint64  { return c.regs().mc_gpregs.gp_tp }
    func (c *sigctxt) t0() uint64  { return c.regs().mc_gpregs.gp_t[0] }
    func (c *sigctxt) t1() uint64  { return c.regs().mc_gpregs.gp_t[1] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:17:13 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  8. src/go/types/builtins.go

    func (check *Checker) applyTypeFunc(f func(Type) Type, x *operand, id builtinId) Type {
    	if tp, _ := Unalias(x.typ).(*TypeParam); tp != nil {
    		// Test if t satisfies the requirements for the argument
    		// type and collect possible result types at the same time.
    		var terms []*Term
    		if !tp.is(func(t *term) bool {
    			if t == nil {
    				return false
    			}
    			if r := f(t.typ); r != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_freebsd_arm64.go

    	SYS_CLOCK_GETTIME            = 232 // { int clock_gettime(clockid_t clock_id, struct timespec *tp); }
    	SYS_CLOCK_SETTIME            = 233 // { int clock_settime( clockid_t clock_id, const struct timespec *tp); }
    	SYS_CLOCK_GETRES             = 234 // { int clock_getres(clockid_t clock_id, struct timespec *tp); }
    	SYS_KTIMER_CREATE            = 235 // { int ktimer_create(clockid_t clock_id, struct sigevent *evp, int *timerid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/typecheck.go

    		if constant.Sign(x) < 0 {
    			base.Errorf("invalid slice index %v (index must be non-negative)", r)
    			return false
    		} else if tp != nil && tp.NumElem() >= 0 && constant.Compare(x, token.GTR, constant.MakeInt64(tp.NumElem())) {
    			base.Errorf("invalid slice index %v (out of bounds for %d-element array)", r, tp.NumElem())
    			return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top