Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for hex2decimal (0.24 sec)

  1. doc/go_spec.html

    An exponent value exp scales the mantissa (integer and fractional part) by 10<sup>exp</sup>.
    </p>
    
    <p>
    A hexadecimal floating-point literal consists of a <code>0x</code> or <code>0X</code>
    prefix, an integer part (hexadecimal digits), a radix point, a fractional part (hexadecimal digits),
    and an exponent part (<code>p</code> or <code>P</code> followed by an optional sign and decimal digits).
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InetAddresses.java

       * 4. The main difference is that this method uses "::" for zero compression, while Java's version
       * uses the uncompressed form.
       *
       * <p>This method uses hexadecimal for all IPv6 addresses, including IPv4-mapped IPv6 addresses
       * such as "::c000:201". The output does not include a Scope ID.
       *
       * @param ip {@link InetAddress} to be converted to an address string
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Dec 15 19:31:54 GMT 2023
    - 44K bytes
    - Viewed (1)
  3. guava-tests/test/com/google/common/primitives/FloatsTest.java

      @GwtIncompatible // Floats.tryParse
      public void testTryParseOfToStringIsOriginal() {
        for (float f : NUMBERS) {
          checkTryParse(f, Float.toString(f));
        }
      }
    
      @J2ktIncompatible // hexadecimal floats
      @GwtIncompatible // Floats.tryParse
      public void testTryParseOfToHexStringIsOriginal() {
        for (float f : NUMBERS) {
          checkTryParse(f, Float.toHexString(f));
        }
      }
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Feb 29 15:43:06 GMT 2024
    - 29.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/BaseEncoding.java

     * <tr>
     * <th>Encoding
     * <th>Alphabet
     * <th>{@code char:byte} ratio
     * <th>Default padding
     * <th>Comments
     * <tr>
     * <td>{@link #base16()}
     * <td>0-9 A-F
     * <td>2.00
     * <td>N/A
     * <td>Traditional hexadecimal. Defaults to upper case.
     * <tr>
     * <td>{@link #base32()}
     * <td>A-Z 2-7
     * <td>1.60
     * <td>=
     * <td>Human-readable; no possibility of mixing up 0/O or 1/I. Defaults to upper case.
     * <tr>
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Mar 15 16:33:32 GMT 2024
    - 41.7K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    An exponent value exp scales the mantissa (integer and fractional part) by 10<sup>exp</sup>.
    </p>
    
    <p>
    A hexadecimal floating-point literal consists of a <code>0x</code> or <code>0X</code>
    prefix, an integer part (hexadecimal digits), a radix point, a fractional part (hexadecimal digits),
    and an exponent part (<code>p</code> or <code>P</code> followed by an optional sign and decimal digits).
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/primitives/FloatsTest.java

      @GwtIncompatible // Floats.tryParse
      public void testTryParseOfToStringIsOriginal() {
        for (float f : NUMBERS) {
          checkTryParse(f, Float.toString(f));
        }
      }
    
      @J2ktIncompatible // hexadecimal floats
      @GwtIncompatible // Floats.tryParse
      public void testTryParseOfToHexStringIsOriginal() {
        for (float f : NUMBERS) {
          checkTryParse(f, Float.toHexString(f));
        }
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 29 15:43:06 GMT 2024
    - 29.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/primitives/DoublesTest.java

      @GwtIncompatible // Doubles.tryParse
      public void testTryParseOfToStringIsOriginal() {
        for (double d : NUMBERS) {
          checkTryParse(d, Double.toString(d));
        }
      }
    
      @J2ktIncompatible // hexadecimal doubles
      @GwtIncompatible // Doubles.tryParse
      public void testTryParseOfToHexStringIsOriginal() {
        for (double d : NUMBERS) {
          checkTryParse(d, Double.toHexString(d));
        }
      }
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Feb 29 15:43:06 GMT 2024
    - 31.5K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/primitives/DoublesTest.java

      @GwtIncompatible // Doubles.tryParse
      public void testTryParseOfToStringIsOriginal() {
        for (double d : NUMBERS) {
          checkTryParse(d, Double.toString(d));
        }
      }
    
      @J2ktIncompatible // hexadecimal doubles
      @GwtIncompatible // Doubles.tryParse
      public void testTryParseOfToHexStringIsOriginal() {
        for (double d : NUMBERS) {
          checkTryParse(d, Double.toHexString(d));
        }
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 29 15:43:06 GMT 2024
    - 31.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/CharMatcher.java

      @Override
      public String toString() {
        return super.toString();
      }
    
      /**
       * Returns the Java Unicode escape sequence for the given {@code char}, in the form "\u12AB" where
       * "12AB" is the four hexadecimal digits representing the 16-bit code unit.
       */
      private static String showCharacter(char c) {
        String hex = "0123456789ABCDEF";
        char[] tmp = {'\\', 'u', '\0', '\0', '\0', '\0'};
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/CharMatcher.java

      @Override
      public String toString() {
        return super.toString();
      }
    
      /**
       * Returns the Java Unicode escape sequence for the given {@code char}, in the form "\u12AB" where
       * "12AB" is the four hexadecimal digits representing the 16-bit code unit.
       */
      private static String showCharacter(char c) {
        String hex = "0123456789ABCDEF";
        char[] tmp = {'\\', 'u', '\0', '\0', '\0', '\0'};
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.7K bytes
    - Viewed (0)
Back to top