Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for intp (0.07 sec)

  1. 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)
  2. api/go1.16.txt

    pkg syscall (darwin-arm64), const AF_DATAKIT = 9
    pkg syscall (darwin-arm64), const AF_DATAKIT ideal-int
    pkg syscall (darwin-arm64), const AF_DECnet = 12
    pkg syscall (darwin-arm64), const AF_DECnet ideal-int
    pkg syscall (darwin-arm64), const AF_DLI = 13
    pkg syscall (darwin-arm64), const AF_DLI ideal-int
    pkg syscall (darwin-arm64), const AF_E164 = 28
    pkg syscall (darwin-arm64), const AF_E164 ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.10.md

    ### OpenStack
    
    SIG-OpenStack updated the OpenStack provider to use newer APIs, consolidated community code into one repository, engaged with the Cloud Provider Working Group to have a consistent plan for moving provider code into individual repositories, improved testing of provider code, and strengthened ties with the OpenStack developer community.
    
    ### API-machinery
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/cmd/compile/internal/ssa/rewriteARM.go

    		v.AddArg(x)
    		return true
    	}
    	// match: (MOVBreg (MOVWconst [c]))
    	// result: (MOVWconst [int32(int8(c))])
    	for {
    		if v_0.Op != OpARMMOVWconst {
    			break
    		}
    		c := auxIntToInt32(v_0.AuxInt)
    		v.reset(OpARMMOVWconst)
    		v.AuxInt = int32ToAuxInt(int32(int8(c)))
    		return true
    	}
    	return false
    }
    func rewriteValueARM_OpARMMOVBstore(v *Value) bool {
    	v_2 := v.Args[2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
      <mime-type type="application/vnd.intertrust.digibox"/>
      <mime-type type="application/vnd.intertrust.nncp"/>
      <mime-type type="application/vnd.intu.qbo">
        <glob pattern="*.qbo"/>
      </mime-type>
      <mime-type type="application/vnd.intu.qfx">
        <glob pattern="*.qfx"/>
      </mime-type>
      <mime-type type="application/vnd.iptc.g2.catalogitem+xml"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K 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