Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 266 for tp (0.02 sec)

  1. src/cmd/compile/internal/types2/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.1K bytes
    - Viewed (0)
  2. src/syscall/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 Sep 29 22:39:46 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/hilbert_test.go

    		}
    		g.p("\n")
    	}
    	g.p(")\n\n")
    }
    
    func (g *gen) product(n int) {
    	g.p(`// Product matrix
    const (
    `)
    	for i := 0; i < n; i++ {
    		for j := 0; j < n; j++ {
    			g.p("\tp%d_%d = ", i, j)
    			for k := 0; k < n; k++ {
    				if k > 0 {
    					g.p(" + ")
    				}
    				g.p("h%d_%d*i%d_%d", i, k, k, j)
    			}
    			g.p("\n")
    		}
    		g.p("\n")
    	}
    	g.p(")\n\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 21:00:12 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    	pluginRunner := exec.New()
    
    	plugins, err := ProbeVolumePlugins(featureGate)
    	if err != nil {
    		return nil, err
    	}
    	var tp oteltrace.TracerProvider
    	tp = noopoteltrace.NewTracerProvider()
    	if utilfeature.DefaultFeatureGate.Enabled(features.KubeletTracing) {
    		tp, err = newTracerProvider(s)
    		if err != nil {
    			return nil, err
    		}
    	}
    	return &kubelet.Dependencies{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller.go

    			// protocol conflict for a port causes unstable protocol selection for a port.
    			for _, tp := range tpsList {
    				svcPort := tps[tp]
    				out = append(out, model.ServiceTarget{
    					Service: modelService,
    					Port: model.ServiceInstancePort{
    						ServicePort: svcPort,
    						TargetPort:  uint32(tp.Port),
    					},
    				})
    			}
    		}
    	}
    	return out, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  6. src/runtime/sys_netbsd_amd64.s

    	LEAQ	8(SP), SI		// arg 2 - tp
    	MOVL	$SYS___clock_gettime50, AX
    	SYSCALL
    	MOVQ	8(SP), AX		// sec
    	MOVQ	16(SP), DX		// nsec
    
    	// sec is in AX, nsec in DX
    	MOVQ	AX, sec+0(FP)
    	MOVL	DX, nsec+8(FP)
    	RET
    
    TEXT runtime·nanotime1(SB),NOSPLIT,$32
    	MOVQ	$CLOCK_MONOTONIC, DI	// arg 1 - clock_id
    	LEAQ	8(SP), SI		// arg 2 - tp
    	MOVL	$SYS___clock_gettime50, AX
    	SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. src/go/types/hilbert_test.go

    		}
    		g.p("\n")
    	}
    	g.p(")\n\n")
    }
    
    func (g *gen) product(n int) {
    	g.p(`// Product matrix
    const (
    `)
    	for i := 0; i < n; i++ {
    		for j := 0; j < n; j++ {
    			g.p("\tp%d_%d = ", i, j)
    			for k := 0; k < n; k++ {
    				if k > 0 {
    					g.p(" + ")
    				}
    				g.p("h%d_%d*i%d_%d", i, k, k, j)
    			}
    			g.p("\n")
    		}
    		g.p("\n")
    	}
    	g.p(")\n\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/runtime/sys_netbsd_386.s

    	INT	$0x80
    	RET
    
    // func walltime() (sec int64, nsec int32)
    TEXT runtime·walltime(SB), NOSPLIT, $32
    	LEAL	12(SP), BX
    	MOVL	$CLOCK_REALTIME, 4(SP)	// arg 1 - clock_id
    	MOVL	BX, 8(SP)		// arg 2 - tp
    	MOVL	$SYS___clock_gettime50, AX
    	INT	$0x80
    
    	MOVL	12(SP), AX		// sec - l32
    	MOVL	AX, sec_lo+0(FP)
    	MOVL	16(SP), AX		// sec - h32
    	MOVL	AX, sec_hi+4(FP)
    
    	MOVL	20(SP), BX		// nsec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. src/runtime/sys_netbsd_arm64.s

    	SVC	$SYS___setitimer50
    	RET
    
    // func walltime() (sec int64, nsec int32)
    TEXT runtime·walltime(SB), NOSPLIT, $32
    	MOVW	$CLOCK_REALTIME, R0	// arg 1 - clock_id
    	MOVD	$8(RSP), R1		// arg 2 - tp
    	SVC	$SYS___clock_gettime50
    
    	MOVD	8(RSP), R0		// sec
    	MOVD	16(RSP), R1		// nsec
    
    	// sec is in R0, nsec in R1
    	MOVD	R0, sec+0(FP)
    	MOVW	R1, nsec+8(FP)
    	RET
    
    // int64 nanotime1(void) so really
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. src/runtime/heapdump.go

    			throw("heapdump: out of memory")
    		}
    		tmpbuf = (*[1 << 30]byte)(p)[:n]
    	}
    	// Convert heap bitmap to pointer bitmap.
    	clear(tmpbuf[:nptr/8+1])
    	s := spanOf(p)
    	tp := s.typePointersOf(p, size)
    	for {
    		var addr uintptr
    		if tp, addr = tp.next(p + size); addr == 0 {
    			break
    		}
    		i := (addr - p) / goarch.PtrSize
    		tmpbuf[i/8] |= 1 << (i % 8)
    	}
    	return bitvector{int32(nptr), &tmpbuf[0]}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top