Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 405 for sizing (0.21 sec)

  1. guava/src/com/google/common/primitives/Shorts.java

      }
    
      private static final class ShortConverter extends Converter<String, Short>
          implements Serializable {
        static final Converter<String, Short> INSTANCE = new ShortConverter();
    
        @Override
        protected Short doForward(String value) {
          return Short.decode(value);
        }
    
        @Override
        protected String doBackward(Short value) {
          return value.toString();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. src/encoding/binary/binary_test.go

    func checkResult(t *testing.T, dir string, order ByteOrder, err error, have, want any) {
    	if err != nil {
    		t.Errorf("%v %v: %v", dir, order, err)
    		return
    	}
    	if !reflect.DeepEqual(have, want) {
    		t.Errorf("%v %v:\n\thave %+v\n\twant %+v", dir, order, have, want)
    	}
    }
    
    var encoders = []struct {
    	name string
    	fn   func(order ByteOrder, data any) ([]byte, error)
    }{
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/Longs.java

       * {@code null} if non-ASCII digits are present in the string.
       *
       * <p>Note that strings prefixed with ASCII {@code '+'} are rejected, even under JDK 7, despite
       * the change to {@link Long#parseLong(String)} for that version.
       *
       * @param string the string representation of a long value
       * @return the long value represented by {@code string}, or {@code null} if {@code string} has a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/Longs.java

       * {@code null} if non-ASCII digits are present in the string.
       *
       * <p>Note that strings prefixed with ASCII {@code '+'} are rejected, even under JDK 7, despite
       * the change to {@link Long#parseLong(String)} for that version.
       *
       * @param string the string representation of a long value
       * @return the long value represented by {@code string}, or {@code null} if {@code string} has a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/Doubles.java

         */
        String decimal = "(?:\\d+#(?:\\.\\d*#)?|\\.\\d+#)";
        String completeDec = decimal + "(?:[eE][+-]?\\d+#)?[fFdD]?";
        String hex = "(?:[0-9a-fA-F]+#(?:\\.[0-9a-fA-F]*#)?|\\.[0-9a-fA-F]+#)";
        String completeHex = "0[xX]" + hex + "[pP][+-]?\\d+#[fFdD]?";
        String fpPattern = "[+-]?(?:NaN|Infinity|" + completeDec + "|" + completeHex + ")";
        fpPattern =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/Doubles.java

         */
        String decimal = "(?:\\d+#(?:\\.\\d*#)?|\\.\\d+#)";
        String completeDec = decimal + "(?:[eE][+-]?\\d+#)?[fFdD]?";
        String hex = "(?:[0-9a-fA-F]+#(?:\\.[0-9a-fA-F]*#)?|\\.[0-9a-fA-F]+#)";
        String completeHex = "0[xX]" + hex + "[pP][+-]?\\d+#[fFdD]?";
        String fpPattern = "[+-]?(?:NaN|Infinity|" + completeDec + "|" + completeHex + ")";
        fpPattern =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableSet.java

        // TODO(cpovirk): Consider using Object[] anyway.
        E[] array = (E[]) elements.toArray();
        /*
         * For a Set, we guess that it contains no duplicates. That's just a guess for purpose of
         * sizing; if the Set uses different equality semantics, it might contain duplicates according
         * to equals(), and we will deduplicate those properly, albeit at some cost in allocations.
         */
        int expectedSize =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/Ints.java

       *
       * <p>Note that strings prefixed with ASCII {@code '+'} are rejected, even under JDK 7, despite
       * the change to {@link Integer#parseInt(String)} for that version.
       *
       * @param string the string representation of an integer value
       * @return the integer value represented by {@code string}, or {@code null} if {@code string} has
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  9. src/main/webapp/css/admin/bootstrap.min.css.map

    https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/\n[tabindex=\"-1\"]:focus:not(:focus-visible) {\n  outline: 0 !important;\n}\n\n\n// Content grouping\n//\n// 1. Add the correct box sizing in Firefox.\n// 2. Show the overflow in Edge and IE.\n\nhr {\n  box-sizing: content-box; // 1\n  height: 0; // 1\n  overflow: visible; // 2\n}\n\n\n//\n// Typography\n//\n\n// Remove top margins from headings\n//\n// By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 626.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/primitives/Ints.java

       *
       * <p>Note that strings prefixed with ASCII {@code '+'} are rejected, even under JDK 7, despite
       * the change to {@link Integer#parseInt(String)} for that version.
       *
       * @param string the string representation of an integer value
       * @return the integer value represented by {@code string}, or {@code null} if {@code string} has
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top