Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Const8 (0.35 sec)

  1. src/cmd/compile/internal/ssa/rewriteARM64.go

    		val := auxIntToFloat64(v.AuxInt)
    		v.reset(OpARM64FMOVDconst)
    		v.AuxInt = float64ToAuxInt(float64(val))
    		return true
    	}
    }
    func rewriteValueARM64_OpConst8(v *Value) bool {
    	// match: (Const8 [val])
    	// result: (MOVDconst [int64(val)])
    	for {
    		val := auxIntToInt8(v.AuxInt)
    		v.reset(OpARM64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation_test.go

    	kubeletapis "k8s.io/kubelet/pkg/apis"
    	"k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/capabilities"
    	"k8s.io/kubernetes/pkg/features"
    	utilpointer "k8s.io/utils/pointer"
    	"k8s.io/utils/ptr"
    )
    
    const (
    	dnsLabelErrMsg                    = "a lowercase RFC 1123 label must consist of"
    	dnsSubdomainLabelErrMsg           = "a lowercase RFC 1123 subdomain"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  3. RELEASE.md

            *   Removed the `tensors()` method and the non-const overload of the
                `nodes_and_registration()` method, both of which were previously
                documented as temporary and to be removed.
                *   Uses of `tensors()` can be replaced by calling the existing
                    methods `tensors_size()` and `tensor(int)`.
                *   Uses of the non-const overload of `nodes_and_registration` can
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top