Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 95 for S1 (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/fmt/scan_test.go

    func TestScanEmpty(t *testing.T) {
    	var s1, s2 string
    	n, err := Sscan("abc", &s1, &s2)
    	if n != 1 {
    		t.Errorf("Sscan count error: expected 1: got %d", n)
    	}
    	if err == nil {
    		t.Error("Sscan <one item> expected error; got none")
    	}
    	if s1 != "abc" {
    		t.Errorf("Sscan wrong values: got %q expected \"abc\"", s1)
    	}
    	n, err = Sscan("", &s1, &s2)
    	if n != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/decompose.go

    	if _, ok := f.NamedValues[*s]; !ok {
    		f.NamedValues[*s] = nil
    		return append(ss, s)
    	}
    	return ss
    }
    
    func maybeAppend2(f *Func, ss []*LocalSlot, s1, s2 *LocalSlot) []*LocalSlot {
    	return maybeAppend(f, maybeAppend(f, ss, s1), s2)
    }
    
    func decomposeBuiltInPhi(v *Value) {
    	switch {
    	case v.Type.IsInteger() && v.Type.Size() > v.Block.Func.Config.RegSize:
    		decomposeInt64Phi(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:22:15 UTC 2022
    - 13.4K bytes
    - Viewed (0)
Back to top