- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.opentext.ia.yaml.core.YamlMap.get()
方法的一些代码示例,展示了YamlMap.get()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YamlMap.get()
方法的具体详情如下:
包路径:com.opentext.ia.yaml.core.YamlMap
类名称:YamlMap
方法名:get
暂无
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
@Override
Stream<Value> getIndexParents(YamlMap content) {
return content.get("processors").toList().stream()
.map(Value::toMap)
.map(map -> map.get("data"));
}
代码示例来源:origin: com.opentext.ia/infoarchive-sdk-core
private void putTemplatedFrom(YamlMap map, String name, String... destinationAndSourceNames) {
int i = 0;
while (i < destinationAndSourceNames.length) {
String destination = destinationAndSourceNames[i++];
String source = destinationAndSourceNames[i++];
putTemplated(map.get(source), destination, name);
}
}
代码示例来源:origin: com.opentext.ia/infoarchive-sdk-core
private void putFrom(YamlMap map, String... destinationAndSourceNames) {
int i = 0;
while (i < destinationAndSourceNames.length) {
String destination = destinationAndSourceNames[i++];
String source = destinationAndSourceNames[i++];
put(destination, map.get(source));
}
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
private void assertSameVersion(Value version, YamlMap target) {
if (!version.toString().equals(target.get(VERSION).toString())) {
throw new IllegalArgumentException(String.format("Different versions of configuration format: %s vs %s",
version, target.get(VERSION)));
}
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
static String byPrefix(YamlMap yaml, String prefix) {
return yaml.get("namespaces").toList().stream()
.map(Value::toMap)
.filter(m -> m.get("prefix").toString().equals(prefix))
.map(m -> m.get("uri").toString())
.findAny()
.orElseThrow(() -> new IllegalArgumentException("Missing namespace with prefix " + prefix));
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
@Override
public List<YamlMap> getContentOwnedBy(YamlMap owner) {
return owner.get("content").toList().stream()
.map(Value::toMap)
.collect(Collectors.toList());
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
@Override
public void accept(Visit visit) {
visit.getMap().get(English.plural(type)).toList().stream()
.map(Value::toMap)
.map(map -> map.get("content"))
.map(Value::toMap)
.filter(map -> "yaml".equals(map.get("format").toString()))
.findAny()
.ifPresent(content -> visitContent(visit, content));
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
@Override
public boolean test(Visit visit) {
if (!super.test(visit)) {
return false;
}
List<Value> namespaces = visit.getMap().get(NAMESPACES).toList();
return !namespaces.isEmpty() && namespaces.stream().allMatch(Value::isScalar);
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
/**
* Returns the contents of the XML Schema for the PDI.
* @return the contents of the XML Schema for the PDI
*/
public String getPdiSchema() {
return pdiSchema().get("content", "text").toString();
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
@Override
public void accept(Visit visit) {
YamlMap yaml = visit.getMap();
yaml.replace(QUERY, yaml.get(QUERY, TEXT));
}
代码示例来源:origin: com.opentext.ia/infoarchive-sdk-core
private Value lookup(String type, String lookupProperty, Value lookupValue, String returnProperty) {
return lookup(type, lookupProperty, lookupValue.toString())
.map(map -> map.get(returnProperty))
.orElseGet(() -> new Value());
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
/**
* Returns the namespace of the PDI.
* @return the namespace of the PDI
*/
public String getPdiSchemaName() {
return pdiSchema().get("name").toString();
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
@Override
void visitContent(Visit visit, YamlMap content) {
content.get(DATA).toList().stream()
.map(Value::toMap)
.filter(map -> map.containsKey(RESULT_SCHEMA))
.forEach(map -> replaceResultSchemaNamespaceWithUri(visit.getRootMap(), map));
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
@Override
public void accept(Visit visit) {
visit.getMap().get("pdiSchemas").toList().stream()
.map(Value::toMap)
.filter(map -> !map.containsKey(NAME) && map.get(NAMESPACES).toList().size() == 1)
.forEach(map -> replaceNamespaceWithName(visit.getRootMap(), map));
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
@Override
protected void visitContent(Visit visit, YamlMap content) {
getIndexParents(content)
.filter(Value::isMap)
.map(Value::toMap)
.forEach(indexParent -> {
List<Value> indexes = indexParent.get(INDEXES).toList();
if (hasIndexMaps(indexes)) {
indexParent.put(INDEXES, convertIndexes(indexes));
}
});
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
@Override
public void accept(Visit visit) {
YamlMap yaml = visit.getMap();
if (yaml.containsKey(RESOURCE)) {
yaml.replace(RESOURCE, prefix + yaml.get(RESOURCE));
}
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
@Override
void visitContent(Visit visit, YamlMap content) {
String xml = translateToXml(visit.getRootMap(), content.get(itemProperties).toList(),
content.get(NAMESPACES).toList());
content
.put("format", "xml")
.remove(NAMESPACES)
.put(TEXT, xml);
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
private YamlMap convertIndex(YamlMap index) {
String type = index.get(TYPE).toString();
index.remove(TYPE);
return new YamlMap().put(type, index);
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
private void include(Value include, YamlMap target) {
String resource;
if (include.isMap()) {
YamlMap map = include.toMap();
if (ObjectConfiguration.parse(map.get(CONFIGURE).toString()).shouldIgnoreObject()) {
return;
}
resource = map.get(RESOURCE).toString();
} else {
resource = include.toString();
}
include(resource, target);
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
@Override
public void accept(Visit visit) {
YamlMap yaml = visit.getMap();
YamlSequence includeFiles = yaml.get(INCLUDES).toList();
yaml.remove(INCLUDES);
includeFiles.forEach(value -> include(value, yaml));
}
这个问题已经有答案了: With arrays, why is it the case that a[5] == 5[a]? (20 个回答) 已关闭 8 年前。 #include int main
我正在使用 CLion 1.05, int main() { int ia[] = {0, 1, 2, 3, 4}; auto ia2(ia); auto ia3(&ia[0]
我无法访问我的 original account .如果可能,请版主合并帐户。 这是我的问题。以下 C 程序存在 IA-64 段错误,但在 IA-32 上运行良好。 int main() {
我有一个接口(interface) IA 和实现它们的类 B 和 C。B 和 C 都实现了 Parcelable也是。 然后我有棘手的部分: D 类有 ArrayList .我也需要在 arrayli
亚马逊于 2018 年 4 月宣布推出一种名为 One-Zone Infrequent Access 的新存储类,它通过仅使用一个可用区进行存储来降低成本,从而补充了普通 IA 选项。 它的 site
我想知道英特尔IA-32架构的基本数据类型是什么。 我知道其中四个-字节(8位),单词(16位),双字(32位)和quadwords(64位)。还有其他人吗? 最佳答案 是的,您又错过了一个-> do
在《英特尔64和IA-32体系结构手册》第3A卷第9章“处理器管理和初始化”中,我发现了以下内容: Compatibility mode execution is selected on a code
段选择器什么时候出现。英特尔指南中的一行说: "Each segment descriptor has an associated segment selector. A segment select
我能够在硬件模式下使用运行 SGX 并从 IAS 成功检索 SigRL。但当我尝试使用他们的 REST API 执行报价证明时,我遇到了困难。我使用的REST API接口(interface)说明he
谁能解释为什么这段代码有效,即使我只为 st 数组中的 2 个单元格分配内存? int main(void){ st=(int *)malloc(sizeof(int)*2); int j; for(
我正在尝试使用 IA 32 的汇编代码读取命令行参数。我在这里找到了如何执行此操作的解释 http://www.paladingrp.com/ia32.shtml .我可以使用堆栈指针来获取参数的数量
我在IA-32中搜索寻址模式,但没有看到任何网站或文章对寻址模式进行了简单的解释。我需要一篇文章或其他东西,通过内存变化过程中的一些图片简单地解释这件事,并通过图片指定地址模式。 我知道在 IA-32
我正在查看进程的 Linux IA-32 内存模型,我有一个简单的问题。图片中的灰色区域包含什么?它们是否仅用于显示内存的开始和结束?那么,文本是否从 0x0 开始,堆栈从 0xFFFFFFFF 开始
我正在研究英特尔的 IA-32 软件开发人员手册。特别是,我正在阅读以下手册:http://www.intel.com/Assets/PDF/manual/253666.pdf .让我们以 ADD 指
我一直在尝试让 jquery-ias 插件与我的网站一起使用,但是当我在页面底部添加页脚时似乎出现问题。只要不包含页脚,该插件就可以完美运行并按预期加载页面。但是,当我包含页脚时,它会停止滚动并显示“
由于这方面的网络资源很少,为了将来的搜索,我将首先列出 IA-32 汇编语言 (NASM) 的地址模式,然后提出一个简单的问题。 寄存器寻址 mov eax, ebx:将 ebx 中的内容复制到 ea
这几天我一直在为这个问题苦苦挣扎。我正在尝试在容器外部测试 DAO,但在运行测试用例时出现错误: Error creating bean with name 'SqlMapClient' define
我能找到的所有东西都告诉我我应该对齐,因为它可以更有效率,但我找不到我应该在 IA-32 上这样做的硬件问题。这是因为地址总线需要被 4 整除的地址吗?或者因为 RAM 只能提供对齐的数据而不会损失性
我将我的网站设置如下: Visualizati
我在将以下 java 代码转换为 Intel IA-32 程序集时遇到了一些困难: class Person() { char name [8]; int age; void pr
我是一名优秀的程序员,十分优秀!