Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for tvp1 (0.05 sec)

  1. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    	twoVolPod := st.MakePod().Volume(v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			AWSElasticBlockStore: &v1.AWSElasticBlockStoreVolumeSource{VolumeID: "tvp1"},
    		},
    	}).Volume(v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			AWSElasticBlockStore: &v1.AWSElasticBlockStoreVolumeSource{VolumeID: "tvp2"},
    		},
    	}).Obj()
    	splitVolsPod := st.MakePod().Volume(v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			HostPath: &v1.HostPathVolumeSource{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  2. src/crypto/internal/edwards25519/tables_test.go

    )
    
    func TestProjLookupTable(t *testing.T) {
    	var table projLookupTable
    	table.FromP3(B)
    
    	var tmp1, tmp2, tmp3 projCached
    	table.SelectInto(&tmp1, 6)
    	table.SelectInto(&tmp2, -2)
    	table.SelectInto(&tmp3, -4)
    	// Expect T1 + T2 + T3 = identity
    
    	var accP1xP1 projP1xP1
    	accP3 := NewIdentityPoint()
    
    	accP1xP1.Add(accP3, &tmp1)
    	accP3.fromP1xP1(&accP1xP1)
    	accP1xP1.Add(accP3, &tmp2)
    	accP3.fromP1xP1(&accP1xP1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:10 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/scalarmult.go

    		tmp2.FromP1xP1(tmp1) // tmp2 =  4*(prev) in P2 coords
    		tmp1.Double(tmp2)    // tmp1 =  8*(prev) in P1xP1 coords
    		tmp2.FromP1xP1(tmp1) // tmp2 =  8*(prev) in P2 coords
    		tmp1.Double(tmp2)    // tmp1 = 16*(prev) in P1xP1 coords
    		v.fromP1xP1(tmp1)    //    v = 16*(prev) in P3 coords
    		table.SelectInto(multiple, digits[i])
    		tmp1.Add(v, multiple) // tmp1 = x_i*Q + 16*(prev) in P1xP1 coords
    	}
    	v.fromP1xP1(tmp1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:10 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/partitioned-topological-sort.mlir

    func.func @tf_ops_will_be_partitioned() -> tensor<1xf32> {
      %const = "tfl.pseudo_const"() {value = dense<[1.0]> : tensor<1xf32>} : () -> tensor<1xf32>
      %tmp1 = "tfl.add"(%const, %const) { fused_activation_function = "NONE" } : (tensor<1xf32>,tensor<1xf32>) -> (tensor<1xf32>)
      %tmp2 = "tf.AddV2"(%tmp1, %tmp1) { device = "" } : (tensor<1xf32>, tensor<1xf32>) -> (tensor<1xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 19 22:33:49 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  5. misc/cgo/gmp/pi.go

    		return -1
    	}
    	return tmp1.Int64()
    }
    
    func nextTerm(k int64) {
    	y2 := k*2 + 1
    	accum.Add(accum, tmp1.Lsh(numer, 1))
    	accum.Mul(accum, tmp1.SetInt64(y2))
    	numer.Mul(numer, tmp1.SetInt64(k))
    	denom.Mul(denom, tmp1.SetInt64(y2))
    }
    
    func eliminateDigit(d int64) {
    	accum.Sub(accum, tmp1.Mul(denom, tmp1.SetInt64(d)))
    	accum.Mul(accum, ten)
    	numer.Mul(numer, ten)
    }
    
    func main() {
    	i := 0
    	k := int64(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 22:32:35 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/control_edges.mlir

    func.func @long_chain(%arg0: tensor<1xf32>)->tensor<1xf32> {
      %tmp0, %ctl0 = tfl.control_node controls "tfl.neg"(%arg0): (tensor<1xf32>) -> tensor<1xf32>
      %tmp1, %ctl1 = tfl.control_node(%ctl0) controls "tfl.neg"(%tmp0): (tensor<1xf32>) -> tensor<1xf32>
      %tmp2, %ctl2 = tfl.control_node(%ctl1) controls "tfl.neg"(%tmp1): (tensor<1xf32>) -> tensor<1xf32>
      %tmp3, %ctl3 = tfl.control_node(%ctl2) controls "tfl.neg"(%tmp2): (tensor<1xf32>) -> tensor<1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 14 21:40:53 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  7. tests/testdata/config/none.yaml

    metadata:
      name: tcpmeshstatic
      namespace: none
    spec:
      hosts:
      - tcpmeshstatic.seexamples.svc
      ports:
      - number: 2008
        protocol: TCP
        name: tcp1
      resolution: STATIC
      endpoints:
      - address: 10.11.0.8
        ports:
          tcp1: 7070
    ---
    # Outbound TCP cluster, resolution STATIC - for a '.svc' (in cluster) service.
    # This generates EDS
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  8. src/crypto/ecdh/x25519.go

    		z2.Multiply(&z2, &tmp1)
    		tmp0.Square(&tmp1)
    		tmp1.Square(&x2)
    		x3.Add(&z3, &z2)
    		z2.Subtract(&z3, &z2)
    		x2.Multiply(&tmp1, &tmp0)
    		tmp1.Subtract(&tmp1, &tmp0)
    		z2.Square(&z2)
    
    		z3.Mult32(&tmp1, 121666)
    		x3.Square(&x3)
    		tmp0.Add(&tmp0, &z3)
    		z3.Multiply(&x1, &z2)
    		z2.Multiply(&tmp1, &tmp0)
    	}
    
    	x2.Swap(&x3, swap)
    	z2.Swap(&z3, swap)
    
    	z2.Invert(&z2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. src/image/jpeg/fdct.go

    		x2 := s[2]
    		x3 := s[3]
    		x4 := s[4]
    		x5 := s[5]
    		x6 := s[6]
    		x7 := s[7]
    
    		tmp0 := x0 + x7
    		tmp1 := x1 + x6
    		tmp2 := x2 + x5
    		tmp3 := x3 + x4
    
    		tmp10 := tmp0 + tmp3
    		tmp12 := tmp0 - tmp3
    		tmp11 := tmp1 + tmp2
    		tmp13 := tmp1 - tmp2
    
    		tmp0 = x0 - x7
    		tmp1 = x1 - x6
    		tmp2 = x2 - x5
    		tmp3 = x3 - x4
    
    		s[0] = (tmp10 + tmp11 - 8*centerJSample) << pass1Bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 23:18:37 UTC 2019
    - 6K bytes
    - Viewed (0)
  10. test/fixedbugs/issue23188.go

    	// carried out one at a time. The operands of an index
    	// expression include both the array and the index. So this
    	// evaluates as
    	//   tmp1 := arr
    	//   tmp2 := len(arr) - 1
    	//   tmp3 := len(arr)
    	//   arr = arr[:tmp3-1]
    	//   tmp1[tmp2] = 3
    	arr, arr[len(arr)-1] = arr[:len(arr)-1], 3
    
    	if len(arr) != 1 || arr[0] != 1 || arr[:2][1] != 3 {
    		panic(arr)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 10 21:30:26 UTC 2018
    - 943 bytes
    - Viewed (0)
Back to top