Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for vx (0.03 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    		if sz != 0 {
    			return D0 + Reg(vx<<4+v)
    		} else {
    			return S0 + Reg(v<<1+vx)
    		}
    
    	case arg_Sm:
    		v := (x >> 0) & (1<<4 - 1)
    		vx := (x >> 5) & 1
    		return S0 + Reg(v<<1+vx)
    
    	case arg_Dn_half:
    		v := (x >> 16) & (1<<4 - 1)
    		vx := (x >> 7) & 1
    		return RegX{D0 + Reg(vx<<4+v), int((x >> 21) & 1)}
    
    	case arg_Sn_Dn:
    		v := (x >> 16) & (1<<4 - 1)
    		vx := (x >> 7) & 1
    		sz := (x >> 8) & 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  2. test/escape_reflect.go

    	vc := reflect.ValueOf(ch)
    	vx := reflect.ValueOf(x) // ERROR "x escapes to heap"
    	vc.Send(vx)
    }
    
    // Unfortunate: x (the interface storage) doesn't need to escape.
    func send2(ch chan string, x string) bool { // ERROR "ch does not escape" "leaking param: x$"
    	vc := reflect.ValueOf(ch)
    	vx := reflect.ValueOf(x) // ERROR "x escapes to heap"
    	return vc.TrySend(vx)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. operator/pkg/compare/compare.go

    func (r *YAMLCmpReporter) Report(rs cmp.Result) {
    	if !rs.Equal() {
    		vx, vy := r.path.Last().Values()
    		var dm string
    		isNonEmptyX := isValidAndNonEmpty(vx)
    		isNonEmptyY := isValidAndNonEmpty(vy)
    		if isNonEmptyX && !isNonEmptyY {
    			dm = fmt.Sprintf("%v -> <empty> (REMOVED)", vx)
    		} else if !isNonEmptyX && isNonEmptyY {
    			dm = fmt.Sprintf("<empty> -> %v (ADDED)", vy)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/resource-alias-analysis-test.mlir

    }
    
    // expected-remark@below {{Region #0, Arg #0, ID 1 : 1}}
    func.func @passthru(%arg0: !tf_res) -> (!tf_res, !tf_res) {
      // expected-remark@below {{Result #0, ID 0 : 0}}
      %vx = "tf.VarHandleOp"() {container = "cf", shared_name = "vx"} : () -> !tf_res
      func.return %vx, %arg0 : !tf_res, !tf_res
    }
    
    // -----
    // Test aliasing through IfRegion
    
    !tf_res = tensor<*x!tf_type.resource<tensor<i1>>>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 21 17:19:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/s390x.s

    	VN	V2, V1, V0              // e70210000068
    	VNC	V2, V1, V0              // e70210000069
    	VO	V2, V1, V0              // e7021000006a
    	VX	V2, V1, V0              // e7021000006d
    	VN	V16, V1                 // e71010000468
    	VNC	V16, V1                 // e71010000469
    	VO	V16, V1                 // e7101000046a
    	VX	V16, V1                 // e7101000046d
    	VNOT	V16, V1                 // e7101000046b
    	VCLZF	V16, V17                // e71000002c53
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/request/admissionreview_test.go

    			invocation: &generic.WebhookInvocation{
    				Webhook: webhook.NewMutatingWebhookAccessor("mywebhook", "mycfg", &admissionregistrationv1.MutatingWebhook{
    					AdmissionReviewVersions: []string{"vX"},
    				}),
    			},
    			expectErr: "webhook does not accept known AdmissionReview versions",
    		},
    		{
    			name: "v1",
    			attrs: &admission.VersionedAttributes{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/webhook_converter_test.go

    		Name     string
    		Versions []string
    
    		ExpectRequest  runtime.Object
    		ExpectResponse runtime.Object
    		ExpectErr      string
    	}{
    		{
    			Name:      "no supported versions",
    			Versions:  []string{"vx"},
    			ExpectErr: "no supported conversion review versions",
    		},
    		{
    			Name:     "v1",
    			Versions: []string{"v1", "v1beta1", "v2"},
    			ExpectRequest: &v1.ConversionReview{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_invalid_version.txt

    cd ..
    ! go list -m golang.org/x/text
    stderr 'golang.org/x/text@v1.0.0-20170915032832-14c0d48ead0c: invalid pseudo-version: major version without preceding tag must be v0, not v1'
    
    # A pseudo-version vX.Y.Z+1 cannot have Z+1 == 0, since that would
    # imply a base tag with a negative patch field.
    cp go.mod.orig go.mod
    go mod edit -require golang.org/x/text@v0.0.0-0.20170915032832-14c0d48ead0c
    cd outside
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/coderepo.go

    		if v == "" || !strings.HasPrefix(trimmed, v) {
    			return "", false // Invalid or incomplete version (just vX or vX.Y).
    		}
    		if v == trimmed {
    			tagIsCanonical = true
    		}
    		return v, tagIsCanonical
    	}
    
    	// If the VCS gave us a valid version, use that.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build gc && !purego
    
    #include "textflag.h"
    
    // This implementation of Poly1305 uses the vector facility (vx)
    // to process up to 2 blocks (32 bytes) per iteration using an
    // algorithm based on the one described in:
    //
    // NEON crypto, Daniel J. Bernstein & Peter Schwabe
    // https://cryptojedi.org/papers/neoncrypto-20120320.pdf
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
Back to top