Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 164 for listOf (0.72 sec)

  1. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

     */
    val QUICK_CROSS_VERSION_BUCKETS = listOf(
        listOf("0.0", "3.0"), // 0.0 <= version < 3.0
        listOf("3.0", "4.0"), // 3.0 <= version < 4.0
        listOf("4.0", "5.0"), // 4.0 <= version < 5.0
        listOf("5.0", "6.0"), // 5.0 <=version < 6.0
        listOf("6.0", "7.0"), // 6.0 <=version < 7.0
        listOf("7.0", "8.0"), // 7.0 <=version < 8.0
        listOf("8.0", "9.0"), // 8.0 <=version < 9.0
        listOf("9.0", "10.0"), // 9.0 <=version < 10.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 05:14:09 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoSimple/SimpleAnalysisDemo.kt

    import org.gradle.internal.declarativedsl.schemaBuilder.schemaFromTypes
    
    
    val schema = schemaFromTypes(
        topLevelReceiver = Abc::class,
        types = listOf(Abc::class, C::class, D::class),
        externalFunctions = listOf(::newD),
        defaultImports = listOf(DefaultFqName("com.example", "newD"))
    )
    
    
    object SimpleAnalysisDemo {
        @JvmStatic
        fun main(args: Array<String>) {
            printResolutionResults(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. .teamcity/src/test/kotlin/PerformanceTestBuildTypeTest.kt

                Stage(
                    StageName.PULL_REQUEST_FEEDBACK,
                    performanceTests = listOf(PerformanceTestCoverage(1, PerformanceTestType.per_commit, Os.LINUX))
                ),
                PerformanceTestCoverage(1, PerformanceTestType.per_commit, Os.LINUX),
                "Description",
                "performance",
                listOf("largeTestProject", "smallTestProject"),
                2,
                extraParameters = "extraParameters"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/support/ClassBytesRepositoryTest.kt

                "My",
                listOf("My.class", "MyKt.class")
            )
    
            assertClassFilePathCandidatesFor(
                "foo.My",
                listOf("foo/My.class", "foo/MyKt.class", "foo${'$'}My.class", "foo${'$'}MyKt.class")
            )
    
            assertClassFilePathCandidatesFor(
                "foo.My.Nested",
                listOf(
                    "foo/My/Nested.class", "foo/My/NestedKt.class",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 17:45:10 UTC 2024
    - 6.9K 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/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/TypeSafeProjectAccessorsSchemaBuildingComponent.kt

            else -> listOf(
                FixedTypeDiscovery(ProjectTopLevelReceiver::class, listOf(projectAccessorsClass)),
                TypesafeProjectAccessorTypeDiscovery()
            )
        }
    
        override fun runtimePropertyResolvers(): List<RuntimePropertyResolver> = listOf(ProjectPropertyAccessorRuntimeResolver())
    }
    
    
    private
    class ProjectPropertyAccessorRuntimeResolver : RuntimePropertyResolver {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/ImportTest.kt

                ),
                result
            )
            assertEquals(
                listOf(ResolutionError(imports[1], ErrorReason.AmbiguousImport(DefaultFqName("a.c", "C")))),
                analysisContext.errorCollector.errors
            )
        }
    
        @Test
        fun `does not report errors on the same import appearing more than once`() {
            val imports = listOf(
                importOf("a", "b", "C"),
                importOf("a", "b", "C"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/test/kotlin/org/gradle/internal/declarativedsl/settings/SettingsBlockCheckTest.kt

                """.trimIndent()
            )
    
            assertEquals(listOf("foo()", "bar()", "plugins { id(\"x\") }"), result.map { it.location.sourceData.text() })
            assertTrue(result.all { it.reason == DocumentCheckFailureReason.PluginManagementBlockOrderViolated })
        }
    
        private
        fun EvaluationSchema.runChecks(code: String): List<DocumentCheckFailure> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. build-logic/root-build/src/main/kotlin/gradlebuild.internal.cc-experiment.gradle.kts

            // Kotlin/JS
            // https://youtrack.jetbrains.com/issue/KT-50881
            task.name in listOf("generateExternals") -> true
    
            // JMH plugin
            task.name in listOf("jmh", "jmhJar", "jmhReport") -> true
    
            // Gradle Doctor plugin
            task.name in listOf(
                "graph", "graphMain",
                "projectGraphReport",
                "ripples",
                "aggregateAdvice",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 17:29:09 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputsTest.kt

        }
    
        @Test
        fun `recognizes relative paths against rootDirectory`() {
            val instance = createFromPaths(listOf("test/123"))
            assertTrue(instance.isFileSystemCheckIgnoredFor(rootDir.resolve("test/123")))
        }
    
        @Test
        fun `recognizes multiple paths`() {
            val instance = createFromPaths(listOf("path/one", "path/two"))
            assertTrue(instance.isFileSystemCheckIgnoredFor(File("path/one")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top