Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for intp (0.13 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    	Conn_id  uint32
    }
    
    type RawSockaddrIUCV struct {
    	Family  uint16
    	Port    uint16
    	Addr    uint32
    	Nodeid  [8]int8
    	User_id [8]int8
    	Name    [8]int8
    }
    
    type RawSockaddrNFC struct {
    	Sa_family    uint16
    	Dev_idx      uint32
    	Target_idx   uint32
    	Nfc_protocol uint32
    }
    
    type _Socklen uint32
    
    type Linger struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. doc/go_spec.html

    may be invoked with zero or more arguments for that parameter.
    </p>
    
    <pre>
    func()
    func(x int) int
    func(a, _ int, z float32) bool
    func(a, b int, z float32) (bool)
    func(prefix string, values ...int)
    func(a, b int, z float64, opt ...interface{}) (success bool)
    func(int, int, float64) (float64, *[]int)
    func(n int) func(p *T)
    </pre>
    
    <h3 id="Interface_types">Interface types</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		// need this case.
    		return callee.Linksym()
    	}
    
    	return callee.LinksymABI(callee.Func.ABI)
    }
    
    func min8(a, b int8) int8 {
    	if a < b {
    		return a
    	}
    	return b
    }
    
    func max8(a, b int8) int8 {
    	if a > b {
    		return a
    	}
    	return b
    }
    
    // deferStructFnField is the field index of _defer.fn.
    const deferStructFnField = 4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-54663`](https://youtrack.jetbrains.com/issue/KT-54663) Projected types don't take into account in-place not null types
    - [`KT-58191`](https://youtrack.jetbrains.com/issue/KT-58191) K2: capturing closures successors that are already resolved (thanks to backward edges) must be taken into account for allowing smart casts
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    ",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

    ",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// cond: buildcfg.GOPPC64<=8
    	// result: (POPCNTW (MOVWZreg (ANDN <typ.Int> (ADDconst <typ.Int> [-1] x) x)))
    	for {
    		x := v_0
    		if !(buildcfg.GOPPC64 <= 8) {
    			break
    		}
    		v.reset(OpPPC64POPCNTW)
    		v0 := b.NewValue0(v.Pos, OpPPC64MOVWZreg, typ.Int64)
    		v1 := b.NewValue0(v.Pos, OpPPC64ANDN, typ.Int)
    		v2 := b.NewValue0(v.Pos, OpPPC64ADDconst, typ.Int)
    		v2.AuxInt = int64ToAuxInt(-1)
    		v2.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    		} else {
    			for _, msg := range validation.IsValidPortNum(int(port.ContainerPort)) {
    				allErrs = append(allErrs, field.Invalid(idxPath.Child("containerPort"), port.ContainerPort, msg))
    			}
    		}
    		if port.HostPort != 0 {
    			for _, msg := range validation.IsValidPortNum(int(port.HostPort)) {
    				allErrs = append(allErrs, field.Invalid(idxPath.Child("hostPort"), port.HostPort, msg))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top