Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for _this10 (0.13 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/GroovyInteroperability.kt

     *
     * @param V the return type.
     * @param function the function to be adapted.
     * @param owner optional owner of the Closure.
     * @param thisObject optional _this Object_ of the Closure.
     *
     * @see [Closure]
     */
    open class KotlinClosure0<V : Any>(
        val function: () -> V?,
        owner: Any? = null,
        thisObject: Any? = null
    ) : groovy.lang.Closure<V?>(owner, thisObject) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    If you run the command from the _services_ project directory, you will only execute the task in _services:shared_ and _services:webservice_.
    
    The basic rule behind Gradle's behavior is to *execute all tasks down the hierarchy with _this_ name*.
    And *complain if there is _no_ such task found* in any of the subprojects traversed.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    As described above, for each repository there is a separate metadata cache.
    A repository is identified by its URL, type and layout.
    If a module or artifact has not been previously resolved from _this repository_, Gradle will attempt to resolve the module against the repository.
    This will always involve a remote lookup on the repository, however in many cases <<#sub:cache_artifact_reuse,no download will be required>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
Back to top