- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 1,238 for format (0.11 sec)
-
okhttp/src/test/java/okhttp3/RecordedResponse.kt
private fun assertDateInRange( minimum: Long, actual: Long, maximum: Long, ) { assertThat(actual, "${format(minimum)} <= ${format(actual)} <= ${format(maximum)}") .isBetween(minimum, maximum) } private fun format(time: Long) = SimpleDateFormat("HH:mm:ss.SSS").format(Date(time))
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 5.3K bytes - Viewed (0) -
guava-testlib/test/com/google/common/collect/testing/features/FeatureEnumTest.java
assertGoodFeatureEnum(CollectionSize.class); assertGoodFeatureEnum(MapFeature.class); } private static String rootLocaleFormat(String format, Object... args) { return String.format(Locale.ROOT, format, args); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 02:09:00 UTC 2024 - 4.3K bytes - Viewed (0) -
compat/maven-model/src/main/java/org/apache/maven/model/InputSource.java
// --------------------------/ // - Class/Member Variables -/ // --------------------------/ /** * * * The identifier of the POM in the format {@code * <groupId>:<artifactId>:<version>}. * * */ private String modelId; /** * * * The path/URL of the POM or {@code null} if * unknown.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0) -
src/main/config/es/fess_log_click_log.json
}, "queryId" : { "type" : "keyword" }, "queryRequestedAt" : { "type" : "date", "format" : "date_optional_time" }, "requestedAt" : { "type" : "date", "format" : "date_optional_time" }, "url" : { "type" : "keyword" }, "userSessionId" : {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Jun 30 05:55:50 UTC 2018 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionQuery.java
protected String toRangeDateString(Date date, String format) { if (format.contains("epoch_millis")) { return Long.toString(date.getTime()); } else if (format.contains("date_optional_time")) { final SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss"); sdf.setTimeZone(TimeZone.getTimeZone("UTC")); return sdf.format(date); } else {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 21.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionQuery.java
protected String toRangeDateString(Date date, String format) { if (format.contains("epoch_millis")) { return Long.toString(date.getTime()); } else if (format.contains("date_optional_time")) { final SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss"); sdf.setTimeZone(TimeZone.getTimeZone("UTC")); return sdf.format(date); } else {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 21.1K bytes - Viewed (0) -
tests/test_tutorial/test_request_files/test_tutorial001_02_an_py39.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 07 17:12:13 UTC 2023 - 8.5K bytes - Viewed (0) -
manifests/charts/base/files/crd-all.gen.yaml
description: Last time we probed the condition. format: date-time type: string lastTransitionTime: description: Last time the condition transitioned from one status to another. format: date-time type: string message:
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Nov 01 16:23:52 UTC 2024 - 805K bytes - Viewed (0) -
api/maven-api-metadata/src/main/mdo/metadata.mdo
{ java.util.Map<String, SnapshotVersion> versions = new java.util.LinkedHashMap<>(); // never convert from legacy to new format if either source or target is legacy format if ( !v.getSnapshotVersions().isEmpty() ) { for ( SnapshotVersion sv : versioning.getSnapshotVersions() )
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed May 15 17:32:27 UTC 2024 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/pac/Pac.java
this.serverSignature = new PacSignature(bufferData); if ( log.isDebugEnabled() ) { log.debug( String.format("Server signature is type %d @ %d len %d", this.serverSignature.getType(), bufferOffset, bufferSize)); } // Clear signature from checksum copy
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.5K bytes - Viewed (0)