Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for publicType (0.14 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/typeregistration/BaseInstanceFactory.java

        }
    
        public <S extends PUBLIC> TypeRegistrationBuilder<S> register(ModelType<S> publicType, ModelRuleDescriptor source) {
            TypeRegistration<S> registration = Cast.uncheckedCast(registrations.get(publicType));
            if (registration == null) {
                registration = new TypeRegistration<S>(publicType);
                registrations.put(publicType, registration);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GenerateVersionCatalogAccessors.kt

            VersionCatalogAccessor(
                it.name,
                it.publicType,
                ExtensionSpec(it.name, scriptHandlerScopeTypeSpec, TypeSpec(it.publicType.simpleName, it.publicType.concreteClass.internalName)),
                ExtensionSpec(it.name, pluginDependenciesSpecScopeTypeSpec, TypeSpec(pluginsBlockFactorySourceNameFor(it.publicType), pluginsBlockFactoryInternalNameFor(it.publicType))),
            )
        }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/platform/base/binary/BaseBinarySpec.java

                }
            } finally {
                NEXT_BINARY_INFO.set(null);
            }
        }
    
        public BaseBinarySpec() {
            this(NEXT_BINARY_INFO.get());
        }
    
        private BaseBinarySpec(BinaryInfo info) {
            super(validate(info).componentId, info.publicType);
            this.publicType = info.publicType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/DefaultConvention.java

            }
        }
    
        @Override
        public <T> void add(Class<T> publicType, String name, T extension) {
            add(typeOf(publicType), name, extension);
        }
    
        @Override
        public <T> void add(TypeOf<T> publicType, String name, T extension) {
            extensionsStorage.add(publicType, name, extension);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/DefaultStructBindingsStore.java

        }
    
        private static class CacheKey {
            private final ModelType<?> publicType;
            private final Set<ModelType<?>> viewTypes;
            private final ModelType<?> delegateType;
    
            public CacheKey(ModelType<?> publicType, Iterable<? extends ModelType<?>> viewTypes, ModelType<?> delegateType) {
                this.publicType = publicType;
                this.viewTypes = ImmutableSet.copyOf(viewTypes);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 29.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/DefaultProjectSchemaProvider.kt

                accessibleContainerSchema(target.extensions.extensionsSchema).forEach { schema ->
                    extensions.add(ProjectSchemaEntry(targetType, schema.name, schema.publicType))
                    collectSchemaOf(target.extensions.getByName(schema.name), schema.publicType)
                }
            }
            if (target is Project) {
                @Suppress("deprecation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/model/NamedObjectInstantiator.java

            Type publicType = getType(publicClass);
            Type superClass;
            String[] interfaces;
            if (publicClass.isInterface()) {
                superClass = OBJECT;
                interfaces = new String[]{publicType.getInternalName(), MANAGED.getInternalName()};
            } else {
                superClass = publicType;
                interfaces = INTERFACES_FOR_ABSTRACT_CLASS;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

        }
    
        public BeanDynamicObject(Object bean, @Nullable Class<?> publicType) {
            this(bean, publicType, true, true, StringToEnumTransformer.INSTANCE, StringToEnumTransformer.INSTANCE);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeBackedModelMap.java

        private final ModelType<?> publicType;
    
        // Note: used by generated subtypes
        public NodeBackedModelMap(ModelType<?> publicType, ModelType<T> elementType, ModelRuleDescriptor sourceDescriptor, MutableModelNode modelNode,
                                  ModelViewState viewState, ChildNodeInitializerStrategy<? super T> creatorStrategy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 23K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/DefaultTypeMetadataStore.java

        private <T> TypeMetadata createTypeMetadata(Class<T> type) {
            Class<?> publicType = GeneratedSubclasses.unpack(type);
            ReplayingTypeValidationContext validationContext = new ReplayingTypeValidationContext();
            TypeAnnotationMetadata annotationMetadata = typeAnnotationMetadataStore.getTypeAnnotationMetadata(publicType);
            annotationMetadata.visitValidationFailures(validationContext);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top