Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for types2 (0.26 sec)

  1. pkg/apis/core/types.go

    	// +optional
    	DefaultMode *int32
    }
    
    // VolumeProjection that may be projected along with other supported volume types
    type VolumeProjection struct {
    	// all types below are the supported types for projection into the same volume
    
    	// information about the secret data to project
    	Secret *SecretProjection
    	// information about the downwardAPI data to project
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    )
    
    // PodCondition contains details for the current condition of this pod.
    type PodCondition struct {
    	// Type is the type of the condition.
    	// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions
    	Type PodConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=PodConditionType"`
    	// Status is the status of the condition.
    	// Can be True, False, Unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritePPC64.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Eq16 x y)
    	// cond: x.Type.IsSigned() && y.Type.IsSigned()
    	// result: (Equal (CMPW (SignExt16to32 x) (SignExt16to32 y)))
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			y := v_1
    			if !(x.Type.IsSigned() && y.Type.IsSigned()) {
    				continue
    			}
    			v.reset(OpPPC64Equal)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteS390X.go

    func rewriteValueS390X_OpAdd32F(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Add32F x y)
    	// result: (Select0 (FADDS x y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpSelect0)
    		v0 := b.NewValue0(v.Pos, OpS390XFADDS, types.NewTuple(typ.Float32, types.TypeFlags))
    		v0.AddArg2(x, y)
    		v.AddArg(v0)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteARM.go

    	// result: (InvertFlags (CMPconst [c] (SLLconst <x.Type> x [d])))
    	for {
    		d := auxIntToInt32(v.AuxInt)
    		if v_0.Op != OpARMMOVWconst {
    			break
    		}
    		c := auxIntToInt32(v_0.AuxInt)
    		x := v_1
    		v.reset(OpARMInvertFlags)
    		v0 := b.NewValue0(v.Pos, OpARMCMPconst, types.TypeFlags)
    		v0.AuxInt = int32ToAuxInt(c)
    		v1 := b.NewValue0(v.Pos, OpARMSLLconst, x.Type)
    		v1.AuxInt = int32ToAuxInt(d)
    		v1.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  6. doc/go_spec.html

    or <a href="#Type_parameter_declarations">type parameter lists</a>.
    <i>Composite types</i>&mdash;array, struct, pointer, function,
    interface, slice, map, and channel types&mdash;may be constructed using
    type literals.
    </p>
    
    <p>
    Predeclared types, defined types, and type parameters are called <i>named types</i>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite386.go

    	// cond: !shiftIsBounded(v)
    	// result: (SARW <t> x (ORL <y.Type> y (NOTL <y.Type> (SBBLcarrymask <y.Type> (CMPWconst y [16])))))
    	for {
    		t := v.Type
    		x := v_0
    		y := v_1
    		if !(!shiftIsBounded(v)) {
    			break
    		}
    		v.reset(Op386SARW)
    		v.Type = t
    		v0 := b.NewValue0(v.Pos, Op386ORL, y.Type)
    		v1 := b.NewValue0(v.Pos, Op386NOTL, y.Type)
    		v2 := b.NewValue0(v.Pos, Op386SBBLcarrymask, y.Type)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"type": {
    						SchemaProps: spec.SchemaProps{
    							Description: "type is the type of the condition. Types include Established, NamesAccepted and Terminating.",
    							Default:     "",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  9. ChangeLog.md

    - [`KT-66638`](https://youtrack.jetbrains.com/issue/KT-66638) Cannot access properties of a generic type with wildcards
    - [`KT-66690`](https://youtrack.jetbrains.com/issue/KT-66690) K2: don't report MISSING_DEPENDENCY_CLASS on expression without errors for generic type arguments
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  10. prow/config/calico.yaml

                        cidr:
                          type: string
                        interface:
                          type: string
                        matchOperator:
                          type: string
                        source:
                          type: string
                      required:
                      - action
                      type: object
                    type: array
                type: object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
Back to top