Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Chalin (0.97 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

                            )
                        ]
                    )""".trimIndent()
            results.assert(expected)
        }
    
        @Test
        fun `parses function invocation after an access chain`() {
            val results = parse(
                """
                f.g.h.i.j.k(test)
                """.trimIndent())
    
            val expected = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ContentFilterableExtensions.kt

    import org.gradle.api.file.ContentFilterable
    
    import java.io.FilterReader
    import kotlin.reflect.KClass
    
    
    /**
     * Adds a content filter to be used during the copy.
     * Multiple calls add additional filters to the filter chain.
     * Each filter should implement [FilterReader].
     * Import `org.apache.tools.ant.filters.*` for access to all the standard Ant filters.
     *
     * Examples:
     *
     * ```
     * filter<StripJavaComments>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/PropertyAccessResolver.kt

                    onProperty(ObjectOrigin.PropertyReference(receiverOrigin, property, propertyAccess))
                }
            }
    
            propertyAccess.asChainOrNull()?.let { chain ->
                schema.externalObjectsByFqName[chain.asFqName()]?.let { externalObject ->
                    onExternalObject(ObjectOrigin.External(externalObject, propertyAccess))
                }
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/GroovyCodecs.kt

            val owner = readReference()
            val thisObject = readReference()
    
            return (decodeBean() as Closure<*>).rehydrate(null, owner, thisObject)
        }
    
        /**
         * Travels up the 'owner' chain of a closure to locate the script that the closure belongs to, if any
         */
        private
        fun findOwningScript(value: Any): Any? {
            return when (value) {
                is org.gradle.api.Script -> value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PluginsBlockInterpreterTest.kt

                PluginRequestSpec("plugin-id", version = "4.0", apply = false),
            )
        }
    
    
        @Test
        fun `single plugin - id() long chain of versions and applies`() {
            assertDynamicInterpretationOf(
                """
                    id("plugin-id").version("1.0").version("2.0").apply(true).apply(false) version "3.0" apply false apply true version "4.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:15:27 UTC 2024
    - 22.5K bytes
    - Viewed (0)
Back to top