本文整理了Java中com.netflix.spinnaker.orca.pipeline.model.Execution.setStartTimeExpiry()
方法的一些代码示例,展示了Execution.setStartTimeExpiry()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Execution.setStartTimeExpiry()
方法的具体详情如下:
包路径:com.netflix.spinnaker.orca.pipeline.model.Execution
类名称:Execution
方法名:setStartTimeExpiry
暂无
代码示例来源:origin: com.netflix.spinnaker.orca/orca-core
public PipelineBuilder withStartTimeExpiry(String startTimeExpiry) {
if (startTimeExpiry != null) {
pipeline.setStartTimeExpiry(Long.valueOf(startTimeExpiry));
}
return this;
}
代码示例来源:origin: com.netflix.spinnaker.orca/orca-core
private Execution parseOrchestration(String configJson) throws IOException {
@SuppressWarnings("unchecked")
Map<String, Serializable> config = objectMapper.readValue(configJson, Map.class);
Execution orchestration = Execution.newOrchestration(getString(config, "application"));
if (config.containsKey("name")) {
orchestration.setDescription(getString(config, "name"));
}
if (config.containsKey("description")) {
orchestration.setDescription(getString(config, "description"));
}
for (Map<String, Object> context : getList(config, "stages")) {
String type = context.remove("type").toString();
String providerType = getString(context, "providerType");
if (providerType != null && !providerType.equals("aws") && !providerType.equals("titus")) {
type += format("_%s", providerType);
}
// TODO: need to check it's valid?
Stage stage = new Stage(orchestration, type, context);
orchestration.getStages().add(stage);
}
if (config.get("trigger") != null) {
orchestration.setTrigger(objectMapper.convertValue(config.get("trigger"), Trigger.class));
}
orchestration.setBuildTime(clock.millis());
orchestration.setAuthentication(AuthenticationDetails.build().orElse(new AuthenticationDetails()));
orchestration.setOrigin((String) config.getOrDefault("origin", "unknown"));
orchestration.setStartTimeExpiry((Long) config.get("startTimeExpiry"));
return orchestration;
}
代码示例来源:origin: com.netflix.spinnaker.orca/orca-redis
execution.setStartTime(NumberUtils.createLong(map.get("startTime")));
if (map.get("startTimeExpiry") != null) {
execution.setStartTimeExpiry(Long.valueOf(map.get("startTimeExpiry")));
内容来源于网络,如有侵权,请联系作者删除!