Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 82 for S1 (0.06 sec)

  1. src/crypto/internal/nistec/p256_asm_amd64.s

    	CALL p256MulInternal(SB)	// z2ˆ3
    	LDt (y1in)
    	CALL p256MulInternal(SB)	// s1 = z2ˆ3*y1
    	ST (s1)
    
    	LDacc (z1in)
    	CALL p256SqrInternal(SB)	// z1ˆ2
    	ST (z1sqr)
    	LDt (z1in)
    	CALL p256MulInternal(SB)	// z1ˆ3
    	LDt (y2in)
    	CALL p256MulInternal(SB)	// s2 = z1ˆ3*y2
    	ST (s2)
    
    	LDt (s1)
    	CALL p256SubInternal(SB)	// r = s2 - s1
    	ST (r)
    	CALL p256IsZero(SB)
    	MOVQ AX, points_eq
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_arm64.s

    	LDx(y1in)
    	CALL	p256MulInternal<>(SB)    // s1 = z2ˆ3*y1
    	STy(s1)
    
    	LDx(z1in)
    	CALL	p256SqrInternal<>(SB)    // z1^2
    	STy(z1sqr)
    
    	CALL	p256MulInternal<>(SB)    // z1^3
    
    	LDx(y2in)
    	CALL	p256MulInternal<>(SB)    // s2 = z1ˆ3*y2
    
    	LDx(s1)
    	CALL	p256SubInternal<>(SB)    // r = s2 - s1
    	STx(r)
    
    	MOVD	$1, t2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  3. src/encoding/binary/binary_test.go

    		},
    	},
    }
    
    func testRead(t *testing.T, order ByteOrder, b []byte, s1 any) {
    	for _, dec := range decoders {
    		t.Run(dec.name, func(t *testing.T) {
    			var s2 Struct
    			err := dec.fn(order, &s2, b)
    			checkResult(t, dec.name, order, err, s2, s1)
    		})
    	}
    }
    
    func testWrite(t *testing.T, order ByteOrder, b []byte, s1 any) {
    	for _, enc := range encoders {
    		t.Run(enc.name, func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-ingress/values.yaml

          # - key: security
          #   operator: In
          #   values: S1,S2
          #   topologyKey: "kubernetes.io/hostname"
          # This pod anti-affinity rule says that the pod requires not to be scheduled
          # onto a node if that node is already running a pod with label having key
          # "security" and value "S1".
          podAntiAffinityLabelSelector: []
          podAntiAffinityTermLabelSelector: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testerrors/ptr_test.go

    	name     string
    	contents string
    }
    
    var ptrTests = []ptrTest{
    	{
    		// Passing a pointer to a struct that contains a Go pointer.
    		name: "ptr1",
    		c:    `typedef struct s1 { int *p; } s1; void f1(s1 *ps) {}`,
    		body: `C.f1(&C.s1{new(C.int)})`,
    		fail: true,
    	},
    	{
    		// Passing a pointer to a struct that contains a Go pointer.
    		name: "ptr2",
    		c:    `typedef struct s2 { int *p; } s2; void f2(s2 *ps) {}`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

          CompileTimeConstantOperand<TF::BatchToSpaceOp, 1>,      // $crops
          CompileTimeConstantOperand<TF::BincountOp, 1>,          // $size
          CompileTimeConstantOperand<TF::BroadcastArgsOp, 0, 1>,  // $s0, $s1
          // $s0, $s1
          CompileTimeConstantOperand<TF::BroadcastGradientArgsOp, 0, 1>,
          CompileTimeConstantOperand<TF::BroadcastToOp, 1>,  // $shape
          /// $group_assignment
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. manifests/charts/gateways/istio-egress/values.yaml

          # podAntiAffinityLabelSelector:
          # - key: security
          #   operator: In
          #   values: S1,S2
          #   topologyKey: "kubernetes.io/hostname"
          # This pod anti-affinity rule says that the pod requires not to be scheduled
          # onto a node if that node is already running a pod with label having key
          # "security" and value "S1".
          podAntiAffinityLabelSelector: []
          podAntiAffinityTermLabelSelector: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/issues0.go

    	type P C /* ERROR "undefined" */ .P
    
    	// these variables must be "used" even though
    	// the LHS expressions/types below in which
    	// context they are used are unknown/invalid
    	var f, a, s1, s2, s3, t, p int
    
    	_ = F(f)
    	_ = A[a]
    	_ = S[s1:s2:s3]
    	_ = T{t}
    	_ = P{f: p}
    }
    
    // Test that we don't declare lhs variables in short variable
    // declarations before we type-check function literals on the
    // rhs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. pilot/pkg/xds/lds_test.go

    		}
    
    		// s1tcp:2000 outbound, bind=true (to reach other instances of the service)
    		// s1:5005 outbound, bind=true
    		// :443 - https external, bind=false
    		// 10.11.0.1_7070, bind=true -> inbound|2000|s1 - on port 7070, fwd to 37070
    		// virtual
    		if len(adscon.GetTCPListeners()) == 0 {
    			t.Fatal("No response")
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-prefer-tf2xla.mlir

    }
    
    // -----
    
    // CHECK-LABEL: func @testBroadcastGradientArgs
    func.func @testBroadcastGradientArgs(%s0: tensor<4xi32>, %s1: tensor<4xi32>) -> (tensor<1xi32>, tensor<0xi32>) {
      // CHECK:     tf.BroadcastGradientArgs
      %r0, %r1 = "tf.BroadcastGradientArgs"(%s0, %s1) : (tensor<4xi32>, tensor<4xi32>) -> (tensor<1xi32>, tensor<0xi32>)
      func.return %r0, %r1 : tensor<1xi32>, tensor<0xi32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top