Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getDescriptor (1.89 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java

                final ClassRealm extensionRealm = recordRealm.getRealm();
                final ExtensionDescriptor extensionDescriptor = recordRealm.getDescriptor();
                final List<Artifact> artifacts = recordRealm.getArtifacts();
    
                extensionRealms.add(extensionRealm);
                if (extensionDescriptor != null) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperties.java

                return method.getReplacedAccessors().stream()
                    .anyMatch(replacedAccessor -> replacedAccessor.getName().equals(isGetterName) && replacedAccessor.getDescriptor().equals("()Z"));
            }
            return false;
        }
    
        private static boolean isOldMethod(JApiMethod jApiMethod, Map<AccessorKey, ReplacedAccessor> upgradedMethods, Pattern pattern) {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Dec 24 14:15:15 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  3. impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

            System.out.println("Result: " + result);
    
            assertSame(
                    exec.getPlugin().getDescriptor(),
                    result,
                    "${mojo.plugin.descriptor} expression does not return plugin descriptor.");
        }
    
        @Test
        public void testPluginArtifactsExpressionReference() throws Exception {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Mar 26 19:31:34 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  4. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

    private
    fun List<AnnotationNode>?.hasNullableAnnotation() =
        has<org.jspecify.annotations.Nullable>()
    
    
    private
    inline fun <reified AnnotationType : Any> List<AnnotationNode>?.has() =
        has(Type.getDescriptor(AnnotationType::class.java))
    
    
    private
    fun List<AnnotationNode>?.has(annotationTypeDescriptor: String) =
        this?.any { it.desc == annotationTypeDescriptor } ?: false
    
    
    private
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Mar 12 15:56:18 UTC 2025
    - 20.2K bytes
    - Viewed (0)
Back to top