Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for textToNumericFormatV4 (0.25 sec)

  1. android/guava/src/com/google/common/net/InetAddresses.java

        } else if (hasDot) {
          if (percentIndex != -1) {
            return null; // Scope IDs are not supported for IPV4
          }
          return textToNumericFormatV4(ipString);
        }
        return null;
      }
    
      @CheckForNull
      private static byte[] textToNumericFormatV4(String ipString) {
        if (IPV4_DELIMITER_MATCHER.countIn(ipString) + 1 != IPV4_PART_COUNT) {
          return null; // Wrong number of parts
        }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Dec 15 19:31:54 GMT 2023
    - 44K bytes
    - Viewed (1)
Back to top