HomeSort by relevance Sort by last modified time
    Searched refs:DAYS (Results 1 - 25 of 31) sorted by null

1 2

  /external/openssl/apps/
CA.pl 48 $DAYS="-days 365"; # 1 year
49 $CADAYS="-days 1095"; # 3 years
71 system ("$REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS");
76 system ("$REQ -new -keyout newkey.pem -out newreq.pem $DAYS");
81 system ("$REQ -new -nodes -keyout newkey.pem -out newreq.pem $DAYS");
CA.pl.in 48 $DAYS="-days 365"; # 1 year
49 $CADAYS="-days 1095"; # 3 years
71 system ("$REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS");
76 system ("$REQ -new -keyout newkey.pem -out newreq.pem $DAYS");
81 system ("$REQ -new -nodes -keyout newkey.pem -out newreq.pem $DAYS");
CA.sh 63 if [ -z "$DAYS" ] ; then DAYS="-days 365" ; fi # 1 year
64 CADAYS="-days 1095" # 3 years
86 $REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS
92 $REQ -new -keyout newkey.pem -out newreq.pem $DAYS
98 $REQ -new -nodes -keyout newreq.pem -out newreq.pem $DAYS
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeConstants.java 137 * <p>A constant that represents the days field.</p>
139 public static final Field DAYS = new Field("DAYS", 2);
Duration.java 34 * which consists of six fields (years, months, days, hours,
56 * <p>For example, 30 days cannot be meaningfully compared to one month.
68 * subtract 15 days from 1 month. See the javadoc of those methods
160 boolean daySet = isSet(DatatypeConstants.DAYS);
247 * Obtains the value of the DAYS field as an integer value,
251 * that this method works on the DAYS field.
253 * @return Days of this <code>Duration</code>.
256 return getFieldValueAsInt(DatatypeConstants.DAYS);
383 * In case of YEARS, MONTHS, DAYS, HOURS, and MINUTES, the returned
388 * one of the six Field constants (YEARS,MONTHS,DAYS,HOURS
902 BigInteger days = (BigInteger) getField(DatatypeConstants.DAYS); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
EmptyCachesTest.java 20 import static java.util.concurrent.TimeUnit.DAYS;
370 DurationSpec.of(1, DAYS)))
374 DurationSpec.of(1, DAYS)))
377 DurationSpec.of(1, DAYS)));
PopulatedCachesTest.java 21 import static java.util.concurrent.TimeUnit.DAYS;
325 DurationSpec.of(1, DAYS)))
329 DurationSpec.of(1, DAYS)))
333 DurationSpec.of(1, DAYS)));
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
AbstractSyncAdapter.java 50 public static final int DAYS = HOURS*24;
51 public static final int WEEKS = DAYS*7;
CalendarSyncAdapter.java 405 cv.put(Events.DURATION, "P" + ((endTime - startTime) / DAYS) + "D");
    [all...]
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
TimeUnit.java 80 DAYS {
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
AbstractSyncService.java 48 public static final int DAYS = 24*HOURS;
EasAccountService.java 254 ((System.currentTimeMillis() - mMailbox.mSyncTime) > DAYS)) {
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
TimeUnit.java 109 DAYS {
245 * Equivalent to <tt>DAYS.convert(duration, this)</tt>.
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogQueryHandler.java 78 private static final long NEW_SECTION_TIME_WINDOW = TimeUnit.DAYS.toMillis(7);
  /external/openssh/
misc.c 279 #define DAYS (HOURS * 24)
280 #define WEEKS (DAYS * 7)
292 * d|D days
298 * 2d 2 days
341 secs *= DAYS;
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 623 long endTime = startTime + (365*CalendarUtilities.DAYS);
636 CalendarUtilities.DAYS, endTime, true);
653 endTime = startTime + (365*CalendarUtilities.DAYS);
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 633 long endTime = startTime + (365*CalendarUtilities.DAYS);
646 CalendarUtilities.DAYS, endTime, true);
663 endTime = startTime + (365*CalendarUtilities.DAYS);
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/utility/
CalendarUtilities.java 76 static final long DAYS = HOURS*24;
151 // Bits used in EAS recurrences for days of the week
507 // sDayTokens is 0 based (SU = 0); Calendar days of week are 1 based (SU = 1)
563 long endOfYearTime = startTime + (365*DAYS) + (DAYS>>2);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.ui.sdk.scheduler_1.0.0.v20100507-1815.jar 
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/http/
HttpResponseCacheTest.java 584 // last modified: 105 days ago
585 // served: 5 days ago
586 // default lifetime: (105 - 5) / 10 = 10 days
587 // expires: 10 days from served date = 5 days from now
588 server.enqueue(new MockResponse().addHeader("Last-Modified: " + formatDate(-105, TimeUnit.DAYS))
589 .addHeader("Date: " + formatDate(-5, TimeUnit.DAYS))
    [all...]
  /libcore/luni/src/test/java/libcore/net/http/
HttpResponseCacheTest.java 563 // last modified: 105 days ago
564 // served: 5 days ago
565 // default lifetime: (105 - 5) / 10 = 10 days
566 // expires: 10 days from served date = 5 days from now
568 .addHeader("Last-Modified: " + formatDate(-105, TimeUnit.DAYS))
569 .addHeader("Date: " + formatDate(-5, TimeUnit.DAYS))
    [all...]
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 

Completed in 1042 milliseconds

1 2