Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 200 for S1 (0.04 sec)

  1. 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)
  2. src/reflect/all_test.go

    	{S1{}, "S0", []int{1}, 0},
    	{S1{S0: S0{C: 'c'}}, "C", []int{1, 2}, 'c'},
    	{S2{A: 'a'}, "A", []int{0}, 'a'},
    	{S2{}, "S1", []int{1}, 0},
    	{S2{S1: &S1{B: 'b'}}, "B", []int{1, 0}, 'b'},
    	{S2{S1: &S1{S0: S0{C: 'c'}}}, "C", []int{1, 1, 2}, 'c'},
    	{S2{}, "D", nil, 0},
    	{S3{}, "S1", nil, 0},
    	{S3{S2: S2{A: 'a'}}, "A", []int{1, 0}, 'a'},
    	{S3{}, "B", nil, 0},
    	{S3{D: 'd'}, "D", []int{2}, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. src/encoding/json/decode_test.go

    		s0[i] = byte(i)
    	}
    	b, err := Marshal(s0)
    	if err != nil {
    		t.Fatalf("Marshal error: %v", err)
    	}
    	var s1 []byte
    	if err := Unmarshal(b, &s1); err != nil {
    		t.Fatalf("Unmarshal error: %v", err)
    	}
    	if !bytes.Equal(s0, s1) {
    		t.Errorf("Marshal:")
    		diff(t, s0, s1)
    	}
    }
    
    type Xint struct {
    	X int
    }
    
    func TestUnmarshalInterface(t *testing.T) {
    	var xint Xint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K 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. src/internal/types/testdata/check/decls0.go

    	a /* ERROR "redeclared" */ int
    
    	b /* ERROR "invalid recursive type" */ c
    	c d
    	d e
    	e b
    
    	t *t
    
    	U V
    	V *W
    	W U
    
    	P1 *S2
    	P2 P1
    
    	S0 struct {
    	}
    	S1 struct {
    		a, b, c int
    		u, v, a /* ERROR "redeclared" */ float32
    	}
    	S2 struct {
    		S0 // embedded field
    		S0 /* ERROR "redeclared" */ int
    	}
    	S3 struct {
    		x S2
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/expr0.go

    	c16 = &c0
    	c17 = *u16
    	c18 = <-u16 /* ERROR "cannot receive" */
    	c19 = ~ /* ERROR "cannot use ~ outside of interface or type constraint" */ c0
    
    	// string
    	s0 = "foo"
    	s1 = +"foo" /* ERROR "not defined" */
    	s2 = -s0 /* ERROR "not defined" */
    	s3 = !s0 /* ERROR "not defined" */
    	s4 = ^s0 /* ERROR "not defined" */
    	s5 = *s4
    	s6 = &s4
    	s7 = *s6
    	s8 = <-s7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 4.4K 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/go/printer/testdata/parser.go

    	}
    
    	pos := p.expect(token.SWITCH)
    	p.openScope()
    	defer p.closeScope()
    
    	var s1, s2 ast.Stmt
    	if p.tok != token.LBRACE {
    		prevLev := p.exprLev
    		p.exprLev = -1
    		if p.tok != token.SEMICOLON {
    			s2 = p.parseSimpleStmt(false)
    		}
    		if p.tok == token.SEMICOLON {
    			p.next()
    			s1 = s2
    			s2 = nil
    			if p.tok != token.LBRACE {
    				s2 = p.parseSimpleStmt(false)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top