Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Reflexive (0.29 sec)

  1. src/cmd/compile/internal/walk/range.go

    	n.SrcRType = srcRType
    	return typecheck.Expr(n)
    }
    
    // isMapClear checks if n is of the form:
    //
    //	for k := range m {
    //		delete(m, k)
    //	}
    //
    // where == for keys of map m is reflexive.
    func isMapClear(n *ir.RangeStmt) bool {
    	if base.Flag.N != 0 || base.Flag.Cfg.Instrumenting {
    		return false
    	}
    
    	t := n.X.Type()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/deadcode.go

    		// implies a cycle in the dominator graph. In the
    		// example, x.Block dominates y.Block, y.Block dominates
    		// z.Block, and z.Block dominates x.Block (treating
    		// "dominates" as reflexive).  Cycles in the dominator
    		// graph can only happen in an unreachable cycle.
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Range.java

       * </ul>
       *
       * <p>Note that if {@code a.encloses(b)}, then {@code b.contains(v)} implies {@code
       * a.contains(v)}, but as the last two examples illustrate, the converse is not always true.
       *
       * <p>Being reflexive, antisymmetric and transitive, the {@code encloses} relation defines a
       * <i>partial order</i> over ranges. There exists a unique {@linkplain Range#all maximal} range
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Range.java

       * </ul>
       *
       * <p>Note that if {@code a.encloses(b)}, then {@code b.contains(v)} implies {@code
       * a.contains(v)}, but as the last two examples illustrate, the converse is not always true.
       *
       * <p>Being reflexive, antisymmetric and transitive, the {@code encloses} relation defines a
       * <i>partial order</i> over ranges. There exists a unique {@linkplain Range#all maximal} range
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. src/runtime/map_benchmark_test.go

    	m := make(map[ComplexAlgKey]bool)
    	var k ComplexAlgKey
    	m[k] = true
    	for i := 0; i < b.N; i++ {
    		_ = m[k]
    	}
    }
    
    func BenchmarkGoMapClear(b *testing.B) {
    	b.Run("Reflexive", func(b *testing.B) {
    		for size := 1; size < 100000; size *= 10 {
    			b.Run(strconv.Itoa(size), func(b *testing.B) {
    				m := make(map[int]int, size)
    				for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 16:41:16 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Equivalence.java

       * all references {@code x}, {@code y}, and {@code z} (any of which may be null):
       *
       * <ul>
       *   <li>{@code equivalent(x, x)} is true (<i>reflexive</i> property)
       *   <li>{@code equivalent(x, y)} and {@code equivalent(y, x)} each return the same result
       *       (<i>symmetric</i> property)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 16 14:34:47 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. pkg/api/testing/defaulting_test.go

    func (o orderedGroupVersionKinds) Swap(i, j int) { o[i], o[j] = o[j], o[i] }
    func (o orderedGroupVersionKinds) Less(i, j int) bool {
    	return o[i].String() < o[j].String()
    }
    
    // TODO: add a reflexive test that verifies that all SetDefaults functions are registered
    func TestDefaulting(t *testing.T) {
    	// these are the known types with defaulters - you must add to this list if you add a top level defaulter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Equivalence.java

       * all references {@code x}, {@code y}, and {@code z} (any of which may be null):
       *
       * <ul>
       *   <li>{@code equivalent(x, x)} is true (<i>reflexive</i> property)
       *   <li>{@code equivalent(x, y)} and {@code equivalent(y, x)} each return the same result
       *       (<i>symmetric</i> property)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/math/DoubleMath.java

       *   <li>With finite tolerance, {@code Double.POSITIVE_INFINITY} and {@code
       *       Double.NEGATIVE_INFINITY} are fuzzily equal only to themselves.
       * </ul>
       *
       * <p>This is reflexive and symmetric, but not transitive, so it is not an
       * equivalence relation and not suitable for use in {@link Object#equals}
       * implementations.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/math/DoubleMath.java

       *   <li>With finite tolerance, {@code Double.POSITIVE_INFINITY} and {@code
       *       Double.NEGATIVE_INFINITY} are fuzzily equal only to themselves.
       * </ul>
       *
       * <p>This is reflexive and symmetric, but not transitive, so it is not an
       * equivalence relation and not suitable for use in {@link Object#equals}
       * implementations.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top