Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for Pull (0.1 sec)

  1. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

              }
            },
            "required": [
              "key",
              "operator"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.NodeSelectorTerm": {
            "description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.",
            "properties": {
              "matchExpressions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM64.go

    	}
    }
    func rewriteValueARM64_OpHmul32(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Hmul32 x y)
    	// result: (SRAconst (MULL <typ.Int64> x y) [32])
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpARM64SRAconst)
    		v.AuxInt = int64ToAuxInt(32)
    		v0 := b.NewValue0(v.Pos, OpARM64MULL, typ.Int64)
    		v0.AddArg2(x, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		v.AddArg2(ptr, mem)
    		return true
    	}
    	return false
    }
    func rewriteValueAMD64_OpAMD64MULL(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (MULL x (MOVLconst [c]))
    	// result: (MULLconst [c] x)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != OpAMD64MOVLconst {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top