Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 493 for listOf (0.28 sec)

  1. platforms/documentation/docs/src/snippets/groovy/customizedLayout/kotlin/build.gradle.kts

        testImplementation("junit:junit:4.13")
    }
    
    // tag::custom-source-locations[]
    sourceSets {
        main {
            groovy {
                setSrcDirs(listOf("src/groovy"))
            }
        }
    
        test {
            groovy {
                setSrcDirs(listOf("test/groovy"))
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 440 bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/PluginTreeTest.kt

                        "nested" to PluginTree.PluginGroup(
                            listOf("nested"),
                            linkedMapOf(
                                "plugin-a" to nestedPluginA,
                                "other" to PluginTree.PluginGroup(
                                    listOf("nested", "other"),
                                    linkedMapOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/schemaBuidler/FunctionExtractorTest.kt

                schemaFromTypes(ReceiverTwo::class, listOf(ReceiverTwo::class))
            }
            assertTrue { exception.message!!.contains("@Adding") }
        }
    
        @Test
        fun `adding function with no lambda is accepted if it returns Unit`() {
            val schema = schemaFromTypes(ReceiverThree::class, listOf(ReceiverThree::class))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/customizedLayout/kotlin/build.gradle.kts

    }
    
    dependencies {
        testImplementation("junit:junit:4.13")
    }
    
    // tag::define-main[]
    sourceSets {
        main {
            java {
                setSrcDirs(listOf("src/java"))
            }
            resources {
                setSrcDirs(listOf("src/resources"))
            }
        }
    // end::define-main[]
        test {
            java {
                srcDir("test/java")
            }
            resources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 527 bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/problems/JsonModelWriterTest.kt

                    )
                    endModel("", "", "", 0)
                },
                hasEntry(
                    "diagnostics",
                    listOf(
                        mapOf(
                            "trace" to listOf(mapOf("kind" to "Unknown")),
                            "input" to listOf(mapOf("name" to ""))
                        )
                    )
                )
            )
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-provider-plugins/src/test/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/ReduceGraphTest.kt

            assertThat(
                reduceGraph(
                    mapOf(
                        "a" to listOf("b", "c"),
                        "b" to listOf("e1"),
                        "c" to listOf("d"),
                        "d" to listOf("b", "e2")
                    )
                ),
                equalTo(
                    mapOf(
                        "a" to setOf("e1", "e2"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluationSchema/SchemaComponents.kt

        fun typeDiscovery(): List<TypeDiscovery> = listOf()
        fun propertyExtractors(): List<PropertyExtractor> = listOf()
        fun functionExtractors(): List<FunctionExtractor> = listOf()
    }
    
    
    /**
     * Provides grouping capabilities for features used in DCL-to-JVM object conversion.
     */
    internal
    interface ObjectConversionComponent {
        fun runtimePropertyResolvers(): List<RuntimePropertyResolver> = listOf()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt

            "org/gradle/util/**", // contains Path that clashes with `org.gradle.api.model.Path` imported above. This line should not appear before "org/gradle/api/**"
        )
    
        val excludes = listOf("**/internal/**")
    
        private val includePackagePatterns: List<Pattern> by lazy {
            includes.map {
                if (it.endsWith("/**")) {
                    Pattern.compile(it.substring(0, it.length - 3).replace("/", "\\.") + "(\\..+)?")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                    "Method com.example.Task.setSourceCompatibility(java.lang.String): Is not binary compatible. Reason for accepting this: Upgraded property" to listOf("Method has been removed")
                )
            }
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

                            OperatingSystem.current().isWindows -> requirements = listOf("os=windows", "gbt-dogfooding")
                            OperatingSystem.current().isMacOsX -> requirements = listOf("os=macos", "gbt-dogfooding")
                        }
                    } else {
                        requirements = listOf("gbt-dogfooding")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top