Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for textToNumericFormatV6 (0.09 sec)

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

            if (scope != null) {
              scope.scope = ipString.substring(percentIndex + 1);
            }
            ipString = ipString.substring(0, percentIndex);
          }
          return textToNumericFormatV6(ipString);
        } else if (hasDot) {
          if (percentIndex != -1) {
            return null; // Scope IDs are not supported for IPV4
          }
          return textToNumericFormatV4(ipString);
        }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InetAddresses.java

            if (scope != null) {
              scope.scope = ipString.substring(percentIndex + 1);
            }
            ipString = ipString.substring(0, percentIndex);
          }
          return textToNumericFormatV6(ipString);
        } else if (hasDot) {
          if (percentIndex != -1) {
            return null; // Scope IDs are not supported for IPV4
          }
          return textToNumericFormatV4(ipString);
        }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top