Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for generic (0.65 sec)

  1. platforms/core-configuration/base-services-groovy/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "A set of generic services and utilities specific for Groovy."
    
    dependencies {
        api(project(":base-services"))
        api(projects.stdlibJavaExtensions)
    
        api(libs.jsr305)
        api(libs.groovy)
        api(libs.guava)
    
        testImplementation(testFixtures(project(":core")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 345 bytes
    - Viewed (0)
  2. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild/kotlindsl/generator/codegen/FunctionSinceRepository.kt

                        if (sourceFile.name in filesWithUnsupportedAnnotations) {
                            // This is a hack.
                            //
                            // qdox doesn't understand annotations placed in generic type parameters
                            // The only place we use this is with Nullable, so this hackily removes the annotation when
                            // the source file is processed by qdox.
                            //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/schemaBuildingUtils.kt

    
    private
    fun KType.toDataTypeRef(): DataTypeRef? = when {
        // isMarkedNullable -> TODO: support nullable types
        arguments.isNotEmpty() -> null // TODO: support for some particular generic types
        else -> when (val classifier = classifier) {
            null -> null
            else -> classifier.toDataTypeRef()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/DependencyCollectorFunctionExtractorAndRuntimeResolver.kt

         * Workaround: use Java reflection to determine the supertypes.
         * TODO: Either fix Kotlin metadata in decorated classes or introduce generic utilities
         */
        private
        fun typeHierarchyViaJavaReflection(kClass: KClass<*>): Iterable<KClass<*>> =
            Traverser.forGraph<Class<*>> { listOfNotNull(it.superclass) + it.interfaces }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

                    *23*
                    *42*
                    """
                )
            )
        }
    
        @Test
        @LeaksFileHandles("Kotlin Compiler Daemon working directory")
        fun `given generic extension types they can be accessed and configured`() {
    
            withDefaultSettingsIn("buildSrc")
    
            withFile(
                "buildSrc/build.gradle.kts",
                """
    
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/DelegatedGradlePropertiesExtensionsTest.kt

            dynamicObjectMockFor(existing, absent).let { dynamicObject ->
                val serviceRegistryMock = mock<ServiceRegistry> {
                    onGeneric { get<DynamicLookupRoutine>() } doReturn DefaultDynamicLookupRoutine()
                }
                val gradleInternalMock = mock<GradleInternal>(name = "gradleInternal") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:44:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. architecture/platforms.md

        native --> software
    
        enterprise["enterprise module"]
        style enterprise stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px,color:#000;
    ```
    
    ## Platforms
    
    ### Core automation platform
    
    This is a general-purpose automation platform which takes care of the efficient definition and execution of work, such as tasks.
    This platform is agnostic to what exactly the purpose of the work is.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/GradleCustomizationSchemaBuildingComponent.kt

    import org.gradle.internal.declarativedsl.mappingToJvm.RuntimeFunctionResolver
    import org.gradle.internal.declarativedsl.mappingToJvm.RuntimePropertyResolver
    
    
    /**
     * Provides declarative schema building features for a general-purpose Gradle DSL.
     *
     * The features are:
     * * importing properties using the [org.gradle.api.provider.Property] API,
     * * importing types from functions that return or configure custom types.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. JavadocStyleGuide.md

    # Gradle Javadoc Style Guide
    
    ## 1.1 Formatting
    
    ### 1.1.1 General form
    
    The basic formatting of Javadoc blocks is as seen in this example:
    
    ```java
    /**
     * Returns an Image object that can then be painted on the screen.
     * <p>
     * The url argument must specify an absolute {@link URL}. 
     * The name argument is a specifier that is relative to the url argument.
     * This method always returns immediately, whether or not the image exists. 
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    IntelliJ automatically hides stacktrace elements from the `org.gradle` package, which makes running/debugging tests more difficult. You can disable this behavior by changing IntelliJ Preferences under Editor -> General -> Console. In the "Fold lines that contain" section, remove the `org.gradle` entry.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top