HomeSort by relevance Sort by last modified time
    Searched refs:ONE_DAY_MILLIS (Results 1 - 4 of 4) sorted by null

  /frameworks/volley/src/test/java/com/android/volley/toolbox/
HttpHeaderParserTest.java 43 private static long ONE_DAY_MILLIS = ONE_HOUR_MILLIS * 24;
44 private static long ONE_WEEK_MILLIS = ONE_DAY_MILLIS * 7;
88 headers.put("Last-Modified", rfc1123Date(now - ONE_DAY_MILLIS));
96 assertEqualsWithin(entry.lastModified, (now - ONE_DAY_MILLIS), ONE_MINUTE_MILLIS);
139 assertEqualsWithin(now + ONE_DAY_MILLIS, entry.ttl, ONE_MINUTE_MILLIS);
157 assertEqualsWithin(now + ONE_DAY_MILLIS, entry.softTtl, ONE_MINUTE_MILLIS);
158 assertEqualsWithin(now + ONE_DAY_MILLIS + ONE_WEEK_MILLIS, entry.ttl, ONE_MINUTE_MILLIS);
213 assertEqualsWithin(now + ONE_DAY_MILLIS, entry.softTtl, ONE_MINUTE_MILLIS);
288 assertEqualsWithin(now + ONE_DAY_MILLIS, entry.ttl, ONE_MINUTE_MILLIS);
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/internal/
SslContextBuilder.java 52 private static final long ONE_DAY_MILLIS = 1000L * 60 * 60 * 24;
57 private long notAfter = System.currentTimeMillis() + ONE_DAY_MILLIS;
  /development/samples/NotePad/tests/src/com/example/android/notepad/
NotePadProviderTest.java 71 private static final long ONE_DAY_MILLIS = 1000 * 60 * 60 * 24;
74 private static final long ONE_WEEK_MILLIS = ONE_DAY_MILLIS * 7;
146 TEST_NOTES[index].setCreationDate(START_DATE + (index * ONE_DAY_MILLIS));
626 note.setCreationDate(START_DATE + (10 * ONE_DAY_MILLIS));
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java     [all...]

Completed in 279 milliseconds