Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 82 of 82 for NumberFormatException (0.07 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

            val portString = input.canonicalize(pos = pos, limit = limit, encodeSet = "")
            val i = portString.toInt()
            if (i in 1..65535) i else -1
          } catch (_: NumberFormatException) {
            -1 // Invalid port.
          }
      }
    
      companion object {
        /** Returns 80 if `scheme.equals("http")`, 443 if `scheme.equals("https")` and -1 otherwise. */
        @JvmStatic
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                    }
                    try {
                        searchRequestBuilder.setTrackTotalHitsUpTo(Integer.parseInt(trackTotalHits));
                        return;
                    } catch (final NumberFormatException e) {
                        // ignore
                    }
                }
                final Object trackTotalHitsValue = fessConfig.getQueryTrackTotalHitsValue();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
Back to top