Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for constructorName (0.17 sec)

  1. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ProjectTest.groovy

            eclipseProject.name = 'constructorName'
            eclipseProject.comment = 'constructorComment'
            eclipseProject.referencedProjects = ['constructorRefProject'] as LinkedHashSet
            eclipseProject.buildCommands = [new BuildCommand('constructorbuilder')]
            eclipseProject.natures = ['constructorNature']
            eclipseProject.linkedResources = [new Link('constructorName', 'constructorType', 'constructorLocation', '')] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedCollectionProxyClassGenerator.java

                }
                String methodDescriptor = Type.getMethodDescriptor(Type.VOID_TYPE, paramTypes);
                MethodVisitor constructorVisitor = visitor.visitMethod(Opcodes.ACC_PUBLIC, CONSTRUCTOR_NAME, methodDescriptor, CONCRETE_SIGNATURE, NO_EXCEPTIONS);
                constructorVisitor.visitCode();
                putThisOnStack(constructorVisitor);
                for (int i = 0; i < paramTypes.length; i++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/AbstractProxyClassGenerator.java

    package org.gradle.model.internal.manage.schema.extract;
    
    import org.objectweb.asm.MethodVisitor;
    import org.objectweb.asm.Opcodes;
    
    public class AbstractProxyClassGenerator {
        protected static final String CONSTRUCTOR_NAME = "<init>";
        protected static final String STATIC_CONSTRUCTOR_NAME = "<clinit>";
        protected static final String CONCRETE_SIGNATURE = null;
        protected static final String[] NO_EXCEPTIONS = new String[0];
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top