- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 23 for getAttributes (0.06 seconds)
-
apache-maven/src/assembly/src.xml
<excludes> <exclude>%regex[(?!((?!target/)[^/]+/)*src/).*target.*]</exclude> <exclude>**/*.log</exclude> <exclude>**/.gitignore</exclude> <exclude>**/.gitattributes</exclude> <exclude>init-git-svn.sh</exclude> <exclude>**/.repository/**</exclude> <exclude>**/.classpath</exclude> <exclude>**/.project</exclude> <exclude>**/.settings/**</exclude>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Apr 27 13:14:24 GMT 2022 - 2.2K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/BinaryCompatibilityRepository.kt
val JApiClass.kotlinSourceFilePath: String get() = "$packagePath/$bytecodeSourceFilename" private val JApiClass.bytecodeSourceFilename: String get() = newClass.orElse(null)?.classFile?.getAttribute("SourceFile")?.let { it as? SourceFileAttribute }?.fileName ?: error("Bytecode for $fullyQualifiedName is missing the 'SourceFile' attribute")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) -
compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java
PlexusConfiguration pc = md.getMojoConfiguration().getChild(0); assertEquals("${jar.finalName}", pc.getValue()); assertEquals("${project.build.finalName}", pc.getAttribute("default-value")); assertEquals("java.lang.String", pc.getAttribute("implementation")); Parameter mp = md.getParameters().get(0); assertEquals("finalName", mp.getName()); assertEquals("jarName", mp.getAlias());Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 6K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/JavassistExtensions.kt
import org.gradle.kotlin.dsl.* internal val CtClass.isKotlin: Boolean get() = hasAnnotation(Metadata::class.qualifiedName) internal val CtMethod.isSynthetic get() = methodInfo.getAttribute(SyntheticAttribute.tag) != null internal val MemberValue.intValue: Int get() { var value: Int? = null accept(object : MemberValueVisitorAdapter() {Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 4.6K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/nullaway/NullawayStatusTask.kt
else -> service.addProjectWithUncheckedDeps(projectPath) } } private val ResolvedArtifactResult.hasNullAwayDisabled get() = variant.attributes.getAttribute(NullawayAttributes.nullawayAttribute) == NullawayState.DISABLED
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Aug 20 13:18:23 GMT 2025 - 2.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java
PlexusConfiguration[] ces = c.getChildren(); if (ces != null) { for (PlexusConfiguration ce : ces) { String value = ce.getValue(null); String defaultValue = ce.getAttribute("default-value", null); if (value != null || defaultValue != null) { XmlNode e = XmlNode.newInstance( ce.getName(), value,
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Mar 25 09:45:07 GMT 2025 - 11.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedConfigurationConverter.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Jul 17 07:40:49 GMT 2025 - 6.2K bytes - Click Count (0) -
.github/CODEOWNERS
.idea @gradle/bt-developer-productivity .editorconfig @gradle/bt-developer-productivity .gitignore @gradle/bt-developer-productivity .gitattributes @gradle/bt-developer-productivity gradle/ @gradle/bt-developer-productivity
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Nov 07 21:47:29 GMT 2025 - 11K bytes - Click Count (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
if (paramConfig != null) { parameter.setExpression(paramConfig.getValue(null)); parameter.setDefaultValue(paramConfig.getAttribute("default-value")); } parameters.add(parameter); } mojo.setParameters(parameters); // TODO this should not need to be handed off...
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Mar 25 09:45:07 GMT 2025 - 17.5K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java
session, session.getCurrentProject(), execution, new HashSet<>()); assertNotNull(execution.getConfiguration()); assertEquals("1.0", execution.getConfiguration().getChild("version").getAttribute("default-value")); } @Test void testExecutionListeners() throws Exception { final File pom = getProject("project-basic"); final MavenSession session = createMavenSession(pom);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 22.9K bytes - Click Count (0)