Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for publicTypeOf (0.09 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/DefaultConventionTest.groovy

            convention.add("pet", new ExtensionWithPublicType())
            assert publicTypeOf("pet") == typeOf(PublicExtensionType)
        }
    
        @Test void honoursHasPublicTypeForCreatedExtension() {
            convention.create("pet", ExtensionWithPublicType)
            assert publicTypeOf("pet") == typeOf(PublicExtensionType)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/software/internal/DefaultSoftwareTypeRegistry.java

                            softwareType.name(),
                            publicTypeOf(propertyMetadata, softwareType),
                            Cast.uncheckedNonnullCast(pluginClass),
                            registeringPluginClass
                        )
                    );
                });
            }
    
            private static Class<?> publicTypeOf(PropertyMetadata propertyMetadata, SoftwareType softwareType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:31 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top