- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for getStartTime (0.04 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/ProtoSession.java
try { return new Builder( getUserProperties(), getSystemProperties(), getStartTime(), getTopDirectory(), getRootDirectory()); } catch (IllegalStateException e) { return new Builder(getUserProperties(), getSystemProperties(), getStartTime(), getTopDirectory(), null); } } /** * Returns new builder from scratch. */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 7.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/transfer/AbstractMavenTransferListener.java
message.resetStyle().append(resource.getResourceName()); message.style(STYLE).append(" (").append(format.format(contentLength)); Duration duration = Duration.between(resource.getStartTime(), MonotonicClock.now()); long nanos = duration.toNanos(); if (nanos > 0) { double seconds = nanos / (double) TimeUnit.SECONDS.toNanos(1); // Convert to fractional seconds
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Apr 22 22:13:51 UTC 2025 - 4.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenSession.java
return clone; } catch (CloneNotSupportedException e) { throw new RuntimeException("Bug", e); } } @Deprecated public Date getStartTime() { return request.getStartTime(); } public Instant getStartInstant() { return request.getStartInstant(); } public boolean isParallel() { return parallel; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 16.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsJobLog.java
return convertEmptyToNull(scriptType); } public void setScriptType(String value) { registerModifiedProperty("scriptType"); this.scriptType = value; } public Long getStartTime() { checkSpecifiedProperty("startTime"); return startTime; } public void setStartTime(Long value) { registerModifiedProperty("startTime"); this.startTime = value;
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSession.java
} @Override public int getDegreeOfConcurrency() { return getMavenSession().getRequest().getDegreeOfConcurrency(); } @Nonnull @Override public Instant getStartTime() { return getMavenSession().getRequest().getStartInstant(); } @Override public Path getRootDirectory() { return getMavenSession().getRequest().getRootDirectory(); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/JobLogDbm.java
setupEpg(_epgMap, et -> ((JobLog) et).getScriptType(), (et, vl) -> ((JobLog) et).setScriptType(DfTypeUtil.toString(vl)), "scriptType"); setupEpg(_epgMap, et -> ((JobLog) et).getStartTime(), (et, vl) -> ((JobLog) et).setStartTime(DfTypeUtil.toLong(vl)), "startTime"); setupEpg(_epgMap, et -> ((JobLog) et).getTarget(), (et, vl) -> ((JobLog) et).setTarget(DfTypeUtil.toString(vl)), "target"); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 11.1K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java
} private void logStats(MavenSession session) { infoLine('-'); long finish = System.currentTimeMillis(); long time = finish - session.getRequest().getStartTime().getTime(); String wallClock = session.getRequest().getDegreeOfConcurrency() > 1 ? " (Wall Clock)" : ""; logger.info("Total time: {}{}", formatDuration(time), wallClock);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 08 08:49:11 UTC 2024 - 17.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java
configProps.put(ConfigurationProperties.USER_AGENT, getUserAgent()); configProps.put(ConfigurationProperties.INTERACTIVE, request.isInteractiveMode()); configProps.put("maven.startTime", request.getStartTime()); configProps.put(Constants.MAVEN_START_INSTANT, request.getStartInstant()); sessionBuilder.setOffline(request.isOffline()); sessionBuilder.setChecksumPolicy(request.getGlobalChecksumPolicy());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jul 17 05:56:35 UTC 2025 - 25.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java
*/ @Deprecated String getBaseDirectory(); // Timing (remove this) @Deprecated MavenExecutionRequest setStartTime(Date start); @Deprecated Date getStartTime(); MavenExecutionRequest setStartInstant(Instant start); Instant getStartInstant(); // Goals MavenExecutionRequest setGoals(List<String> goals); List<String> getGoals();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Dec 12 11:02:17 UTC 2024 - 18.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
return resumeFrom; } @Override public String getMakeBehavior() { return makeBehavior; } @Override @Deprecated public Date getStartTime() { return new Date(startTime.toEpochMilli()); } @Override public Instant getStartInstant() { return startTime; } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Dec 12 11:02:17 UTC 2024 - 32.1K bytes - Viewed (0)