Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for S1 (0.08 sec)

  1. src/go/types/typeset.go

    // hasTerms reports whether the type set has specific type terms.
    func (s *_TypeSet) hasTerms() bool { return !s.terms.isEmpty() && !s.terms.isAll() }
    
    // subsetOf reports whether s1 ⊆ s2.
    func (s1 *_TypeSet) subsetOf(s2 *_TypeSet) bool { return s1.terms.subsetOf(s2.terms) }
    
    // TODO(gri) TypeSet.is and TypeSet.underIs should probably also go into termlist.go
    
    // is calls f with the specific type terms of s and reports whether
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/typeset.go

    // hasTerms reports whether the type set has specific type terms.
    func (s *_TypeSet) hasTerms() bool { return !s.terms.isEmpty() && !s.terms.isAll() }
    
    // subsetOf reports whether s1 ⊆ s2.
    func (s1 *_TypeSet) subsetOf(s2 *_TypeSet) bool { return s1.terms.subsetOf(s2.terms) }
    
    // TODO(gri) TypeSet.is and TypeSet.underIs should probably also go into termlist.go
    
    // is calls f with the specific type terms of s and reports whether
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. src/expvar/expvar_test.go

    	var m, m1, m2 Map
    	m.Set("map1", &m1)
    	m1.Add("a", 1)
    	m1.Add("z", 2)
    	m.Set("map2", &m2)
    	for i := 0; i < 9; i++ {
    		m2.Add(strconv.Itoa(i), int64(i))
    	}
    	var s1, s2 String
    	m.Set("str1", &s1)
    	s1.Set("hello, world!")
    	m.Set("str2", &s2)
    	s2.Set("fizz buzz")
    	b.ResetTimer()
    
    	b.ReportAllocs()
    	for i := 0; i < b.N; i++ {
    		_ = m.String()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:46:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top