- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 128 for getStyle (0.1 seconds)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocExtensionsBuilder.java
Element para = doc.createElement("para"); para.appendChild(doc.createTextNode("The ")); para.appendChild(linkRenderer.link(propertyMetaData.getType(), listener)); para.appendChild(doc.createTextNode(String.format(" added by the %s plugin.", extensionDoc.getPluginId())));Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 4.9K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCacheTag.java
*/ String getName(); /** * Gets the type of data associated with this tag. * * @return The type of data, must not be {@code null}. */ Class<T> getType(); /** * Creates a copy of the data suitable for storage in the cache. The original data to store can be mutated after the * cache is populated but the state of the cache must not change so we need to make a copy.Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 3.9K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/DefaultToolchain.java
protected DefaultToolchain(ToolchainModel model, String type, Logger logger) { this(model, logger); this.type = type; } @Override public final String getType() { return type != null ? type : model.getType(); } @Override public final ToolchainModel getModel() { return model; } public final void addProvideToken(String type, RequirementMatcher matcher) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Feb 12 13:13:28 GMT 2025 - 4.8K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/PropertyMetaData.java
return getter != null; } public boolean isProviderApi() { // TODO: Crude approximation return setter == null && (getType().getName().contains("Provider") || getType().getName().contains("Property")); } public ClassMetaData getOwnerClass() { return ownerClass; } public String getSignature() { StringBuilder builder = new StringBuilder();Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 3K bytes - Click Count (0) -
guava-testlib/src/com/google/common/testing/NullPointerTester.java
Parameter param = params.get(i); if (i != indexOfParamToSetToNull) { args[i] = getDefaultValue(param.getType()); Assert.assertTrue( "Can't find or create a sample instance for type '" + param.getType() + "'; please provide one using NullPointerTester.setDefault()", args[i] != null || isNullable(param)); } }
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Jul 14 14:44:08 GMT 2025 - 25.4K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy
if ((typeReference.getSort() == TypeReference.CLASS_TYPE_PARAMETER || typeReference.getSort() == TypeReference.CLASS_TYPE_PARAMETER_BOUND) && NULLABLE_ANNOTATIONS.contains(Type.getType(descriptor).getClassName())) { typeParametersNullability.set(typeReference.getTypeParameterIndex(), true) } return null } }
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Oct 27 09:26:32 GMT 2025 - 15.4K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringSearchModelInterpolator.java
if (isQualifiedForInterpolation) { for (Field currentField : clazz.getDeclaredFields()) { Class<?> type = currentField.getType(); if (isQualifiedForInterpolation(currentField, type)) { if (String.class == type) { if (!Modifier.isFinal(currentField.getModifiers())) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 15.6K bytes - Click Count (0) -
compat/maven-toolchain-builder/src/test/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilderTest.java
assertEquals(1, result.getEffectiveToolchains().getToolchains().size()); assertEquals( "TYPE", result.getEffectiveToolchains().getToolchains().get(0).getType()); assertEquals( "user_value", result.getEffectiveToolchains() .getToolchains() .get(0) .getProvides()
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 14K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Toolchain.java
* </ul> * * <p>Example usage:</p> * <pre> * Toolchain toolchain = ...; // Obtain a Toolchain instance * String type = toolchain.getType(); // Get the type of the toolchain * String version = toolchain.getVersion(); // Get the version of the toolchain * </pre> * * * @since 4.0.0 * @see JavaToolchain
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 11 12:33:57 GMT 2025 - 3.4K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/BinaryBreakingChangesRule.java
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 24 14:15:15 GMT 2025 - 3.8K bytes - Click Count (0)