Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,127 for INT32 (0.09 sec)

  1. src/runtime/stubs_linux.go

    // The return value is the raw syscall result, which may encode an error number.
    //
    //go:noescape
    func access(name *byte, mode int32) int32
    func connect(fd int32, addr unsafe.Pointer, len int32) int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 650 bytes
    - Viewed (0)
  2. pkg/apis/apps/v1beta2/defaults_test.go

    					RevisionHistoryLimit:    ptr.To[int32](2),
    				},
    			},
    			expected: &appsv1beta2.Deployment{
    				Spec: appsv1beta2.DeploymentSpec{
    					Replicas: ptr.To[int32](5),
    					Strategy: appsv1beta2.DeploymentStrategy{
    						Type: appsv1beta2.RecreateDeploymentStrategyType,
    					},
    					ProgressDeadlineSeconds: ptr.To[int32](30),
    					RevisionHistoryLimit:    ptr.To[int32](2),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. src/syscall/ztypes_netbsd_amd64.go

    }
    
    type RtMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Flags     int32
    	Addrs     int32
    	Pid       int32
    	Seq       int32
    	Errno     int32
    	Use       int32
    	Inits     int32
    	Pad_cgo_1 [4]byte
    	Rmx       RtMetrics
    }
    
    type RtMetrics struct {
    	Locks    uint64
    	Mtu      uint64
    	Hopcount uint64
    	Recvpipe uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  4. test/codegen/bmi.go

    	return x &^ y
    }
    
    func andn32(x, y int32) int32 {
    	// amd64/v3:"ANDNL"
    	return x &^ y
    }
    
    func blsi64(x int64) int64 {
    	// amd64/v3:"BLSIQ"
    	return x & -x
    }
    
    func blsi32(x int32) int32 {
    	// amd64/v3:"BLSIL"
    	return x & -x
    }
    
    func blsmsk64(x int64) int64 {
    	// amd64/v3:"BLSMSKQ"
    	return x ^ (x - 1)
    }
    
    func blsmsk32(x int32) int32 {
    	// amd64/v3:"BLSMSKL"
    	return x ^ (x - 1)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 04:58:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. pkg/apis/apps/v1/defaults_test.go

    					RevisionHistoryLimit:    ptr.To[int32](2),
    				},
    			},
    			expected: &appsv1.Deployment{
    				Spec: appsv1.DeploymentSpec{
    					Replicas: ptr.To[int32](5),
    					Strategy: appsv1.DeploymentStrategy{
    						Type: appsv1.RecreateDeploymentStrategyType,
    					},
    					ProgressDeadlineSeconds: ptr.To[int32](30),
    					RevisionHistoryLimit:    ptr.To[int32](2),
    					Template:                defaultTemplate,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. src/internal/runtime/syscall/syscall_linux.go

    func Syscall6(num, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, errno uintptr)
    
    func EpollCreate1(flags int32) (fd int32, errno uintptr) {
    	r1, _, e := Syscall6(SYS_EPOLL_CREATE1, uintptr(flags), 0, 0, 0, 0, 0)
    	return int32(r1), e
    }
    
    var _zero uintptr
    
    func EpollWait(epfd int32, events []EpollEvent, maxev, waitms int32) (n int32, errno uintptr) {
    	var ev unsafe.Pointer
    	if len(events) > 0 {
    		ev = unsafe.Pointer(&events[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:26:21 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/idna/punycode.go

    // All computation is done with int32s, so that overflow behavior is identical
    // regardless of whether int is 32-bit or 64-bit.
    const (
    	base        int32 = 36
    	damp        int32 = 700
    	initialBias int32 = 72
    	initialN    int32 = 128
    	skew        int32 = 38
    	tmax        int32 = 26
    	tmin        int32 = 1
    )
    
    func punyError(s string) error { return &labelError{s, "A3"} }
    
    // decode decodes a string as specified in section 6.2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:36 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  8. pkg/apis/autoscaling/v1/conversion_test.go

    					MinReplicas:                    utilpointer.Int32(1),
    					MaxReplicas:                    4,
    					TargetCPUUtilizationPercentage: utilpointer.Int32(60),
    				},
    				expectOut: &autoscalingv1.HorizontalPodAutoscalerSpec{
    					MinReplicas:                    utilpointer.Int32(1),
    					MaxReplicas:                    3,
    					TargetCPUUtilizationPercentage: utilpointer.Int32(60),
    				},
    				s: nil,
    			},
    			false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 08 12:14:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. src/runtime/os_netbsd.go

    func osyield_no_g() {
    	osyield()
    }
    
    func kqueue() int32
    
    //go:noescape
    func kevent(kq int32, ch *keventt, nch int32, ev *keventt, nev int32, ts *timespec) int32
    
    func pipe2(flags int32) (r, w int32, errno int32)
    func fcntl(fd, cmd, arg int32) (ret int32, errno int32)
    
    func issetugid() int32
    
    const (
    	_ESRCH     = 3
    	_ETIMEDOUT = 60
    
    	// From NetBSD's <sys/time.h>
    	_CLOCK_REALTIME  = 0
    	_CLOCK_VIRTUAL   = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				},
    				RegistryPullQPS:                           utilpointer.Int32(5),
    				RegistryBurst:                             10,
    				EventRecordQPS:                            utilpointer.Int32(50),
    				EventBurst:                                100,
    				EnableDebuggingHandlers:                   utilpointer.Bool(true),
    				HealthzPort:                               utilpointer.Int32(10248),
    				HealthzBindAddress:                        "127.0.0.1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top