Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 70 for intPtr (0.2 sec)

  1. pkg/controller/endpoint/endpoints_controller_test.go

    		Spec: v1.ServiceSpec{
    			Selector: map[string]string{"foo": "bar"},
    			Ports: []v1.ServicePort{
    				{Name: "port0", Port: 80, Protocol: "TCP", TargetPort: intstr.FromInt32(8080)},
    				{Name: "port1", Port: 88, Protocol: "TCP", TargetPort: intstr.FromInt32(8088)},
    			},
    		},
    	})
    	err := endpoints.syncService(tCtx, "other/foo")
    	if err != nil {
    		t.Errorf("Unexpected error syncing service %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. src/runtime/mgcmark.go

    	// then b0 + rootBlockBytes might wrap around.
    	// These tests are written to avoid any possible overflow.
    	off := uintptr(shard) * rootBlockBytes
    	if off >= n0 {
    		return 0
    	}
    	b := b0 + off
    	ptrmask := (*uint8)(add(unsafe.Pointer(ptrmask0), uintptr(shard)*(rootBlockBytes/(8*goarch.PtrSize))))
    	n := uintptr(rootBlockBytes)
    	if off+n > n0 {
    		n = n0 - off
    	}
    
    	// Scan this shard.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. 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)
  4. src/fmt/fmt_test.go

    	{"%x", &intVar, "PTR_x"},
    	{"%X", &intVar, "PTR_X"},
    	// %v on pointers
    	{"%v", nil, "<nil>"},
    	{"%#v", nil, "<nil>"},
    	{"%v", (*int)(nil), "<nil>"},
    	{"%#v", (*int)(nil), "(*int)(nil)"},
    	{"%v", &intVar, "0xPTR"},
    	{"%#v", &intVar, "(*int)(0xPTR)"},
    	{"%8.2v", (*int)(nil), "   <nil>"},
    	{"%-20.16v", &intVar, "0xPTR  "},
    	// string method on pointer
    	{"%s", &pValue, "String(p)"}, // String method...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	size                     uint32
    	Flags                    DI_FLAGS
    	FlagsEx                  DI_FLAGSEX
    	hwndParent               uintptr
    	InstallMsgHandler        uintptr
    	InstallMsgHandlerContext uintptr
    	FileQueue                HSPFILEQ
    	_                        uintptr
    	_                        uint32
    	driverPath               [MAX_PATH]uint16
    }
    
    func (params *DevInstallParams) DriverPath() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  7. src/reflect/type.go

    	array.Elem = typ
    	array.PtrToThis = 0
    	if typ.Size_ > 0 {
    		max := ^uintptr(0) / typ.Size_
    		if uintptr(length) > max {
    			panic("reflect.ArrayOf: array size would exceed virtual address space")
    		}
    	}
    	array.Size_ = typ.Size_ * uintptr(length)
    	if length > 0 && typ.Pointers() {
    		array.PtrBytes = typ.Size_*uintptr(length-1) + typ.PtrBytes
    	}
    	array.Align_ = typ.Align_
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    //
    // scavenge always tries to scavenge nbytes worth of memory, and will
    // only fail to do so if the heap is exhausted for now.
    func (p *pageAlloc) scavenge(nbytes uintptr, shouldStop func() bool, force bool) uintptr {
    	released := uintptr(0)
    	for released < nbytes {
    		ci, pageIdx := p.scav.index.find(force)
    		if ci == 0 {
    			break
    		}
    		systemstack(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof_test.go

    	return cpuHog0(x, n)
    }
    
    //go:noinline
    func dumpCallers(pcs []uintptr) {
    	if pcs == nil {
    		return
    	}
    
    	skip := 2 // Callers and dumpCallers
    	runtime.Callers(skip, pcs)
    }
    
    //go:noinline
    func inlinedCallerDump(pcs []uintptr) {
    	inlinedCalleeDump(pcs)
    }
    
    func inlinedCalleeDump(pcs []uintptr) {
    	dumpCallers(pcs)
    }
    
    type inlineWrapperInterface interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  10. pkg/apis/core/v1/defaults_test.go

    	if out.Spec.Ports[0].TargetPort != intstr.FromInt32(1234) {
    		t.Errorf("Expected TargetPort to be defaulted, got %v", out.Spec.Ports[0].TargetPort)
    	}
    
    	in = &v1.Service{Spec: v1.ServiceSpec{Ports: []v1.ServicePort{{Port: 1234, TargetPort: intstr.FromInt32(5678)}}}}
    	obj = roundTrip(t, runtime.Object(in))
    	out = obj.(*v1.Service)
    	if out.Spec.Ports[0].TargetPort != intstr.FromInt32(5678) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top