Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,999 for buildop (0.14 sec)

  1. platforms/documentation/docs/src/snippets/customModel/internalViews/groovy/build.gradle

    // tag::type-registration[]
    // tag::internal-view-mutation[]
    class MyPlugin extends RuleSource {
    // end::internal-view-mutation[]
        @ComponentType
        void registerMyComponent(TypeBuilder<MyComponent> builder) {
            builder.internalView(MyComponentInternal)
        }
    // end::type-registration[]
    // tag::internal-view-mutation[]
        @Mutate
        void mutateMyComponents(ModelMap<MyComponentInternal> components) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/assignmentValue.kt

    fun test() {
        buildFoo {
            value = <expr>produceString()</expr>
        }
    }
    
    fun buildFoo(builder: Foo.() -> Unit): Foo {
        val foo = Foo()
        foo.builder()
        return foo
    }
    
    fun Foo {
        var value: String? = null
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 258 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/assignmentTarget.kt

    fun test() {
        buildFoo {
            <expr>value</expr> = produceString()
        }
    }
    
    fun buildFoo(builder: Foo.() -> Unit): Foo {
        val foo = Foo()
        foo.builder()
        return foo
    }
    
    class Foo {
        var value: String? = null
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 06:40:43 UTC 2024
    - 260 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/ide/problems-api-usage/groovy/build.gradle

    plugins {
        id 'reporters.model.builder'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 45 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/ide/problems-api-usage/groovy/sample-ide/build.gradle

        maven {
            url = 'https://repo.gradle.org/artifactory/libs-releases'
        }
    }
    
    application {
        mainClass = 'org.gradle.sample.SampleIde'
    }
    
    dependencies {
        implementation('reporters:model-builder-plugin')
        implementation('org.gradle:gradle-tooling-api:8.6-milestone-1')
    }
    
    tasks.run.configure {
        args = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 735 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/ide/problems-api-usage/kotlin/reporters/model-builder-plugin/build.gradle.kts

    plugins {
        `java-gradle-plugin`
    }
    
    group = "reporters"
    
    repositories {
        mavenCentral()
    }
    
    gradlePlugin {
        plugins {
            create("model-builder-plugin") {
                id = "reporters.model.builder"
                implementationClass = "reporters.ModelBuilderPlugin"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 292 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/ide/problems-api-usage/kotlin/build.gradle.kts

    plugins {
        id("reporters.model.builder")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 46 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/kotlinDsl/interoperability-groovy-builder/kotlin/build.gradle.kts

        // Kotlin DSL utilities
        "name"("parameters", 42, aReference)                            // <3>
            "blockName" {                                               // <4>
                // Same Groovy Builder semantics on `blockName`
            }
        "another"("name" to "example", "url" to "https://example.com/") // <5>
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 925 bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSubstitutorFactory.kt

        override val analysisSession: KaFirSession
    ) : KaSubstitutorFactory(), KaFirSessionComponent {
    
        override fun buildSubstitutor(builder: KaSubstitutorBuilder): KaSubstitutor {
            if (builder.mappings.isEmpty()) return KaSubstitutor.Empty(token)
    
            val firSubstitution = buildMap {
                builder.mappings.forEach { (ktTypeParameterSymbol, ktType) ->
                    check(ktTypeParameterSymbol is KaFirTypeParameterSymbol)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/ide/problems-api-usage/kotlin/sample-ide/build.gradle.kts

            url = URI("https://repo.gradle.org/artifactory/libs-releases")
        }
    }
    
    application {
        mainClass.set("org.gradle.sample.SampleIde")
    }
    
    dependencies {
        implementation("reporters:model-builder-plugin")
        implementation("org.gradle:gradle-tooling-api:8.6-milestone-1")
    }
    
    tasks.run.configure {
        args = listOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 730 bytes
    - Viewed (0)
Back to top