Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 84 for unrepresentable (0.61 sec)

  1. doc/go1.17_spec.html

    </li>
    <li>
    <code>x</code> is an untyped <a href="#Constants">constant</a>
    <a href="#Representability">representable</a>
    by a value of type <code>T</code>.
    </li>
    </ul>
    
    
    <h3 id="Representability">Representability</h3>
    
    <p>
    A <a href="#Constants">constant</a> <code>x</code> is <i>representable</i>
    by a value of type <code>T</code> if one of the following conditions applies:
    </p>
    
    <ul>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    <a href="#Complex_numbers">components</a> <code>real(x)</code> and <code>imag(x)</code>
    are representable by values of <code>T</code>'s component type (<code>float32</code> or
    <code>float64</code>).
    </li>
    </ul>
    
    <p>
    If <code>T</code> is a type parameter,
    <code>x</code> is representable by a value of type <code>T</code> if <code>x</code> is representable
    by a value of each type in <code>T</code>'s type set.
    </p>
    
    <pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  3. src/cmd/compile/internal/types2/check_test.go

    }
    
    func withSizes(sizes Sizes) func(*Config) {
    	return func(cfg *Config) {
    		cfg.Sizes = sizes
    	}
    }
    
    // TestIndexRepresentability tests that constant index operands must
    // be representable as int even if they already have a type that can
    // represent larger values.
    func TestIndexRepresentability(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/runtime/string.go

    	return s
    }
    
    const (
    	maxUint64 = ^uint64(0)
    	maxInt64  = int64(maxUint64 >> 1)
    )
    
    // atoi64 parses an int64 from a string s.
    // The bool result reports whether s is a number
    // representable by a value of type int64.
    func atoi64(s string) (int64, bool) {
    	if s == "" {
    		return 0, false
    	}
    
    	neg := false
    	if s[0] == '-' {
    		neg = true
    		s = s[1:]
    	}
    
    	un := uint64(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. src/go/types/check_test.go

    }
    
    func withSizes(sizes Sizes) func(*Config) {
    	return func(cfg *Config) {
    		cfg.Sizes = sizes
    	}
    }
    
    // TestIndexRepresentability tests that constant index operands must
    // be representable as int even if they already have a type that can
    // represent larger values.
    func TestIndexRepresentability(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/runtime/type.go

    //
    // When a type is defined at run time, its *rtype data lives on the heap.
    // There are a wide range of possible addresses the heap may use, that
    // may not be representable as a 32-bit offset. Moreover the GC may
    // one day start moving heap memory, in which case there is no stable
    // offset that can be defined.
    //
    // To provide stable offsets, we add pin *rtype objects in a global map
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. src/net/http/cookiejar/jar.go

    	errMalformedDomain = errors.New("cookiejar: malformed cookie domain attribute")
    )
    
    // endOfTime is the time when session (non-persistent) cookies expire.
    // This instant is representable in most date/time formats (not just
    // Go's time.Time) and should be far enough in the future.
    var endOfTime = time.Date(9999, 12, 31, 23, 59, 59, 0, time.UTC)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. src/runtime/mranges.go

    	// it corresponds to the virtual address arenaBaseOffset.
    	minOffAddr = offAddr{arenaBaseOffset}
    
    	// maxOffAddr is the maximum address in the offset address
    	// space. It corresponds to the highest virtual address representable
    	// by the page alloc chunk and heap arena maps.
    	maxOffAddr = offAddr{(((1 << heapAddrBits) - 1) + arenaBaseOffset) & uintptrMask}
    )
    
    // offAddr represents an address in a contiguous view
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    	switch exp {
    	case 0:
    		return false // ±0
    	case 0x7ff:
    		return false // ±inf
    	case 0x7fe:
    		return false // exponent is not representable
    	default:
    		return true
    	}
    }
    
    // reciprocalExact32 reports whether 1/c is exactly representable.
    func reciprocalExact32(c float32) bool {
    	b := math.Float32bits(c)
    	man := b & (1<<23 - 1)
    	if man != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/hash/HashTestUtils.java

     *
     * @author Dimitris Andreou
     * @author Kurt Alfred Kluever
     */
    final class HashTestUtils {
      private HashTestUtils() {}
    
      /** Converts a string, which should contain only ascii-representable characters, to a byte[]. */
      static byte[] ascii(String string) {
        byte[] bytes = new byte[string.length()];
        for (int i = 0; i < string.length(); i++) {
          bytes[i] = (byte) string.charAt(i);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 25.3K bytes
    - Viewed (0)
Back to top