Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for tvp1 (0.04 sec)

  1. tensorflow/compiler/mlir/lite/tests/pin-ops-with-side-effects.mlir

      %tmp1 = "tfl.add"(%const, %const) { fused_activation_function = "NONE" } : (tensor<1xf32>,tensor<1xf32>) -> (tensor<1xf32>)
      %tmp2 = "tfl.add"(%var, %tmp1) { fused_activation_function = "NONE" } : (tensor<!tf_type.resource<tensor<1xf32>>>, tensor<1xf32>) -> (tensor<1xf32>)
      %tmp3 = "tfl.add"(%tmp2, %tmp1) { fused_activation_function = "NONE" } : (tensor<1xf32>, tensor<1xf32>) -> (tensor<1xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 17 10:45:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  2. tests/testdata/networking/sidecar-ns-scope/configs.yaml

      resolution: STATIC
      endpoints:
      - address: 100.1.1.2
        ports:
          http: 8080
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: tcp1
      namespace: ns1
    spec:
      hosts:
      - tcp1.ns1.svc.cluster.local
      addresses:
      - 2.1.1.3
      ports:
      - number: 3306
        name: tcp
        protocol: TCP
      location: MESH_INTERNAL
      resolution: STATIC
      endpoints:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 04 17:16:38 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/scalarmult_test.go

    			t.Errorf("Basepoint table %d does not match", i)
    		}
    
    		// Set p = (16^2)*p = 256*p = 2^8*p
    		tmp2.FromP3(tmp3)
    		for j := 0; j < 7; j++ {
    			tmp1.Double(tmp2)
    			tmp2.FromP1xP1(tmp1)
    		}
    		tmp1.Double(tmp2)
    		tmp3.fromP1xP1(tmp1)
    		checkOnCurve(t, tmp3)
    	}
    }
    
    func TestScalarMultMatchesBaseMult(t *testing.T) {
    	scalarMultMatchesBaseMult := func(x Scalar) bool {
    		var p, q Point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. src/runtime/memmove_arm.s

    	B	_b32loop
    
    _b4tail:				/* do remaining words if possible */
    	MOVW	savedts-4(SP), TS
    	ADD	$3, TS, TMP
    _b4loop:
    	CMP	TMP, TE
    	BLS	_b1tail
    
    	MOVW.W	-4(FROM), TMP1	/* pre-indexed */
    	MOVW.W	TMP1, -4(TE)	/* pre-indexed */
    	B	_b4loop
    
    _b1tail:				/* remaining bytes */
    	CMP	TE, TS
    	BEQ	_return
    
    	MOVBU.W	-1(FROM), TMP	/* pre-indexed */
    	MOVBU.W	TMP, -1(TE)	/* pre-indexed */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  5. src/internal/types/testdata/spec/assignability.go

    func _[
    	TP0 any,
    	TP1 ~_Chan,
    	TP2 ~chan int | ~chan byte,
    ]() {
    	var (
    		_ TP0 = c // ERRORx `cannot use c .* as TP0 value`
    		_ TP0 = C // ERRORx `cannot use C .* as TP0 value`
    		_ TP1 = c
    		_ TP1 = C // ERRORx `cannot use C .* as TP1 value`
    		_ TP2 = c // ERRORx `.* cannot assign (chan int|_Chan.*) to chan byte`
    	)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/version_cshared.txt

    go get rsc.io/fortune
    go build -buildmode=c-shared -o external.so rsc.io/fortune
    go version external.so
    stdout '^external.so: .+'
    go version -m external.so
    stdout '^\tpath\trsc.io/fortune'
    stdout '^\tmod\trsc.io/fortune\tv1.0.0'
    
    -- go.mod --
    module m
    
    -- empty.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 14:52:04 UTC 2024
    - 416 bytes
    - Viewed (0)
  7. test/nilcheck.go

    	_ = &x[9] // ERROR "nil check"
    	x = y
    	_ = &x[9] // ERROR "nil check"
    }
    
    func f5(m map[string]struct{}) bool {
    	// Existence-only map lookups should not generate a nil check
    	tmp1, tmp2 := m[""] // ERROR "removed nil check"
    	_, ok := tmp1, tmp2
    	return ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 18:41:59 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/version.txt

    stdout '^\tpath\trsc.io/fortune'
    stdout '^\tmod\trsc.io/fortune\tv1.0.0'
    
    # Also test PIE with internal linking.
    [pielinkext] stop
    go build -buildmode=pie -ldflags=-linkmode=internal -o internal.exe rsc.io/fortune
    go version internal.exe
    stdout '^internal.exe: .+'
    go version -m internal.exe
    stdout -buildmode=pie
    stdout '^\tpath\trsc.io/fortune'
    stdout '^\tmod\trsc.io/fortune\tv1.0.0'
    
    -- go.mod --
    module m
    
    -- empty.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 14:52:04 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    # check after the link is done for the presence of the file
    # <tmpdir>/go.o, which the Go linker creates prior to kicking off the
    # external linker.
    
    mkdir tmp1
    mkdir tmp2
    mkdir tmp3
    mkdir tmp4
    mkdir tmp5
    
    # First build: no external linking expected
    go build -ldflags=-tmpdir=tmp1 -o $devnull ./noUseOfCgo &
    
    # Second build: using only "runtime/cgo", expect internal linking.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    go list -m -versions -retracted example.com/cmd
    stdout v1.9.0
    go install example.com/cmd/a@latest
    go version -m $GOPATH/bin/a$GOEXE
    stdout '^\tmod\texample.com/cmd\tv1.0.0\t'
    go install example.com/cmd/a@v1.9.0
    go version -m $GOPATH/bin/a$GOEXE
    stdout '^\tmod\texample.com/cmd\tv1.9.0\t'
    env GO111MODULE=
    
    # 'go install pkg@version' succeeds when -mod=readonly is set explicitly.
    # Verifies #43278.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top