- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中us.ihmc.yoVariables.variable.YoVariableList.size()
方法的一些代码示例,展示了YoVariableList.size()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YoVariableList.size()
方法的具体详情如下:
包路径:us.ihmc.yoVariables.variable.YoVariableList
类名称:YoVariableList
方法名:size
暂无
代码示例来源:origin: us.ihmc/simulation-construction-set-tools
private void putVariablesInIndexMap()
{
for (int i = 0; i < allVariables.size(); i++)
{
YoVariable<?> v = allVariables.getVariable(i);
allVariablesIndexMap.put(v, i);
System.out.println(i + " " + v.getFullNameWithNameSpace());
}
}
代码示例来源:origin: us.ihmc/simulation-construction-set-tools
private void updateSendVars()
{
sendVariables.clear();
int numberToIterate = allVariables.size();
for (int i=0; i<numberToIterate; i++)
{
YoVariable<?> var = allVariables.getVariable(i);
YoVariableRegistry registry = var.getYoVariableRegistry();
if (registry.isSent())
{
sendVariables.add(var);
}
}
}
代码示例来源:origin: us.ihmc/simulation-construction-set-tools
private void updateLogVarsCount()
{
logVarsCount = 0;
int numberToIterate = allVariables.size();
for (int i=0; i<numberToIterate; i++)
{
YoVariable<?> var = allVariables.getVariable(i);
if (var.getYoVariableRegistry().isLogged())
logVarsCount++;
}
}
代码示例来源:origin: us.ihmc/simulation-construction-set-test
@Test// timeout = 30000
public void testWritingAndReadingALongStateFile() throws IOException
{
File fileOne = new File("fileOne.state");
if (fileOne.exists())
fileOne.delete();
long seed = 1776L;
int numberOfVariables = 2000; // 12000 for when testing long files for efficiency;
Random random = new Random(seed);
ArrayList<YoVariable<?>> variables = createALargeNumberOfVariables(random, numberOfVariables);
YoVariableList originalVarList = new YoVariableList("originalVarList");
originalVarList.addVariables(variables);
writeALongStateFile(fileOne, variables);
DataFileReader dataFileReader = new DataFileReader(fileOne);
YoVariableList newVarList = new YoVariableList("newVarList");
boolean createMissingVariables = true;
boolean printErrorForMissingVariables = false;
YoVariableRegistry registry = new YoVariableRegistry("root");
dataFileReader.readState(newVarList, createMissingVariables, printErrorForMissingVariables, registry);
assertEquals(originalVarList.size(), newVarList.size());
for (int i = 0; i < originalVarList.size(); i++)
{
YoVariable<?> originalVariable = originalVarList.getVariable(i);
YoVariable<?> newVariable = newVarList.getVariable(originalVariable.getName());
assertFalse(originalVariable == newVariable);
assertEquals(originalVariable.getValueAsDouble(), newVariable.getValueAsDouble(), 1e-7);
}
fileOne.delete();
}
代码示例来源:origin: us.ihmc/simulation-construction-set-test
dataFileReader.readData(newVarList, registry, newDataBuffer);
assertEquals(originalVarList.size(), newVarList.size());
for (int i = 0; i < originalVarList.size(); i++)
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getValueString()方法的一些代码示例,展示了YoVariable.getValueSt
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.setValueFromLongBits()方法的一些代码示例,展示了YoVariable.setV
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getDescription()方法的一些代码示例,展示了YoVariable.getDescrip
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getFullNameWithNameSpace()方法的一些代码示例,展示了YoVariable.
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getManualScalingMin()方法的一些代码示例,展示了YoVariable.getMa
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getValueAsLongBits()方法的一些代码示例,展示了YoVariable.getVal
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getYoVariableType()方法的一些代码示例,展示了YoVariable.getYoVa
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getManualScalingMax()方法的一些代码示例,展示了YoVariable.getMa
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getYoVariableRegistry()方法的一些代码示例,展示了YoVariable.get
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.isParameter()方法的一些代码示例,展示了YoVariable.isParameter()
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getParameter()方法的一些代码示例,展示了YoVariable.getParameter
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.setValueFromDouble()方法的一些代码示例,展示了YoVariable.setVal
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getValueAsDouble()方法的一些代码示例,展示了YoVariable.getValue
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getName()方法的一些代码示例,展示了YoVariable.getName()的具体用法。这些
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.addVariableChangedListener()方法的一些代码示例,展示了YoVariabl
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable类的一些代码示例,展示了YoVariable类的具体用法。这些代码示例主要来源于Github/Stac
本文整理了Java中us.ihmc.yoVariables.variable.YoLong类的一些代码示例,展示了YoLong类的具体用法。这些代码示例主要来源于Github/Stackoverflo
本文整理了Java中us.ihmc.yoVariables.variable.YoFrameVector3D类的一些代码示例,展示了YoFrameVector3D类的具体用法。这些代码示例主要来源于G
本文整理了Java中us.ihmc.yoVariables.variable.YoEnum类的一些代码示例,展示了YoEnum类的具体用法。这些代码示例主要来源于Github/Stackoverflo
本文整理了Java中us.ihmc.yoVariables.variable.YoFramePoint3D类的一些代码示例,展示了YoFramePoint3D类的具体用法。这些代码示例主要来源于Git
我是一名优秀的程序员,十分优秀!