Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for intPtr (0.17 sec)

  1. pkg/apis/apps/validation/validation_test.go

    			ds: &apps.RollingUpdateDaemonSet{
    				MaxUnavailable: intstr.FromString("0%"),
    				MaxSurge:       intstr.FromString("0%"),
    			},
    			expectError: true,
    		},
    		"invalid: surge enabled, surge and unavailable zero": {
    			ds: &apps.RollingUpdateDaemonSet{
    				MaxUnavailable: intstr.FromInt32(0),
    				MaxSurge:       intstr.FromInt32(0),
    			},
    			expectError: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r0, _, e1 := syscall.Syscall15(procCreateServiceW.Addr(), 13, uintptr(mgr), uintptr(unsafe.Pointer(serviceName)), uintptr(unsafe.Pointer(displayName)), uintptr(access), uintptr(srvType), uintptr(startType), uintptr(errCtl), uintptr(unsafe.Pointer(pathName)), uintptr(unsafe.Pointer(loadOrderGroup)), uintptr(unsafe.Pointer(tagId)), uintptr(unsafe.Pointer(dependencies)), uintptr(unsafe.Pointer(serviceStartName)), uintptr(unsafe.Pointer(password)), 0, 0)
    	handle = Handle(r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    		{struct{ Value }{ValueOf(0)}, false},
    		{struct{ _, a, _ uintptr }{}, true}, // comparable struct with blank fields
    		{setField(struct{ _, a, _ uintptr }{}, 0*unsafe.Sizeof(uintptr(0)), 1), true},
    		{setField(struct{ _, a, _ uintptr }{}, 1*unsafe.Sizeof(uintptr(0)), 1), false},
    		{setField(struct{ _, a, _ uintptr }{}, 2*unsafe.Sizeof(uintptr(0)), 1), true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    }
    
    type LDR_DATA_TABLE_ENTRY struct {
    	reserved1          [2]uintptr
    	InMemoryOrderLinks LIST_ENTRY
    	reserved2          [2]uintptr
    	DllBase            uintptr
    	reserved3          [2]uintptr
    	FullDllName        NTUnicodeString
    	reserved4          [8]byte
    	reserved5          [3]uintptr
    	reserved6          uintptr
    	TimeDateStamp      uint32
    }
    
    type PEB_LDR_DATA struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  5. src/crypto/x509/verify_test.go

    				"CN=leaf -> CN=inter b -> CN=inter a -> CN=inter c -> CN=root",
    				"CN=leaf -> CN=inter b -> CN=inter a -> CN=root",
    				"CN=leaf -> CN=inter b -> CN=inter c -> CN=inter a -> CN=root",
    				"CN=leaf -> CN=inter b -> CN=inter c -> CN=root",
    			},
    		},
    		{
    			// Build a simple two node graph, where the leaf is directly issued from
    			// the root and both certificates have matching subject and public key, but
    			// the leaf has SANs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  6. src/reflect/value.go

    // element of the underlying bytes of string.
    //
    // It's preferred to use uintptr(Value.UnsafePointer()) to get the equivalent result.
    func (v Value) Pointer() uintptr {
    	// The compiler loses track as it converts to uintptr. Force escape.
    	escapes(v.ptr)
    
    	k := v.kind()
    	switch k {
    	case Pointer:
    		if !v.typ().Pointers() {
    			val := *(*uintptr)(v.ptr)
    			// Since it is a not-in-heap pointer, all pointers to the heap are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    	// some "physical" frames to account for skipping.
    	return make([]uintptr, 1+maxSkip+debug.profstackdepth)
    }
    
    // makeProfStack returns a buffer large enough to hold a maximum-sized stack
    // trace.
    func makeProfStack() []uintptr { return make([]uintptr, debug.profstackdepth) }
    
    //go:linkname pprof_makeProfStack
    func pprof_makeProfStack() []uintptr { return makeProfStack() }
    
    func (mp *m) becomeSpinning() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier_test.go

    	"github.com/stretchr/testify/assert"
    	v1 "k8s.io/api/core/v1"
    	discovery "k8s.io/api/discovery/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	"k8s.io/apimachinery/pkg/util/sets"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/component-base/metrics/testutil"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller_test.go

    	"time"
    
    	apps "k8s.io/api/apps/v1"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/uuid"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apiserver/pkg/storage/names"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes/fake"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/proxier_test.go

    					Protocol:   v1.ProtocolTCP,
    					TargetPort: intstr.FromInt32(8443),
    				},
    				{
    					Name:     "dns-udp",
    					Port:     53,
    					Protocol: v1.ProtocolUDP,
    				},
    				{
    					Name:     "dns-tcp",
    					Port:     53,
    					Protocol: v1.ProtocolTCP,
    					// We use TargetPort on TCP but not UDP/SCTP to
    					// help disambiguate the output.
    					TargetPort: intstr.FromInt32(5353),
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
Back to top