Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for intPtr (0.13 sec)

  1. pkg/controller/endpointslice/endpointslice_controller_test.go

    				},
    				Spec: v1.ServiceSpec{
    					Ports: []v1.ServicePort{
    						{Name: "tcp-example", TargetPort: intstr.FromInt32(80), Protocol: v1.ProtocolTCP},
    						{Name: "udp-example", TargetPort: intstr.FromInt32(161), Protocol: v1.ProtocolUDP},
    						{Name: "sctp-example", TargetPort: intstr.FromInt32(3456), Protocol: v1.ProtocolSCTP},
    					},
    					Selector:   map[string]string{"foo": "bar"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    	if src == 0 {
    		for {
    			var addr uintptr
    			if tp, addr = tp.next(dst + size); addr == 0 {
    				break
    			}
    			dstx := (*uintptr)(unsafe.Pointer(addr))
    			p := buf.get1()
    			p[0] = *dstx
    		}
    	} else {
    		for {
    			var addr uintptr
    			if tp, addr = tp.next(dst + size); addr == 0 {
    				break
    			}
    			dstx := (*uintptr)(unsafe.Pointer(addr))
    			srcx := (*uintptr)(unsafe.Pointer(src + (addr - dst)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. src/sync/atomic/atomic_test.go

    	}
    }
    
    func TestSwapUintptr(t *testing.T) {
    	var x struct {
    		before uintptr
    		i      uintptr
    		after  uintptr
    	}
    	var m uint64 = magic64
    	magicptr := uintptr(m)
    	x.before = magicptr
    	x.after = magicptr
    	var j uintptr
    	for delta := uintptr(1); delta+delta > delta; delta += delta {
    		k := SwapUintptr(&x.i, delta)
    		if x.i != delta || k != j {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  4. src/runtime/map.go

    		}
    
    		srcK := add(unsafe.Pointer(src), dataOffset+uintptr(i)*uintptr(t.KeySize))
    		srcEle := add(unsafe.Pointer(src), dataOffset+abi.MapBucketCount*uintptr(t.KeySize)+uintptr(i)*uintptr(t.ValueSize))
    		dstK := add(unsafe.Pointer(dst), dataOffset+uintptr(pos)*uintptr(t.KeySize))
    		dstEle := add(unsafe.Pointer(dst), dataOffset+abi.MapBucketCount*uintptr(t.KeySize)+uintptr(pos)*uintptr(t.ValueSize))
    
    		dst.tophash[pos] = src.tophash[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    					Protocol:   "TCP",
    					TargetPort: intstr.IntOrString{Type: intstr.Int, IntVal: 7442},
    				},
    				{
    					Name:       "tcp-8443",
    					Port:       8443,
    					Protocol:   "TCP",
    					TargetPort: intstr.IntOrString{Type: intstr.Int, IntVal: 7442},
    				},
    				{
    					Name:       "http-7557",
    					Port:       7557,
    					Protocol:   "TCP",
    					TargetPort: intstr.IntOrString{Type: intstr.Int, IntVal: 7442},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. src/runtime/mheap.go

    // the heap lock and because it must block GC transitions.
    //
    //go:systemstack
    func (h *mheap) allocSpan(npages uintptr, typ spanAllocType, spanclass spanClass) (s *mspan) {
    	// Function-global state.
    	gp := getg()
    	base, scav := uintptr(0), uintptr(0)
    	growth := uintptr(0)
    
    	// On some platforms we need to provide physical page aligned stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    		}
    
    		// Add the new chunk to the persistentChunks list.
    		for {
    			chunks := uintptr(unsafe.Pointer(persistentChunks))
    			*(*uintptr)(unsafe.Pointer(persistent.base)) = chunks
    			if atomic.Casuintptr((*uintptr)(unsafe.Pointer(&persistentChunks)), chunks, uintptr(unsafe.Pointer(persistent.base))) {
    				break
    			}
    		}
    		persistent.off = alignUp(goarch.PtrSize, align)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    	// for the first frame.
    	u.initAt(^uintptr(0), ^uintptr(0), ^uintptr(0), gp, flags)
    }
    
    func (u *unwinder) initAt(pc0, sp0, lr0 uintptr, gp *g, flags unwindFlags) {
    	// Don't call this "g"; it's too easy get "g" and "gp" confused.
    	if ourg := getg(); ourg == gp && ourg == ourg.m.curg {
    		// The starting sp has been passed in as a uintptr, and the caller may
    		// have other uintptr-typed stack references as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    	return memProfileInternal(len(p), inuseZero, func(r profilerecord.MemProfileRecord) {
    		p[0] = r
    		p = p[1:]
    	})
    }
    
    func iterate_memprof(fn func(*bucket, uintptr, *uintptr, uintptr, uintptr, uintptr)) {
    	lock(&profMemActiveLock)
    	head := (*bucket)(mbuckets.Load())
    	for b := head; b != nil; b = b.allnext {
    		mp := b.mp()
    		fn(b, b.nstk, &b.stk()[0], b.size, mp.active.allocs, mp.active.frees)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_utils_test.go

    		{maxUnavailable: ptr.To(intstr.FromInt32(0)), replicaCount: 0, expectedMaxUnavailable: 1},
    		{maxUnavailable: ptr.To(intstr.FromString("10%")), replicaCount: 25, expectedMaxUnavailable: 2},
    		{maxUnavailable: ptr.To(intstr.FromString("100%")), replicaCount: 5, expectedMaxUnavailable: 5},
    		{maxUnavailable: ptr.To(intstr.FromString("50%")), replicaCount: 5, expectedMaxUnavailable: 2},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
Back to top