Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 870 for INT32 (0.12 sec)

  1. src/syscall/ztypes_linux_arm.go

    	Ppsfreq   int32
    	Jitter    int32
    	Shift     int32
    	Stabil    int32
    	Jitcnt    int32
    	Calcnt    int32
    	Errcnt    int32
    	Stbcnt    int32
    	Tai       int32
    	Pad_cgo_0 [44]byte
    }
    
    type Time_t int32
    
    type Tms struct {
    	Utime  int32
    	Stime  int32
    	Cutime int32
    	Cstime int32
    }
    
    type Utimbuf struct {
    	Actime  int32
    	Modtime int32
    }
    
    type Rusage struct {
    	Utime    Timeval
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go

    }
    
    type RtMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Index   uint16
    	Flags   int32
    	Addrs   int32
    	Pid     int32
    	Seq     int32
    	Errno   int32
    	Use     int32
    	Inits   uint32
    	Rmx     RtMetrics
    }
    
    type RtMetrics struct {
    	Locks    uint32
    	Mtu      uint32
    	Hopcount uint32
    	Expire   int32
    	Recvpipe uint32
    	Sendpipe uint32
    	Ssthresh uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/logic_test.go

    		golden func(int32) int32
    	}{
    		{"x|x", func(x int32) int32 { return x | x }, id},
    		{"x|0", func(x int32) int32 { return x | 0 }, id},
    		{"x|-1", func(x int32) int32 { return x | -1 }, func(x int32) int32 { return -1 }},
    		{"x&x", func(x int32) int32 { return x & x }, id},
    		{"x&0", func(x int32) int32 { return x & 0 }, zero},
    		{"x&-1", func(x int32) int32 { return x & -1 }, id},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. pkg/apis/batch/v1/defaults_test.go

    									Operator: batchv1.PodFailurePolicyOnExitCodesOpIn,
    									Values:   []int32{1},
    								},
    							},
    						},
    					},
    				},
    			},
    			expected: &batchv1.Job{
    				Spec: batchv1.JobSpec{
    					Completions:          pointer.Int32(1),
    					Parallelism:          pointer.Int32(1),
    					BackoffLimit:         pointer.Int32(6),
    					CompletionMode:       completionModePtr(batchv1.NonIndexedCompletion),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  5. src/runtime/os3_solaris.go

    func pipe2(flags int32) (r, w int32, errno int32) {
    	var p [2]int32
    	_, e := sysvicall2Err(&libc_pipe2, uintptr(noescape(unsafe.Pointer(&p))), uintptr(flags))
    	return p[0], p[1], int32(e)
    }
    
    //go:nosplit
    func fcntl(fd, cmd, arg int32) (ret int32, errno int32) {
    	r1, err := sysvicall3Err(&libc_fcntl, uintptr(fd), uintptr(cmd), uintptr(arg))
    	return int32(r1), int32(err)
    }
    
    func osyield1()
    
    //go:nosplit
    func osyield_no_g() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. src/runtime/os2_aix.go

    }
    
    //go:nosplit
    func open(name *byte, mode, perm int32) int32 {
    	r, _ := syscall3(&libc_open, uintptr(unsafe.Pointer(name)), uintptr(mode), uintptr(perm))
    	return int32(r)
    }
    
    //go:nosplit
    func closefd(fd int32) int32 {
    	r, _ := syscall1(&libc_close, uintptr(fd))
    	return int32(r)
    }
    
    //go:nosplit
    func pipe() (r, w int32, errno int32) {
    	var p [2]int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  7. src/math/rand/v2/regress_test.go

    	int64(6093522341581845358), // Int()
    
    	int32(1652216515), // Int32()
    	int32(1323786710), // Int32()
    	int32(1684546306), // Int32()
    	int32(1710678126), // Int32()
    	int32(503104460),  // Int32()
    	int32(88487615),   // Int32()
    	int32(1073552320), // Int32()
    	int32(965044529),  // Int32()
    	int32(285184408),  // Int32()
    	int32(394559696),  // Int32()
    	int32(1421454622), // Int32()
    	int32(955177040),  // Int32()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:03:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. pkg/apis/apps/v1beta1/defaults_test.go

    					RevisionHistoryLimit:    ptr.To[int32](2),
    				},
    			},
    			expected: &appsv1beta1.Deployment{
    				Spec: appsv1beta1.DeploymentSpec{
    					Replicas: ptr.To[int32](5),
    					Strategy: appsv1beta1.DeploymentStrategy{
    						Type: appsv1beta1.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
    - 17.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go

    	_       [4]byte
    }
    
    const (
    	SizeofTpacketHdr = 0x20
    )
    
    type RTCPLLInfo struct {
    	Ctrl    int32
    	Value   int32
    	Max     int32
    	Min     int32
    	Posmult int32
    	Negmult int32
    	Clock   int64
    }
    
    type BlkpgPartition struct {
    	Start   int64
    	Length  int64
    	Pno     int32
    	Devname [64]uint8
    	Volname [64]uint8
    	_       [4]byte
    }
    
    const (
    	BLKPG = 0x20001269
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. 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)
Back to top