Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 594 for listOf (0.13 sec)

  1. platforms/enterprise/enterprise-plugin-performance/build.gradle.kts

        sourceFiles = 200
        testSourceFiles = 50 // verbose tests are time consuming
        filesPerPackage = 5
        linesOfCodePerSourceFile = 150
        numberOfScriptPlugins = 30
        rootProjectTemplates = listOf("root")
        subProjectTemplates = listOf("project-with-source")
        templateArgs = mapOf(
            "fullTestLogging" to true,
            "failedTests" to true,
            "projectDependencies" to true,
            "manyPlugins" to true,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CookiesTest.kt

                object : CookieManager() {
                  override fun get(
                    uri: URI,
                    requestHeaders: Map<String, List<String>>,
                  ) = mapOf(
                    "COOKIE" to listOf("Bar=bar"),
                    "cooKIE2" to listOf("Baz=baz"),
                  )
                },
              ),
            )
            .build()
        server.enqueue(MockResponse())
        get(server.url("/"))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top