Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for substring (0.24 sec)

  1. guava/src/com/google/common/cache/CacheBuilderSpec.java

              default:
                throw new IllegalArgumentException(
                    format("key %s invalid unit: was %s, must end with one of [dhms]", key, value));
            }
    
            long duration = Long.parseLong(value.substring(0, value.length() - 1));
            parseDuration(spec, duration, timeUnit);
          } catch (NumberFormatException e) {
            throw new IllegalArgumentException(
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Aug 22 14:27:44 GMT 2022
    - 18.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/CacheBuilderSpec.java

              default:
                throw new IllegalArgumentException(
                    format("key %s invalid unit: was %s, must end with one of [dhms]", key, value));
            }
    
            long duration = Long.parseLong(value.substring(0, value.length() - 1));
            parseDuration(spec, duration, timeUnit);
          } catch (NumberFormatException e) {
            throw new IllegalArgumentException(
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Aug 22 14:27:44 GMT 2022
    - 18.1K bytes
    - Viewed (0)
Back to top