Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 300 for identical (0.4 sec)

  1. src/cmd/compile/internal/typecheck/subr.go

    		return ir.OXXX, ""
    	}
    
    	// 1. src type is identical to dst.
    	if types.Identical(src, dst) {
    		return ir.OCONVNOP, ""
    	}
    
    	// 2. src and dst have identical underlying types and
    	//   a. either src or dst is not a named type, or
    	//   b. both are empty interface types, or
    	//   c. at least one is a gcshape type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Joiner.java

      }
    
      /**
       * Appends the string representation of each of {@code parts}, using the previously configured
       * separator between each, to {@code builder}. Identical to {@link #appendTo(Appendable,
       * Iterable)}, except that it does not throw {@link IOException}.
       */
      @CanIgnoreReturnValue
      public final StringBuilder appendTo(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/unify.go

    // type parameter and its core type.
    // If two types are not structurally equivalent, they cannot be Go
    // identical types. On the other hand, if they are structurally
    // equivalent, they may be Go identical or at least assignable, or
    // they may be in the type set of a constraint.
    // Whether they indeed are identical or assignable is determined
    // upon instantiation and function argument passing.
    
    package types2
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/operand.go

    	if x.mode == invalid || !isValid(T) {
    		return true, 0 // avoid spurious errors
    	}
    
    	origT := T
    	V := Unalias(x.typ)
    	T = Unalias(T)
    
    	// x's type is identical to T
    	if Identical(V, T) {
    		return true, 0
    	}
    
    	Vu := under(V)
    	Tu := under(T)
    	Vp, _ := V.(*TypeParam)
    	Tp, _ := T.(*TypeParam)
    
    	// x is an untyped value representable by a value of type T.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/base/StringsTest.java

        assertEquals("a", Strings.commonPrefix("abc", "aaaaa"));
        assertEquals("aa", Strings.commonPrefix("aa", "aaaaa"));
        assertEquals("abc", Strings.commonPrefix(new StringBuffer("abcdef"), "abcxyz"));
    
        // Identical valid surrogate pairs.
        assertEquals(
            "abc\uD8AB\uDCAB", Strings.commonPrefix("abc\uD8AB\uDCABdef", "abc\uD8AB\uDCABxyz"));
        // Differing valid surrogate pairs.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Joiner.java

      }
    
      /**
       * Appends the string representation of each of {@code parts}, using the previously configured
       * separator between each, to {@code builder}. Identical to {@link #appendTo(Appendable,
       * Iterable)}, except that it does not throw {@link IOException}.
       */
      @CanIgnoreReturnValue
      public final StringBuilder appendTo(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  7. src/go/types/index.go

    				// first type
    				length = l
    				key, elem = k, e
    				return true
    			}
    			// all map keys must be identical (incl. all nil)
    			// (that is, we cannot mix maps with other types)
    			if !Identical(key, k) {
    				return false
    			}
    			// all element types must be identical
    			if !Identical(elem, e) {
    				return false
    			}
    			// track the minimal length for arrays, if any
    			if l >= 0 && l < length {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:05 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/language/match.go

    // applied in the following order.
    //   1) Original language was defined and was identical.
    //   2) Original region was defined and was identical.
    //   3) Distance between two maximized regions was the smallest.
    //   4) Original script was defined and was identical.
    //   5) Distance from want tag to have tag using the parent relation [see Note 5.]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  9. src/runtime/metrics.go

    		}
    	}
    	a.ensured = a.ensured.union(missing)
    }
    
    // metricKind is a runtime copy of runtime/metrics.ValueKind and
    // must be kept structurally identical to that type.
    type metricKind int
    
    const (
    	// These values must be kept identical to their corresponding Kind* values
    	// in the runtime/metrics package.
    	metricKindBad metricKind = iota
    	metricKindUint64
    	metricKindFloat64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/index.go

    				// first type
    				length = l
    				key, elem = k, e
    				return true
    			}
    			// all map keys must be identical (incl. all nil)
    			// (that is, we cannot mix maps with other types)
    			if !Identical(key, k) {
    				return false
    			}
    			// all element types must be identical
    			if !Identical(elem, e) {
    				return false
    			}
    			// track the minimal length for arrays, if any
    			if l >= 0 && l < length {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top