- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 66 for setProperties (0.2 sec)
-
src/main/java/org/codelibs/core/lang/AnnotationUtil.java
* アノテーションの要素を名前と値の{@link Map}として返します。 * * @param annotation * アノテーション。{@literal null}であってはいけません * @return アノテーションの要素の名前と値からなる{@link Map} */ public static Map<String, Object> getProperties(final Annotation annotation) { assertArgumentNotNull("annotation", annotation); final Map<String, Object> map = newHashMap();
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.7K bytes - Viewed (0) -
src/test/java/jcifs/tests/ReadWriteTest.java
} private String getFifoPipeUrl () { String testFifoPipe = getProperties().get(TestProperties.TEST_FIFO_PIPE); Assume.assumeNotNull(testFifoPipe); return "smb://" + getTestServer() + "/IPC$/" + testFifoPipe; } private String getTransactPipeUrl () { String testTransactPipe = getProperties().get(TestProperties.TEST_TRANSACT_PIPE); Assume.assumeNotNull(testTransactPipe);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 13.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomArtifactTransformer.java
main.getArtifactId(), BUILD_POM_CLASSIFIER, main.getExtension(), main.getVersion(), main.getProperties(), main.getFile())); } for (Artifact consumer : consumers) { result.remove(consumer); result.add(new DefaultArtifact(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/AnnotationUtilTest.java
final Method m = ClassUtil.getMethod(getClass(), "testGetProperties"); final Annotation anno = m.getAnnotation(Hoge.class); final Map<String, Object> props = AnnotationUtil.getProperties(anno); assertThat((String) props.get("aaa"), is("123")); assertThat((String) props.get("bbb"), is("3")); assertThat(props.get("ccc"), is(nullValue())); }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java
Model out = interpolator.interpolateModel(model, new File("."), createModelBuildingRequest(context), collector); assertProblemFree(collector); assertEquals("/path/to/home", out.getProperties().get("outputDirectory")); } @Test public void envarExpressionThatEvaluatesToNullReturnsTheLiteralString() throws Exception { Map<String, String> modelProperties = new HashMap<>();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 22.2K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/building/DefaultModelBuilderFactoryTest.java
ModelBuildingResult result = builder.build(request); assertNotNull(result); assertNotNull(result.getEffectiveModel()); assertEquals("activated", result.getEffectiveModel().getProperties().get("profile.file")); Xpp3Dom conf = (Xpp3Dom) result.getEffectiveModel().getBuild().getPlugins().get(0).getConfiguration(); assertNotNull(conf);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/StandardSystemPropertyTest.java
} } public void testNoNullValues() { for (StandardSystemProperty property : StandardSystemProperty.values()) { // Even though the contract in System.getProperties() specifies that a value will exist for // all of the listed keys, for some reason the "java.compiler" key returns null in some JVMs. if (property == JAVA_COMPILER) { continue; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Oct 10 08:40:05 UTC 2023 - 2.4K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/SerializationTest.java
} ByteArrayOutputStream baos = new ByteArrayOutputStream(); try (ObjectOutputStream oos = new ObjectOutputStream(baos)) { oos.writeObject(model.getProperties()); oos.writeObject(model.getBuild().getPlugins()); } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/Init.java
property.setValue(result.get(field.getKey()).getResult()); dispatcherConfig.addProperty(property); } if (!dispatcherConfig.getProperties().isEmpty()) { config.addConfiguration(dispatcherConfig); } } if (yes) { secDispatcher.writeConfiguration(config); } else {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/artifact/FatArtifactTraverser.java
* artifacts that have the property {@link MavenArtifactProperties#INCLUDES_DEPENDENCIES} set to * {@code true}. * * @see org.eclipse.aether.artifact.Artifact#getProperties() * @see MavenArtifactProperties * @since 4.0.0 * @deprecated since 4.0.0, use {@code maven-api-impl} jar instead */ @Deprecated(since = "4.0.0")
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0)