- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 244 for timestamppb (0.11 sec)
-
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenMetadata.java
private final Path path; protected final Date timestamp; private boolean merged; @Deprecated protected MavenMetadata(Metadata metadata, File file, Date timestamp) { this(metadata, file != null ? file.toPath() : null, timestamp); } protected MavenMetadata(Metadata metadata, Path path, Date timestamp) { this.metadata = metadata; this.path = path;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java
} private static class VersionInfo { String timestamp; String version; ArtifactRepository repository; VersionInfo(String timestamp, String version, ArtifactRepository repository) { this.timestamp = (timestamp != null) ? timestamp : ""; this.version = version; this.repository = repository; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 20.3K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/LocalSnapshotMetadata.java
private final Collection<Artifact> artifacts = new ArrayList<>(); LocalSnapshotMetadata(Artifact artifact, Date timestamp) { super(createMetadata(artifact), (Path) null, timestamp); } LocalSnapshotMetadata(Metadata metadata, Path path, Date timestamp) { super(metadata, path, timestamp); } private static Metadata createMetadata(Artifact artifact) { Snapshot snapshot = new Snapshot();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.8K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadata.java
private final PluginInfo pluginInfo; PluginsMetadata(PluginInfo pluginInfo, Date timestamp) { super(createRepositoryMetadata(pluginInfo), (Path) null, timestamp); this.pluginInfo = pluginInfo; } PluginsMetadata(PluginInfo pluginInfo, Path path, Date timestamp) { super(createRepositoryMetadata(pluginInfo), path, timestamp); this.pluginInfo = pluginInfo; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/MavenBuildTimestampTest.java
interpolationProperties.put("maven.build.timestamp.format", "yyyyMMdd'T'HHmm'Z'"); MavenBuildTimestamp timestamp = new MavenBuildTimestamp(new Date(), interpolationProperties); String formattedTimestamp = timestamp.formattedTimestamp(); assertTrue(formattedTimestamp.endsWith("Z"), "We expect the UTC marker at the end of the timestamp."); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/LocalSnapshotMetadataGenerator.java
class LocalSnapshotMetadataGenerator implements MetadataGenerator { private final Map<Object, LocalSnapshotMetadata> snapshots; private final Date timestamp; LocalSnapshotMetadataGenerator(RepositorySystemSession session, InstallRequest request) { timestamp = (Date) ConfigUtils.getObject(session, new Date(), "maven.startTime"); snapshots = new LinkedHashMap<>(); } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryCreator.java
this.pattern = Pattern.compile(pattern); } public DictionaryFile<? extends DictionaryItem> create(final String path, final Date timestamp) { if (!isTarget(path)) { return null; } return newDictionaryFile(encodePath(path), path, timestamp); } protected String encodePath(final String path) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.8K bytes - Viewed (0) -
cmd/local-locker_gen.go
return } case "UID": z.UID, err = dc.ReadString() if err != nil { err = msgp.WrapError(err, "UID") return } case "Timestamp": z.Timestamp, err = dc.ReadInt64() if err != nil { err = msgp.WrapError(err, "Timestamp") return } case "TimeLastRefresh": z.TimeLastRefresh, err = dc.ReadInt64() if err != nil { err = msgp.WrapError(err, "TimeLastRefresh")
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jul 24 10:24:01 UTC 2024 - 13.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
protected String id; protected String path; protected Date timestamp; protected DictionaryFile(final String id, final String path, final Date timestamp) { this.id = id; this.path = path; this.timestamp = timestamp; } public String getId() { return id; } public String getPath() { return path;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 6.8K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/converter/TimestampConverterTest.java
*/ @Test public void testGetAsObjectAndGetAsString() throws Exception { final TimestampConverter converter = new TimestampConverter("yyyy/MM/dd HH:mm:ss"); final java.sql.Timestamp result = (java.sql.Timestamp) converter.getAsObject("2008/12/31 12:34:56"); System.out.println(result); assertThat(converter.getAsString(result), is("2008/12/31 12:34:56")); } /** * @throws Exception
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.6K bytes - Viewed (0)